docs/types/management.SDK.BaseClientOptions.html
BaseClientOptions: {
environment?: Supplier<ManagementEnvironment | string>;
baseUrl?: Supplier<string>;
headers?: Record<
string,
string
| Supplier<string | null | undefined>
| null
| undefined,
>;
timeoutInSeconds?: number;
maxRetries?: number;
fetch?: typeof __type;
fetcher?: FetchFunction;
logging?: LogConfig | Logger;
} & AuthOptions
Optionalenvironment?: Supplier<ManagementEnvironment | string>OptionalbaseUrl?: Supplier<string>Specify a custom URL to connect the client to.
Optionalheaders?: Record<string, string | Supplier<string | null | undefined> | null | undefined>Additional headers to include in requests.
OptionaltimeoutInSeconds?: numberThe default maximum time to wait for a response in seconds.
OptionalmaxRetries?: numberThe default number of times to retry the request. Defaults to 2.
Optionalfetch?: typeof __typeProvide a custom fetch implementation. Useful for platforms that don't have a built-in fetch or need a custom implementation.
Optionalfetcher?: FetchFunctionOptionallogging?: LogConfig | LoggerConfigure logging for the client.
Member Visibility
ThemeOSLightDark