@paybond/kit 0.11.1 → 0.11.2
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 +1 -1
- package/dist/mcp-server.js +1 -1
- package/package.json +2 -2
- package/templates/manifest.json +9 -9
- package/templates/openai-shopping-agent/package-lock.json +8 -12
- package/templates/openai-shopping-agent/package.json +1 -1
- package/templates/paybond-aws-operator/package-lock.json +58 -4
- package/templates/paybond-aws-operator/package.json +1 -1
- package/templates/paybond-claude-agents-demo/package-lock.json +5 -4
- package/templates/paybond-claude-agents-demo/package.json +1 -1
- package/templates/paybond-invoice-agent/requirements.txt +1 -1
- package/templates/paybond-mcp-coding-agent/package-lock.json +58 -4
- package/templates/paybond-mcp-coding-agent/package.json +1 -1
- package/templates/paybond-openai-agents-demo/package-lock.json +8 -12
- package/templates/paybond-openai-agents-demo/package.json +1 -1
- package/templates/paybond-procurement-agent/package-lock.json +58 -4
- package/templates/paybond-procurement-agent/package.json +1 -1
- package/templates/paybond-travel-agent/package-lock.json +58 -4
- package/templates/paybond-travel-agent/package.json +1 -1
- package/templates/paybond-vercel-shopping-agent/package-lock.json +58 -4
- package/templates/paybond-vercel-shopping-agent/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Paybond is the SDK to use when you do not want to build your own delegated agent
|
|
|
12
12
|
npm install @paybond/kit
|
|
13
13
|
```
|
|
14
14
|
|
|
15
|
-
`@paybond/kit` is an ESM-only package for
|
|
15
|
+
`@paybond/kit` is an ESM-only package for Node.js runtimes. Use `import` from a Node ESM / `NodeNext` project or a compatible bundler.
|
|
16
16
|
|
|
17
17
|
### Optional framework integrations
|
|
18
18
|
|
package/dist/mcp-server.js
CHANGED
|
@@ -13,7 +13,7 @@ import { McpCapabilityTokenCache, mcpToolStoresCapabilityToken, parseMcpCapabili
|
|
|
13
13
|
import { createMcpPolicyGatewayAdapter, McpPolicyReloadGate, parseMcpPolicyReloadConfig, } from "./mcp-policy-reload.js";
|
|
14
14
|
import { DEFAULT_PAYBOND_GATEWAY_BASE_URL, GatewayFraudClient, GatewaySignalClient, } from "./index.js";
|
|
15
15
|
const SERVER_NAME = "Paybond MCP";
|
|
16
|
-
const SERVER_VERSION = "0.11.
|
|
16
|
+
const SERVER_VERSION = "0.11.2";
|
|
17
17
|
const MCP_PROTOCOL_VERSION = "2025-11-25";
|
|
18
18
|
const DEFAULT_PRINCIPAL_PATH = "/v1/auth/principal";
|
|
19
19
|
const DEFAULT_RECOGNITION_VERIFIER_ID = "paybond-gateway";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paybond/kit",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.2",
|
|
4
4
|
"mcpName": "io.github.nonameuserd/paybond",
|
|
5
5
|
"description": "Paybond Kit for TypeScript: agent spend governance for paid tool calls with spend authorization, evidence receipts, refunds, disputes, hosted Gateway sessions, and settlement.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -150,6 +150,7 @@
|
|
|
150
150
|
"@noble/ed25519": "^2.2.1",
|
|
151
151
|
"@noble/hashes": "^1.7.1",
|
|
152
152
|
"@noble/secp256k1": "^2.2.3",
|
|
153
|
+
"ajv": "^8.17.1",
|
|
153
154
|
"blake3": "^2.1.7",
|
|
154
155
|
"uuid": "^14.0.0"
|
|
155
156
|
},
|
|
@@ -161,7 +162,6 @@
|
|
|
161
162
|
"@openai/agents": "^0.12.0",
|
|
162
163
|
"@types/node": "^22.10.0",
|
|
163
164
|
"ai": "^7.0.4",
|
|
164
|
-
"ajv": "^8.17.1",
|
|
165
165
|
"typescript": "^5.7.2",
|
|
166
166
|
"vitest": "^4.1.8",
|
|
167
167
|
"zod": "^4.4.3"
|
package/templates/manifest.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"evidence_preset": "cost_and_completion",
|
|
14
14
|
"smoke_result_body": { "status": "completed", "cost_cents": 18700 },
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@paybond/kit": "^0.11.
|
|
16
|
+
"@paybond/kit": "^0.11.2",
|
|
17
17
|
"@langchain/core": "^1.2.1",
|
|
18
18
|
"@langchain/langgraph": "^1.4.7",
|
|
19
19
|
"zod": "^4.2.0"
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"evidence_preset": "cost_and_completion",
|
|
34
34
|
"smoke_result_body": { "status": "completed", "cost_cents": 4500 },
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@paybond/kit": "^0.11.
|
|
36
|
+
"@paybond/kit": "^0.11.2",
|
|
37
37
|
"ai": "^5.0.0",
|
|
38
38
|
"zod": "^4.2.0"
|
|
39
39
|
},
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"evidence_preset": "cost_and_completion",
|
|
53
53
|
"smoke_result_body": { "status": "completed", "cost_cents": 2900 },
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@paybond/kit": "^0.11.
|
|
55
|
+
"@paybond/kit": "^0.11.2",
|
|
56
56
|
"@openai/agents": "^0.4.0",
|
|
57
57
|
"zod": "^4.2.0"
|
|
58
58
|
},
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"evidence_preset": "cost_and_completion",
|
|
72
72
|
"smoke_result_body": { "status": "completed", "cost_cents": 4500 },
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"@paybond/kit": "^0.11.
|
|
74
|
+
"@paybond/kit": "^0.11.2",
|
|
75
75
|
"@openai/agents": "^0.4.0",
|
|
76
76
|
"zod": "^4.2.0"
|
|
77
77
|
},
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"evidence_preset": "cost_and_completion",
|
|
91
91
|
"smoke_result_body": { "status": "completed", "cost_cents": 18700 },
|
|
92
92
|
"dependencies": {
|
|
93
|
-
"@paybond/kit": "^0.11.
|
|
93
|
+
"@paybond/kit": "^0.11.2",
|
|
94
94
|
"@anthropic-ai/claude-agent-sdk": "^0.2.100",
|
|
95
95
|
"zod": "^4.2.0"
|
|
96
96
|
},
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"evidence_preset": "cost_and_completion",
|
|
111
111
|
"smoke_result_body": { "status": "completed", "cost_cents": 500 },
|
|
112
112
|
"dependencies": {
|
|
113
|
-
"@paybond/kit": "^0.11.
|
|
113
|
+
"@paybond/kit": "^0.11.2"
|
|
114
114
|
},
|
|
115
115
|
"mcp_tool_policy": "spend-write"
|
|
116
116
|
},
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"evidence_preset": "cost_and_completion",
|
|
128
128
|
"smoke_result_body": { "status": "completed", "cost_cents": 12000 },
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"@paybond/kit": "^0.11.
|
|
130
|
+
"@paybond/kit": "^0.11.2"
|
|
131
131
|
},
|
|
132
132
|
"demo_mode": "generic"
|
|
133
133
|
},
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
"evidence_preset": "cost_and_completion",
|
|
144
144
|
"smoke_result_body": { "status": "completed", "cost_cents": 12500 },
|
|
145
145
|
"dependencies": {
|
|
146
|
-
"@paybond/kit": "^0.11.
|
|
146
|
+
"@paybond/kit": "^0.11.2"
|
|
147
147
|
},
|
|
148
148
|
"demo_mode": "generic"
|
|
149
149
|
},
|
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
"evidence_preset": "cost_and_completion",
|
|
160
160
|
"smoke_result_body": { "status": "completed", "cost_cents": 2900 },
|
|
161
161
|
"python_dependencies": {
|
|
162
|
-
"paybond-kit": ">=0.11.
|
|
162
|
+
"paybond-kit": ">=0.11.2",
|
|
163
163
|
"langgraph": ">=1.2.0"
|
|
164
164
|
},
|
|
165
165
|
"demo_import": "paybond_kit.langgraph_sandbox_demo",
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"name": "openai-shopping-agent",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@openai/agents": "^0.4.0",
|
|
10
|
-
"@paybond/kit": "^0.11.
|
|
10
|
+
"@paybond/kit": "^0.11.2",
|
|
11
11
|
"zod": "^4.2.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
@@ -169,14 +169,15 @@
|
|
|
169
169
|
}
|
|
170
170
|
},
|
|
171
171
|
"node_modules/@paybond/kit": {
|
|
172
|
-
"version": "0.11.
|
|
173
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
174
|
-
"integrity": "sha512-
|
|
172
|
+
"version": "0.11.2",
|
|
173
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.2.tgz",
|
|
174
|
+
"integrity": "sha512-ogdppjWoUaT8z3Sl7LekZE5dvPj6hhAeBjjorVxI1gW5TE0Q0uwlwvfzDMiyJ4YnoXBfDkxEUNRJ8umpUasEeA==",
|
|
175
175
|
"license": "Apache-2.0",
|
|
176
176
|
"dependencies": {
|
|
177
177
|
"@noble/ed25519": "^2.2.1",
|
|
178
178
|
"@noble/hashes": "^1.7.1",
|
|
179
179
|
"@noble/secp256k1": "^2.2.3",
|
|
180
|
+
"ajv": "^8.17.1",
|
|
180
181
|
"blake3": "^2.1.7",
|
|
181
182
|
"uuid": "^14.0.0"
|
|
182
183
|
},
|
|
@@ -255,7 +256,6 @@
|
|
|
255
256
|
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
|
|
256
257
|
"integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
|
|
257
258
|
"license": "MIT",
|
|
258
|
-
"optional": true,
|
|
259
259
|
"dependencies": {
|
|
260
260
|
"fast-deep-equal": "^3.1.3",
|
|
261
261
|
"fast-uri": "^3.0.1",
|
|
@@ -648,8 +648,7 @@
|
|
|
648
648
|
"version": "3.1.3",
|
|
649
649
|
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
650
650
|
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
651
|
-
"license": "MIT"
|
|
652
|
-
"optional": true
|
|
651
|
+
"license": "MIT"
|
|
653
652
|
},
|
|
654
653
|
"node_modules/fast-uri": {
|
|
655
654
|
"version": "3.1.3",
|
|
@@ -665,8 +664,7 @@
|
|
|
665
664
|
"url": "https://opencollective.com/fastify"
|
|
666
665
|
}
|
|
667
666
|
],
|
|
668
|
-
"license": "BSD-3-Clause"
|
|
669
|
-
"optional": true
|
|
667
|
+
"license": "BSD-3-Clause"
|
|
670
668
|
},
|
|
671
669
|
"node_modules/finalhandler": {
|
|
672
670
|
"version": "2.1.1",
|
|
@@ -901,8 +899,7 @@
|
|
|
901
899
|
"version": "1.0.0",
|
|
902
900
|
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
903
901
|
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
904
|
-
"license": "MIT"
|
|
905
|
-
"optional": true
|
|
902
|
+
"license": "MIT"
|
|
906
903
|
},
|
|
907
904
|
"node_modules/json-schema-typed": {
|
|
908
905
|
"version": "8.0.2",
|
|
@@ -1170,7 +1167,6 @@
|
|
|
1170
1167
|
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
1171
1168
|
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
1172
1169
|
"license": "MIT",
|
|
1173
|
-
"optional": true,
|
|
1174
1170
|
"engines": {
|
|
1175
1171
|
"node": ">=0.10.0"
|
|
1176
1172
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation commerce.checkout --requested-spend-cents 4500 --evidence-preset cost_and_completion --result-body '{\"status\":\"completed\",\"cost_cents\":4500}' --format json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paybond/kit": "^0.11.
|
|
11
|
+
"@paybond/kit": "^0.11.2",
|
|
12
12
|
"@openai/agents": "^0.4.0",
|
|
13
13
|
"zod": "^4.2.0"
|
|
14
14
|
},
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"": {
|
|
7
7
|
"name": "paybond-aws-operator",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@paybond/kit": "^0.11.
|
|
9
|
+
"@paybond/kit": "^0.11.2"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@types/node": "^22.10.1",
|
|
@@ -47,14 +47,15 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"node_modules/@paybond/kit": {
|
|
50
|
-
"version": "0.11.
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
52
|
-
"integrity": "sha512-
|
|
50
|
+
"version": "0.11.2",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.2.tgz",
|
|
52
|
+
"integrity": "sha512-KHqslvzEv2y5lCQ6YAiIBuyudY7wmajrN08tPXVJFq7HLbdyzEvvIuQ715vAv0nI4LTUBEp/67xGkoHGPe/l0w==",
|
|
53
53
|
"license": "Apache-2.0",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@noble/ed25519": "^2.2.1",
|
|
56
56
|
"@noble/hashes": "^1.7.1",
|
|
57
57
|
"@noble/secp256k1": "^2.2.3",
|
|
58
|
+
"ajv": "^8.17.1",
|
|
58
59
|
"blake3": "^2.1.7",
|
|
59
60
|
"uuid": "^14.0.0"
|
|
60
61
|
},
|
|
@@ -106,6 +107,22 @@
|
|
|
106
107
|
"undici-types": "~6.21.0"
|
|
107
108
|
}
|
|
108
109
|
},
|
|
110
|
+
"node_modules/ajv": {
|
|
111
|
+
"version": "8.20.0",
|
|
112
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
|
|
113
|
+
"integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
|
|
114
|
+
"license": "MIT",
|
|
115
|
+
"dependencies": {
|
|
116
|
+
"fast-deep-equal": "^3.1.3",
|
|
117
|
+
"fast-uri": "^3.0.1",
|
|
118
|
+
"json-schema-traverse": "^1.0.0",
|
|
119
|
+
"require-from-string": "^2.0.2"
|
|
120
|
+
},
|
|
121
|
+
"funding": {
|
|
122
|
+
"type": "github",
|
|
123
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
109
126
|
"node_modules/blake3": {
|
|
110
127
|
"version": "2.1.7",
|
|
111
128
|
"resolved": "https://registry.npmjs.org/blake3/-/blake3-2.1.7.tgz",
|
|
@@ -113,6 +130,43 @@
|
|
|
113
130
|
"hasInstallScript": true,
|
|
114
131
|
"license": "MIT"
|
|
115
132
|
},
|
|
133
|
+
"node_modules/fast-deep-equal": {
|
|
134
|
+
"version": "3.1.3",
|
|
135
|
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
136
|
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
137
|
+
"license": "MIT"
|
|
138
|
+
},
|
|
139
|
+
"node_modules/fast-uri": {
|
|
140
|
+
"version": "3.1.3",
|
|
141
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
|
|
142
|
+
"integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
|
|
143
|
+
"funding": [
|
|
144
|
+
{
|
|
145
|
+
"type": "github",
|
|
146
|
+
"url": "https://github.com/sponsors/fastify"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"type": "opencollective",
|
|
150
|
+
"url": "https://opencollective.com/fastify"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"license": "BSD-3-Clause"
|
|
154
|
+
},
|
|
155
|
+
"node_modules/json-schema-traverse": {
|
|
156
|
+
"version": "1.0.0",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
158
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
159
|
+
"license": "MIT"
|
|
160
|
+
},
|
|
161
|
+
"node_modules/require-from-string": {
|
|
162
|
+
"version": "2.0.2",
|
|
163
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
164
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
165
|
+
"license": "MIT",
|
|
166
|
+
"engines": {
|
|
167
|
+
"node": ">=0.10.0"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
116
170
|
"node_modules/typescript": {
|
|
117
171
|
"version": "5.9.3",
|
|
118
172
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation aws.ec2.start_instance --requested-spend-cents 12500 --evidence-preset cost_and_completion --result-body '{\"status\":\"completed\",\"cost_cents\":12500}' --format json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paybond/kit": "^0.11.
|
|
11
|
+
"@paybond/kit": "^0.11.2"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@types/node": "^22.10.1",
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"name": "paybond-claude-agents-demo",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@anthropic-ai/claude-agent-sdk": "^0.2.100",
|
|
10
|
-
"@paybond/kit": "^0.11.
|
|
10
|
+
"@paybond/kit": "^0.11.2",
|
|
11
11
|
"zod": "^4.2.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
@@ -260,14 +260,15 @@
|
|
|
260
260
|
}
|
|
261
261
|
},
|
|
262
262
|
"node_modules/@paybond/kit": {
|
|
263
|
-
"version": "0.11.
|
|
264
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
265
|
-
"integrity": "sha512-
|
|
263
|
+
"version": "0.11.2",
|
|
264
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.2.tgz",
|
|
265
|
+
"integrity": "sha512-OPx3cfzQrljMNdCwQqymnAoIxxgvLHYhlSX82U2qc5ZtVLKT/ib5QtskhbRA0zjlH82nHuKiBdZSe65nZk6dJw==",
|
|
266
266
|
"license": "Apache-2.0",
|
|
267
267
|
"dependencies": {
|
|
268
268
|
"@noble/ed25519": "^2.2.1",
|
|
269
269
|
"@noble/hashes": "^1.7.1",
|
|
270
270
|
"@noble/secp256k1": "^2.2.3",
|
|
271
|
+
"ajv": "^8.17.1",
|
|
271
272
|
"blake3": "^2.1.7",
|
|
272
273
|
"uuid": "^14.0.0"
|
|
273
274
|
},
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation travel.book_hotel --requested-spend-cents 18700 --evidence-preset cost_and_completion --result-body '{\"status\":\"completed\",\"cost_cents\":18700}' --format json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paybond/kit": "^0.11.
|
|
11
|
+
"@paybond/kit": "^0.11.2",
|
|
12
12
|
"@anthropic-ai/claude-agent-sdk": "^0.2.100",
|
|
13
13
|
"zod": "^4.2.0"
|
|
14
14
|
},
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
paybond-kit>=0.11.
|
|
1
|
+
paybond-kit>=0.11.2
|
|
2
2
|
langgraph>=1.2.0
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"": {
|
|
7
7
|
"name": "paybond-mcp-coding-agent",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@paybond/kit": "^0.11.
|
|
9
|
+
"@paybond/kit": "^0.11.2"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@types/node": "^22.10.1",
|
|
@@ -47,14 +47,15 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"node_modules/@paybond/kit": {
|
|
50
|
-
"version": "0.11.
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
52
|
-
"integrity": "sha512-
|
|
50
|
+
"version": "0.11.2",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.2.tgz",
|
|
52
|
+
"integrity": "sha512-UdRXP545JtF1H1ktZzqQCfYeSXmdkG6wLcTyE06/AEp/EJkEnEqpVtg9vP+U/IRYYONXA2yzM0ctEVROSld6oQ==",
|
|
53
53
|
"license": "Apache-2.0",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@noble/ed25519": "^2.2.1",
|
|
56
56
|
"@noble/hashes": "^1.7.1",
|
|
57
57
|
"@noble/secp256k1": "^2.2.3",
|
|
58
|
+
"ajv": "^8.17.1",
|
|
58
59
|
"blake3": "^2.1.7",
|
|
59
60
|
"uuid": "^14.0.0"
|
|
60
61
|
},
|
|
@@ -106,6 +107,22 @@
|
|
|
106
107
|
"undici-types": "~6.21.0"
|
|
107
108
|
}
|
|
108
109
|
},
|
|
110
|
+
"node_modules/ajv": {
|
|
111
|
+
"version": "8.20.0",
|
|
112
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
|
|
113
|
+
"integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
|
|
114
|
+
"license": "MIT",
|
|
115
|
+
"dependencies": {
|
|
116
|
+
"fast-deep-equal": "^3.1.3",
|
|
117
|
+
"fast-uri": "^3.0.1",
|
|
118
|
+
"json-schema-traverse": "^1.0.0",
|
|
119
|
+
"require-from-string": "^2.0.2"
|
|
120
|
+
},
|
|
121
|
+
"funding": {
|
|
122
|
+
"type": "github",
|
|
123
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
109
126
|
"node_modules/blake3": {
|
|
110
127
|
"version": "2.1.7",
|
|
111
128
|
"resolved": "https://registry.npmjs.org/blake3/-/blake3-2.1.7.tgz",
|
|
@@ -113,6 +130,43 @@
|
|
|
113
130
|
"hasInstallScript": true,
|
|
114
131
|
"license": "MIT"
|
|
115
132
|
},
|
|
133
|
+
"node_modules/fast-deep-equal": {
|
|
134
|
+
"version": "3.1.3",
|
|
135
|
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
136
|
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
137
|
+
"license": "MIT"
|
|
138
|
+
},
|
|
139
|
+
"node_modules/fast-uri": {
|
|
140
|
+
"version": "3.1.3",
|
|
141
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
|
|
142
|
+
"integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
|
|
143
|
+
"funding": [
|
|
144
|
+
{
|
|
145
|
+
"type": "github",
|
|
146
|
+
"url": "https://github.com/sponsors/fastify"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"type": "opencollective",
|
|
150
|
+
"url": "https://opencollective.com/fastify"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"license": "BSD-3-Clause"
|
|
154
|
+
},
|
|
155
|
+
"node_modules/json-schema-traverse": {
|
|
156
|
+
"version": "1.0.0",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
158
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
159
|
+
"license": "MIT"
|
|
160
|
+
},
|
|
161
|
+
"node_modules/require-from-string": {
|
|
162
|
+
"version": "2.0.2",
|
|
163
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
164
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
165
|
+
"license": "MIT",
|
|
166
|
+
"engines": {
|
|
167
|
+
"node": ">=0.10.0"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
116
170
|
"node_modules/typescript": {
|
|
117
171
|
"version": "5.9.3",
|
|
118
172
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation deploy.preview --requested-spend-cents 500 --evidence-preset cost_and_completion --result-body '{\"status\":\"completed\",\"cost_cents\":500}' --format json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paybond/kit": "^0.11.
|
|
11
|
+
"@paybond/kit": "^0.11.2"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@types/node": "^22.10.1",
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"name": "paybond-openai-agents-demo",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@openai/agents": "^0.4.0",
|
|
10
|
-
"@paybond/kit": "^0.11.
|
|
10
|
+
"@paybond/kit": "^0.11.2",
|
|
11
11
|
"zod": "^4.2.0"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
@@ -169,14 +169,15 @@
|
|
|
169
169
|
}
|
|
170
170
|
},
|
|
171
171
|
"node_modules/@paybond/kit": {
|
|
172
|
-
"version": "0.11.
|
|
173
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
174
|
-
"integrity": "sha512-
|
|
172
|
+
"version": "0.11.2",
|
|
173
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.2.tgz",
|
|
174
|
+
"integrity": "sha512-EOgjB45nyErS4GyU4JVrCY0JWIxZ5Ymp4ZlRLuJB9plqA4Pnh/shTi2lF0Oh1Oq98/4W0Vk2E+LJC+emS5v0mQ==",
|
|
175
175
|
"license": "Apache-2.0",
|
|
176
176
|
"dependencies": {
|
|
177
177
|
"@noble/ed25519": "^2.2.1",
|
|
178
178
|
"@noble/hashes": "^1.7.1",
|
|
179
179
|
"@noble/secp256k1": "^2.2.3",
|
|
180
|
+
"ajv": "^8.17.1",
|
|
180
181
|
"blake3": "^2.1.7",
|
|
181
182
|
"uuid": "^14.0.0"
|
|
182
183
|
},
|
|
@@ -255,7 +256,6 @@
|
|
|
255
256
|
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
|
|
256
257
|
"integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
|
|
257
258
|
"license": "MIT",
|
|
258
|
-
"optional": true,
|
|
259
259
|
"dependencies": {
|
|
260
260
|
"fast-deep-equal": "^3.1.3",
|
|
261
261
|
"fast-uri": "^3.0.1",
|
|
@@ -648,8 +648,7 @@
|
|
|
648
648
|
"version": "3.1.3",
|
|
649
649
|
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
650
650
|
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
651
|
-
"license": "MIT"
|
|
652
|
-
"optional": true
|
|
651
|
+
"license": "MIT"
|
|
653
652
|
},
|
|
654
653
|
"node_modules/fast-uri": {
|
|
655
654
|
"version": "3.1.3",
|
|
@@ -665,8 +664,7 @@
|
|
|
665
664
|
"url": "https://opencollective.com/fastify"
|
|
666
665
|
}
|
|
667
666
|
],
|
|
668
|
-
"license": "BSD-3-Clause"
|
|
669
|
-
"optional": true
|
|
667
|
+
"license": "BSD-3-Clause"
|
|
670
668
|
},
|
|
671
669
|
"node_modules/finalhandler": {
|
|
672
670
|
"version": "2.1.1",
|
|
@@ -901,8 +899,7 @@
|
|
|
901
899
|
"version": "1.0.0",
|
|
902
900
|
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
903
901
|
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
904
|
-
"license": "MIT"
|
|
905
|
-
"optional": true
|
|
902
|
+
"license": "MIT"
|
|
906
903
|
},
|
|
907
904
|
"node_modules/json-schema-typed": {
|
|
908
905
|
"version": "8.0.2",
|
|
@@ -1170,7 +1167,6 @@
|
|
|
1170
1167
|
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
1171
1168
|
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
1172
1169
|
"license": "MIT",
|
|
1173
|
-
"optional": true,
|
|
1174
1170
|
"engines": {
|
|
1175
1171
|
"node": ">=0.10.0"
|
|
1176
1172
|
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation saas.provision_seat --requested-spend-cents 2900 --evidence-preset cost_and_completion --result-body '{\"status\":\"completed\",\"cost_cents\":2900}' --format json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paybond/kit": "^0.11.
|
|
11
|
+
"@paybond/kit": "^0.11.2",
|
|
12
12
|
"@openai/agents": "^0.4.0",
|
|
13
13
|
"zod": "^4.2.0"
|
|
14
14
|
},
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"": {
|
|
7
7
|
"name": "paybond-procurement-agent",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@paybond/kit": "^0.11.
|
|
9
|
+
"@paybond/kit": "^0.11.2"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
12
|
"@types/node": "^22.10.1",
|
|
@@ -47,14 +47,15 @@
|
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"node_modules/@paybond/kit": {
|
|
50
|
-
"version": "0.11.
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
52
|
-
"integrity": "sha512-
|
|
50
|
+
"version": "0.11.2",
|
|
51
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.2.tgz",
|
|
52
|
+
"integrity": "sha512-FuY5SAso14RF+QHCOFhQsNU9aqFi3RveemWypzsDr+I9sY7VJra9KRWxTUw9vgLNrCZNkPCYKFaj6KFudph/qw==",
|
|
53
53
|
"license": "Apache-2.0",
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@noble/ed25519": "^2.2.1",
|
|
56
56
|
"@noble/hashes": "^1.7.1",
|
|
57
57
|
"@noble/secp256k1": "^2.2.3",
|
|
58
|
+
"ajv": "^8.17.1",
|
|
58
59
|
"blake3": "^2.1.7",
|
|
59
60
|
"uuid": "^14.0.0"
|
|
60
61
|
},
|
|
@@ -106,6 +107,22 @@
|
|
|
106
107
|
"undici-types": "~6.21.0"
|
|
107
108
|
}
|
|
108
109
|
},
|
|
110
|
+
"node_modules/ajv": {
|
|
111
|
+
"version": "8.20.0",
|
|
112
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
|
|
113
|
+
"integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
|
|
114
|
+
"license": "MIT",
|
|
115
|
+
"dependencies": {
|
|
116
|
+
"fast-deep-equal": "^3.1.3",
|
|
117
|
+
"fast-uri": "^3.0.1",
|
|
118
|
+
"json-schema-traverse": "^1.0.0",
|
|
119
|
+
"require-from-string": "^2.0.2"
|
|
120
|
+
},
|
|
121
|
+
"funding": {
|
|
122
|
+
"type": "github",
|
|
123
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
109
126
|
"node_modules/blake3": {
|
|
110
127
|
"version": "2.1.7",
|
|
111
128
|
"resolved": "https://registry.npmjs.org/blake3/-/blake3-2.1.7.tgz",
|
|
@@ -113,6 +130,43 @@
|
|
|
113
130
|
"hasInstallScript": true,
|
|
114
131
|
"license": "MIT"
|
|
115
132
|
},
|
|
133
|
+
"node_modules/fast-deep-equal": {
|
|
134
|
+
"version": "3.1.3",
|
|
135
|
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
136
|
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
137
|
+
"license": "MIT"
|
|
138
|
+
},
|
|
139
|
+
"node_modules/fast-uri": {
|
|
140
|
+
"version": "3.1.3",
|
|
141
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
|
|
142
|
+
"integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
|
|
143
|
+
"funding": [
|
|
144
|
+
{
|
|
145
|
+
"type": "github",
|
|
146
|
+
"url": "https://github.com/sponsors/fastify"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"type": "opencollective",
|
|
150
|
+
"url": "https://opencollective.com/fastify"
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"license": "BSD-3-Clause"
|
|
154
|
+
},
|
|
155
|
+
"node_modules/json-schema-traverse": {
|
|
156
|
+
"version": "1.0.0",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
158
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
159
|
+
"license": "MIT"
|
|
160
|
+
},
|
|
161
|
+
"node_modules/require-from-string": {
|
|
162
|
+
"version": "2.0.2",
|
|
163
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
164
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
165
|
+
"license": "MIT",
|
|
166
|
+
"engines": {
|
|
167
|
+
"node": ">=0.10.0"
|
|
168
|
+
}
|
|
169
|
+
},
|
|
116
170
|
"node_modules/typescript": {
|
|
117
171
|
"version": "5.9.3",
|
|
118
172
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation procurement.submit_po --requested-spend-cents 12000 --evidence-preset cost_and_completion --result-body '{\"status\":\"completed\",\"cost_cents\":12000}' --format json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paybond/kit": "^0.11.
|
|
11
|
+
"@paybond/kit": "^0.11.2"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"@types/node": "^22.10.1",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@langchain/core": "^1.2.1",
|
|
10
10
|
"@langchain/langgraph": "^1.4.7",
|
|
11
|
-
"@paybond/kit": "^0.11.
|
|
11
|
+
"@paybond/kit": "^0.11.2",
|
|
12
12
|
"zod": "^4.2.0"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
@@ -178,14 +178,15 @@
|
|
|
178
178
|
}
|
|
179
179
|
},
|
|
180
180
|
"node_modules/@paybond/kit": {
|
|
181
|
-
"version": "0.11.
|
|
182
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
183
|
-
"integrity": "sha512-
|
|
181
|
+
"version": "0.11.2",
|
|
182
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.2.tgz",
|
|
183
|
+
"integrity": "sha512-qsklp8fV/5q1o5/LsJja4+v1UhU7vLhwXcieHs2U7DHYI3d0IrotlgoG/vK22Ol0SUW0jVF7ncJh9MShLxvnsw==",
|
|
184
184
|
"license": "Apache-2.0",
|
|
185
185
|
"dependencies": {
|
|
186
186
|
"@noble/ed25519": "^2.2.1",
|
|
187
187
|
"@noble/hashes": "^1.7.1",
|
|
188
188
|
"@noble/secp256k1": "^2.2.3",
|
|
189
|
+
"ajv": "^8.17.1",
|
|
189
190
|
"blake3": "^2.1.7",
|
|
190
191
|
"uuid": "^14.0.0"
|
|
191
192
|
},
|
|
@@ -249,6 +250,22 @@
|
|
|
249
250
|
"undici-types": "~6.21.0"
|
|
250
251
|
}
|
|
251
252
|
},
|
|
253
|
+
"node_modules/ajv": {
|
|
254
|
+
"version": "8.20.0",
|
|
255
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
|
|
256
|
+
"integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
|
|
257
|
+
"license": "MIT",
|
|
258
|
+
"dependencies": {
|
|
259
|
+
"fast-deep-equal": "^3.1.3",
|
|
260
|
+
"fast-uri": "^3.0.1",
|
|
261
|
+
"json-schema-traverse": "^1.0.0",
|
|
262
|
+
"require-from-string": "^2.0.2"
|
|
263
|
+
},
|
|
264
|
+
"funding": {
|
|
265
|
+
"type": "github",
|
|
266
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
252
269
|
"node_modules/base64-js": {
|
|
253
270
|
"version": "1.5.1",
|
|
254
271
|
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
|
|
@@ -282,6 +299,28 @@
|
|
|
282
299
|
"integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
|
|
283
300
|
"license": "MIT"
|
|
284
301
|
},
|
|
302
|
+
"node_modules/fast-deep-equal": {
|
|
303
|
+
"version": "3.1.3",
|
|
304
|
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
305
|
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
306
|
+
"license": "MIT"
|
|
307
|
+
},
|
|
308
|
+
"node_modules/fast-uri": {
|
|
309
|
+
"version": "3.1.3",
|
|
310
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
|
|
311
|
+
"integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
|
|
312
|
+
"funding": [
|
|
313
|
+
{
|
|
314
|
+
"type": "github",
|
|
315
|
+
"url": "https://github.com/sponsors/fastify"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"type": "opencollective",
|
|
319
|
+
"url": "https://opencollective.com/fastify"
|
|
320
|
+
}
|
|
321
|
+
],
|
|
322
|
+
"license": "BSD-3-Clause"
|
|
323
|
+
},
|
|
285
324
|
"node_modules/is-network-error": {
|
|
286
325
|
"version": "1.3.2",
|
|
287
326
|
"resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.2.tgz",
|
|
@@ -303,6 +342,12 @@
|
|
|
303
342
|
"base64-js": "^1.5.1"
|
|
304
343
|
}
|
|
305
344
|
},
|
|
345
|
+
"node_modules/json-schema-traverse": {
|
|
346
|
+
"version": "1.0.0",
|
|
347
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
348
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
349
|
+
"license": "MIT"
|
|
350
|
+
},
|
|
306
351
|
"node_modules/langsmith": {
|
|
307
352
|
"version": "0.7.15",
|
|
308
353
|
"resolved": "https://registry.npmjs.org/langsmith/-/langsmith-0.7.15.tgz",
|
|
@@ -397,6 +442,15 @@
|
|
|
397
442
|
"node": ">=8"
|
|
398
443
|
}
|
|
399
444
|
},
|
|
445
|
+
"node_modules/require-from-string": {
|
|
446
|
+
"version": "2.0.2",
|
|
447
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
448
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
449
|
+
"license": "MIT",
|
|
450
|
+
"engines": {
|
|
451
|
+
"node": ">=0.10.0"
|
|
452
|
+
}
|
|
453
|
+
},
|
|
400
454
|
"node_modules/typescript": {
|
|
401
455
|
"version": "5.9.3",
|
|
402
456
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation travel.book_hotel --requested-spend-cents 18700 --evidence-preset cost_and_completion --result-body '{\"status\":\"completed\",\"cost_cents\":18700}' --format json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paybond/kit": "^0.11.
|
|
11
|
+
"@paybond/kit": "^0.11.2",
|
|
12
12
|
"@langchain/core": "^1.2.1",
|
|
13
13
|
"@langchain/langgraph": "^1.4.7",
|
|
14
14
|
"zod": "^4.2.0"
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"": {
|
|
7
7
|
"name": "paybond-vercel-shopping-agent",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@paybond/kit": "^0.11.
|
|
9
|
+
"@paybond/kit": "^0.11.2",
|
|
10
10
|
"ai": "^5.0.0",
|
|
11
11
|
"zod": "^4.2.0"
|
|
12
12
|
},
|
|
@@ -104,14 +104,15 @@
|
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
106
|
"node_modules/@paybond/kit": {
|
|
107
|
-
"version": "0.11.
|
|
108
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.
|
|
109
|
-
"integrity": "sha512-
|
|
107
|
+
"version": "0.11.2",
|
|
108
|
+
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.11.2.tgz",
|
|
109
|
+
"integrity": "sha512-BfumFFZrxAv5WhH2mg1dkuB28E+x1kf4ib8gaDMYqOynvpgNEgytAziSDvn8pEGdQfWwmhf0vLeMEqtrjcszzw==",
|
|
110
110
|
"license": "Apache-2.0",
|
|
111
111
|
"dependencies": {
|
|
112
112
|
"@noble/ed25519": "^2.2.1",
|
|
113
113
|
"@noble/hashes": "^1.7.1",
|
|
114
114
|
"@noble/secp256k1": "^2.2.3",
|
|
115
|
+
"ajv": "^8.17.1",
|
|
115
116
|
"blake3": "^2.1.7",
|
|
116
117
|
"uuid": "^14.0.0"
|
|
117
118
|
},
|
|
@@ -196,6 +197,22 @@
|
|
|
196
197
|
"zod": "^3.25.76 || ^4.1.8"
|
|
197
198
|
}
|
|
198
199
|
},
|
|
200
|
+
"node_modules/ajv": {
|
|
201
|
+
"version": "8.20.0",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
|
|
203
|
+
"integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==",
|
|
204
|
+
"license": "MIT",
|
|
205
|
+
"dependencies": {
|
|
206
|
+
"fast-deep-equal": "^3.1.3",
|
|
207
|
+
"fast-uri": "^3.0.1",
|
|
208
|
+
"json-schema-traverse": "^1.0.0",
|
|
209
|
+
"require-from-string": "^2.0.2"
|
|
210
|
+
},
|
|
211
|
+
"funding": {
|
|
212
|
+
"type": "github",
|
|
213
|
+
"url": "https://github.com/sponsors/epoberezkin"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
199
216
|
"node_modules/blake3": {
|
|
200
217
|
"version": "2.1.7",
|
|
201
218
|
"resolved": "https://registry.npmjs.org/blake3/-/blake3-2.1.7.tgz",
|
|
@@ -212,12 +229,49 @@
|
|
|
212
229
|
"node": ">=18.0.0"
|
|
213
230
|
}
|
|
214
231
|
},
|
|
232
|
+
"node_modules/fast-deep-equal": {
|
|
233
|
+
"version": "3.1.3",
|
|
234
|
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
|
235
|
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
|
236
|
+
"license": "MIT"
|
|
237
|
+
},
|
|
238
|
+
"node_modules/fast-uri": {
|
|
239
|
+
"version": "3.1.3",
|
|
240
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
|
|
241
|
+
"integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
|
|
242
|
+
"funding": [
|
|
243
|
+
{
|
|
244
|
+
"type": "github",
|
|
245
|
+
"url": "https://github.com/sponsors/fastify"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"type": "opencollective",
|
|
249
|
+
"url": "https://opencollective.com/fastify"
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
"license": "BSD-3-Clause"
|
|
253
|
+
},
|
|
215
254
|
"node_modules/json-schema": {
|
|
216
255
|
"version": "0.4.0",
|
|
217
256
|
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz",
|
|
218
257
|
"integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==",
|
|
219
258
|
"license": "(AFL-2.1 OR BSD-3-Clause)"
|
|
220
259
|
},
|
|
260
|
+
"node_modules/json-schema-traverse": {
|
|
261
|
+
"version": "1.0.0",
|
|
262
|
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
|
|
263
|
+
"integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
|
|
264
|
+
"license": "MIT"
|
|
265
|
+
},
|
|
266
|
+
"node_modules/require-from-string": {
|
|
267
|
+
"version": "2.0.2",
|
|
268
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
269
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
270
|
+
"license": "MIT",
|
|
271
|
+
"engines": {
|
|
272
|
+
"node": ">=0.10.0"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
221
275
|
"node_modules/typescript": {
|
|
222
276
|
"version": "5.9.3",
|
|
223
277
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation commerce.checkout --requested-spend-cents 4500 --evidence-preset cost_and_completion --result-body '{\"status\":\"completed\",\"cost_cents\":4500}' --format json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paybond/kit": "^0.11.
|
|
11
|
+
"@paybond/kit": "^0.11.2",
|
|
12
12
|
"ai": "^5.0.0",
|
|
13
13
|
"zod": "^4.2.0"
|
|
14
14
|
},
|