OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
List of integration connections
Goal
Provide an overview of all established integration connections.
Context
The primary management view for integration hubs.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { ConnectionModel } from './connection.schema';
export const ConnectionListPresentation = definePresentation({
meta: {
key: 'integration.connection.list',
version: '1.0.0',
title: 'Connection List',
description: 'List of integration connections',
domain: 'integration',
owners: ['@integration-team'],
tags: ['integration', 'connection', 'list'],
stability: StabilityEnum.Experimental,
goal: 'Provide an overview of all established integration connections.',
context: 'The primary management view for integration hubs.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'ConnectionList',
props: ConnectionModel,
},
targets: ['react', 'markdown'],
policy: {
flags: ['integration.enabled'],
},
});