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.connection.setup

Setup wizard for creating integration connections

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

    Setup wizard for creating integration connections

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

    Setup wizard for creating integration connections

    Goal

    Guide users through the multi-step process of connecting to a new integration.

    Context

    The onboarding flow for new integrations.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { ConnectionModel } from './connection.schema';
    
    export const ConnectionSetupPresentation = definePresentation({
    	meta: {
    		key: 'integration.connection.setup',
    		version: '1.0.0',
    		title: 'Connection Setup',
    		description: 'Setup wizard for creating integration connections',
    		domain: 'integration',
    		owners: ['@integration-team'],
    		tags: ['integration', 'connection', 'setup'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Guide users through the multi-step process of connecting to a new integration.',
    		context: 'The onboarding flow for new integrations.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'ConnectionSetup',
    		props: ConnectionModel,
    	},
    	targets: ['react'],
    	policy: {
    		flags: ['integration.enabled'],
    	},
    });