@paybond/kit 0.12.4 → 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 (114) 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 +182 -10
  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/glama.json +6 -0
  69. package/package.json +15 -5
  70. package/templates/manifest.json +57 -12
  71. package/templates/openai-shopping-agent/package-lock.json +379 -14
  72. package/templates/openai-shopping-agent/package.json +2 -2
  73. package/templates/paybond-aws-operator/package-lock.json +376 -11
  74. package/templates/paybond-aws-operator/package.json +2 -2
  75. package/templates/paybond-claude-agents-demo/package-lock.json +379 -14
  76. package/templates/paybond-claude-agents-demo/package.json +2 -2
  77. package/templates/paybond-cloudflare-shopping-agent/.env.example +3 -0
  78. package/templates/paybond-cloudflare-shopping-agent/.github/workflows/smoke.yml +20 -0
  79. package/templates/paybond-cloudflare-shopping-agent/LICENSE +201 -0
  80. package/templates/paybond-cloudflare-shopping-agent/README.md +29 -0
  81. package/templates/paybond-cloudflare-shopping-agent/package-lock.json +2671 -0
  82. package/templates/paybond-cloudflare-shopping-agent/package.json +23 -0
  83. package/templates/paybond-cloudflare-shopping-agent/paybond.policy.yaml +22 -0
  84. package/templates/paybond-cloudflare-shopping-agent/src/agent.ts +109 -0
  85. package/templates/paybond-cloudflare-shopping-agent/src/index.ts +22 -0
  86. package/templates/paybond-cloudflare-shopping-agent/src/paybond.config.ts +51 -0
  87. package/templates/paybond-cloudflare-shopping-agent/tsconfig.json +13 -0
  88. package/templates/paybond-crewai-procurement-agent/.env.example +3 -0
  89. package/templates/paybond-crewai-procurement-agent/.github/workflows/smoke.yml +19 -0
  90. package/templates/paybond-crewai-procurement-agent/LICENSE +201 -0
  91. package/templates/paybond-crewai-procurement-agent/README.md +73 -0
  92. package/templates/paybond-crewai-procurement-agent/app.py +79 -0
  93. package/templates/paybond-crewai-procurement-agent/crew.py +117 -0
  94. package/templates/paybond-crewai-procurement-agent/package.json +6 -0
  95. package/templates/paybond-crewai-procurement-agent/paybond.policy.yaml +28 -0
  96. package/templates/paybond-crewai-procurement-agent/paybond_config.py +45 -0
  97. package/templates/paybond-crewai-procurement-agent/requirements.txt +2 -0
  98. package/templates/paybond-invoice-agent/requirements.txt +1 -1
  99. package/templates/paybond-mastra-travel-agent/package-lock.json +379 -14
  100. package/templates/paybond-mastra-travel-agent/package.json +2 -2
  101. package/templates/paybond-mcp-coding-agent/package-lock.json +376 -11
  102. package/templates/paybond-mcp-coding-agent/package.json +2 -2
  103. package/templates/paybond-openai-agents-demo/package-lock.json +379 -14
  104. package/templates/paybond-openai-agents-demo/package.json +2 -2
  105. package/templates/paybond-procurement-agent/package-lock.json +376 -11
  106. package/templates/paybond-procurement-agent/package.json +2 -2
  107. package/templates/paybond-shopify-shopping-agent/package-lock.json +376 -11
  108. package/templates/paybond-shopify-shopping-agent/package.json +2 -2
  109. package/templates/paybond-stripe-agent-demo/package-lock.json +376 -11
  110. package/templates/paybond-stripe-agent-demo/package.json +2 -2
  111. package/templates/paybond-travel-agent/package-lock.json +376 -11
  112. package/templates/paybond-travel-agent/package.json +2 -2
  113. package/templates/paybond-vercel-shopping-agent/package-lock.json +376 -11
  114. package/templates/paybond-vercel-shopping-agent/package.json +2 -2
@@ -8,12 +8,12 @@
8
8
  "dependencies": {
9
9
  "@langchain/core": "^1.2.1",
10
10
  "@langchain/langgraph": "^1.4.7",
11
- "@paybond/kit": "^0.12.4",
11
+ "@paybond/kit": "^0.12.6",
12
12
  "zod": "^4.2.0"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@types/node": "^22.10.1",
16
- "typescript": "^5.7.2"
16
+ "typescript": "^7.0.2"
17
17
  },
18
18
  "engines": {
19
19
  "node": ">=22"
@@ -178,9 +178,9 @@
178
178
  }
179
179
  },
180
180
  "node_modules/@paybond/kit": {
181
- "version": "0.12.4",
182
- "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.4.tgz",
183
- "integrity": "sha512-Wo2v0MBEdrvxGcSSJ/hG1TGOfw/hm0TTnpVXH70PVq0Y+xL97o4J9A1Z2dKVdfRnp5O0KM0AkJKA2MeOQ7qkFw==",
181
+ "version": "0.12.6",
182
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.6.tgz",
183
+ "integrity": "sha512-rkZ+7SjXm3aZ9TIGkCYvwTWV+NPRxuol+UmBGd0NPzOilHmHhP84aYH1Ro4syVA2pqIdyqCItSszGQMETPjNTA==",
184
184
  "license": "Apache-2.0",
185
185
  "dependencies": {
186
186
  "@noble/ed25519": "^2.2.1",
@@ -202,6 +202,7 @@
202
202
  },
203
203
  "peerDependencies": {
204
204
  "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
205
+ "@google/adk": ">=1.0.0",
205
206
  "@langchain/core": ">=0.3.0",
206
207
  "@langchain/langgraph": ">=0.2.50",
207
208
  "@mastra/core": ">=1.0.0",
@@ -214,6 +215,9 @@
214
215
  "@anthropic-ai/claude-agent-sdk": {
215
216
  "optional": true
216
217
  },
218
+ "@google/adk": {
219
+ "optional": true
220
+ },
217
221
  "@langchain/core": {
218
222
  "optional": true
219
223
  },
@@ -259,6 +263,346 @@
259
263
  "undici-types": "~6.21.0"
260
264
  }
261
265
  },
266
+ "node_modules/@typescript/typescript-aix-ppc64": {
267
+ "version": "7.0.2",
268
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-aix-ppc64/-/typescript-aix-ppc64-7.0.2.tgz",
269
+ "integrity": "sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==",
270
+ "cpu": [
271
+ "ppc64"
272
+ ],
273
+ "dev": true,
274
+ "license": "Apache-2.0",
275
+ "optional": true,
276
+ "os": [
277
+ "aix"
278
+ ],
279
+ "engines": {
280
+ "node": ">=16.20.0"
281
+ }
282
+ },
283
+ "node_modules/@typescript/typescript-darwin-arm64": {
284
+ "version": "7.0.2",
285
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-arm64/-/typescript-darwin-arm64-7.0.2.tgz",
286
+ "integrity": "sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==",
287
+ "cpu": [
288
+ "arm64"
289
+ ],
290
+ "dev": true,
291
+ "license": "Apache-2.0",
292
+ "optional": true,
293
+ "os": [
294
+ "darwin"
295
+ ],
296
+ "engines": {
297
+ "node": ">=16.20.0"
298
+ }
299
+ },
300
+ "node_modules/@typescript/typescript-darwin-x64": {
301
+ "version": "7.0.2",
302
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-x64/-/typescript-darwin-x64-7.0.2.tgz",
303
+ "integrity": "sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==",
304
+ "cpu": [
305
+ "x64"
306
+ ],
307
+ "dev": true,
308
+ "license": "Apache-2.0",
309
+ "optional": true,
310
+ "os": [
311
+ "darwin"
312
+ ],
313
+ "engines": {
314
+ "node": ">=16.20.0"
315
+ }
316
+ },
317
+ "node_modules/@typescript/typescript-freebsd-arm64": {
318
+ "version": "7.0.2",
319
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-arm64/-/typescript-freebsd-arm64-7.0.2.tgz",
320
+ "integrity": "sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==",
321
+ "cpu": [
322
+ "arm64"
323
+ ],
324
+ "dev": true,
325
+ "license": "Apache-2.0",
326
+ "optional": true,
327
+ "os": [
328
+ "freebsd"
329
+ ],
330
+ "engines": {
331
+ "node": ">=16.20.0"
332
+ }
333
+ },
334
+ "node_modules/@typescript/typescript-freebsd-x64": {
335
+ "version": "7.0.2",
336
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-x64/-/typescript-freebsd-x64-7.0.2.tgz",
337
+ "integrity": "sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==",
338
+ "cpu": [
339
+ "x64"
340
+ ],
341
+ "dev": true,
342
+ "license": "Apache-2.0",
343
+ "optional": true,
344
+ "os": [
345
+ "freebsd"
346
+ ],
347
+ "engines": {
348
+ "node": ">=16.20.0"
349
+ }
350
+ },
351
+ "node_modules/@typescript/typescript-linux-arm": {
352
+ "version": "7.0.2",
353
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm/-/typescript-linux-arm-7.0.2.tgz",
354
+ "integrity": "sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==",
355
+ "cpu": [
356
+ "arm"
357
+ ],
358
+ "dev": true,
359
+ "license": "Apache-2.0",
360
+ "optional": true,
361
+ "os": [
362
+ "linux"
363
+ ],
364
+ "engines": {
365
+ "node": ">=16.20.0"
366
+ }
367
+ },
368
+ "node_modules/@typescript/typescript-linux-arm64": {
369
+ "version": "7.0.2",
370
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm64/-/typescript-linux-arm64-7.0.2.tgz",
371
+ "integrity": "sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==",
372
+ "cpu": [
373
+ "arm64"
374
+ ],
375
+ "dev": true,
376
+ "license": "Apache-2.0",
377
+ "optional": true,
378
+ "os": [
379
+ "linux"
380
+ ],
381
+ "engines": {
382
+ "node": ">=16.20.0"
383
+ }
384
+ },
385
+ "node_modules/@typescript/typescript-linux-loong64": {
386
+ "version": "7.0.2",
387
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-loong64/-/typescript-linux-loong64-7.0.2.tgz",
388
+ "integrity": "sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==",
389
+ "cpu": [
390
+ "loong64"
391
+ ],
392
+ "dev": true,
393
+ "license": "Apache-2.0",
394
+ "optional": true,
395
+ "os": [
396
+ "linux"
397
+ ],
398
+ "engines": {
399
+ "node": ">=16.20.0"
400
+ }
401
+ },
402
+ "node_modules/@typescript/typescript-linux-mips64el": {
403
+ "version": "7.0.2",
404
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-mips64el/-/typescript-linux-mips64el-7.0.2.tgz",
405
+ "integrity": "sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==",
406
+ "cpu": [
407
+ "mips64el"
408
+ ],
409
+ "dev": true,
410
+ "license": "Apache-2.0",
411
+ "optional": true,
412
+ "os": [
413
+ "linux"
414
+ ],
415
+ "engines": {
416
+ "node": ">=16.20.0"
417
+ }
418
+ },
419
+ "node_modules/@typescript/typescript-linux-ppc64": {
420
+ "version": "7.0.2",
421
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-ppc64/-/typescript-linux-ppc64-7.0.2.tgz",
422
+ "integrity": "sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==",
423
+ "cpu": [
424
+ "ppc64"
425
+ ],
426
+ "dev": true,
427
+ "license": "Apache-2.0",
428
+ "optional": true,
429
+ "os": [
430
+ "linux"
431
+ ],
432
+ "engines": {
433
+ "node": ">=16.20.0"
434
+ }
435
+ },
436
+ "node_modules/@typescript/typescript-linux-riscv64": {
437
+ "version": "7.0.2",
438
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-riscv64/-/typescript-linux-riscv64-7.0.2.tgz",
439
+ "integrity": "sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==",
440
+ "cpu": [
441
+ "riscv64"
442
+ ],
443
+ "dev": true,
444
+ "license": "Apache-2.0",
445
+ "optional": true,
446
+ "os": [
447
+ "linux"
448
+ ],
449
+ "engines": {
450
+ "node": ">=16.20.0"
451
+ }
452
+ },
453
+ "node_modules/@typescript/typescript-linux-s390x": {
454
+ "version": "7.0.2",
455
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-s390x/-/typescript-linux-s390x-7.0.2.tgz",
456
+ "integrity": "sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==",
457
+ "cpu": [
458
+ "s390x"
459
+ ],
460
+ "dev": true,
461
+ "license": "Apache-2.0",
462
+ "optional": true,
463
+ "os": [
464
+ "linux"
465
+ ],
466
+ "engines": {
467
+ "node": ">=16.20.0"
468
+ }
469
+ },
470
+ "node_modules/@typescript/typescript-linux-x64": {
471
+ "version": "7.0.2",
472
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-x64/-/typescript-linux-x64-7.0.2.tgz",
473
+ "integrity": "sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==",
474
+ "cpu": [
475
+ "x64"
476
+ ],
477
+ "dev": true,
478
+ "license": "Apache-2.0",
479
+ "optional": true,
480
+ "os": [
481
+ "linux"
482
+ ],
483
+ "engines": {
484
+ "node": ">=16.20.0"
485
+ }
486
+ },
487
+ "node_modules/@typescript/typescript-netbsd-arm64": {
488
+ "version": "7.0.2",
489
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-arm64/-/typescript-netbsd-arm64-7.0.2.tgz",
490
+ "integrity": "sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==",
491
+ "cpu": [
492
+ "arm64"
493
+ ],
494
+ "dev": true,
495
+ "license": "Apache-2.0",
496
+ "optional": true,
497
+ "os": [
498
+ "netbsd"
499
+ ],
500
+ "engines": {
501
+ "node": ">=16.20.0"
502
+ }
503
+ },
504
+ "node_modules/@typescript/typescript-netbsd-x64": {
505
+ "version": "7.0.2",
506
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-x64/-/typescript-netbsd-x64-7.0.2.tgz",
507
+ "integrity": "sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==",
508
+ "cpu": [
509
+ "x64"
510
+ ],
511
+ "dev": true,
512
+ "license": "Apache-2.0",
513
+ "optional": true,
514
+ "os": [
515
+ "netbsd"
516
+ ],
517
+ "engines": {
518
+ "node": ">=16.20.0"
519
+ }
520
+ },
521
+ "node_modules/@typescript/typescript-openbsd-arm64": {
522
+ "version": "7.0.2",
523
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-arm64/-/typescript-openbsd-arm64-7.0.2.tgz",
524
+ "integrity": "sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==",
525
+ "cpu": [
526
+ "arm64"
527
+ ],
528
+ "dev": true,
529
+ "license": "Apache-2.0",
530
+ "optional": true,
531
+ "os": [
532
+ "openbsd"
533
+ ],
534
+ "engines": {
535
+ "node": ">=16.20.0"
536
+ }
537
+ },
538
+ "node_modules/@typescript/typescript-openbsd-x64": {
539
+ "version": "7.0.2",
540
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-x64/-/typescript-openbsd-x64-7.0.2.tgz",
541
+ "integrity": "sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==",
542
+ "cpu": [
543
+ "x64"
544
+ ],
545
+ "dev": true,
546
+ "license": "Apache-2.0",
547
+ "optional": true,
548
+ "os": [
549
+ "openbsd"
550
+ ],
551
+ "engines": {
552
+ "node": ">=16.20.0"
553
+ }
554
+ },
555
+ "node_modules/@typescript/typescript-sunos-x64": {
556
+ "version": "7.0.2",
557
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-sunos-x64/-/typescript-sunos-x64-7.0.2.tgz",
558
+ "integrity": "sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==",
559
+ "cpu": [
560
+ "x64"
561
+ ],
562
+ "dev": true,
563
+ "license": "Apache-2.0",
564
+ "optional": true,
565
+ "os": [
566
+ "sunos"
567
+ ],
568
+ "engines": {
569
+ "node": ">=16.20.0"
570
+ }
571
+ },
572
+ "node_modules/@typescript/typescript-win32-arm64": {
573
+ "version": "7.0.2",
574
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-arm64/-/typescript-win32-arm64-7.0.2.tgz",
575
+ "integrity": "sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==",
576
+ "cpu": [
577
+ "arm64"
578
+ ],
579
+ "dev": true,
580
+ "license": "Apache-2.0",
581
+ "optional": true,
582
+ "os": [
583
+ "win32"
584
+ ],
585
+ "engines": {
586
+ "node": ">=16.20.0"
587
+ }
588
+ },
589
+ "node_modules/@typescript/typescript-win32-x64": {
590
+ "version": "7.0.2",
591
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-x64/-/typescript-win32-x64-7.0.2.tgz",
592
+ "integrity": "sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==",
593
+ "cpu": [
594
+ "x64"
595
+ ],
596
+ "dev": true,
597
+ "license": "Apache-2.0",
598
+ "optional": true,
599
+ "os": [
600
+ "win32"
601
+ ],
602
+ "engines": {
603
+ "node": ">=16.20.0"
604
+ }
605
+ },
262
606
  "node_modules/ajv": {
263
607
  "version": "8.20.0",
264
608
  "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
@@ -461,17 +805,38 @@
461
805
  }
462
806
  },
463
807
  "node_modules/typescript": {
464
- "version": "5.9.3",
465
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
466
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
808
+ "version": "7.0.2",
809
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
810
+ "integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
467
811
  "dev": true,
468
812
  "license": "Apache-2.0",
469
813
  "bin": {
470
- "tsc": "bin/tsc",
471
- "tsserver": "bin/tsserver"
814
+ "tsc": "bin/tsc"
472
815
  },
473
816
  "engines": {
474
- "node": ">=14.17"
817
+ "node": ">=16.20.0"
818
+ },
819
+ "optionalDependencies": {
820
+ "@typescript/typescript-aix-ppc64": "7.0.2",
821
+ "@typescript/typescript-darwin-arm64": "7.0.2",
822
+ "@typescript/typescript-darwin-x64": "7.0.2",
823
+ "@typescript/typescript-freebsd-arm64": "7.0.2",
824
+ "@typescript/typescript-freebsd-x64": "7.0.2",
825
+ "@typescript/typescript-linux-arm": "7.0.2",
826
+ "@typescript/typescript-linux-arm64": "7.0.2",
827
+ "@typescript/typescript-linux-loong64": "7.0.2",
828
+ "@typescript/typescript-linux-mips64el": "7.0.2",
829
+ "@typescript/typescript-linux-ppc64": "7.0.2",
830
+ "@typescript/typescript-linux-riscv64": "7.0.2",
831
+ "@typescript/typescript-linux-s390x": "7.0.2",
832
+ "@typescript/typescript-linux-x64": "7.0.2",
833
+ "@typescript/typescript-netbsd-arm64": "7.0.2",
834
+ "@typescript/typescript-netbsd-x64": "7.0.2",
835
+ "@typescript/typescript-openbsd-arm64": "7.0.2",
836
+ "@typescript/typescript-openbsd-x64": "7.0.2",
837
+ "@typescript/typescript-sunos-x64": "7.0.2",
838
+ "@typescript/typescript-win32-arm64": "7.0.2",
839
+ "@typescript/typescript-win32-x64": "7.0.2"
475
840
  }
476
841
  },
477
842
  "node_modules/undici-types": {
@@ -8,14 +8,14 @@
8
8
  "smoke": "paybond agent sandbox smoke --policy-file paybond.policy.yaml --operation travel.book_hotel --requested-spend-cents 18700 --result-body '{\"status\":\"completed\",\"cost_cents\":18700}' --format json"
9
9
  },
10
10
  "dependencies": {
11
- "@paybond/kit": "^0.11.11",
11
+ "@paybond/kit": "^0.12.6",
12
12
  "@langchain/core": "^1.2.1",
13
13
  "@langchain/langgraph": "^1.4.7",
14
14
  "zod": "^4.2.0"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@types/node": "^22.10.1",
18
- "typescript": "^5.7.2"
18
+ "typescript": "^7.0.2"
19
19
  },
20
20
  "engines": {
21
21
  "node": ">=22"