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.
History of sync runs
Goal
Provide a historical log of all sync attempts and their results.
Context
Audit and troubleshooting view for sync jobs.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import {
FieldMappingModel,
SyncConfigModel,
SyncRunModel,
} from './sync.schema';
export const SyncRunListPresentation = definePresentation({
meta: {
key: 'integration.syncRun.viewList',
version: '1.0.0',
title: 'Sync Run History',
description: 'History of sync runs',
domain: 'integration',
owners: ['@integration-team'],
tags: ['integration', 'sync', 'runs', 'history'],
stability: StabilityEnum.Experimental,
goal: 'Provide a historical log of all sync attempts and their results.',
context: 'Audit and troubleshooting view for sync jobs.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'SyncRunList',
props: SyncRunModel,
},
targets: ['react', 'markdown'],
policy: {
flags: ['integration.sync.enabled'],
},
});