Member Junction
    Preparing search index...

    Options for verifying a Standard-Webhooks HMAC signature.

    interface VerifyStandardWebhookOptions {
        headers: Record<string, string | string[] | undefined>;
        rawPayload: string;
        replayCache?: Set<string>;
        secret: string;
        toleranceSeconds?: number;
    }
    Index

    Properties

    headers: Record<string, string | string[] | undefined>
    rawPayload: string
    replayCache?: Set<string>
    secret: string
    toleranceSeconds?: number