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.

integration.list

List of available integrations

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @integration-team
  • Tags: integration, list
  • File: packages/examples/integration-hub/src/integration/integration.presentation.ts
  • field.key.label
    integration.list
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    integration.list
    field.description.label

    List of available integrations

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @integration-team
  • Tags: integration, list
  • File: packages/examples/integration-hub/src/integration/integration.presentation.ts
  • field.tags.label
    integration,list
    field.owners.label
    @integration-team
    field.stability.label

    List of available integrations

    Goal

    Show users available integrations they can connect to.

    Context

    The marketplace of integrations within the hub.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { IntegrationModel } from './integration.schema';
    
    export const IntegrationListPresentation = definePresentation({
    	meta: {
    		key: 'integration.list',
    		version: '1.0.0',
    		title: 'Integration List',
    		description: 'List of available integrations',
    		domain: 'integration',
    		owners: ['@integration-team'],
    		tags: ['integration', 'list'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Show users available integrations they can connect to.',
    		context: 'The marketplace of integrations within the hub.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'IntegrationList',
    		props: IntegrationModel,
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['integration.enabled'],
    	},
    });