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

    Interface Args

    interface Args {
        url: string;
        method: string;
        contentType?: string;
        headers?: Record<string, Supplier<undefined | string>>;
        queryParameters?: Record<string, unknown>;
        body?: unknown;
        timeoutMs?: number;
        maxRetries?: number;
        withCredentials?: boolean;
        abortSignal?: AbortSignal;
        requestType?: "json" | "bytes" | "file";
        responseType?:
            | "json"
            | "arrayBuffer"
            | "blob"
            | "text"
            | "binary-response"
            | "sse"
            | "streaming";
        duplex?: "half";
    }
    Index

    Properties

    url: string
    method: string
    contentType?: string
    headers?: Record<string, Supplier<undefined | string>>
    queryParameters?: Record<string, unknown>
    body?: unknown
    timeoutMs?: number
    maxRetries?: number
    withCredentials?: boolean
    abortSignal?: AbortSignal
    requestType?: "json" | "bytes" | "file"
    responseType?:
        | "json"
        | "arrayBuffer"
        | "blob"
        | "text"
        | "binary-response"
        | "sse"
        | "streaming"
    duplex?: "half"