Beignet API reference
    Preparing search index...

    Interface OutboxRenewClaimInput

    Input for extending one active outbox claim.

    interface OutboxRenewClaimInput {
        claimToken: string;
        id: string;
        leaseMs?: number;
        now?: Date;
    }
    Index
    claimToken: string

    Claim token returned by claimBatch(...).

    id: string

    Claimed message ID.

    leaseMs?: number

    New lease duration measured from now.

    now?: Date

    Renewal timestamp.