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.
Editor for sync configuration settings
Goal
Allow users to configure schedule, filters, and settings for a sync.
Context
Configuration interface for sync jobs.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import {
FieldMappingModel,
SyncConfigModel,
SyncRunModel,
} from './sync.schema';
export const SyncConfigEditorPresentation = definePresentation({
meta: {
key: 'integration.syncConfig.editor',
version: '1.0.0',
title: 'Sync Config Editor',
description: 'Editor for sync configuration settings',
domain: 'integration',
owners: ['@integration-team'],
tags: ['integration', 'sync', 'config', 'editor'],
stability: StabilityEnum.Experimental,
goal: 'Allow users to configure schedule, filters, and settings for a sync.',
context: 'Configuration interface for sync jobs.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'SyncConfigEditor',
props: SyncConfigModel,
},
targets: ['react'],
policy: {
flags: ['integration.sync.enabled'],
},
});