@descope/tenant-profile-widget 0.6.6 → 0.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,16 +1,23 @@
1
1
  import * as redux from 'redux';
2
2
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
3
- import createWebSdk from '@descope/web-js-sdk';
4
3
  import * as _descope_sdk_mixins from '@descope/sdk-mixins';
4
+ import createWebSdk from '@descope/web-js-sdk';
5
5
  import * as _descope_sdk_component_drivers from '@descope/sdk-component-drivers';
6
6
 
7
+ type TenantAdminLinkSSOResponse = {
8
+ defaultLink: string;
9
+ ssoIdToLink: Record<string, string>;
10
+ };
11
+
7
12
  declare const createSdk: (config: Parameters<typeof createWebSdk>[0], tenant: string, mock: boolean, widgetId?: string) => {
8
13
  user: {
9
14
  me: () => Promise<any>;
10
15
  };
11
16
  tenant: {
12
17
  details: () => Promise<any>;
13
- adminLinkSso: () => Promise<any>;
18
+ adminLinkSso: ({ ssoIds }: {
19
+ ssoIds: string[];
20
+ }) => Promise<any>;
14
21
  };
15
22
  };
16
23
  type Sdk = ReturnType<typeof createSdk>;
@@ -29,76 +36,47 @@ type State = {
29
36
  tenantAdminLinkSSO: {
30
37
  loading: boolean;
31
38
  error: unknown;
32
- data: string;
39
+ data: {
40
+ defaultLink: string;
41
+ ssoIdToLink: Record<string, string>;
42
+ };
33
43
  };
34
44
  };
35
45
 
36
46
  declare const TenantProfileWidget: {
37
- new (...params: any[]): {
47
+ new (...args: any): {
38
48
  init(): Promise<void>;
39
- TenantSessionSettingsUserAuthMethodDriver: _descope_sdk_component_drivers.UserAuthMethodDriver;
40
- "__#15@#modal": _descope_sdk_component_drivers.ModalDriver;
41
- "__#15@#flow": _descope_sdk_component_drivers.FlowDriver;
42
- "__#15@#initModal"(): void;
43
- "__#15@#initModalContent"(): void;
44
- "__#15@#initSessionSettings"(): void;
45
- onWidgetRootReady: (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>);
46
- "__#34172@#ModalDriverWrapper": {
47
- new (refOrRefFn: Element | (() => HTMLElement), config: {
48
- logger: {
49
- error(...data: any[]): void;
50
- warn(...data: any[]): void;
51
- info(...data: any[]): void;
52
- debug(...data: any[]): void;
53
- };
54
- }): {
55
- setContent(template: HTMLTemplateElement): void;
56
- "__#34171@#private": any;
57
- beforeOpen: () => void | Promise<void>;
58
- afterClose: () => void;
59
- nodeName: string;
60
- close(): void;
61
- open(): Promise<void>;
62
- reset(): void;
63
- remove(): void;
64
- "__#34169@#private": any;
65
- logger: {
66
- error(...data: any[]): void;
67
- warn(...data: any[]): void;
68
- info(...data: any[]): void;
69
- debug(...data: any[]): void;
70
- };
71
- readonly asyncEle: Promise<Element>;
72
- readonly ele: Element;
73
- readonly isExists: boolean;
49
+ "__#8@#multiSso": _descope_sdk_component_drivers.MultiSsoConfigurationsDriver;
50
+ "__#8@#createModal": _descope_sdk_component_drivers.ModalDriver;
51
+ "__#8@#createFlow": _descope_sdk_component_drivers.FlowDriver;
52
+ "__#8@#deleteModal": _descope_sdk_component_drivers.ModalDriver;
53
+ "__#8@#deleteFlow": _descope_sdk_component_drivers.FlowDriver;
54
+ "__#8@#initCreateModal"(): void;
55
+ "__#8@#initDeleteModal"(): void;
56
+ "__#8@#openCreateModal"(createFlowId: string): void;
57
+ "__#8@#openDeleteModal"(deleteFlowId: string, id: string): void;
58
+ "__#8@#initFlowModals"(): void;
59
+ onWidgetRootReady: (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>);
60
+ "__#7@#initWidgetRoot": (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>);
61
+ state: State;
62
+ "__#5@#api": Sdk;
63
+ "__#5@#createSdk": (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
64
+ readonly widgetId: string;
65
+ readonly tenantId: string;
66
+ readonly mock: string;
67
+ readonly styleId: string;
68
+ readonly api: {
69
+ user: {
70
+ me: () => Promise<any>;
71
+ };
72
+ tenant: {
73
+ details: () => Promise<any>;
74
+ adminLinkSso: ({ ssoIds }: {
75
+ ssoIds: string[];
76
+ }) => Promise<any>;
74
77
  };
75
78
  };
76
- createModal(config?: Record<string, string>): _descope_sdk_component_drivers.ModalDriver;
77
- "__#34168@#getComponentsVersion": (() => Promise<string>) & (() => Promise<string>) & (() => Promise<string>);
78
- "__#34168@#getComponentsVersionSri": (() => Promise<string>) & (() => Promise<string>) & (() => Promise<string>);
79
- "__#34168@#descopeUi": Promise<any>;
80
- readonly descopeUi: Promise<any>;
81
- "__#34168@#loadDescopeUiComponent": ((componentName: string) => Promise<any>) & ((componentName: string) => Promise<any>) & ((componentName: string) => Promise<any>);
82
- "__#34168@#getDescopeUi": (() => Promise<any>) & (() => Promise<any>) & (() => Promise<any>);
83
- loadDescopeUiComponents: ((templateOrComponentNames: HTMLTemplateElement | string[]) => Promise<any[]>) & ((templateOrComponentNames: HTMLTemplateElement | string[]) => Promise<any[]>) & ((templateOrComponentNames: HTMLTemplateElement | string[]) => Promise<any[]>);
84
- readonly baseCdnUrl: string;
85
- injectNpmLib: ((libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string) => Promise<{
86
- id: string;
87
- url: URL;
88
- integrity?: string;
89
- }>) & ((libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string) => Promise<{
90
- id: string;
91
- url: URL;
92
- integrity?: string;
93
- }>) & ((libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string) => Promise<{
94
- id: string;
95
- url: URL;
96
- integrity?: string;
97
- }>);
98
- "__#34158@#logger": _descope_sdk_mixins.Logger;
99
- "__#34158@#wrapLogger": ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger);
100
- logger: _descope_sdk_mixins.Logger;
101
- onLogEvent: ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: _descope_sdk_mixins.LogLevel, data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: _descope_sdk_mixins.LogLevel, args: any[]) => void);
79
+ readonly refreshCookieName: string;
102
80
  accessKey: string;
103
81
  readonly accessKeyLabel: string;
104
82
  autocapitalize: string;
@@ -185,10 +163,10 @@ declare const TenantProfileWidget: {
185
163
  <K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
186
164
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
187
165
  } & {
188
- <K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
166
+ <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
189
167
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
190
168
  } & {
191
- <K extends keyof HTMLElementEventMap>(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions): void;
169
+ <K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
192
170
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
193
171
  } & {
194
172
  <K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
@@ -215,14 +193,14 @@ declare const TenantProfileWidget: {
215
193
  <K_1 extends keyof HTMLElementEventMap>(type: K_1, listener: (this: HTMLElement, ev: HTMLElementEventMap[K_1]) => any, options?: boolean | EventListenerOptions): void;
216
194
  (type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions): void;
217
195
  };
218
- attributeChangedCallback: ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & {
196
+ attributeChangedCallback: ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & {
219
197
  (attrName: string, oldValue: string | null, newValue: string | null): void;
220
198
  (attrName: string, oldValue: string | null, newValue: string | null): void;
221
- } & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string | null, newValue: string | null) => void);
222
- connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & {
199
+ } & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string, newValue: string) => void) & ((attrName: string, oldValue: string | null, newValue: string | null) => void);
200
+ connectedCallback: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & {
223
201
  (): void;
224
202
  (): void;
225
- } & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
203
+ } & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
226
204
  readonly attributes: NamedNodeMap;
227
205
  readonly classList: DOMTokenList;
228
206
  className: string;
@@ -273,11 +251,6 @@ declare const TenantProfileWidget: {
273
251
  <K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
274
252
  <K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
275
253
  <E extends Element = Element>(selectors: string): E;
276
- } & {
277
- <K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
278
- <K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
279
- <K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
280
- <E extends Element = Element>(selectors: string): E;
281
254
  } & {
282
255
  <K extends keyof HTMLElementTagNameMap>(selector: K): HTMLElementTagNameMap[K];
283
256
  <K extends keyof SVGElementTagNameMap>(selector: K): SVGElementTagNameMap[K];
@@ -323,13 +296,18 @@ declare const TenantProfileWidget: {
323
296
  <K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
324
297
  <K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
325
298
  <E extends Element = Element>(selectors: string): E;
299
+ } & {
300
+ <K_2 extends keyof HTMLElementTagNameMap>(selector: K_2): HTMLElementTagNameMap[K_2];
301
+ <K_3 extends keyof SVGElementTagNameMap>(selector: K_3): SVGElementTagNameMap[K_3];
302
+ <K_4 extends keyof MathMLElementTagNameMap>(selector: K_4): MathMLElementTagNameMap[K_4];
303
+ <E extends Element = Element>(selectors: string): E;
326
304
  };
327
305
  computedStyleMap: (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly) & (() => StylePropertyMapReadOnly);
328
- getAttribute: ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string | null) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string);
329
- getAttributeNS: ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string | null, localName: string) => string | null) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string);
306
+ getAttribute: ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string | null) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string) & ((qualifiedName: string) => string);
307
+ getAttributeNS: ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string | null, localName: string) => string | null) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string) & ((namespace: string, localName: string) => string);
330
308
  getAttributeNames: (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]) & (() => string[]);
331
- getAttributeNode: ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr | null) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr);
332
- getAttributeNodeNS: ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string | null, localName: string) => Attr | null) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr);
309
+ getAttributeNode: ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr | null) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr) & ((qualifiedName: string) => Attr);
310
+ getAttributeNodeNS: ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string | null, localName: string) => Attr | null) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr) & ((namespace: string, localName: string) => Attr);
333
311
  getBoundingClientRect: (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect) & (() => DOMRect);
334
312
  getClientRects: (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList) & (() => DOMRectList);
335
313
  getElementsByClassName: ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>) & ((classNames: string) => HTMLCollectionOf<Element>);
@@ -363,12 +341,6 @@ declare const TenantProfileWidget: {
363
341
  <K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
364
342
  <K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
365
343
  (qualifiedName: string): HTMLCollectionOf<Element>;
366
- } & {
367
- <K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
368
- <K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
369
- <K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
370
- <K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
371
- (qualifiedName: string): HTMLCollectionOf<Element>;
372
344
  } & {
373
345
  <K extends keyof HTMLElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>;
374
346
  <K extends keyof SVGElementTagNameMap>(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>;
@@ -423,6 +395,12 @@ declare const TenantProfileWidget: {
423
395
  <K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
424
396
  <K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
425
397
  (qualifiedName: string): HTMLCollectionOf<Element>;
398
+ } & {
399
+ <K_5 extends keyof HTMLElementTagNameMap>(qualifiedName: K_5): HTMLCollectionOf<HTMLElementTagNameMap[K_5]>;
400
+ <K_6 extends keyof SVGElementTagNameMap>(qualifiedName: K_6): HTMLCollectionOf<SVGElementTagNameMap[K_6]>;
401
+ <K_7 extends keyof MathMLElementTagNameMap>(qualifiedName: K_7): HTMLCollectionOf<MathMLElementTagNameMap[K_7]>;
402
+ <K_8 extends keyof HTMLElementDeprecatedTagNameMap>(qualifiedName: K_8): HTMLCollectionOf<HTMLElementDeprecatedTagNameMap[K_8]>;
403
+ (qualifiedName: string): HTMLCollectionOf<Element>;
426
404
  };
427
405
  getElementsByTagNameNS: {
428
406
  (namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
@@ -453,12 +431,12 @@ declare const TenantProfileWidget: {
453
431
  (namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
454
432
  (namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
455
433
  (namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
456
- (namespace: string, localName: string): HTMLCollectionOf<Element>;
434
+ (namespace: string | null, localName: string): HTMLCollectionOf<Element>;
457
435
  } & {
458
436
  (namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
459
437
  (namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
460
438
  (namespaceURI: "http://www.w3.org/1998/Math/MathML", localName: string): HTMLCollectionOf<MathMLElement>;
461
- (namespace: string | null, localName: string): HTMLCollectionOf<Element>;
439
+ (namespace: string, localName: string): HTMLCollectionOf<Element>;
462
440
  } & {
463
441
  (namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>;
464
442
  (namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>;
@@ -501,19 +479,19 @@ declare const TenantProfileWidget: {
501
479
  (namespace: string, localName: string): HTMLCollectionOf<Element>;
502
480
  };
503
481
  hasAttribute: ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean) & ((qualifiedName: string) => boolean);
504
- hasAttributeNS: ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string | null, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean);
482
+ hasAttributeNS: ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string | null, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean) & ((namespace: string, localName: string) => boolean);
505
483
  hasAttributes: (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean);
506
484
  hasPointerCapture: ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean) & ((pointerId: number) => boolean);
507
- insertAdjacentElement: ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element | null) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element);
508
- insertAdjacentHTML: ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, string: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void);
485
+ insertAdjacentElement: ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element | null) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element) & ((where: InsertPosition, element: Element) => Element);
486
+ insertAdjacentHTML: ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, string: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void) & ((position: InsertPosition, text: string) => void);
509
487
  insertAdjacentText: ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void) & ((where: InsertPosition, data: string) => void);
510
488
  matches: ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean);
511
489
  releasePointerCapture: ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void);
512
490
  removeAttribute: ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void) & ((qualifiedName: string) => void);
513
- removeAttributeNS: ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string | null, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void);
491
+ removeAttributeNS: ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string | null, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void) & ((namespace: string, localName: string) => void);
514
492
  removeAttributeNode: ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
515
493
  requestFullscreen: ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>) & ((options?: FullscreenOptions) => Promise<void>);
516
- requestPointerLock: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & ((options?: PointerLockOptions) => Promise<void>) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
494
+ requestPointerLock: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & ((options?: PointerLockOptions) => Promise<void>) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
517
495
  scroll: {
518
496
  (options?: ScrollToOptions): void;
519
497
  (x: number, y: number): void;
@@ -654,9 +632,9 @@ declare const TenantProfileWidget: {
654
632
  (x: number, y: number): void;
655
633
  };
656
634
  setAttribute: ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void) & ((qualifiedName: string, value: string) => void);
657
- setAttributeNS: ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string | null, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void);
658
- setAttributeNode: ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr | null) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
659
- setAttributeNodeNS: ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr | null) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
635
+ setAttributeNS: ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string | null, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void) & ((namespace: string, qualifiedName: string, value: string) => void);
636
+ setAttributeNode: ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr | null) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
637
+ setAttributeNodeNS: ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr | null) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr) & ((attr: Attr) => Attr);
660
638
  setPointerCapture: ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void) & ((pointerId: number) => void);
661
639
  toggleAttribute: ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean) & ((qualifiedName: string, force?: boolean) => boolean);
662
640
  webkitMatchesSelector: ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean) & ((selectors: string) => boolean);
@@ -673,21 +651,21 @@ declare const TenantProfileWidget: {
673
651
  readonly parentNode: ParentNode | null;
674
652
  readonly previousSibling: ChildNode | null;
675
653
  textContent: string | null;
676
- appendChild: (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T extends Node>(node: T) => T) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1);
654
+ appendChild: (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T extends Node>(node: T) => T) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1) & (<T_1 extends Node>(node: T_1) => T_1);
677
655
  cloneNode: ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node) & ((deep?: boolean) => Node);
678
656
  compareDocumentPosition: ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number) & ((other: Node) => number);
679
- contains: ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node | null) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean);
657
+ contains: ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node | null) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean) & ((other: Node) => boolean);
680
658
  getRootNode: ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node) & ((options?: GetRootNodeOptions) => Node);
681
659
  hasChildNodes: (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean) & (() => boolean);
682
- insertBefore: (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T extends Node>(node: T, child: Node | null) => T) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2);
683
- isDefaultNamespace: ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string | null) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean);
684
- isEqualNode: ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node | null) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
685
- isSameNode: ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node | null) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
686
- lookupNamespaceURI: ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string | null) => string | null) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string);
687
- lookupPrefix: ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string | null) => string | null) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string);
660
+ insertBefore: (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T extends Node>(node: T, child: Node | null) => T) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2) & (<T_2 extends Node>(node: T_2, child: Node) => T_2);
661
+ isDefaultNamespace: ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string | null) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean) & ((namespace: string) => boolean);
662
+ isEqualNode: ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node | null) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
663
+ isSameNode: ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node | null) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean) & ((otherNode: Node) => boolean);
664
+ lookupNamespaceURI: ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string | null) => string | null) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string) & ((prefix: string) => string);
665
+ lookupPrefix: ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string | null) => string | null) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string) & ((namespace: string) => string);
688
666
  normalize: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
689
- removeChild: (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T extends Node>(child: T) => T) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3);
690
- replaceChild: (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T extends Node>(node: Node, child: T) => T) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4);
667
+ removeChild: (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T extends Node>(child: T) => T) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3) & (<T_3 extends Node>(child: T_3) => T_3);
668
+ replaceChild: (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T extends Node>(node: Node, child: T) => T) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4) & (<T_4 extends Node>(node: Node, child: T_4) => T_4);
691
669
  readonly ELEMENT_NODE: 1;
692
670
  readonly ATTRIBUTE_NODE: 2;
693
671
  readonly TEXT_NODE: 3;
@@ -746,12 +724,12 @@ declare const TenantProfileWidget: {
746
724
  ariaValueNow: string | null;
747
725
  ariaValueText: string | null;
748
726
  role: string | null;
749
- animate: ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation);
727
+ animate: ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes | null, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation) & ((keyframes: Keyframe[] | PropertyIndexedKeyframes, options?: number | KeyframeAnimationOptions) => Animation);
750
728
  getAnimations: ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]) & ((options?: GetAnimationsOptions) => Animation[]);
751
- after: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
752
- before: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
729
+ after: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
730
+ before: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
753
731
  remove: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
754
- replaceWith: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
732
+ replaceWith: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
755
733
  innerHTML: string;
756
734
  readonly nextElementSibling: Element | null;
757
735
  readonly previousElementSibling: Element | null;
@@ -759,8 +737,8 @@ declare const TenantProfileWidget: {
759
737
  readonly children: HTMLCollection;
760
738
  readonly firstElementChild: Element | null;
761
739
  readonly lastElementChild: Element | null;
762
- append: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
763
- prepend: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
740
+ append: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
741
+ prepend: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
764
742
  querySelector: {
765
743
  <K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
766
744
  <K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
@@ -791,12 +769,6 @@ declare const TenantProfileWidget: {
791
769
  <K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
792
770
  <K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
793
771
  <E_1 extends Element = Element>(selectors: string): E_1;
794
- } & {
795
- <K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
796
- <K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
797
- <K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
798
- <K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
799
- <E_1 extends Element = Element>(selectors: string): E_1;
800
772
  } & {
801
773
  <K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
802
774
  <K extends keyof SVGElementTagNameMap>(selectors: K): SVGElementTagNameMap[K] | null;
@@ -851,6 +823,12 @@ declare const TenantProfileWidget: {
851
823
  <K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
852
824
  <K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
853
825
  <E_1 extends Element = Element>(selectors: string): E_1;
826
+ } & {
827
+ <K_9 extends keyof HTMLElementTagNameMap>(selectors: K_9): HTMLElementTagNameMap[K_9];
828
+ <K_10 extends keyof SVGElementTagNameMap>(selectors: K_10): SVGElementTagNameMap[K_10];
829
+ <K_11 extends keyof MathMLElementTagNameMap>(selectors: K_11): MathMLElementTagNameMap[K_11];
830
+ <K_12 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_12): HTMLElementDeprecatedTagNameMap[K_12];
831
+ <E_1 extends Element = Element>(selectors: string): E_1;
854
832
  };
855
833
  querySelectorAll: {
856
834
  <K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
@@ -882,12 +860,6 @@ declare const TenantProfileWidget: {
882
860
  <K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
883
861
  <K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
884
862
  <E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
885
- } & {
886
- <K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
887
- <K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
888
- <K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
889
- <K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
890
- <E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
891
863
  } & {
892
864
  <K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
893
865
  <K extends keyof SVGElementTagNameMap>(selectors: K): NodeListOf<SVGElementTagNameMap[K]>;
@@ -942,8 +914,14 @@ declare const TenantProfileWidget: {
942
914
  <K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
943
915
  <K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
944
916
  <E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
917
+ } & {
918
+ <K_13 extends keyof HTMLElementTagNameMap>(selectors: K_13): NodeListOf<HTMLElementTagNameMap[K_13]>;
919
+ <K_14 extends keyof SVGElementTagNameMap>(selectors: K_14): NodeListOf<SVGElementTagNameMap[K_14]>;
920
+ <K_15 extends keyof MathMLElementTagNameMap>(selectors: K_15): NodeListOf<MathMLElementTagNameMap[K_15]>;
921
+ <K_16 extends keyof HTMLElementDeprecatedTagNameMap>(selectors: K_16): NodeListOf<HTMLElementDeprecatedTagNameMap[K_16]>;
922
+ <E_2 extends Element = Element>(selectors: string): NodeListOf<E_2>;
945
923
  };
946
- replaceChildren: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
924
+ replaceChildren: ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (Node | string)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void) & ((...nodes: (string | Node)[]) => void);
947
925
  readonly assignedSlot: HTMLSlotElement | null;
948
926
  readonly attributeStyleMap: StylePropertyMap;
949
927
  readonly style: CSSStyleDeclaration;
@@ -1014,7 +992,7 @@ declare const TenantProfileWidget: {
1014
992
  onpointerout: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
1015
993
  onpointerover: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
1016
994
  onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any) & ((this: GlobalEventHandlers, ev: PointerEvent) => any);
1017
- onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any);
995
+ onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any) & ((this: GlobalEventHandlers, ev: ProgressEvent<EventTarget>) => any);
1018
996
  onratechange: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
1019
997
  onreset: ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any) & ((this: GlobalEventHandlers, ev: Event) => any);
1020
998
  onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any) & ((this: GlobalEventHandlers, ev: UIEvent) => any);
@@ -1053,131 +1031,17 @@ declare const TenantProfileWidget: {
1053
1031
  tabIndex: number;
1054
1032
  blur: (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
1055
1033
  focus: ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void) & ((options?: FocusOptions) => void);
1056
- readonly config: Promise<_descope_sdk_mixins.Config>;
1057
- "__#34164@#configCacheClear": (() => void) & (() => void) & (() => void) & (() => void);
1058
- "__#34164@#_configResource": Promise<_descope_sdk_mixins.Config>;
1059
- "__#34164@#fetchConfig": (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>);
1060
- "__#34159@#isInit": boolean;
1061
- "__#34163@#callbacks": Map<string, () => void> & Map<string, () => void> & Map<string, () => void> & Map<string, () => void>;
1062
- onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
1063
- reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
1064
- "__#34161@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string | null) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1065
- "__#34160@#observeMappings": {} & {} & {};
1066
- observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string | null) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
1067
- observeAttributes: ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string | null) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
1068
- "__#34162@#lastBaseUrl"?: string;
1069
- "__#34162@#workingBaseUrl"?: string;
1070
- "__#34162@#failedUrls": Set<string>;
1071
- "__#34162@#getResourceUrls": ((filename: string) => (URL & {
1072
- baseUrl: string;
1073
- }) | (URL & {
1074
- baseUrl: string;
1075
- })[]) & ((filename: string) => (URL & {
1076
- baseUrl: string;
1077
- })[] | (URL & {
1078
- baseUrl: string;
1079
- })) & ((filename: string) => (URL & {
1080
- baseUrl: string;
1081
- }) | (URL & {
1082
- baseUrl: string;
1083
- })[]) & ((filename: string) => (URL & {
1084
- baseUrl: string;
1085
- }) | (URL & {
1086
- baseUrl: string;
1087
- })[]) & ((filename: string) => (URL & {
1088
- baseUrl: string;
1089
- }) | (URL & {
1090
- baseUrl: string;
1091
- })[]) & ((filename: string) => (URL & {
1092
- baseUrl: string;
1093
- }) | (URL & {
1094
- baseUrl: string;
1095
- })[]);
1096
- "__#34162@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
1097
- baseUrl: string;
1098
- }) & ((filename: string, baseUrl: string) => URL & {
1099
- baseUrl: string;
1100
- }) & ((filename: string, baseUrl: string) => URL & {
1101
- baseUrl: string;
1102
- }) & ((filename: string, baseUrl: string) => URL & {
1103
- baseUrl: string;
1104
- }) & ((filename: string, baseUrl: string) => URL & {
1105
- baseUrl: string;
1106
- }) & ((filename: string, baseUrl: string) => URL & {
1107
- baseUrl: string;
1108
- });
1109
- fetchStaticResource: (<F extends "text" | "json">(filename: string, format: F) => Promise<{
1110
- body: F extends "json" ? Record<string, any> : string;
1111
- headers: Record<string, string>;
1112
- }>) & (<F extends "text" | "json">(filename: string, format: F) => Promise<{
1113
- body: F extends "json" ? Record<string, any> : string;
1114
- headers: Record<string, string>;
1115
- }>) & (<F extends "text" | "json">(filename: string, format: F) => Promise<{
1116
- body: F extends "json" ? Record<string, any> : string;
1117
- headers: Record<string, string>;
1118
- }>) & (<F extends "text" | "json">(filename: string, format: F) => Promise<{
1119
- body: F extends "json" ? Record<string, any> : string;
1120
- headers: Record<string, string>;
1121
- }>) & (<F_1 extends "text" | "json">(filename: string, format: F_1) => Promise<{
1122
- body: F_1 extends "json" ? Record<string, any> : string;
1123
- headers: Record<string, string>;
1124
- }>) & (<F_2 extends "text" | "json">(filename: string, format: F_2) => Promise<{
1125
- body: F_2 extends "json" ? Record<string, any> : string;
1126
- headers: Record<string, string>;
1127
- }>);
1128
- readonly baseStaticUrl: string;
1129
1034
  readonly baseUrl: string;
1035
+ "__#36547@#logger": _descope_sdk_mixins.Logger;
1036
+ "__#36547@#wrapLogger": ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger) & ((logger: Partial<_descope_sdk_mixins.Logger>) => _descope_sdk_mixins.Logger);
1037
+ logger: _descope_sdk_mixins.Logger;
1038
+ onLogEvent: ((logLevel: _descope_sdk_mixins.LogLevel, data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: "error" | "warn" | "info" | "debug", data: any[]) => void) & ((logLevel: _descope_sdk_mixins.LogLevel, args: any[]) => void);
1039
+ "__#36549@#observeMappings": {};
1040
+ observeAttribute: ((attrName: string, onAttrChange: (attrName: string, value: string | null) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any) & ((attrName: string, onAttrChange: (attrName: string, value: string) => void) => () => any);
1041
+ observeAttributes: ((attrs: string[], cb: (attrName: string, value: string | null) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void) & ((attrs: string[], cb: (attrName: string, value: string) => void) => () => void);
1042
+ "__#36548@#isInit": boolean;
1130
1043
  readonly projectId: string;
1131
- contentRootElement: HTMLElement;
1132
- rootElement: HTMLElement;
1133
- injectStyle: ((cssString: string, { prepend }?: {
1134
- prepend?: boolean;
1135
- }) => {
1136
- styleEle: HTMLStyleElement;
1137
- ref: HTMLElement | ShadowRoot;
1138
- replaceSync(cssString: string): void;
1139
- readonly cssRules: CSSRuleList;
1140
- } | CSSStyleSheet) & ((cssString: string, { prepend }?: {
1141
- prepend?: boolean;
1142
- }) => {
1143
- styleEle: HTMLStyleElement;
1144
- ref: HTMLElement | ShadowRoot;
1145
- replaceSync(cssString: string): void;
1146
- readonly cssRules: CSSRuleList;
1147
- } | CSSStyleSheet) & ((cssString: string, { prepend }?: {
1148
- prepend?: boolean;
1149
- }) => {
1150
- styleEle: HTMLStyleElement;
1151
- ref: HTMLElement | ShadowRoot;
1152
- replaceSync(cssString: string): void;
1153
- readonly cssRules: CSSRuleList;
1154
- } | CSSStyleSheet) & ((cssString: string, { prepend }?: {
1155
- prepend?: boolean;
1156
- }) => {
1157
- styleEle: HTMLStyleElement;
1158
- ref: HTMLElement | ShadowRoot;
1159
- replaceSync(cssString: string): void;
1160
- readonly cssRules: CSSRuleList;
1161
- } | CSSStyleSheet);
1162
- "__#34165@#setNonce": (() => void) & (() => void) & (() => void) & (() => void);
1163
- readonly refreshCookieName: string;
1164
- "__#7@#initWidgetRoot": (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>) & (() => Promise<void>);
1165
- state: State;
1166
- "__#5@#api": Sdk;
1167
- "__#5@#createSdk": (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
1168
- readonly widgetId: string;
1169
- readonly tenantId: string;
1170
- readonly mock: string;
1171
- readonly styleId: string;
1172
- readonly api: {
1173
- user: {
1174
- me: () => Promise<any>;
1175
- };
1176
- tenant: {
1177
- details: () => Promise<any>;
1178
- adminLinkSso: () => Promise<any>;
1179
- };
1180
- };
1044
+ "__#36550@#handleError": ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void) & ((attrName: string, newValue: string) => void);
1181
1045
  writingSuggestions: string;
1182
1046
  readonly currentCSSZoom: number;
1183
1047
  getHTML(options?: GetHTMLOptions): string;
@@ -1213,11 +1077,13 @@ declare const TenantProfileWidget: {
1213
1077
  fulfilledMeta?: unknown;
1214
1078
  rejectedMeta?: unknown;
1215
1079
  }>;
1216
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1080
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1081
+ ssoIds: string[];
1082
+ }, {
1217
1083
  extra: {
1218
1084
  api: Sdk;
1219
1085
  };
1220
- state?: unknown;
1086
+ state: State;
1221
1087
  dispatch?: redux.Dispatch;
1222
1088
  rejectValue?: unknown;
1223
1089
  serializedErrorType?: unknown;
@@ -1250,11 +1116,13 @@ declare const TenantProfileWidget: {
1250
1116
  fulfilledMeta?: unknown;
1251
1117
  rejectedMeta?: unknown;
1252
1118
  }>;
1253
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1119
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1120
+ ssoIds: string[];
1121
+ }, {
1254
1122
  extra: {
1255
1123
  api: Sdk;
1256
1124
  };
1257
- state?: unknown;
1125
+ state: State;
1258
1126
  dispatch?: redux.Dispatch;
1259
1127
  rejectValue?: unknown;
1260
1128
  serializedErrorType?: unknown;
@@ -1287,11 +1155,13 @@ declare const TenantProfileWidget: {
1287
1155
  fulfilledMeta?: unknown;
1288
1156
  rejectedMeta?: unknown;
1289
1157
  }>;
1290
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1158
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1159
+ ssoIds: string[];
1160
+ }, {
1291
1161
  extra: {
1292
1162
  api: Sdk;
1293
1163
  };
1294
- state?: unknown;
1164
+ state: State;
1295
1165
  dispatch?: redux.Dispatch;
1296
1166
  rejectValue?: unknown;
1297
1167
  serializedErrorType?: unknown;
@@ -1324,11 +1194,13 @@ declare const TenantProfileWidget: {
1324
1194
  fulfilledMeta?: unknown;
1325
1195
  rejectedMeta?: unknown;
1326
1196
  }>;
1327
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1197
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1198
+ ssoIds: string[];
1199
+ }, {
1328
1200
  extra: {
1329
1201
  api: Sdk;
1330
1202
  };
1331
- state?: unknown;
1203
+ state: State;
1332
1204
  dispatch?: redux.Dispatch;
1333
1205
  rejectValue?: unknown;
1334
1206
  serializedErrorType?: unknown;
@@ -1361,11 +1233,13 @@ declare const TenantProfileWidget: {
1361
1233
  fulfilledMeta?: unknown;
1362
1234
  rejectedMeta?: unknown;
1363
1235
  }>;
1364
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1236
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1237
+ ssoIds: string[];
1238
+ }, {
1365
1239
  extra: {
1366
1240
  api: Sdk;
1367
1241
  };
1368
- state?: unknown;
1242
+ state: State;
1369
1243
  dispatch?: redux.Dispatch;
1370
1244
  rejectValue?: unknown;
1371
1245
  serializedErrorType?: unknown;
@@ -1398,11 +1272,13 @@ declare const TenantProfileWidget: {
1398
1272
  fulfilledMeta?: unknown;
1399
1273
  rejectedMeta?: unknown;
1400
1274
  }>;
1401
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1275
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1276
+ ssoIds: string[];
1277
+ }, {
1402
1278
  extra: {
1403
1279
  api: Sdk;
1404
1280
  };
1405
- state?: unknown;
1281
+ state: State;
1406
1282
  dispatch?: redux.Dispatch;
1407
1283
  rejectValue?: unknown;
1408
1284
  serializedErrorType?: unknown;
@@ -1435,11 +1311,13 @@ declare const TenantProfileWidget: {
1435
1311
  fulfilledMeta?: unknown;
1436
1312
  rejectedMeta?: unknown;
1437
1313
  }>;
1438
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1314
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1315
+ ssoIds: string[];
1316
+ }, {
1439
1317
  extra: {
1440
1318
  api: Sdk;
1441
1319
  };
1442
- state?: unknown;
1320
+ state: State;
1443
1321
  dispatch?: redux.Dispatch;
1444
1322
  rejectValue?: unknown;
1445
1323
  serializedErrorType?: unknown;
@@ -1472,11 +1350,13 @@ declare const TenantProfileWidget: {
1472
1350
  fulfilledMeta?: unknown;
1473
1351
  rejectedMeta?: unknown;
1474
1352
  }>;
1475
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1353
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1354
+ ssoIds: string[];
1355
+ }, {
1476
1356
  extra: {
1477
1357
  api: Sdk;
1478
1358
  };
1479
- state?: unknown;
1359
+ state: State;
1480
1360
  dispatch?: redux.Dispatch;
1481
1361
  rejectValue?: unknown;
1482
1362
  serializedErrorType?: unknown;
@@ -1509,11 +1389,13 @@ declare const TenantProfileWidget: {
1509
1389
  fulfilledMeta?: unknown;
1510
1390
  rejectedMeta?: unknown;
1511
1391
  }>;
1512
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1392
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1393
+ ssoIds: string[];
1394
+ }, {
1513
1395
  extra: {
1514
1396
  api: Sdk;
1515
1397
  };
1516
- state?: unknown;
1398
+ state: State;
1517
1399
  dispatch?: redux.Dispatch;
1518
1400
  rejectValue?: unknown;
1519
1401
  serializedErrorType?: unknown;
@@ -1546,11 +1428,13 @@ declare const TenantProfileWidget: {
1546
1428
  fulfilledMeta?: unknown;
1547
1429
  rejectedMeta?: unknown;
1548
1430
  }>;
1549
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1431
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1432
+ ssoIds: string[];
1433
+ }, {
1550
1434
  extra: {
1551
1435
  api: Sdk;
1552
1436
  };
1553
- state?: unknown;
1437
+ state: State;
1554
1438
  dispatch?: redux.Dispatch;
1555
1439
  rejectValue?: unknown;
1556
1440
  serializedErrorType?: unknown;
@@ -1583,11 +1467,13 @@ declare const TenantProfileWidget: {
1583
1467
  fulfilledMeta?: unknown;
1584
1468
  rejectedMeta?: unknown;
1585
1469
  }>;
1586
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1470
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1471
+ ssoIds: string[];
1472
+ }, {
1587
1473
  extra: {
1588
1474
  api: Sdk;
1589
1475
  };
1590
- state?: unknown;
1476
+ state: State;
1591
1477
  dispatch?: redux.Dispatch;
1592
1478
  rejectValue?: unknown;
1593
1479
  serializedErrorType?: unknown;
@@ -1620,11 +1506,13 @@ declare const TenantProfileWidget: {
1620
1506
  fulfilledMeta?: unknown;
1621
1507
  rejectedMeta?: unknown;
1622
1508
  }>;
1623
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1509
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1510
+ ssoIds: string[];
1511
+ }, {
1624
1512
  extra: {
1625
1513
  api: Sdk;
1626
1514
  };
1627
- state?: unknown;
1515
+ state: State;
1628
1516
  dispatch?: redux.Dispatch;
1629
1517
  rejectValue?: unknown;
1630
1518
  serializedErrorType?: unknown;
@@ -1657,11 +1545,13 @@ declare const TenantProfileWidget: {
1657
1545
  fulfilledMeta?: unknown;
1658
1546
  rejectedMeta?: unknown;
1659
1547
  }>;
1660
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1548
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1549
+ ssoIds: string[];
1550
+ }, {
1661
1551
  extra: {
1662
1552
  api: Sdk;
1663
1553
  };
1664
- state?: unknown;
1554
+ state: State;
1665
1555
  dispatch?: redux.Dispatch;
1666
1556
  rejectValue?: unknown;
1667
1557
  serializedErrorType?: unknown;
@@ -1694,11 +1584,13 @@ declare const TenantProfileWidget: {
1694
1584
  fulfilledMeta?: unknown;
1695
1585
  rejectedMeta?: unknown;
1696
1586
  }>;
1697
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1587
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1588
+ ssoIds: string[];
1589
+ }, {
1698
1590
  extra: {
1699
1591
  api: Sdk;
1700
1592
  };
1701
- state?: unknown;
1593
+ state: State;
1702
1594
  dispatch?: redux.Dispatch;
1703
1595
  rejectValue?: unknown;
1704
1596
  serializedErrorType?: unknown;
@@ -1731,11 +1623,13 @@ declare const TenantProfileWidget: {
1731
1623
  fulfilledMeta?: unknown;
1732
1624
  rejectedMeta?: unknown;
1733
1625
  }>;
1734
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1626
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1627
+ ssoIds: string[];
1628
+ }, {
1735
1629
  extra: {
1736
1630
  api: Sdk;
1737
1631
  };
1738
- state?: unknown;
1632
+ state: State;
1739
1633
  dispatch?: redux.Dispatch;
1740
1634
  rejectValue?: unknown;
1741
1635
  serializedErrorType?: unknown;
@@ -1768,11 +1662,13 @@ declare const TenantProfileWidget: {
1768
1662
  fulfilledMeta?: unknown;
1769
1663
  rejectedMeta?: unknown;
1770
1664
  }>;
1771
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1665
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1666
+ ssoIds: string[];
1667
+ }, {
1772
1668
  extra: {
1773
1669
  api: Sdk;
1774
1670
  };
1775
- state?: unknown;
1671
+ state: State;
1776
1672
  dispatch?: redux.Dispatch;
1777
1673
  rejectValue?: unknown;
1778
1674
  serializedErrorType?: unknown;
@@ -1805,7 +1701,34 @@ declare const TenantProfileWidget: {
1805
1701
  fulfilledMeta?: unknown;
1806
1702
  rejectedMeta?: unknown;
1807
1703
  }>;
1808
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1704
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1705
+ ssoIds: string[];
1706
+ }, {
1707
+ extra: {
1708
+ api: Sdk;
1709
+ };
1710
+ state: State;
1711
+ dispatch?: redux.Dispatch;
1712
+ rejectValue?: unknown;
1713
+ serializedErrorType?: unknown;
1714
+ pendingMeta?: unknown;
1715
+ fulfilledMeta?: unknown;
1716
+ rejectedMeta?: unknown;
1717
+ }>;
1718
+ } & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
1719
+ getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
1720
+ extra: {
1721
+ api: Sdk;
1722
+ };
1723
+ state?: unknown;
1724
+ dispatch?: redux.Dispatch;
1725
+ rejectValue?: unknown;
1726
+ serializedErrorType?: unknown;
1727
+ pendingMeta?: unknown;
1728
+ fulfilledMeta?: unknown;
1729
+ rejectedMeta?: unknown;
1730
+ }>;
1731
+ getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
1809
1732
  extra: {
1810
1733
  api: Sdk;
1811
1734
  };
@@ -1817,6 +1740,20 @@ declare const TenantProfileWidget: {
1817
1740
  fulfilledMeta?: unknown;
1818
1741
  rejectedMeta?: unknown;
1819
1742
  }>;
1743
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1744
+ ssoIds: string[];
1745
+ }, {
1746
+ extra: {
1747
+ api: Sdk;
1748
+ };
1749
+ state: State;
1750
+ dispatch?: redux.Dispatch;
1751
+ rejectValue?: unknown;
1752
+ serializedErrorType?: unknown;
1753
+ pendingMeta?: unknown;
1754
+ fulfilledMeta?: unknown;
1755
+ rejectedMeta?: unknown;
1756
+ }>;
1820
1757
  } & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
1821
1758
  getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
1822
1759
  extra: {
@@ -1842,7 +1779,34 @@ declare const TenantProfileWidget: {
1842
1779
  fulfilledMeta?: unknown;
1843
1780
  rejectedMeta?: unknown;
1844
1781
  }>;
1845
- getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<any, never, {
1782
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1783
+ ssoIds: string[];
1784
+ }, {
1785
+ extra: {
1786
+ api: Sdk;
1787
+ };
1788
+ state: State;
1789
+ dispatch?: redux.Dispatch;
1790
+ rejectValue?: unknown;
1791
+ serializedErrorType?: unknown;
1792
+ pendingMeta?: unknown;
1793
+ fulfilledMeta?: unknown;
1794
+ rejectedMeta?: unknown;
1795
+ }>;
1796
+ } & _reduxjs_toolkit.CaseReducerActions<{}, "widget"> & {
1797
+ getMe: _reduxjs_toolkit.AsyncThunk<any, never, {
1798
+ extra: {
1799
+ api: Sdk;
1800
+ };
1801
+ state?: unknown;
1802
+ dispatch?: redux.Dispatch;
1803
+ rejectValue?: unknown;
1804
+ serializedErrorType?: unknown;
1805
+ pendingMeta?: unknown;
1806
+ fulfilledMeta?: unknown;
1807
+ rejectedMeta?: unknown;
1808
+ }>;
1809
+ getTenant: _reduxjs_toolkit.AsyncThunk<any, never, {
1846
1810
  extra: {
1847
1811
  api: Sdk;
1848
1812
  };
@@ -1854,53 +1818,250 @@ declare const TenantProfileWidget: {
1854
1818
  fulfilledMeta?: unknown;
1855
1819
  rejectedMeta?: unknown;
1856
1820
  }>;
1821
+ getTenantAdminLinkSSO: _reduxjs_toolkit.AsyncThunk<TenantAdminLinkSSOResponse, {
1822
+ ssoIds: string[];
1823
+ }, {
1824
+ extra: {
1825
+ api: Sdk;
1826
+ };
1827
+ state: State;
1828
+ dispatch?: redux.Dispatch;
1829
+ rejectValue?: unknown;
1830
+ serializedErrorType?: unknown;
1831
+ pendingMeta?: unknown;
1832
+ fulfilledMeta?: unknown;
1833
+ rejectedMeta?: unknown;
1834
+ }>;
1857
1835
  };
1858
1836
  subscribe: <SelectorR = State>(cb: (state: SelectorR) => void, selector?: (state: State) => SelectorR) => redux.Unsubscribe;
1859
- fetchWidgetPage: ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>) & ((filename: string) => Promise<string>);
1860
- syncFlowTheme: ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void);
1861
- "__#34174@#globalStyle": _descope_sdk_mixins.InjectedStyle;
1862
- "__#34174@#tenantStyle": _descope_sdk_mixins.InjectedStyle;
1863
- "__#34174@#customStyle": _descope_sdk_mixins.InjectedStyle;
1837
+ fetchWidgetPage(filename: string): Promise<string>;
1838
+ "__#36564@#tryFetchLocalized"(filename: string): Promise<string | undefined>;
1839
+ readonly locale: string;
1840
+ readonly localeCandidates: string[];
1841
+ firstAvailableLocale: ((availableLocales: string[]) => string) & ((availableLocales: string[]) => string);
1842
+ getWidgetConfig(): Promise<_descope_sdk_mixins.WidgetConfig>;
1843
+ readonly config: Promise<_descope_sdk_mixins.Config>;
1844
+ "__#36553@#configCacheClear": (() => void) & (() => void) & (() => void) & (() => void) & (() => void);
1845
+ "__#36553@#_configResource": Promise<_descope_sdk_mixins.Config>;
1846
+ "__#36553@#fetchConfig": (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>) & (() => Promise<_descope_sdk_mixins.Config>);
1847
+ "__#36552@#callbacks": Map<string, () => void> & Map<string, () => void> & Map<string, () => void> & Map<string, () => void> & Map<string, () => void>;
1848
+ onReset: ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void) & ((sectionId: string, callback: () => void | Promise<void>) => () => void);
1849
+ reset: ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>) & ((...sectionIds: string[]) => Promise<void>);
1850
+ "__#36551@#lastBaseUrl"?: string;
1851
+ "__#36551@#workingBaseUrl"?: string;
1852
+ "__#36551@#failedUrls": Set<string>;
1853
+ "__#36551@#getResourceUrls": ((filename: string) => (URL & {
1854
+ baseUrl: string;
1855
+ }) | (URL & {
1856
+ baseUrl: string;
1857
+ })[]) & ((filename: string) => (URL & {
1858
+ baseUrl: string;
1859
+ }) | (URL & {
1860
+ baseUrl: string;
1861
+ })[]) & ((filename: string) => (URL & {
1862
+ baseUrl: string;
1863
+ }) | (URL & {
1864
+ baseUrl: string;
1865
+ })[]) & ((filename: string) => (URL & {
1866
+ baseUrl: string;
1867
+ }) | (URL & {
1868
+ baseUrl: string;
1869
+ })[]) & ((filename: string) => (URL & {
1870
+ baseUrl: string;
1871
+ }) | (URL & {
1872
+ baseUrl: string;
1873
+ })[]) & ((filename: string) => (URL & {
1874
+ baseUrl: string;
1875
+ }) | (URL & {
1876
+ baseUrl: string;
1877
+ })[]) & ((filename: string) => (URL & {
1878
+ baseUrl: string;
1879
+ }) | (URL & {
1880
+ baseUrl: string;
1881
+ })[]);
1882
+ "__#36551@#createResourceUrl": ((filename: string, baseUrl: string) => URL & {
1883
+ baseUrl: string;
1884
+ }) & ((filename: string, baseUrl: string) => URL & {
1885
+ baseUrl: string;
1886
+ }) & ((filename: string, baseUrl: string) => URL & {
1887
+ baseUrl: string;
1888
+ }) & ((filename: string, baseUrl: string) => URL & {
1889
+ baseUrl: string;
1890
+ }) & ((filename: string, baseUrl: string) => URL & {
1891
+ baseUrl: string;
1892
+ }) & ((filename: string, baseUrl: string) => URL & {
1893
+ baseUrl: string;
1894
+ }) & ((filename: string, baseUrl: string) => URL & {
1895
+ baseUrl: string;
1896
+ });
1897
+ fetchStaticResource: (<F extends "text" | "json">(filename: string, format: F) => Promise<{
1898
+ body: F extends "json" ? Record<string, any> : string;
1899
+ headers: Record<string, string>;
1900
+ }>) & (<F_1 extends "text" | "json">(filename: string, format: F_1) => Promise<{
1901
+ body: F_1 extends "json" ? Record<string, any> : string;
1902
+ headers: Record<string, string>;
1903
+ }>) & (<F extends "text" | "json">(filename: string, format: F) => Promise<{
1904
+ body: F extends "json" ? Record<string, any> : string;
1905
+ headers: Record<string, string>;
1906
+ }>) & (<F extends "text" | "json">(filename: string, format: F) => Promise<{
1907
+ body: F extends "json" ? Record<string, any> : string;
1908
+ headers: Record<string, string>;
1909
+ }>) & (<F extends "text" | "json">(filename: string, format: F) => Promise<{
1910
+ body: F extends "json" ? Record<string, any> : string;
1911
+ headers: Record<string, string>;
1912
+ }>) & (<F_1 extends "text" | "json">(filename: string, format: F_1) => Promise<{
1913
+ body: F_1 extends "json" ? Record<string, any> : string;
1914
+ headers: Record<string, string>;
1915
+ }>) & (<F_2 extends "text" | "json">(filename: string, format: F_2) => Promise<{
1916
+ body: F_2 extends "json" ? Record<string, any> : string;
1917
+ headers: Record<string, string>;
1918
+ }>);
1919
+ readonly baseStaticUrl: string;
1920
+ contentRootElement: HTMLElement;
1921
+ rootElement: HTMLElement;
1922
+ injectStyle: ((cssString: string, { prepend }?: {
1923
+ prepend?: boolean;
1924
+ }) => {
1925
+ styleEle: HTMLStyleElement;
1926
+ ref: HTMLElement | ShadowRoot;
1927
+ replaceSync(cssString: string): void;
1928
+ readonly cssRules: CSSRuleList;
1929
+ } | CSSStyleSheet) & ((cssString: string, { prepend }?: {
1930
+ prepend?: boolean;
1931
+ }) => {
1932
+ styleEle: HTMLStyleElement;
1933
+ ref: HTMLElement | ShadowRoot;
1934
+ replaceSync(cssString: string): void;
1935
+ readonly cssRules: CSSRuleList;
1936
+ } | CSSStyleSheet) & ((cssString: string, { prepend }?: {
1937
+ prepend?: boolean;
1938
+ }) => {
1939
+ styleEle: HTMLStyleElement;
1940
+ ref: HTMLElement | ShadowRoot;
1941
+ replaceSync(cssString: string): void;
1942
+ readonly cssRules: CSSRuleList;
1943
+ } | CSSStyleSheet) & ((cssString: string, { prepend }?: {
1944
+ prepend?: boolean;
1945
+ }) => {
1946
+ styleEle: HTMLStyleElement;
1947
+ ref: HTMLElement | ShadowRoot;
1948
+ replaceSync(cssString: string): void;
1949
+ readonly cssRules: CSSRuleList;
1950
+ } | CSSStyleSheet);
1951
+ "__#36554@#setNonce": (() => void) & (() => void) & (() => void) & (() => void);
1952
+ "__#36557@#getComponentsVersion": (() => Promise<string>) & (() => Promise<string>) & (() => Promise<string>);
1953
+ "__#36557@#getComponentsVersionSri": (() => Promise<string>) & (() => Promise<string>) & (() => Promise<string>);
1954
+ "__#36557@#descopeUi": Promise<any>;
1955
+ readonly descopeUi: Promise<any>;
1956
+ "__#36557@#loadDescopeUiComponent": ((componentName: string) => Promise<any>) & ((componentName: string) => Promise<any>) & ((componentName: string) => Promise<any>);
1957
+ "__#36557@#getDescopeUi": (() => Promise<any>) & (() => Promise<any>) & (() => Promise<any>);
1958
+ loadDescopeUiComponents: ((templateOrComponentNames: HTMLTemplateElement | string[]) => Promise<any[]>) & ((templateOrComponentNames: HTMLTemplateElement | string[]) => Promise<any[]>) & ((templateOrComponentNames: HTMLTemplateElement | string[]) => Promise<any[]>);
1959
+ readonly baseCdnUrl: string;
1960
+ injectNpmLib: ((libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string) => Promise<{
1961
+ id: string;
1962
+ url: URL;
1963
+ integrity?: string;
1964
+ }>) & ((libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string) => Promise<{
1965
+ id: string;
1966
+ url: URL;
1967
+ integrity?: string;
1968
+ }>) & ((libName: string, version: string, filePath?: string, overrides?: string[], integrity?: string) => Promise<{
1969
+ id: string;
1970
+ url: URL;
1971
+ integrity?: string;
1972
+ }>);
1973
+ "__#36561@#ModalDriverWrapper": {
1974
+ new (refOrRefFn: Element | (() => HTMLElement), config: {
1975
+ logger: {
1976
+ error(...data: any[]): void;
1977
+ warn(...data: any[]): void;
1978
+ info(...data: any[]): void;
1979
+ debug(...data: any[]): void;
1980
+ };
1981
+ }): {
1982
+ setContent(template: HTMLTemplateElement): void;
1983
+ "__#36560@#private": any;
1984
+ beforeOpen: () => void | Promise<void>;
1985
+ afterClose: () => void;
1986
+ nodeName: string;
1987
+ close(): void;
1988
+ open(): Promise<void>;
1989
+ reset(): void;
1990
+ remove(): void;
1991
+ "__#36558@#private": any;
1992
+ logger: {
1993
+ error(...data: any[]): void;
1994
+ warn(...data: any[]): void;
1995
+ info(...data: any[]): void;
1996
+ debug(...data: any[]): void;
1997
+ };
1998
+ readonly asyncEle: Promise<Element>;
1999
+ readonly ele: Element;
2000
+ readonly isExists: boolean;
2001
+ };
2002
+ };
2003
+ createModal(config?: Record<string, string>): _descope_sdk_component_drivers.ModalDriver;
2004
+ syncFlowTheme: ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void) & ((flowDriver: _descope_sdk_component_drivers.FlowDriver) => void);
2005
+ "__#36563@#globalStyle": _descope_sdk_mixins.InjectedStyle;
2006
+ "__#36563@#tenantStyle": _descope_sdk_mixins.InjectedStyle;
2007
+ "__#36563@#customStyle": _descope_sdk_mixins.InjectedStyle;
1864
2008
  readonly theme: _descope_sdk_mixins.ThemeOptions;
1865
2009
  readonly themeOverride: Record<string, any>;
1866
- "__#34174@#getThemeOverrideString"(): string;
1867
- "__#34174@#_themeResource": Promise<void | Record<string, any>>;
1868
- "__#34174@#_tenantThemeResource": Promise<Record<string, any> | undefined>;
1869
- "__#34174@#fetchTheme"(): Promise<Record<string, any>>;
1870
- readonly "__#34174@#themeResource": Promise<void | Record<string, any>>;
1871
- "__#34174@#loadGlobalStyle"(): Promise<void>;
1872
- "__#34174@#fetchTenantTheme"(): Promise<Record<string, any>>;
1873
- readonly "__#34174@#tenantThemeResource": Promise<Record<string, any>>;
1874
- "__#34174@#loadTenantStyle"(): Promise<void>;
1875
- "__#34174@#loadCustomStyle"(): Promise<void>;
1876
- "__#34174@#loadComponentsStyle"(): Promise<void>;
1877
- "__#34174@#getFontsConfig"(): Promise<Record<string, {
2010
+ "__#36563@#getThemeOverrideString"(): string;
2011
+ "__#36563@#_themeResource": Promise<void | Record<string, any>>;
2012
+ "__#36563@#_tenantThemeResource": Promise<Record<string, any> | undefined>;
2013
+ "__#36563@#fetchTheme"(): Promise<Record<string, any>>;
2014
+ readonly "__#36563@#themeResource": Promise<void | Record<string, any>>;
2015
+ "__#36563@#loadGlobalStyle"(): Promise<void>;
2016
+ "__#36563@#fetchTenantTheme"(): Promise<Record<string, any>>;
2017
+ readonly "__#36563@#tenantThemeResource": Promise<Record<string, any>>;
2018
+ "__#36563@#loadTenantStyle"(): Promise<void>;
2019
+ "__#36563@#loadCustomStyle"(): Promise<void>;
2020
+ "__#36563@#loadComponentsStyle"(): Promise<void>;
2021
+ "__#36563@#getFontsConfig"(): Promise<Record<string, {
1878
2022
  url?: string;
1879
2023
  }>>;
1880
- "__#34174@#loadFonts"(): Promise<void>;
1881
- "__#34174@#applyTheme"(): Promise<void>;
1882
- "__#34174@#onThemeChange": () => void;
1883
- "__#34174@#loadTheme"(): void;
1884
- "__#34174@#toggleOsThemeChangeListener": (listen: boolean) => void;
2024
+ "__#36563@#loadFonts"(): Promise<void>;
2025
+ "__#36563@#applyTheme"(): Promise<void>;
2026
+ "__#36563@#onThemeChange": () => void;
2027
+ "__#36563@#loadTheme"(): void;
2028
+ "__#36563@#toggleOsThemeChangeListener": (listen: boolean) => void;
2029
+ TenantSessionSettingsUserAuthMethodDriver: _descope_sdk_component_drivers.UserAuthMethodDriver;
2030
+ "__#16@#modal": _descope_sdk_component_drivers.ModalDriver;
2031
+ "__#16@#flow": _descope_sdk_component_drivers.FlowDriver;
2032
+ "__#16@#initModal"(): void;
2033
+ "__#16@#initModalContent"(): void;
2034
+ "__#16@#initSessionSettings"(): void;
1885
2035
  TenantPasswordPolicyUserAuthMethodDriver: _descope_sdk_component_drivers.UserAuthMethodDriver;
1886
- "__#14@#modal": _descope_sdk_component_drivers.ModalDriver;
1887
- "__#14@#flow": _descope_sdk_component_drivers.FlowDriver;
1888
- "__#14@#initModal"(): void;
1889
- "__#14@#initModalContent"(): void;
1890
- "__#14@#initPasswordPolicy"(): void;
2036
+ "__#15@#modal": _descope_sdk_component_drivers.ModalDriver;
2037
+ "__#15@#flow": _descope_sdk_component_drivers.FlowDriver;
2038
+ "__#15@#initModal"(): void;
2039
+ "__#15@#initModalContent"(): void;
2040
+ "__#15@#initPasswordPolicy"(): void;
1891
2041
  tenantAdminLinkSSODriver: _descope_sdk_component_drivers.LinkDriver;
1892
- "__#8@#initTenantAdminLinkSSO"(): void;
1893
- "__#8@#onValueUpdate": (tenantAdminLinkSSO: string) => void;
1894
- "__#9@#editModals": Record<string, _descope_sdk_component_drivers.ModalDriver>;
1895
- "__#9@#editFlows": Record<string, _descope_sdk_component_drivers.FlowDriver>;
1896
- "__#9@#deleteModals": Record<string, _descope_sdk_component_drivers.ModalDriver>;
1897
- "__#9@#deleteFlows": Record<string, _descope_sdk_component_drivers.FlowDriver>;
1898
- "__#9@#initEditModalContent"(flowId: string, type: string, attName: string): void;
1899
- "__#9@#initDeleteModalContent"(flowId: string): void;
1900
- "__#9@#updateCustomValueTenantAttrs": (tenantCustomAttributes: any) => void;
1901
- "__#9@#initEditFlow"(nodeEle: Element, customAttrName: string, compInstance: _descope_sdk_component_drivers.UserAttributeDriver, type: string, attName: string): void;
1902
- "__#9@#initDeleteFlow"(nodeEle: Element, customAttrName: string, compInstance: _descope_sdk_component_drivers.UserAttributeDriver): void;
2042
+ "__#9@#initTenantAdminLinkSSO"(): void;
2043
+ "__#9@#onValueUpdate": (tenantAdminLinkSSO: string) => void;
2044
+ "__#10@#editModals": Record<string, _descope_sdk_component_drivers.ModalDriver>;
2045
+ "__#10@#editFlows": Record<string, _descope_sdk_component_drivers.FlowDriver>;
2046
+ "__#10@#deleteModals": Record<string, _descope_sdk_component_drivers.ModalDriver>;
2047
+ "__#10@#deleteFlows": Record<string, _descope_sdk_component_drivers.FlowDriver>;
2048
+ "__#10@#initEditModalContent"(flowId: string, type: string, attName: string): void;
2049
+ "__#10@#initDeleteModalContent"(flowId: string): void;
2050
+ "__#10@#updateCustomValueTenantAttrs": (tenantCustomAttributes: any) => void;
2051
+ "__#10@#initEditFlow"(nodeEle: Element, customAttrName: string, compInstance: _descope_sdk_component_drivers.UserAttributeDriver, type: string, attName: string): void;
2052
+ "__#10@#initDeleteFlow"(nodeEle: Element, customAttrName: string, compInstance: _descope_sdk_component_drivers.UserAttributeDriver): void;
1903
2053
  tenantEnforceSSODriver: _descope_sdk_component_drivers.UserAttributeDriver;
2054
+ "__#13@#editModal": _descope_sdk_component_drivers.ModalDriver;
2055
+ "__#13@#editFlow": _descope_sdk_component_drivers.FlowDriver;
2056
+ "__#13@#deleteModal": _descope_sdk_component_drivers.ModalDriver;
2057
+ "__#13@#deleteFlow": _descope_sdk_component_drivers.FlowDriver;
2058
+ "__#13@#initEditModal"(): void;
2059
+ "__#13@#initEditModalContent"(): void;
2060
+ "__#13@#initDeleteModal"(): void;
2061
+ "__#13@#initDeleteModalContent"(): void;
2062
+ "__#13@#initTenantEnforceSSO"(): void;
2063
+ "__#13@#onValueUpdate": (tenantEnforceSSO: any) => void;
2064
+ tenantSSOExclusionsDriver: _descope_sdk_component_drivers.UserAttributeDriver;
1904
2065
  "__#12@#editModal": _descope_sdk_component_drivers.ModalDriver;
1905
2066
  "__#12@#editFlow": _descope_sdk_component_drivers.FlowDriver;
1906
2067
  "__#12@#deleteModal": _descope_sdk_component_drivers.ModalDriver;
@@ -1909,9 +2070,9 @@ declare const TenantProfileWidget: {
1909
2070
  "__#12@#initEditModalContent"(): void;
1910
2071
  "__#12@#initDeleteModal"(): void;
1911
2072
  "__#12@#initDeleteModalContent"(): void;
1912
- "__#12@#initTenantEnforceSSO"(): void;
1913
- "__#12@#onValueUpdate": (tenantEnforceSSO: any) => void;
1914
- tenantSSOExclusionsDriver: _descope_sdk_component_drivers.UserAttributeDriver;
2073
+ "__#12@#initTenantSSOExclusions"(): void;
2074
+ "__#12@#onValueUpdate": (ssoEnforceSSOExclusions: any) => void;
2075
+ tenantEmailDomainsDriver: _descope_sdk_component_drivers.UserAttributeDriver;
1915
2076
  "__#11@#editModal": _descope_sdk_component_drivers.ModalDriver;
1916
2077
  "__#11@#editFlow": _descope_sdk_component_drivers.FlowDriver;
1917
2078
  "__#11@#deleteModal": _descope_sdk_component_drivers.ModalDriver;
@@ -1920,28 +2081,17 @@ declare const TenantProfileWidget: {
1920
2081
  "__#11@#initEditModalContent"(): void;
1921
2082
  "__#11@#initDeleteModal"(): void;
1922
2083
  "__#11@#initDeleteModalContent"(): void;
1923
- "__#11@#initTenantSSOExclusions"(): void;
1924
- "__#11@#onValueUpdate": (ssoEnforceSSOExclusions: any) => void;
1925
- tenantEmailDomainsDriver: _descope_sdk_component_drivers.UserAttributeDriver;
1926
- "__#10@#editModal": _descope_sdk_component_drivers.ModalDriver;
1927
- "__#10@#editFlow": _descope_sdk_component_drivers.FlowDriver;
1928
- "__#10@#deleteModal": _descope_sdk_component_drivers.ModalDriver;
1929
- "__#10@#deleteFlow": _descope_sdk_component_drivers.FlowDriver;
1930
- "__#10@#initEditModal"(): void;
1931
- "__#10@#initEditModalContent"(): void;
1932
- "__#10@#initDeleteModal"(): void;
1933
- "__#10@#initDeleteModalContent"(): void;
1934
- "__#10@#initTenantEmailDomains"(): void;
1935
- "__#10@#onValueUpdate": (tenantEmailDomains: any) => void;
2084
+ "__#11@#initTenantEmailDomains"(): void;
2085
+ "__#11@#onValueUpdate": (tenantEmailDomains: any) => void;
1936
2086
  tenantNameDriver: _descope_sdk_component_drivers.UserAttributeDriver;
1937
- "__#13@#editModal": _descope_sdk_component_drivers.ModalDriver;
1938
- "__#13@#editFlow": _descope_sdk_component_drivers.FlowDriver;
1939
- "__#13@#initEditModal"(): void;
1940
- "__#13@#initEditModalContent"(): void;
1941
- "__#13@#initTenantName"(): void;
1942
- "__#13@#onValueUpdate": (tenantName: any) => void;
2087
+ "__#14@#editModal": _descope_sdk_component_drivers.ModalDriver;
2088
+ "__#14@#editFlow": _descope_sdk_component_drivers.FlowDriver;
2089
+ "__#14@#initEditModal"(): void;
2090
+ "__#14@#initEditModalContent"(): void;
2091
+ "__#14@#initTenantName"(): void;
2092
+ "__#14@#onValueUpdate": (tenantName: any) => void;
1943
2093
  "__#6@#createFlowRedirectModal"(widgetFlow: string): void;
1944
- "__#34167@#debuggerEle": (HTMLElement & {
2094
+ "__#36556@#debuggerEle": (HTMLElement & {
1945
2095
  updateData: (data: {
1946
2096
  title: string;
1947
2097
  description?: string;
@@ -1950,11 +2100,11 @@ declare const TenantProfileWidget: {
1950
2100
  description?: string;
1951
2101
  }[]) => void;
1952
2102
  }) | null;
1953
- "__#34167@#disableDebugger"(): void;
1954
- "__#34167@#enableDebugger"(): Promise<void>;
2103
+ "__#36556@#disableDebugger"(): void;
2104
+ "__#36556@#enableDebugger"(): Promise<void>;
1955
2105
  readonly debug: boolean;
1956
- "__#34167@#handleDebugMode"(): void;
1957
- "__#34167@#updateDebuggerMessages"(title: string, description: string): void;
2106
+ "__#36556@#handleDebugMode"(): void;
2107
+ "__#36556@#updateDebuggerMessages"(title: string, description: string): void;
1958
2108
  };
1959
2109
  };
1960
2110