@pwngh/economy-lab
    Preparing search index...

    Type Alias WebhookReceipt

    The result of accepting a verified webhook.

    • accepted: a fresh provider event, enqueued for the next sweep.
    • duplicate: a redelivery of an already-seen eventId; the existing row stood.

    entry is the stored row, so the caller can surface its id without a second read.

    type WebhookReceipt = {
        entry: InboxMessage;
        status: "accepted" | "duplicate";
    }
    Index

    entry

    status: "accepted" | "duplicate"