Beignet API reference
    Preparing search index...

    Interface OutboxLeaseFailure

    Structured failure from a claim heartbeat or active-delivery boundary.

    interface OutboxLeaseFailure {
        confirmedLost: boolean;
        error: unknown;
        message: ClaimedOutboxMessage;
        operation: "renewClaim" | "maxActiveDuration";
        state: "recovered" | "degraded" | "lost";
    }
    Index
    confirmedLost: boolean

    Whether the worker no longer has confirmed ownership.

    error: unknown

    Underlying renewal, ownership, or duration error.

    Message whose claim could not be kept active.

    operation: "renewClaim" | "maxActiveDuration"

    Lease phase that surfaced the failure.

    state: "recovered" | "degraded" | "lost"

    Current lease state after handling the failure.