@sogni-ai/sogni-client 3.0.0-alpha.21 → 3.0.0-alpha.22
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [3.0.0-alpha.22](https://github.com/Sogni-AI/sogni-client/compare/v3.0.0-alpha.21...v3.0.0-alpha.22) (2025-05-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Bump PROTOCOL_VERSION ([6e5f6b9](https://github.com/Sogni-AI/sogni-client/commit/6e5f6b91870fbd557ce235d0508216c1b4e93cad))
|
|
7
|
+
|
|
1
8
|
# [3.0.0-alpha.21](https://github.com/Sogni-AI/sogni-client/compare/v3.0.0-alpha.20...v3.0.0-alpha.21) (2025-05-12)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -17,7 +17,7 @@ const isomorphic_ws_1 = __importDefault(require("isomorphic-ws"));
|
|
|
17
17
|
const base64_1 = require("../../lib/base64");
|
|
18
18
|
const isNodejs_1 = __importDefault(require("../../lib/isNodejs"));
|
|
19
19
|
const version_1 = require("../../version");
|
|
20
|
-
const PROTOCOL_VERSION = '0.
|
|
20
|
+
const PROTOCOL_VERSION = '3.0.0';
|
|
21
21
|
const PING_INTERVAL = 15000;
|
|
22
22
|
class WebSocketClient extends RestClient_1.default {
|
|
23
23
|
constructor(baseUrl, auth, appId, supernetType, logger) {
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ import { LIB_VERSION } from '../../version';
|
|
|
9
9
|
import { Logger } from '../../lib/DefaultLogger';
|
|
10
10
|
import AuthManager from '../../lib/AuthManager';
|
|
11
11
|
|
|
12
|
-
const PROTOCOL_VERSION = '0.
|
|
12
|
+
const PROTOCOL_VERSION = '3.0.0';
|
|
13
13
|
|
|
14
14
|
const PING_INTERVAL = 15000;
|
|
15
15
|
|