@gradientedge/commercetools-utils
    Preparing search index...

    Interface CommercetoolsRequest

    Represents a request about to be made to commercetools

    interface CommercetoolsRequest {
        abortController?: AbortController;
        aggregateTimeoutMs?: number;
        data?: any;
        headers: Record<string, string>;
        method: string;
        params?: Record<string, string | number | boolean>;
        retry?: Partial<CommercetoolsRetryConfig>;
        timeoutMs?: number;
        url: string;
    }
    Index

    Properties

    abortController?: AbortController
    aggregateTimeoutMs?: number
    data?: any
    headers: Record<string, string>
    method: string
    params?: Record<string, string | number | boolean>
    retry?: Partial<CommercetoolsRetryConfig>
    timeoutMs?: number
    url: string