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

    Interface DeviceDeploymentStatus

    Per-device effective deployment status (backend rollup).

    interface DeviceDeploymentStatus {
        build?: BuildStatus;
        deviceId: string;
        deviceType: "gateway" | "serving";
        reason?: string;
        reportedState: "error" | "pending" | "deploying" | "ready" | "degraded";
        state: "error" | "pending" | "deploying" | "ready" | "degraded";
    }
    Index

    Properties

    build?: BuildStatus

    On-device build outcome for a remote-build (build.mode: remote) compose workload (Phase 5b) — status, duration, and a bounded failure log tail.

    deviceId: string
    deviceType: "gateway" | "serving"
    reason?: string

    Why state diverges from reportedState (timeout / health signal / failureReason).

    reportedState: "error" | "pending" | "deploying" | "ready" | "degraded"
    state: "error" | "pending" | "deploying" | "ready" | "degraded"