@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
@@ -6,11 +6,11 @@
6
6
  "": {
7
7
  "name": "paybond-shopify-shopping-agent",
8
8
  "dependencies": {
9
- "@paybond/kit": "^0.12.4"
9
+ "@paybond/kit": "^0.12.6"
10
10
  },
11
11
  "devDependencies": {
12
12
  "@types/node": "^22.10.1",
13
- "typescript": "^5.7.2"
13
+ "typescript": "^7.0.2"
14
14
  },
15
15
  "engines": {
16
16
  "node": ">=22"
@@ -47,9 +47,9 @@
47
47
  }
48
48
  },
49
49
  "node_modules/@paybond/kit": {
50
- "version": "0.12.4",
51
- "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.4.tgz",
52
- "integrity": "sha512-Wo2v0MBEdrvxGcSSJ/hG1TGOfw/hm0TTnpVXH70PVq0Y+xL97o4J9A1Z2dKVdfRnp5O0KM0AkJKA2MeOQ7qkFw==",
50
+ "version": "0.12.6",
51
+ "resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.6.tgz",
52
+ "integrity": "sha512-rkZ+7SjXm3aZ9TIGkCYvwTWV+NPRxuol+UmBGd0NPzOilHmHhP84aYH1Ro4syVA2pqIdyqCItSszGQMETPjNTA==",
53
53
  "license": "Apache-2.0",
54
54
  "dependencies": {
55
55
  "@noble/ed25519": "^2.2.1",
@@ -71,6 +71,7 @@
71
71
  },
72
72
  "peerDependencies": {
73
73
  "@anthropic-ai/claude-agent-sdk": ">=0.2.100",
74
+ "@google/adk": ">=1.0.0",
74
75
  "@langchain/core": ">=0.3.0",
75
76
  "@langchain/langgraph": ">=0.2.50",
76
77
  "@mastra/core": ">=1.0.0",
@@ -83,6 +84,9 @@
83
84
  "@anthropic-ai/claude-agent-sdk": {
84
85
  "optional": true
85
86
  },
87
+ "@google/adk": {
88
+ "optional": true
89
+ },
86
90
  "@langchain/core": {
87
91
  "optional": true
88
92
  },
@@ -116,6 +120,346 @@
116
120
  "undici-types": "~6.21.0"
117
121
  }
118
122
  },
123
+ "node_modules/@typescript/typescript-aix-ppc64": {
124
+ "version": "7.0.2",
125
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-aix-ppc64/-/typescript-aix-ppc64-7.0.2.tgz",
126
+ "integrity": "sha512-MTKKkWB7p/0E9xi1d1tHtZ5PiLkGEMIq88pK2CubZjOsLtYTLqhgIgi6zepFa+9GHZ6h05NMCkQxGKiPXMxXtQ==",
127
+ "cpu": [
128
+ "ppc64"
129
+ ],
130
+ "dev": true,
131
+ "license": "Apache-2.0",
132
+ "optional": true,
133
+ "os": [
134
+ "aix"
135
+ ],
136
+ "engines": {
137
+ "node": ">=16.20.0"
138
+ }
139
+ },
140
+ "node_modules/@typescript/typescript-darwin-arm64": {
141
+ "version": "7.0.2",
142
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-arm64/-/typescript-darwin-arm64-7.0.2.tgz",
143
+ "integrity": "sha512-gowzar9MwS/aRWp6f3a4KUqzRjAZjOsmGNCM6LcTgXum+dBfgsBVMN+AgvOCCbguXyick6LJhpBszxMebJ8syA==",
144
+ "cpu": [
145
+ "arm64"
146
+ ],
147
+ "dev": true,
148
+ "license": "Apache-2.0",
149
+ "optional": true,
150
+ "os": [
151
+ "darwin"
152
+ ],
153
+ "engines": {
154
+ "node": ">=16.20.0"
155
+ }
156
+ },
157
+ "node_modules/@typescript/typescript-darwin-x64": {
158
+ "version": "7.0.2",
159
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-darwin-x64/-/typescript-darwin-x64-7.0.2.tgz",
160
+ "integrity": "sha512-SZ9xZInqApNlNGc9s0W1VSsktYSOe9cFqNOIqmN1Gs8SmkjKZYFt017G4VwPxASInODuAdbTW7sXiFUf893RgA==",
161
+ "cpu": [
162
+ "x64"
163
+ ],
164
+ "dev": true,
165
+ "license": "Apache-2.0",
166
+ "optional": true,
167
+ "os": [
168
+ "darwin"
169
+ ],
170
+ "engines": {
171
+ "node": ">=16.20.0"
172
+ }
173
+ },
174
+ "node_modules/@typescript/typescript-freebsd-arm64": {
175
+ "version": "7.0.2",
176
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-arm64/-/typescript-freebsd-arm64-7.0.2.tgz",
177
+ "integrity": "sha512-W5NH4y/J0plIIS5b2xvTEkU7JFxyqdMAOgf+Ilhl0vHQXKO5dZoxd+C/jEtq56c4F3wk71RB4BMRQ2XdI+bwYQ==",
178
+ "cpu": [
179
+ "arm64"
180
+ ],
181
+ "dev": true,
182
+ "license": "Apache-2.0",
183
+ "optional": true,
184
+ "os": [
185
+ "freebsd"
186
+ ],
187
+ "engines": {
188
+ "node": ">=16.20.0"
189
+ }
190
+ },
191
+ "node_modules/@typescript/typescript-freebsd-x64": {
192
+ "version": "7.0.2",
193
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-freebsd-x64/-/typescript-freebsd-x64-7.0.2.tgz",
194
+ "integrity": "sha512-UMGDx5sTpzNw3WiPebH7l90IWfJggEd+egHt/q6p7/Cm3zqoV7VxkGXt+3DxPIw8CcmvAB0j3sVVfbhX+M4Tpw==",
195
+ "cpu": [
196
+ "x64"
197
+ ],
198
+ "dev": true,
199
+ "license": "Apache-2.0",
200
+ "optional": true,
201
+ "os": [
202
+ "freebsd"
203
+ ],
204
+ "engines": {
205
+ "node": ">=16.20.0"
206
+ }
207
+ },
208
+ "node_modules/@typescript/typescript-linux-arm": {
209
+ "version": "7.0.2",
210
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm/-/typescript-linux-arm-7.0.2.tgz",
211
+ "integrity": "sha512-gffT3xPz9sR7j/YJExkyPntrI0P2EP9XbOyWzth2/Gs0RstK+90RBcO0ncXoXy/beYll1SXw846Nf2zdnEz0QQ==",
212
+ "cpu": [
213
+ "arm"
214
+ ],
215
+ "dev": true,
216
+ "license": "Apache-2.0",
217
+ "optional": true,
218
+ "os": [
219
+ "linux"
220
+ ],
221
+ "engines": {
222
+ "node": ">=16.20.0"
223
+ }
224
+ },
225
+ "node_modules/@typescript/typescript-linux-arm64": {
226
+ "version": "7.0.2",
227
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-arm64/-/typescript-linux-arm64-7.0.2.tgz",
228
+ "integrity": "sha512-Qh4eU4/y3yDjnfjjyPYihMj5/ODIlmt+Bzu17OI+fiSRDW57QmU5SiN63exPRNJPKUzcc1INa1NXdrJ+MqHjUQ==",
229
+ "cpu": [
230
+ "arm64"
231
+ ],
232
+ "dev": true,
233
+ "license": "Apache-2.0",
234
+ "optional": true,
235
+ "os": [
236
+ "linux"
237
+ ],
238
+ "engines": {
239
+ "node": ">=16.20.0"
240
+ }
241
+ },
242
+ "node_modules/@typescript/typescript-linux-loong64": {
243
+ "version": "7.0.2",
244
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-loong64/-/typescript-linux-loong64-7.0.2.tgz",
245
+ "integrity": "sha512-uEHck9i8hoAzXPiYRib1O7miOnz23SxIeVl6F4LXox+qov1K35jHcEW6VHKvZI+pyvl7fZEP4MCU5LYvIq1GuQ==",
246
+ "cpu": [
247
+ "loong64"
248
+ ],
249
+ "dev": true,
250
+ "license": "Apache-2.0",
251
+ "optional": true,
252
+ "os": [
253
+ "linux"
254
+ ],
255
+ "engines": {
256
+ "node": ">=16.20.0"
257
+ }
258
+ },
259
+ "node_modules/@typescript/typescript-linux-mips64el": {
260
+ "version": "7.0.2",
261
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-mips64el/-/typescript-linux-mips64el-7.0.2.tgz",
262
+ "integrity": "sha512-R4KvAMnE43W5Qeqb0Ly56O3mWMWIAgsMyz36DCaycd5nbg/9kzm0liw3JocfRqyJY0KPmzFjbswozXyW0DnIYA==",
263
+ "cpu": [
264
+ "mips64el"
265
+ ],
266
+ "dev": true,
267
+ "license": "Apache-2.0",
268
+ "optional": true,
269
+ "os": [
270
+ "linux"
271
+ ],
272
+ "engines": {
273
+ "node": ">=16.20.0"
274
+ }
275
+ },
276
+ "node_modules/@typescript/typescript-linux-ppc64": {
277
+ "version": "7.0.2",
278
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-ppc64/-/typescript-linux-ppc64-7.0.2.tgz",
279
+ "integrity": "sha512-DORx5b3sd/4S7eayxm4FQv+A7CrkUIGRaHiwI8oiHTAI1fAPWhF4J0vAlkC8biAlHSVVwxMQ3tjZ2/DVbnQiiA==",
280
+ "cpu": [
281
+ "ppc64"
282
+ ],
283
+ "dev": true,
284
+ "license": "Apache-2.0",
285
+ "optional": true,
286
+ "os": [
287
+ "linux"
288
+ ],
289
+ "engines": {
290
+ "node": ">=16.20.0"
291
+ }
292
+ },
293
+ "node_modules/@typescript/typescript-linux-riscv64": {
294
+ "version": "7.0.2",
295
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-riscv64/-/typescript-linux-riscv64-7.0.2.tgz",
296
+ "integrity": "sha512-wf0jqEDOjrPRnKwYRyyJDRo11KMbvMFrU+q4zqKyChODBzvlkbhNQfKvLxQCcwTpdDaXSHZTVuh0JoCrKCUMHQ==",
297
+ "cpu": [
298
+ "riscv64"
299
+ ],
300
+ "dev": true,
301
+ "license": "Apache-2.0",
302
+ "optional": true,
303
+ "os": [
304
+ "linux"
305
+ ],
306
+ "engines": {
307
+ "node": ">=16.20.0"
308
+ }
309
+ },
310
+ "node_modules/@typescript/typescript-linux-s390x": {
311
+ "version": "7.0.2",
312
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-s390x/-/typescript-linux-s390x-7.0.2.tgz",
313
+ "integrity": "sha512-IkwJc3L7yhytWd/ewjyxNDfOmswCm9GWMJT/ue/dU4aZNbwZeYAetq42VyLmsmSjvoX7z74X6ZaYCtzAr0EuGw==",
314
+ "cpu": [
315
+ "s390x"
316
+ ],
317
+ "dev": true,
318
+ "license": "Apache-2.0",
319
+ "optional": true,
320
+ "os": [
321
+ "linux"
322
+ ],
323
+ "engines": {
324
+ "node": ">=16.20.0"
325
+ }
326
+ },
327
+ "node_modules/@typescript/typescript-linux-x64": {
328
+ "version": "7.0.2",
329
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-linux-x64/-/typescript-linux-x64-7.0.2.tgz",
330
+ "integrity": "sha512-EYdf2cNg7rgCWJnxCdJ+F3V39O8ihb37eHAu1LK8oAFizgTQbPOK7zHHXbPt8rX24COqODXeI3sIf0fCXG7H/A==",
331
+ "cpu": [
332
+ "x64"
333
+ ],
334
+ "dev": true,
335
+ "license": "Apache-2.0",
336
+ "optional": true,
337
+ "os": [
338
+ "linux"
339
+ ],
340
+ "engines": {
341
+ "node": ">=16.20.0"
342
+ }
343
+ },
344
+ "node_modules/@typescript/typescript-netbsd-arm64": {
345
+ "version": "7.0.2",
346
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-arm64/-/typescript-netbsd-arm64-7.0.2.tgz",
347
+ "integrity": "sha512-+polYF4MF04aPpO5FTkHran9yUQDSXqy5GiSDKpsll5jy3l3+g9QLhpf39T+ePtefhXLOGrLl0QIjkQP6VnelA==",
348
+ "cpu": [
349
+ "arm64"
350
+ ],
351
+ "dev": true,
352
+ "license": "Apache-2.0",
353
+ "optional": true,
354
+ "os": [
355
+ "netbsd"
356
+ ],
357
+ "engines": {
358
+ "node": ">=16.20.0"
359
+ }
360
+ },
361
+ "node_modules/@typescript/typescript-netbsd-x64": {
362
+ "version": "7.0.2",
363
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-netbsd-x64/-/typescript-netbsd-x64-7.0.2.tgz",
364
+ "integrity": "sha512-8YIT0EHM/3dq10ZOVF/A7pc/YSMtbcecct4rWtexrnSCHOPcpC2KTLXfTCR6vDpnSiY12heNb1GiN/wu+T/FyA==",
365
+ "cpu": [
366
+ "x64"
367
+ ],
368
+ "dev": true,
369
+ "license": "Apache-2.0",
370
+ "optional": true,
371
+ "os": [
372
+ "netbsd"
373
+ ],
374
+ "engines": {
375
+ "node": ">=16.20.0"
376
+ }
377
+ },
378
+ "node_modules/@typescript/typescript-openbsd-arm64": {
379
+ "version": "7.0.2",
380
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-arm64/-/typescript-openbsd-arm64-7.0.2.tgz",
381
+ "integrity": "sha512-APT8+ClYnuYm1u9+kgGXoMj2VzWzcymwh2gNSQVySHfkRDGOTVkoWLjCmOQSaO+PoqQ57B0flRp9SA+7GnnkzQ==",
382
+ "cpu": [
383
+ "arm64"
384
+ ],
385
+ "dev": true,
386
+ "license": "Apache-2.0",
387
+ "optional": true,
388
+ "os": [
389
+ "openbsd"
390
+ ],
391
+ "engines": {
392
+ "node": ">=16.20.0"
393
+ }
394
+ },
395
+ "node_modules/@typescript/typescript-openbsd-x64": {
396
+ "version": "7.0.2",
397
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-openbsd-x64/-/typescript-openbsd-x64-7.0.2.tgz",
398
+ "integrity": "sha512-yX7s+Q0Dln0Dt9tEzZsAjXXR/+ytBM7AlglaqyeMPxQszJ1JhlJdZ6jLA+IzldHtflX81em7lDao1xXu+aRRkg==",
399
+ "cpu": [
400
+ "x64"
401
+ ],
402
+ "dev": true,
403
+ "license": "Apache-2.0",
404
+ "optional": true,
405
+ "os": [
406
+ "openbsd"
407
+ ],
408
+ "engines": {
409
+ "node": ">=16.20.0"
410
+ }
411
+ },
412
+ "node_modules/@typescript/typescript-sunos-x64": {
413
+ "version": "7.0.2",
414
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-sunos-x64/-/typescript-sunos-x64-7.0.2.tgz",
415
+ "integrity": "sha512-dLJDGaLZ1D4HPQn62u1n8mBDkJREwMsAkCdkwd4Ieqw+x3TUyTsqY0YiBCtE6H6OzzgGk3iuZ3vFWRS+E8/d1g==",
416
+ "cpu": [
417
+ "x64"
418
+ ],
419
+ "dev": true,
420
+ "license": "Apache-2.0",
421
+ "optional": true,
422
+ "os": [
423
+ "sunos"
424
+ ],
425
+ "engines": {
426
+ "node": ">=16.20.0"
427
+ }
428
+ },
429
+ "node_modules/@typescript/typescript-win32-arm64": {
430
+ "version": "7.0.2",
431
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-arm64/-/typescript-win32-arm64-7.0.2.tgz",
432
+ "integrity": "sha512-Gyl1Vy6OsWesLzmq+EP0Fb7b4Nid5232AvcA2SFcdYreldpNtYFFofPjnt62y9hQy7VTaZp65ICJjuAQRaVcIQ==",
433
+ "cpu": [
434
+ "arm64"
435
+ ],
436
+ "dev": true,
437
+ "license": "Apache-2.0",
438
+ "optional": true,
439
+ "os": [
440
+ "win32"
441
+ ],
442
+ "engines": {
443
+ "node": ">=16.20.0"
444
+ }
445
+ },
446
+ "node_modules/@typescript/typescript-win32-x64": {
447
+ "version": "7.0.2",
448
+ "resolved": "https://registry.npmjs.org/@typescript/typescript-win32-x64/-/typescript-win32-x64-7.0.2.tgz",
449
+ "integrity": "sha512-0BQ3HkAHHlKLSp1qRvf3SUhGpGsDuhB/jgFw75guyqbxJqEaS0Cw/VFO8i2nHglJUzQCRtMMR/IBAKE3ETMC4g==",
450
+ "cpu": [
451
+ "x64"
452
+ ],
453
+ "dev": true,
454
+ "license": "Apache-2.0",
455
+ "optional": true,
456
+ "os": [
457
+ "win32"
458
+ ],
459
+ "engines": {
460
+ "node": ">=16.20.0"
461
+ }
462
+ },
119
463
  "node_modules/ajv": {
120
464
  "version": "8.20.0",
121
465
  "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz",
@@ -177,17 +521,38 @@
177
521
  }
178
522
  },
179
523
  "node_modules/typescript": {
180
- "version": "5.9.3",
181
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
182
- "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
524
+ "version": "7.0.2",
525
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-7.0.2.tgz",
526
+ "integrity": "sha512-8FYau96o3NKOhbjKi/qNvG/W5jhzxkbdm5sj9AbZ/5T5sWqn3hJgLfGx27sRKZWTvyzCP8dLRBTf5tBTSRVUNA==",
183
527
  "dev": true,
184
528
  "license": "Apache-2.0",
185
529
  "bin": {
186
- "tsc": "bin/tsc",
187
- "tsserver": "bin/tsserver"
530
+ "tsc": "bin/tsc"
188
531
  },
189
532
  "engines": {
190
- "node": ">=14.17"
533
+ "node": ">=16.20.0"
534
+ },
535
+ "optionalDependencies": {
536
+ "@typescript/typescript-aix-ppc64": "7.0.2",
537
+ "@typescript/typescript-darwin-arm64": "7.0.2",
538
+ "@typescript/typescript-darwin-x64": "7.0.2",
539
+ "@typescript/typescript-freebsd-arm64": "7.0.2",
540
+ "@typescript/typescript-freebsd-x64": "7.0.2",
541
+ "@typescript/typescript-linux-arm": "7.0.2",
542
+ "@typescript/typescript-linux-arm64": "7.0.2",
543
+ "@typescript/typescript-linux-loong64": "7.0.2",
544
+ "@typescript/typescript-linux-mips64el": "7.0.2",
545
+ "@typescript/typescript-linux-ppc64": "7.0.2",
546
+ "@typescript/typescript-linux-riscv64": "7.0.2",
547
+ "@typescript/typescript-linux-s390x": "7.0.2",
548
+ "@typescript/typescript-linux-x64": "7.0.2",
549
+ "@typescript/typescript-netbsd-arm64": "7.0.2",
550
+ "@typescript/typescript-netbsd-x64": "7.0.2",
551
+ "@typescript/typescript-openbsd-arm64": "7.0.2",
552
+ "@typescript/typescript-openbsd-x64": "7.0.2",
553
+ "@typescript/typescript-sunos-x64": "7.0.2",
554
+ "@typescript/typescript-win32-arm64": "7.0.2",
555
+ "@typescript/typescript-win32-x64": "7.0.2"
191
556
  }
192
557
  },
193
558
  "node_modules/undici-types": {
@@ -8,11 +8,11 @@
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,\"order_id\":\"gid://shopify/Order/123\",\"shop\":\"paybond-agent-commerce-dev.myshopify.com\"}' --format json"
9
9
  },
10
10
  "dependencies": {
11
- "@paybond/kit": "^0.12.1"
11
+ "@paybond/kit": "^0.12.6"
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"