openclaw-brokerkit 0.1.0 → 0.3.0
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/README.md +109 -98
- package/dist/src/browser-session.js +7 -0
- package/dist/src/commands.js +8 -9
- package/dist/src/generated/openapi-operator-v1.js +5 -0
- package/dist/src/generated/operator-v1.js +14 -11
- package/dist/src/generated/operator-validators.js +2920 -0
- package/dist/src/http.js +92 -18
- package/dist/src/operator-v1.js +26 -80
- package/dist/src/revisions.js +108 -0
- package/dist/src/runtime.js +52 -17
- package/dist/ui/assets/index-xbT6e20b.js +149 -0
- package/dist/ui/index.html +1 -2
- package/package.json +24 -7
- package/dist/ui/assets/index-8w0_bcoC.js +0 -143
- package/dist/ui/assets/index-D8Ypbs3j.css +0 -1
package/dist/ui/index.html
CHANGED
|
@@ -4,8 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
6
6
|
<title>BrokerKit Approvals</title>
|
|
7
|
-
<script
|
|
8
|
-
<link rel="stylesheet" crossorigin href="/plugins/brokerkit/ui/assets/index-D8Ypbs3j.css">
|
|
7
|
+
<script defer src="/plugins/brokerkit/ui/assets/index-xbT6e20b.js"></script>
|
|
9
8
|
</head>
|
|
10
9
|
<body>
|
|
11
10
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,8 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-brokerkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Provider-neutral BrokerKit approvals for OpenClaw",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/osolmaz/brokerkit.git",
|
|
8
|
+
"directory": "plugins/openclaw"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/osolmaz/brokerkit/tree/main/plugins/openclaw#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/osolmaz/brokerkit/issues"
|
|
13
|
+
},
|
|
5
14
|
"type": "module",
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=24.18.0 <25"
|
|
17
|
+
},
|
|
6
18
|
"files": [
|
|
7
19
|
"dist",
|
|
8
20
|
"openclaw.plugin.json",
|
|
@@ -18,19 +30,21 @@
|
|
|
18
30
|
"test": "vitest run --config vitest.config.ts",
|
|
19
31
|
"test:browser": "playwright test",
|
|
20
32
|
"test:package": "node scripts/test-packed-install.mjs",
|
|
21
|
-
"generate": "
|
|
22
|
-
"generate:check": "node scripts/generate-
|
|
33
|
+
"generate": "../../scripts/generate-protocol.sh",
|
|
34
|
+
"generate:check": "../../scripts/check-protocol.sh && node scripts/generate-redaction-fixture.mjs --check",
|
|
35
|
+
"generate:redaction-fixture": "node scripts/generate-redaction-fixture.mjs",
|
|
23
36
|
"typecheck": "tsc --noEmit",
|
|
24
37
|
"lint": "eslint .",
|
|
25
38
|
"format:check": "prettier --check ."
|
|
26
39
|
},
|
|
27
40
|
"peerDependencies": {
|
|
28
|
-
"openclaw": ">=2026.7.1
|
|
41
|
+
"openclaw": ">=2026.7.1"
|
|
29
42
|
},
|
|
30
43
|
"devDependencies": {
|
|
31
44
|
"@eslint/js": "9.31.0",
|
|
32
45
|
"@playwright/test": "1.61.1",
|
|
33
46
|
"@tailwindcss/vite": "4.1.11",
|
|
47
|
+
"@testing-library/react": "16.3.2",
|
|
34
48
|
"@types/node": "24.0.13",
|
|
35
49
|
"@types/react": "19.1.8",
|
|
36
50
|
"@types/react-dom": "19.1.6",
|
|
@@ -39,7 +53,8 @@
|
|
|
39
53
|
"eslint-plugin-react-hooks": "5.2.0",
|
|
40
54
|
"eslint-plugin-react-refresh": "0.4.20",
|
|
41
55
|
"globals": "16.3.0",
|
|
42
|
-
"
|
|
56
|
+
"jsdom": "29.1.1",
|
|
57
|
+
"openclaw": "2026.7.1",
|
|
43
58
|
"prettier": "3.6.2",
|
|
44
59
|
"tailwindcss": "4.1.11",
|
|
45
60
|
"typescript": "5.8.3",
|
|
@@ -49,6 +64,8 @@
|
|
|
49
64
|
},
|
|
50
65
|
"dependencies": {
|
|
51
66
|
"@radix-ui/react-dialog": "1.1.14",
|
|
67
|
+
"ajv": "8.17.1",
|
|
68
|
+
"ajv-formats": "3.0.1",
|
|
52
69
|
"class-variance-authority": "0.7.1",
|
|
53
70
|
"clsx": "2.1.1",
|
|
54
71
|
"lucide-react": "0.525.0",
|
|
@@ -64,10 +81,10 @@
|
|
|
64
81
|
"install": {
|
|
65
82
|
"npmSpec": "openclaw-brokerkit",
|
|
66
83
|
"defaultChoice": "npm",
|
|
67
|
-
"minHostVersion": ">=2026.7.1
|
|
84
|
+
"minHostVersion": ">=2026.7.1"
|
|
68
85
|
},
|
|
69
86
|
"compat": {
|
|
70
|
-
"pluginApi": ">=2026.7.1
|
|
87
|
+
"pluginApi": ">=2026.7.1"
|
|
71
88
|
},
|
|
72
89
|
"release": {
|
|
73
90
|
"publishToClawHub": true,
|