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

    Interface ApplicationRolloutStatus

    Response of GET /applications/{id}/rollout-status (ADR-0008 full lane §0.4) — a pure read of per-device convergence toward the current release. A device is pending on ANY inequality (including a not-yet-observed undefined), since a rollback moves the target backwards.

    interface ApplicationRolloutStatus {
        applicationId: string;
        currentReleaseVersion: number | undefined;
        devices: ApplicationRolloutStatusDevice[];
        summary: { converged: number; pending: number; total: number };
    }
    Index

    Properties

    applicationId: string
    currentReleaseVersion: number | undefined
    summary: { converged: number; pending: number; total: number }