@openclaw/gateway-protocol 2026.8.1-beta.3 → 2026.8.1
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 +111 -17
- package/dist/client-info.d.mts +34 -23
- package/dist/client-info.mjs +2 -1
- package/dist/connect-error-details.d.mts +20 -21
- package/dist/frame-guards.d.mts +4 -5
- package/dist/{frames-BKvowx_k.d.mts → frames-CAy_vx4s.d.mts} +15 -14
- package/dist/{gateway-error-details-DR-CyzeW.d.mts → gateway-error-details-GvUeus2z.d.mts} +20 -8
- package/dist/gateway-error-details.d.mts +2 -2
- package/dist/gateway-error-details.mjs +2 -1
- package/dist/index.d.mts +1329 -440
- package/dist/index.mjs +75 -5
- package/dist/restart-unavailable.d.mts +8 -0
- package/dist/restart-unavailable.mjs +13 -0
- package/dist/{schema-modules-CriS_x5c.d.mts → schema-modules-Ci4vzz1h.d.mts} +4527 -835
- package/dist/schema.d.mts +3163 -44
- package/dist/schema.mjs +38 -2
- package/dist/startup-unavailable.d.mts +9 -10
- package/dist/{worktrees-D1V7ClOO.mjs → worktrees-DGAMd4T8.mjs} +1033 -159
- package/package.json +8 -3
- package/protocol.schema.json +22491 -1589
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/gateway-protocol",
|
|
3
|
-
"version": "2026.8.1
|
|
3
|
+
"version": "2026.8.1",
|
|
4
4
|
"description": "Typed schemas and runtime validators for the OpenClaw Gateway WebSocket protocol",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"gateway",
|
|
@@ -57,6 +57,11 @@
|
|
|
57
57
|
"import": "./dist/gateway-error-details.mjs",
|
|
58
58
|
"default": "./dist/gateway-error-details.mjs"
|
|
59
59
|
},
|
|
60
|
+
"./restart-unavailable": {
|
|
61
|
+
"types": "./dist/restart-unavailable.d.mts",
|
|
62
|
+
"import": "./dist/restart-unavailable.mjs",
|
|
63
|
+
"default": "./dist/restart-unavailable.mjs"
|
|
64
|
+
},
|
|
60
65
|
"./schema": {
|
|
61
66
|
"types": "./dist/schema.d.mts",
|
|
62
67
|
"import": "./dist/schema.mjs",
|
|
@@ -74,7 +79,7 @@
|
|
|
74
79
|
}
|
|
75
80
|
},
|
|
76
81
|
"dependencies": {
|
|
77
|
-
"typebox": "1.3.
|
|
82
|
+
"typebox": "1.3.16"
|
|
78
83
|
},
|
|
79
84
|
"devDependencies": {
|
|
80
85
|
"@openclaw/normalization-core": "0.0.0-private"
|
|
@@ -91,6 +96,6 @@
|
|
|
91
96
|
}
|
|
92
97
|
},
|
|
93
98
|
"scripts": {
|
|
94
|
-
"build": "tsdown src/index.ts src/client-info.ts src/connect-error-details.ts src/frame-guards.ts src/gateway-error-details.ts src/schema.ts src/startup-unavailable.ts src/version.ts --no-config --platform node --format esm --dts --out-dir dist --clean"
|
|
99
|
+
"build": "tsdown src/index.ts src/client-info.ts src/connect-error-details.ts src/frame-guards.ts src/gateway-error-details.ts src/restart-unavailable.ts src/schema.ts src/startup-unavailable.ts src/version.ts --no-config --platform node --format esm --dts --out-dir dist --clean"
|
|
95
100
|
}
|
|
96
101
|
}
|