@paybond/kit 0.12.5 → 0.12.6

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.
Files changed (113) hide show
  1. package/dist/agent/facade.d.ts +2 -0
  2. package/dist/agent/facade.js +10 -2
  3. package/dist/agent/guarded-agent.d.ts +3 -1
  4. package/dist/agent/guarded-agent.js +13 -2
  5. package/dist/agent/index.d.ts +2 -2
  6. package/dist/agent/index.js +1 -1
  7. package/dist/agent/instrument.d.ts +3 -0
  8. package/dist/agent/instrument.js +21 -10
  9. package/dist/agent/interceptor.js +19 -0
  10. package/dist/agent/types.d.ts +14 -0
  11. package/dist/agent-receipt-acta.d.ts +58 -0
  12. package/dist/agent-receipt-acta.js +140 -0
  13. package/dist/agent-receipt-inclusion.d.ts +40 -0
  14. package/dist/agent-receipt-inclusion.js +209 -0
  15. package/dist/agent-receipt-owner-disclosure.d.ts +71 -0
  16. package/dist/agent-receipt-owner-disclosure.js +277 -0
  17. package/dist/agent-receipt-pef.d.ts +69 -0
  18. package/dist/agent-receipt-pef.js +121 -0
  19. package/dist/agent-receipt-scitt.d.ts +50 -0
  20. package/dist/agent-receipt-scitt.js +382 -0
  21. package/dist/agent-receipt.d.ts +55 -0
  22. package/dist/agent-receipt.js +297 -4
  23. package/dist/claude-agents/config.d.ts +21 -2
  24. package/dist/claude-agents/config.js +37 -0
  25. package/dist/claude-agents/index.d.ts +1 -1
  26. package/dist/claude-agents/index.js +1 -1
  27. package/dist/cli/agent/demo-loaders.d.ts +1 -0
  28. package/dist/cli/agent/demo-loaders.js +12 -0
  29. package/dist/cli/command-spec.js +16 -1
  30. package/dist/cli/commands/agent.d.ts +4 -0
  31. package/dist/cli/commands/agent.js +107 -1
  32. package/dist/cli/help.js +4 -1
  33. package/dist/cloudflare-agents/config.d.ts +1 -1
  34. package/dist/cloudflare-agents/config.js +2 -2
  35. package/dist/google-adk/config.d.ts +36 -0
  36. package/dist/google-adk/config.js +172 -0
  37. package/dist/google-adk/index.d.ts +2 -0
  38. package/dist/google-adk/index.js +2 -0
  39. package/dist/google-adk/sandbox-demo.d.ts +32 -0
  40. package/dist/google-adk/sandbox-demo.js +104 -0
  41. package/dist/index.d.ts +10 -2
  42. package/dist/index.js +11 -3
  43. package/dist/init.js +29 -0
  44. package/dist/mcp-receipt-resource.js +3 -1
  45. package/dist/mcp-server.js +122 -2
  46. package/dist/policy/adapter-options.d.ts +9 -0
  47. package/dist/policy/adapter-options.js +11 -0
  48. package/dist/policy/index.d.ts +1 -0
  49. package/dist/policy/index.js +1 -0
  50. package/dist/policy/load.d.ts +7 -0
  51. package/dist/policy/load.js +13 -0
  52. package/dist/policy/merge.js +26 -0
  53. package/dist/policy/schema.d.ts +20 -0
  54. package/dist/policy/schema.js +34 -2
  55. package/dist/shopify/instrument.d.ts +8 -8
  56. package/dist/template-init.d.ts +2 -2
  57. package/dist/template-init.js +12 -4
  58. package/dist/vercel-ai/config.d.ts +2 -1
  59. package/dist/vercel-ai/config.js +2 -2
  60. package/dist/vercel-ai/index.d.ts +2 -1
  61. package/dist/vercel-ai/index.js +2 -1
  62. package/dist/vercel-ai/provider-executed.d.ts +7 -0
  63. package/dist/vercel-ai/provider-executed.js +20 -0
  64. package/dist/vercel-ai/tool-approval.d.ts +5 -0
  65. package/dist/vercel-ai/tool-approval.js +8 -1
  66. package/dist/vercel-ai/wrap-tools.d.ts +8 -1
  67. package/dist/vercel-ai/wrap-tools.js +17 -4
  68. package/package.json +13 -4
  69. package/templates/manifest.json +57 -12
  70. package/templates/openai-shopping-agent/package-lock.json +379 -14
  71. package/templates/openai-shopping-agent/package.json +2 -2
  72. package/templates/paybond-aws-operator/package-lock.json +376 -11
  73. package/templates/paybond-aws-operator/package.json +2 -2
  74. package/templates/paybond-claude-agents-demo/package-lock.json +379 -14
  75. package/templates/paybond-claude-agents-demo/package.json +2 -2
  76. package/templates/paybond-cloudflare-shopping-agent/.env.example +3 -0
  77. package/templates/paybond-cloudflare-shopping-agent/.github/workflows/smoke.yml +20 -0
  78. package/templates/paybond-cloudflare-shopping-agent/LICENSE +201 -0
  79. package/templates/paybond-cloudflare-shopping-agent/README.md +29 -0
  80. package/templates/paybond-cloudflare-shopping-agent/package-lock.json +2671 -0
  81. package/templates/paybond-cloudflare-shopping-agent/package.json +23 -0
  82. package/templates/paybond-cloudflare-shopping-agent/paybond.policy.yaml +22 -0
  83. package/templates/paybond-cloudflare-shopping-agent/src/agent.ts +109 -0
  84. package/templates/paybond-cloudflare-shopping-agent/src/index.ts +22 -0
  85. package/templates/paybond-cloudflare-shopping-agent/src/paybond.config.ts +51 -0
  86. package/templates/paybond-cloudflare-shopping-agent/tsconfig.json +13 -0
  87. package/templates/paybond-crewai-procurement-agent/.env.example +3 -0
  88. package/templates/paybond-crewai-procurement-agent/.github/workflows/smoke.yml +19 -0
  89. package/templates/paybond-crewai-procurement-agent/LICENSE +201 -0
  90. package/templates/paybond-crewai-procurement-agent/README.md +73 -0
  91. package/templates/paybond-crewai-procurement-agent/app.py +79 -0
  92. package/templates/paybond-crewai-procurement-agent/crew.py +117 -0
  93. package/templates/paybond-crewai-procurement-agent/package.json +6 -0
  94. package/templates/paybond-crewai-procurement-agent/paybond.policy.yaml +28 -0
  95. package/templates/paybond-crewai-procurement-agent/paybond_config.py +45 -0
  96. package/templates/paybond-crewai-procurement-agent/requirements.txt +2 -0
  97. package/templates/paybond-invoice-agent/requirements.txt +1 -1
  98. package/templates/paybond-mastra-travel-agent/package-lock.json +379 -14
  99. package/templates/paybond-mastra-travel-agent/package.json +2 -2
  100. package/templates/paybond-mcp-coding-agent/package-lock.json +376 -11
  101. package/templates/paybond-mcp-coding-agent/package.json +2 -2
  102. package/templates/paybond-openai-agents-demo/package-lock.json +379 -14
  103. package/templates/paybond-openai-agents-demo/package.json +2 -2
  104. package/templates/paybond-procurement-agent/package-lock.json +376 -11
  105. package/templates/paybond-procurement-agent/package.json +2 -2
  106. package/templates/paybond-shopify-shopping-agent/package-lock.json +376 -11
  107. package/templates/paybond-shopify-shopping-agent/package.json +2 -2
  108. package/templates/paybond-stripe-agent-demo/package-lock.json +376 -11
  109. package/templates/paybond-stripe-agent-demo/package.json +2 -2
  110. package/templates/paybond-travel-agent/package-lock.json +376 -11
  111. package/templates/paybond-travel-agent/package.json +2 -2
  112. package/templates/paybond-vercel-shopping-agent/package-lock.json +376 -11
  113. package/templates/paybond-vercel-shopping-agent/package.json +2 -2
@@ -6,13 +6,13 @@
6
6
  "": {
7
7
  "name": "paybond-vercel-shopping-agent",
8
8
  "dependencies": {
9
- "@paybond/kit": "^0.12.5",
9
+ "@paybond/kit": "^0.12.6",
10
10
  "ai": "^5.0.0",
11
11
  "zod": "^4.2.0"
12
12
  },
13
13
  "devDependencies": {
14
14
  "@types/node": "^22.10.1",
15
- "typescript": "^5.7.2"
15
+ "typescript": "^7.0.2"
16
16
  },
17
17
  "engines": {
18
18
  "node": ">=22"
@@ -104,9 +104,9 @@
104
104
  }
105
105
  },
106
106
  "node_modules/@paybond/kit": {
107
- "version": "0.12.5",
108
- "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.5.tgz",
109
- "integrity": "sha512-Q7VXMMXw5N+DZ7Tw9Fx1rYMSf0cFzpIG/ox8JnbBggI+8xw9CnGhyfOIxLwf/XefdmN/2zCg/v5hQNLYN9OAMg==",
107
+ "version": "0.12.6",
108
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.6.tgz",
109
+ "integrity": "sha512-rkZ+7SjXm3aZ9TIGkCYvwTWV+NPRxuol+UmBGd0NPzOilHmHhP84aYH1Ro4syVA2pqIdyqCItSszGQMETPjNTA==",
110
110
  "license": "Apache-2.0",
111
111
  "dependencies": {
112
112
  "@noble/ed25519": "^2.2.1",
@@ -128,6 +128,7 @@
128
128
  },
129
129
  "peerDependencies": {
130
130
  "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
131
+ "@google/adk": ">=1.0.0",
131
132
  "@langchain/core": ">=0.3.0",
132
133
  "@langchain/langgraph": ">=0.2.50",
133
134
  "@mastra/core": ">=1.0.0",
@@ -140,6 +141,9 @@
140
141
  "@anthropic-ai/claude-agent-sdk": {
141
142
  "optional": true
142
143
  },
144
+ "@google/adk": {
145
+ "optional": true
146
+ },
143
147
  "@langchain/core": {
144
148
  "optional": true
145
149
  },
@@ -179,6 +183,346 @@
179
183
  "undici-types": "~6.21.0"
180
184
  }
181
185
  },
186
+ "node_modules/@typescript/typescript-aix-ppc64": {
187
+ "version": "7.0.2",
188
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-aix-ppc64/-/typescript-aix-ppc64-7.0.2.tgz",
189
+ "integrity": "sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==",
190
+ "cpu": [
191
+ "ppc64"
192
+ ],
193
+ "dev": true,
194
+ "license": "Apache-2.0",
195
+ "optional": true,
196
+ "os": [
197
+ "aix"
198
+ ],
199
+ "engines": {
200
+ "node": ">=16.20.0"
201
+ }
202
+ },
203
+ "node_modules/@typescript/typescript-darwin-arm64": {
204
+ "version": "7.0.2",
205
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-arm64/-/typescript-darwin-arm64-7.0.2.tgz",
206
+ "integrity": "sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==",
207
+ "cpu": [
208
+ "arm64"
209
+ ],
210
+ "dev": true,
211
+ "license": "Apache-2.0",
212
+ "optional": true,
213
+ "os": [
214
+ "darwin"
215
+ ],
216
+ "engines": {
217
+ "node": ">=16.20.0"
218
+ }
219
+ },
220
+ "node_modules/@typescript/typescript-darwin-x64": {
221
+ "version": "7.0.2",
222
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-x64/-/typescript-darwin-x64-7.0.2.tgz",
223
+ "integrity": "sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==",
224
+ "cpu": [
225
+ "x64"
226
+ ],
227
+ "dev": true,
228
+ "license": "Apache-2.0",
229
+ "optional": true,
230
+ "os": [
231
+ "darwin"
232
+ ],
233
+ "engines": {
234
+ "node": ">=16.20.0"
235
+ }
236
+ },
237
+ "node_modules/@typescript/typescript-freebsd-arm64": {
238
+ "version": "7.0.2",
239
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-arm64/-/typescript-freebsd-arm64-7.0.2.tgz",
240
+ "integrity": "sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==",
241
+ "cpu": [
242
+ "arm64"
243
+ ],
244
+ "dev": true,
245
+ "license": "Apache-2.0",
246
+ "optional": true,
247
+ "os": [
248
+ "freebsd"
249
+ ],
250
+ "engines": {
251
+ "node": ">=16.20.0"
252
+ }
253
+ },
254
+ "node_modules/@typescript/typescript-freebsd-x64": {
255
+ "version": "7.0.2",
256
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-x64/-/typescript-freebsd-x64-7.0.2.tgz",
257
+ "integrity": "sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==",
258
+ "cpu": [
259
+ "x64"
260
+ ],
261
+ "dev": true,
262
+ "license": "Apache-2.0",
263
+ "optional": true,
264
+ "os": [
265
+ "freebsd"
266
+ ],
267
+ "engines": {
268
+ "node": ">=16.20.0"
269
+ }
270
+ },
271
+ "node_modules/@typescript/typescript-linux-arm": {
272
+ "version": "7.0.2",
273
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm/-/typescript-linux-arm-7.0.2.tgz",
274
+ "integrity": "sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==",
275
+ "cpu": [
276
+ "arm"
277
+ ],
278
+ "dev": true,
279
+ "license": "Apache-2.0",
280
+ "optional": true,
281
+ "os": [
282
+ "linux"
283
+ ],
284
+ "engines": {
285
+ "node": ">=16.20.0"
286
+ }
287
+ },
288
+ "node_modules/@typescript/typescript-linux-arm64": {
289
+ "version": "7.0.2",
290
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm64/-/typescript-linux-arm64-7.0.2.tgz",
291
+ "integrity": "sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==",
292
+ "cpu": [
293
+ "arm64"
294
+ ],
295
+ "dev": true,
296
+ "license": "Apache-2.0",
297
+ "optional": true,
298
+ "os": [
299
+ "linux"
300
+ ],
301
+ "engines": {
302
+ "node": ">=16.20.0"
303
+ }
304
+ },
305
+ "node_modules/@typescript/typescript-linux-loong64": {
306
+ "version": "7.0.2",
307
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-loong64/-/typescript-linux-loong64-7.0.2.tgz",
308
+ "integrity": "sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==",
309
+ "cpu": [
310
+ "loong64"
311
+ ],
312
+ "dev": true,
313
+ "license": "Apache-2.0",
314
+ "optional": true,
315
+ "os": [
316
+ "linux"
317
+ ],
318
+ "engines": {
319
+ "node": ">=16.20.0"
320
+ }
321
+ },
322
+ "node_modules/@typescript/typescript-linux-mips64el": {
323
+ "version": "7.0.2",
324
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-mips64el/-/typescript-linux-mips64el-7.0.2.tgz",
325
+ "integrity": "sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==",
326
+ "cpu": [
327
+ "mips64el"
328
+ ],
329
+ "dev": true,
330
+ "license": "Apache-2.0",
331
+ "optional": true,
332
+ "os": [
333
+ "linux"
334
+ ],
335
+ "engines": {
336
+ "node": ">=16.20.0"
337
+ }
338
+ },
339
+ "node_modules/@typescript/typescript-linux-ppc64": {
340
+ "version": "7.0.2",
341
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-ppc64/-/typescript-linux-ppc64-7.0.2.tgz",
342
+ "integrity": "sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==",
343
+ "cpu": [
344
+ "ppc64"
345
+ ],
346
+ "dev": true,
347
+ "license": "Apache-2.0",
348
+ "optional": true,
349
+ "os": [
350
+ "linux"
351
+ ],
352
+ "engines": {
353
+ "node": ">=16.20.0"
354
+ }
355
+ },
356
+ "node_modules/@typescript/typescript-linux-riscv64": {
357
+ "version": "7.0.2",
358
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-riscv64/-/typescript-linux-riscv64-7.0.2.tgz",
359
+ "integrity": "sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==",
360
+ "cpu": [
361
+ "riscv64"
362
+ ],
363
+ "dev": true,
364
+ "license": "Apache-2.0",
365
+ "optional": true,
366
+ "os": [
367
+ "linux"
368
+ ],
369
+ "engines": {
370
+ "node": ">=16.20.0"
371
+ }
372
+ },
373
+ "node_modules/@typescript/typescript-linux-s390x": {
374
+ "version": "7.0.2",
375
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-s390x/-/typescript-linux-s390x-7.0.2.tgz",
376
+ "integrity": "sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==",
377
+ "cpu": [
378
+ "s390x"
379
+ ],
380
+ "dev": true,
381
+ "license": "Apache-2.0",
382
+ "optional": true,
383
+ "os": [
384
+ "linux"
385
+ ],
386
+ "engines": {
387
+ "node": ">=16.20.0"
388
+ }
389
+ },
390
+ "node_modules/@typescript/typescript-linux-x64": {
391
+ "version": "7.0.2",
392
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-x64/-/typescript-linux-x64-7.0.2.tgz",
393
+ "integrity": "sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==",
394
+ "cpu": [
395
+ "x64"
396
+ ],
397
+ "dev": true,
398
+ "license": "Apache-2.0",
399
+ "optional": true,
400
+ "os": [
401
+ "linux"
402
+ ],
403
+ "engines": {
404
+ "node": ">=16.20.0"
405
+ }
406
+ },
407
+ "node_modules/@typescript/typescript-netbsd-arm64": {
408
+ "version": "7.0.2",
409
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-arm64/-/typescript-netbsd-arm64-7.0.2.tgz",
410
+ "integrity": "sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==",
411
+ "cpu": [
412
+ "arm64"
413
+ ],
414
+ "dev": true,
415
+ "license": "Apache-2.0",
416
+ "optional": true,
417
+ "os": [
418
+ "netbsd"
419
+ ],
420
+ "engines": {
421
+ "node": ">=16.20.0"
422
+ }
423
+ },
424
+ "node_modules/@typescript/typescript-netbsd-x64": {
425
+ "version": "7.0.2",
426
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-x64/-/typescript-netbsd-x64-7.0.2.tgz",
427
+ "integrity": "sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==",
428
+ "cpu": [
429
+ "x64"
430
+ ],
431
+ "dev": true,
432
+ "license": "Apache-2.0",
433
+ "optional": true,
434
+ "os": [
435
+ "netbsd"
436
+ ],
437
+ "engines": {
438
+ "node": ">=16.20.0"
439
+ }
440
+ },
441
+ "node_modules/@typescript/typescript-openbsd-arm64": {
442
+ "version": "7.0.2",
443
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-arm64/-/typescript-openbsd-arm64-7.0.2.tgz",
444
+ "integrity": "sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==",
445
+ "cpu": [
446
+ "arm64"
447
+ ],
448
+ "dev": true,
449
+ "license": "Apache-2.0",
450
+ "optional": true,
451
+ "os": [
452
+ "openbsd"
453
+ ],
454
+ "engines": {
455
+ "node": ">=16.20.0"
456
+ }
457
+ },
458
+ "node_modules/@typescript/typescript-openbsd-x64": {
459
+ "version": "7.0.2",
460
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-x64/-/typescript-openbsd-x64-7.0.2.tgz",
461
+ "integrity": "sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==",
462
+ "cpu": [
463
+ "x64"
464
+ ],
465
+ "dev": true,
466
+ "license": "Apache-2.0",
467
+ "optional": true,
468
+ "os": [
469
+ "openbsd"
470
+ ],
471
+ "engines": {
472
+ "node": ">=16.20.0"
473
+ }
474
+ },
475
+ "node_modules/@typescript/typescript-sunos-x64": {
476
+ "version": "7.0.2",
477
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-sunos-x64/-/typescript-sunos-x64-7.0.2.tgz",
478
+ "integrity": "sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==",
479
+ "cpu": [
480
+ "x64"
481
+ ],
482
+ "dev": true,
483
+ "license": "Apache-2.0",
484
+ "optional": true,
485
+ "os": [
486
+ "sunos"
487
+ ],
488
+ "engines": {
489
+ "node": ">=16.20.0"
490
+ }
491
+ },
492
+ "node_modules/@typescript/typescript-win32-arm64": {
493
+ "version": "7.0.2",
494
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-arm64/-/typescript-win32-arm64-7.0.2.tgz",
495
+ "integrity": "sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==",
496
+ "cpu": [
497
+ "arm64"
498
+ ],
499
+ "dev": true,
500
+ "license": "Apache-2.0",
501
+ "optional": true,
502
+ "os": [
503
+ "win32"
504
+ ],
505
+ "engines": {
506
+ "node": ">=16.20.0"
507
+ }
508
+ },
509
+ "node_modules/@typescript/typescript-win32-x64": {
510
+ "version": "7.0.2",
511
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-x64/-/typescript-win32-x64-7.0.2.tgz",
512
+ "integrity": "sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==",
513
+ "cpu": [
514
+ "x64"
515
+ ],
516
+ "dev": true,
517
+ "license": "Apache-2.0",
518
+ "optional": true,
519
+ "os": [
520
+ "win32"
521
+ ],
522
+ "engines": {
523
+ "node": ">=16.20.0"
524
+ }
525
+ },
182
526
  "node_modules/@vercel/oidc": {
183
527
  "version": "3.1.0",
184
528
  "resolved": "https://registry.npmjs.org/@vercel/oidc/-/oidc-3.1.0.tgz",
@@ -282,17 +626,38 @@
282
626
  }
283
627
  },
284
628
  "node_modules/typescript": {
285
- "version": "5.9.3",
286
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
287
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
629
+ "version": "7.0.2",
630
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
631
+ "integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
288
632
  "dev": true,
289
633
  "license": "Apache-2.0",
290
634
  "bin": {
291
- "tsc": "bin/tsc",
292
- "tsserver": "bin/tsserver"
635
+ "tsc": "bin/tsc"
293
636
  },
294
637
  "engines": {
295
- "node": ">=14.17"
638
+ "node": ">=16.20.0"
639
+ },
640
+ "optionalDependencies": {
641
+ "@typescript/typescript-aix-ppc64": "7.0.2",
642
+ "@typescript/typescript-darwin-arm64": "7.0.2",
643
+ "@typescript/typescript-darwin-x64": "7.0.2",
644
+ "@typescript/typescript-freebsd-arm64": "7.0.2",
645
+ "@typescript/typescript-freebsd-x64": "7.0.2",
646
+ "@typescript/typescript-linux-arm": "7.0.2",
647
+ "@typescript/typescript-linux-arm64": "7.0.2",
648
+ "@typescript/typescript-linux-loong64": "7.0.2",
649
+ "@typescript/typescript-linux-mips64el": "7.0.2",
650
+ "@typescript/typescript-linux-ppc64": "7.0.2",
651
+ "@typescript/typescript-linux-riscv64": "7.0.2",
652
+ "@typescript/typescript-linux-s390x": "7.0.2",
653
+ "@typescript/typescript-linux-x64": "7.0.2",
654
+ "@typescript/typescript-netbsd-arm64": "7.0.2",
655
+ "@typescript/typescript-netbsd-x64": "7.0.2",
656
+ "@typescript/typescript-openbsd-arm64": "7.0.2",
657
+ "@typescript/typescript-openbsd-x64": "7.0.2",
658
+ "@typescript/typescript-sunos-x64": "7.0.2",
659
+ "@typescript/typescript-win32-arm64": "7.0.2",
660
+ "@typescript/typescript-win32-x64": "7.0.2"
296
661
  }
297
662
  },
298
663
  "node_modules/undici-types": {
@@ -8,13 +8,13 @@
8
8
  "smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation commerce.checkout --requested-spend-cents 4500 --result-body '{\"status\":\"completed\",\"cost_cents\":4500}' --format json"
9
9
  },
10
10
  "dependencies": {
11
- "@paybond/kit": "^0.11.11",
11
+ "@paybond/kit": "^0.12.6",
12
12
  "ai": "^5.0.0",
13
13
  "zod": "^4.2.0"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@types/node": "^22.10.1",
17
- "typescript": "^5.7.2"
17
+ "typescript": "^7.0.2"
18
18
  },
19
19
  "engines": {
20
20
  "node": ">=22"