FuncType - v1.4.1
    Preparing search index...

    Interface HttpRequestView

    The assembled, pre-wire view of a request that HttpClientConfig.beforeRequest receives and may return a transformed copy of. URL is resolved against baseUrl; headers reflect the defaultHeaders + per-call merge. The response-side decoders (decode / validate) are intentionally not exposed here — they aren't part of the wire request and apply to the response. The flatten flag IS exposed because it affects how body is serialized.

    interface HttpRequestView {
        body?: unknown;
        flatten?: boolean;
        headers?: Record<string, string>;
        method: HttpMethod;
        parseAs?: ParseMode;
        signal?: AbortSignal;
        url: string;
    }
    Index

    Properties

    body?: unknown
    flatten?: boolean
    headers?: Record<string, string>
    method: HttpMethod
    parseAs?: ParseMode
    signal?: AbortSignal
    url: string