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.

docs.published

Emitted when documentation is published.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: publish
  • File: packages/libs/contracts-spec/src/docs/events/docsPublished.event.ts
  • ```typescript

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';

    field.key.label
    docs.published
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    docs.published
    field.description.label

    Emitted when documentation is published.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: publish
  • File: packages/libs/contracts-spec/src/docs/events/docsPublished.event.ts
  • ```typescript

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';

    field.tags.label
    publish
    field.owners.label
    field.stability.label

    Emitted when documentation is published.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { defineEvent } from '../../events';
    import {
    	DOCS_DOMAIN,
    	DOCS_OWNERS,
    	DOCS_STABILITY,
    	DOCS_TAGS,
    } from '../constants';
    import { docId } from '../registry';
    
    export const DocsPublishedEvent = defineEvent({
    	meta: {
    		key: 'docs.published',
    		version: '1.0.0',
    		description: 'Emitted when documentation is published.',
    		domain: DOCS_DOMAIN,
    		owners: DOCS_OWNERS,
    		tags: [...DOCS_TAGS, 'publish'],
    		stability: DOCS_STABILITY,
    		docId: [docId('docs.tech.docs-publish')],
    	},
    	payload: DocsPublishedPayload,
    });