@archastro/sdk
    Preparing search index...

    Interface ConfigVersion

    A single immutable snapshot of a config's content, created each time the config is saved.

    interface ConfigVersion {
        change_description?: string;
        content_hash?: string;
        created_at?: string;
        data?: Record<string, unknown>;
        id: string;
        org?: string;
        sandbox?: string;
        version_number: number;
    }
    Index

    Properties

    change_description?: string

    Human-readable summary of what changed in this version, as provided by the author. null if no description was supplied.

    content_hash?: string

    SHA-256 digest of the raw config content encoded as sha256:<hex>. Uses the same algorithm as the CLI computeContentHash helper. null for versions created before this field was introduced.

    created_at?: string

    When this config version was created (ISO 8601).

    data?: Record<string, unknown>

    Arbitrary structured metadata stored alongside this version. null when no extra data was provided.

    id: string

    Config version ID (cfv_...).

    org?: string

    Organization ID (org_...) that owns this config version. null for personal configs.

    sandbox?: string

    Sandbox ID (sbx_...) this version was saved under. null for production configs.

    version_number: number

    Monotonically increasing integer identifying this version within the config. Starts at 1.