@botanary/agent 0.1.0-alpha.6 → 0.1.0-alpha.7
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 +4 -0
- package/package.json +13 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.7
|
|
4
|
+
|
|
5
|
+
- Republish the empty-recipient unrestricted-mandate fix through the exact protected pnpm artifact path.
|
|
6
|
+
|
|
3
7
|
## 0.1.0-alpha.6
|
|
4
8
|
|
|
5
9
|
- Treat an empty mandate recipient list as unrestricted while preserving exact membership checks for non-empty recipient allowlists.
|
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botanary/agent",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.7",
|
|
4
4
|
"description": "Botanary agent session and execution runtime with an injected signer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=22"
|
|
9
9
|
},
|
|
10
|
-
"packageManager": "pnpm@11.5.1",
|
|
11
10
|
"sideEffects": false,
|
|
12
11
|
"files": [
|
|
13
12
|
"dist",
|
|
@@ -24,18 +23,6 @@
|
|
|
24
23
|
"types": "./dist/generated/schema.d.ts"
|
|
25
24
|
}
|
|
26
25
|
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"generate": "node scripts/generate.mjs",
|
|
29
|
-
"check:generated": "node scripts/generate.mjs --check",
|
|
30
|
-
"check:inventory": "node ../protected-boundary/check-inventory.mjs agent",
|
|
31
|
-
"typecheck": "tsc --noEmit",
|
|
32
|
-
"build": "node ../protected-boundary/release-build.mjs agent",
|
|
33
|
-
"build:tsc": "tsc",
|
|
34
|
-
"audit:artifact": "node ../protected-boundary/audit-artifact.mjs agent",
|
|
35
|
-
"test": "vitest run",
|
|
36
|
-
"prepack": "pnpm check:generated && pnpm typecheck && pnpm build",
|
|
37
|
-
"test:packed": "node scripts/verify-packed.mjs"
|
|
38
|
-
},
|
|
39
26
|
"dependencies": {
|
|
40
27
|
"openapi-fetch": "0.17.0",
|
|
41
28
|
"viem": "2.54.6"
|
|
@@ -50,5 +37,16 @@
|
|
|
50
37
|
},
|
|
51
38
|
"publishConfig": {
|
|
52
39
|
"access": "public"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"generate": "node scripts/generate.mjs",
|
|
43
|
+
"check:generated": "node scripts/generate.mjs --check",
|
|
44
|
+
"check:inventory": "node ../protected-boundary/check-inventory.mjs agent",
|
|
45
|
+
"typecheck": "tsc --noEmit",
|
|
46
|
+
"build": "node ../protected-boundary/release-build.mjs agent",
|
|
47
|
+
"build:tsc": "tsc",
|
|
48
|
+
"audit:artifact": "node ../protected-boundary/audit-artifact.mjs agent",
|
|
49
|
+
"test": "vitest run",
|
|
50
|
+
"test:packed": "node scripts/verify-packed.mjs"
|
|
53
51
|
}
|
|
54
|
-
}
|
|
52
|
+
}
|