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.
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'],
},
});