@makehq/sdk
    Preparing search index...

    Type Alias FetchOptions

    Options for configuring API requests.

    type FetchOptions = {
        body?: Record<string, JSONValue> | string;
        headers?: Record<string, string>;
        method?: string;
        query?: Record<string, QueryValue>;
    }
    Index

    Properties

    body?: Record<string, JSONValue> | string

    Request body as an object or string

    headers?: Record<string, string>

    HTTP headers to include with the request

    method?: string

    HTTP method (GET, POST, PATCH, etc.)

    query?: Record<string, QueryValue>

    Query parameters to append to the URL