@openclaw/gateway-protocol 0.0.0 → 2026.7.2-beta.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/CHANGELOG.md +144 -0
- package/LICENSE +21 -0
- package/README.md +157 -2
- package/dist/client-info.d.mts +94 -0
- package/dist/client-info.mjs +82 -0
- package/dist/connect-error-details.d.mts +114 -0
- package/dist/connect-error-details.mjs +296 -0
- package/dist/frame-guards.d.mts +7 -0
- package/dist/frame-guards.mjs +26 -0
- package/dist/frames-DEn_IEne.d.mts +341 -0
- package/dist/gateway-error-details-Btc09cgL.d.mts +51 -0
- package/dist/gateway-error-details.d.mts +2 -0
- package/dist/gateway-error-details.mjs +67 -0
- package/dist/index.d.mts +3418 -0
- package/dist/index.mjs +441 -0
- package/dist/schema-modules-DpxvZ_Jx.d.mts +13395 -0
- package/dist/schema.d.mts +9783 -0
- package/dist/schema.mjs +758 -0
- package/dist/startup-unavailable.d.mts +23 -0
- package/dist/startup-unavailable.mjs +34 -0
- package/dist/version-COV9CEyr.d.mts +11 -0
- package/dist/version.d.mts +2 -0
- package/dist/version.mjs +11 -0
- package/dist/worktrees-CI-UANnD.mjs +9367 -0
- package/package.json +88 -6
- package/protocol.schema.json +69308 -0
package/package.json
CHANGED
|
@@ -1,11 +1,93 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/gateway-protocol",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2026.7.2-beta.5",
|
|
4
|
+
"description": "Typed schemas and runtime validators for the OpenClaw Gateway WebSocket protocol",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"gateway",
|
|
7
|
+
"openclaw",
|
|
8
|
+
"protocol",
|
|
9
|
+
"typebox",
|
|
10
|
+
"websocket"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://github.com/openclaw/openclaw#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/openclaw/openclaw/issues"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"author": "OpenClaw Foundation (https://openclaw.org)",
|
|
5
18
|
"repository": {
|
|
6
19
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/openclaw/openclaw"
|
|
20
|
+
"url": "git+https://github.com/openclaw/openclaw.git",
|
|
21
|
+
"directory": "packages/gateway-protocol"
|
|
8
22
|
},
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
23
|
+
"files": [
|
|
24
|
+
"dist",
|
|
25
|
+
"LICENSE",
|
|
26
|
+
"README.md",
|
|
27
|
+
"CHANGELOG.md",
|
|
28
|
+
"protocol.schema.json"
|
|
29
|
+
],
|
|
30
|
+
"sideEffects": false,
|
|
31
|
+
"type": "module",
|
|
32
|
+
"main": "./dist/index.mjs",
|
|
33
|
+
"types": "./dist/index.d.mts",
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"types": "./dist/index.d.mts",
|
|
37
|
+
"import": "./dist/index.mjs",
|
|
38
|
+
"default": "./dist/index.mjs"
|
|
39
|
+
},
|
|
40
|
+
"./client-info": {
|
|
41
|
+
"types": "./dist/client-info.d.mts",
|
|
42
|
+
"import": "./dist/client-info.mjs",
|
|
43
|
+
"default": "./dist/client-info.mjs"
|
|
44
|
+
},
|
|
45
|
+
"./connect-error-details": {
|
|
46
|
+
"types": "./dist/connect-error-details.d.mts",
|
|
47
|
+
"import": "./dist/connect-error-details.mjs",
|
|
48
|
+
"default": "./dist/connect-error-details.mjs"
|
|
49
|
+
},
|
|
50
|
+
"./frame-guards": {
|
|
51
|
+
"types": "./dist/frame-guards.d.mts",
|
|
52
|
+
"import": "./dist/frame-guards.mjs",
|
|
53
|
+
"default": "./dist/frame-guards.mjs"
|
|
54
|
+
},
|
|
55
|
+
"./gateway-error-details": {
|
|
56
|
+
"types": "./dist/gateway-error-details.d.mts",
|
|
57
|
+
"import": "./dist/gateway-error-details.mjs",
|
|
58
|
+
"default": "./dist/gateway-error-details.mjs"
|
|
59
|
+
},
|
|
60
|
+
"./schema": {
|
|
61
|
+
"types": "./dist/schema.d.mts",
|
|
62
|
+
"import": "./dist/schema.mjs",
|
|
63
|
+
"default": "./dist/schema.mjs"
|
|
64
|
+
},
|
|
65
|
+
"./startup-unavailable": {
|
|
66
|
+
"types": "./dist/startup-unavailable.d.mts",
|
|
67
|
+
"import": "./dist/startup-unavailable.mjs",
|
|
68
|
+
"default": "./dist/startup-unavailable.mjs"
|
|
69
|
+
},
|
|
70
|
+
"./version": {
|
|
71
|
+
"types": "./dist/version.d.mts",
|
|
72
|
+
"import": "./dist/version.mjs",
|
|
73
|
+
"default": "./dist/version.mjs"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"dependencies": {
|
|
77
|
+
"typebox": "1.3.6"
|
|
78
|
+
},
|
|
79
|
+
"engines": {
|
|
80
|
+
"node": ">=22.19.0"
|
|
81
|
+
},
|
|
82
|
+
"publishConfig": {
|
|
83
|
+
"access": "public"
|
|
84
|
+
},
|
|
85
|
+
"openclaw": {
|
|
86
|
+
"release": {
|
|
87
|
+
"publishToNpm": true
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"scripts": {
|
|
91
|
+
"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"
|
|
92
|
+
}
|
|
93
|
+
}
|