SDKInitHook is called when the SDK is initializing. The hook can return a new baseURL and HTTP client to be used by the SDK.

interface SDKInitHook {
    sdkInit: (opts: SDKOptions) => SDKOptions;
}

Properties

Properties

sdkInit: (opts: SDKOptions) => SDKOptions