@ikonai/sdk 1.0.39 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikonai/sdk",
3
- "version": "1.0.39",
3
+ "version": "1.0.41",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -0,0 +1,3 @@
1
+ export declare function initializeInspectMode(): boolean;
2
+ export declare function isInspectModeEnabled(): boolean;
3
+ export declare function enableInspectMode(): void;
@@ -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;
package/RELEASE-NOTES.md DELETED
@@ -1,33 +0,0 @@
1
- # Release 1.0.39
2
-
3
- # Release Notes - SDK v1.0.38
4
-
5
- ## Bug Fixes
6
-
7
- - Reduced the default connection timeout from 5 minutes to 60 seconds so the SDK reports offline status much sooner when the server is unreachable.
8
- - Improved connection speed when multiple transport types are available by using shorter per-transport timeouts and faster fallback between transport types.
9
- - Fixed an issue where a remembered direct transport preference could override proxy preference, causing repeated connection failures in restrictive network environments.
10
- - Saved transport and proxy preferences now expire after 24 hours, allowing the SDK to re-evaluate optimal connection paths when network conditions change.
11
- - When the SDK falls back to a proxy connection, it now probes the direct server in the background and resets the proxy preference automatically once the direct path becomes reachable again.
12
-
13
- # Release 1.0.38
14
-
15
- ## New Features
16
-
17
- - Added a dedicated "Access Denied" screen that is displayed when the server rejects a user's access (e.g., due to domain allowlist restrictions), providing a clear message instead of a generic error.
18
-
19
- ## Bug Fixes
20
-
21
- - Fixed chart components (bar, line, and pie) to gracefully handle rendering errors instead of crashing the application.
22
- - Fixed line charts with time-based x-axis not rendering correctly when date values were provided as strings or numbers instead of Date objects.
23
-
24
- # Release 1.0.36
25
-
26
- ## New Features
27
-
28
- - Added brand color theming support — themes can now include a brand color name (e.g., `dark blue`, `light emerald`) to automatically apply brand-specific CSS custom properties across backgrounds, borders, text, and focus rings for 22 built-in color palettes.
29
- - Data table action buttons now support an `icon` property, rendering an icon instead of text when specified, with the label shown as a tooltip.
30
-
31
- ## Bug Fixes
32
-
33
- - Improved connection reliability by adding a per-request timeout, preventing the SDK from hanging indefinitely on unresponsive connect requests.