Beignet API reference
    Preparing search index...

    Interface DrizzleSqliteIdempotencyOptions

    Options for a Drizzle SQLite-backed idempotency port.

    interface DrizzleSqliteIdempotencyOptions {
        now?: () => Date;
        tableName?: string;
    }
    Index
    now?: () => Date

    Clock used by tests and deterministic environments.

    tableName?: string

    Table that stores idempotency records.

    Default: "idempotency_records".