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.syncConfig.list

List of sync configurations

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

    List of sync configurations

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

    List of sync configurations

    Goal

    Show users their current sync configurations.

    Context

    Management view for data synchronization.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import {
    	FieldMappingModel,
    	SyncConfigModel,
    	SyncRunModel,
    } from './sync.schema';
    
    export const SyncConfigListPresentation = definePresentation({
    	meta: {
    		key: 'integration.syncConfig.list',
    		version: '1.0.0',
    		title: 'Sync Config List',
    		description: 'List of sync configurations',
    		domain: 'integration',
    		owners: ['@integration-team'],
    		tags: ['integration', 'sync', 'config', 'list'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Show users their current sync configurations.',
    		context: 'Management view for data synchronization.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'SyncConfigList',
    		props: SyncConfigModel,
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['integration.sync.enabled'],
    	},
    });