Auth0 Node.js SDK - v5.9.0
    Preparing search index...

    Interface RequestOptions

    Per-request options that can override the SDK client defaults.

    interface RequestOptions {
        timeoutInSeconds?: number;
        maxRetries?: number;
        headers?: Record<string, string>;
        abortSignal?: AbortSignal;
    }
    Index

    Properties

    timeoutInSeconds?: number

    Override the default timeout for this request (in seconds).

    maxRetries?: number

    Override the default number of retries for this request.

    headers?: Record<string, string>

    Additional headers to include in this request.

    abortSignal?: AbortSignal

    Abort signal for this request.