@agent-vm/agent-portal-sdk 0.0.145 → 0.0.148

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 (42) hide show
  1. package/dist/approval-surface/index.js +1 -1
  2. package/dist/{approval-surface-Cqk_hAtN.js → approval-surface-phfnKUSF.js} +2 -2
  3. package/dist/{approval-surface-Cqk_hAtN.js.map → approval-surface-phfnKUSF.js.map} +1 -1
  4. package/dist/capability-description-surface/index.d.ts +2 -2
  5. package/dist/capability-description-surface/index.js +3 -3
  6. package/dist/capability-description-surface-YqGm-nS_.js +2 -0
  7. package/dist/{capability-descriptor-schema-v9tj7yKr.js → capability-descriptor-schema-B_0vLQ3E.js} +38 -2
  8. package/dist/capability-descriptor-schema-B_0vLQ3E.js.map +1 -0
  9. package/dist/cli/tool-portal.js +3 -3
  10. package/dist/gateway-runtime-client/index.d.ts +1 -1
  11. package/dist/gateway-runtime-client/index.js +3 -3
  12. package/dist/{index-S5RZg56U.d.ts → index-C2axvEYg.d.ts} +2 -2
  13. package/dist/{index-S5RZg56U.d.ts.map → index-C2axvEYg.d.ts.map} +1 -1
  14. package/dist/index-uDfElZ9U.d.ts +304 -0
  15. package/dist/index-uDfElZ9U.d.ts.map +1 -0
  16. package/dist/index.d.ts +3 -3
  17. package/dist/index.js +7 -7
  18. package/dist/portable-contracts/index.js +1 -1
  19. package/dist/{portable-contracts-BJEMMNwI.js → portable-contracts-CWLiYrVU.js} +4 -4
  20. package/dist/{portable-contracts-BJEMMNwI.js.map → portable-contracts-CWLiYrVU.js.map} +1 -1
  21. package/dist/{portal-call-result-schema-B25_rzZZ.js → portal-call-result-schema-DM77S9CA.js} +2 -2
  22. package/dist/{portal-call-result-schema-B25_rzZZ.js.map → portal-call-result-schema-DM77S9CA.js.map} +1 -1
  23. package/dist/{portal-call-result-schema-DIg2ERl4.d.ts → portal-call-result-schema-Mv2Dv1HJ.d.ts} +673 -1
  24. package/dist/portal-call-result-schema-Mv2Dv1HJ.d.ts.map +1 -0
  25. package/dist/portal-call-surface/index.d.ts +1 -1
  26. package/dist/portal-call-surface/index.js +2 -2
  27. package/dist/{portal-call-surface-qykVz_8k.js → portal-call-surface-B952nh-H.js} +2 -2
  28. package/dist/{portal-call-surface-qykVz_8k.js.map → portal-call-surface-B952nh-H.js.map} +1 -1
  29. package/dist/testing/index.d.ts +1 -1
  30. package/dist/testing/index.js +1 -1
  31. package/dist/tool-portal-mcp-client/index.d.ts +1 -1
  32. package/dist/tool-portal-mcp-client/index.js +1 -1
  33. package/dist/tool-portal-mcp-client/node-tool-portal-mcp-transport.d.ts +1 -1
  34. package/dist/{tool-portal-mcp-client-DZoloMod.js → tool-portal-mcp-client-DsDi2iJc.js} +3 -3
  35. package/dist/{tool-portal-mcp-client-DZoloMod.js.map → tool-portal-mcp-client-DsDi2iJc.js.map} +1 -1
  36. package/package.json +3 -2
  37. package/portable-contract-schema-manifest.json +541 -0
  38. package/dist/capability-description-surface-CplIb93y.js +0 -2
  39. package/dist/capability-descriptor-schema-v9tj7yKr.js.map +0 -1
  40. package/dist/index-m4Mlc5zK.d.ts +0 -142
  41. package/dist/index-m4Mlc5zK.d.ts.map +0 -1
  42. package/dist/portal-call-result-schema-DIg2ERl4.d.ts.map +0 -1
@@ -252,7 +252,16 @@ declare const PortalBackendListItemValueSchema: z.ZodObject<{
252
252
  namespaces: z.ZodArray<z.ZodString>;
253
253
  nextCursor: z.ZodOptional<z.ZodString>;
254
254
  tools: z.ZodArray<z.ZodObject<{
255
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
256
+ kind: z.ZodLiteral<"without-approval">;
257
+ }, z.core.$strict>, z.ZodObject<{
258
+ kind: z.ZodLiteral<"requires-approval">;
259
+ }, z.core.$strict>, z.ZodObject<{
260
+ describeBeforeCall: z.ZodLiteral<true>;
261
+ kind: z.ZodLiteral<"invocation-dependent">;
262
+ }, z.core.$strict>], "kind">>;
255
263
  description: z.ZodOptional<z.ZodString>;
264
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
256
265
  input: z.ZodObject<{
257
266
  optional: z.ZodArray<z.ZodString>;
258
267
  propertyCount: z.ZodNumber;
@@ -279,12 +288,49 @@ declare const PortalBackendListItemValueSchema: z.ZodObject<{
279
288
  }, z.core.$strict>>;
280
289
  title: z.ZodOptional<z.ZodString>;
281
290
  name: z.ZodString;
291
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
292
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
293
+ accountLabel: z.ZodString;
294
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
295
+ }, z.core.$strict>>>;
296
+ kind: z.ZodLiteral<"ready">;
297
+ }, z.core.$strict>, z.ZodObject<{
298
+ kind: z.ZodLiteral<"authorization-required">;
299
+ }, z.core.$strict>, z.ZodObject<{
300
+ kind: z.ZodLiteral<"reauthorization-required">;
301
+ }, z.core.$strict>, z.ZodObject<{
302
+ kind: z.ZodLiteral<"scope-insufficient">;
303
+ }, z.core.$strict>, z.ZodObject<{
304
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
305
+ }, z.core.$strict>], "kind">>;
306
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
307
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
308
+ kind: z.ZodLiteral<"oauth-account-profile">;
309
+ minimumPermission: z.ZodEnum<{
310
+ read: "read";
311
+ write: "write";
312
+ }>;
313
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
314
+ }, z.core.$strict>, z.ZodObject<{
315
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
316
+ describeBeforeCall: z.ZodLiteral<true>;
317
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
318
+ }, z.core.$strict>], "kind">>;
282
319
  toolRef: z.ZodString;
283
320
  }, z.core.$strict>>;
284
321
  }, z.core.$strict>;
285
322
  declare const PortalBackendSearchItemValueSchema: z.ZodObject<{
286
323
  tools: z.ZodArray<z.ZodObject<{
324
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
325
+ kind: z.ZodLiteral<"without-approval">;
326
+ }, z.core.$strict>, z.ZodObject<{
327
+ kind: z.ZodLiteral<"requires-approval">;
328
+ }, z.core.$strict>, z.ZodObject<{
329
+ describeBeforeCall: z.ZodLiteral<true>;
330
+ kind: z.ZodLiteral<"invocation-dependent">;
331
+ }, z.core.$strict>], "kind">>;
287
332
  description: z.ZodOptional<z.ZodString>;
333
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
288
334
  input: z.ZodObject<{
289
335
  optional: z.ZodArray<z.ZodString>;
290
336
  propertyCount: z.ZodNumber;
@@ -311,6 +357,34 @@ declare const PortalBackendSearchItemValueSchema: z.ZodObject<{
311
357
  }, z.core.$strict>>;
312
358
  title: z.ZodOptional<z.ZodString>;
313
359
  name: z.ZodString;
360
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
361
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
362
+ accountLabel: z.ZodString;
363
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
364
+ }, z.core.$strict>>>;
365
+ kind: z.ZodLiteral<"ready">;
366
+ }, z.core.$strict>, z.ZodObject<{
367
+ kind: z.ZodLiteral<"authorization-required">;
368
+ }, z.core.$strict>, z.ZodObject<{
369
+ kind: z.ZodLiteral<"reauthorization-required">;
370
+ }, z.core.$strict>, z.ZodObject<{
371
+ kind: z.ZodLiteral<"scope-insufficient">;
372
+ }, z.core.$strict>, z.ZodObject<{
373
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
374
+ }, z.core.$strict>], "kind">>;
375
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
376
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
377
+ kind: z.ZodLiteral<"oauth-account-profile">;
378
+ minimumPermission: z.ZodEnum<{
379
+ read: "read";
380
+ write: "write";
381
+ }>;
382
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
383
+ }, z.core.$strict>, z.ZodObject<{
384
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
385
+ describeBeforeCall: z.ZodLiteral<true>;
386
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
387
+ }, z.core.$strict>], "kind">>;
314
388
  toolRef: z.ZodString;
315
389
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
316
390
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -321,6 +395,15 @@ declare const PortalBackendSearchItemValueSchema: z.ZodObject<{
321
395
  declare const PortalBackendDescribeItemValueSchema: z.ZodObject<{
322
396
  tools: z.ZodArray<z.ZodObject<{
323
397
  annotations: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
398
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
399
+ kind: z.ZodLiteral<"without-approval">;
400
+ }, z.core.$strict>, z.ZodObject<{
401
+ kind: z.ZodLiteral<"requires-approval">;
402
+ }, z.core.$strict>, z.ZodObject<{
403
+ describeBeforeCall: z.ZodLiteral<true>;
404
+ kind: z.ZodLiteral<"invocation-dependent">;
405
+ }, z.core.$strict>], "kind">>;
406
+ description: z.ZodOptional<z.ZodString>;
324
407
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
325
408
  namespace: z.ZodString;
326
409
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -332,7 +415,36 @@ declare const PortalBackendDescribeItemValueSchema: z.ZodObject<{
332
415
  describe_before_call: "describe_before_call";
333
416
  }>;
334
417
  }, z.core.$strict>>;
418
+ title: z.ZodOptional<z.ZodString>;
335
419
  name: z.ZodString;
420
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
421
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
422
+ accountLabel: z.ZodString;
423
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
424
+ }, z.core.$strict>>>;
425
+ kind: z.ZodLiteral<"ready">;
426
+ }, z.core.$strict>, z.ZodObject<{
427
+ kind: z.ZodLiteral<"authorization-required">;
428
+ }, z.core.$strict>, z.ZodObject<{
429
+ kind: z.ZodLiteral<"reauthorization-required">;
430
+ }, z.core.$strict>, z.ZodObject<{
431
+ kind: z.ZodLiteral<"scope-insufficient">;
432
+ }, z.core.$strict>, z.ZodObject<{
433
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
434
+ }, z.core.$strict>], "kind">>;
435
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
436
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
437
+ kind: z.ZodLiteral<"oauth-account-profile">;
438
+ minimumPermission: z.ZodEnum<{
439
+ read: "read";
440
+ write: "write";
441
+ }>;
442
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
443
+ }, z.core.$strict>, z.ZodObject<{
444
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
445
+ describeBeforeCall: z.ZodLiteral<true>;
446
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
447
+ }, z.core.$strict>], "kind">>;
336
448
  toolRef: z.ZodString;
337
449
  typescriptHelper: z.ZodOptional<z.ZodString>;
338
450
  zod: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -342,7 +454,16 @@ declare const PortalListItemValueSchema: z.ZodObject<{
342
454
  namespaces: z.ZodArray<z.ZodString>;
343
455
  nextCursor: z.ZodOptional<z.ZodString>;
344
456
  tools: z.ZodArray<z.ZodObject<{
457
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
458
+ kind: z.ZodLiteral<"without-approval">;
459
+ }, z.core.$strict>, z.ZodObject<{
460
+ kind: z.ZodLiteral<"requires-approval">;
461
+ }, z.core.$strict>, z.ZodObject<{
462
+ describeBeforeCall: z.ZodLiteral<true>;
463
+ kind: z.ZodLiteral<"invocation-dependent">;
464
+ }, z.core.$strict>], "kind">>;
345
465
  description: z.ZodOptional<z.ZodString>;
466
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
346
467
  input: z.ZodObject<{
347
468
  optional: z.ZodArray<z.ZodString>;
348
469
  propertyCount: z.ZodNumber;
@@ -369,6 +490,34 @@ declare const PortalListItemValueSchema: z.ZodObject<{
369
490
  }, z.core.$strict>>;
370
491
  title: z.ZodOptional<z.ZodString>;
371
492
  name: z.ZodString;
493
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
494
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
495
+ accountLabel: z.ZodString;
496
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
497
+ }, z.core.$strict>>>;
498
+ kind: z.ZodLiteral<"ready">;
499
+ }, z.core.$strict>, z.ZodObject<{
500
+ kind: z.ZodLiteral<"authorization-required">;
501
+ }, z.core.$strict>, z.ZodObject<{
502
+ kind: z.ZodLiteral<"reauthorization-required">;
503
+ }, z.core.$strict>, z.ZodObject<{
504
+ kind: z.ZodLiteral<"scope-insufficient">;
505
+ }, z.core.$strict>, z.ZodObject<{
506
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
507
+ }, z.core.$strict>], "kind">>;
508
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
509
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
510
+ kind: z.ZodLiteral<"oauth-account-profile">;
511
+ minimumPermission: z.ZodEnum<{
512
+ read: "read";
513
+ write: "write";
514
+ }>;
515
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
516
+ }, z.core.$strict>, z.ZodObject<{
517
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
518
+ describeBeforeCall: z.ZodLiteral<true>;
519
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
520
+ }, z.core.$strict>], "kind">>;
372
521
  toolRef: z.ZodString;
373
522
  }, z.core.$strict>>;
374
523
  namespaceDiscovery: z.ZodArray<z.ZodObject<{
@@ -378,7 +527,16 @@ declare const PortalListItemValueSchema: z.ZodObject<{
378
527
  }, z.core.$strict>;
379
528
  declare const PortalSearchItemValueSchema: z.ZodObject<{
380
529
  tools: z.ZodArray<z.ZodObject<{
530
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
531
+ kind: z.ZodLiteral<"without-approval">;
532
+ }, z.core.$strict>, z.ZodObject<{
533
+ kind: z.ZodLiteral<"requires-approval">;
534
+ }, z.core.$strict>, z.ZodObject<{
535
+ describeBeforeCall: z.ZodLiteral<true>;
536
+ kind: z.ZodLiteral<"invocation-dependent">;
537
+ }, z.core.$strict>], "kind">>;
381
538
  description: z.ZodOptional<z.ZodString>;
539
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
382
540
  input: z.ZodObject<{
383
541
  optional: z.ZodArray<z.ZodString>;
384
542
  propertyCount: z.ZodNumber;
@@ -405,6 +563,34 @@ declare const PortalSearchItemValueSchema: z.ZodObject<{
405
563
  }, z.core.$strict>>;
406
564
  title: z.ZodOptional<z.ZodString>;
407
565
  name: z.ZodString;
566
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
567
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
568
+ accountLabel: z.ZodString;
569
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
570
+ }, z.core.$strict>>>;
571
+ kind: z.ZodLiteral<"ready">;
572
+ }, z.core.$strict>, z.ZodObject<{
573
+ kind: z.ZodLiteral<"authorization-required">;
574
+ }, z.core.$strict>, z.ZodObject<{
575
+ kind: z.ZodLiteral<"reauthorization-required">;
576
+ }, z.core.$strict>, z.ZodObject<{
577
+ kind: z.ZodLiteral<"scope-insufficient">;
578
+ }, z.core.$strict>, z.ZodObject<{
579
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
580
+ }, z.core.$strict>], "kind">>;
581
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
582
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
583
+ kind: z.ZodLiteral<"oauth-account-profile">;
584
+ minimumPermission: z.ZodEnum<{
585
+ read: "read";
586
+ write: "write";
587
+ }>;
588
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
589
+ }, z.core.$strict>, z.ZodObject<{
590
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
591
+ describeBeforeCall: z.ZodLiteral<true>;
592
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
593
+ }, z.core.$strict>], "kind">>;
408
594
  toolRef: z.ZodString;
409
595
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
410
596
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -419,6 +605,15 @@ declare const PortalSearchItemValueSchema: z.ZodObject<{
419
605
  declare const PortalDescribeItemValueSchema: z.ZodObject<{
420
606
  tools: z.ZodArray<z.ZodObject<{
421
607
  annotations: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
608
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
609
+ kind: z.ZodLiteral<"without-approval">;
610
+ }, z.core.$strict>, z.ZodObject<{
611
+ kind: z.ZodLiteral<"requires-approval">;
612
+ }, z.core.$strict>, z.ZodObject<{
613
+ describeBeforeCall: z.ZodLiteral<true>;
614
+ kind: z.ZodLiteral<"invocation-dependent">;
615
+ }, z.core.$strict>], "kind">>;
616
+ description: z.ZodOptional<z.ZodString>;
422
617
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
423
618
  namespace: z.ZodString;
424
619
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -430,7 +625,36 @@ declare const PortalDescribeItemValueSchema: z.ZodObject<{
430
625
  describe_before_call: "describe_before_call";
431
626
  }>;
432
627
  }, z.core.$strict>>;
628
+ title: z.ZodOptional<z.ZodString>;
433
629
  name: z.ZodString;
630
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
631
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
632
+ accountLabel: z.ZodString;
633
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
634
+ }, z.core.$strict>>>;
635
+ kind: z.ZodLiteral<"ready">;
636
+ }, z.core.$strict>, z.ZodObject<{
637
+ kind: z.ZodLiteral<"authorization-required">;
638
+ }, z.core.$strict>, z.ZodObject<{
639
+ kind: z.ZodLiteral<"reauthorization-required">;
640
+ }, z.core.$strict>, z.ZodObject<{
641
+ kind: z.ZodLiteral<"scope-insufficient">;
642
+ }, z.core.$strict>, z.ZodObject<{
643
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
644
+ }, z.core.$strict>], "kind">>;
645
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
646
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
647
+ kind: z.ZodLiteral<"oauth-account-profile">;
648
+ minimumPermission: z.ZodEnum<{
649
+ read: "read";
650
+ write: "write";
651
+ }>;
652
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
653
+ }, z.core.$strict>, z.ZodObject<{
654
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
655
+ describeBeforeCall: z.ZodLiteral<true>;
656
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
657
+ }, z.core.$strict>], "kind">>;
434
658
  toolRef: z.ZodString;
435
659
  typescriptHelper: z.ZodOptional<z.ZodString>;
436
660
  zod: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -479,7 +703,16 @@ declare const PortalBackendListItemResultSchema: z.ZodDiscriminatedUnion<[z.ZodO
479
703
  namespaces: z.ZodArray<z.ZodString>;
480
704
  nextCursor: z.ZodOptional<z.ZodString>;
481
705
  tools: z.ZodArray<z.ZodObject<{
706
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
707
+ kind: z.ZodLiteral<"without-approval">;
708
+ }, z.core.$strict>, z.ZodObject<{
709
+ kind: z.ZodLiteral<"requires-approval">;
710
+ }, z.core.$strict>, z.ZodObject<{
711
+ describeBeforeCall: z.ZodLiteral<true>;
712
+ kind: z.ZodLiteral<"invocation-dependent">;
713
+ }, z.core.$strict>], "kind">>;
482
714
  description: z.ZodOptional<z.ZodString>;
715
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
483
716
  input: z.ZodObject<{
484
717
  optional: z.ZodArray<z.ZodString>;
485
718
  propertyCount: z.ZodNumber;
@@ -506,6 +739,34 @@ declare const PortalBackendListItemResultSchema: z.ZodDiscriminatedUnion<[z.ZodO
506
739
  }, z.core.$strict>>;
507
740
  title: z.ZodOptional<z.ZodString>;
508
741
  name: z.ZodString;
742
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
743
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
744
+ accountLabel: z.ZodString;
745
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
746
+ }, z.core.$strict>>>;
747
+ kind: z.ZodLiteral<"ready">;
748
+ }, z.core.$strict>, z.ZodObject<{
749
+ kind: z.ZodLiteral<"authorization-required">;
750
+ }, z.core.$strict>, z.ZodObject<{
751
+ kind: z.ZodLiteral<"reauthorization-required">;
752
+ }, z.core.$strict>, z.ZodObject<{
753
+ kind: z.ZodLiteral<"scope-insufficient">;
754
+ }, z.core.$strict>, z.ZodObject<{
755
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
756
+ }, z.core.$strict>], "kind">>;
757
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
758
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
759
+ kind: z.ZodLiteral<"oauth-account-profile">;
760
+ minimumPermission: z.ZodEnum<{
761
+ read: "read";
762
+ write: "write";
763
+ }>;
764
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
765
+ }, z.core.$strict>, z.ZodObject<{
766
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
767
+ describeBeforeCall: z.ZodLiteral<true>;
768
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
769
+ }, z.core.$strict>], "kind">>;
509
770
  toolRef: z.ZodString;
510
771
  }, z.core.$strict>>;
511
772
  }, z.core.$strict>;
@@ -608,7 +869,16 @@ declare const PortalBackendSearchItemResultSchema: z.ZodDiscriminatedUnion<[z.Zo
608
869
  }, z.core.$strict>>;
609
870
  value: z.ZodObject<{
610
871
  tools: z.ZodArray<z.ZodObject<{
872
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
873
+ kind: z.ZodLiteral<"without-approval">;
874
+ }, z.core.$strict>, z.ZodObject<{
875
+ kind: z.ZodLiteral<"requires-approval">;
876
+ }, z.core.$strict>, z.ZodObject<{
877
+ describeBeforeCall: z.ZodLiteral<true>;
878
+ kind: z.ZodLiteral<"invocation-dependent">;
879
+ }, z.core.$strict>], "kind">>;
611
880
  description: z.ZodOptional<z.ZodString>;
881
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
612
882
  input: z.ZodObject<{
613
883
  optional: z.ZodArray<z.ZodString>;
614
884
  propertyCount: z.ZodNumber;
@@ -635,6 +905,34 @@ declare const PortalBackendSearchItemResultSchema: z.ZodDiscriminatedUnion<[z.Zo
635
905
  }, z.core.$strict>>;
636
906
  title: z.ZodOptional<z.ZodString>;
637
907
  name: z.ZodString;
908
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
909
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
910
+ accountLabel: z.ZodString;
911
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
912
+ }, z.core.$strict>>>;
913
+ kind: z.ZodLiteral<"ready">;
914
+ }, z.core.$strict>, z.ZodObject<{
915
+ kind: z.ZodLiteral<"authorization-required">;
916
+ }, z.core.$strict>, z.ZodObject<{
917
+ kind: z.ZodLiteral<"reauthorization-required">;
918
+ }, z.core.$strict>, z.ZodObject<{
919
+ kind: z.ZodLiteral<"scope-insufficient">;
920
+ }, z.core.$strict>, z.ZodObject<{
921
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
922
+ }, z.core.$strict>], "kind">>;
923
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
924
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
925
+ kind: z.ZodLiteral<"oauth-account-profile">;
926
+ minimumPermission: z.ZodEnum<{
927
+ read: "read";
928
+ write: "write";
929
+ }>;
930
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
931
+ }, z.core.$strict>, z.ZodObject<{
932
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
933
+ describeBeforeCall: z.ZodLiteral<true>;
934
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
935
+ }, z.core.$strict>], "kind">>;
638
936
  toolRef: z.ZodString;
639
937
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
640
938
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -742,6 +1040,15 @@ declare const PortalBackendDescribeItemResultSchema: z.ZodDiscriminatedUnion<[z.
742
1040
  value: z.ZodObject<{
743
1041
  tools: z.ZodArray<z.ZodObject<{
744
1042
  annotations: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1043
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1044
+ kind: z.ZodLiteral<"without-approval">;
1045
+ }, z.core.$strict>, z.ZodObject<{
1046
+ kind: z.ZodLiteral<"requires-approval">;
1047
+ }, z.core.$strict>, z.ZodObject<{
1048
+ describeBeforeCall: z.ZodLiteral<true>;
1049
+ kind: z.ZodLiteral<"invocation-dependent">;
1050
+ }, z.core.$strict>], "kind">>;
1051
+ description: z.ZodOptional<z.ZodString>;
745
1052
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
746
1053
  namespace: z.ZodString;
747
1054
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -753,7 +1060,36 @@ declare const PortalBackendDescribeItemResultSchema: z.ZodDiscriminatedUnion<[z.
753
1060
  describe_before_call: "describe_before_call";
754
1061
  }>;
755
1062
  }, z.core.$strict>>;
1063
+ title: z.ZodOptional<z.ZodString>;
756
1064
  name: z.ZodString;
1065
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1066
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
1067
+ accountLabel: z.ZodString;
1068
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
1069
+ }, z.core.$strict>>>;
1070
+ kind: z.ZodLiteral<"ready">;
1071
+ }, z.core.$strict>, z.ZodObject<{
1072
+ kind: z.ZodLiteral<"authorization-required">;
1073
+ }, z.core.$strict>, z.ZodObject<{
1074
+ kind: z.ZodLiteral<"reauthorization-required">;
1075
+ }, z.core.$strict>, z.ZodObject<{
1076
+ kind: z.ZodLiteral<"scope-insufficient">;
1077
+ }, z.core.$strict>, z.ZodObject<{
1078
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
1079
+ }, z.core.$strict>], "kind">>;
1080
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1081
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
1082
+ kind: z.ZodLiteral<"oauth-account-profile">;
1083
+ minimumPermission: z.ZodEnum<{
1084
+ read: "read";
1085
+ write: "write";
1086
+ }>;
1087
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
1088
+ }, z.core.$strict>, z.ZodObject<{
1089
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
1090
+ describeBeforeCall: z.ZodLiteral<true>;
1091
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
1092
+ }, z.core.$strict>], "kind">>;
757
1093
  toolRef: z.ZodString;
758
1094
  typescriptHelper: z.ZodOptional<z.ZodString>;
759
1095
  zod: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -883,7 +1219,16 @@ declare const PortalBackendListResultSchema: z.ZodObject<{
883
1219
  namespaces: z.ZodArray<z.ZodString>;
884
1220
  nextCursor: z.ZodOptional<z.ZodString>;
885
1221
  tools: z.ZodArray<z.ZodObject<{
1222
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1223
+ kind: z.ZodLiteral<"without-approval">;
1224
+ }, z.core.$strict>, z.ZodObject<{
1225
+ kind: z.ZodLiteral<"requires-approval">;
1226
+ }, z.core.$strict>, z.ZodObject<{
1227
+ describeBeforeCall: z.ZodLiteral<true>;
1228
+ kind: z.ZodLiteral<"invocation-dependent">;
1229
+ }, z.core.$strict>], "kind">>;
886
1230
  description: z.ZodOptional<z.ZodString>;
1231
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
887
1232
  input: z.ZodObject<{
888
1233
  optional: z.ZodArray<z.ZodString>;
889
1234
  propertyCount: z.ZodNumber;
@@ -910,6 +1255,34 @@ declare const PortalBackendListResultSchema: z.ZodObject<{
910
1255
  }, z.core.$strict>>;
911
1256
  title: z.ZodOptional<z.ZodString>;
912
1257
  name: z.ZodString;
1258
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1259
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
1260
+ accountLabel: z.ZodString;
1261
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
1262
+ }, z.core.$strict>>>;
1263
+ kind: z.ZodLiteral<"ready">;
1264
+ }, z.core.$strict>, z.ZodObject<{
1265
+ kind: z.ZodLiteral<"authorization-required">;
1266
+ }, z.core.$strict>, z.ZodObject<{
1267
+ kind: z.ZodLiteral<"reauthorization-required">;
1268
+ }, z.core.$strict>, z.ZodObject<{
1269
+ kind: z.ZodLiteral<"scope-insufficient">;
1270
+ }, z.core.$strict>, z.ZodObject<{
1271
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
1272
+ }, z.core.$strict>], "kind">>;
1273
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1274
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
1275
+ kind: z.ZodLiteral<"oauth-account-profile">;
1276
+ minimumPermission: z.ZodEnum<{
1277
+ read: "read";
1278
+ write: "write";
1279
+ }>;
1280
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
1281
+ }, z.core.$strict>, z.ZodObject<{
1282
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
1283
+ describeBeforeCall: z.ZodLiteral<true>;
1284
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
1285
+ }, z.core.$strict>], "kind">>;
913
1286
  toolRef: z.ZodString;
914
1287
  }, z.core.$strict>>;
915
1288
  }, z.core.$strict>;
@@ -1038,7 +1411,16 @@ declare const PortalBackendSearchResultSchema: z.ZodObject<{
1038
1411
  }, z.core.$strict>>;
1039
1412
  value: z.ZodObject<{
1040
1413
  tools: z.ZodArray<z.ZodObject<{
1414
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1415
+ kind: z.ZodLiteral<"without-approval">;
1416
+ }, z.core.$strict>, z.ZodObject<{
1417
+ kind: z.ZodLiteral<"requires-approval">;
1418
+ }, z.core.$strict>, z.ZodObject<{
1419
+ describeBeforeCall: z.ZodLiteral<true>;
1420
+ kind: z.ZodLiteral<"invocation-dependent">;
1421
+ }, z.core.$strict>], "kind">>;
1041
1422
  description: z.ZodOptional<z.ZodString>;
1423
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
1042
1424
  input: z.ZodObject<{
1043
1425
  optional: z.ZodArray<z.ZodString>;
1044
1426
  propertyCount: z.ZodNumber;
@@ -1065,6 +1447,34 @@ declare const PortalBackendSearchResultSchema: z.ZodObject<{
1065
1447
  }, z.core.$strict>>;
1066
1448
  title: z.ZodOptional<z.ZodString>;
1067
1449
  name: z.ZodString;
1450
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1451
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
1452
+ accountLabel: z.ZodString;
1453
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
1454
+ }, z.core.$strict>>>;
1455
+ kind: z.ZodLiteral<"ready">;
1456
+ }, z.core.$strict>, z.ZodObject<{
1457
+ kind: z.ZodLiteral<"authorization-required">;
1458
+ }, z.core.$strict>, z.ZodObject<{
1459
+ kind: z.ZodLiteral<"reauthorization-required">;
1460
+ }, z.core.$strict>, z.ZodObject<{
1461
+ kind: z.ZodLiteral<"scope-insufficient">;
1462
+ }, z.core.$strict>, z.ZodObject<{
1463
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
1464
+ }, z.core.$strict>], "kind">>;
1465
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1466
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
1467
+ kind: z.ZodLiteral<"oauth-account-profile">;
1468
+ minimumPermission: z.ZodEnum<{
1469
+ read: "read";
1470
+ write: "write";
1471
+ }>;
1472
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
1473
+ }, z.core.$strict>, z.ZodObject<{
1474
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
1475
+ describeBeforeCall: z.ZodLiteral<true>;
1476
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
1477
+ }, z.core.$strict>], "kind">>;
1068
1478
  toolRef: z.ZodString;
1069
1479
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1070
1480
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -1198,6 +1608,15 @@ declare const PortalBackendDescribeResultSchema: z.ZodObject<{
1198
1608
  value: z.ZodObject<{
1199
1609
  tools: z.ZodArray<z.ZodObject<{
1200
1610
  annotations: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1611
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1612
+ kind: z.ZodLiteral<"without-approval">;
1613
+ }, z.core.$strict>, z.ZodObject<{
1614
+ kind: z.ZodLiteral<"requires-approval">;
1615
+ }, z.core.$strict>, z.ZodObject<{
1616
+ describeBeforeCall: z.ZodLiteral<true>;
1617
+ kind: z.ZodLiteral<"invocation-dependent">;
1618
+ }, z.core.$strict>], "kind">>;
1619
+ description: z.ZodOptional<z.ZodString>;
1201
1620
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1202
1621
  namespace: z.ZodString;
1203
1622
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -1209,7 +1628,36 @@ declare const PortalBackendDescribeResultSchema: z.ZodObject<{
1209
1628
  describe_before_call: "describe_before_call";
1210
1629
  }>;
1211
1630
  }, z.core.$strict>>;
1631
+ title: z.ZodOptional<z.ZodString>;
1212
1632
  name: z.ZodString;
1633
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1634
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
1635
+ accountLabel: z.ZodString;
1636
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
1637
+ }, z.core.$strict>>>;
1638
+ kind: z.ZodLiteral<"ready">;
1639
+ }, z.core.$strict>, z.ZodObject<{
1640
+ kind: z.ZodLiteral<"authorization-required">;
1641
+ }, z.core.$strict>, z.ZodObject<{
1642
+ kind: z.ZodLiteral<"reauthorization-required">;
1643
+ }, z.core.$strict>, z.ZodObject<{
1644
+ kind: z.ZodLiteral<"scope-insufficient">;
1645
+ }, z.core.$strict>, z.ZodObject<{
1646
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
1647
+ }, z.core.$strict>], "kind">>;
1648
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1649
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
1650
+ kind: z.ZodLiteral<"oauth-account-profile">;
1651
+ minimumPermission: z.ZodEnum<{
1652
+ read: "read";
1653
+ write: "write";
1654
+ }>;
1655
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
1656
+ }, z.core.$strict>, z.ZodObject<{
1657
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
1658
+ describeBeforeCall: z.ZodLiteral<true>;
1659
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
1660
+ }, z.core.$strict>], "kind">>;
1213
1661
  toolRef: z.ZodString;
1214
1662
  typescriptHelper: z.ZodOptional<z.ZodString>;
1215
1663
  zod: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -1319,7 +1767,16 @@ declare const PortalListItemResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1319
1767
  namespaces: z.ZodArray<z.ZodString>;
1320
1768
  nextCursor: z.ZodOptional<z.ZodString>;
1321
1769
  tools: z.ZodArray<z.ZodObject<{
1770
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1771
+ kind: z.ZodLiteral<"without-approval">;
1772
+ }, z.core.$strict>, z.ZodObject<{
1773
+ kind: z.ZodLiteral<"requires-approval">;
1774
+ }, z.core.$strict>, z.ZodObject<{
1775
+ describeBeforeCall: z.ZodLiteral<true>;
1776
+ kind: z.ZodLiteral<"invocation-dependent">;
1777
+ }, z.core.$strict>], "kind">>;
1322
1778
  description: z.ZodOptional<z.ZodString>;
1779
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
1323
1780
  input: z.ZodObject<{
1324
1781
  optional: z.ZodArray<z.ZodString>;
1325
1782
  propertyCount: z.ZodNumber;
@@ -1346,6 +1803,34 @@ declare const PortalListItemResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
1346
1803
  }, z.core.$strict>>;
1347
1804
  title: z.ZodOptional<z.ZodString>;
1348
1805
  name: z.ZodString;
1806
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1807
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
1808
+ accountLabel: z.ZodString;
1809
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
1810
+ }, z.core.$strict>>>;
1811
+ kind: z.ZodLiteral<"ready">;
1812
+ }, z.core.$strict>, z.ZodObject<{
1813
+ kind: z.ZodLiteral<"authorization-required">;
1814
+ }, z.core.$strict>, z.ZodObject<{
1815
+ kind: z.ZodLiteral<"reauthorization-required">;
1816
+ }, z.core.$strict>, z.ZodObject<{
1817
+ kind: z.ZodLiteral<"scope-insufficient">;
1818
+ }, z.core.$strict>, z.ZodObject<{
1819
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
1820
+ }, z.core.$strict>], "kind">>;
1821
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1822
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
1823
+ kind: z.ZodLiteral<"oauth-account-profile">;
1824
+ minimumPermission: z.ZodEnum<{
1825
+ read: "read";
1826
+ write: "write";
1827
+ }>;
1828
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
1829
+ }, z.core.$strict>, z.ZodObject<{
1830
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
1831
+ describeBeforeCall: z.ZodLiteral<true>;
1832
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
1833
+ }, z.core.$strict>], "kind">>;
1349
1834
  toolRef: z.ZodString;
1350
1835
  }, z.core.$strict>>;
1351
1836
  namespaceDiscovery: z.ZodArray<z.ZodObject<{
@@ -1452,7 +1937,16 @@ declare const PortalSearchItemResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject
1452
1937
  }, z.core.$strict>>;
1453
1938
  value: z.ZodObject<{
1454
1939
  tools: z.ZodArray<z.ZodObject<{
1940
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1941
+ kind: z.ZodLiteral<"without-approval">;
1942
+ }, z.core.$strict>, z.ZodObject<{
1943
+ kind: z.ZodLiteral<"requires-approval">;
1944
+ }, z.core.$strict>, z.ZodObject<{
1945
+ describeBeforeCall: z.ZodLiteral<true>;
1946
+ kind: z.ZodLiteral<"invocation-dependent">;
1947
+ }, z.core.$strict>], "kind">>;
1455
1948
  description: z.ZodOptional<z.ZodString>;
1949
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
1456
1950
  input: z.ZodObject<{
1457
1951
  optional: z.ZodArray<z.ZodString>;
1458
1952
  propertyCount: z.ZodNumber;
@@ -1479,6 +1973,34 @@ declare const PortalSearchItemResultSchema: z.ZodDiscriminatedUnion<[z.ZodObject
1479
1973
  }, z.core.$strict>>;
1480
1974
  title: z.ZodOptional<z.ZodString>;
1481
1975
  name: z.ZodString;
1976
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1977
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
1978
+ accountLabel: z.ZodString;
1979
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
1980
+ }, z.core.$strict>>>;
1981
+ kind: z.ZodLiteral<"ready">;
1982
+ }, z.core.$strict>, z.ZodObject<{
1983
+ kind: z.ZodLiteral<"authorization-required">;
1984
+ }, z.core.$strict>, z.ZodObject<{
1985
+ kind: z.ZodLiteral<"reauthorization-required">;
1986
+ }, z.core.$strict>, z.ZodObject<{
1987
+ kind: z.ZodLiteral<"scope-insufficient">;
1988
+ }, z.core.$strict>, z.ZodObject<{
1989
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
1990
+ }, z.core.$strict>], "kind">>;
1991
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
1992
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
1993
+ kind: z.ZodLiteral<"oauth-account-profile">;
1994
+ minimumPermission: z.ZodEnum<{
1995
+ read: "read";
1996
+ write: "write";
1997
+ }>;
1998
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
1999
+ }, z.core.$strict>, z.ZodObject<{
2000
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
2001
+ describeBeforeCall: z.ZodLiteral<true>;
2002
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
2003
+ }, z.core.$strict>], "kind">>;
1482
2004
  toolRef: z.ZodString;
1483
2005
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1484
2006
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -1590,6 +2112,15 @@ declare const PortalDescribeItemResultSchema: z.ZodDiscriminatedUnion<[z.ZodObje
1590
2112
  value: z.ZodObject<{
1591
2113
  tools: z.ZodArray<z.ZodObject<{
1592
2114
  annotations: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
2115
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2116
+ kind: z.ZodLiteral<"without-approval">;
2117
+ }, z.core.$strict>, z.ZodObject<{
2118
+ kind: z.ZodLiteral<"requires-approval">;
2119
+ }, z.core.$strict>, z.ZodObject<{
2120
+ describeBeforeCall: z.ZodLiteral<true>;
2121
+ kind: z.ZodLiteral<"invocation-dependent">;
2122
+ }, z.core.$strict>], "kind">>;
2123
+ description: z.ZodOptional<z.ZodString>;
1593
2124
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
1594
2125
  namespace: z.ZodString;
1595
2126
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -1601,7 +2132,36 @@ declare const PortalDescribeItemResultSchema: z.ZodDiscriminatedUnion<[z.ZodObje
1601
2132
  describe_before_call: "describe_before_call";
1602
2133
  }>;
1603
2134
  }, z.core.$strict>>;
2135
+ title: z.ZodOptional<z.ZodString>;
1604
2136
  name: z.ZodString;
2137
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2138
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
2139
+ accountLabel: z.ZodString;
2140
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
2141
+ }, z.core.$strict>>>;
2142
+ kind: z.ZodLiteral<"ready">;
2143
+ }, z.core.$strict>, z.ZodObject<{
2144
+ kind: z.ZodLiteral<"authorization-required">;
2145
+ }, z.core.$strict>, z.ZodObject<{
2146
+ kind: z.ZodLiteral<"reauthorization-required">;
2147
+ }, z.core.$strict>, z.ZodObject<{
2148
+ kind: z.ZodLiteral<"scope-insufficient">;
2149
+ }, z.core.$strict>, z.ZodObject<{
2150
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
2151
+ }, z.core.$strict>], "kind">>;
2152
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2153
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
2154
+ kind: z.ZodLiteral<"oauth-account-profile">;
2155
+ minimumPermission: z.ZodEnum<{
2156
+ read: "read";
2157
+ write: "write";
2158
+ }>;
2159
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
2160
+ }, z.core.$strict>, z.ZodObject<{
2161
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
2162
+ describeBeforeCall: z.ZodLiteral<true>;
2163
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
2164
+ }, z.core.$strict>], "kind">>;
1605
2165
  toolRef: z.ZodString;
1606
2166
  typescriptHelper: z.ZodOptional<z.ZodString>;
1607
2167
  zod: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -1939,7 +2499,16 @@ declare const PortalListResultSchema: z.ZodObject<{
1939
2499
  namespaces: z.ZodArray<z.ZodString>;
1940
2500
  nextCursor: z.ZodOptional<z.ZodString>;
1941
2501
  tools: z.ZodArray<z.ZodObject<{
2502
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2503
+ kind: z.ZodLiteral<"without-approval">;
2504
+ }, z.core.$strict>, z.ZodObject<{
2505
+ kind: z.ZodLiteral<"requires-approval">;
2506
+ }, z.core.$strict>, z.ZodObject<{
2507
+ describeBeforeCall: z.ZodLiteral<true>;
2508
+ kind: z.ZodLiteral<"invocation-dependent">;
2509
+ }, z.core.$strict>], "kind">>;
1942
2510
  description: z.ZodOptional<z.ZodString>;
2511
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
1943
2512
  input: z.ZodObject<{
1944
2513
  optional: z.ZodArray<z.ZodString>;
1945
2514
  propertyCount: z.ZodNumber;
@@ -1966,6 +2535,34 @@ declare const PortalListResultSchema: z.ZodObject<{
1966
2535
  }, z.core.$strict>>;
1967
2536
  title: z.ZodOptional<z.ZodString>;
1968
2537
  name: z.ZodString;
2538
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2539
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
2540
+ accountLabel: z.ZodString;
2541
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
2542
+ }, z.core.$strict>>>;
2543
+ kind: z.ZodLiteral<"ready">;
2544
+ }, z.core.$strict>, z.ZodObject<{
2545
+ kind: z.ZodLiteral<"authorization-required">;
2546
+ }, z.core.$strict>, z.ZodObject<{
2547
+ kind: z.ZodLiteral<"reauthorization-required">;
2548
+ }, z.core.$strict>, z.ZodObject<{
2549
+ kind: z.ZodLiteral<"scope-insufficient">;
2550
+ }, z.core.$strict>, z.ZodObject<{
2551
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
2552
+ }, z.core.$strict>], "kind">>;
2553
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2554
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
2555
+ kind: z.ZodLiteral<"oauth-account-profile">;
2556
+ minimumPermission: z.ZodEnum<{
2557
+ read: "read";
2558
+ write: "write";
2559
+ }>;
2560
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
2561
+ }, z.core.$strict>, z.ZodObject<{
2562
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
2563
+ describeBeforeCall: z.ZodLiteral<true>;
2564
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
2565
+ }, z.core.$strict>], "kind">>;
1969
2566
  toolRef: z.ZodString;
1970
2567
  }, z.core.$strict>>;
1971
2568
  namespaceDiscovery: z.ZodArray<z.ZodObject<{
@@ -2098,7 +2695,16 @@ declare const PortalSearchResultSchema: z.ZodObject<{
2098
2695
  }, z.core.$strict>>;
2099
2696
  value: z.ZodObject<{
2100
2697
  tools: z.ZodArray<z.ZodObject<{
2698
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2699
+ kind: z.ZodLiteral<"without-approval">;
2700
+ }, z.core.$strict>, z.ZodObject<{
2701
+ kind: z.ZodLiteral<"requires-approval">;
2702
+ }, z.core.$strict>, z.ZodObject<{
2703
+ describeBeforeCall: z.ZodLiteral<true>;
2704
+ kind: z.ZodLiteral<"invocation-dependent">;
2705
+ }, z.core.$strict>], "kind">>;
2101
2706
  description: z.ZodOptional<z.ZodString>;
2707
+ descriptionTruncated: z.ZodOptional<z.ZodBoolean>;
2102
2708
  input: z.ZodObject<{
2103
2709
  optional: z.ZodArray<z.ZodString>;
2104
2710
  propertyCount: z.ZodNumber;
@@ -2125,6 +2731,34 @@ declare const PortalSearchResultSchema: z.ZodObject<{
2125
2731
  }, z.core.$strict>>;
2126
2732
  title: z.ZodOptional<z.ZodString>;
2127
2733
  name: z.ZodString;
2734
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2735
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
2736
+ accountLabel: z.ZodString;
2737
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
2738
+ }, z.core.$strict>>>;
2739
+ kind: z.ZodLiteral<"ready">;
2740
+ }, z.core.$strict>, z.ZodObject<{
2741
+ kind: z.ZodLiteral<"authorization-required">;
2742
+ }, z.core.$strict>, z.ZodObject<{
2743
+ kind: z.ZodLiteral<"reauthorization-required">;
2744
+ }, z.core.$strict>, z.ZodObject<{
2745
+ kind: z.ZodLiteral<"scope-insufficient">;
2746
+ }, z.core.$strict>, z.ZodObject<{
2747
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
2748
+ }, z.core.$strict>], "kind">>;
2749
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2750
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
2751
+ kind: z.ZodLiteral<"oauth-account-profile">;
2752
+ minimumPermission: z.ZodEnum<{
2753
+ read: "read";
2754
+ write: "write";
2755
+ }>;
2756
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
2757
+ }, z.core.$strict>, z.ZodObject<{
2758
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
2759
+ describeBeforeCall: z.ZodLiteral<true>;
2760
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
2761
+ }, z.core.$strict>], "kind">>;
2128
2762
  toolRef: z.ZodString;
2129
2763
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
2130
2764
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -2262,6 +2896,15 @@ declare const PortalDescribeResultSchema: z.ZodObject<{
2262
2896
  value: z.ZodObject<{
2263
2897
  tools: z.ZodArray<z.ZodObject<{
2264
2898
  annotations: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
2899
+ callDisposition: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2900
+ kind: z.ZodLiteral<"without-approval">;
2901
+ }, z.core.$strict>, z.ZodObject<{
2902
+ kind: z.ZodLiteral<"requires-approval">;
2903
+ }, z.core.$strict>, z.ZodObject<{
2904
+ describeBeforeCall: z.ZodLiteral<true>;
2905
+ kind: z.ZodLiteral<"invocation-dependent">;
2906
+ }, z.core.$strict>], "kind">>;
2907
+ description: z.ZodOptional<z.ZodString>;
2265
2908
  inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
2266
2909
  namespace: z.ZodString;
2267
2910
  outputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -2273,7 +2916,36 @@ declare const PortalDescribeResultSchema: z.ZodObject<{
2273
2916
  describe_before_call: "describe_before_call";
2274
2917
  }>;
2275
2918
  }, z.core.$strict>>;
2919
+ title: z.ZodOptional<z.ZodString>;
2276
2920
  name: z.ZodString;
2921
+ oauthAvailability: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2922
+ accountProfiles: z.ZodReadonly<z.ZodArray<z.ZodObject<{
2923
+ accountLabel: z.ZodString;
2924
+ accountProfileId: z.core.$ZodBranded<z.ZodString, "OAuthAccountProfileId", "out">;
2925
+ }, z.core.$strict>>>;
2926
+ kind: z.ZodLiteral<"ready">;
2927
+ }, z.core.$strict>, z.ZodObject<{
2928
+ kind: z.ZodLiteral<"authorization-required">;
2929
+ }, z.core.$strict>, z.ZodObject<{
2930
+ kind: z.ZodLiteral<"reauthorization-required">;
2931
+ }, z.core.$strict>, z.ZodObject<{
2932
+ kind: z.ZodLiteral<"scope-insufficient">;
2933
+ }, z.core.$strict>, z.ZodObject<{
2934
+ kind: z.ZodLiteral<"authorization-status-unavailable">;
2935
+ }, z.core.$strict>], "kind">>;
2936
+ oauthRequirement: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
2937
+ applicationId: z.core.$ZodBranded<z.ZodString, "OAuthApplicationId", "out">;
2938
+ kind: z.ZodLiteral<"oauth-account-profile">;
2939
+ minimumPermission: z.ZodEnum<{
2940
+ read: "read";
2941
+ write: "write";
2942
+ }>;
2943
+ serviceId: z.core.$ZodBranded<z.ZodString, "OAuthServiceId", "out">;
2944
+ }, z.core.$strict>, z.ZodObject<{
2945
+ accountProfileArgument: z.ZodLiteral<"accountProfile">;
2946
+ describeBeforeCall: z.ZodLiteral<true>;
2947
+ kind: z.ZodLiteral<"invocation-dependent-oauth-account-profile">;
2948
+ }, z.core.$strict>], "kind">>;
2277
2949
  toolRef: z.ZodString;
2278
2950
  typescriptHelper: z.ZodOptional<z.ZodString>;
2279
2951
  zod: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
@@ -2448,4 +3120,4 @@ declare const PortalGenericItemResultSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
2448
3120
  }, z.core.$strict>], "status">;
2449
3121
  //#endregion
2450
3122
  export { PortalSearchResultSchema as A, PortalListItemResultSchema as C, PortalSearchItemResultSchema as D, PortalListResultSchema as E, PortalCallRequestSchema as F, PortalBatchMaxItems as M, PortalCallItemRequestSchema as N, PortalSearchItemValueSchema as O, PortalCallRequest as P, PortalGenericItemResultSchema as S, PortalListResult as T, PortalCallResultSchema as _, PortalBackendDescribeResult as a, PortalDescribeResult as b, PortalBackendListItemValueSchema as c, PortalBackendSearchItemResultSchema as d, PortalBackendSearchItemValueSchema as f, PortalCallResult as g, PortalCallItemResultSchema as h, PortalBackendDescribeItemValueSchema as i, TruncationMetadataSchema as j, PortalSearchResult as k, PortalBackendListResult as l, PortalBackendSearchResultSchema as m, PortalApprovalRequiredCallItemResultSchema as n, PortalBackendDescribeResultSchema as o, PortalBackendSearchResult as p, PortalBackendDescribeItemResultSchema as r, PortalBackendListItemResultSchema as s, PortalApprovalChallengeSchema as t, PortalBackendListResultSchema as u, PortalDescribeItemResultSchema as v, PortalListItemValueSchema as w, PortalDescribeResultSchema as x, PortalDescribeItemValueSchema as y };
2451
- //# sourceMappingURL=portal-call-result-schema-DIg2ERl4.d.ts.map
3123
+ //# sourceMappingURL=portal-call-result-schema-Mv2Dv1HJ.d.ts.map