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.listVersions

Lists all versions of a tenant configuration.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: app-config
  • File: packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts
  • Support lifecycle views and change audit tooling.

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

    Lists all versions of a tenant configuration.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: app-config
  • File: packages/libs/contracts-spec/src/app-config/lifecycle-contracts.ts
  • Support lifecycle views and change audit tooling.

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

    Lists all versions of a tenant configuration.

    Goal

    Support lifecycle views and change audit tooling.

    Context

    Used by the Studio to render history timelines and by automation for change tracking.

    Source Definition

    export const ListTenantConfigVersionsQuery = defineQuery({
    	meta: {
    		key: 'appConfig.lifecycle.listVersions',
    		version: '1.0.0',
    		description: 'Lists all versions of a tenant configuration.',
    		owners: [OwnersEnum.PlatformSigil],
    		tags: ['app-config', TagsEnum.Hygiene],
    		stability: StabilityEnum.Experimental,
    		goal: 'Support lifecycle views and change audit tooling.',
    		context:
    			'Used by the Studio to render history timelines and by automation for change tracking.',
    	},
    	io: {
    		input: ListVersionsInput,
    		output: ListVersionsOutput,
    	},
    	policy: LifecycleReadPolicy,
    });