Optional__binaryResponse?: booleanOptional__streamClass?: typeof StreamOptionalbody?: unknownOptionaldefaultBaseURL?: stringOverride the default base URL for this specific request.
OptionalfetchOptions?: MergedRequestInitAdditional RequestInit options to be passed to the underlying fetch call.
These options will be merged with the client's default fetch options.
Optionalheaders?: HeadersLikeHTTP headers to include with the request. Can be a Headers object, plain object, or array of tuples.
OptionalidempotencyKey?: stringA unique key for this request to enable idempotency.
OptionalmaxRetries?: numberThe maximum number of times that the client will retry a request in case of a temporary failure, like a network error or a 5XX error from the server.
Optionalmethod?: HTTPMethodThe HTTP method for the request (e.g., 'get', 'post', 'put', 'delete').
Optionalpath?: stringThe URL path for the request.
Optionalquery?: object | nullQuery parameters to include in the request URL.
Optionalsignal?: AbortSignal | nullAn AbortSignal that can be used to cancel the request.
Optionalstream?: booleanOptionaltimeout?: numberThe maximum amount of time (in milliseconds) that the client should wait for a response from the server before timing out a single request.
The request body. Can be a string, JSON object, FormData, or other supported types.