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

Applies tenant-specific translation entries.

  • Type: operation (command)
  • Version: 1.0.0
  • File: packages/libs/contracts-spec/src/app-config/app-config.contracts.ts
  • Allow tenants to override selected message keys.

    field.key.label
    appConfig.updateTenantTranslations
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    appConfig.updateTenantTranslations
    field.description.label

    Applies tenant-specific translation entries.

  • Type: operation (command)
  • Version: 1.0.0
  • File: packages/libs/contracts-spec/src/app-config/app-config.contracts.ts
  • Allow tenants to override selected message keys.

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

    Applies tenant-specific translation entries.

    Goal

    Allow tenants to override selected message keys.

    Context

    Called by the Studio when a tenant customizes labels or copy for their locale.

    Source Definition

    export const UpdateTenantTranslationOverridesCommand = defineCommand({
    	meta: {
    		key: 'appConfig.updateTenantTranslations',
    		version: '1.0.0',
    		description: 'Applies tenant-specific translation entries.',
    		owners: [OwnersEnum.PlatformSigil],
    		tags: [TagsEnum.I18n],
    		stability: StabilityEnum.Beta,
    		goal: 'Allow tenants to override selected message keys.',
    		context:
    			'Called by the Studio when a tenant customizes labels or copy for their locale.',
    	},
    	io: {
    		input: UpdateTenantTranslationInput,
    		output: UpdateTenantBrandingOutput,
    	},
    	policy: {
    		auth: 'admin',
    		policies: [{ key: 'platform.app-config.manage', version: '1.0.0' }],
    	},
    });