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.syncRun.detail

Detailed view of a sync run with logs

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

    Detailed view of a sync run with logs

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

    Detailed view of a sync run with logs

    Goal

    Show granular details and logs for a specific sync run.

    Context

    Detailed troubleshooting view.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import {
    	FieldMappingModel,
    	SyncConfigModel,
    	SyncRunModel,
    } from './sync.schema';
    
    export const SyncRunDetailPresentation = definePresentation({
    	meta: {
    		key: 'integration.syncRun.detail',
    		version: '1.0.0',
    		title: 'Sync Run Details',
    		description: 'Detailed view of a sync run with logs',
    		domain: 'integration',
    		owners: ['@integration-team'],
    		tags: ['integration', 'sync', 'run', 'detail'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Show granular details and logs for a specific sync run.',
    		context: 'Detailed troubleshooting view.',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'SyncRunDetail',
    		props: SyncRunModel,
    	},
    	targets: ['react', 'markdown'],
    	policy: {
    		flags: ['integration.sync.enabled'],
    	},
    });