Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface HttpRequest

    One outbound request. body is transmitted verbatim.

    interface HttpRequest {
        body: Buffer;
        cancelBodyOnReturn?: true;
        headers: Readonly<Record<string, string>>;
        method: "POST";
        redirect?: "error";
        signal?: AbortSignal;
        url: string;
    }
    Index
    body: Buffer

    The exact bytes a signed request/header row committed to.

    cancelBodyOnReturn?: true
    headers: Readonly<Record<string, string>>

    Header names are lowercase by convention so a duplicate cannot hide behind case.

    method: "POST"
    redirect?: "error"

    Opt-in for protocols carrying a custom credential header.

    signal?: AbortSignal
    url: string