openclaw-brokerkit 0.3.3 → 0.3.4
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 +18 -0
- package/dist/src/generated/openapi-operator-v1.d.ts +458 -0
- package/dist/src/generated/operator-v1.d.ts +36 -0
- package/dist/src/generated/operator-v1.js +1 -1
- package/dist/src/generated/operator-validators.d.ts +131 -0
- package/dist/src/generated/operator-validators.js +153 -43
- package/dist/src/operator-v1.d.ts +21 -0
- package/dist/src/operator-v1.js +2 -3
- package/dist/src/types.d.ts +12 -0
- package/dist/ui/assets/{index-BRo7hb6B.js → index-Bfl62Y6x.js} +25 -25
- package/dist/ui/index.html +1 -1
- package/package.json +14 -3
package/dist/ui/index.html
CHANGED
|
@@ -4,7 +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 defer src="/plugins/brokerkit/ui/assets/index-
|
|
7
|
+
<script defer src="/plugins/brokerkit/ui/assets/index-Bfl62Y6x.js"></script>
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-brokerkit",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "Provider-neutral BrokerKit approvals for OpenClaw",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,10 +21,16 @@
|
|
|
21
21
|
"README.md"
|
|
22
22
|
],
|
|
23
23
|
"exports": {
|
|
24
|
-
".":
|
|
24
|
+
".": {
|
|
25
|
+
"import": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./operator-v1": {
|
|
28
|
+
"types": "./dist/src/operator-v1.d.ts",
|
|
29
|
+
"import": "./dist/src/operator-v1.js"
|
|
30
|
+
}
|
|
25
31
|
},
|
|
26
32
|
"scripts": {
|
|
27
|
-
"build": "pnpm run clean && vite build && tsc -p tsconfig.build.json",
|
|
33
|
+
"build": "pnpm run clean && vite build && tsc -p tsconfig.build.json && tsc -p tsconfig.operator-contract.json",
|
|
28
34
|
"check": "pnpm run generate:check && pnpm run typecheck && pnpm run lint && pnpm run format:check",
|
|
29
35
|
"clean": "rm -rf dist",
|
|
30
36
|
"test": "vitest run --config vitest.config.ts",
|
|
@@ -40,6 +46,11 @@
|
|
|
40
46
|
"peerDependencies": {
|
|
41
47
|
"openclaw": ">=2026.7.1"
|
|
42
48
|
},
|
|
49
|
+
"peerDependenciesMeta": {
|
|
50
|
+
"openclaw": {
|
|
51
|
+
"optional": true
|
|
52
|
+
}
|
|
53
|
+
},
|
|
43
54
|
"devDependencies": {
|
|
44
55
|
"@eslint/js": "9.31.0",
|
|
45
56
|
"@playwright/test": "1.61.1",
|