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.record.synced

Fired when a single record is synced

  • Type: event (event)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @integration-team
  • Tags: integration, sync
  • File: packages/examples/integration-hub/src/events.ts
  • field.key.label
    integration.record.synced
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    integration.record.synced
    field.description.label

    Fired when a single record is synced

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

    Fired when a single record is synced

    Source Definition

    import { defineEvent } from '@lssm-tech/lib.contracts-spec';
    import { defineSchemaModel, ScalarTypeEnum } from '@lssm-tech/lib.schema';
    
    export const RecordSyncedEvent = defineEvent({
    	meta: {
    		key: 'integration.record.synced',
    		version: '1.0.0',
    		description: 'Fired when a single record is synced',
    		stability: 'experimental',
    		owners: ['@integration-team'],
    		tags: ['integration', 'sync'],
    	},
    	payload: RecordSyncedPayload,
    });