@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.
- package/dist/agent/facade.d.ts +2 -0
- package/dist/agent/facade.js +10 -2
- package/dist/agent/guarded-agent.d.ts +3 -1
- package/dist/agent/guarded-agent.js +13 -2
- package/dist/agent/index.d.ts +2 -2
- package/dist/agent/index.js +1 -1
- package/dist/agent/instrument.d.ts +3 -0
- package/dist/agent/instrument.js +21 -10
- package/dist/agent/interceptor.js +19 -0
- package/dist/agent/types.d.ts +14 -0
- package/dist/agent-receipt-acta.d.ts +58 -0
- package/dist/agent-receipt-acta.js +140 -0
- package/dist/agent-receipt-inclusion.d.ts +40 -0
- package/dist/agent-receipt-inclusion.js +209 -0
- package/dist/agent-receipt-owner-disclosure.d.ts +71 -0
- package/dist/agent-receipt-owner-disclosure.js +277 -0
- package/dist/agent-receipt-pef.d.ts +69 -0
- package/dist/agent-receipt-pef.js +121 -0
- package/dist/agent-receipt-scitt.d.ts +50 -0
- package/dist/agent-receipt-scitt.js +382 -0
- package/dist/agent-receipt.d.ts +55 -0
- package/dist/agent-receipt.js +297 -4
- package/dist/claude-agents/config.d.ts +21 -2
- package/dist/claude-agents/config.js +37 -0
- package/dist/claude-agents/index.d.ts +1 -1
- package/dist/claude-agents/index.js +1 -1
- package/dist/cli/agent/demo-loaders.d.ts +1 -0
- package/dist/cli/agent/demo-loaders.js +12 -0
- package/dist/cli/command-spec.js +16 -1
- package/dist/cli/commands/agent.d.ts +4 -0
- package/dist/cli/commands/agent.js +107 -1
- package/dist/cli/help.js +4 -1
- package/dist/cloudflare-agents/config.d.ts +1 -1
- package/dist/cloudflare-agents/config.js +2 -2
- package/dist/google-adk/config.d.ts +36 -0
- package/dist/google-adk/config.js +172 -0
- package/dist/google-adk/index.d.ts +2 -0
- package/dist/google-adk/index.js +2 -0
- package/dist/google-adk/sandbox-demo.d.ts +32 -0
- package/dist/google-adk/sandbox-demo.js +104 -0
- package/dist/index.d.ts +10 -2
- package/dist/index.js +11 -3
- package/dist/init.js +29 -0
- package/dist/mcp-receipt-resource.js +3 -1
- package/dist/mcp-server.js +122 -2
- package/dist/policy/adapter-options.d.ts +9 -0
- package/dist/policy/adapter-options.js +11 -0
- package/dist/policy/index.d.ts +1 -0
- package/dist/policy/index.js +1 -0
- package/dist/policy/load.d.ts +7 -0
- package/dist/policy/load.js +13 -0
- package/dist/policy/merge.js +26 -0
- package/dist/policy/schema.d.ts +20 -0
- package/dist/policy/schema.js +34 -2
- package/dist/shopify/instrument.d.ts +8 -8
- package/dist/template-init.d.ts +2 -2
- package/dist/template-init.js +12 -4
- package/dist/vercel-ai/config.d.ts +2 -1
- package/dist/vercel-ai/config.js +2 -2
- package/dist/vercel-ai/index.d.ts +2 -1
- package/dist/vercel-ai/index.js +2 -1
- package/dist/vercel-ai/provider-executed.d.ts +7 -0
- package/dist/vercel-ai/provider-executed.js +20 -0
- package/dist/vercel-ai/tool-approval.d.ts +5 -0
- package/dist/vercel-ai/tool-approval.js +8 -1
- package/dist/vercel-ai/wrap-tools.d.ts +8 -1
- package/dist/vercel-ai/wrap-tools.js +17 -4
- package/package.json +13 -4
- package/templates/manifest.json +57 -12
- package/templates/openai-shopping-agent/package-lock.json +379 -14
- package/templates/openai-shopping-agent/package.json +2 -2
- package/templates/paybond-aws-operator/package-lock.json +376 -11
- package/templates/paybond-aws-operator/package.json +2 -2
- package/templates/paybond-claude-agents-demo/package-lock.json +379 -14
- package/templates/paybond-claude-agents-demo/package.json +2 -2
- package/templates/paybond-cloudflare-shopping-agent/.env.example +3 -0
- package/templates/paybond-cloudflare-shopping-agent/.github/workflows/smoke.yml +20 -0
- package/templates/paybond-cloudflare-shopping-agent/LICENSE +201 -0
- package/templates/paybond-cloudflare-shopping-agent/README.md +29 -0
- package/templates/paybond-cloudflare-shopping-agent/package-lock.json +2671 -0
- package/templates/paybond-cloudflare-shopping-agent/package.json +23 -0
- package/templates/paybond-cloudflare-shopping-agent/paybond.policy.yaml +22 -0
- package/templates/paybond-cloudflare-shopping-agent/src/agent.ts +109 -0
- package/templates/paybond-cloudflare-shopping-agent/src/index.ts +22 -0
- package/templates/paybond-cloudflare-shopping-agent/src/paybond.config.ts +51 -0
- package/templates/paybond-cloudflare-shopping-agent/tsconfig.json +13 -0
- package/templates/paybond-crewai-procurement-agent/.env.example +3 -0
- package/templates/paybond-crewai-procurement-agent/.github/workflows/smoke.yml +19 -0
- package/templates/paybond-crewai-procurement-agent/LICENSE +201 -0
- package/templates/paybond-crewai-procurement-agent/README.md +73 -0
- package/templates/paybond-crewai-procurement-agent/app.py +79 -0
- package/templates/paybond-crewai-procurement-agent/crew.py +117 -0
- package/templates/paybond-crewai-procurement-agent/package.json +6 -0
- package/templates/paybond-crewai-procurement-agent/paybond.policy.yaml +28 -0
- package/templates/paybond-crewai-procurement-agent/paybond_config.py +45 -0
- package/templates/paybond-crewai-procurement-agent/requirements.txt +2 -0
- package/templates/paybond-invoice-agent/requirements.txt +1 -1
- package/templates/paybond-mastra-travel-agent/package-lock.json +379 -14
- package/templates/paybond-mastra-travel-agent/package.json +2 -2
- package/templates/paybond-mcp-coding-agent/package-lock.json +376 -11
- package/templates/paybond-mcp-coding-agent/package.json +2 -2
- package/templates/paybond-openai-agents-demo/package-lock.json +379 -14
- package/templates/paybond-openai-agents-demo/package.json +2 -2
- package/templates/paybond-procurement-agent/package-lock.json +376 -11
- package/templates/paybond-procurement-agent/package.json +2 -2
- package/templates/paybond-shopify-shopping-agent/package-lock.json +376 -11
- package/templates/paybond-shopify-shopping-agent/package.json +2 -2
- package/templates/paybond-stripe-agent-demo/package-lock.json +376 -11
- package/templates/paybond-stripe-agent-demo/package.json +2 -2
- package/templates/paybond-travel-agent/package-lock.json +376 -11
- package/templates/paybond-travel-agent/package.json +2 -2
- package/templates/paybond-vercel-shopping-agent/package-lock.json +376 -11
- package/templates/paybond-vercel-shopping-agent/package.json +2 -2
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
"name": "paybond-openai-agents-demo",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@openai/agents": "^0.4.0",
|
|
10
|
-
"@paybond/kit": "^0.12.
|
|
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": "^
|
|
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.
|
|
173
|
-
"resolved": "https://registry.npmjs.org/@paybond/kit/-/kit-0.12.
|
|
174
|
-
"integrity": "sha512-
|
|
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.
|
|
810
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.
|
|
811
|
-
"integrity": "sha512-
|
|
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": "
|
|
1415
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-
|
|
1416
|
-
"integrity": "sha512-
|
|
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": ">=
|
|
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 saas.provision_seat --requested-spend-cents 2900 --result-body '{\"status\":\"completed\",\"cost_cents\":2900}' --format json"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@paybond/kit": "^0.
|
|
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": "^
|
|
17
|
+
"typescript": "^7.0.2"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">=22"
|