@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
@@ -7,12 +7,12 @@
7
7
  "name": "openai-shopping-agent",
8
8
  "dependencies": {
9
9
  "@openai/agents": "^0.4.0",
10
- "@paybond/kit": "^0.12.5",
10
+ "@paybond/kit": "^0.12.6",
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"
@@ -169,9 +169,9 @@
169
169
  }
170
170
  },
171
171
  "node_modules/@paybond/kit": {
172
- "version": "0.12.5",
173
- "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.5.tgz",
174
- "integrity": "sha512-Q7VXMMXw5N+DZ7Tw9Fx1rYMSf0cFzpIG/ox8JnbBggI+8xw9CnGhyfOIxLwf/XefdmN/2zCg/v5hQNLYN9OAMg==",
172
+ "version": "0.12.6",
173
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.6.tgz",
174
+ "integrity": "sha512-rkZ+7SjXm3aZ9TIGkCYvwTWV+NPRxuol+UmBGd0NPzOilHmHhP84aYH1Ro4syVA2pqIdyqCItSszGQMETPjNTA==",
175
175
  "license": "Apache-2.0",
176
176
  "dependencies": {
177
177
  "@noble/ed25519": "^2.2.1",
@@ -193,6 +193,7 @@
193
193
  },
194
194
  "peerDependencies": {
195
195
  "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
196
+ "@google/adk": ">=1.0.0",
196
197
  "@langchain/core": ">=0.3.0",
197
198
  "@langchain/langgraph": ">=0.2.50",
198
199
  "@mastra/core": ">=1.0.0",
@@ -205,6 +206,9 @@
205
206
  "@anthropic-ai/claude-agent-sdk": {
206
207
  "optional": true
207
208
  },
209
+ "@google/adk": {
210
+ "optional": true
211
+ },
208
212
  "@langchain/core": {
209
213
  "optional": true
210
214
  },
@@ -246,6 +250,346 @@
246
250
  "@types/node": "*"
247
251
  }
248
252
  },
253
+ "node_modules/@typescript/typescript-aix-ppc64": {
254
+ "version": "7.0.2",
255
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-aix-ppc64/-/typescript-aix-ppc64-7.0.2.tgz",
256
+ "integrity": "sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==",
257
+ "cpu": [
258
+ "ppc64"
259
+ ],
260
+ "dev": true,
261
+ "license": "Apache-2.0",
262
+ "optional": true,
263
+ "os": [
264
+ "aix"
265
+ ],
266
+ "engines": {
267
+ "node": ">=16.20.0"
268
+ }
269
+ },
270
+ "node_modules/@typescript/typescript-darwin-arm64": {
271
+ "version": "7.0.2",
272
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-arm64/-/typescript-darwin-arm64-7.0.2.tgz",
273
+ "integrity": "sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==",
274
+ "cpu": [
275
+ "arm64"
276
+ ],
277
+ "dev": true,
278
+ "license": "Apache-2.0",
279
+ "optional": true,
280
+ "os": [
281
+ "darwin"
282
+ ],
283
+ "engines": {
284
+ "node": ">=16.20.0"
285
+ }
286
+ },
287
+ "node_modules/@typescript/typescript-darwin-x64": {
288
+ "version": "7.0.2",
289
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-x64/-/typescript-darwin-x64-7.0.2.tgz",
290
+ "integrity": "sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==",
291
+ "cpu": [
292
+ "x64"
293
+ ],
294
+ "dev": true,
295
+ "license": "Apache-2.0",
296
+ "optional": true,
297
+ "os": [
298
+ "darwin"
299
+ ],
300
+ "engines": {
301
+ "node": ">=16.20.0"
302
+ }
303
+ },
304
+ "node_modules/@typescript/typescript-freebsd-arm64": {
305
+ "version": "7.0.2",
306
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-arm64/-/typescript-freebsd-arm64-7.0.2.tgz",
307
+ "integrity": "sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==",
308
+ "cpu": [
309
+ "arm64"
310
+ ],
311
+ "dev": true,
312
+ "license": "Apache-2.0",
313
+ "optional": true,
314
+ "os": [
315
+ "freebsd"
316
+ ],
317
+ "engines": {
318
+ "node": ">=16.20.0"
319
+ }
320
+ },
321
+ "node_modules/@typescript/typescript-freebsd-x64": {
322
+ "version": "7.0.2",
323
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-x64/-/typescript-freebsd-x64-7.0.2.tgz",
324
+ "integrity": "sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==",
325
+ "cpu": [
326
+ "x64"
327
+ ],
328
+ "dev": true,
329
+ "license": "Apache-2.0",
330
+ "optional": true,
331
+ "os": [
332
+ "freebsd"
333
+ ],
334
+ "engines": {
335
+ "node": ">=16.20.0"
336
+ }
337
+ },
338
+ "node_modules/@typescript/typescript-linux-arm": {
339
+ "version": "7.0.2",
340
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm/-/typescript-linux-arm-7.0.2.tgz",
341
+ "integrity": "sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==",
342
+ "cpu": [
343
+ "arm"
344
+ ],
345
+ "dev": true,
346
+ "license": "Apache-2.0",
347
+ "optional": true,
348
+ "os": [
349
+ "linux"
350
+ ],
351
+ "engines": {
352
+ "node": ">=16.20.0"
353
+ }
354
+ },
355
+ "node_modules/@typescript/typescript-linux-arm64": {
356
+ "version": "7.0.2",
357
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm64/-/typescript-linux-arm64-7.0.2.tgz",
358
+ "integrity": "sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==",
359
+ "cpu": [
360
+ "arm64"
361
+ ],
362
+ "dev": true,
363
+ "license": "Apache-2.0",
364
+ "optional": true,
365
+ "os": [
366
+ "linux"
367
+ ],
368
+ "engines": {
369
+ "node": ">=16.20.0"
370
+ }
371
+ },
372
+ "node_modules/@typescript/typescript-linux-loong64": {
373
+ "version": "7.0.2",
374
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-loong64/-/typescript-linux-loong64-7.0.2.tgz",
375
+ "integrity": "sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==",
376
+ "cpu": [
377
+ "loong64"
378
+ ],
379
+ "dev": true,
380
+ "license": "Apache-2.0",
381
+ "optional": true,
382
+ "os": [
383
+ "linux"
384
+ ],
385
+ "engines": {
386
+ "node": ">=16.20.0"
387
+ }
388
+ },
389
+ "node_modules/@typescript/typescript-linux-mips64el": {
390
+ "version": "7.0.2",
391
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-mips64el/-/typescript-linux-mips64el-7.0.2.tgz",
392
+ "integrity": "sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==",
393
+ "cpu": [
394
+ "mips64el"
395
+ ],
396
+ "dev": true,
397
+ "license": "Apache-2.0",
398
+ "optional": true,
399
+ "os": [
400
+ "linux"
401
+ ],
402
+ "engines": {
403
+ "node": ">=16.20.0"
404
+ }
405
+ },
406
+ "node_modules/@typescript/typescript-linux-ppc64": {
407
+ "version": "7.0.2",
408
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-ppc64/-/typescript-linux-ppc64-7.0.2.tgz",
409
+ "integrity": "sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==",
410
+ "cpu": [
411
+ "ppc64"
412
+ ],
413
+ "dev": true,
414
+ "license": "Apache-2.0",
415
+ "optional": true,
416
+ "os": [
417
+ "linux"
418
+ ],
419
+ "engines": {
420
+ "node": ">=16.20.0"
421
+ }
422
+ },
423
+ "node_modules/@typescript/typescript-linux-riscv64": {
424
+ "version": "7.0.2",
425
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-riscv64/-/typescript-linux-riscv64-7.0.2.tgz",
426
+ "integrity": "sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==",
427
+ "cpu": [
428
+ "riscv64"
429
+ ],
430
+ "dev": true,
431
+ "license": "Apache-2.0",
432
+ "optional": true,
433
+ "os": [
434
+ "linux"
435
+ ],
436
+ "engines": {
437
+ "node": ">=16.20.0"
438
+ }
439
+ },
440
+ "node_modules/@typescript/typescript-linux-s390x": {
441
+ "version": "7.0.2",
442
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-s390x/-/typescript-linux-s390x-7.0.2.tgz",
443
+ "integrity": "sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==",
444
+ "cpu": [
445
+ "s390x"
446
+ ],
447
+ "dev": true,
448
+ "license": "Apache-2.0",
449
+ "optional": true,
450
+ "os": [
451
+ "linux"
452
+ ],
453
+ "engines": {
454
+ "node": ">=16.20.0"
455
+ }
456
+ },
457
+ "node_modules/@typescript/typescript-linux-x64": {
458
+ "version": "7.0.2",
459
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-x64/-/typescript-linux-x64-7.0.2.tgz",
460
+ "integrity": "sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==",
461
+ "cpu": [
462
+ "x64"
463
+ ],
464
+ "dev": true,
465
+ "license": "Apache-2.0",
466
+ "optional": true,
467
+ "os": [
468
+ "linux"
469
+ ],
470
+ "engines": {
471
+ "node": ">=16.20.0"
472
+ }
473
+ },
474
+ "node_modules/@typescript/typescript-netbsd-arm64": {
475
+ "version": "7.0.2",
476
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-arm64/-/typescript-netbsd-arm64-7.0.2.tgz",
477
+ "integrity": "sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==",
478
+ "cpu": [
479
+ "arm64"
480
+ ],
481
+ "dev": true,
482
+ "license": "Apache-2.0",
483
+ "optional": true,
484
+ "os": [
485
+ "netbsd"
486
+ ],
487
+ "engines": {
488
+ "node": ">=16.20.0"
489
+ }
490
+ },
491
+ "node_modules/@typescript/typescript-netbsd-x64": {
492
+ "version": "7.0.2",
493
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-x64/-/typescript-netbsd-x64-7.0.2.tgz",
494
+ "integrity": "sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==",
495
+ "cpu": [
496
+ "x64"
497
+ ],
498
+ "dev": true,
499
+ "license": "Apache-2.0",
500
+ "optional": true,
501
+ "os": [
502
+ "netbsd"
503
+ ],
504
+ "engines": {
505
+ "node": ">=16.20.0"
506
+ }
507
+ },
508
+ "node_modules/@typescript/typescript-openbsd-arm64": {
509
+ "version": "7.0.2",
510
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-arm64/-/typescript-openbsd-arm64-7.0.2.tgz",
511
+ "integrity": "sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==",
512
+ "cpu": [
513
+ "arm64"
514
+ ],
515
+ "dev": true,
516
+ "license": "Apache-2.0",
517
+ "optional": true,
518
+ "os": [
519
+ "openbsd"
520
+ ],
521
+ "engines": {
522
+ "node": ">=16.20.0"
523
+ }
524
+ },
525
+ "node_modules/@typescript/typescript-openbsd-x64": {
526
+ "version": "7.0.2",
527
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-x64/-/typescript-openbsd-x64-7.0.2.tgz",
528
+ "integrity": "sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==",
529
+ "cpu": [
530
+ "x64"
531
+ ],
532
+ "dev": true,
533
+ "license": "Apache-2.0",
534
+ "optional": true,
535
+ "os": [
536
+ "openbsd"
537
+ ],
538
+ "engines": {
539
+ "node": ">=16.20.0"
540
+ }
541
+ },
542
+ "node_modules/@typescript/typescript-sunos-x64": {
543
+ "version": "7.0.2",
544
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-sunos-x64/-/typescript-sunos-x64-7.0.2.tgz",
545
+ "integrity": "sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==",
546
+ "cpu": [
547
+ "x64"
548
+ ],
549
+ "dev": true,
550
+ "license": "Apache-2.0",
551
+ "optional": true,
552
+ "os": [
553
+ "sunos"
554
+ ],
555
+ "engines": {
556
+ "node": ">=16.20.0"
557
+ }
558
+ },
559
+ "node_modules/@typescript/typescript-win32-arm64": {
560
+ "version": "7.0.2",
561
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-arm64/-/typescript-win32-arm64-7.0.2.tgz",
562
+ "integrity": "sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==",
563
+ "cpu": [
564
+ "arm64"
565
+ ],
566
+ "dev": true,
567
+ "license": "Apache-2.0",
568
+ "optional": true,
569
+ "os": [
570
+ "win32"
571
+ ],
572
+ "engines": {
573
+ "node": ">=16.20.0"
574
+ }
575
+ },
576
+ "node_modules/@typescript/typescript-win32-x64": {
577
+ "version": "7.0.2",
578
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-x64/-/typescript-win32-x64-7.0.2.tgz",
579
+ "integrity": "sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==",
580
+ "cpu": [
581
+ "x64"
582
+ ],
583
+ "dev": true,
584
+ "license": "Apache-2.0",
585
+ "optional": true,
586
+ "os": [
587
+ "win32"
588
+ ],
589
+ "engines": {
590
+ "node": ">=16.20.0"
591
+ }
592
+ },
249
593
  "node_modules/accepts": {
250
594
  "version": "2.0.0",
251
595
  "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
@@ -806,9 +1150,9 @@
806
1150
  }
807
1151
  },
808
1152
  "node_modules/hono": {
809
- "version": "4.12.29",
810
- "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.29.tgz",
811
- "integrity": "sha512-1hNiRjawYrLq/4m3DQQjPGFg0VZkk4RjQJDff/excI6Dm9BiL75qxGrd7/c6YOxPdq6AscP3LiXhQ6fKFC1Waw==",
1153
+ "version": "4.12.30",
1154
+ "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.30.tgz",
1155
+ "integrity": "sha512-emn+JoJjrN9YTpRDS5it/UI2SO9BAE37T6I3d963RxcZ81G9A4pr2SZTEiiaiKbzx+NKRg5BZ89fCL7gCJCUog==",
812
1156
  "license": "MIT",
813
1157
  "optional": true,
814
1158
  "engines": {
@@ -1411,17 +1755,38 @@
1411
1755
  }
1412
1756
  },
1413
1757
  "node_modules/typescript": {
1414
- "version": "5.9.3",
1415
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
1416
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
1758
+ "version": "7.0.2",
1759
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
1760
+ "integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
1417
1761
  "dev": true,
1418
1762
  "license": "Apache-2.0",
1419
1763
  "bin": {
1420
- "tsc": "bin/tsc",
1421
- "tsserver": "bin/tsserver"
1764
+ "tsc": "bin/tsc"
1422
1765
  },
1423
1766
  "engines": {
1424
- "node": ">=14.17"
1767
+ "node": ">=16.20.0"
1768
+ },
1769
+ "optionalDependencies": {
1770
+ "@typescript/typescript-aix-ppc64": "7.0.2",
1771
+ "@typescript/typescript-darwin-arm64": "7.0.2",
1772
+ "@typescript/typescript-darwin-x64": "7.0.2",
1773
+ "@typescript/typescript-freebsd-arm64": "7.0.2",
1774
+ "@typescript/typescript-freebsd-x64": "7.0.2",
1775
+ "@typescript/typescript-linux-arm": "7.0.2",
1776
+ "@typescript/typescript-linux-arm64": "7.0.2",
1777
+ "@typescript/typescript-linux-loong64": "7.0.2",
1778
+ "@typescript/typescript-linux-mips64el": "7.0.2",
1779
+ "@typescript/typescript-linux-ppc64": "7.0.2",
1780
+ "@typescript/typescript-linux-riscv64": "7.0.2",
1781
+ "@typescript/typescript-linux-s390x": "7.0.2",
1782
+ "@typescript/typescript-linux-x64": "7.0.2",
1783
+ "@typescript/typescript-netbsd-arm64": "7.0.2",
1784
+ "@typescript/typescript-netbsd-x64": "7.0.2",
1785
+ "@typescript/typescript-openbsd-arm64": "7.0.2",
1786
+ "@typescript/typescript-openbsd-x64": "7.0.2",
1787
+ "@typescript/typescript-sunos-x64": "7.0.2",
1788
+ "@typescript/typescript-win32-arm64": "7.0.2",
1789
+ "@typescript/typescript-win32-x64": "7.0.2"
1425
1790
  }
1426
1791
  },
1427
1792
  "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
  "@openai/agents": "^0.4.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"