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