You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Some functions need to access the Hub (Toucan instance) this client is bound to,
16
+
* Some functions need to access the scope (Toucan instance) this client is bound to,
17
17
* but calling 'getCurrentHub()' is unsafe because it uses globals.
18
18
* So we store a reference to the Hub after binding to it and provide it to methods that need it.
19
19
*/
20
20
#sdk: Toucan|null=null;
21
21
22
+
#integrationsInitialized: boolean=false;
23
+
22
24
/**
23
25
* Creates a new Toucan SDK instance.
24
26
* @param options Configuration options for this SDK.
@@ -43,12 +45,12 @@ export class ToucanClient extends ServerRuntimeClient<ToucanClientOptions> {
43
45
* By default, integrations are stored in a global. We want to store them in a local instance because they may have contextual data, such as event request.
0 commit comments