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