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

    Interface ApplicationReleaseRollback

    Result of a rollback (ADR-0008 WP2.B). A rollback RE-POINTS the deployment pointer at an existing cut release — it does NOT append a new version, so there is no new version stamp. unchanged is set when the pointer was already at toVersion (idempotent no-op).

    interface ApplicationReleaseRollback {
        applicationId: string;
        currentReleaseVersion: number;
        previousReleaseVersion?: number;
        unchanged?: boolean;
    }
    Index

    Properties

    applicationId: string
    currentReleaseVersion: number

    The release the pointer now targets (the rollback toVersion).

    previousReleaseVersion?: number

    The release the pointer targeted before (absent if none was set).

    unchanged?: boolean

    True when the pointer already targeted toVersion (no-op).