@rynx-ai/daemon 0.1.11-beta.21 → 0.1.11-beta.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.
|
@@ -1465,7 +1465,7 @@ function nonNegativeInteger(value, fallback, field) {
|
|
|
1465
1465
|
return value;
|
|
1466
1466
|
}
|
|
1467
1467
|
function parseCallTimeout(value) {
|
|
1468
|
-
if (value === undefined)
|
|
1468
|
+
if (value === undefined || value === null)
|
|
1469
1469
|
return undefined;
|
|
1470
1470
|
if (!Number.isSafeInteger(value) ||
|
|
1471
1471
|
value < MIN_CALL_TIMEOUT_MS ||
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rynx-ai/daemon",
|
|
3
|
-
"version": "0.1.11-beta.
|
|
3
|
+
"version": "0.1.11-beta.22",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/rynx-ai/rynx.git",
|
|
@@ -50,17 +50,17 @@
|
|
|
50
50
|
"pm2": "^6.0.0",
|
|
51
51
|
"tar": "^7.5.19",
|
|
52
52
|
"ws": "^8.21.0",
|
|
53
|
-
"@rynx-ai/core": "0.1.11-beta.
|
|
54
|
-
"@rynx-ai/emulator": "0.1.11-beta.
|
|
55
|
-
"@rynx-ai/plugin-runner": "0.1.11-beta.
|
|
56
|
-
"@rynx-ai/plugin-sdk": "0.1.11-beta.
|
|
57
|
-
"@rynx-ai/protocol": "0.1.11-beta.
|
|
58
|
-
"@rynx-ai/remote-runtime-client": "0.1.11-beta.
|
|
59
|
-
"@rynx-ai/server": "0.1.11-beta.
|
|
53
|
+
"@rynx-ai/core": "0.1.11-beta.22",
|
|
54
|
+
"@rynx-ai/emulator": "0.1.11-beta.22",
|
|
55
|
+
"@rynx-ai/plugin-runner": "0.1.11-beta.22",
|
|
56
|
+
"@rynx-ai/plugin-sdk": "0.1.11-beta.22",
|
|
57
|
+
"@rynx-ai/protocol": "0.1.11-beta.22",
|
|
58
|
+
"@rynx-ai/remote-runtime-client": "0.1.11-beta.22",
|
|
59
|
+
"@rynx-ai/server": "0.1.11-beta.22"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/ws": "^8.18.1",
|
|
63
|
-
"@rynx-ai/plugin-channel-lark": "0.1.11-beta.
|
|
63
|
+
"@rynx-ai/plugin-channel-lark": "0.1.11-beta.22"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"build": "rm -rf dist bundled-plugins && tsc -p tsconfig.json && chmod +x dist/index-daemon.js && node ../../scripts/stage-bundled-plugins.mjs",
|