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;
}

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