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.

appConfig.lifecycle.getVersion

Fetches a single tenant config version by id.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: app-config
  • File: packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts
  • Allow detail drill-down for lifecycle entries.

    field.key.label
    appConfig.lifecycle.getVersion
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    appConfig.lifecycle.getVersion
    field.description.label

    Fetches a single tenant config version by id.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: app-config
  • File: packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts
  • Allow detail drill-down for lifecycle entries.

    field.tags.label
    app-config
    field.owners.label
    field.stability.label

    Fetches a single tenant config version by id.

    Goal

    Allow detail drill-down for lifecycle entries.

    Context

    Used by automation to fetch config payloads for comparison or export.

    Source Definition

    export const GetTenantConfigVersionQuery = defineQuery({
    	meta: {
    		key: 'appConfig.lifecycle.getVersion',
    		version: '1.0.0',
    		description: 'Fetches a single tenant config version by id.',
    		owners: [OwnersEnum.PlatformSigil],
    		tags: ['app-config', TagsEnum.Hygiene],
    		stability: StabilityEnum.Experimental,
    		goal: 'Allow detail drill-down for lifecycle entries.',
    		context:
    			'Used by automation to fetch config payloads for comparison or export.',
    	},
    	io: {
    		input: GetVersionInput,
    		output: GetVersionOutput,
    	},
    	policy: LifecycleReadPolicy,
    });