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