@ikonai/sdk 1.0.28 → 1.0.30
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/assets/{protocol-worker-Dx4ECerb.js → protocol-worker-BNeN5rOx.js} +174 -143
- package/channel/channel-manager.d.ts +14 -2
- package/channel/channel.d.ts +5 -0
- package/client/ikon-client-config.d.ts +9 -8
- package/client/ikon-client.d.ts +16 -0
- package/index.d.ts +1 -1
- package/index.js +955 -862
- package/package.json +1 -1
- package/utils/query-params.d.ts +9 -0
package/package.json
CHANGED
package/utils/query-params.d.ts
CHANGED
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
* - ikon-server-url External connect URL for shareable preview links
|
|
15
15
|
* - ikon-git-source Enable Git source deployment mode (true)
|
|
16
16
|
* - ikon-git-branch Git branch for Git source deployment (e.g., "main")
|
|
17
|
+
* - ikon-audio Force audio on (true) or off (false)
|
|
18
|
+
* - ikon-video Force video on (true) or off (false)
|
|
19
|
+
* - ikon-webrtc Force WebRTC on (true) or off (false)
|
|
17
20
|
*/
|
|
18
21
|
export declare const IKON_PARAM_PROXY = "ikon-proxy";
|
|
19
22
|
export declare const IKON_PARAM_WEBSOCKET = "ikon-websocket";
|
|
@@ -23,6 +26,9 @@ export declare const IKON_PARAM_LANG = "ikon-lang";
|
|
|
23
26
|
export declare const IKON_PARAM_SERVER_URL = "ikon-server-url";
|
|
24
27
|
export declare const IKON_PARAM_GIT_SOURCE = "ikon-git-source";
|
|
25
28
|
export declare const IKON_PARAM_GIT_BRANCH = "ikon-git-branch";
|
|
29
|
+
export declare const IKON_PARAM_AUDIO = "ikon-audio";
|
|
30
|
+
export declare const IKON_PARAM_VIDEO = "ikon-video";
|
|
31
|
+
export declare const IKON_PARAM_WEBRTC = "ikon-webrtc";
|
|
26
32
|
/**
|
|
27
33
|
* Set an SDK query parameter in the URL via history.replaceState.
|
|
28
34
|
*/
|
|
@@ -33,3 +39,6 @@ export declare function getWebTransportParam(): boolean | null;
|
|
|
33
39
|
export declare function getDebugParam(): boolean;
|
|
34
40
|
export declare function getLangParam(): string | null;
|
|
35
41
|
export declare function getServerUrlParam(): string | null;
|
|
42
|
+
export declare function getAudioParam(): boolean | null;
|
|
43
|
+
export declare function getVideoParam(): boolean | null;
|
|
44
|
+
export declare function getWebRtcParam(): boolean | null;
|