Beignet API reference
    Preparing search index...

    Interface OutboxRequeueMessageInput

    Input for returning a dead-lettered message to the pending queue.

    interface OutboxRequeueMessageInput {
        availableAt?: Date;
        id: string;
        now?: Date;
        resetAttempts?: boolean;
    }
    Index
    availableAt?: Date

    Earliest time the message may be claimed again. Defaults to now.

    id: string

    Dead-lettered message ID.

    now?: Date

    Requeue timestamp.

    resetAttempts?: boolean

    Reset attempts to zero before requeueing. Defaults to preserving the attempt count so operators can decide whether to grant a fresh retry budget.