Beignet API reference
    Preparing search index...

    Interface DrizzleMysqlIdempotencyOptions

    Options for a Drizzle MySQL-backed idempotency port.

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

    Clock used by tests and deterministic environments.

    tableName?: string

    Table that stores idempotency records.

    Default: "idempotency_records".