@upscopeio/sdk 2025.11.2 → 2025.11.10
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/index.d.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -29,10 +29,12 @@ type CobrowsingSdkConfiguration = {
|
|
|
29
29
|
allowRemoteMiddleware: (element: HTMLElement) => boolean;
|
|
30
30
|
allowRemoteScroll: boolean;
|
|
31
31
|
allowRemoteType: boolean;
|
|
32
|
+
allowRequestFullTab: boolean;
|
|
32
33
|
apiKey: string;
|
|
33
34
|
authorizationPromptMessage: string;
|
|
34
35
|
authorizationPromptTitle: string;
|
|
35
36
|
autoconnect: boolean;
|
|
37
|
+
automaticallyRequestFullTab: boolean;
|
|
36
38
|
beta: boolean;
|
|
37
39
|
callAudioAuthorizationFailedMessage: string;
|
|
38
40
|
callAudioAuthorizationFailedTitle: string;
|
|
@@ -56,6 +58,7 @@ type CobrowsingSdkConfiguration = {
|
|
|
56
58
|
customControlRequestController: ((callback: (accepted: boolean) => void) => (() => void) | void) | null;
|
|
57
59
|
customFullScreenRequestController: ((callback: (accepted: boolean) => void) => (() => void) | void) | null;
|
|
58
60
|
dataEndpoint: string;
|
|
61
|
+
disableFullScreenWhenMasked: boolean;
|
|
59
62
|
disconnectAfterSeconds: number;
|
|
60
63
|
domChangesDelay: number;
|
|
61
64
|
drawingsTtlMs: number;
|
|
@@ -133,6 +136,8 @@ type Instruction =
|
|
|
133
136
|
| ["connect"]
|
|
134
137
|
| ["customMessage", Record<string, unknown>]
|
|
135
138
|
| ["expectDisconnect", Partial<{ message: null | string; returnTimeSeconds: null | number; title: null | string }>]
|
|
139
|
+
| ["fullTabEnd"]
|
|
140
|
+
| ["fullTabStart"]
|
|
136
141
|
| ["getLookupCode", (code: string) => void]
|
|
137
142
|
| ["getPublicLink", { agentId: string; agentName: string }, (publicLink: string) => void]
|
|
138
143
|
| ["getShortId", (shortId: string) => void]
|
package/package.json
CHANGED