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

Registers or updates translation entries for a blueprint.

  • Type: operation (command)
  • Version: 1.0.0
  • File: packages/libs/contracts-spec/src/app-config/app-config.contracts.ts
  • Keep blueprint translation catalogs in sync with shipped copy.

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

    Registers or updates translation entries for a blueprint.

  • Type: operation (command)
  • Version: 1.0.0
  • File: packages/libs/contracts-spec/src/app-config/app-config.contracts.ts
  • Keep blueprint translation catalogs in sync with shipped copy.

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

    Registers or updates translation entries for a blueprint.

    Goal

    Keep blueprint translation catalogs in sync with shipped copy.

    Context

    Executed by platform automation or CI when committing updated translation catalogs.

    Source Definition

    export const UpdateBlueprintTranslationCatalogCommand = defineCommand({
    	meta: {
    		key: 'appConfig.updateBlueprintTranslationCatalog',
    		version: '1.0.0',
    		description: 'Registers or updates translation entries for a blueprint.',
    		owners: [OwnersEnum.PlatformSigil],
    		tags: [TagsEnum.I18n],
    		stability: StabilityEnum.Beta,
    		goal: 'Keep blueprint translation catalogs in sync with shipped copy.',
    		context:
    			'Executed by platform automation or CI when committing updated translation catalogs.',
    	},
    	io: {
    		input: UpdateBlueprintTranslationInput,
    		output: UpdateTenantBrandingOutput,
    	},
    	policy: {
    		auth: 'admin',
    		policies: [{ key: 'platform.app-config.manage', version: '1.0.0' }],
    	},
    });