@ikonai/sdk 0.0.4 → 0.0.5

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": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -1,4 +1,4 @@
1
- import { ProtocolMessage } from '../../../platform-generated/src/index.ts';
1
+ import { ProtocolMessage } from '../../../../shared/generated/src/index.ts';
2
2
  /**
3
3
  * Transport interface for Ikon server connections.
4
4
  * Designed to support both WebSocket and WebTransport implementations.
@@ -1,4 +1,4 @@
1
- import { ProtocolMessage } from '../../../platform-generated/src/index.ts';
1
+ import { ProtocolMessage } from '../../../../shared/generated/src/index.ts';
2
2
  import { Transport, TransportConfig } from './transport';
3
3
  /**
4
4
  * WebSocket transport implementation for Ikon server connections.
@@ -1,4 +1,4 @@
1
- import { ProtocolMessage } from '../../../platform-generated/src/index.ts';
1
+ import { ProtocolMessage } from '../../../../shared/generated/src/index.ts';
2
2
  import { Transport, TransportConfig } from './transport';
3
3
  /**
4
4
  * Check if WebTransport is supported in the current environment.