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.
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,
});