@ikonai/sdk 1.0.42 → 1.0.43

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikonai/sdk",
3
- "version": "1.0.42",
3
+ "version": "1.0.43",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -18,7 +18,6 @@
18
18
  * - ikon-video Force video on (true) or off (false)
19
19
  * - ikon-webrtc Force WebRTC on (true) or off (false)
20
20
  * - ikon-inspect Enable element inspection overlay (true)
21
- * - ikon-init Enable optimized channel init flow (true)
22
21
  */
23
22
  export declare const IKON_PARAM_PROXY = "ikon-proxy";
24
23
  export declare const IKON_PARAM_WEBSOCKET = "ikon-websocket";
@@ -32,7 +31,6 @@ export declare const IKON_PARAM_AUDIO = "ikon-audio";
32
31
  export declare const IKON_PARAM_VIDEO = "ikon-video";
33
32
  export declare const IKON_PARAM_WEBRTC = "ikon-webrtc";
34
33
  export declare const IKON_PARAM_INSPECT = "ikon-inspect";
35
- export declare const IKON_PARAM_INIT = "ikon-init";
36
34
  /**
37
35
  * Set an SDK query parameter in the URL via history.replaceState.
38
36
  */
@@ -47,4 +45,3 @@ export declare function getAudioParam(): boolean | null;
47
45
  export declare function getVideoParam(): boolean | null;
48
46
  export declare function getWebRtcParam(): boolean | null;
49
47
  export declare function getInspectParam(): boolean;
50
- export declare function getInitParam(): boolean;