@ikonai/sdk 1.0.37 → 1.0.39
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/RELEASE-NOTES.md +33 -0
- package/assets/{protocol-worker-C3oOno6C.js → protocol-worker-DOmuqDno.js} +309 -284
- package/channel/channel-manager.d.ts +1 -0
- package/channel/channel.d.ts +5 -0
- package/client/endpoint-selector.d.ts +5 -0
- package/client/ikon-client-config.d.ts +2 -2
- package/connection/authenticator.d.ts +9 -1
- package/errors/index.d.ts +8 -0
- package/index.d.ts +2 -1
- package/index.js +2014 -1953
- package/package.json +1 -1
- package/transport/transport.d.ts +5 -0
- package/transport/web-socket-transport.d.ts +1 -0
- package/transport/web-transport-transport.d.ts +1 -0
- package/utils/log-sender.d.ts +2 -0
package/RELEASE-NOTES.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
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.
|