@ikonai/sdk 1.0.40 → 1.0.41
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 +2 -1
- package/index.js +1430 -1412
- package/package.json +1 -1
- package/utils/inspect-mode.d.ts +3 -0
- package/utils/query-params.d.ts +3 -0
package/package.json
CHANGED
package/utils/query-params.d.ts
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
* - ikon-audio Force audio on (true) or off (false)
|
|
18
18
|
* - ikon-video Force video on (true) or off (false)
|
|
19
19
|
* - ikon-webrtc Force WebRTC on (true) or off (false)
|
|
20
|
+
* - ikon-inspect Enable element inspection overlay (true)
|
|
20
21
|
*/
|
|
21
22
|
export declare const IKON_PARAM_PROXY = "ikon-proxy";
|
|
22
23
|
export declare const IKON_PARAM_WEBSOCKET = "ikon-websocket";
|
|
@@ -29,6 +30,7 @@ export declare const IKON_PARAM_GIT_BRANCH = "ikon-git-branch";
|
|
|
29
30
|
export declare const IKON_PARAM_AUDIO = "ikon-audio";
|
|
30
31
|
export declare const IKON_PARAM_VIDEO = "ikon-video";
|
|
31
32
|
export declare const IKON_PARAM_WEBRTC = "ikon-webrtc";
|
|
33
|
+
export declare const IKON_PARAM_INSPECT = "ikon-inspect";
|
|
32
34
|
/**
|
|
33
35
|
* Set an SDK query parameter in the URL via history.replaceState.
|
|
34
36
|
*/
|
|
@@ -42,3 +44,4 @@ export declare function getServerUrlParam(): string | null;
|
|
|
42
44
|
export declare function getAudioParam(): boolean | null;
|
|
43
45
|
export declare function getVideoParam(): boolean | null;
|
|
44
46
|
export declare function getWebRtcParam(): boolean | null;
|
|
47
|
+
export declare function getInspectParam(): boolean;
|