@treeseed/sdk 0.13.0-rc.53 → 0.13.0-rc.55

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 (43) hide show
  1. package/README.md +4 -0
  2. package/dist/agent-capacity/authority/agent-authority-presets.js +2 -1
  3. package/dist/agent-capacity/contracts/configuration/configuration.js +1 -1
  4. package/dist/agent-capacity/validation/agent-definition-schema.d.ts +240 -240
  5. package/dist/agent-capacity/validation/agent-lab-forensics-schema.d.ts +1 -1
  6. package/dist/capacity-provider/client.d.ts +18 -3
  7. package/dist/capacity-provider/client.js +6 -0
  8. package/dist/capacity-provider/contracts/governance.d.ts +28 -1
  9. package/dist/capacity-provider/index.d.ts +1 -0
  10. package/dist/capacity-provider/index.js +1 -0
  11. package/dist/capacity-provider/sandbox-contracts.d.ts +422 -0
  12. package/dist/capacity-provider/sandbox-contracts.js +71 -0
  13. package/dist/capacity-provider/validation.d.ts +2 -1
  14. package/dist/capacity-provider/validation.js +23 -0
  15. package/dist/content/validation/agent-operational-content-schemas.d.ts +76 -76
  16. package/dist/content/validation/auxiliary-content-schemas.d.ts +20 -20
  17. package/dist/content/validation/content-model-schemas.d.ts +570 -570
  18. package/dist/content/validation/portable-content-data.d.ts +61 -61
  19. package/dist/deployment/ai-mode.d.ts +4 -4
  20. package/dist/deployment/schemas.d.ts +418 -100
  21. package/dist/deployment/schemas.js +23 -1
  22. package/dist/development/schemas.d.ts +22 -22
  23. package/dist/operator-contracts/canonical-command-tree.js +63 -3
  24. package/dist/operator-contracts/catalog/communication-operations.d.ts +300 -33
  25. package/dist/operator-contracts/catalog/communication-operations.js +56 -2
  26. package/dist/operator-contracts/catalog/inbox-operations.d.ts +261 -0
  27. package/dist/operator-contracts/catalog/inbox-operations.js +36 -0
  28. package/dist/operator-contracts/communication/contracts.d.ts +1261 -71
  29. package/dist/operator-contracts/communication/contracts.js +99 -7
  30. package/dist/operator-contracts/control-plane-operations.d.ts +592 -66
  31. package/dist/operator-contracts/control-plane-operations.js +4 -1
  32. package/dist/operator-contracts/inbox/contracts.d.ts +1099 -0
  33. package/dist/operator-contracts/inbox/contracts.js +134 -0
  34. package/dist/operator-contracts/index.d.ts +1 -0
  35. package/dist/operator-contracts/index.js +1 -0
  36. package/dist/operator-contracts/mcp.js +1 -1
  37. package/dist/security/encrypted-envelope.d.ts +177 -0
  38. package/dist/security/encrypted-envelope.js +34 -0
  39. package/dist/security/envelope-codec.d.ts +38 -0
  40. package/dist/security/envelope-codec.js +96 -0
  41. package/dist/security/index.d.ts +2 -0
  42. package/dist/security/index.js +2 -0
  43. package/package.json +5 -1
@@ -707,8 +707,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
707
707
  agentSlug: z.ZodOptional<z.ZodString>;
708
708
  }, "strict", z.ZodTypeAny, {
709
709
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
710
- projectId?: string | undefined;
711
710
  teamId?: string | undefined;
711
+ projectId?: string | undefined;
712
712
  agentSlug?: string | undefined;
713
713
  requiredRoles?: string[] | undefined;
714
714
  allowedRoles?: string[] | undefined;
@@ -718,8 +718,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
718
718
  teamMemberId?: string | undefined;
719
719
  }, {
720
720
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
721
- projectId?: string | undefined;
722
721
  teamId?: string | undefined;
722
+ projectId?: string | undefined;
723
723
  agentSlug?: string | undefined;
724
724
  requiredRoles?: string[] | undefined;
725
725
  allowedRoles?: string[] | undefined;
@@ -731,8 +731,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
731
731
  }, "strict", z.ZodTypeAny, {
732
732
  defaultAnswerPolicy?: {
733
733
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
734
- projectId?: string | undefined;
735
734
  teamId?: string | undefined;
735
+ projectId?: string | undefined;
736
736
  agentSlug?: string | undefined;
737
737
  requiredRoles?: string[] | undefined;
738
738
  allowedRoles?: string[] | undefined;
@@ -745,8 +745,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
745
745
  }, {
746
746
  defaultAnswerPolicy?: {
747
747
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
748
- projectId?: string | undefined;
749
748
  teamId?: string | undefined;
749
+ projectId?: string | undefined;
750
750
  agentSlug?: string | undefined;
751
751
  requiredRoles?: string[] | undefined;
752
752
  allowedRoles?: string[] | undefined;
@@ -774,12 +774,12 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
774
774
  amount: z.ZodNumber;
775
775
  enforceable: z.ZodOptional<z.ZodBoolean>;
776
776
  }, "strict", z.ZodTypeAny, {
777
- amount: number;
778
777
  unit: string;
778
+ amount: number;
779
779
  enforceable?: boolean | undefined;
780
780
  }, {
781
- amount: number;
782
781
  unit: string;
782
+ amount: number;
783
783
  enforceable?: boolean | undefined;
784
784
  }>, "many">>;
785
785
  pricingGeneration: z.ZodOptional<z.ZodString>;
@@ -792,6 +792,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
792
792
  closeoutSeconds?: number | undefined;
793
793
  closeoutWarningSeconds?: number | undefined;
794
794
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
795
+ nativeLimits?: {
796
+ unit: string;
797
+ amount: number;
798
+ enforceable?: boolean | undefined;
799
+ }[] | undefined;
795
800
  maxRuntimeSeconds?: number | undefined;
796
801
  maxRetries?: number | undefined;
797
802
  verificationRequired?: boolean | undefined;
@@ -799,11 +804,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
799
804
  warningTokens?: number | undefined;
800
805
  maxCostAmount?: number | undefined;
801
806
  costCurrency?: string | undefined;
802
- nativeLimits?: {
803
- amount: number;
804
- unit: string;
805
- enforceable?: boolean | undefined;
806
- }[] | undefined;
807
807
  pricingGeneration?: string | undefined;
808
808
  allowedPaths?: string[] | undefined;
809
809
  forbiddenPaths?: string[] | undefined;
@@ -813,6 +813,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
813
813
  closeoutSeconds?: number | undefined;
814
814
  closeoutWarningSeconds?: number | undefined;
815
815
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
816
+ nativeLimits?: {
817
+ unit: string;
818
+ amount: number;
819
+ enforceable?: boolean | undefined;
820
+ }[] | undefined;
816
821
  maxRuntimeSeconds?: number | undefined;
817
822
  maxRetries?: number | undefined;
818
823
  verificationRequired?: boolean | undefined;
@@ -820,11 +825,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
820
825
  warningTokens?: number | undefined;
821
826
  maxCostAmount?: number | undefined;
822
827
  costCurrency?: string | undefined;
823
- nativeLimits?: {
824
- amount: number;
825
- unit: string;
826
- enforceable?: boolean | undefined;
827
- }[] | undefined;
828
828
  pricingGeneration?: string | undefined;
829
829
  allowedPaths?: string[] | undefined;
830
830
  forbiddenPaths?: string[] | undefined;
@@ -861,6 +861,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
861
861
  closeoutSeconds?: number | undefined;
862
862
  closeoutWarningSeconds?: number | undefined;
863
863
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
864
+ nativeLimits?: {
865
+ unit: string;
866
+ amount: number;
867
+ enforceable?: boolean | undefined;
868
+ }[] | undefined;
864
869
  maxRuntimeSeconds?: number | undefined;
865
870
  maxRetries?: number | undefined;
866
871
  verificationRequired?: boolean | undefined;
@@ -868,11 +873,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
868
873
  warningTokens?: number | undefined;
869
874
  maxCostAmount?: number | undefined;
870
875
  costCurrency?: string | undefined;
871
- nativeLimits?: {
872
- amount: number;
873
- unit: string;
874
- enforceable?: boolean | undefined;
875
- }[] | undefined;
876
876
  pricingGeneration?: string | undefined;
877
877
  allowedPaths?: string[] | undefined;
878
878
  forbiddenPaths?: string[] | undefined;
@@ -990,8 +990,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
990
990
  questionPolicy?: {
991
991
  defaultAnswerPolicy?: {
992
992
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
993
- projectId?: string | undefined;
994
993
  teamId?: string | undefined;
994
+ projectId?: string | undefined;
995
995
  agentSlug?: string | undefined;
996
996
  requiredRoles?: string[] | undefined;
997
997
  allowedRoles?: string[] | undefined;
@@ -1034,6 +1034,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
1034
1034
  closeoutSeconds?: number | undefined;
1035
1035
  closeoutWarningSeconds?: number | undefined;
1036
1036
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
1037
+ nativeLimits?: {
1038
+ unit: string;
1039
+ amount: number;
1040
+ enforceable?: boolean | undefined;
1041
+ }[] | undefined;
1037
1042
  maxRuntimeSeconds?: number | undefined;
1038
1043
  maxRetries?: number | undefined;
1039
1044
  verificationRequired?: boolean | undefined;
@@ -1041,11 +1046,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
1041
1046
  warningTokens?: number | undefined;
1042
1047
  maxCostAmount?: number | undefined;
1043
1048
  costCurrency?: string | undefined;
1044
- nativeLimits?: {
1045
- amount: number;
1046
- unit: string;
1047
- enforceable?: boolean | undefined;
1048
- }[] | undefined;
1049
1049
  pricingGeneration?: string | undefined;
1050
1050
  allowedPaths?: string[] | undefined;
1051
1051
  forbiddenPaths?: string[] | undefined;
@@ -1163,8 +1163,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
1163
1163
  questionPolicy?: {
1164
1164
  defaultAnswerPolicy?: {
1165
1165
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
1166
- projectId?: string | undefined;
1167
1166
  teamId?: string | undefined;
1167
+ projectId?: string | undefined;
1168
1168
  agentSlug?: string | undefined;
1169
1169
  requiredRoles?: string[] | undefined;
1170
1170
  allowedRoles?: string[] | undefined;
@@ -1207,6 +1207,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
1207
1207
  closeoutSeconds?: number | undefined;
1208
1208
  closeoutWarningSeconds?: number | undefined;
1209
1209
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
1210
+ nativeLimits?: {
1211
+ unit: string;
1212
+ amount: number;
1213
+ enforceable?: boolean | undefined;
1214
+ }[] | undefined;
1210
1215
  maxRuntimeSeconds?: number | undefined;
1211
1216
  maxRetries?: number | undefined;
1212
1217
  verificationRequired?: boolean | undefined;
@@ -1214,11 +1219,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
1214
1219
  warningTokens?: number | undefined;
1215
1220
  maxCostAmount?: number | undefined;
1216
1221
  costCurrency?: string | undefined;
1217
- nativeLimits?: {
1218
- amount: number;
1219
- unit: string;
1220
- enforceable?: boolean | undefined;
1221
- }[] | undefined;
1222
1222
  pricingGeneration?: string | undefined;
1223
1223
  allowedPaths?: string[] | undefined;
1224
1224
  forbiddenPaths?: string[] | undefined;
@@ -1336,8 +1336,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
1336
1336
  questionPolicy?: {
1337
1337
  defaultAnswerPolicy?: {
1338
1338
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
1339
- projectId?: string | undefined;
1340
1339
  teamId?: string | undefined;
1340
+ projectId?: string | undefined;
1341
1341
  agentSlug?: string | undefined;
1342
1342
  requiredRoles?: string[] | undefined;
1343
1343
  allowedRoles?: string[] | undefined;
@@ -1380,6 +1380,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
1380
1380
  closeoutSeconds?: number | undefined;
1381
1381
  closeoutWarningSeconds?: number | undefined;
1382
1382
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
1383
+ nativeLimits?: {
1384
+ unit: string;
1385
+ amount: number;
1386
+ enforceable?: boolean | undefined;
1387
+ }[] | undefined;
1383
1388
  maxRuntimeSeconds?: number | undefined;
1384
1389
  maxRetries?: number | undefined;
1385
1390
  verificationRequired?: boolean | undefined;
@@ -1387,11 +1392,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
1387
1392
  warningTokens?: number | undefined;
1388
1393
  maxCostAmount?: number | undefined;
1389
1394
  costCurrency?: string | undefined;
1390
- nativeLimits?: {
1391
- amount: number;
1392
- unit: string;
1393
- enforceable?: boolean | undefined;
1394
- }[] | undefined;
1395
1395
  pricingGeneration?: string | undefined;
1396
1396
  allowedPaths?: string[] | undefined;
1397
1397
  forbiddenPaths?: string[] | undefined;
@@ -1509,8 +1509,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
1509
1509
  questionPolicy?: {
1510
1510
  defaultAnswerPolicy?: {
1511
1511
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
1512
- projectId?: string | undefined;
1513
1512
  teamId?: string | undefined;
1513
+ projectId?: string | undefined;
1514
1514
  agentSlug?: string | undefined;
1515
1515
  requiredRoles?: string[] | undefined;
1516
1516
  allowedRoles?: string[] | undefined;
@@ -2229,8 +2229,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2229
2229
  agentSlug: z.ZodOptional<z.ZodString>;
2230
2230
  }, "strict", z.ZodTypeAny, {
2231
2231
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
2232
- projectId?: string | undefined;
2233
2232
  teamId?: string | undefined;
2233
+ projectId?: string | undefined;
2234
2234
  agentSlug?: string | undefined;
2235
2235
  requiredRoles?: string[] | undefined;
2236
2236
  allowedRoles?: string[] | undefined;
@@ -2240,8 +2240,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2240
2240
  teamMemberId?: string | undefined;
2241
2241
  }, {
2242
2242
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
2243
- projectId?: string | undefined;
2244
2243
  teamId?: string | undefined;
2244
+ projectId?: string | undefined;
2245
2245
  agentSlug?: string | undefined;
2246
2246
  requiredRoles?: string[] | undefined;
2247
2247
  allowedRoles?: string[] | undefined;
@@ -2253,8 +2253,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2253
2253
  }, "strict", z.ZodTypeAny, {
2254
2254
  defaultAnswerPolicy?: {
2255
2255
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
2256
- projectId?: string | undefined;
2257
2256
  teamId?: string | undefined;
2257
+ projectId?: string | undefined;
2258
2258
  agentSlug?: string | undefined;
2259
2259
  requiredRoles?: string[] | undefined;
2260
2260
  allowedRoles?: string[] | undefined;
@@ -2267,8 +2267,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2267
2267
  }, {
2268
2268
  defaultAnswerPolicy?: {
2269
2269
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
2270
- projectId?: string | undefined;
2271
2270
  teamId?: string | undefined;
2271
+ projectId?: string | undefined;
2272
2272
  agentSlug?: string | undefined;
2273
2273
  requiredRoles?: string[] | undefined;
2274
2274
  allowedRoles?: string[] | undefined;
@@ -2296,12 +2296,12 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2296
2296
  amount: z.ZodNumber;
2297
2297
  enforceable: z.ZodOptional<z.ZodBoolean>;
2298
2298
  }, "strict", z.ZodTypeAny, {
2299
- amount: number;
2300
2299
  unit: string;
2300
+ amount: number;
2301
2301
  enforceable?: boolean | undefined;
2302
2302
  }, {
2303
- amount: number;
2304
2303
  unit: string;
2304
+ amount: number;
2305
2305
  enforceable?: boolean | undefined;
2306
2306
  }>, "many">>;
2307
2307
  pricingGeneration: z.ZodOptional<z.ZodString>;
@@ -2314,6 +2314,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2314
2314
  closeoutSeconds?: number | undefined;
2315
2315
  closeoutWarningSeconds?: number | undefined;
2316
2316
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
2317
+ nativeLimits?: {
2318
+ unit: string;
2319
+ amount: number;
2320
+ enforceable?: boolean | undefined;
2321
+ }[] | undefined;
2317
2322
  maxRuntimeSeconds?: number | undefined;
2318
2323
  maxRetries?: number | undefined;
2319
2324
  verificationRequired?: boolean | undefined;
@@ -2321,11 +2326,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2321
2326
  warningTokens?: number | undefined;
2322
2327
  maxCostAmount?: number | undefined;
2323
2328
  costCurrency?: string | undefined;
2324
- nativeLimits?: {
2325
- amount: number;
2326
- unit: string;
2327
- enforceable?: boolean | undefined;
2328
- }[] | undefined;
2329
2329
  pricingGeneration?: string | undefined;
2330
2330
  allowedPaths?: string[] | undefined;
2331
2331
  forbiddenPaths?: string[] | undefined;
@@ -2335,6 +2335,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2335
2335
  closeoutSeconds?: number | undefined;
2336
2336
  closeoutWarningSeconds?: number | undefined;
2337
2337
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
2338
+ nativeLimits?: {
2339
+ unit: string;
2340
+ amount: number;
2341
+ enforceable?: boolean | undefined;
2342
+ }[] | undefined;
2338
2343
  maxRuntimeSeconds?: number | undefined;
2339
2344
  maxRetries?: number | undefined;
2340
2345
  verificationRequired?: boolean | undefined;
@@ -2342,11 +2347,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2342
2347
  warningTokens?: number | undefined;
2343
2348
  maxCostAmount?: number | undefined;
2344
2349
  costCurrency?: string | undefined;
2345
- nativeLimits?: {
2346
- amount: number;
2347
- unit: string;
2348
- enforceable?: boolean | undefined;
2349
- }[] | undefined;
2350
2350
  pricingGeneration?: string | undefined;
2351
2351
  allowedPaths?: string[] | undefined;
2352
2352
  forbiddenPaths?: string[] | undefined;
@@ -2383,6 +2383,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2383
2383
  closeoutSeconds?: number | undefined;
2384
2384
  closeoutWarningSeconds?: number | undefined;
2385
2385
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
2386
+ nativeLimits?: {
2387
+ unit: string;
2388
+ amount: number;
2389
+ enforceable?: boolean | undefined;
2390
+ }[] | undefined;
2386
2391
  maxRuntimeSeconds?: number | undefined;
2387
2392
  maxRetries?: number | undefined;
2388
2393
  verificationRequired?: boolean | undefined;
@@ -2390,11 +2395,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2390
2395
  warningTokens?: number | undefined;
2391
2396
  maxCostAmount?: number | undefined;
2392
2397
  costCurrency?: string | undefined;
2393
- nativeLimits?: {
2394
- amount: number;
2395
- unit: string;
2396
- enforceable?: boolean | undefined;
2397
- }[] | undefined;
2398
2398
  pricingGeneration?: string | undefined;
2399
2399
  allowedPaths?: string[] | undefined;
2400
2400
  forbiddenPaths?: string[] | undefined;
@@ -2512,8 +2512,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2512
2512
  questionPolicy?: {
2513
2513
  defaultAnswerPolicy?: {
2514
2514
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
2515
- projectId?: string | undefined;
2516
2515
  teamId?: string | undefined;
2516
+ projectId?: string | undefined;
2517
2517
  agentSlug?: string | undefined;
2518
2518
  requiredRoles?: string[] | undefined;
2519
2519
  allowedRoles?: string[] | undefined;
@@ -2556,6 +2556,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2556
2556
  closeoutSeconds?: number | undefined;
2557
2557
  closeoutWarningSeconds?: number | undefined;
2558
2558
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
2559
+ nativeLimits?: {
2560
+ unit: string;
2561
+ amount: number;
2562
+ enforceable?: boolean | undefined;
2563
+ }[] | undefined;
2559
2564
  maxRuntimeSeconds?: number | undefined;
2560
2565
  maxRetries?: number | undefined;
2561
2566
  verificationRequired?: boolean | undefined;
@@ -2563,11 +2568,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2563
2568
  warningTokens?: number | undefined;
2564
2569
  maxCostAmount?: number | undefined;
2565
2570
  costCurrency?: string | undefined;
2566
- nativeLimits?: {
2567
- amount: number;
2568
- unit: string;
2569
- enforceable?: boolean | undefined;
2570
- }[] | undefined;
2571
2571
  pricingGeneration?: string | undefined;
2572
2572
  allowedPaths?: string[] | undefined;
2573
2573
  forbiddenPaths?: string[] | undefined;
@@ -2685,8 +2685,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2685
2685
  questionPolicy?: {
2686
2686
  defaultAnswerPolicy?: {
2687
2687
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
2688
- projectId?: string | undefined;
2689
2688
  teamId?: string | undefined;
2689
+ projectId?: string | undefined;
2690
2690
  agentSlug?: string | undefined;
2691
2691
  requiredRoles?: string[] | undefined;
2692
2692
  allowedRoles?: string[] | undefined;
@@ -2729,6 +2729,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2729
2729
  closeoutSeconds?: number | undefined;
2730
2730
  closeoutWarningSeconds?: number | undefined;
2731
2731
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
2732
+ nativeLimits?: {
2733
+ unit: string;
2734
+ amount: number;
2735
+ enforceable?: boolean | undefined;
2736
+ }[] | undefined;
2732
2737
  maxRuntimeSeconds?: number | undefined;
2733
2738
  maxRetries?: number | undefined;
2734
2739
  verificationRequired?: boolean | undefined;
@@ -2736,11 +2741,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2736
2741
  warningTokens?: number | undefined;
2737
2742
  maxCostAmount?: number | undefined;
2738
2743
  costCurrency?: string | undefined;
2739
- nativeLimits?: {
2740
- amount: number;
2741
- unit: string;
2742
- enforceable?: boolean | undefined;
2743
- }[] | undefined;
2744
2744
  pricingGeneration?: string | undefined;
2745
2745
  allowedPaths?: string[] | undefined;
2746
2746
  forbiddenPaths?: string[] | undefined;
@@ -2858,8 +2858,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2858
2858
  questionPolicy?: {
2859
2859
  defaultAnswerPolicy?: {
2860
2860
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
2861
- projectId?: string | undefined;
2862
2861
  teamId?: string | undefined;
2862
+ projectId?: string | undefined;
2863
2863
  agentSlug?: string | undefined;
2864
2864
  requiredRoles?: string[] | undefined;
2865
2865
  allowedRoles?: string[] | undefined;
@@ -2902,6 +2902,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2902
2902
  closeoutSeconds?: number | undefined;
2903
2903
  closeoutWarningSeconds?: number | undefined;
2904
2904
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
2905
+ nativeLimits?: {
2906
+ unit: string;
2907
+ amount: number;
2908
+ enforceable?: boolean | undefined;
2909
+ }[] | undefined;
2905
2910
  maxRuntimeSeconds?: number | undefined;
2906
2911
  maxRetries?: number | undefined;
2907
2912
  verificationRequired?: boolean | undefined;
@@ -2909,11 +2914,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
2909
2914
  warningTokens?: number | undefined;
2910
2915
  maxCostAmount?: number | undefined;
2911
2916
  costCurrency?: string | undefined;
2912
- nativeLimits?: {
2913
- amount: number;
2914
- unit: string;
2915
- enforceable?: boolean | undefined;
2916
- }[] | undefined;
2917
2917
  pricingGeneration?: string | undefined;
2918
2918
  allowedPaths?: string[] | undefined;
2919
2919
  forbiddenPaths?: string[] | undefined;
@@ -3031,8 +3031,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3031
3031
  questionPolicy?: {
3032
3032
  defaultAnswerPolicy?: {
3033
3033
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
3034
- projectId?: string | undefined;
3035
3034
  teamId?: string | undefined;
3035
+ projectId?: string | undefined;
3036
3036
  agentSlug?: string | undefined;
3037
3037
  requiredRoles?: string[] | undefined;
3038
3038
  allowedRoles?: string[] | undefined;
@@ -3751,8 +3751,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3751
3751
  agentSlug: z.ZodOptional<z.ZodString>;
3752
3752
  }, "strict", z.ZodTypeAny, {
3753
3753
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
3754
- projectId?: string | undefined;
3755
3754
  teamId?: string | undefined;
3755
+ projectId?: string | undefined;
3756
3756
  agentSlug?: string | undefined;
3757
3757
  requiredRoles?: string[] | undefined;
3758
3758
  allowedRoles?: string[] | undefined;
@@ -3762,8 +3762,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3762
3762
  teamMemberId?: string | undefined;
3763
3763
  }, {
3764
3764
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
3765
- projectId?: string | undefined;
3766
3765
  teamId?: string | undefined;
3766
+ projectId?: string | undefined;
3767
3767
  agentSlug?: string | undefined;
3768
3768
  requiredRoles?: string[] | undefined;
3769
3769
  allowedRoles?: string[] | undefined;
@@ -3775,8 +3775,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3775
3775
  }, "strict", z.ZodTypeAny, {
3776
3776
  defaultAnswerPolicy?: {
3777
3777
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
3778
- projectId?: string | undefined;
3779
3778
  teamId?: string | undefined;
3779
+ projectId?: string | undefined;
3780
3780
  agentSlug?: string | undefined;
3781
3781
  requiredRoles?: string[] | undefined;
3782
3782
  allowedRoles?: string[] | undefined;
@@ -3789,8 +3789,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3789
3789
  }, {
3790
3790
  defaultAnswerPolicy?: {
3791
3791
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
3792
- projectId?: string | undefined;
3793
3792
  teamId?: string | undefined;
3793
+ projectId?: string | undefined;
3794
3794
  agentSlug?: string | undefined;
3795
3795
  requiredRoles?: string[] | undefined;
3796
3796
  allowedRoles?: string[] | undefined;
@@ -3818,12 +3818,12 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3818
3818
  amount: z.ZodNumber;
3819
3819
  enforceable: z.ZodOptional<z.ZodBoolean>;
3820
3820
  }, "strict", z.ZodTypeAny, {
3821
- amount: number;
3822
3821
  unit: string;
3822
+ amount: number;
3823
3823
  enforceable?: boolean | undefined;
3824
3824
  }, {
3825
- amount: number;
3826
3825
  unit: string;
3826
+ amount: number;
3827
3827
  enforceable?: boolean | undefined;
3828
3828
  }>, "many">>;
3829
3829
  pricingGeneration: z.ZodOptional<z.ZodString>;
@@ -3836,6 +3836,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3836
3836
  closeoutSeconds?: number | undefined;
3837
3837
  closeoutWarningSeconds?: number | undefined;
3838
3838
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
3839
+ nativeLimits?: {
3840
+ unit: string;
3841
+ amount: number;
3842
+ enforceable?: boolean | undefined;
3843
+ }[] | undefined;
3839
3844
  maxRuntimeSeconds?: number | undefined;
3840
3845
  maxRetries?: number | undefined;
3841
3846
  verificationRequired?: boolean | undefined;
@@ -3843,11 +3848,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3843
3848
  warningTokens?: number | undefined;
3844
3849
  maxCostAmount?: number | undefined;
3845
3850
  costCurrency?: string | undefined;
3846
- nativeLimits?: {
3847
- amount: number;
3848
- unit: string;
3849
- enforceable?: boolean | undefined;
3850
- }[] | undefined;
3851
3851
  pricingGeneration?: string | undefined;
3852
3852
  allowedPaths?: string[] | undefined;
3853
3853
  forbiddenPaths?: string[] | undefined;
@@ -3857,6 +3857,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3857
3857
  closeoutSeconds?: number | undefined;
3858
3858
  closeoutWarningSeconds?: number | undefined;
3859
3859
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
3860
+ nativeLimits?: {
3861
+ unit: string;
3862
+ amount: number;
3863
+ enforceable?: boolean | undefined;
3864
+ }[] | undefined;
3860
3865
  maxRuntimeSeconds?: number | undefined;
3861
3866
  maxRetries?: number | undefined;
3862
3867
  verificationRequired?: boolean | undefined;
@@ -3864,11 +3869,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3864
3869
  warningTokens?: number | undefined;
3865
3870
  maxCostAmount?: number | undefined;
3866
3871
  costCurrency?: string | undefined;
3867
- nativeLimits?: {
3868
- amount: number;
3869
- unit: string;
3870
- enforceable?: boolean | undefined;
3871
- }[] | undefined;
3872
3872
  pricingGeneration?: string | undefined;
3873
3873
  allowedPaths?: string[] | undefined;
3874
3874
  forbiddenPaths?: string[] | undefined;
@@ -3905,6 +3905,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3905
3905
  closeoutSeconds?: number | undefined;
3906
3906
  closeoutWarningSeconds?: number | undefined;
3907
3907
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
3908
+ nativeLimits?: {
3909
+ unit: string;
3910
+ amount: number;
3911
+ enforceable?: boolean | undefined;
3912
+ }[] | undefined;
3908
3913
  maxRuntimeSeconds?: number | undefined;
3909
3914
  maxRetries?: number | undefined;
3910
3915
  verificationRequired?: boolean | undefined;
@@ -3912,11 +3917,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
3912
3917
  warningTokens?: number | undefined;
3913
3918
  maxCostAmount?: number | undefined;
3914
3919
  costCurrency?: string | undefined;
3915
- nativeLimits?: {
3916
- amount: number;
3917
- unit: string;
3918
- enforceable?: boolean | undefined;
3919
- }[] | undefined;
3920
3920
  pricingGeneration?: string | undefined;
3921
3921
  allowedPaths?: string[] | undefined;
3922
3922
  forbiddenPaths?: string[] | undefined;
@@ -4034,8 +4034,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
4034
4034
  questionPolicy?: {
4035
4035
  defaultAnswerPolicy?: {
4036
4036
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
4037
- projectId?: string | undefined;
4038
4037
  teamId?: string | undefined;
4038
+ projectId?: string | undefined;
4039
4039
  agentSlug?: string | undefined;
4040
4040
  requiredRoles?: string[] | undefined;
4041
4041
  allowedRoles?: string[] | undefined;
@@ -4078,6 +4078,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
4078
4078
  closeoutSeconds?: number | undefined;
4079
4079
  closeoutWarningSeconds?: number | undefined;
4080
4080
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
4081
+ nativeLimits?: {
4082
+ unit: string;
4083
+ amount: number;
4084
+ enforceable?: boolean | undefined;
4085
+ }[] | undefined;
4081
4086
  maxRuntimeSeconds?: number | undefined;
4082
4087
  maxRetries?: number | undefined;
4083
4088
  verificationRequired?: boolean | undefined;
@@ -4085,11 +4090,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
4085
4090
  warningTokens?: number | undefined;
4086
4091
  maxCostAmount?: number | undefined;
4087
4092
  costCurrency?: string | undefined;
4088
- nativeLimits?: {
4089
- amount: number;
4090
- unit: string;
4091
- enforceable?: boolean | undefined;
4092
- }[] | undefined;
4093
4093
  pricingGeneration?: string | undefined;
4094
4094
  allowedPaths?: string[] | undefined;
4095
4095
  forbiddenPaths?: string[] | undefined;
@@ -4207,8 +4207,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
4207
4207
  questionPolicy?: {
4208
4208
  defaultAnswerPolicy?: {
4209
4209
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
4210
- projectId?: string | undefined;
4211
4210
  teamId?: string | undefined;
4211
+ projectId?: string | undefined;
4212
4212
  agentSlug?: string | undefined;
4213
4213
  requiredRoles?: string[] | undefined;
4214
4214
  allowedRoles?: string[] | undefined;
@@ -4251,6 +4251,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
4251
4251
  closeoutSeconds?: number | undefined;
4252
4252
  closeoutWarningSeconds?: number | undefined;
4253
4253
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
4254
+ nativeLimits?: {
4255
+ unit: string;
4256
+ amount: number;
4257
+ enforceable?: boolean | undefined;
4258
+ }[] | undefined;
4254
4259
  maxRuntimeSeconds?: number | undefined;
4255
4260
  maxRetries?: number | undefined;
4256
4261
  verificationRequired?: boolean | undefined;
@@ -4258,11 +4263,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
4258
4263
  warningTokens?: number | undefined;
4259
4264
  maxCostAmount?: number | undefined;
4260
4265
  costCurrency?: string | undefined;
4261
- nativeLimits?: {
4262
- amount: number;
4263
- unit: string;
4264
- enforceable?: boolean | undefined;
4265
- }[] | undefined;
4266
4266
  pricingGeneration?: string | undefined;
4267
4267
  allowedPaths?: string[] | undefined;
4268
4268
  forbiddenPaths?: string[] | undefined;
@@ -4380,8 +4380,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
4380
4380
  questionPolicy?: {
4381
4381
  defaultAnswerPolicy?: {
4382
4382
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
4383
- projectId?: string | undefined;
4384
4383
  teamId?: string | undefined;
4384
+ projectId?: string | undefined;
4385
4385
  agentSlug?: string | undefined;
4386
4386
  requiredRoles?: string[] | undefined;
4387
4387
  allowedRoles?: string[] | undefined;
@@ -4424,6 +4424,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
4424
4424
  closeoutSeconds?: number | undefined;
4425
4425
  closeoutWarningSeconds?: number | undefined;
4426
4426
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
4427
+ nativeLimits?: {
4428
+ unit: string;
4429
+ amount: number;
4430
+ enforceable?: boolean | undefined;
4431
+ }[] | undefined;
4427
4432
  maxRuntimeSeconds?: number | undefined;
4428
4433
  maxRetries?: number | undefined;
4429
4434
  verificationRequired?: boolean | undefined;
@@ -4431,11 +4436,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
4431
4436
  warningTokens?: number | undefined;
4432
4437
  maxCostAmount?: number | undefined;
4433
4438
  costCurrency?: string | undefined;
4434
- nativeLimits?: {
4435
- amount: number;
4436
- unit: string;
4437
- enforceable?: boolean | undefined;
4438
- }[] | undefined;
4439
4439
  pricingGeneration?: string | undefined;
4440
4440
  allowedPaths?: string[] | undefined;
4441
4441
  forbiddenPaths?: string[] | undefined;
@@ -4553,8 +4553,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
4553
4553
  questionPolicy?: {
4554
4554
  defaultAnswerPolicy?: {
4555
4555
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
4556
- projectId?: string | undefined;
4557
4556
  teamId?: string | undefined;
4557
+ projectId?: string | undefined;
4558
4558
  agentSlug?: string | undefined;
4559
4559
  requiredRoles?: string[] | undefined;
4560
4560
  allowedRoles?: string[] | undefined;
@@ -5273,8 +5273,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5273
5273
  agentSlug: z.ZodOptional<z.ZodString>;
5274
5274
  }, "strict", z.ZodTypeAny, {
5275
5275
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
5276
- projectId?: string | undefined;
5277
5276
  teamId?: string | undefined;
5277
+ projectId?: string | undefined;
5278
5278
  agentSlug?: string | undefined;
5279
5279
  requiredRoles?: string[] | undefined;
5280
5280
  allowedRoles?: string[] | undefined;
@@ -5284,8 +5284,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5284
5284
  teamMemberId?: string | undefined;
5285
5285
  }, {
5286
5286
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
5287
- projectId?: string | undefined;
5288
5287
  teamId?: string | undefined;
5288
+ projectId?: string | undefined;
5289
5289
  agentSlug?: string | undefined;
5290
5290
  requiredRoles?: string[] | undefined;
5291
5291
  allowedRoles?: string[] | undefined;
@@ -5297,8 +5297,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5297
5297
  }, "strict", z.ZodTypeAny, {
5298
5298
  defaultAnswerPolicy?: {
5299
5299
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
5300
- projectId?: string | undefined;
5301
5300
  teamId?: string | undefined;
5301
+ projectId?: string | undefined;
5302
5302
  agentSlug?: string | undefined;
5303
5303
  requiredRoles?: string[] | undefined;
5304
5304
  allowedRoles?: string[] | undefined;
@@ -5311,8 +5311,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5311
5311
  }, {
5312
5312
  defaultAnswerPolicy?: {
5313
5313
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
5314
- projectId?: string | undefined;
5315
5314
  teamId?: string | undefined;
5315
+ projectId?: string | undefined;
5316
5316
  agentSlug?: string | undefined;
5317
5317
  requiredRoles?: string[] | undefined;
5318
5318
  allowedRoles?: string[] | undefined;
@@ -5340,12 +5340,12 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5340
5340
  amount: z.ZodNumber;
5341
5341
  enforceable: z.ZodOptional<z.ZodBoolean>;
5342
5342
  }, "strict", z.ZodTypeAny, {
5343
- amount: number;
5344
5343
  unit: string;
5344
+ amount: number;
5345
5345
  enforceable?: boolean | undefined;
5346
5346
  }, {
5347
- amount: number;
5348
5347
  unit: string;
5348
+ amount: number;
5349
5349
  enforceable?: boolean | undefined;
5350
5350
  }>, "many">>;
5351
5351
  pricingGeneration: z.ZodOptional<z.ZodString>;
@@ -5358,6 +5358,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5358
5358
  closeoutSeconds?: number | undefined;
5359
5359
  closeoutWarningSeconds?: number | undefined;
5360
5360
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
5361
+ nativeLimits?: {
5362
+ unit: string;
5363
+ amount: number;
5364
+ enforceable?: boolean | undefined;
5365
+ }[] | undefined;
5361
5366
  maxRuntimeSeconds?: number | undefined;
5362
5367
  maxRetries?: number | undefined;
5363
5368
  verificationRequired?: boolean | undefined;
@@ -5365,11 +5370,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5365
5370
  warningTokens?: number | undefined;
5366
5371
  maxCostAmount?: number | undefined;
5367
5372
  costCurrency?: string | undefined;
5368
- nativeLimits?: {
5369
- amount: number;
5370
- unit: string;
5371
- enforceable?: boolean | undefined;
5372
- }[] | undefined;
5373
5373
  pricingGeneration?: string | undefined;
5374
5374
  allowedPaths?: string[] | undefined;
5375
5375
  forbiddenPaths?: string[] | undefined;
@@ -5379,6 +5379,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5379
5379
  closeoutSeconds?: number | undefined;
5380
5380
  closeoutWarningSeconds?: number | undefined;
5381
5381
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
5382
+ nativeLimits?: {
5383
+ unit: string;
5384
+ amount: number;
5385
+ enforceable?: boolean | undefined;
5386
+ }[] | undefined;
5382
5387
  maxRuntimeSeconds?: number | undefined;
5383
5388
  maxRetries?: number | undefined;
5384
5389
  verificationRequired?: boolean | undefined;
@@ -5386,11 +5391,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5386
5391
  warningTokens?: number | undefined;
5387
5392
  maxCostAmount?: number | undefined;
5388
5393
  costCurrency?: string | undefined;
5389
- nativeLimits?: {
5390
- amount: number;
5391
- unit: string;
5392
- enforceable?: boolean | undefined;
5393
- }[] | undefined;
5394
5394
  pricingGeneration?: string | undefined;
5395
5395
  allowedPaths?: string[] | undefined;
5396
5396
  forbiddenPaths?: string[] | undefined;
@@ -5427,6 +5427,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5427
5427
  closeoutSeconds?: number | undefined;
5428
5428
  closeoutWarningSeconds?: number | undefined;
5429
5429
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
5430
+ nativeLimits?: {
5431
+ unit: string;
5432
+ amount: number;
5433
+ enforceable?: boolean | undefined;
5434
+ }[] | undefined;
5430
5435
  maxRuntimeSeconds?: number | undefined;
5431
5436
  maxRetries?: number | undefined;
5432
5437
  verificationRequired?: boolean | undefined;
@@ -5434,11 +5439,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5434
5439
  warningTokens?: number | undefined;
5435
5440
  maxCostAmount?: number | undefined;
5436
5441
  costCurrency?: string | undefined;
5437
- nativeLimits?: {
5438
- amount: number;
5439
- unit: string;
5440
- enforceable?: boolean | undefined;
5441
- }[] | undefined;
5442
5442
  pricingGeneration?: string | undefined;
5443
5443
  allowedPaths?: string[] | undefined;
5444
5444
  forbiddenPaths?: string[] | undefined;
@@ -5556,8 +5556,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5556
5556
  questionPolicy?: {
5557
5557
  defaultAnswerPolicy?: {
5558
5558
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
5559
- projectId?: string | undefined;
5560
5559
  teamId?: string | undefined;
5560
+ projectId?: string | undefined;
5561
5561
  agentSlug?: string | undefined;
5562
5562
  requiredRoles?: string[] | undefined;
5563
5563
  allowedRoles?: string[] | undefined;
@@ -5600,6 +5600,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5600
5600
  closeoutSeconds?: number | undefined;
5601
5601
  closeoutWarningSeconds?: number | undefined;
5602
5602
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
5603
+ nativeLimits?: {
5604
+ unit: string;
5605
+ amount: number;
5606
+ enforceable?: boolean | undefined;
5607
+ }[] | undefined;
5603
5608
  maxRuntimeSeconds?: number | undefined;
5604
5609
  maxRetries?: number | undefined;
5605
5610
  verificationRequired?: boolean | undefined;
@@ -5607,11 +5612,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5607
5612
  warningTokens?: number | undefined;
5608
5613
  maxCostAmount?: number | undefined;
5609
5614
  costCurrency?: string | undefined;
5610
- nativeLimits?: {
5611
- amount: number;
5612
- unit: string;
5613
- enforceable?: boolean | undefined;
5614
- }[] | undefined;
5615
5615
  pricingGeneration?: string | undefined;
5616
5616
  allowedPaths?: string[] | undefined;
5617
5617
  forbiddenPaths?: string[] | undefined;
@@ -5729,8 +5729,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5729
5729
  questionPolicy?: {
5730
5730
  defaultAnswerPolicy?: {
5731
5731
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
5732
- projectId?: string | undefined;
5733
5732
  teamId?: string | undefined;
5733
+ projectId?: string | undefined;
5734
5734
  agentSlug?: string | undefined;
5735
5735
  requiredRoles?: string[] | undefined;
5736
5736
  allowedRoles?: string[] | undefined;
@@ -5773,6 +5773,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5773
5773
  closeoutSeconds?: number | undefined;
5774
5774
  closeoutWarningSeconds?: number | undefined;
5775
5775
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
5776
+ nativeLimits?: {
5777
+ unit: string;
5778
+ amount: number;
5779
+ enforceable?: boolean | undefined;
5780
+ }[] | undefined;
5776
5781
  maxRuntimeSeconds?: number | undefined;
5777
5782
  maxRetries?: number | undefined;
5778
5783
  verificationRequired?: boolean | undefined;
@@ -5780,11 +5785,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5780
5785
  warningTokens?: number | undefined;
5781
5786
  maxCostAmount?: number | undefined;
5782
5787
  costCurrency?: string | undefined;
5783
- nativeLimits?: {
5784
- amount: number;
5785
- unit: string;
5786
- enforceable?: boolean | undefined;
5787
- }[] | undefined;
5788
5788
  pricingGeneration?: string | undefined;
5789
5789
  allowedPaths?: string[] | undefined;
5790
5790
  forbiddenPaths?: string[] | undefined;
@@ -5902,8 +5902,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5902
5902
  questionPolicy?: {
5903
5903
  defaultAnswerPolicy?: {
5904
5904
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
5905
- projectId?: string | undefined;
5906
5905
  teamId?: string | undefined;
5906
+ projectId?: string | undefined;
5907
5907
  agentSlug?: string | undefined;
5908
5908
  requiredRoles?: string[] | undefined;
5909
5909
  allowedRoles?: string[] | undefined;
@@ -5946,6 +5946,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5946
5946
  closeoutSeconds?: number | undefined;
5947
5947
  closeoutWarningSeconds?: number | undefined;
5948
5948
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
5949
+ nativeLimits?: {
5950
+ unit: string;
5951
+ amount: number;
5952
+ enforceable?: boolean | undefined;
5953
+ }[] | undefined;
5949
5954
  maxRuntimeSeconds?: number | undefined;
5950
5955
  maxRetries?: number | undefined;
5951
5956
  verificationRequired?: boolean | undefined;
@@ -5953,11 +5958,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
5953
5958
  warningTokens?: number | undefined;
5954
5959
  maxCostAmount?: number | undefined;
5955
5960
  costCurrency?: string | undefined;
5956
- nativeLimits?: {
5957
- amount: number;
5958
- unit: string;
5959
- enforceable?: boolean | undefined;
5960
- }[] | undefined;
5961
5961
  pricingGeneration?: string | undefined;
5962
5962
  allowedPaths?: string[] | undefined;
5963
5963
  forbiddenPaths?: string[] | undefined;
@@ -6075,8 +6075,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6075
6075
  questionPolicy?: {
6076
6076
  defaultAnswerPolicy?: {
6077
6077
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
6078
- projectId?: string | undefined;
6079
6078
  teamId?: string | undefined;
6079
+ projectId?: string | undefined;
6080
6080
  agentSlug?: string | undefined;
6081
6081
  requiredRoles?: string[] | undefined;
6082
6082
  allowedRoles?: string[] | undefined;
@@ -6795,8 +6795,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6795
6795
  agentSlug: z.ZodOptional<z.ZodString>;
6796
6796
  }, "strict", z.ZodTypeAny, {
6797
6797
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
6798
- projectId?: string | undefined;
6799
6798
  teamId?: string | undefined;
6799
+ projectId?: string | undefined;
6800
6800
  agentSlug?: string | undefined;
6801
6801
  requiredRoles?: string[] | undefined;
6802
6802
  allowedRoles?: string[] | undefined;
@@ -6806,8 +6806,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6806
6806
  teamMemberId?: string | undefined;
6807
6807
  }, {
6808
6808
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
6809
- projectId?: string | undefined;
6810
6809
  teamId?: string | undefined;
6810
+ projectId?: string | undefined;
6811
6811
  agentSlug?: string | undefined;
6812
6812
  requiredRoles?: string[] | undefined;
6813
6813
  allowedRoles?: string[] | undefined;
@@ -6819,8 +6819,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6819
6819
  }, "strict", z.ZodTypeAny, {
6820
6820
  defaultAnswerPolicy?: {
6821
6821
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
6822
- projectId?: string | undefined;
6823
6822
  teamId?: string | undefined;
6823
+ projectId?: string | undefined;
6824
6824
  agentSlug?: string | undefined;
6825
6825
  requiredRoles?: string[] | undefined;
6826
6826
  allowedRoles?: string[] | undefined;
@@ -6833,8 +6833,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6833
6833
  }, {
6834
6834
  defaultAnswerPolicy?: {
6835
6835
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
6836
- projectId?: string | undefined;
6837
6836
  teamId?: string | undefined;
6837
+ projectId?: string | undefined;
6838
6838
  agentSlug?: string | undefined;
6839
6839
  requiredRoles?: string[] | undefined;
6840
6840
  allowedRoles?: string[] | undefined;
@@ -6862,12 +6862,12 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6862
6862
  amount: z.ZodNumber;
6863
6863
  enforceable: z.ZodOptional<z.ZodBoolean>;
6864
6864
  }, "strict", z.ZodTypeAny, {
6865
- amount: number;
6866
6865
  unit: string;
6866
+ amount: number;
6867
6867
  enforceable?: boolean | undefined;
6868
6868
  }, {
6869
- amount: number;
6870
6869
  unit: string;
6870
+ amount: number;
6871
6871
  enforceable?: boolean | undefined;
6872
6872
  }>, "many">>;
6873
6873
  pricingGeneration: z.ZodOptional<z.ZodString>;
@@ -6880,6 +6880,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6880
6880
  closeoutSeconds?: number | undefined;
6881
6881
  closeoutWarningSeconds?: number | undefined;
6882
6882
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
6883
+ nativeLimits?: {
6884
+ unit: string;
6885
+ amount: number;
6886
+ enforceable?: boolean | undefined;
6887
+ }[] | undefined;
6883
6888
  maxRuntimeSeconds?: number | undefined;
6884
6889
  maxRetries?: number | undefined;
6885
6890
  verificationRequired?: boolean | undefined;
@@ -6887,11 +6892,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6887
6892
  warningTokens?: number | undefined;
6888
6893
  maxCostAmount?: number | undefined;
6889
6894
  costCurrency?: string | undefined;
6890
- nativeLimits?: {
6891
- amount: number;
6892
- unit: string;
6893
- enforceable?: boolean | undefined;
6894
- }[] | undefined;
6895
6895
  pricingGeneration?: string | undefined;
6896
6896
  allowedPaths?: string[] | undefined;
6897
6897
  forbiddenPaths?: string[] | undefined;
@@ -6901,6 +6901,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6901
6901
  closeoutSeconds?: number | undefined;
6902
6902
  closeoutWarningSeconds?: number | undefined;
6903
6903
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
6904
+ nativeLimits?: {
6905
+ unit: string;
6906
+ amount: number;
6907
+ enforceable?: boolean | undefined;
6908
+ }[] | undefined;
6904
6909
  maxRuntimeSeconds?: number | undefined;
6905
6910
  maxRetries?: number | undefined;
6906
6911
  verificationRequired?: boolean | undefined;
@@ -6908,11 +6913,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6908
6913
  warningTokens?: number | undefined;
6909
6914
  maxCostAmount?: number | undefined;
6910
6915
  costCurrency?: string | undefined;
6911
- nativeLimits?: {
6912
- amount: number;
6913
- unit: string;
6914
- enforceable?: boolean | undefined;
6915
- }[] | undefined;
6916
6916
  pricingGeneration?: string | undefined;
6917
6917
  allowedPaths?: string[] | undefined;
6918
6918
  forbiddenPaths?: string[] | undefined;
@@ -6949,6 +6949,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6949
6949
  closeoutSeconds?: number | undefined;
6950
6950
  closeoutWarningSeconds?: number | undefined;
6951
6951
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
6952
+ nativeLimits?: {
6953
+ unit: string;
6954
+ amount: number;
6955
+ enforceable?: boolean | undefined;
6956
+ }[] | undefined;
6952
6957
  maxRuntimeSeconds?: number | undefined;
6953
6958
  maxRetries?: number | undefined;
6954
6959
  verificationRequired?: boolean | undefined;
@@ -6956,11 +6961,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
6956
6961
  warningTokens?: number | undefined;
6957
6962
  maxCostAmount?: number | undefined;
6958
6963
  costCurrency?: string | undefined;
6959
- nativeLimits?: {
6960
- amount: number;
6961
- unit: string;
6962
- enforceable?: boolean | undefined;
6963
- }[] | undefined;
6964
6964
  pricingGeneration?: string | undefined;
6965
6965
  allowedPaths?: string[] | undefined;
6966
6966
  forbiddenPaths?: string[] | undefined;
@@ -7078,8 +7078,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
7078
7078
  questionPolicy?: {
7079
7079
  defaultAnswerPolicy?: {
7080
7080
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
7081
- projectId?: string | undefined;
7082
7081
  teamId?: string | undefined;
7082
+ projectId?: string | undefined;
7083
7083
  agentSlug?: string | undefined;
7084
7084
  requiredRoles?: string[] | undefined;
7085
7085
  allowedRoles?: string[] | undefined;
@@ -7122,6 +7122,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
7122
7122
  closeoutSeconds?: number | undefined;
7123
7123
  closeoutWarningSeconds?: number | undefined;
7124
7124
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
7125
+ nativeLimits?: {
7126
+ unit: string;
7127
+ amount: number;
7128
+ enforceable?: boolean | undefined;
7129
+ }[] | undefined;
7125
7130
  maxRuntimeSeconds?: number | undefined;
7126
7131
  maxRetries?: number | undefined;
7127
7132
  verificationRequired?: boolean | undefined;
@@ -7129,11 +7134,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
7129
7134
  warningTokens?: number | undefined;
7130
7135
  maxCostAmount?: number | undefined;
7131
7136
  costCurrency?: string | undefined;
7132
- nativeLimits?: {
7133
- amount: number;
7134
- unit: string;
7135
- enforceable?: boolean | undefined;
7136
- }[] | undefined;
7137
7137
  pricingGeneration?: string | undefined;
7138
7138
  allowedPaths?: string[] | undefined;
7139
7139
  forbiddenPaths?: string[] | undefined;
@@ -7251,8 +7251,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
7251
7251
  questionPolicy?: {
7252
7252
  defaultAnswerPolicy?: {
7253
7253
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
7254
- projectId?: string | undefined;
7255
7254
  teamId?: string | undefined;
7255
+ projectId?: string | undefined;
7256
7256
  agentSlug?: string | undefined;
7257
7257
  requiredRoles?: string[] | undefined;
7258
7258
  allowedRoles?: string[] | undefined;
@@ -7295,6 +7295,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
7295
7295
  closeoutSeconds?: number | undefined;
7296
7296
  closeoutWarningSeconds?: number | undefined;
7297
7297
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
7298
+ nativeLimits?: {
7299
+ unit: string;
7300
+ amount: number;
7301
+ enforceable?: boolean | undefined;
7302
+ }[] | undefined;
7298
7303
  maxRuntimeSeconds?: number | undefined;
7299
7304
  maxRetries?: number | undefined;
7300
7305
  verificationRequired?: boolean | undefined;
@@ -7302,11 +7307,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
7302
7307
  warningTokens?: number | undefined;
7303
7308
  maxCostAmount?: number | undefined;
7304
7309
  costCurrency?: string | undefined;
7305
- nativeLimits?: {
7306
- amount: number;
7307
- unit: string;
7308
- enforceable?: boolean | undefined;
7309
- }[] | undefined;
7310
7310
  pricingGeneration?: string | undefined;
7311
7311
  allowedPaths?: string[] | undefined;
7312
7312
  forbiddenPaths?: string[] | undefined;
@@ -7424,8 +7424,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
7424
7424
  questionPolicy?: {
7425
7425
  defaultAnswerPolicy?: {
7426
7426
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
7427
- projectId?: string | undefined;
7428
7427
  teamId?: string | undefined;
7428
+ projectId?: string | undefined;
7429
7429
  agentSlug?: string | undefined;
7430
7430
  requiredRoles?: string[] | undefined;
7431
7431
  allowedRoles?: string[] | undefined;
@@ -7468,6 +7468,11 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
7468
7468
  closeoutSeconds?: number | undefined;
7469
7469
  closeoutWarningSeconds?: number | undefined;
7470
7470
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
7471
+ nativeLimits?: {
7472
+ unit: string;
7473
+ amount: number;
7474
+ enforceable?: boolean | undefined;
7475
+ }[] | undefined;
7471
7476
  maxRuntimeSeconds?: number | undefined;
7472
7477
  maxRetries?: number | undefined;
7473
7478
  verificationRequired?: boolean | undefined;
@@ -7475,11 +7480,6 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
7475
7480
  warningTokens?: number | undefined;
7476
7481
  maxCostAmount?: number | undefined;
7477
7482
  costCurrency?: string | undefined;
7478
- nativeLimits?: {
7479
- amount: number;
7480
- unit: string;
7481
- enforceable?: boolean | undefined;
7482
- }[] | undefined;
7483
7483
  pricingGeneration?: string | undefined;
7484
7484
  allowedPaths?: string[] | undefined;
7485
7485
  forbiddenPaths?: string[] | undefined;
@@ -7597,8 +7597,8 @@ export declare const agentDefinitionSchema: z.ZodEffects<z.ZodObject<{
7597
7597
  questionPolicy?: {
7598
7598
  defaultAnswerPolicy?: {
7599
7599
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
7600
- projectId?: string | undefined;
7601
7600
  teamId?: string | undefined;
7601
+ projectId?: string | undefined;
7602
7602
  agentSlug?: string | undefined;
7603
7603
  requiredRoles?: string[] | undefined;
7604
7604
  allowedRoles?: string[] | undefined;
@@ -8321,8 +8321,8 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8321
8321
  agentSlug: z.ZodOptional<z.ZodString>;
8322
8322
  }, "strict", z.ZodTypeAny, {
8323
8323
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
8324
- projectId?: string | undefined;
8325
8324
  teamId?: string | undefined;
8325
+ projectId?: string | undefined;
8326
8326
  agentSlug?: string | undefined;
8327
8327
  requiredRoles?: string[] | undefined;
8328
8328
  allowedRoles?: string[] | undefined;
@@ -8332,8 +8332,8 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8332
8332
  teamMemberId?: string | undefined;
8333
8333
  }, {
8334
8334
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
8335
- projectId?: string | undefined;
8336
8335
  teamId?: string | undefined;
8336
+ projectId?: string | undefined;
8337
8337
  agentSlug?: string | undefined;
8338
8338
  requiredRoles?: string[] | undefined;
8339
8339
  allowedRoles?: string[] | undefined;
@@ -8345,8 +8345,8 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8345
8345
  }, "strict", z.ZodTypeAny, {
8346
8346
  defaultAnswerPolicy?: {
8347
8347
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
8348
- projectId?: string | undefined;
8349
8348
  teamId?: string | undefined;
8349
+ projectId?: string | undefined;
8350
8350
  agentSlug?: string | undefined;
8351
8351
  requiredRoles?: string[] | undefined;
8352
8352
  allowedRoles?: string[] | undefined;
@@ -8359,8 +8359,8 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8359
8359
  }, {
8360
8360
  defaultAnswerPolicy?: {
8361
8361
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
8362
- projectId?: string | undefined;
8363
8362
  teamId?: string | undefined;
8363
+ projectId?: string | undefined;
8364
8364
  agentSlug?: string | undefined;
8365
8365
  requiredRoles?: string[] | undefined;
8366
8366
  allowedRoles?: string[] | undefined;
@@ -8388,12 +8388,12 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8388
8388
  amount: z.ZodNumber;
8389
8389
  enforceable: z.ZodOptional<z.ZodBoolean>;
8390
8390
  }, "strict", z.ZodTypeAny, {
8391
- amount: number;
8392
8391
  unit: string;
8392
+ amount: number;
8393
8393
  enforceable?: boolean | undefined;
8394
8394
  }, {
8395
- amount: number;
8396
8395
  unit: string;
8396
+ amount: number;
8397
8397
  enforceable?: boolean | undefined;
8398
8398
  }>, "many">>;
8399
8399
  pricingGeneration: z.ZodOptional<z.ZodString>;
@@ -8406,6 +8406,11 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8406
8406
  closeoutSeconds?: number | undefined;
8407
8407
  closeoutWarningSeconds?: number | undefined;
8408
8408
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
8409
+ nativeLimits?: {
8410
+ unit: string;
8411
+ amount: number;
8412
+ enforceable?: boolean | undefined;
8413
+ }[] | undefined;
8409
8414
  maxRuntimeSeconds?: number | undefined;
8410
8415
  maxRetries?: number | undefined;
8411
8416
  verificationRequired?: boolean | undefined;
@@ -8413,11 +8418,6 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8413
8418
  warningTokens?: number | undefined;
8414
8419
  maxCostAmount?: number | undefined;
8415
8420
  costCurrency?: string | undefined;
8416
- nativeLimits?: {
8417
- amount: number;
8418
- unit: string;
8419
- enforceable?: boolean | undefined;
8420
- }[] | undefined;
8421
8421
  pricingGeneration?: string | undefined;
8422
8422
  allowedPaths?: string[] | undefined;
8423
8423
  forbiddenPaths?: string[] | undefined;
@@ -8427,6 +8427,11 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8427
8427
  closeoutSeconds?: number | undefined;
8428
8428
  closeoutWarningSeconds?: number | undefined;
8429
8429
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
8430
+ nativeLimits?: {
8431
+ unit: string;
8432
+ amount: number;
8433
+ enforceable?: boolean | undefined;
8434
+ }[] | undefined;
8430
8435
  maxRuntimeSeconds?: number | undefined;
8431
8436
  maxRetries?: number | undefined;
8432
8437
  verificationRequired?: boolean | undefined;
@@ -8434,11 +8439,6 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8434
8439
  warningTokens?: number | undefined;
8435
8440
  maxCostAmount?: number | undefined;
8436
8441
  costCurrency?: string | undefined;
8437
- nativeLimits?: {
8438
- amount: number;
8439
- unit: string;
8440
- enforceable?: boolean | undefined;
8441
- }[] | undefined;
8442
8442
  pricingGeneration?: string | undefined;
8443
8443
  allowedPaths?: string[] | undefined;
8444
8444
  forbiddenPaths?: string[] | undefined;
@@ -8475,6 +8475,11 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8475
8475
  closeoutSeconds?: number | undefined;
8476
8476
  closeoutWarningSeconds?: number | undefined;
8477
8477
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
8478
+ nativeLimits?: {
8479
+ unit: string;
8480
+ amount: number;
8481
+ enforceable?: boolean | undefined;
8482
+ }[] | undefined;
8478
8483
  maxRuntimeSeconds?: number | undefined;
8479
8484
  maxRetries?: number | undefined;
8480
8485
  verificationRequired?: boolean | undefined;
@@ -8482,11 +8487,6 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8482
8487
  warningTokens?: number | undefined;
8483
8488
  maxCostAmount?: number | undefined;
8484
8489
  costCurrency?: string | undefined;
8485
- nativeLimits?: {
8486
- amount: number;
8487
- unit: string;
8488
- enforceable?: boolean | undefined;
8489
- }[] | undefined;
8490
8490
  pricingGeneration?: string | undefined;
8491
8491
  allowedPaths?: string[] | undefined;
8492
8492
  forbiddenPaths?: string[] | undefined;
@@ -8604,8 +8604,8 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8604
8604
  questionPolicy?: {
8605
8605
  defaultAnswerPolicy?: {
8606
8606
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
8607
- projectId?: string | undefined;
8608
8607
  teamId?: string | undefined;
8608
+ projectId?: string | undefined;
8609
8609
  agentSlug?: string | undefined;
8610
8610
  requiredRoles?: string[] | undefined;
8611
8611
  allowedRoles?: string[] | undefined;
@@ -8648,6 +8648,11 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8648
8648
  closeoutSeconds?: number | undefined;
8649
8649
  closeoutWarningSeconds?: number | undefined;
8650
8650
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
8651
+ nativeLimits?: {
8652
+ unit: string;
8653
+ amount: number;
8654
+ enforceable?: boolean | undefined;
8655
+ }[] | undefined;
8651
8656
  maxRuntimeSeconds?: number | undefined;
8652
8657
  maxRetries?: number | undefined;
8653
8658
  verificationRequired?: boolean | undefined;
@@ -8655,11 +8660,6 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8655
8660
  warningTokens?: number | undefined;
8656
8661
  maxCostAmount?: number | undefined;
8657
8662
  costCurrency?: string | undefined;
8658
- nativeLimits?: {
8659
- amount: number;
8660
- unit: string;
8661
- enforceable?: boolean | undefined;
8662
- }[] | undefined;
8663
8663
  pricingGeneration?: string | undefined;
8664
8664
  allowedPaths?: string[] | undefined;
8665
8665
  forbiddenPaths?: string[] | undefined;
@@ -8777,8 +8777,8 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8777
8777
  questionPolicy?: {
8778
8778
  defaultAnswerPolicy?: {
8779
8779
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
8780
- projectId?: string | undefined;
8781
8780
  teamId?: string | undefined;
8781
+ projectId?: string | undefined;
8782
8782
  agentSlug?: string | undefined;
8783
8783
  requiredRoles?: string[] | undefined;
8784
8784
  allowedRoles?: string[] | undefined;
@@ -8821,6 +8821,11 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8821
8821
  closeoutSeconds?: number | undefined;
8822
8822
  closeoutWarningSeconds?: number | undefined;
8823
8823
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
8824
+ nativeLimits?: {
8825
+ unit: string;
8826
+ amount: number;
8827
+ enforceable?: boolean | undefined;
8828
+ }[] | undefined;
8824
8829
  maxRuntimeSeconds?: number | undefined;
8825
8830
  maxRetries?: number | undefined;
8826
8831
  verificationRequired?: boolean | undefined;
@@ -8828,11 +8833,6 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8828
8833
  warningTokens?: number | undefined;
8829
8834
  maxCostAmount?: number | undefined;
8830
8835
  costCurrency?: string | undefined;
8831
- nativeLimits?: {
8832
- amount: number;
8833
- unit: string;
8834
- enforceable?: boolean | undefined;
8835
- }[] | undefined;
8836
8836
  pricingGeneration?: string | undefined;
8837
8837
  allowedPaths?: string[] | undefined;
8838
8838
  forbiddenPaths?: string[] | undefined;
@@ -8950,8 +8950,8 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8950
8950
  questionPolicy?: {
8951
8951
  defaultAnswerPolicy?: {
8952
8952
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
8953
- projectId?: string | undefined;
8954
8953
  teamId?: string | undefined;
8954
+ projectId?: string | undefined;
8955
8955
  agentSlug?: string | undefined;
8956
8956
  requiredRoles?: string[] | undefined;
8957
8957
  allowedRoles?: string[] | undefined;
@@ -8994,6 +8994,11 @@ export declare function validateAgentDefinitionModel(value: unknown): {
8994
8994
  closeoutSeconds?: number | undefined;
8995
8995
  closeoutWarningSeconds?: number | undefined;
8996
8996
  enforcementConfidence?: "exact" | "bounded" | "estimated" | "opaque" | undefined;
8997
+ nativeLimits?: {
8998
+ unit: string;
8999
+ amount: number;
9000
+ enforceable?: boolean | undefined;
9001
+ }[] | undefined;
8997
9002
  maxRuntimeSeconds?: number | undefined;
8998
9003
  maxRetries?: number | undefined;
8999
9004
  verificationRequired?: boolean | undefined;
@@ -9001,11 +9006,6 @@ export declare function validateAgentDefinitionModel(value: unknown): {
9001
9006
  warningTokens?: number | undefined;
9002
9007
  maxCostAmount?: number | undefined;
9003
9008
  costCurrency?: string | undefined;
9004
- nativeLimits?: {
9005
- amount: number;
9006
- unit: string;
9007
- enforceable?: boolean | undefined;
9008
- }[] | undefined;
9009
9009
  pricingGeneration?: string | undefined;
9010
9010
  allowedPaths?: string[] | undefined;
9011
9011
  forbiddenPaths?: string[] | undefined;
@@ -9123,8 +9123,8 @@ export declare function validateAgentDefinitionModel(value: unknown): {
9123
9123
  questionPolicy?: {
9124
9124
  defaultAnswerPolicy?: {
9125
9125
  kind: "team-human" | "human-or-agent" | "specific-human" | "specific-agent";
9126
- projectId?: string | undefined;
9127
9126
  teamId?: string | undefined;
9127
+ projectId?: string | undefined;
9128
9128
  agentSlug?: string | undefined;
9129
9129
  requiredRoles?: string[] | undefined;
9130
9130
  allowedRoles?: string[] | undefined;