@edgible-team/sdk
    Preparing search index...

    Interface ApplicationDeclarationApplied

    Result of applying a canonical declaration. ADR-0008: an apply also CUTS the new version into the current release (the release fields are populated when the backend cut succeeded; they are absent against a pre-ADR-0008 backend).

    interface ApplicationDeclarationApplied {
        applicationId: string;
        configHash?: string;
        createdAt: string;
        currentReleaseVersion?: number;
        resolvedArtifactDigests?: ArtifactRef[];
        status?: "draft" | "cut" | "superseded";
        version: number;
    }
    Index

    Properties

    applicationId: string
    configHash?: string

    Hash over the resolved config (authored spec + pinned digests).

    createdAt: string
    currentReleaseVersion?: number

    Deployment pointer after the apply (equals version — apply advances it).

    resolvedArtifactDigests?: ArtifactRef[]

    The artifact digests this version pinned at cut.

    status?: "draft" | "cut" | "superseded"

    Release lifecycle of the just-applied version (ADR-0008 — 'cut' on success).

    version: number