@orq-ai/node 4.0.0-rc.50 → 4.0.0-rc.52

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 (161) hide show
  1. package/README.md +3 -4
  2. package/bin/mcp-server.js +1125 -606
  3. package/bin/mcp-server.js.map +50 -51
  4. package/docs/sdks/agents/README.md +80 -80
  5. package/examples/package-lock.json +1 -1
  6. package/funcs/agentsInvoke.d.ts +1 -1
  7. package/funcs/agentsInvoke.d.ts.map +1 -1
  8. package/funcs/agentsInvoke.js +1 -1
  9. package/funcs/agentsInvoke.js.map +1 -1
  10. package/funcs/agentsListTasks.d.ts +1 -1
  11. package/funcs/agentsListTasks.d.ts.map +1 -1
  12. package/funcs/agentsListTasks.js +1 -1
  13. package/funcs/agentsListTasks.js.map +1 -1
  14. package/funcs/agentsRetrieveTask.d.ts +1 -1
  15. package/funcs/agentsRetrieveTask.d.ts.map +1 -1
  16. package/funcs/agentsRetrieveTask.js +1 -1
  17. package/funcs/agentsRetrieveTask.js.map +1 -1
  18. package/funcs/agentsRun.d.ts +1 -1
  19. package/funcs/agentsRun.d.ts.map +1 -1
  20. package/funcs/agentsRun.js +1 -1
  21. package/funcs/agentsRun.js.map +1 -1
  22. package/jsr.json +1 -1
  23. package/lib/config.d.ts +2 -2
  24. package/lib/config.js +2 -2
  25. package/mcp-server/mcp-server.js +1 -1
  26. package/mcp-server/server.js +2 -2
  27. package/mcp-server/server.js.map +1 -1
  28. package/models/errors/index.d.ts +0 -1
  29. package/models/errors/index.d.ts.map +1 -1
  30. package/models/errors/index.js +0 -1
  31. package/models/errors/index.js.map +1 -1
  32. package/models/operations/createbudget.js +2 -2
  33. package/models/operations/createcontact.js +2 -2
  34. package/models/operations/createdataset.js +2 -2
  35. package/models/operations/createdatasetitem.js +8 -8
  36. package/models/operations/createdatasource.js +2 -2
  37. package/models/operations/createeval.js +28 -28
  38. package/models/operations/createtool.d.ts +25 -25
  39. package/models/operations/createtool.d.ts.map +1 -1
  40. package/models/operations/createtool.js +41 -41
  41. package/models/operations/createtool.js.map +1 -1
  42. package/models/operations/deploymentinvoke.d.ts +6 -6
  43. package/models/operations/deploymentinvoke.d.ts.map +1 -1
  44. package/models/operations/deploymentinvoke.js +9 -9
  45. package/models/operations/deploymentinvoke.js.map +1 -1
  46. package/models/operations/fileget.js +2 -2
  47. package/models/operations/filelist.js +2 -2
  48. package/models/operations/fileupload.js +2 -2
  49. package/models/operations/getagenttask.d.ts +682 -108
  50. package/models/operations/getagenttask.d.ts.map +1 -1
  51. package/models/operations/getagenttask.js +635 -155
  52. package/models/operations/getagenttask.js.map +1 -1
  53. package/models/operations/getalltools.js +12 -12
  54. package/models/operations/getbudget.js +2 -2
  55. package/models/operations/getevals.js +28 -28
  56. package/models/operations/invokeagent.d.ts +143 -123
  57. package/models/operations/invokeagent.d.ts.map +1 -1
  58. package/models/operations/invokeagent.js +143 -146
  59. package/models/operations/invokeagent.js.map +1 -1
  60. package/models/operations/listagenttasks.d.ts +680 -118
  61. package/models/operations/listagenttasks.d.ts.map +1 -1
  62. package/models/operations/listagenttasks.js +612 -144
  63. package/models/operations/listagenttasks.js.map +1 -1
  64. package/models/operations/listbudgets.js +2 -2
  65. package/models/operations/listchunks.d.ts +6 -6
  66. package/models/operations/listchunks.d.ts.map +1 -1
  67. package/models/operations/listchunks.js +9 -9
  68. package/models/operations/listchunks.js.map +1 -1
  69. package/models/operations/listcontacts.js +2 -2
  70. package/models/operations/listdatasetdatapoints.js +8 -8
  71. package/models/operations/listdatasets.js +2 -2
  72. package/models/operations/listdatasources.d.ts +6 -6
  73. package/models/operations/listdatasources.d.ts.map +1 -1
  74. package/models/operations/listdatasources.js +12 -11
  75. package/models/operations/listdatasources.js.map +1 -1
  76. package/models/operations/retrievecontact.js +2 -2
  77. package/models/operations/retrievedatapoint.js +8 -8
  78. package/models/operations/retrievedataset.js +2 -2
  79. package/models/operations/retrievedatasource.js +2 -2
  80. package/models/operations/retrievetool.js +12 -12
  81. package/models/operations/runagent.d.ts +112 -98
  82. package/models/operations/runagent.d.ts.map +1 -1
  83. package/models/operations/runagent.js +120 -121
  84. package/models/operations/runagent.js.map +1 -1
  85. package/models/operations/streamagent.d.ts +18 -12
  86. package/models/operations/streamagent.d.ts.map +1 -1
  87. package/models/operations/streamagent.js +13 -13
  88. package/models/operations/streamagent.js.map +1 -1
  89. package/models/operations/streamrunagent.d.ts +12 -12
  90. package/models/operations/streamrunagent.d.ts.map +1 -1
  91. package/models/operations/streamrunagent.js +15 -15
  92. package/models/operations/streamrunagent.js.map +1 -1
  93. package/models/operations/updateagent.d.ts +11 -8
  94. package/models/operations/updateagent.d.ts.map +1 -1
  95. package/models/operations/updateagent.js +13 -11
  96. package/models/operations/updateagent.js.map +1 -1
  97. package/models/operations/updatebudget.js +2 -2
  98. package/models/operations/updatecontact.js +2 -2
  99. package/models/operations/updatedatapoint.js +8 -8
  100. package/models/operations/updatedataset.js +2 -2
  101. package/models/operations/updatedatasource.js +2 -2
  102. package/models/operations/updateeval.js +28 -28
  103. package/models/operations/updatetool.js +14 -14
  104. package/package.json +1 -1
  105. package/sdk/agents.d.ts +10 -10
  106. package/sdk/agents.d.ts.map +1 -1
  107. package/sdk/agents.js +9 -9
  108. package/sdk/agents.js.map +1 -1
  109. package/src/funcs/agentsInvoke.ts +4 -4
  110. package/src/funcs/agentsListTasks.ts +4 -4
  111. package/src/funcs/agentsRetrieveTask.ts +8 -8
  112. package/src/funcs/agentsRun.ts +4 -4
  113. package/src/lib/config.ts +2 -2
  114. package/src/mcp-server/mcp-server.ts +1 -1
  115. package/src/mcp-server/server.ts +2 -2
  116. package/src/models/errors/index.ts +0 -1
  117. package/src/models/operations/createbudget.ts +2 -2
  118. package/src/models/operations/createcontact.ts +2 -2
  119. package/src/models/operations/createdataset.ts +2 -2
  120. package/src/models/operations/createdatasetitem.ts +8 -8
  121. package/src/models/operations/createdatasource.ts +2 -2
  122. package/src/models/operations/createeval.ts +28 -28
  123. package/src/models/operations/createtool.ts +76 -76
  124. package/src/models/operations/deploymentinvoke.ts +17 -24
  125. package/src/models/operations/fileget.ts +2 -2
  126. package/src/models/operations/filelist.ts +2 -2
  127. package/src/models/operations/fileupload.ts +2 -2
  128. package/src/models/operations/getagenttask.ts +1873 -428
  129. package/src/models/operations/getalltools.ts +12 -12
  130. package/src/models/operations/getbudget.ts +2 -2
  131. package/src/models/operations/getevals.ts +28 -28
  132. package/src/models/operations/invokeagent.ts +319 -299
  133. package/src/models/operations/listagenttasks.ts +2029 -540
  134. package/src/models/operations/listbudgets.ts +2 -2
  135. package/src/models/operations/listchunks.ts +14 -14
  136. package/src/models/operations/listcontacts.ts +2 -2
  137. package/src/models/operations/listdatasetdatapoints.ts +8 -8
  138. package/src/models/operations/listdatasets.ts +2 -2
  139. package/src/models/operations/listdatasources.ts +15 -22
  140. package/src/models/operations/retrievecontact.ts +2 -2
  141. package/src/models/operations/retrievedatapoint.ts +8 -8
  142. package/src/models/operations/retrievedataset.ts +2 -2
  143. package/src/models/operations/retrievedatasource.ts +2 -2
  144. package/src/models/operations/retrievetool.ts +12 -12
  145. package/src/models/operations/runagent.ts +264 -220
  146. package/src/models/operations/streamagent.ts +28 -22
  147. package/src/models/operations/streamrunagent.ts +24 -24
  148. package/src/models/operations/updateagent.ts +25 -18
  149. package/src/models/operations/updatebudget.ts +2 -2
  150. package/src/models/operations/updatecontact.ts +2 -2
  151. package/src/models/operations/updatedatapoint.ts +8 -8
  152. package/src/models/operations/updatedataset.ts +2 -2
  153. package/src/models/operations/updatedatasource.ts +2 -2
  154. package/src/models/operations/updateeval.ts +28 -28
  155. package/src/models/operations/updatetool.ts +14 -14
  156. package/src/sdk/agents.ts +20 -20
  157. package/models/errors/getagenttask.d.ts +0 -29
  158. package/models/errors/getagenttask.d.ts.map +0 -1
  159. package/models/errors/getagenttask.js +0 -74
  160. package/models/errors/getagenttask.js.map +0 -1
  161. package/src/models/errors/getagenttask.ts +0 -67
package/bin/mcp-server.js CHANGED
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
34203
34203
  SDK_METADATA = {
34204
34204
  language: "typescript",
34205
34205
  openapiDocVersion: "2.0",
34206
- sdkVersion: "4.0.0-rc.50",
34206
+ sdkVersion: "4.0.0-rc.52",
34207
34207
  genVersion: "2.755.9",
34208
- userAgent: "speakeasy-sdk/typescript 4.0.0-rc.50 2.755.9 2.0 @orq-ai/node"
34208
+ userAgent: "speakeasy-sdk/typescript 4.0.0-rc.52 2.755.9 2.0 @orq-ai/node"
34209
34209
  };
34210
34210
  });
34211
34211
 
@@ -35917,37 +35917,6 @@ var init_getagent = __esm(() => {
35917
35917
  }));
35918
35918
  });
35919
35919
 
35920
- // src/models/errors/getagenttask.ts
35921
- var GetAgentTaskResponseBody, GetAgentTaskResponseBody$inboundSchema, GetAgentTaskResponseBody$outboundSchema;
35922
- var init_getagenttask = __esm(() => {
35923
- init_esm();
35924
- init_orqerror();
35925
- GetAgentTaskResponseBody = class GetAgentTaskResponseBody extends OrqError {
35926
- data$;
35927
- constructor(err, httpMeta) {
35928
- const message = err.message || `API error occurred: ${JSON.stringify(err)}`;
35929
- super(message, httpMeta);
35930
- this.data$ = err;
35931
- this.name = "GetAgentTaskResponseBody";
35932
- }
35933
- };
35934
- GetAgentTaskResponseBody$inboundSchema = objectType({
35935
- message: stringType(),
35936
- request$: instanceOfType(Request),
35937
- response$: instanceOfType(Response),
35938
- body$: stringType()
35939
- }).transform((v2) => {
35940
- return new GetAgentTaskResponseBody(v2, {
35941
- request: v2.request$,
35942
- response: v2.response$,
35943
- body: v2.body$
35944
- });
35945
- });
35946
- GetAgentTaskResponseBody$outboundSchema = instanceOfType(GetAgentTaskResponseBody).transform((v2) => v2.data$).pipe(objectType({
35947
- message: stringType()
35948
- }));
35949
- });
35950
-
35951
35920
  // src/models/errors/getevals.ts
35952
35921
  var GetEvalsResponseBody, GetEvalsResponseBody$inboundSchema, GetEvalsResponseBody$outboundSchema;
35953
35922
  var init_getevals = __esm(() => {
@@ -36338,7 +36307,6 @@ var init_errors2 = __esm(() => {
36338
36307
  init_deletecontact();
36339
36308
  init_deleteeval();
36340
36309
  init_getagent();
36341
- init_getagenttask();
36342
36310
  init_getevals();
36343
36311
  init_getpromptversion();
36344
36312
  init_honoapierror();
@@ -38542,7 +38510,7 @@ var init_createbudget = __esm(() => {
38542
38510
  is_active: booleanType(),
38543
38511
  consumption: lazyType(() => Consumption$inboundSchema).optional(),
38544
38512
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
38545
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.769Z").transform((v2) => new Date(v2))
38513
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:05.297Z").transform((v2) => new Date(v2))
38546
38514
  }).transform((v2) => {
38547
38515
  return remap(v2, {
38548
38516
  _id: "id",
@@ -38560,7 +38528,7 @@ var init_createbudget = __esm(() => {
38560
38528
  isActive: booleanType(),
38561
38529
  consumption: lazyType(() => Consumption$outboundSchema).optional(),
38562
38530
  created: dateType().transform((v2) => v2.toISOString()).optional(),
38563
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.769Z")).transform((v2) => v2.toISOString())
38531
+ updated: dateType().default(() => new Date("2025-11-20T07:47:05.297Z")).transform((v2) => v2.toISOString())
38564
38532
  }).transform((v2) => {
38565
38533
  return remap(v2, {
38566
38534
  id: "_id",
@@ -38700,7 +38668,7 @@ var init_createcontact = __esm(() => {
38700
38668
  tags: arrayType(stringType()).optional(),
38701
38669
  metadata: recordType(anyType()).optional(),
38702
38670
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
38703
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
38671
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
38704
38672
  }).transform((v2) => {
38705
38673
  return remap(v2, {
38706
38674
  _id: "id",
@@ -38720,7 +38688,7 @@ var init_createcontact = __esm(() => {
38720
38688
  tags: arrayType(stringType()).optional(),
38721
38689
  metadata: recordType(anyType()).optional(),
38722
38690
  created: dateType().transform((v2) => v2.toISOString()).optional(),
38723
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
38691
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
38724
38692
  }).transform((v2) => {
38725
38693
  return remap(v2, {
38726
38694
  id: "_id",
@@ -38780,7 +38748,7 @@ var init_createdataset = __esm(() => {
38780
38748
  created_by_id: stringType().optional(),
38781
38749
  updated_by_id: stringType().optional(),
38782
38750
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
38783
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
38751
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
38784
38752
  }).transform((v2) => {
38785
38753
  return remap(v2, {
38786
38754
  _id: "id",
@@ -38800,7 +38768,7 @@ var init_createdataset = __esm(() => {
38800
38768
  createdById: stringType().optional(),
38801
38769
  updatedById: stringType().optional(),
38802
38770
  created: dateType().transform((v2) => v2.toISOString()).optional(),
38803
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
38771
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
38804
38772
  }).transform((v2) => {
38805
38773
  return remap(v2, {
38806
38774
  id: "_id",
@@ -39874,7 +39842,7 @@ var init_createdatasetitem = __esm(() => {
39874
39842
  human_review_id: stringType(),
39875
39843
  source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
39876
39844
  reviewed_by_id: stringType(),
39877
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.334Z").transform((v2) => new Date(v2)),
39845
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.860Z").transform((v2) => new Date(v2)),
39878
39846
  type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
39879
39847
  values: arrayType(stringType())
39880
39848
  }).transform((v2) => {
@@ -39891,7 +39859,7 @@ var init_createdatasetitem = __esm(() => {
39891
39859
  humanReviewId: stringType(),
39892
39860
  source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
39893
39861
  reviewedById: stringType(),
39894
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.334Z")).transform((v2) => v2.toISOString()),
39862
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.860Z")).transform((v2) => v2.toISOString()),
39895
39863
  type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
39896
39864
  values: arrayType(stringType())
39897
39865
  }).transform((v2) => {
@@ -39914,7 +39882,7 @@ var init_createdatasetitem = __esm(() => {
39914
39882
  human_review_id: stringType(),
39915
39883
  source: EvaluationsSource$inboundSchema.default("orq"),
39916
39884
  reviewed_by_id: stringType(),
39917
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.334Z").transform((v2) => new Date(v2)),
39885
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.859Z").transform((v2) => new Date(v2)),
39918
39886
  type: CreateDatasetItemEvaluationsType$inboundSchema,
39919
39887
  value: numberType()
39920
39888
  }).transform((v2) => {
@@ -39931,7 +39899,7 @@ var init_createdatasetitem = __esm(() => {
39931
39899
  humanReviewId: stringType(),
39932
39900
  source: EvaluationsSource$outboundSchema.default("orq"),
39933
39901
  reviewedById: stringType(),
39934
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.334Z")).transform((v2) => v2.toISOString()),
39902
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.859Z")).transform((v2) => v2.toISOString()),
39935
39903
  type: CreateDatasetItemEvaluationsType$outboundSchema,
39936
39904
  value: numberType()
39937
39905
  }).transform((v2) => {
@@ -39954,7 +39922,7 @@ var init_createdatasetitem = __esm(() => {
39954
39922
  human_review_id: stringType(),
39955
39923
  source: Source$inboundSchema.default("orq"),
39956
39924
  reviewed_by_id: stringType(),
39957
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.333Z").transform((v2) => new Date(v2)),
39925
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.858Z").transform((v2) => new Date(v2)),
39958
39926
  type: EvaluationsType$inboundSchema,
39959
39927
  value: stringType()
39960
39928
  }).transform((v2) => {
@@ -39971,7 +39939,7 @@ var init_createdatasetitem = __esm(() => {
39971
39939
  humanReviewId: stringType(),
39972
39940
  source: Source$outboundSchema.default("orq"),
39973
39941
  reviewedById: stringType(),
39974
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.333Z")).transform((v2) => v2.toISOString()),
39942
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.858Z")).transform((v2) => v2.toISOString()),
39975
39943
  type: EvaluationsType$outboundSchema,
39976
39944
  value: stringType()
39977
39945
  }).transform((v2) => {
@@ -40014,7 +39982,7 @@ var init_createdatasetitem = __esm(() => {
40014
39982
  created_by_id: stringType().optional(),
40015
39983
  updated_by_id: stringType().optional(),
40016
39984
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
40017
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
39985
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
40018
39986
  }).transform((v2) => {
40019
39987
  return remap(v2, {
40020
39988
  _id: "id",
@@ -40048,7 +40016,7 @@ var init_createdatasetitem = __esm(() => {
40048
40016
  createdById: stringType().optional(),
40049
40017
  updatedById: stringType().optional(),
40050
40018
  created: dateType().transform((v2) => v2.toISOString()).optional(),
40051
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
40019
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
40052
40020
  }).transform((v2) => {
40053
40021
  return remap(v2, {
40054
40022
  id: "_id",
@@ -40227,7 +40195,7 @@ var init_createdatasource = __esm(() => {
40227
40195
  CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
40228
40196
  CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
40229
40197
  CreateDatasourceResponseBody$inboundSchema = objectType({
40230
- _id: stringType().default("01KADY1D7Z4AP684MC2QP42J6M"),
40198
+ _id: stringType().default("01KAG3PQCJY0F56DPNVGJ16H9W"),
40231
40199
  display_name: stringType(),
40232
40200
  description: stringType().optional(),
40233
40201
  status: CreateDatasourceStatus$inboundSchema,
@@ -40250,7 +40218,7 @@ var init_createdatasource = __esm(() => {
40250
40218
  });
40251
40219
  });
40252
40220
  CreateDatasourceResponseBody$outboundSchema = objectType({
40253
- id: stringType().default("01KADY1D7Z4AP684MC2QP42J6M"),
40221
+ id: stringType().default("01KAG3PQCJY0F56DPNVGJ16H9W"),
40254
40222
  displayName: stringType(),
40255
40223
  description: stringType().optional(),
40256
40224
  status: CreateDatasourceStatus$outboundSchema,
@@ -40971,8 +40939,8 @@ var init_createeval2 = __esm(() => {
40971
40939
  Typescript$inboundSchema = objectType({
40972
40940
  _id: stringType(),
40973
40941
  description: stringType(),
40974
- created: stringType().default("2025-11-19T11:29:37.418Z"),
40975
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
40942
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
40943
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
40976
40944
  guardrail_config: unionType([
40977
40945
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
40978
40946
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
@@ -40989,8 +40957,8 @@ var init_createeval2 = __esm(() => {
40989
40957
  Typescript$outboundSchema = objectType({
40990
40958
  id: stringType(),
40991
40959
  description: stringType(),
40992
- created: stringType().default("2025-11-19T11:29:37.418Z"),
40993
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
40960
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
40961
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
40994
40962
  guardrailConfig: unionType([
40995
40963
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
40996
40964
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
@@ -41047,8 +41015,8 @@ var init_createeval2 = __esm(() => {
41047
41015
  Ragas$inboundSchema = objectType({
41048
41016
  _id: stringType(),
41049
41017
  description: stringType(),
41050
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41051
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41018
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41019
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41052
41020
  guardrail_config: unionType([
41053
41021
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
41054
41022
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
@@ -41067,8 +41035,8 @@ var init_createeval2 = __esm(() => {
41067
41035
  Ragas$outboundSchema = objectType({
41068
41036
  id: stringType(),
41069
41037
  description: stringType(),
41070
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41071
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41038
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41039
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41072
41040
  guardrailConfig: unionType([
41073
41041
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
41074
41042
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
@@ -41505,8 +41473,8 @@ var init_createeval2 = __esm(() => {
41505
41473
  CreateEvalResponseBodyFunction$inboundSchema = objectType({
41506
41474
  _id: stringType(),
41507
41475
  description: stringType(),
41508
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41509
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41476
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41477
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41510
41478
  guardrail_config: unionType([
41511
41479
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
41512
41480
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
@@ -41560,8 +41528,8 @@ var init_createeval2 = __esm(() => {
41560
41528
  CreateEvalResponseBodyFunction$outboundSchema = objectType({
41561
41529
  id: stringType(),
41562
41530
  description: stringType(),
41563
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41564
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41531
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41532
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41565
41533
  guardrailConfig: unionType([
41566
41534
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
41567
41535
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
@@ -41653,8 +41621,8 @@ var init_createeval2 = __esm(() => {
41653
41621
  ResponseBodyPython$inboundSchema = objectType({
41654
41622
  _id: stringType(),
41655
41623
  description: stringType(),
41656
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41657
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41624
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41625
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41658
41626
  guardrail_config: unionType([
41659
41627
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
41660
41628
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -41671,8 +41639,8 @@ var init_createeval2 = __esm(() => {
41671
41639
  ResponseBodyPython$outboundSchema = objectType({
41672
41640
  id: stringType(),
41673
41641
  description: stringType(),
41674
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41675
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41642
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41643
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41676
41644
  guardrailConfig: unionType([
41677
41645
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
41678
41646
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -41729,8 +41697,8 @@ var init_createeval2 = __esm(() => {
41729
41697
  ResponseBodyHTTP$inboundSchema = objectType({
41730
41698
  _id: stringType(),
41731
41699
  description: stringType(),
41732
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41733
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41700
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41701
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41734
41702
  guardrail_config: unionType([
41735
41703
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
41736
41704
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -41750,8 +41718,8 @@ var init_createeval2 = __esm(() => {
41750
41718
  ResponseBodyHTTP$outboundSchema = objectType({
41751
41719
  id: stringType(),
41752
41720
  description: stringType(),
41753
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41754
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41721
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41722
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41755
41723
  guardrailConfig: unionType([
41756
41724
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
41757
41725
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -41809,8 +41777,8 @@ var init_createeval2 = __esm(() => {
41809
41777
  ResponseBodyJSON$inboundSchema = objectType({
41810
41778
  _id: stringType(),
41811
41779
  description: stringType(),
41812
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41813
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41780
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41781
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41814
41782
  guardrail_config: unionType([
41815
41783
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
41816
41784
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -41827,8 +41795,8 @@ var init_createeval2 = __esm(() => {
41827
41795
  ResponseBodyJSON$outboundSchema = objectType({
41828
41796
  id: stringType(),
41829
41797
  description: stringType(),
41830
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41831
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41798
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41799
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41832
41800
  guardrailConfig: unionType([
41833
41801
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
41834
41802
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -41883,8 +41851,8 @@ var init_createeval2 = __esm(() => {
41883
41851
  ResponseBodyLLM$inboundSchema = objectType({
41884
41852
  _id: stringType(),
41885
41853
  description: stringType(),
41886
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41887
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41854
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41855
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41888
41856
  guardrail_config: unionType([
41889
41857
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
41890
41858
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -41902,8 +41870,8 @@ var init_createeval2 = __esm(() => {
41902
41870
  ResponseBodyLLM$outboundSchema = objectType({
41903
41871
  id: stringType(),
41904
41872
  description: stringType(),
41905
- created: stringType().default("2025-11-19T11:29:37.418Z"),
41906
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
41873
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
41874
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
41907
41875
  guardrailConfig: unionType([
41908
41876
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
41909
41877
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -44237,12 +44205,12 @@ var init_createprompt = __esm(() => {
44237
44205
  });
44238
44206
 
44239
44207
  // src/models/operations/createtool.ts
44240
- var CreateToolRequestBodyToolsRequest5Status, CreateToolRequestBodyToolsRequest5Type, CreateToolRequestBodyToolsRequest5CodeToolType, RequestBodyLanguage, CreateToolRequestBodyToolsRequestStatus, CreateToolRequestBodyToolsRequest4Type, RequestBodyConnectionType, CreateToolRequestBodyToolsStatus, CreateToolRequestBodyToolsRequestType, CreateToolRequestBodyMethod, CreateToolRequestBodyToolsRequest3Type, CreateToolRequestBodyStatus, CreateToolRequestBodyToolsType, RequestBodyStatus, CreateToolRequestBodyType, CreateToolRequestBodyToolsRequest1Type, CreateToolResponseBodyToolsResponse200Status, CreateToolResponseBodyToolsResponse200ApplicationJSONType, CreateToolResponseBodyToolsResponse200ApplicationJson5Type, ResponseBodyLanguage, CreateToolResponseBodyToolsResponseStatus, CreateToolResponseBodyToolsResponse200Type, CreateToolResponseBodyToolsResponse200ApplicationJson4Type, ResponseBodyConnectionType, CreateToolResponseBodyToolsStatus, CreateToolResponseBodyToolsResponseType, CreateToolResponseBodyMethod, CreateToolResponseBodyToolsResponse200ApplicationJson3Type, CreateToolResponseBodyStatus, CreateToolResponseBodyToolsType, ResponseBodyStatus, CreateToolResponseBodyType, CreateToolResponseBodyToolsResponse200ApplicationJson1Type, CreateToolRequestBodyToolsRequest5Status$inboundSchema, CreateToolRequestBodyToolsRequest5Status$outboundSchema, CreateToolRequestBodyToolsRequest5Type$inboundSchema, CreateToolRequestBodyToolsRequest5Type$outboundSchema, CreateToolRequestBodyToolsRequest5CodeToolType$inboundSchema, CreateToolRequestBodyToolsRequest5CodeToolType$outboundSchema, CreateToolRequestBodyParameters$inboundSchema, CreateToolRequestBodyParameters$outboundSchema, RequestBodyLanguage$inboundSchema, RequestBodyLanguage$outboundSchema, RequestBodyCodeTool$inboundSchema, RequestBodyCodeTool$outboundSchema, RequestBodyCodeExecutionTool$inboundSchema, RequestBodyCodeExecutionTool$outboundSchema, CreateToolRequestBodyToolsRequestStatus$inboundSchema, CreateToolRequestBodyToolsRequestStatus$outboundSchema, CreateToolRequestBodyToolsRequest4Type$inboundSchema, CreateToolRequestBodyToolsRequest4Type$outboundSchema, RequestBodyHeaders$inboundSchema, RequestBodyHeaders$outboundSchema, RequestBodyConnectionType$inboundSchema, RequestBodyConnectionType$outboundSchema, RequestBodyMcp$inboundSchema, RequestBodyMcp$outboundSchema, RequestBodyMCPTool$inboundSchema, RequestBodyMCPTool$outboundSchema, CreateToolRequestBodyToolsStatus$inboundSchema, CreateToolRequestBodyToolsStatus$outboundSchema, CreateToolRequestBodyToolsRequestType$inboundSchema, CreateToolRequestBodyToolsRequestType$outboundSchema, CreateToolRequestBodyMethod$inboundSchema, CreateToolRequestBodyMethod$outboundSchema, CreateToolHeaders2$inboundSchema, CreateToolHeaders2$outboundSchema, CreateToolRequestBodyHeaders$inboundSchema, CreateToolRequestBodyHeaders$outboundSchema, RequestBodyBlueprint$inboundSchema, RequestBodyBlueprint$outboundSchema, CreateToolRequestBodyToolsRequest3Type$inboundSchema, CreateToolRequestBodyToolsRequest3Type$outboundSchema, RequestBodyDefaultValue$inboundSchema, RequestBodyDefaultValue$outboundSchema, RequestBodyArguments$inboundSchema, RequestBodyArguments$outboundSchema, CreateToolRequestBodyHttp$inboundSchema, CreateToolRequestBodyHttp$outboundSchema, RequestBodyHTTPTool$inboundSchema, RequestBodyHTTPTool$outboundSchema, CreateToolRequestBodyStatus$inboundSchema, CreateToolRequestBodyStatus$outboundSchema, CreateToolRequestBodyToolsType$inboundSchema, CreateToolRequestBodyToolsType$outboundSchema, RequestBodySchema$inboundSchema, RequestBodySchema$outboundSchema, RequestBodyJsonSchema$inboundSchema, RequestBodyJsonSchema$outboundSchema, JSONSchemaTool$inboundSchema, JSONSchemaTool$outboundSchema, RequestBodyStatus$inboundSchema, RequestBodyStatus$outboundSchema, CreateToolRequestBodyType$inboundSchema, CreateToolRequestBodyType$outboundSchema, CreateToolRequestBodyToolsRequest1Type$inboundSchema, CreateToolRequestBodyToolsRequest1Type$outboundSchema, RequestBodyParameters$inboundSchema, RequestBodyParameters$outboundSchema, RequestBodyFunction$inboundSchema, RequestBodyFunction$outboundSchema, RequestBodyFunctionTool$inboundSchema, RequestBodyFunctionTool$outboundSchema, CreateToolRequestBody$inboundSchema, CreateToolRequestBody$outboundSchema, CreateToolResponseBodyToolsResponse200Status$inboundSchema, CreateToolResponseBodyToolsResponse200Status$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJSONType$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJSONType$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson5Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson5Type$outboundSchema, CreateToolResponseBodyParameters$inboundSchema, CreateToolResponseBodyParameters$outboundSchema, ResponseBodyLanguage$inboundSchema, ResponseBodyLanguage$outboundSchema, ResponseBodyCodeTool$inboundSchema, ResponseBodyCodeTool$outboundSchema, ResponseBody5$inboundSchema, ResponseBody5$outboundSchema, CreateToolResponseBodyToolsResponseStatus$inboundSchema, CreateToolResponseBodyToolsResponseStatus$outboundSchema, CreateToolResponseBodyToolsResponse200Type$inboundSchema, CreateToolResponseBodyToolsResponse200Type$outboundSchema, ResponseBodyHeaders$inboundSchema, ResponseBodyHeaders$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson4Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson4Type$outboundSchema, CreateToolResponseBodySchema$inboundSchema, CreateToolResponseBodySchema$outboundSchema, ResponseBodyTools$inboundSchema, ResponseBodyTools$outboundSchema, ResponseBodyConnectionType$inboundSchema, ResponseBodyConnectionType$outboundSchema, ResponseBodyMcp$inboundSchema, ResponseBodyMcp$outboundSchema, ResponseBody4$inboundSchema, ResponseBody4$outboundSchema, CreateToolResponseBodyToolsStatus$inboundSchema, CreateToolResponseBodyToolsStatus$outboundSchema, CreateToolResponseBodyToolsResponseType$inboundSchema, CreateToolResponseBodyToolsResponseType$outboundSchema, CreateToolResponseBodyMethod$inboundSchema, CreateToolResponseBodyMethod$outboundSchema, CreateToolHeadersTools2$inboundSchema, CreateToolHeadersTools2$outboundSchema, CreateToolResponseBodyHeaders$inboundSchema, CreateToolResponseBodyHeaders$outboundSchema, ResponseBodyBlueprint$inboundSchema, ResponseBodyBlueprint$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson3Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson3Type$outboundSchema, ResponseBodyDefaultValue$inboundSchema, ResponseBodyDefaultValue$outboundSchema, ResponseBodyArguments$inboundSchema, ResponseBodyArguments$outboundSchema, CreateToolResponseBodyHttp$inboundSchema, CreateToolResponseBodyHttp$outboundSchema, ResponseBody3$inboundSchema, ResponseBody3$outboundSchema, CreateToolResponseBodyStatus$inboundSchema, CreateToolResponseBodyStatus$outboundSchema, CreateToolResponseBodyToolsType$inboundSchema, CreateToolResponseBodyToolsType$outboundSchema, ResponseBodySchema$inboundSchema, ResponseBodySchema$outboundSchema, ResponseBodyJsonSchema$inboundSchema, ResponseBodyJsonSchema$outboundSchema, ResponseBody2$inboundSchema, ResponseBody2$outboundSchema, ResponseBodyStatus$inboundSchema, ResponseBodyStatus$outboundSchema, CreateToolResponseBodyType$inboundSchema, CreateToolResponseBodyType$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson1Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson1Type$outboundSchema, ResponseBodyParameters$inboundSchema, ResponseBodyParameters$outboundSchema, CreateToolResponseBodyFunction$inboundSchema, CreateToolResponseBodyFunction$outboundSchema, ResponseBody1$inboundSchema, ResponseBody1$outboundSchema, CreateToolResponseBody$inboundSchema, CreateToolResponseBody$outboundSchema;
44208
+ var CreateToolRequestBodyToolsRequestStatus, CreateToolRequestBodyToolsRequest5Type, CreateToolRequestBodyToolsRequest5CodeToolType, RequestBodyLanguage, CreateToolRequestBodyToolsStatus, CreateToolRequestBodyToolsRequest4Type, RequestBodyConnectionType, CreateToolRequestBodyStatus, CreateToolRequestBodyToolsRequestType, CreateToolRequestBodyMethod, CreateToolRequestBodyToolsRequest3Type, RequestBodyStatus, CreateToolRequestBodyToolsType, CreateToolRequestBodyToolsRequest1Status, CreateToolRequestBodyType, CreateToolRequestBodyToolsRequest1Type, CreateToolResponseBodyToolsResponse200Status, CreateToolResponseBodyToolsResponse200ApplicationJSONType, CreateToolResponseBodyToolsResponse200ApplicationJson5Type, ResponseBodyLanguage, CreateToolResponseBodyToolsResponseStatus, CreateToolResponseBodyToolsResponse200Type, CreateToolResponseBodyToolsResponse200ApplicationJson4Type, ResponseBodyConnectionType, CreateToolResponseBodyToolsStatus, CreateToolResponseBodyToolsResponseType, CreateToolResponseBodyMethod, CreateToolResponseBodyToolsResponse200ApplicationJson3Type, CreateToolResponseBodyStatus, CreateToolResponseBodyToolsType, ResponseBodyStatus, CreateToolResponseBodyType, CreateToolResponseBodyToolsResponse200ApplicationJson1Type, CreateToolRequestBodyToolsRequestStatus$inboundSchema, CreateToolRequestBodyToolsRequestStatus$outboundSchema, CreateToolRequestBodyToolsRequest5Type$inboundSchema, CreateToolRequestBodyToolsRequest5Type$outboundSchema, CreateToolRequestBodyToolsRequest5CodeToolType$inboundSchema, CreateToolRequestBodyToolsRequest5CodeToolType$outboundSchema, CreateToolRequestBodyParameters$inboundSchema, CreateToolRequestBodyParameters$outboundSchema, RequestBodyLanguage$inboundSchema, RequestBodyLanguage$outboundSchema, RequestBodyCodeTool$inboundSchema, RequestBodyCodeTool$outboundSchema, RequestBodyCodeExecutionTool$inboundSchema, RequestBodyCodeExecutionTool$outboundSchema, CreateToolRequestBodyToolsStatus$inboundSchema, CreateToolRequestBodyToolsStatus$outboundSchema, CreateToolRequestBodyToolsRequest4Type$inboundSchema, CreateToolRequestBodyToolsRequest4Type$outboundSchema, RequestBodyHeaders$inboundSchema, RequestBodyHeaders$outboundSchema, RequestBodyConnectionType$inboundSchema, RequestBodyConnectionType$outboundSchema, RequestBodyMcp$inboundSchema, RequestBodyMcp$outboundSchema, RequestBodyMCPTool$inboundSchema, RequestBodyMCPTool$outboundSchema, CreateToolRequestBodyStatus$inboundSchema, CreateToolRequestBodyStatus$outboundSchema, CreateToolRequestBodyToolsRequestType$inboundSchema, CreateToolRequestBodyToolsRequestType$outboundSchema, CreateToolRequestBodyMethod$inboundSchema, CreateToolRequestBodyMethod$outboundSchema, CreateToolHeaders2$inboundSchema, CreateToolHeaders2$outboundSchema, CreateToolRequestBodyHeaders$inboundSchema, CreateToolRequestBodyHeaders$outboundSchema, RequestBodyBlueprint$inboundSchema, RequestBodyBlueprint$outboundSchema, CreateToolRequestBodyToolsRequest3Type$inboundSchema, CreateToolRequestBodyToolsRequest3Type$outboundSchema, RequestBodyDefaultValue$inboundSchema, RequestBodyDefaultValue$outboundSchema, RequestBodyArguments$inboundSchema, RequestBodyArguments$outboundSchema, CreateToolRequestBodyHttp$inboundSchema, CreateToolRequestBodyHttp$outboundSchema, RequestBodyHTTPTool$inboundSchema, RequestBodyHTTPTool$outboundSchema, RequestBodyStatus$inboundSchema, RequestBodyStatus$outboundSchema, CreateToolRequestBodyToolsType$inboundSchema, CreateToolRequestBodyToolsType$outboundSchema, RequestBodySchema$inboundSchema, RequestBodySchema$outboundSchema, RequestBodyJsonSchema$inboundSchema, RequestBodyJsonSchema$outboundSchema, JSONSchemaTool$inboundSchema, JSONSchemaTool$outboundSchema, CreateToolRequestBodyToolsRequest1Status$inboundSchema, CreateToolRequestBodyToolsRequest1Status$outboundSchema, CreateToolRequestBodyType$inboundSchema, CreateToolRequestBodyType$outboundSchema, CreateToolRequestBodyToolsRequest1Type$inboundSchema, CreateToolRequestBodyToolsRequest1Type$outboundSchema, RequestBodyParameters$inboundSchema, RequestBodyParameters$outboundSchema, RequestBodyFunction$inboundSchema, RequestBodyFunction$outboundSchema, RequestBodyFunctionTool$inboundSchema, RequestBodyFunctionTool$outboundSchema, CreateToolRequestBody$inboundSchema, CreateToolRequestBody$outboundSchema, CreateToolResponseBodyToolsResponse200Status$inboundSchema, CreateToolResponseBodyToolsResponse200Status$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJSONType$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJSONType$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson5Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson5Type$outboundSchema, CreateToolResponseBodyParameters$inboundSchema, CreateToolResponseBodyParameters$outboundSchema, ResponseBodyLanguage$inboundSchema, ResponseBodyLanguage$outboundSchema, ResponseBodyCodeTool$inboundSchema, ResponseBodyCodeTool$outboundSchema, ResponseBody5$inboundSchema, ResponseBody5$outboundSchema, CreateToolResponseBodyToolsResponseStatus$inboundSchema, CreateToolResponseBodyToolsResponseStatus$outboundSchema, CreateToolResponseBodyToolsResponse200Type$inboundSchema, CreateToolResponseBodyToolsResponse200Type$outboundSchema, ResponseBodyHeaders$inboundSchema, ResponseBodyHeaders$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson4Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson4Type$outboundSchema, CreateToolResponseBodySchema$inboundSchema, CreateToolResponseBodySchema$outboundSchema, ResponseBodyTools$inboundSchema, ResponseBodyTools$outboundSchema, ResponseBodyConnectionType$inboundSchema, ResponseBodyConnectionType$outboundSchema, ResponseBodyMcp$inboundSchema, ResponseBodyMcp$outboundSchema, ResponseBody4$inboundSchema, ResponseBody4$outboundSchema, CreateToolResponseBodyToolsStatus$inboundSchema, CreateToolResponseBodyToolsStatus$outboundSchema, CreateToolResponseBodyToolsResponseType$inboundSchema, CreateToolResponseBodyToolsResponseType$outboundSchema, CreateToolResponseBodyMethod$inboundSchema, CreateToolResponseBodyMethod$outboundSchema, CreateToolHeadersTools2$inboundSchema, CreateToolHeadersTools2$outboundSchema, CreateToolResponseBodyHeaders$inboundSchema, CreateToolResponseBodyHeaders$outboundSchema, ResponseBodyBlueprint$inboundSchema, ResponseBodyBlueprint$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson3Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson3Type$outboundSchema, ResponseBodyDefaultValue$inboundSchema, ResponseBodyDefaultValue$outboundSchema, ResponseBodyArguments$inboundSchema, ResponseBodyArguments$outboundSchema, CreateToolResponseBodyHttp$inboundSchema, CreateToolResponseBodyHttp$outboundSchema, ResponseBody3$inboundSchema, ResponseBody3$outboundSchema, CreateToolResponseBodyStatus$inboundSchema, CreateToolResponseBodyStatus$outboundSchema, CreateToolResponseBodyToolsType$inboundSchema, CreateToolResponseBodyToolsType$outboundSchema, ResponseBodySchema$inboundSchema, ResponseBodySchema$outboundSchema, ResponseBodyJsonSchema$inboundSchema, ResponseBodyJsonSchema$outboundSchema, ResponseBody2$inboundSchema, ResponseBody2$outboundSchema, ResponseBodyStatus$inboundSchema, ResponseBodyStatus$outboundSchema, CreateToolResponseBodyType$inboundSchema, CreateToolResponseBodyType$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson1Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson1Type$outboundSchema, ResponseBodyParameters$inboundSchema, ResponseBodyParameters$outboundSchema, CreateToolResponseBodyFunction$inboundSchema, CreateToolResponseBodyFunction$outboundSchema, ResponseBody1$inboundSchema, ResponseBody1$outboundSchema, CreateToolResponseBody$inboundSchema, CreateToolResponseBody$outboundSchema;
44241
44209
  var init_createtool = __esm(() => {
44242
44210
  init_esm();
44243
44211
  init_primitives();
44244
44212
  init_schemas();
44245
- CreateToolRequestBodyToolsRequest5Status = {
44213
+ CreateToolRequestBodyToolsRequestStatus = {
44246
44214
  Live: "live",
44247
44215
  Draft: "draft",
44248
44216
  Pending: "pending",
@@ -44257,7 +44225,7 @@ var init_createtool = __esm(() => {
44257
44225
  RequestBodyLanguage = {
44258
44226
  Python: "python"
44259
44227
  };
44260
- CreateToolRequestBodyToolsRequestStatus = {
44228
+ CreateToolRequestBodyToolsStatus = {
44261
44229
  Live: "live",
44262
44230
  Draft: "draft",
44263
44231
  Pending: "pending",
@@ -44270,7 +44238,7 @@ var init_createtool = __esm(() => {
44270
44238
  Http: "http",
44271
44239
  Sse: "sse"
44272
44240
  };
44273
- CreateToolRequestBodyToolsStatus = {
44241
+ CreateToolRequestBodyStatus = {
44274
44242
  Live: "live",
44275
44243
  Draft: "draft",
44276
44244
  Pending: "pending",
@@ -44290,7 +44258,7 @@ var init_createtool = __esm(() => {
44290
44258
  Number: "number",
44291
44259
  Boolean: "boolean"
44292
44260
  };
44293
- CreateToolRequestBodyStatus = {
44261
+ RequestBodyStatus = {
44294
44262
  Live: "live",
44295
44263
  Draft: "draft",
44296
44264
  Pending: "pending",
@@ -44299,7 +44267,7 @@ var init_createtool = __esm(() => {
44299
44267
  CreateToolRequestBodyToolsType = {
44300
44268
  JsonSchema: "json_schema"
44301
44269
  };
44302
- RequestBodyStatus = {
44270
+ CreateToolRequestBodyToolsRequest1Status = {
44303
44271
  Live: "live",
44304
44272
  Draft: "draft",
44305
44273
  Pending: "pending",
@@ -44383,8 +44351,8 @@ var init_createtool = __esm(() => {
44383
44351
  CreateToolResponseBodyToolsResponse200ApplicationJson1Type = {
44384
44352
  Object: "object"
44385
44353
  };
44386
- CreateToolRequestBodyToolsRequest5Status$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsRequest5Status);
44387
- CreateToolRequestBodyToolsRequest5Status$outboundSchema = CreateToolRequestBodyToolsRequest5Status$inboundSchema;
44354
+ CreateToolRequestBodyToolsRequestStatus$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsRequestStatus);
44355
+ CreateToolRequestBodyToolsRequestStatus$outboundSchema = CreateToolRequestBodyToolsRequestStatus$inboundSchema;
44388
44356
  CreateToolRequestBodyToolsRequest5Type$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsRequest5Type);
44389
44357
  CreateToolRequestBodyToolsRequest5Type$outboundSchema = CreateToolRequestBodyToolsRequest5Type$inboundSchema;
44390
44358
  CreateToolRequestBodyToolsRequest5CodeToolType$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsRequest5CodeToolType);
@@ -44424,7 +44392,7 @@ var init_createtool = __esm(() => {
44424
44392
  key: stringType(),
44425
44393
  display_name: stringType().optional(),
44426
44394
  description: stringType(),
44427
- status: CreateToolRequestBodyToolsRequest5Status$inboundSchema.default("live"),
44395
+ status: CreateToolRequestBodyToolsRequestStatus$inboundSchema.default("live"),
44428
44396
  type: CreateToolRequestBodyToolsRequest5Type$inboundSchema,
44429
44397
  code_tool: lazyType(() => RequestBodyCodeTool$inboundSchema)
44430
44398
  }).transform((v2) => {
@@ -44438,7 +44406,7 @@ var init_createtool = __esm(() => {
44438
44406
  key: stringType(),
44439
44407
  displayName: stringType().optional(),
44440
44408
  description: stringType(),
44441
- status: CreateToolRequestBodyToolsRequest5Status$outboundSchema.default("live"),
44409
+ status: CreateToolRequestBodyToolsRequestStatus$outboundSchema.default("live"),
44442
44410
  type: CreateToolRequestBodyToolsRequest5Type$outboundSchema,
44443
44411
  codeTool: lazyType(() => RequestBodyCodeTool$outboundSchema)
44444
44412
  }).transform((v2) => {
@@ -44447,8 +44415,8 @@ var init_createtool = __esm(() => {
44447
44415
  codeTool: "code_tool"
44448
44416
  });
44449
44417
  });
44450
- CreateToolRequestBodyToolsRequestStatus$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsRequestStatus);
44451
- CreateToolRequestBodyToolsRequestStatus$outboundSchema = CreateToolRequestBodyToolsRequestStatus$inboundSchema;
44418
+ CreateToolRequestBodyToolsStatus$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsStatus);
44419
+ CreateToolRequestBodyToolsStatus$outboundSchema = CreateToolRequestBodyToolsStatus$inboundSchema;
44452
44420
  CreateToolRequestBodyToolsRequest4Type$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsRequest4Type);
44453
44421
  CreateToolRequestBodyToolsRequest4Type$outboundSchema = CreateToolRequestBodyToolsRequest4Type$inboundSchema;
44454
44422
  RequestBodyHeaders$inboundSchema = objectType({
@@ -44486,7 +44454,7 @@ var init_createtool = __esm(() => {
44486
44454
  key: stringType(),
44487
44455
  display_name: stringType().optional(),
44488
44456
  description: stringType(),
44489
- status: CreateToolRequestBodyToolsRequestStatus$inboundSchema.default("live"),
44457
+ status: CreateToolRequestBodyToolsStatus$inboundSchema.default("live"),
44490
44458
  type: CreateToolRequestBodyToolsRequest4Type$inboundSchema,
44491
44459
  mcp: lazyType(() => RequestBodyMcp$inboundSchema)
44492
44460
  }).transform((v2) => {
@@ -44499,7 +44467,7 @@ var init_createtool = __esm(() => {
44499
44467
  key: stringType(),
44500
44468
  displayName: stringType().optional(),
44501
44469
  description: stringType(),
44502
- status: CreateToolRequestBodyToolsRequestStatus$outboundSchema.default("live"),
44470
+ status: CreateToolRequestBodyToolsStatus$outboundSchema.default("live"),
44503
44471
  type: CreateToolRequestBodyToolsRequest4Type$outboundSchema,
44504
44472
  mcp: lazyType(() => RequestBodyMcp$outboundSchema)
44505
44473
  }).transform((v2) => {
@@ -44507,8 +44475,8 @@ var init_createtool = __esm(() => {
44507
44475
  displayName: "display_name"
44508
44476
  });
44509
44477
  });
44510
- CreateToolRequestBodyToolsStatus$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsStatus);
44511
- CreateToolRequestBodyToolsStatus$outboundSchema = CreateToolRequestBodyToolsStatus$inboundSchema;
44478
+ CreateToolRequestBodyStatus$inboundSchema = nativeEnumType(CreateToolRequestBodyStatus);
44479
+ CreateToolRequestBodyStatus$outboundSchema = CreateToolRequestBodyStatus$inboundSchema;
44512
44480
  CreateToolRequestBodyToolsRequestType$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsRequestType);
44513
44481
  CreateToolRequestBodyToolsRequestType$outboundSchema = CreateToolRequestBodyToolsRequestType$inboundSchema;
44514
44482
  CreateToolRequestBodyMethod$inboundSchema = nativeEnumType(CreateToolRequestBodyMethod);
@@ -44574,7 +44542,7 @@ var init_createtool = __esm(() => {
44574
44542
  key: stringType(),
44575
44543
  display_name: stringType().optional(),
44576
44544
  description: stringType(),
44577
- status: CreateToolRequestBodyToolsStatus$inboundSchema.default("live"),
44545
+ status: CreateToolRequestBodyStatus$inboundSchema.default("live"),
44578
44546
  type: CreateToolRequestBodyToolsRequestType$inboundSchema,
44579
44547
  http: lazyType(() => CreateToolRequestBodyHttp$inboundSchema)
44580
44548
  }).transform((v2) => {
@@ -44587,7 +44555,7 @@ var init_createtool = __esm(() => {
44587
44555
  key: stringType(),
44588
44556
  displayName: stringType().optional(),
44589
44557
  description: stringType(),
44590
- status: CreateToolRequestBodyToolsStatus$outboundSchema.default("live"),
44558
+ status: CreateToolRequestBodyStatus$outboundSchema.default("live"),
44591
44559
  type: CreateToolRequestBodyToolsRequestType$outboundSchema,
44592
44560
  http: lazyType(() => CreateToolRequestBodyHttp$outboundSchema)
44593
44561
  }).transform((v2) => {
@@ -44595,8 +44563,8 @@ var init_createtool = __esm(() => {
44595
44563
  displayName: "display_name"
44596
44564
  });
44597
44565
  });
44598
- CreateToolRequestBodyStatus$inboundSchema = nativeEnumType(CreateToolRequestBodyStatus);
44599
- CreateToolRequestBodyStatus$outboundSchema = CreateToolRequestBodyStatus$inboundSchema;
44566
+ RequestBodyStatus$inboundSchema = nativeEnumType(RequestBodyStatus);
44567
+ RequestBodyStatus$outboundSchema = RequestBodyStatus$inboundSchema;
44600
44568
  CreateToolRequestBodyToolsType$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsType);
44601
44569
  CreateToolRequestBodyToolsType$outboundSchema = CreateToolRequestBodyToolsType$inboundSchema;
44602
44570
  RequestBodySchema$inboundSchema = collectExtraKeys(objectType({
@@ -44634,7 +44602,7 @@ var init_createtool = __esm(() => {
44634
44602
  key: stringType(),
44635
44603
  display_name: stringType().optional(),
44636
44604
  description: stringType(),
44637
- status: CreateToolRequestBodyStatus$inboundSchema.default("live"),
44605
+ status: RequestBodyStatus$inboundSchema.default("live"),
44638
44606
  type: CreateToolRequestBodyToolsType$inboundSchema,
44639
44607
  json_schema: lazyType(() => RequestBodyJsonSchema$inboundSchema)
44640
44608
  }).transform((v2) => {
@@ -44648,7 +44616,7 @@ var init_createtool = __esm(() => {
44648
44616
  key: stringType(),
44649
44617
  displayName: stringType().optional(),
44650
44618
  description: stringType(),
44651
- status: CreateToolRequestBodyStatus$outboundSchema.default("live"),
44619
+ status: RequestBodyStatus$outboundSchema.default("live"),
44652
44620
  type: CreateToolRequestBodyToolsType$outboundSchema,
44653
44621
  jsonSchema: lazyType(() => RequestBodyJsonSchema$outboundSchema)
44654
44622
  }).transform((v2) => {
@@ -44657,8 +44625,8 @@ var init_createtool = __esm(() => {
44657
44625
  jsonSchema: "json_schema"
44658
44626
  });
44659
44627
  });
44660
- RequestBodyStatus$inboundSchema = nativeEnumType(RequestBodyStatus);
44661
- RequestBodyStatus$outboundSchema = RequestBodyStatus$inboundSchema;
44628
+ CreateToolRequestBodyToolsRequest1Status$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsRequest1Status);
44629
+ CreateToolRequestBodyToolsRequest1Status$outboundSchema = CreateToolRequestBodyToolsRequest1Status$inboundSchema;
44662
44630
  CreateToolRequestBodyType$inboundSchema = nativeEnumType(CreateToolRequestBodyType);
44663
44631
  CreateToolRequestBodyType$outboundSchema = CreateToolRequestBodyType$inboundSchema;
44664
44632
  CreateToolRequestBodyToolsRequest1Type$inboundSchema = nativeEnumType(CreateToolRequestBodyToolsRequest1Type);
@@ -44698,7 +44666,7 @@ var init_createtool = __esm(() => {
44698
44666
  key: stringType(),
44699
44667
  display_name: stringType().optional(),
44700
44668
  description: stringType(),
44701
- status: RequestBodyStatus$inboundSchema.default("live"),
44669
+ status: CreateToolRequestBodyToolsRequest1Status$inboundSchema.default("live"),
44702
44670
  type: CreateToolRequestBodyType$inboundSchema,
44703
44671
  function: lazyType(() => RequestBodyFunction$inboundSchema)
44704
44672
  }).transform((v2) => {
@@ -44711,7 +44679,7 @@ var init_createtool = __esm(() => {
44711
44679
  key: stringType(),
44712
44680
  displayName: stringType().optional(),
44713
44681
  description: stringType(),
44714
- status: RequestBodyStatus$outboundSchema.default("live"),
44682
+ status: CreateToolRequestBodyToolsRequest1Status$outboundSchema.default("live"),
44715
44683
  type: CreateToolRequestBodyType$outboundSchema,
44716
44684
  function: lazyType(() => RequestBodyFunction$outboundSchema)
44717
44685
  }).transform((v2) => {
@@ -44770,7 +44738,7 @@ var init_createtool = __esm(() => {
44770
44738
  code: stringType()
44771
44739
  });
44772
44740
  ResponseBody5$inboundSchema = objectType({
44773
- _id: stringType().default("tool_01KADY1D2W9HEEJ3TC4EF6DKSP"),
44741
+ _id: stringType().default("tool_01KAG3PPZSGBE6VE08JS2TWA6F"),
44774
44742
  path: stringType(),
44775
44743
  key: stringType(),
44776
44744
  display_name: stringType().optional(),
@@ -44798,7 +44766,7 @@ var init_createtool = __esm(() => {
44798
44766
  });
44799
44767
  });
44800
44768
  ResponseBody5$outboundSchema = objectType({
44801
- id: stringType().default("tool_01KADY1D2W9HEEJ3TC4EF6DKSP"),
44769
+ id: stringType().default("tool_01KAG3PPZSGBE6VE08JS2TWA6F"),
44802
44770
  path: stringType(),
44803
44771
  key: stringType(),
44804
44772
  displayName: stringType().optional(),
@@ -44850,13 +44818,13 @@ var init_createtool = __esm(() => {
44850
44818
  required: arrayType(stringType()).optional()
44851
44819
  });
44852
44820
  ResponseBodyTools$inboundSchema = objectType({
44853
- id: stringType().default("01KADY1D2W6S0SBACYP79WH1BX"),
44821
+ id: stringType().default("01KAG3PPZR959F0965SQGCT4VM"),
44854
44822
  name: stringType(),
44855
44823
  description: stringType().optional(),
44856
44824
  schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
44857
44825
  });
44858
44826
  ResponseBodyTools$outboundSchema = objectType({
44859
- id: stringType().default("01KADY1D2W6S0SBACYP79WH1BX"),
44827
+ id: stringType().default("01KAG3PPZR959F0965SQGCT4VM"),
44860
44828
  name: stringType(),
44861
44829
  description: stringType().optional(),
44862
44830
  schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
@@ -44886,7 +44854,7 @@ var init_createtool = __esm(() => {
44886
44854
  });
44887
44855
  });
44888
44856
  ResponseBody4$inboundSchema = objectType({
44889
- _id: stringType().default("tool_01KADY1D2T2JZFDW2QHABJ8AMQ"),
44857
+ _id: stringType().default("tool_01KAG3PPZQVMFRWJDA0C4CSZ5M"),
44890
44858
  path: stringType(),
44891
44859
  key: stringType(),
44892
44860
  display_name: stringType().optional(),
@@ -44913,7 +44881,7 @@ var init_createtool = __esm(() => {
44913
44881
  });
44914
44882
  });
44915
44883
  ResponseBody4$outboundSchema = objectType({
44916
- id: stringType().default("tool_01KADY1D2T2JZFDW2QHABJ8AMQ"),
44884
+ id: stringType().default("tool_01KAG3PPZQVMFRWJDA0C4CSZ5M"),
44917
44885
  path: stringType(),
44918
44886
  key: stringType(),
44919
44887
  displayName: stringType().optional(),
@@ -45002,7 +44970,7 @@ var init_createtool = __esm(() => {
45002
44970
  arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
45003
44971
  });
45004
44972
  ResponseBody3$inboundSchema = objectType({
45005
- _id: stringType().default("tool_01KADY1D2QKTF1Q2VY62T8J58W"),
44973
+ _id: stringType().default("tool_01KAG3PPZME99DVJRJF58NNWEE"),
45006
44974
  path: stringType(),
45007
44975
  key: stringType(),
45008
44976
  display_name: stringType().optional(),
@@ -45029,7 +44997,7 @@ var init_createtool = __esm(() => {
45029
44997
  });
45030
44998
  });
45031
44999
  ResponseBody3$outboundSchema = objectType({
45032
- id: stringType().default("tool_01KADY1D2QKTF1Q2VY62T8J58W"),
45000
+ id: stringType().default("tool_01KAG3PPZME99DVJRJF58NNWEE"),
45033
45001
  path: stringType(),
45034
45002
  key: stringType(),
45035
45003
  displayName: stringType().optional(),
@@ -45090,7 +45058,7 @@ var init_createtool = __esm(() => {
45090
45058
  strict: booleanType().optional()
45091
45059
  });
45092
45060
  ResponseBody2$inboundSchema = objectType({
45093
- _id: stringType().default("tool_01KADY1D2CJ8EGHABSHNTTB410"),
45061
+ _id: stringType().default("tool_01KAG3PPZHPFKPY86387GM7X1M"),
45094
45062
  path: stringType(),
45095
45063
  key: stringType(),
45096
45064
  display_name: stringType().optional(),
@@ -45118,7 +45086,7 @@ var init_createtool = __esm(() => {
45118
45086
  });
45119
45087
  });
45120
45088
  ResponseBody2$outboundSchema = objectType({
45121
- id: stringType().default("tool_01KADY1D2CJ8EGHABSHNTTB410"),
45089
+ id: stringType().default("tool_01KAG3PPZHPFKPY86387GM7X1M"),
45122
45090
  path: stringType(),
45123
45091
  key: stringType(),
45124
45092
  displayName: stringType().optional(),
@@ -45182,7 +45150,7 @@ var init_createtool = __esm(() => {
45182
45150
  parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
45183
45151
  });
45184
45152
  ResponseBody1$inboundSchema = objectType({
45185
- _id: stringType().default("tool_01KADY1D29P3FHHVKS5GH09H9T"),
45153
+ _id: stringType().default("tool_01KAG3PPZEC6FH31K7ZY4VH8TK"),
45186
45154
  path: stringType(),
45187
45155
  key: stringType(),
45188
45156
  display_name: stringType().optional(),
@@ -45209,7 +45177,7 @@ var init_createtool = __esm(() => {
45209
45177
  });
45210
45178
  });
45211
45179
  ResponseBody1$outboundSchema = objectType({
45212
- id: stringType().default("tool_01KADY1D29P3FHHVKS5GH09H9T"),
45180
+ id: stringType().default("tool_01KAG3PPZEC6FH31K7ZY4VH8TK"),
45213
45181
  path: stringType(),
45214
45182
  key: stringType(),
45215
45183
  displayName: stringType().optional(),
@@ -48576,7 +48544,7 @@ var init_deploymentgetconfig = __esm(() => {
48576
48544
  });
48577
48545
 
48578
48546
  // src/models/operations/deploymentinvoke.ts
48579
- var DeploymentInvokeObject, DeploymentInvokeProvider, DeploymentInvokeMessageDeploymentsType, DeploymentInvokeMessageRole, DeploymentInvokeMessageType, MessageRole, MessageType, DeploymentInvokeMessageDeploymentsRole, DeploymentInvokeMessageDeploymentsResponseType, DeploymentInvokeGlobals$inboundSchema, DeploymentInvokeGlobals$outboundSchema, DeploymentInvokeObject$inboundSchema, DeploymentInvokeObject$outboundSchema, DeploymentInvokeProvider$inboundSchema, DeploymentInvokeProvider$outboundSchema, DeploymentInvokeMetadata$inboundSchema, DeploymentInvokeMetadata$outboundSchema, Retrievals$inboundSchema, Retrievals$outboundSchema, DeploymentInvokeMessageDeploymentsType$inboundSchema, DeploymentInvokeMessageDeploymentsType$outboundSchema, DeploymentInvokeMessageRole$inboundSchema, DeploymentInvokeMessageRole$outboundSchema, Message3$inboundSchema, Message3$outboundSchema, DeploymentInvokeMessageType$inboundSchema, DeploymentInvokeMessageType$outboundSchema, MessageRole$inboundSchema, MessageRole$outboundSchema, Message2$inboundSchema, Message2$outboundSchema, MessageType$inboundSchema, MessageType$outboundSchema, DeploymentInvokeMessageDeploymentsRole$inboundSchema, DeploymentInvokeMessageDeploymentsRole$outboundSchema, DeploymentInvokeMessageDeploymentsResponseType$inboundSchema, DeploymentInvokeMessageDeploymentsResponseType$outboundSchema, MessageFunction$inboundSchema, MessageFunction$outboundSchema, MessageToolCalls$inboundSchema, MessageToolCalls$outboundSchema, Message1$inboundSchema, Message1$outboundSchema, DeploymentInvokeMessage$inboundSchema, DeploymentInvokeMessage$outboundSchema, DeploymentInvokeChoices$inboundSchema, DeploymentInvokeChoices$outboundSchema, DeploymentInvokeResponseBody$inboundSchema, DeploymentInvokeResponseBody$outboundSchema;
48547
+ var DeploymentInvokeObject, DeploymentInvokeProvider, DeploymentInvokeMessageDeploymentsType, DeploymentInvokeMessageRole, DeploymentInvokeMessageType, MessageRole, MessageType, DeploymentInvokeMessageDeploymentsRole, DeploymentInvokeMessageDeploymentsResponseType, DeploymentInvokeGlobals$inboundSchema, DeploymentInvokeGlobals$outboundSchema, DeploymentInvokeObject$inboundSchema, DeploymentInvokeObject$outboundSchema, DeploymentInvokeProvider$inboundSchema, DeploymentInvokeProvider$outboundSchema, DeploymentInvokeMetadata$inboundSchema, DeploymentInvokeMetadata$outboundSchema, Retrievals$inboundSchema, Retrievals$outboundSchema, DeploymentInvokeMessageDeploymentsType$inboundSchema, DeploymentInvokeMessageDeploymentsType$outboundSchema, DeploymentInvokeMessageRole$inboundSchema, DeploymentInvokeMessageRole$outboundSchema, Message3$inboundSchema, Message3$outboundSchema, DeploymentInvokeMessageType$inboundSchema, DeploymentInvokeMessageType$outboundSchema, MessageRole$inboundSchema, MessageRole$outboundSchema, Message2$inboundSchema, Message2$outboundSchema, MessageType$inboundSchema, MessageType$outboundSchema, DeploymentInvokeMessageDeploymentsRole$inboundSchema, DeploymentInvokeMessageDeploymentsRole$outboundSchema, DeploymentInvokeMessageDeploymentsResponseType$inboundSchema, DeploymentInvokeMessageDeploymentsResponseType$outboundSchema, MessageFunction$inboundSchema, MessageFunction$outboundSchema, MessageToolCalls$inboundSchema, MessageToolCalls$outboundSchema, Message1$inboundSchema, Message1$outboundSchema, Message$inboundSchema, Message$outboundSchema, DeploymentInvokeChoices$inboundSchema, DeploymentInvokeChoices$outboundSchema, DeploymentInvokeResponseBody$inboundSchema, DeploymentInvokeResponseBody$outboundSchema;
48580
48548
  var init_deploymentinvoke = __esm(() => {
48581
48549
  init_esm();
48582
48550
  init_primitives();
@@ -48802,12 +48770,12 @@ var init_deploymentinvoke = __esm(() => {
48802
48770
  redactedReasoning: "redacted_reasoning"
48803
48771
  });
48804
48772
  });
48805
- DeploymentInvokeMessage$inboundSchema = unionType([
48773
+ Message$inboundSchema = unionType([
48806
48774
  lazyType(() => Message1$inboundSchema),
48807
48775
  lazyType(() => Message2$inboundSchema),
48808
48776
  lazyType(() => Message3$inboundSchema)
48809
48777
  ]);
48810
- DeploymentInvokeMessage$outboundSchema = unionType([
48778
+ Message$outboundSchema = unionType([
48811
48779
  lazyType(() => Message1$outboundSchema),
48812
48780
  lazyType(() => Message2$outboundSchema),
48813
48781
  lazyType(() => Message3$outboundSchema)
@@ -51290,7 +51258,7 @@ var init_fileget = __esm(() => {
51290
51258
  bytes: numberType(),
51291
51259
  file_name: stringType(),
51292
51260
  workspace_id: stringType(),
51293
- created: stringType().datetime({ offset: true }).default("2025-11-19T11:29:38.393Z").transform((v2) => new Date(v2))
51261
+ created: stringType().datetime({ offset: true }).default("2025-11-20T07:47:08.022Z").transform((v2) => new Date(v2))
51294
51262
  }).transform((v2) => {
51295
51263
  return remap(v2, {
51296
51264
  _id: "id",
@@ -51306,7 +51274,7 @@ var init_fileget = __esm(() => {
51306
51274
  bytes: numberType(),
51307
51275
  fileName: stringType(),
51308
51276
  workspaceId: stringType(),
51309
- created: dateType().default(() => new Date("2025-11-19T11:29:38.393Z")).transform((v2) => v2.toISOString())
51277
+ created: dateType().default(() => new Date("2025-11-20T07:47:08.022Z")).transform((v2) => v2.toISOString())
51310
51278
  }).transform((v2) => {
51311
51279
  return remap(v2, {
51312
51280
  id: "_id",
@@ -51361,7 +51329,7 @@ var init_filelist = __esm(() => {
51361
51329
  bytes: numberType(),
51362
51330
  file_name: stringType(),
51363
51331
  workspace_id: stringType(),
51364
- created: stringType().datetime({ offset: true }).default("2025-11-19T11:29:38.393Z").transform((v2) => new Date(v2))
51332
+ created: stringType().datetime({ offset: true }).default("2025-11-20T07:47:08.022Z").transform((v2) => new Date(v2))
51365
51333
  }).transform((v2) => {
51366
51334
  return remap(v2, {
51367
51335
  _id: "id",
@@ -51377,7 +51345,7 @@ var init_filelist = __esm(() => {
51377
51345
  bytes: numberType(),
51378
51346
  fileName: stringType(),
51379
51347
  workspaceId: stringType(),
51380
- created: dateType().default(() => new Date("2025-11-19T11:29:38.393Z")).transform((v2) => v2.toISOString())
51348
+ created: dateType().default(() => new Date("2025-11-20T07:47:08.022Z")).transform((v2) => v2.toISOString())
51381
51349
  }).transform((v2) => {
51382
51350
  return remap(v2, {
51383
51351
  id: "_id",
@@ -51485,7 +51453,7 @@ var init_fileupload = __esm(() => {
51485
51453
  bytes: numberType(),
51486
51454
  file_name: stringType(),
51487
51455
  workspace_id: stringType(),
51488
- created: stringType().datetime({ offset: true }).default("2025-11-19T11:29:38.393Z").transform((v2) => new Date(v2))
51456
+ created: stringType().datetime({ offset: true }).default("2025-11-20T07:47:08.022Z").transform((v2) => new Date(v2))
51489
51457
  }).transform((v2) => {
51490
51458
  return remap(v2, {
51491
51459
  _id: "id",
@@ -51501,7 +51469,7 @@ var init_fileupload = __esm(() => {
51501
51469
  bytes: numberType(),
51502
51470
  fileName: stringType(),
51503
51471
  workspaceId: stringType(),
51504
- created: dateType().default(() => new Date("2025-11-19T11:29:38.393Z")).transform((v2) => v2.toISOString())
51472
+ created: dateType().default(() => new Date("2025-11-20T07:47:08.022Z")).transform((v2) => v2.toISOString())
51505
51473
  }).transform((v2) => {
51506
51474
  return remap(v2, {
51507
51475
  id: "_id",
@@ -52387,17 +52355,51 @@ var init_getagent2 = __esm(() => {
52387
52355
  });
52388
52356
 
52389
52357
  // src/models/operations/getagenttask.ts
52390
- var GetAgentTaskKind, GetAgentTaskAgentsResponseKind, GetAgentTaskRole, GetAgentTaskPartsAgentsResponse200Kind, GetAgentTaskPartsAgentsResponseKind, GetAgentTaskPartsAgentsKind, GetAgentTaskPartsKind, PartsKind, GetAgentTaskAgentsKind, GetAgentTaskRequest$inboundSchema, GetAgentTaskRequest$outboundSchema, GetAgentTaskKind$inboundSchema, GetAgentTaskKind$outboundSchema, GetAgentTaskStatus$inboundSchema, GetAgentTaskStatus$outboundSchema, GetAgentTaskAgentsResponseKind$inboundSchema, GetAgentTaskAgentsResponseKind$outboundSchema, GetAgentTaskRole$inboundSchema, GetAgentTaskRole$outboundSchema, GetAgentTaskPartsAgentsResponse200Kind$inboundSchema, GetAgentTaskPartsAgentsResponse200Kind$outboundSchema, Parts5$inboundSchema, Parts5$outboundSchema, GetAgentTaskPartsAgentsResponseKind$inboundSchema, GetAgentTaskPartsAgentsResponseKind$outboundSchema, Parts4$inboundSchema, Parts4$outboundSchema, GetAgentTaskPartsAgentsKind$inboundSchema, GetAgentTaskPartsAgentsKind$outboundSchema, GetAgentTaskFileFileInURIFormat$inboundSchema, GetAgentTaskFileFileInURIFormat$outboundSchema, GetAgentTaskFileBinaryFormat$inboundSchema, GetAgentTaskFileBinaryFormat$outboundSchema, PartsFile$inboundSchema, PartsFile$outboundSchema, Parts3$inboundSchema, Parts3$outboundSchema, GetAgentTaskPartsKind$inboundSchema, GetAgentTaskPartsKind$outboundSchema, Parts2$inboundSchema, Parts2$outboundSchema, PartsKind$inboundSchema, PartsKind$outboundSchema, Parts1$inboundSchema, Parts1$outboundSchema, Parts$inboundSchema, Parts$outboundSchema, History$inboundSchema, History$outboundSchema, GetAgentTaskAgentsKind$inboundSchema, GetAgentTaskAgentsKind$outboundSchema, Artifacts$inboundSchema, Artifacts$outboundSchema, GetAgentTaskResponseBody$inboundSchema2, GetAgentTaskResponseBody$outboundSchema2;
52391
- var init_getagenttask2 = __esm(() => {
52358
+ var GetAgentTaskKind, GetAgentTaskTaskState, GetAgentTaskAgentsResponseKind, GetAgentTaskExtendedMessageRole, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage5Kind, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage4Kind, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessageKind, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusKind, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage1Kind, GetAgentTaskAgentsKind, ExtendedMessageRole, GetAgentTaskPartsAgentsResponse200Kind, GetAgentTaskPartsAgentsResponseKind, GetAgentTaskPartsAgentsKind, GetAgentTaskPartsKind, PartsKind, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyArtifactsKind, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyKind, GetAgentTaskPartsAgentsResponse200ApplicationJSONKind, GetAgentTaskRequest$inboundSchema, GetAgentTaskRequest$outboundSchema, GetAgentTaskKind$inboundSchema, GetAgentTaskKind$outboundSchema, GetAgentTaskTaskState$inboundSchema, GetAgentTaskTaskState$outboundSchema, GetAgentTaskAgentsResponseKind$inboundSchema, GetAgentTaskAgentsResponseKind$outboundSchema, GetAgentTaskExtendedMessageRole$inboundSchema, GetAgentTaskExtendedMessageRole$outboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage5Kind$inboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage5Kind$outboundSchema, GetAgentTaskPartsToolResultPart$inboundSchema, GetAgentTaskPartsToolResultPart$outboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage4Kind$inboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage4Kind$outboundSchema, GetAgentTaskPartsToolCallPart$inboundSchema, GetAgentTaskPartsToolCallPart$outboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessageKind$inboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessageKind$outboundSchema, GetAgentTaskFileAgentsResponseFileInURIFormat$inboundSchema, GetAgentTaskFileAgentsResponseFileInURIFormat$outboundSchema, GetAgentTaskFileAgentsResponseBinaryFormat$inboundSchema, GetAgentTaskFileAgentsResponseBinaryFormat$outboundSchema, GetAgentTaskPartsAgentsFile$inboundSchema, GetAgentTaskPartsAgentsFile$outboundSchema, GetAgentTaskPartsAgentsFilePart$inboundSchema, GetAgentTaskPartsAgentsFilePart$outboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusKind$inboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusKind$outboundSchema, GetAgentTaskPartsDataPart$inboundSchema, GetAgentTaskPartsDataPart$outboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage1Kind$inboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage1Kind$outboundSchema, GetAgentTaskPartsAgentsTextPart$inboundSchema, GetAgentTaskPartsAgentsTextPart$outboundSchema, GetAgentTaskAgentsParts$inboundSchema, GetAgentTaskAgentsParts$outboundSchema, GetAgentTaskTaskStatusMessage$inboundSchema, GetAgentTaskTaskStatusMessage$outboundSchema, GetAgentTaskTaskStatus$inboundSchema, GetAgentTaskTaskStatus$outboundSchema, GetAgentTaskAgentsKind$inboundSchema, GetAgentTaskAgentsKind$outboundSchema, ExtendedMessageRole$inboundSchema, ExtendedMessageRole$outboundSchema, GetAgentTaskPartsAgentsResponse200Kind$inboundSchema, GetAgentTaskPartsAgentsResponse200Kind$outboundSchema, PartsToolResultPart$inboundSchema, PartsToolResultPart$outboundSchema, GetAgentTaskPartsAgentsResponseKind$inboundSchema, GetAgentTaskPartsAgentsResponseKind$outboundSchema, ToolCallPart$inboundSchema, ToolCallPart$outboundSchema, GetAgentTaskPartsAgentsKind$inboundSchema, GetAgentTaskPartsAgentsKind$outboundSchema, GetAgentTaskFileAgentsFileInURIFormat$inboundSchema, GetAgentTaskFileAgentsFileInURIFormat$outboundSchema, GetAgentTaskFileAgentsBinaryFormat$inboundSchema, GetAgentTaskFileAgentsBinaryFormat$outboundSchema, PartsFile$inboundSchema, PartsFile$outboundSchema, PartsFilePart$inboundSchema, PartsFilePart$outboundSchema, GetAgentTaskPartsKind$inboundSchema, GetAgentTaskPartsKind$outboundSchema, DataPart$inboundSchema, DataPart$outboundSchema, PartsKind$inboundSchema, PartsKind$outboundSchema, PartsTextPart$inboundSchema, PartsTextPart$outboundSchema, Parts$inboundSchema, Parts$outboundSchema, ExtendedA2AMessage$inboundSchema, ExtendedA2AMessage$outboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyArtifactsKind$inboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyArtifactsKind$outboundSchema, PartsDataPart$inboundSchema, PartsDataPart$outboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyKind$inboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyKind$outboundSchema, GetAgentTaskFileFileInURIFormat$inboundSchema, GetAgentTaskFileFileInURIFormat$outboundSchema, GetAgentTaskFileBinaryFormat$inboundSchema, GetAgentTaskFileBinaryFormat$outboundSchema, GetAgentTaskPartsFile$inboundSchema, GetAgentTaskPartsFile$outboundSchema, GetAgentTaskPartsFilePart$inboundSchema, GetAgentTaskPartsFilePart$outboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONKind$inboundSchema, GetAgentTaskPartsAgentsResponse200ApplicationJSONKind$outboundSchema, GetAgentTaskPartsTextPart$inboundSchema, GetAgentTaskPartsTextPart$outboundSchema, GetAgentTaskParts$inboundSchema, GetAgentTaskParts$outboundSchema, TaskArtifact$inboundSchema, TaskArtifact$outboundSchema, GetAgentTaskExtendedTaskResponse$inboundSchema, GetAgentTaskExtendedTaskResponse$outboundSchema;
52359
+ var init_getagenttask = __esm(() => {
52392
52360
  init_esm();
52393
52361
  init_primitives();
52394
52362
  GetAgentTaskKind = {
52395
52363
  Task: "task"
52396
52364
  };
52365
+ GetAgentTaskTaskState = {
52366
+ Submitted: "submitted",
52367
+ Working: "working",
52368
+ InputRequired: "input-required",
52369
+ AuthRequired: "auth-required",
52370
+ Completed: "completed",
52371
+ Failed: "failed",
52372
+ Canceled: "canceled",
52373
+ Rejected: "rejected"
52374
+ };
52397
52375
  GetAgentTaskAgentsResponseKind = {
52398
52376
  Message: "message"
52399
52377
  };
52400
- GetAgentTaskRole = {
52378
+ GetAgentTaskExtendedMessageRole = {
52379
+ User: "user",
52380
+ Agent: "agent",
52381
+ Tool: "tool",
52382
+ System: "system"
52383
+ };
52384
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage5Kind = {
52385
+ ToolResult: "tool_result"
52386
+ };
52387
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage4Kind = {
52388
+ ToolCall: "tool_call"
52389
+ };
52390
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessageKind = {
52391
+ File: "file"
52392
+ };
52393
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusKind = {
52394
+ Data: "data"
52395
+ };
52396
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage1Kind = {
52397
+ Text: "text"
52398
+ };
52399
+ GetAgentTaskAgentsKind = {
52400
+ Message: "message"
52401
+ };
52402
+ ExtendedMessageRole = {
52401
52403
  User: "user",
52402
52404
  Agent: "agent",
52403
52405
  Tool: "tool",
@@ -52418,8 +52420,14 @@ var init_getagenttask2 = __esm(() => {
52418
52420
  PartsKind = {
52419
52421
  Text: "text"
52420
52422
  };
52421
- GetAgentTaskAgentsKind = {
52422
- Artifact: "artifact"
52423
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyArtifactsKind = {
52424
+ Data: "data"
52425
+ };
52426
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyKind = {
52427
+ File: "file"
52428
+ };
52429
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONKind = {
52430
+ Text: "text"
52423
52431
  };
52424
52432
  GetAgentTaskRequest$inboundSchema = objectType({
52425
52433
  agent_key: stringType(),
@@ -52441,23 +52449,183 @@ var init_getagenttask2 = __esm(() => {
52441
52449
  });
52442
52450
  GetAgentTaskKind$inboundSchema = nativeEnumType(GetAgentTaskKind);
52443
52451
  GetAgentTaskKind$outboundSchema = GetAgentTaskKind$inboundSchema;
52444
- GetAgentTaskStatus$inboundSchema = objectType({
52445
- state: stringType(),
52452
+ GetAgentTaskTaskState$inboundSchema = nativeEnumType(GetAgentTaskTaskState);
52453
+ GetAgentTaskTaskState$outboundSchema = GetAgentTaskTaskState$inboundSchema;
52454
+ GetAgentTaskAgentsResponseKind$inboundSchema = nativeEnumType(GetAgentTaskAgentsResponseKind);
52455
+ GetAgentTaskAgentsResponseKind$outboundSchema = GetAgentTaskAgentsResponseKind$inboundSchema;
52456
+ GetAgentTaskExtendedMessageRole$inboundSchema = nativeEnumType(GetAgentTaskExtendedMessageRole);
52457
+ GetAgentTaskExtendedMessageRole$outboundSchema = GetAgentTaskExtendedMessageRole$inboundSchema;
52458
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage5Kind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage5Kind);
52459
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage5Kind$outboundSchema = GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage5Kind$inboundSchema;
52460
+ GetAgentTaskPartsToolResultPart$inboundSchema = objectType({
52461
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage5Kind$inboundSchema,
52462
+ tool_call_id: stringType(),
52463
+ result: anyType().optional(),
52464
+ metadata: recordType(anyType()).optional()
52465
+ }).transform((v2) => {
52466
+ return remap(v2, {
52467
+ tool_call_id: "toolCallId"
52468
+ });
52469
+ });
52470
+ GetAgentTaskPartsToolResultPart$outboundSchema = objectType({
52471
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage5Kind$outboundSchema,
52472
+ toolCallId: stringType(),
52473
+ result: anyType().optional(),
52474
+ metadata: recordType(anyType()).optional()
52475
+ }).transform((v2) => {
52476
+ return remap(v2, {
52477
+ toolCallId: "tool_call_id"
52478
+ });
52479
+ });
52480
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage4Kind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage4Kind);
52481
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage4Kind$outboundSchema = GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage4Kind$inboundSchema;
52482
+ GetAgentTaskPartsToolCallPart$inboundSchema = objectType({
52483
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage4Kind$inboundSchema,
52484
+ tool_name: stringType(),
52485
+ tool_call_id: stringType(),
52486
+ arguments: recordType(anyType()),
52487
+ metadata: recordType(anyType()).optional()
52488
+ }).transform((v2) => {
52489
+ return remap(v2, {
52490
+ tool_name: "toolName",
52491
+ tool_call_id: "toolCallId"
52492
+ });
52493
+ });
52494
+ GetAgentTaskPartsToolCallPart$outboundSchema = objectType({
52495
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage4Kind$outboundSchema,
52496
+ toolName: stringType(),
52497
+ toolCallId: stringType(),
52498
+ arguments: recordType(anyType()),
52499
+ metadata: recordType(anyType()).optional()
52500
+ }).transform((v2) => {
52501
+ return remap(v2, {
52502
+ toolName: "tool_name",
52503
+ toolCallId: "tool_call_id"
52504
+ });
52505
+ });
52506
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessageKind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessageKind);
52507
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessageKind$outboundSchema = GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessageKind$inboundSchema;
52508
+ GetAgentTaskFileAgentsResponseFileInURIFormat$inboundSchema = objectType({
52509
+ uri: stringType(),
52510
+ mimeType: stringType().optional(),
52511
+ name: stringType().optional()
52512
+ });
52513
+ GetAgentTaskFileAgentsResponseFileInURIFormat$outboundSchema = objectType({
52514
+ uri: stringType(),
52515
+ mimeType: stringType().optional(),
52516
+ name: stringType().optional()
52517
+ });
52518
+ GetAgentTaskFileAgentsResponseBinaryFormat$inboundSchema = objectType({
52519
+ bytes: stringType(),
52520
+ mimeType: stringType().optional(),
52521
+ name: stringType().optional()
52522
+ });
52523
+ GetAgentTaskFileAgentsResponseBinaryFormat$outboundSchema = objectType({
52524
+ bytes: stringType(),
52525
+ mimeType: stringType().optional(),
52526
+ name: stringType().optional()
52527
+ });
52528
+ GetAgentTaskPartsAgentsFile$inboundSchema = unionType([
52529
+ lazyType(() => GetAgentTaskFileAgentsResponseBinaryFormat$inboundSchema),
52530
+ lazyType(() => GetAgentTaskFileAgentsResponseFileInURIFormat$inboundSchema)
52531
+ ]);
52532
+ GetAgentTaskPartsAgentsFile$outboundSchema = unionType([
52533
+ lazyType(() => GetAgentTaskFileAgentsResponseBinaryFormat$outboundSchema),
52534
+ lazyType(() => GetAgentTaskFileAgentsResponseFileInURIFormat$outboundSchema)
52535
+ ]);
52536
+ GetAgentTaskPartsAgentsFilePart$inboundSchema = objectType({
52537
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessageKind$inboundSchema,
52538
+ file: unionType([
52539
+ lazyType(() => GetAgentTaskFileAgentsResponseBinaryFormat$inboundSchema),
52540
+ lazyType(() => GetAgentTaskFileAgentsResponseFileInURIFormat$inboundSchema)
52541
+ ]),
52542
+ metadata: recordType(anyType()).optional()
52543
+ });
52544
+ GetAgentTaskPartsAgentsFilePart$outboundSchema = objectType({
52545
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessageKind$outboundSchema,
52546
+ file: unionType([
52547
+ lazyType(() => GetAgentTaskFileAgentsResponseBinaryFormat$outboundSchema),
52548
+ lazyType(() => GetAgentTaskFileAgentsResponseFileInURIFormat$outboundSchema)
52549
+ ]),
52550
+ metadata: recordType(anyType()).optional()
52551
+ });
52552
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusKind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusKind);
52553
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusKind$outboundSchema = GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusKind$inboundSchema;
52554
+ GetAgentTaskPartsDataPart$inboundSchema = objectType({
52555
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusKind$inboundSchema,
52556
+ data: recordType(anyType()),
52557
+ metadata: recordType(anyType()).optional()
52558
+ });
52559
+ GetAgentTaskPartsDataPart$outboundSchema = objectType({
52560
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusKind$outboundSchema,
52561
+ data: recordType(anyType()),
52562
+ metadata: recordType(anyType()).optional()
52563
+ });
52564
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage1Kind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage1Kind);
52565
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage1Kind$outboundSchema = GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage1Kind$inboundSchema;
52566
+ GetAgentTaskPartsAgentsTextPart$inboundSchema = objectType({
52567
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage1Kind$inboundSchema,
52568
+ text: stringType()
52569
+ });
52570
+ GetAgentTaskPartsAgentsTextPart$outboundSchema = objectType({
52571
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyStatusMessage1Kind$outboundSchema,
52572
+ text: stringType()
52573
+ });
52574
+ GetAgentTaskAgentsParts$inboundSchema = unionType([
52575
+ lazyType(() => GetAgentTaskPartsToolCallPart$inboundSchema),
52576
+ lazyType(() => GetAgentTaskPartsAgentsTextPart$inboundSchema),
52577
+ lazyType(() => GetAgentTaskPartsDataPart$inboundSchema),
52578
+ lazyType(() => GetAgentTaskPartsAgentsFilePart$inboundSchema),
52579
+ lazyType(() => GetAgentTaskPartsToolResultPart$inboundSchema)
52580
+ ]);
52581
+ GetAgentTaskAgentsParts$outboundSchema = unionType([
52582
+ lazyType(() => GetAgentTaskPartsToolCallPart$outboundSchema),
52583
+ lazyType(() => GetAgentTaskPartsAgentsTextPart$outboundSchema),
52584
+ lazyType(() => GetAgentTaskPartsDataPart$outboundSchema),
52585
+ lazyType(() => GetAgentTaskPartsAgentsFilePart$outboundSchema),
52586
+ lazyType(() => GetAgentTaskPartsToolResultPart$outboundSchema)
52587
+ ]);
52588
+ GetAgentTaskTaskStatusMessage$inboundSchema = objectType({
52589
+ kind: GetAgentTaskAgentsResponseKind$inboundSchema,
52590
+ messageId: stringType(),
52591
+ role: GetAgentTaskExtendedMessageRole$inboundSchema,
52592
+ parts: arrayType(unionType([
52593
+ lazyType(() => GetAgentTaskPartsToolCallPart$inboundSchema),
52594
+ lazyType(() => GetAgentTaskPartsAgentsTextPart$inboundSchema),
52595
+ lazyType(() => GetAgentTaskPartsDataPart$inboundSchema),
52596
+ lazyType(() => GetAgentTaskPartsAgentsFilePart$inboundSchema),
52597
+ lazyType(() => GetAgentTaskPartsToolResultPart$inboundSchema)
52598
+ ]))
52599
+ });
52600
+ GetAgentTaskTaskStatusMessage$outboundSchema = objectType({
52601
+ kind: GetAgentTaskAgentsResponseKind$outboundSchema,
52602
+ messageId: stringType(),
52603
+ role: GetAgentTaskExtendedMessageRole$outboundSchema,
52604
+ parts: arrayType(unionType([
52605
+ lazyType(() => GetAgentTaskPartsToolCallPart$outboundSchema),
52606
+ lazyType(() => GetAgentTaskPartsAgentsTextPart$outboundSchema),
52607
+ lazyType(() => GetAgentTaskPartsDataPart$outboundSchema),
52608
+ lazyType(() => GetAgentTaskPartsAgentsFilePart$outboundSchema),
52609
+ lazyType(() => GetAgentTaskPartsToolResultPart$outboundSchema)
52610
+ ]))
52611
+ });
52612
+ GetAgentTaskTaskStatus$inboundSchema = objectType({
52613
+ state: GetAgentTaskTaskState$inboundSchema,
52446
52614
  timestamp: stringType().optional(),
52447
- message: anyType().optional()
52615
+ message: lazyType(() => GetAgentTaskTaskStatusMessage$inboundSchema).optional()
52448
52616
  });
52449
- GetAgentTaskStatus$outboundSchema = objectType({
52450
- state: stringType(),
52617
+ GetAgentTaskTaskStatus$outboundSchema = objectType({
52618
+ state: GetAgentTaskTaskState$outboundSchema,
52451
52619
  timestamp: stringType().optional(),
52452
- message: anyType().optional()
52620
+ message: lazyType(() => GetAgentTaskTaskStatusMessage$outboundSchema).optional()
52453
52621
  });
52454
- GetAgentTaskAgentsResponseKind$inboundSchema = nativeEnumType(GetAgentTaskAgentsResponseKind);
52455
- GetAgentTaskAgentsResponseKind$outboundSchema = GetAgentTaskAgentsResponseKind$inboundSchema;
52456
- GetAgentTaskRole$inboundSchema = nativeEnumType(GetAgentTaskRole);
52457
- GetAgentTaskRole$outboundSchema = GetAgentTaskRole$inboundSchema;
52622
+ GetAgentTaskAgentsKind$inboundSchema = nativeEnumType(GetAgentTaskAgentsKind);
52623
+ GetAgentTaskAgentsKind$outboundSchema = GetAgentTaskAgentsKind$inboundSchema;
52624
+ ExtendedMessageRole$inboundSchema = nativeEnumType(ExtendedMessageRole);
52625
+ ExtendedMessageRole$outboundSchema = ExtendedMessageRole$inboundSchema;
52458
52626
  GetAgentTaskPartsAgentsResponse200Kind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsResponse200Kind);
52459
52627
  GetAgentTaskPartsAgentsResponse200Kind$outboundSchema = GetAgentTaskPartsAgentsResponse200Kind$inboundSchema;
52460
- Parts5$inboundSchema = objectType({
52628
+ PartsToolResultPart$inboundSchema = objectType({
52461
52629
  kind: GetAgentTaskPartsAgentsResponse200Kind$inboundSchema,
52462
52630
  tool_call_id: stringType(),
52463
52631
  result: anyType().optional(),
@@ -52467,7 +52635,7 @@ var init_getagenttask2 = __esm(() => {
52467
52635
  tool_call_id: "toolCallId"
52468
52636
  });
52469
52637
  });
52470
- Parts5$outboundSchema = objectType({
52638
+ PartsToolResultPart$outboundSchema = objectType({
52471
52639
  kind: GetAgentTaskPartsAgentsResponse200Kind$outboundSchema,
52472
52640
  toolCallId: stringType(),
52473
52641
  result: anyType().optional(),
@@ -52479,7 +52647,7 @@ var init_getagenttask2 = __esm(() => {
52479
52647
  });
52480
52648
  GetAgentTaskPartsAgentsResponseKind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsResponseKind);
52481
52649
  GetAgentTaskPartsAgentsResponseKind$outboundSchema = GetAgentTaskPartsAgentsResponseKind$inboundSchema;
52482
- Parts4$inboundSchema = objectType({
52650
+ ToolCallPart$inboundSchema = objectType({
52483
52651
  kind: GetAgentTaskPartsAgentsResponseKind$inboundSchema,
52484
52652
  tool_name: stringType(),
52485
52653
  tool_call_id: stringType(),
@@ -52491,7 +52659,7 @@ var init_getagenttask2 = __esm(() => {
52491
52659
  tool_call_id: "toolCallId"
52492
52660
  });
52493
52661
  });
52494
- Parts4$outboundSchema = objectType({
52662
+ ToolCallPart$outboundSchema = objectType({
52495
52663
  kind: GetAgentTaskPartsAgentsResponseKind$outboundSchema,
52496
52664
  toolName: stringType(),
52497
52665
  toolCallId: stringType(),
@@ -52505,150 +52673,234 @@ var init_getagenttask2 = __esm(() => {
52505
52673
  });
52506
52674
  GetAgentTaskPartsAgentsKind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsKind);
52507
52675
  GetAgentTaskPartsAgentsKind$outboundSchema = GetAgentTaskPartsAgentsKind$inboundSchema;
52508
- GetAgentTaskFileFileInURIFormat$inboundSchema = objectType({
52676
+ GetAgentTaskFileAgentsFileInURIFormat$inboundSchema = objectType({
52509
52677
  uri: stringType(),
52510
52678
  mimeType: stringType().optional(),
52511
52679
  name: stringType().optional()
52512
52680
  });
52513
- GetAgentTaskFileFileInURIFormat$outboundSchema = objectType({
52681
+ GetAgentTaskFileAgentsFileInURIFormat$outboundSchema = objectType({
52514
52682
  uri: stringType(),
52515
52683
  mimeType: stringType().optional(),
52516
52684
  name: stringType().optional()
52517
52685
  });
52518
- GetAgentTaskFileBinaryFormat$inboundSchema = objectType({
52686
+ GetAgentTaskFileAgentsBinaryFormat$inboundSchema = objectType({
52519
52687
  bytes: stringType(),
52520
52688
  mimeType: stringType().optional(),
52521
52689
  name: stringType().optional()
52522
52690
  });
52523
- GetAgentTaskFileBinaryFormat$outboundSchema = objectType({
52691
+ GetAgentTaskFileAgentsBinaryFormat$outboundSchema = objectType({
52524
52692
  bytes: stringType(),
52525
52693
  mimeType: stringType().optional(),
52526
52694
  name: stringType().optional()
52527
52695
  });
52528
52696
  PartsFile$inboundSchema = unionType([
52529
- lazyType(() => GetAgentTaskFileBinaryFormat$inboundSchema),
52530
- lazyType(() => GetAgentTaskFileFileInURIFormat$inboundSchema)
52697
+ lazyType(() => GetAgentTaskFileAgentsBinaryFormat$inboundSchema),
52698
+ lazyType(() => GetAgentTaskFileAgentsFileInURIFormat$inboundSchema)
52531
52699
  ]);
52532
52700
  PartsFile$outboundSchema = unionType([
52533
- lazyType(() => GetAgentTaskFileBinaryFormat$outboundSchema),
52534
- lazyType(() => GetAgentTaskFileFileInURIFormat$outboundSchema)
52701
+ lazyType(() => GetAgentTaskFileAgentsBinaryFormat$outboundSchema),
52702
+ lazyType(() => GetAgentTaskFileAgentsFileInURIFormat$outboundSchema)
52535
52703
  ]);
52536
- Parts3$inboundSchema = objectType({
52704
+ PartsFilePart$inboundSchema = objectType({
52537
52705
  kind: GetAgentTaskPartsAgentsKind$inboundSchema,
52538
52706
  file: unionType([
52539
- lazyType(() => GetAgentTaskFileBinaryFormat$inboundSchema),
52540
- lazyType(() => GetAgentTaskFileFileInURIFormat$inboundSchema)
52707
+ lazyType(() => GetAgentTaskFileAgentsBinaryFormat$inboundSchema),
52708
+ lazyType(() => GetAgentTaskFileAgentsFileInURIFormat$inboundSchema)
52541
52709
  ]),
52542
52710
  metadata: recordType(anyType()).optional()
52543
52711
  });
52544
- Parts3$outboundSchema = objectType({
52712
+ PartsFilePart$outboundSchema = objectType({
52545
52713
  kind: GetAgentTaskPartsAgentsKind$outboundSchema,
52546
52714
  file: unionType([
52547
- lazyType(() => GetAgentTaskFileBinaryFormat$outboundSchema),
52548
- lazyType(() => GetAgentTaskFileFileInURIFormat$outboundSchema)
52715
+ lazyType(() => GetAgentTaskFileAgentsBinaryFormat$outboundSchema),
52716
+ lazyType(() => GetAgentTaskFileAgentsFileInURIFormat$outboundSchema)
52549
52717
  ]),
52550
52718
  metadata: recordType(anyType()).optional()
52551
52719
  });
52552
52720
  GetAgentTaskPartsKind$inboundSchema = nativeEnumType(GetAgentTaskPartsKind);
52553
52721
  GetAgentTaskPartsKind$outboundSchema = GetAgentTaskPartsKind$inboundSchema;
52554
- Parts2$inboundSchema = objectType({
52722
+ DataPart$inboundSchema = objectType({
52555
52723
  kind: GetAgentTaskPartsKind$inboundSchema,
52556
52724
  data: recordType(anyType()),
52557
52725
  metadata: recordType(anyType()).optional()
52558
52726
  });
52559
- Parts2$outboundSchema = objectType({
52727
+ DataPart$outboundSchema = objectType({
52560
52728
  kind: GetAgentTaskPartsKind$outboundSchema,
52561
52729
  data: recordType(anyType()),
52562
52730
  metadata: recordType(anyType()).optional()
52563
52731
  });
52564
52732
  PartsKind$inboundSchema = nativeEnumType(PartsKind);
52565
52733
  PartsKind$outboundSchema = PartsKind$inboundSchema;
52566
- Parts1$inboundSchema = objectType({
52734
+ PartsTextPart$inboundSchema = objectType({
52567
52735
  kind: PartsKind$inboundSchema,
52568
52736
  text: stringType()
52569
52737
  });
52570
- Parts1$outboundSchema = objectType({
52738
+ PartsTextPart$outboundSchema = objectType({
52571
52739
  kind: PartsKind$outboundSchema,
52572
52740
  text: stringType()
52573
52741
  });
52574
52742
  Parts$inboundSchema = unionType([
52575
- lazyType(() => Parts4$inboundSchema),
52576
- lazyType(() => Parts1$inboundSchema),
52577
- lazyType(() => Parts2$inboundSchema),
52578
- lazyType(() => Parts3$inboundSchema),
52579
- lazyType(() => Parts5$inboundSchema)
52743
+ lazyType(() => ToolCallPart$inboundSchema),
52744
+ lazyType(() => PartsTextPart$inboundSchema),
52745
+ lazyType(() => DataPart$inboundSchema),
52746
+ lazyType(() => PartsFilePart$inboundSchema),
52747
+ lazyType(() => PartsToolResultPart$inboundSchema)
52580
52748
  ]);
52581
52749
  Parts$outboundSchema = unionType([
52582
- lazyType(() => Parts4$outboundSchema),
52583
- lazyType(() => Parts1$outboundSchema),
52584
- lazyType(() => Parts2$outboundSchema),
52585
- lazyType(() => Parts3$outboundSchema),
52586
- lazyType(() => Parts5$outboundSchema)
52750
+ lazyType(() => ToolCallPart$outboundSchema),
52751
+ lazyType(() => PartsTextPart$outboundSchema),
52752
+ lazyType(() => DataPart$outboundSchema),
52753
+ lazyType(() => PartsFilePart$outboundSchema),
52754
+ lazyType(() => PartsToolResultPart$outboundSchema)
52587
52755
  ]);
52588
- History$inboundSchema = objectType({
52589
- kind: GetAgentTaskAgentsResponseKind$inboundSchema,
52756
+ ExtendedA2AMessage$inboundSchema = objectType({
52757
+ kind: GetAgentTaskAgentsKind$inboundSchema,
52590
52758
  messageId: stringType(),
52591
- role: GetAgentTaskRole$inboundSchema,
52759
+ role: ExtendedMessageRole$inboundSchema,
52592
52760
  parts: arrayType(unionType([
52593
- lazyType(() => Parts4$inboundSchema),
52594
- lazyType(() => Parts1$inboundSchema),
52595
- lazyType(() => Parts2$inboundSchema),
52596
- lazyType(() => Parts3$inboundSchema),
52597
- lazyType(() => Parts5$inboundSchema)
52761
+ lazyType(() => ToolCallPart$inboundSchema),
52762
+ lazyType(() => PartsTextPart$inboundSchema),
52763
+ lazyType(() => DataPart$inboundSchema),
52764
+ lazyType(() => PartsFilePart$inboundSchema),
52765
+ lazyType(() => PartsToolResultPart$inboundSchema)
52598
52766
  ])),
52599
52767
  taskId: stringType().optional(),
52600
52768
  contextId: stringType().optional(),
52601
52769
  metadata: recordType(anyType()).optional()
52602
52770
  });
52603
- History$outboundSchema = objectType({
52604
- kind: GetAgentTaskAgentsResponseKind$outboundSchema,
52771
+ ExtendedA2AMessage$outboundSchema = objectType({
52772
+ kind: GetAgentTaskAgentsKind$outboundSchema,
52605
52773
  messageId: stringType(),
52606
- role: GetAgentTaskRole$outboundSchema,
52774
+ role: ExtendedMessageRole$outboundSchema,
52607
52775
  parts: arrayType(unionType([
52608
- lazyType(() => Parts4$outboundSchema),
52609
- lazyType(() => Parts1$outboundSchema),
52610
- lazyType(() => Parts2$outboundSchema),
52611
- lazyType(() => Parts3$outboundSchema),
52612
- lazyType(() => Parts5$outboundSchema)
52776
+ lazyType(() => ToolCallPart$outboundSchema),
52777
+ lazyType(() => PartsTextPart$outboundSchema),
52778
+ lazyType(() => DataPart$outboundSchema),
52779
+ lazyType(() => PartsFilePart$outboundSchema),
52780
+ lazyType(() => PartsToolResultPart$outboundSchema)
52613
52781
  ])),
52614
52782
  taskId: stringType().optional(),
52615
52783
  contextId: stringType().optional(),
52616
52784
  metadata: recordType(anyType()).optional()
52617
52785
  });
52618
- GetAgentTaskAgentsKind$inboundSchema = nativeEnumType(GetAgentTaskAgentsKind);
52619
- GetAgentTaskAgentsKind$outboundSchema = GetAgentTaskAgentsKind$inboundSchema;
52620
- Artifacts$inboundSchema = objectType({
52621
- kind: GetAgentTaskAgentsKind$inboundSchema,
52786
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyArtifactsKind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyArtifactsKind);
52787
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyArtifactsKind$outboundSchema = GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyArtifactsKind$inboundSchema;
52788
+ PartsDataPart$inboundSchema = objectType({
52789
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyArtifactsKind$inboundSchema,
52790
+ data: recordType(anyType()),
52791
+ metadata: recordType(anyType()).optional()
52792
+ });
52793
+ PartsDataPart$outboundSchema = objectType({
52794
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyArtifactsKind$outboundSchema,
52795
+ data: recordType(anyType()),
52796
+ metadata: recordType(anyType()).optional()
52797
+ });
52798
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyKind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyKind);
52799
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyKind$outboundSchema = GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyKind$inboundSchema;
52800
+ GetAgentTaskFileFileInURIFormat$inboundSchema = objectType({
52801
+ uri: stringType(),
52802
+ mimeType: stringType().optional(),
52803
+ name: stringType().optional()
52804
+ });
52805
+ GetAgentTaskFileFileInURIFormat$outboundSchema = objectType({
52806
+ uri: stringType(),
52807
+ mimeType: stringType().optional(),
52808
+ name: stringType().optional()
52809
+ });
52810
+ GetAgentTaskFileBinaryFormat$inboundSchema = objectType({
52811
+ bytes: stringType(),
52812
+ mimeType: stringType().optional(),
52813
+ name: stringType().optional()
52814
+ });
52815
+ GetAgentTaskFileBinaryFormat$outboundSchema = objectType({
52816
+ bytes: stringType(),
52817
+ mimeType: stringType().optional(),
52818
+ name: stringType().optional()
52819
+ });
52820
+ GetAgentTaskPartsFile$inboundSchema = unionType([
52821
+ lazyType(() => GetAgentTaskFileBinaryFormat$inboundSchema),
52822
+ lazyType(() => GetAgentTaskFileFileInURIFormat$inboundSchema)
52823
+ ]);
52824
+ GetAgentTaskPartsFile$outboundSchema = unionType([
52825
+ lazyType(() => GetAgentTaskFileBinaryFormat$outboundSchema),
52826
+ lazyType(() => GetAgentTaskFileFileInURIFormat$outboundSchema)
52827
+ ]);
52828
+ GetAgentTaskPartsFilePart$inboundSchema = objectType({
52829
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyKind$inboundSchema,
52830
+ file: unionType([
52831
+ lazyType(() => GetAgentTaskFileBinaryFormat$inboundSchema),
52832
+ lazyType(() => GetAgentTaskFileFileInURIFormat$inboundSchema)
52833
+ ]),
52834
+ metadata: recordType(anyType()).optional()
52835
+ });
52836
+ GetAgentTaskPartsFilePart$outboundSchema = objectType({
52837
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONResponseBodyKind$outboundSchema,
52838
+ file: unionType([
52839
+ lazyType(() => GetAgentTaskFileBinaryFormat$outboundSchema),
52840
+ lazyType(() => GetAgentTaskFileFileInURIFormat$outboundSchema)
52841
+ ]),
52842
+ metadata: recordType(anyType()).optional()
52843
+ });
52844
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONKind$inboundSchema = nativeEnumType(GetAgentTaskPartsAgentsResponse200ApplicationJSONKind);
52845
+ GetAgentTaskPartsAgentsResponse200ApplicationJSONKind$outboundSchema = GetAgentTaskPartsAgentsResponse200ApplicationJSONKind$inboundSchema;
52846
+ GetAgentTaskPartsTextPart$inboundSchema = objectType({
52847
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONKind$inboundSchema,
52848
+ text: stringType()
52849
+ });
52850
+ GetAgentTaskPartsTextPart$outboundSchema = objectType({
52851
+ kind: GetAgentTaskPartsAgentsResponse200ApplicationJSONKind$outboundSchema,
52852
+ text: stringType()
52853
+ });
52854
+ GetAgentTaskParts$inboundSchema = unionType([
52855
+ lazyType(() => GetAgentTaskPartsTextPart$inboundSchema),
52856
+ lazyType(() => GetAgentTaskPartsFilePart$inboundSchema),
52857
+ lazyType(() => PartsDataPart$inboundSchema)
52858
+ ]);
52859
+ GetAgentTaskParts$outboundSchema = unionType([
52860
+ lazyType(() => GetAgentTaskPartsTextPart$outboundSchema),
52861
+ lazyType(() => GetAgentTaskPartsFilePart$outboundSchema),
52862
+ lazyType(() => PartsDataPart$outboundSchema)
52863
+ ]);
52864
+ TaskArtifact$inboundSchema = objectType({
52622
52865
  artifactId: stringType(),
52623
52866
  name: stringType(),
52624
- type: stringType(),
52625
- url: stringType().optional(),
52626
- data: anyType().optional()
52867
+ description: stringType().optional(),
52868
+ parts: arrayType(unionType([
52869
+ lazyType(() => GetAgentTaskPartsTextPart$inboundSchema),
52870
+ lazyType(() => GetAgentTaskPartsFilePart$inboundSchema),
52871
+ lazyType(() => PartsDataPart$inboundSchema)
52872
+ ])),
52873
+ extensions: arrayType(stringType()).optional(),
52874
+ metadata: recordType(anyType()).optional()
52627
52875
  });
52628
- Artifacts$outboundSchema = objectType({
52629
- kind: GetAgentTaskAgentsKind$outboundSchema,
52876
+ TaskArtifact$outboundSchema = objectType({
52630
52877
  artifactId: stringType(),
52631
52878
  name: stringType(),
52632
- type: stringType(),
52633
- url: stringType().optional(),
52634
- data: anyType().optional()
52879
+ description: stringType().optional(),
52880
+ parts: arrayType(unionType([
52881
+ lazyType(() => GetAgentTaskPartsTextPart$outboundSchema),
52882
+ lazyType(() => GetAgentTaskPartsFilePart$outboundSchema),
52883
+ lazyType(() => PartsDataPart$outboundSchema)
52884
+ ])),
52885
+ extensions: arrayType(stringType()).optional(),
52886
+ metadata: recordType(anyType()).optional()
52635
52887
  });
52636
- GetAgentTaskResponseBody$inboundSchema2 = objectType({
52888
+ GetAgentTaskExtendedTaskResponse$inboundSchema = objectType({
52637
52889
  id: stringType(),
52638
52890
  contextId: stringType(),
52639
52891
  kind: GetAgentTaskKind$inboundSchema,
52640
- status: lazyType(() => GetAgentTaskStatus$inboundSchema),
52641
- history: arrayType(lazyType(() => History$inboundSchema)),
52642
- artifacts: arrayType(lazyType(() => Artifacts$inboundSchema)).optional(),
52892
+ status: lazyType(() => GetAgentTaskTaskStatus$inboundSchema),
52893
+ history: arrayType(lazyType(() => ExtendedA2AMessage$inboundSchema)),
52894
+ artifacts: arrayType(lazyType(() => TaskArtifact$inboundSchema)).optional(),
52643
52895
  metadata: recordType(anyType()).optional()
52644
52896
  });
52645
- GetAgentTaskResponseBody$outboundSchema2 = objectType({
52897
+ GetAgentTaskExtendedTaskResponse$outboundSchema = objectType({
52646
52898
  id: stringType(),
52647
52899
  contextId: stringType(),
52648
52900
  kind: GetAgentTaskKind$outboundSchema,
52649
- status: lazyType(() => GetAgentTaskStatus$outboundSchema),
52650
- history: arrayType(lazyType(() => History$outboundSchema)),
52651
- artifacts: arrayType(lazyType(() => Artifacts$outboundSchema)).optional(),
52901
+ status: lazyType(() => GetAgentTaskTaskStatus$outboundSchema),
52902
+ history: arrayType(lazyType(() => ExtendedA2AMessage$outboundSchema)),
52903
+ artifacts: arrayType(lazyType(() => TaskArtifact$outboundSchema)).optional(),
52652
52904
  metadata: recordType(anyType()).optional()
52653
52905
  });
52654
52906
  });
@@ -53690,7 +53942,7 @@ var init_getalltools = __esm(() => {
53690
53942
  code: stringType()
53691
53943
  });
53692
53944
  Data5$inboundSchema = objectType({
53693
- _id: stringType().default("tool_01KADY1D1WNXMH1GCRXCCCC90Y"),
53945
+ _id: stringType().default("tool_01KAG3PPZ0HW3CVBES3F7HXF4H"),
53694
53946
  path: stringType(),
53695
53947
  key: stringType(),
53696
53948
  display_name: stringType().optional(),
@@ -53718,7 +53970,7 @@ var init_getalltools = __esm(() => {
53718
53970
  });
53719
53971
  });
53720
53972
  Data5$outboundSchema = objectType({
53721
- id: stringType().default("tool_01KADY1D1WNXMH1GCRXCCCC90Y"),
53973
+ id: stringType().default("tool_01KAG3PPZ0HW3CVBES3F7HXF4H"),
53722
53974
  path: stringType(),
53723
53975
  key: stringType(),
53724
53976
  displayName: stringType().optional(),
@@ -53770,13 +54022,13 @@ var init_getalltools = __esm(() => {
53770
54022
  required: arrayType(stringType()).optional()
53771
54023
  });
53772
54024
  DataTools$inboundSchema = objectType({
53773
- id: stringType().default("01KADY1D1TMT1FMGQW8A5CKG9R"),
54025
+ id: stringType().default("01KAG3PPYRBZ7GW4DM5ZAN5CBC"),
53774
54026
  name: stringType(),
53775
54027
  description: stringType().optional(),
53776
54028
  schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
53777
54029
  });
53778
54030
  DataTools$outboundSchema = objectType({
53779
- id: stringType().default("01KADY1D1TMT1FMGQW8A5CKG9R"),
54031
+ id: stringType().default("01KAG3PPYRBZ7GW4DM5ZAN5CBC"),
53780
54032
  name: stringType(),
53781
54033
  description: stringType().optional(),
53782
54034
  schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
@@ -53806,7 +54058,7 @@ var init_getalltools = __esm(() => {
53806
54058
  });
53807
54059
  });
53808
54060
  Data4$inboundSchema = objectType({
53809
- _id: stringType().default("tool_01KADY1D1RPGPYS2F07PA56BE3"),
54061
+ _id: stringType().default("tool_01KAG3PPYP9N61DX30Q4EZ3486"),
53810
54062
  path: stringType(),
53811
54063
  key: stringType(),
53812
54064
  display_name: stringType().optional(),
@@ -53833,7 +54085,7 @@ var init_getalltools = __esm(() => {
53833
54085
  });
53834
54086
  });
53835
54087
  Data4$outboundSchema = objectType({
53836
- id: stringType().default("tool_01KADY1D1RPGPYS2F07PA56BE3"),
54088
+ id: stringType().default("tool_01KAG3PPYP9N61DX30Q4EZ3486"),
53837
54089
  path: stringType(),
53838
54090
  key: stringType(),
53839
54091
  displayName: stringType().optional(),
@@ -53922,7 +54174,7 @@ var init_getalltools = __esm(() => {
53922
54174
  arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
53923
54175
  });
53924
54176
  Data3$inboundSchema = objectType({
53925
- _id: stringType().default("tool_01KADY1D1NQP90EXCAF0ZYZQPV"),
54177
+ _id: stringType().default("tool_01KAG3PPYJ96MTNT416MX6Z6DA"),
53926
54178
  path: stringType(),
53927
54179
  key: stringType(),
53928
54180
  display_name: stringType().optional(),
@@ -53949,7 +54201,7 @@ var init_getalltools = __esm(() => {
53949
54201
  });
53950
54202
  });
53951
54203
  Data3$outboundSchema = objectType({
53952
- id: stringType().default("tool_01KADY1D1NQP90EXCAF0ZYZQPV"),
54204
+ id: stringType().default("tool_01KAG3PPYJ96MTNT416MX6Z6DA"),
53953
54205
  path: stringType(),
53954
54206
  key: stringType(),
53955
54207
  displayName: stringType().optional(),
@@ -54010,7 +54262,7 @@ var init_getalltools = __esm(() => {
54010
54262
  strict: booleanType().optional()
54011
54263
  });
54012
54264
  Data2$inboundSchema = objectType({
54013
- _id: stringType().default("tool_01KADY1D1J2XH2XWZVDA487JST"),
54265
+ _id: stringType().default("tool_01KAG3PPYG0D2E2ZPS4Y6QV4YA"),
54014
54266
  path: stringType(),
54015
54267
  key: stringType(),
54016
54268
  display_name: stringType().optional(),
@@ -54038,7 +54290,7 @@ var init_getalltools = __esm(() => {
54038
54290
  });
54039
54291
  });
54040
54292
  Data2$outboundSchema = objectType({
54041
- id: stringType().default("tool_01KADY1D1J2XH2XWZVDA487JST"),
54293
+ id: stringType().default("tool_01KAG3PPYG0D2E2ZPS4Y6QV4YA"),
54042
54294
  path: stringType(),
54043
54295
  key: stringType(),
54044
54296
  displayName: stringType().optional(),
@@ -54102,7 +54354,7 @@ var init_getalltools = __esm(() => {
54102
54354
  parameters: lazyType(() => DataParameters$outboundSchema).optional()
54103
54355
  });
54104
54356
  Data1$inboundSchema = objectType({
54105
- _id: stringType().default("tool_01KADY1D1GWZ72869M2MRG9PN5"),
54357
+ _id: stringType().default("tool_01KAG3PPYDKSSNG9B08RRDJVQB"),
54106
54358
  path: stringType(),
54107
54359
  key: stringType(),
54108
54360
  display_name: stringType().optional(),
@@ -54129,7 +54381,7 @@ var init_getalltools = __esm(() => {
54129
54381
  });
54130
54382
  });
54131
54383
  Data1$outboundSchema = objectType({
54132
- id: stringType().default("tool_01KADY1D1GWZ72869M2MRG9PN5"),
54384
+ id: stringType().default("tool_01KAG3PPYDKSSNG9B08RRDJVQB"),
54133
54385
  path: stringType(),
54134
54386
  key: stringType(),
54135
54387
  displayName: stringType().optional(),
@@ -54271,7 +54523,7 @@ var init_getbudget = __esm(() => {
54271
54523
  is_active: booleanType(),
54272
54524
  consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
54273
54525
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
54274
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.769Z").transform((v2) => new Date(v2))
54526
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:05.297Z").transform((v2) => new Date(v2))
54275
54527
  }).transform((v2) => {
54276
54528
  return remap(v2, {
54277
54529
  _id: "id",
@@ -54289,7 +54541,7 @@ var init_getbudget = __esm(() => {
54289
54541
  isActive: booleanType(),
54290
54542
  consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
54291
54543
  created: dateType().transform((v2) => v2.toISOString()).optional(),
54292
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.769Z")).transform((v2) => v2.toISOString())
54544
+ updated: dateType().default(() => new Date("2025-11-20T07:47:05.297Z")).transform((v2) => v2.toISOString())
54293
54545
  }).transform((v2) => {
54294
54546
  return remap(v2, {
54295
54547
  id: "_id",
@@ -54658,8 +54910,8 @@ var init_getevals2 = __esm(() => {
54658
54910
  DataTypescript$inboundSchema = objectType({
54659
54911
  _id: stringType(),
54660
54912
  description: stringType(),
54661
- created: stringType().default("2025-11-19T11:29:37.418Z"),
54662
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
54913
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
54914
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
54663
54915
  guardrail_config: unionType([
54664
54916
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
54665
54917
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -54676,8 +54928,8 @@ var init_getevals2 = __esm(() => {
54676
54928
  DataTypescript$outboundSchema = objectType({
54677
54929
  id: stringType(),
54678
54930
  description: stringType(),
54679
- created: stringType().default("2025-11-19T11:29:37.418Z"),
54680
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
54931
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
54932
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
54681
54933
  guardrailConfig: unionType([
54682
54934
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
54683
54935
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -54734,8 +54986,8 @@ var init_getevals2 = __esm(() => {
54734
54986
  DataRagas$inboundSchema = objectType({
54735
54987
  _id: stringType(),
54736
54988
  description: stringType(),
54737
- created: stringType().default("2025-11-19T11:29:37.418Z"),
54738
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
54989
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
54990
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
54739
54991
  guardrail_config: unionType([
54740
54992
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
54741
54993
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -54754,8 +55006,8 @@ var init_getevals2 = __esm(() => {
54754
55006
  DataRagas$outboundSchema = objectType({
54755
55007
  id: stringType(),
54756
55008
  description: stringType(),
54757
- created: stringType().default("2025-11-19T11:29:37.418Z"),
54758
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55009
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55010
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
54759
55011
  guardrailConfig: unionType([
54760
55012
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
54761
55013
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -55192,8 +55444,8 @@ var init_getevals2 = __esm(() => {
55192
55444
  DataFunction$inboundSchema = objectType({
55193
55445
  _id: stringType(),
55194
55446
  description: stringType(),
55195
- created: stringType().default("2025-11-19T11:29:37.418Z"),
55196
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55447
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55448
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
55197
55449
  guardrail_config: unionType([
55198
55450
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
55199
55451
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -55247,8 +55499,8 @@ var init_getevals2 = __esm(() => {
55247
55499
  DataFunction$outboundSchema = objectType({
55248
55500
  id: stringType(),
55249
55501
  description: stringType(),
55250
- created: stringType().default("2025-11-19T11:29:37.418Z"),
55251
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55502
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55503
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
55252
55504
  guardrailConfig: unionType([
55253
55505
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
55254
55506
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -55340,8 +55592,8 @@ var init_getevals2 = __esm(() => {
55340
55592
  DataPython$inboundSchema = objectType({
55341
55593
  _id: stringType(),
55342
55594
  description: stringType(),
55343
- created: stringType().default("2025-11-19T11:29:37.418Z"),
55344
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55595
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55596
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
55345
55597
  guardrail_config: unionType([
55346
55598
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
55347
55599
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
@@ -55358,8 +55610,8 @@ var init_getevals2 = __esm(() => {
55358
55610
  DataPython$outboundSchema = objectType({
55359
55611
  id: stringType(),
55360
55612
  description: stringType(),
55361
- created: stringType().default("2025-11-19T11:29:37.418Z"),
55362
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55613
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55614
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
55363
55615
  guardrailConfig: unionType([
55364
55616
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
55365
55617
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
@@ -55416,8 +55668,8 @@ var init_getevals2 = __esm(() => {
55416
55668
  DataHTTP$inboundSchema = objectType({
55417
55669
  _id: stringType(),
55418
55670
  description: stringType(),
55419
- created: stringType().default("2025-11-19T11:29:37.418Z"),
55420
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55671
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55672
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
55421
55673
  guardrail_config: unionType([
55422
55674
  lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
55423
55675
  lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
@@ -55437,8 +55689,8 @@ var init_getevals2 = __esm(() => {
55437
55689
  DataHTTP$outboundSchema = objectType({
55438
55690
  id: stringType(),
55439
55691
  description: stringType(),
55440
- created: stringType().default("2025-11-19T11:29:37.418Z"),
55441
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55692
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55693
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
55442
55694
  guardrailConfig: unionType([
55443
55695
  lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
55444
55696
  lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
@@ -55496,8 +55748,8 @@ var init_getevals2 = __esm(() => {
55496
55748
  DataJSON$inboundSchema = objectType({
55497
55749
  _id: stringType(),
55498
55750
  description: stringType(),
55499
- created: stringType().default("2025-11-19T11:29:37.418Z"),
55500
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55751
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55752
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
55501
55753
  guardrail_config: unionType([
55502
55754
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
55503
55755
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
@@ -55514,8 +55766,8 @@ var init_getevals2 = __esm(() => {
55514
55766
  DataJSON$outboundSchema = objectType({
55515
55767
  id: stringType(),
55516
55768
  description: stringType(),
55517
- created: stringType().default("2025-11-19T11:29:37.418Z"),
55518
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55769
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55770
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
55519
55771
  guardrailConfig: unionType([
55520
55772
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
55521
55773
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
@@ -55570,8 +55822,8 @@ var init_getevals2 = __esm(() => {
55570
55822
  DataLLM$inboundSchema = objectType({
55571
55823
  _id: stringType(),
55572
55824
  description: stringType(),
55573
- created: stringType().default("2025-11-19T11:29:37.418Z"),
55574
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55825
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55826
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
55575
55827
  guardrail_config: unionType([
55576
55828
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
55577
55829
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -55589,8 +55841,8 @@ var init_getevals2 = __esm(() => {
55589
55841
  DataLLM$outboundSchema = objectType({
55590
55842
  id: stringType(),
55591
55843
  description: stringType(),
55592
- created: stringType().default("2025-11-19T11:29:37.418Z"),
55593
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
55844
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
55845
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
55594
55846
  guardrailConfig: unionType([
55595
55847
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
55596
55848
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -57135,7 +57387,7 @@ var init_getpromptversion2 = __esm(() => {
57135
57387
  });
57136
57388
 
57137
57389
  // src/models/operations/invokeagent.ts
57138
- var RoleToolMessage, RoleUserMessage, InvokeAgentPublicMessagePartKind, PublicMessagePartKind, Kind, InvokeAgentKind, InvokeAgentState, InvokeAgentAgentsKind, InvokeAgentAgentsRole, InvokeAgentPartsAgentsResponse200ApplicationJSONKind, InvokeAgentPartsAgentsResponse200Kind, InvokeAgentPartsAgentsResponseKind, InvokeAgentPartsAgentsKind, InvokeAgentPartsKind, RoleToolMessage$inboundSchema, RoleToolMessage$outboundSchema, RoleUserMessage$inboundSchema, RoleUserMessage$outboundSchema, InvokeAgentRole$inboundSchema, InvokeAgentRole$outboundSchema, InvokeAgentPublicMessagePartKind$inboundSchema, InvokeAgentPublicMessagePartKind$outboundSchema, ToolResultPart$inboundSchema, ToolResultPart$outboundSchema, PublicMessagePartKind$inboundSchema, PublicMessagePartKind$outboundSchema, FileInURIFormat$inboundSchema, FileInURIFormat$outboundSchema, BinaryFormat$inboundSchema, BinaryFormat$outboundSchema, PublicMessagePartFile$inboundSchema, PublicMessagePartFile$outboundSchema, FilePart$inboundSchema, FilePart$outboundSchema, Kind$inboundSchema, Kind$outboundSchema, TextPart$inboundSchema, TextPart$outboundSchema, PublicMessagePart$inboundSchema, PublicMessagePart$outboundSchema, Message$inboundSchema, Message$outboundSchema, Contact$inboundSchema, Contact$outboundSchema, InvokeAgentThread$inboundSchema, InvokeAgentThread$outboundSchema, Memory$inboundSchema, Memory$outboundSchema, InvokeAgentRequestBody$inboundSchema, InvokeAgentRequestBody$outboundSchema, InvokeAgentRequest$inboundSchema, InvokeAgentRequest$outboundSchema, InvokeAgentKind$inboundSchema, InvokeAgentKind$outboundSchema, InvokeAgentState$inboundSchema, InvokeAgentState$outboundSchema, InvokeAgentAgentsKind$inboundSchema, InvokeAgentAgentsKind$outboundSchema, InvokeAgentAgentsRole$inboundSchema, InvokeAgentAgentsRole$outboundSchema, InvokeAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema, InvokeAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema, InvokeAgentParts5$inboundSchema, InvokeAgentParts5$outboundSchema, InvokeAgentPartsAgentsResponse200Kind$inboundSchema, InvokeAgentPartsAgentsResponse200Kind$outboundSchema, InvokeAgentParts4$inboundSchema, InvokeAgentParts4$outboundSchema, InvokeAgentPartsAgentsResponseKind$inboundSchema, InvokeAgentPartsAgentsResponseKind$outboundSchema, InvokeAgentFileFileInURIFormat$inboundSchema, InvokeAgentFileFileInURIFormat$outboundSchema, InvokeAgentFileBinaryFormat$inboundSchema, InvokeAgentFileBinaryFormat$outboundSchema, InvokeAgentPartsFile$inboundSchema, InvokeAgentPartsFile$outboundSchema, InvokeAgentParts3$inboundSchema, InvokeAgentParts3$outboundSchema, InvokeAgentPartsAgentsKind$inboundSchema, InvokeAgentPartsAgentsKind$outboundSchema, InvokeAgentParts2$inboundSchema, InvokeAgentParts2$outboundSchema, InvokeAgentPartsKind$inboundSchema, InvokeAgentPartsKind$outboundSchema, InvokeAgentParts1$inboundSchema, InvokeAgentParts1$outboundSchema, InvokeAgentParts$inboundSchema, InvokeAgentParts$outboundSchema, InvokeAgentMessage$inboundSchema, InvokeAgentMessage$outboundSchema, InvokeAgentStatus$inboundSchema, InvokeAgentStatus$outboundSchema, InvokeAgentResponseBody$inboundSchema, InvokeAgentResponseBody$outboundSchema;
57390
+ var RoleToolMessage, RoleUserMessage, InvokeAgentPublicMessagePartKind, PublicMessagePartKind, Kind, InvokeAgentKind, TaskState, InvokeAgentAgentsKind, InvokeAgentExtendedMessageRole, InvokeAgentPartsAgentsResponse200Kind, InvokeAgentPartsAgentsResponseKind, InvokeAgentPartsAgentsKind, InvokeAgentPartsKind, InvokeAgentPartsAgentsResponse200ApplicationJSONKind, RoleToolMessage$inboundSchema, RoleToolMessage$outboundSchema, RoleUserMessage$inboundSchema, RoleUserMessage$outboundSchema, InvokeAgentRole$inboundSchema, InvokeAgentRole$outboundSchema, InvokeAgentPublicMessagePartKind$inboundSchema, InvokeAgentPublicMessagePartKind$outboundSchema, ToolResultPart$inboundSchema, ToolResultPart$outboundSchema, PublicMessagePartKind$inboundSchema, PublicMessagePartKind$outboundSchema, FileInURIFormat$inboundSchema, FileInURIFormat$outboundSchema, BinaryFormat$inboundSchema, BinaryFormat$outboundSchema, PublicMessagePartFile$inboundSchema, PublicMessagePartFile$outboundSchema, FilePart$inboundSchema, FilePart$outboundSchema, Kind$inboundSchema, Kind$outboundSchema, TextPart$inboundSchema, TextPart$outboundSchema, PublicMessagePart$inboundSchema, PublicMessagePart$outboundSchema, A2AMessage$inboundSchema, A2AMessage$outboundSchema, Contact$inboundSchema, Contact$outboundSchema, InvokeAgentThread$inboundSchema, InvokeAgentThread$outboundSchema, Memory$inboundSchema, Memory$outboundSchema, InvokeAgentRequestBody$inboundSchema, InvokeAgentRequestBody$outboundSchema, InvokeAgentRequest$inboundSchema, InvokeAgentRequest$outboundSchema, InvokeAgentKind$inboundSchema, InvokeAgentKind$outboundSchema, TaskState$inboundSchema, TaskState$outboundSchema, InvokeAgentAgentsKind$inboundSchema, InvokeAgentAgentsKind$outboundSchema, InvokeAgentExtendedMessageRole$inboundSchema, InvokeAgentExtendedMessageRole$outboundSchema, InvokeAgentPartsAgentsResponse200Kind$inboundSchema, InvokeAgentPartsAgentsResponse200Kind$outboundSchema, InvokeAgentPartsToolResultPart$inboundSchema, InvokeAgentPartsToolResultPart$outboundSchema, InvokeAgentPartsAgentsResponseKind$inboundSchema, InvokeAgentPartsAgentsResponseKind$outboundSchema, InvokeAgentPartsToolCallPart$inboundSchema, InvokeAgentPartsToolCallPart$outboundSchema, InvokeAgentPartsAgentsKind$inboundSchema, InvokeAgentPartsAgentsKind$outboundSchema, InvokeAgentFileFileInURIFormat$inboundSchema, InvokeAgentFileFileInURIFormat$outboundSchema, InvokeAgentFileBinaryFormat$inboundSchema, InvokeAgentFileBinaryFormat$outboundSchema, InvokeAgentPartsFile$inboundSchema, InvokeAgentPartsFile$outboundSchema, InvokeAgentPartsFilePart$inboundSchema, InvokeAgentPartsFilePart$outboundSchema, InvokeAgentPartsKind$inboundSchema, InvokeAgentPartsKind$outboundSchema, InvokeAgentPartsDataPart$inboundSchema, InvokeAgentPartsDataPart$outboundSchema, InvokeAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema, InvokeAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema, InvokeAgentPartsTextPart$inboundSchema, InvokeAgentPartsTextPart$outboundSchema, InvokeAgentParts$inboundSchema, InvokeAgentParts$outboundSchema, TaskStatusMessage$inboundSchema, TaskStatusMessage$outboundSchema, TaskStatus$inboundSchema, TaskStatus$outboundSchema, InvokeAgentA2ATaskResponse$inboundSchema, InvokeAgentA2ATaskResponse$outboundSchema;
57139
57391
  var init_invokeagent = __esm(() => {
57140
57392
  init_esm();
57141
57393
  init_primitives();
@@ -57157,39 +57409,38 @@ var init_invokeagent = __esm(() => {
57157
57409
  InvokeAgentKind = {
57158
57410
  Task: "task"
57159
57411
  };
57160
- InvokeAgentState = {
57412
+ TaskState = {
57161
57413
  Submitted: "submitted",
57162
57414
  Working: "working",
57163
57415
  InputRequired: "input-required",
57416
+ AuthRequired: "auth-required",
57164
57417
  Completed: "completed",
57165
57418
  Failed: "failed",
57166
57419
  Canceled: "canceled",
57167
- Rejected: "rejected",
57168
- AuthRequired: "auth-required",
57169
- Unknown: "unknown"
57420
+ Rejected: "rejected"
57170
57421
  };
57171
57422
  InvokeAgentAgentsKind = {
57172
57423
  Message: "message"
57173
57424
  };
57174
- InvokeAgentAgentsRole = {
57425
+ InvokeAgentExtendedMessageRole = {
57175
57426
  User: "user",
57176
57427
  Agent: "agent",
57177
57428
  Tool: "tool",
57178
57429
  System: "system"
57179
57430
  };
57180
- InvokeAgentPartsAgentsResponse200ApplicationJSONKind = {
57431
+ InvokeAgentPartsAgentsResponse200Kind = {
57181
57432
  ToolResult: "tool_result"
57182
57433
  };
57183
- InvokeAgentPartsAgentsResponse200Kind = {
57434
+ InvokeAgentPartsAgentsResponseKind = {
57184
57435
  ToolCall: "tool_call"
57185
57436
  };
57186
- InvokeAgentPartsAgentsResponseKind = {
57437
+ InvokeAgentPartsAgentsKind = {
57187
57438
  File: "file"
57188
57439
  };
57189
- InvokeAgentPartsAgentsKind = {
57440
+ InvokeAgentPartsKind = {
57190
57441
  Data: "data"
57191
57442
  };
57192
- InvokeAgentPartsKind = {
57443
+ InvokeAgentPartsAgentsResponse200ApplicationJSONKind = {
57193
57444
  Text: "text"
57194
57445
  };
57195
57446
  RoleToolMessage$inboundSchema = nativeEnumType(RoleToolMessage);
@@ -57286,19 +57537,16 @@ var init_invokeagent = __esm(() => {
57286
57537
  lazyType(() => FilePart$outboundSchema),
57287
57538
  lazyType(() => ToolResultPart$outboundSchema)
57288
57539
  ]);
57289
- Message$inboundSchema = objectType({
57540
+ A2AMessage$inboundSchema = objectType({
57290
57541
  messageId: stringType().optional(),
57291
- role: unionType([
57292
- RoleUserMessage$inboundSchema,
57293
- RoleToolMessage$inboundSchema
57294
- ]),
57542
+ role: unionType([RoleUserMessage$inboundSchema, RoleToolMessage$inboundSchema]),
57295
57543
  parts: arrayType(unionType([
57296
57544
  lazyType(() => TextPart$inboundSchema),
57297
57545
  lazyType(() => FilePart$inboundSchema),
57298
57546
  lazyType(() => ToolResultPart$inboundSchema)
57299
57547
  ]))
57300
57548
  });
57301
- Message$outboundSchema = objectType({
57549
+ A2AMessage$outboundSchema = objectType({
57302
57550
  messageId: stringType().optional(),
57303
57551
  role: unionType([
57304
57552
  RoleUserMessage$outboundSchema,
@@ -57360,7 +57608,7 @@ var init_invokeagent = __esm(() => {
57360
57608
  });
57361
57609
  InvokeAgentRequestBody$inboundSchema = objectType({
57362
57610
  task_id: stringType().optional(),
57363
- message: lazyType(() => Message$inboundSchema),
57611
+ message: lazyType(() => A2AMessage$inboundSchema),
57364
57612
  variables: recordType(anyType()).optional(),
57365
57613
  contact: lazyType(() => Contact$inboundSchema).optional(),
57366
57614
  thread: lazyType(() => InvokeAgentThread$inboundSchema).optional(),
@@ -57373,7 +57621,7 @@ var init_invokeagent = __esm(() => {
57373
57621
  });
57374
57622
  InvokeAgentRequestBody$outboundSchema = objectType({
57375
57623
  taskId: stringType().optional(),
57376
- message: lazyType(() => Message$outboundSchema),
57624
+ message: lazyType(() => A2AMessage$outboundSchema),
57377
57625
  variables: recordType(anyType()).optional(),
57378
57626
  contact: lazyType(() => Contact$outboundSchema).optional(),
57379
57627
  thread: lazyType(() => InvokeAgentThread$outboundSchema).optional(),
@@ -57402,16 +57650,16 @@ var init_invokeagent = __esm(() => {
57402
57650
  });
57403
57651
  InvokeAgentKind$inboundSchema = nativeEnumType(InvokeAgentKind);
57404
57652
  InvokeAgentKind$outboundSchema = InvokeAgentKind$inboundSchema;
57405
- InvokeAgentState$inboundSchema = nativeEnumType(InvokeAgentState);
57406
- InvokeAgentState$outboundSchema = InvokeAgentState$inboundSchema;
57653
+ TaskState$inboundSchema = nativeEnumType(TaskState);
57654
+ TaskState$outboundSchema = TaskState$inboundSchema;
57407
57655
  InvokeAgentAgentsKind$inboundSchema = nativeEnumType(InvokeAgentAgentsKind);
57408
57656
  InvokeAgentAgentsKind$outboundSchema = InvokeAgentAgentsKind$inboundSchema;
57409
- InvokeAgentAgentsRole$inboundSchema = nativeEnumType(InvokeAgentAgentsRole);
57410
- InvokeAgentAgentsRole$outboundSchema = InvokeAgentAgentsRole$inboundSchema;
57411
- InvokeAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema = nativeEnumType(InvokeAgentPartsAgentsResponse200ApplicationJSONKind);
57412
- InvokeAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema = InvokeAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema;
57413
- InvokeAgentParts5$inboundSchema = objectType({
57414
- kind: InvokeAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema,
57657
+ InvokeAgentExtendedMessageRole$inboundSchema = nativeEnumType(InvokeAgentExtendedMessageRole);
57658
+ InvokeAgentExtendedMessageRole$outboundSchema = InvokeAgentExtendedMessageRole$inboundSchema;
57659
+ InvokeAgentPartsAgentsResponse200Kind$inboundSchema = nativeEnumType(InvokeAgentPartsAgentsResponse200Kind);
57660
+ InvokeAgentPartsAgentsResponse200Kind$outboundSchema = InvokeAgentPartsAgentsResponse200Kind$inboundSchema;
57661
+ InvokeAgentPartsToolResultPart$inboundSchema = objectType({
57662
+ kind: InvokeAgentPartsAgentsResponse200Kind$inboundSchema,
57415
57663
  tool_call_id: stringType(),
57416
57664
  result: anyType().optional(),
57417
57665
  metadata: recordType(anyType()).optional()
@@ -57420,8 +57668,8 @@ var init_invokeagent = __esm(() => {
57420
57668
  tool_call_id: "toolCallId"
57421
57669
  });
57422
57670
  });
57423
- InvokeAgentParts5$outboundSchema = objectType({
57424
- kind: InvokeAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema,
57671
+ InvokeAgentPartsToolResultPart$outboundSchema = objectType({
57672
+ kind: InvokeAgentPartsAgentsResponse200Kind$outboundSchema,
57425
57673
  toolCallId: stringType(),
57426
57674
  result: anyType().optional(),
57427
57675
  metadata: recordType(anyType()).optional()
@@ -57430,10 +57678,10 @@ var init_invokeagent = __esm(() => {
57430
57678
  toolCallId: "tool_call_id"
57431
57679
  });
57432
57680
  });
57433
- InvokeAgentPartsAgentsResponse200Kind$inboundSchema = nativeEnumType(InvokeAgentPartsAgentsResponse200Kind);
57434
- InvokeAgentPartsAgentsResponse200Kind$outboundSchema = InvokeAgentPartsAgentsResponse200Kind$inboundSchema;
57435
- InvokeAgentParts4$inboundSchema = objectType({
57436
- kind: InvokeAgentPartsAgentsResponse200Kind$inboundSchema,
57681
+ InvokeAgentPartsAgentsResponseKind$inboundSchema = nativeEnumType(InvokeAgentPartsAgentsResponseKind);
57682
+ InvokeAgentPartsAgentsResponseKind$outboundSchema = InvokeAgentPartsAgentsResponseKind$inboundSchema;
57683
+ InvokeAgentPartsToolCallPart$inboundSchema = objectType({
57684
+ kind: InvokeAgentPartsAgentsResponseKind$inboundSchema,
57437
57685
  tool_name: stringType(),
57438
57686
  tool_call_id: stringType(),
57439
57687
  arguments: recordType(anyType()),
@@ -57444,8 +57692,8 @@ var init_invokeagent = __esm(() => {
57444
57692
  tool_call_id: "toolCallId"
57445
57693
  });
57446
57694
  });
57447
- InvokeAgentParts4$outboundSchema = objectType({
57448
- kind: InvokeAgentPartsAgentsResponse200Kind$outboundSchema,
57695
+ InvokeAgentPartsToolCallPart$outboundSchema = objectType({
57696
+ kind: InvokeAgentPartsAgentsResponseKind$outboundSchema,
57449
57697
  toolName: stringType(),
57450
57698
  toolCallId: stringType(),
57451
57699
  arguments: recordType(anyType()),
@@ -57456,8 +57704,8 @@ var init_invokeagent = __esm(() => {
57456
57704
  toolCallId: "tool_call_id"
57457
57705
  });
57458
57706
  });
57459
- InvokeAgentPartsAgentsResponseKind$inboundSchema = nativeEnumType(InvokeAgentPartsAgentsResponseKind);
57460
- InvokeAgentPartsAgentsResponseKind$outboundSchema = InvokeAgentPartsAgentsResponseKind$inboundSchema;
57707
+ InvokeAgentPartsAgentsKind$inboundSchema = nativeEnumType(InvokeAgentPartsAgentsKind);
57708
+ InvokeAgentPartsAgentsKind$outboundSchema = InvokeAgentPartsAgentsKind$inboundSchema;
57461
57709
  InvokeAgentFileFileInURIFormat$inboundSchema = objectType({
57462
57710
  uri: stringType(),
57463
57711
  mimeType: stringType().optional(),
@@ -57486,104 +57734,104 @@ var init_invokeagent = __esm(() => {
57486
57734
  lazyType(() => InvokeAgentFileBinaryFormat$outboundSchema),
57487
57735
  lazyType(() => InvokeAgentFileFileInURIFormat$outboundSchema)
57488
57736
  ]);
57489
- InvokeAgentParts3$inboundSchema = objectType({
57490
- kind: InvokeAgentPartsAgentsResponseKind$inboundSchema,
57737
+ InvokeAgentPartsFilePart$inboundSchema = objectType({
57738
+ kind: InvokeAgentPartsAgentsKind$inboundSchema,
57491
57739
  file: unionType([
57492
57740
  lazyType(() => InvokeAgentFileBinaryFormat$inboundSchema),
57493
57741
  lazyType(() => InvokeAgentFileFileInURIFormat$inboundSchema)
57494
57742
  ]),
57495
57743
  metadata: recordType(anyType()).optional()
57496
57744
  });
57497
- InvokeAgentParts3$outboundSchema = objectType({
57498
- kind: InvokeAgentPartsAgentsResponseKind$outboundSchema,
57745
+ InvokeAgentPartsFilePart$outboundSchema = objectType({
57746
+ kind: InvokeAgentPartsAgentsKind$outboundSchema,
57499
57747
  file: unionType([
57500
57748
  lazyType(() => InvokeAgentFileBinaryFormat$outboundSchema),
57501
57749
  lazyType(() => InvokeAgentFileFileInURIFormat$outboundSchema)
57502
57750
  ]),
57503
57751
  metadata: recordType(anyType()).optional()
57504
57752
  });
57505
- InvokeAgentPartsAgentsKind$inboundSchema = nativeEnumType(InvokeAgentPartsAgentsKind);
57506
- InvokeAgentPartsAgentsKind$outboundSchema = InvokeAgentPartsAgentsKind$inboundSchema;
57507
- InvokeAgentParts2$inboundSchema = objectType({
57508
- kind: InvokeAgentPartsAgentsKind$inboundSchema,
57753
+ InvokeAgentPartsKind$inboundSchema = nativeEnumType(InvokeAgentPartsKind);
57754
+ InvokeAgentPartsKind$outboundSchema = InvokeAgentPartsKind$inboundSchema;
57755
+ InvokeAgentPartsDataPart$inboundSchema = objectType({
57756
+ kind: InvokeAgentPartsKind$inboundSchema,
57509
57757
  data: recordType(anyType()),
57510
57758
  metadata: recordType(anyType()).optional()
57511
57759
  });
57512
- InvokeAgentParts2$outboundSchema = objectType({
57513
- kind: InvokeAgentPartsAgentsKind$outboundSchema,
57760
+ InvokeAgentPartsDataPart$outboundSchema = objectType({
57761
+ kind: InvokeAgentPartsKind$outboundSchema,
57514
57762
  data: recordType(anyType()),
57515
57763
  metadata: recordType(anyType()).optional()
57516
57764
  });
57517
- InvokeAgentPartsKind$inboundSchema = nativeEnumType(InvokeAgentPartsKind);
57518
- InvokeAgentPartsKind$outboundSchema = InvokeAgentPartsKind$inboundSchema;
57519
- InvokeAgentParts1$inboundSchema = objectType({
57520
- kind: InvokeAgentPartsKind$inboundSchema,
57765
+ InvokeAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema = nativeEnumType(InvokeAgentPartsAgentsResponse200ApplicationJSONKind);
57766
+ InvokeAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema = InvokeAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema;
57767
+ InvokeAgentPartsTextPart$inboundSchema = objectType({
57768
+ kind: InvokeAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema,
57521
57769
  text: stringType()
57522
57770
  });
57523
- InvokeAgentParts1$outboundSchema = objectType({
57524
- kind: InvokeAgentPartsKind$outboundSchema,
57771
+ InvokeAgentPartsTextPart$outboundSchema = objectType({
57772
+ kind: InvokeAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema,
57525
57773
  text: stringType()
57526
57774
  });
57527
57775
  InvokeAgentParts$inboundSchema = unionType([
57528
- lazyType(() => InvokeAgentParts4$inboundSchema),
57529
- lazyType(() => InvokeAgentParts1$inboundSchema),
57530
- lazyType(() => InvokeAgentParts2$inboundSchema),
57531
- lazyType(() => InvokeAgentParts3$inboundSchema),
57532
- lazyType(() => InvokeAgentParts5$inboundSchema)
57776
+ lazyType(() => InvokeAgentPartsToolCallPart$inboundSchema),
57777
+ lazyType(() => InvokeAgentPartsTextPart$inboundSchema),
57778
+ lazyType(() => InvokeAgentPartsDataPart$inboundSchema),
57779
+ lazyType(() => InvokeAgentPartsFilePart$inboundSchema),
57780
+ lazyType(() => InvokeAgentPartsToolResultPart$inboundSchema)
57533
57781
  ]);
57534
57782
  InvokeAgentParts$outboundSchema = unionType([
57535
- lazyType(() => InvokeAgentParts4$outboundSchema),
57536
- lazyType(() => InvokeAgentParts1$outboundSchema),
57537
- lazyType(() => InvokeAgentParts2$outboundSchema),
57538
- lazyType(() => InvokeAgentParts3$outboundSchema),
57539
- lazyType(() => InvokeAgentParts5$outboundSchema)
57783
+ lazyType(() => InvokeAgentPartsToolCallPart$outboundSchema),
57784
+ lazyType(() => InvokeAgentPartsTextPart$outboundSchema),
57785
+ lazyType(() => InvokeAgentPartsDataPart$outboundSchema),
57786
+ lazyType(() => InvokeAgentPartsFilePart$outboundSchema),
57787
+ lazyType(() => InvokeAgentPartsToolResultPart$outboundSchema)
57540
57788
  ]);
57541
- InvokeAgentMessage$inboundSchema = objectType({
57789
+ TaskStatusMessage$inboundSchema = objectType({
57542
57790
  kind: InvokeAgentAgentsKind$inboundSchema,
57543
57791
  messageId: stringType(),
57544
- role: InvokeAgentAgentsRole$inboundSchema,
57792
+ role: InvokeAgentExtendedMessageRole$inboundSchema,
57545
57793
  parts: arrayType(unionType([
57546
- lazyType(() => InvokeAgentParts4$inboundSchema),
57547
- lazyType(() => InvokeAgentParts1$inboundSchema),
57548
- lazyType(() => InvokeAgentParts2$inboundSchema),
57549
- lazyType(() => InvokeAgentParts3$inboundSchema),
57550
- lazyType(() => InvokeAgentParts5$inboundSchema)
57794
+ lazyType(() => InvokeAgentPartsToolCallPart$inboundSchema),
57795
+ lazyType(() => InvokeAgentPartsTextPart$inboundSchema),
57796
+ lazyType(() => InvokeAgentPartsDataPart$inboundSchema),
57797
+ lazyType(() => InvokeAgentPartsFilePart$inboundSchema),
57798
+ lazyType(() => InvokeAgentPartsToolResultPart$inboundSchema)
57551
57799
  ]))
57552
57800
  });
57553
- InvokeAgentMessage$outboundSchema = objectType({
57801
+ TaskStatusMessage$outboundSchema = objectType({
57554
57802
  kind: InvokeAgentAgentsKind$outboundSchema,
57555
57803
  messageId: stringType(),
57556
- role: InvokeAgentAgentsRole$outboundSchema,
57804
+ role: InvokeAgentExtendedMessageRole$outboundSchema,
57557
57805
  parts: arrayType(unionType([
57558
- lazyType(() => InvokeAgentParts4$outboundSchema),
57559
- lazyType(() => InvokeAgentParts1$outboundSchema),
57560
- lazyType(() => InvokeAgentParts2$outboundSchema),
57561
- lazyType(() => InvokeAgentParts3$outboundSchema),
57562
- lazyType(() => InvokeAgentParts5$outboundSchema)
57806
+ lazyType(() => InvokeAgentPartsToolCallPart$outboundSchema),
57807
+ lazyType(() => InvokeAgentPartsTextPart$outboundSchema),
57808
+ lazyType(() => InvokeAgentPartsDataPart$outboundSchema),
57809
+ lazyType(() => InvokeAgentPartsFilePart$outboundSchema),
57810
+ lazyType(() => InvokeAgentPartsToolResultPart$outboundSchema)
57563
57811
  ]))
57564
57812
  });
57565
- InvokeAgentStatus$inboundSchema = objectType({
57566
- state: InvokeAgentState$inboundSchema,
57813
+ TaskStatus$inboundSchema = objectType({
57814
+ state: TaskState$inboundSchema,
57567
57815
  timestamp: stringType().optional(),
57568
- message: lazyType(() => InvokeAgentMessage$inboundSchema).optional()
57816
+ message: lazyType(() => TaskStatusMessage$inboundSchema).optional()
57569
57817
  });
57570
- InvokeAgentStatus$outboundSchema = objectType({
57571
- state: InvokeAgentState$outboundSchema,
57818
+ TaskStatus$outboundSchema = objectType({
57819
+ state: TaskState$outboundSchema,
57572
57820
  timestamp: stringType().optional(),
57573
- message: lazyType(() => InvokeAgentMessage$outboundSchema).optional()
57821
+ message: lazyType(() => TaskStatusMessage$outboundSchema).optional()
57574
57822
  });
57575
- InvokeAgentResponseBody$inboundSchema = objectType({
57823
+ InvokeAgentA2ATaskResponse$inboundSchema = objectType({
57576
57824
  id: stringType(),
57577
57825
  contextId: stringType(),
57578
57826
  kind: InvokeAgentKind$inboundSchema,
57579
- status: lazyType(() => InvokeAgentStatus$inboundSchema),
57827
+ status: lazyType(() => TaskStatus$inboundSchema),
57580
57828
  metadata: recordType(anyType()).optional()
57581
57829
  });
57582
- InvokeAgentResponseBody$outboundSchema = objectType({
57830
+ InvokeAgentA2ATaskResponse$outboundSchema = objectType({
57583
57831
  id: stringType(),
57584
57832
  contextId: stringType(),
57585
57833
  kind: InvokeAgentKind$outboundSchema,
57586
- status: lazyType(() => InvokeAgentStatus$outboundSchema),
57834
+ status: lazyType(() => TaskStatus$outboundSchema),
57587
57835
  metadata: recordType(anyType()).optional()
57588
57836
  });
57589
57837
  });
@@ -58640,11 +58888,14 @@ var init_listagents = __esm(() => {
58640
58888
  });
58641
58889
 
58642
58890
  // src/models/operations/listagenttasks.ts
58643
- var Status, ListAgentTasksKind, ListAgentTasksAgentsKind, ListAgentTasksRole, ListAgentTasksPartsAgentsResponse200ApplicationJSONKind, ListAgentTasksPartsAgentsResponse200Kind, ListAgentTasksPartsAgentsResponseKind, ListAgentTasksPartsAgentsKind, ListAgentTasksPartsKind, ListAgentTasksAgentsResponseKind, Status$inboundSchema, Status$outboundSchema, ListAgentTasksRequest$inboundSchema, ListAgentTasksRequest$outboundSchema, ListAgentTasksKind$inboundSchema, ListAgentTasksKind$outboundSchema, ListAgentTasksStatus$inboundSchema, ListAgentTasksStatus$outboundSchema, ListAgentTasksAgentsKind$inboundSchema, ListAgentTasksAgentsKind$outboundSchema, ListAgentTasksRole$inboundSchema, ListAgentTasksRole$outboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONKind$inboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONKind$outboundSchema, ListAgentTasksParts5$inboundSchema, ListAgentTasksParts5$outboundSchema, ListAgentTasksPartsAgentsResponse200Kind$inboundSchema, ListAgentTasksPartsAgentsResponse200Kind$outboundSchema, ListAgentTasksParts4$inboundSchema, ListAgentTasksParts4$outboundSchema, ListAgentTasksPartsAgentsResponseKind$inboundSchema, ListAgentTasksPartsAgentsResponseKind$outboundSchema, ListAgentTasksFileFileInURIFormat$inboundSchema, ListAgentTasksFileFileInURIFormat$outboundSchema, ListAgentTasksFileBinaryFormat$inboundSchema, ListAgentTasksFileBinaryFormat$outboundSchema, ListAgentTasksPartsFile$inboundSchema, ListAgentTasksPartsFile$outboundSchema, ListAgentTasksParts3$inboundSchema, ListAgentTasksParts3$outboundSchema, ListAgentTasksPartsAgentsKind$inboundSchema, ListAgentTasksPartsAgentsKind$outboundSchema, ListAgentTasksParts2$inboundSchema, ListAgentTasksParts2$outboundSchema, ListAgentTasksPartsKind$inboundSchema, ListAgentTasksPartsKind$outboundSchema, ListAgentTasksParts1$inboundSchema, ListAgentTasksParts1$outboundSchema, ListAgentTasksParts$inboundSchema, ListAgentTasksParts$outboundSchema, ListAgentTasksHistory$inboundSchema, ListAgentTasksHistory$outboundSchema, ListAgentTasksAgentsResponseKind$inboundSchema, ListAgentTasksAgentsResponseKind$outboundSchema, ListAgentTasksArtifacts$inboundSchema, ListAgentTasksArtifacts$outboundSchema, Tasks$inboundSchema, Tasks$outboundSchema, ListAgentTasksResponseBody$inboundSchema2, ListAgentTasksResponseBody$outboundSchema2;
58891
+ var ListAgentTasksKind, ListAgentTasksTaskState, ListAgentTasksAgentsResponseKind, ListAgentTasksAgentsExtendedMessageRole, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage5Kind, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessageKind, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusKind, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage2Kind, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage1Kind, ListAgentTasksAgentsKind, ListAgentTasksExtendedMessageRole, ListAgentTasksPartsAgentsResponse200ApplicationJSONKind, ListAgentTasksPartsAgentsResponse200Kind, ListAgentTasksPartsAgentsResponseKind, ListAgentTasksPartsAgentsKind, ListAgentTasksPartsKind, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksArtifactsKind, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksKind, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyKind, ListAgentTasksRequest$inboundSchema, ListAgentTasksRequest$outboundSchema, ListAgentTasksKind$inboundSchema, ListAgentTasksKind$outboundSchema, ListAgentTasksTaskState$inboundSchema, ListAgentTasksTaskState$outboundSchema, ListAgentTasksAgentsResponseKind$inboundSchema, ListAgentTasksAgentsResponseKind$outboundSchema, ListAgentTasksAgentsExtendedMessageRole$inboundSchema, ListAgentTasksAgentsExtendedMessageRole$outboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage5Kind$inboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage5Kind$outboundSchema, ListAgentTasksPartsAgentsToolResultPart$inboundSchema, ListAgentTasksPartsAgentsToolResultPart$outboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessageKind$inboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessageKind$outboundSchema, ListAgentTasksPartsToolCallPart$inboundSchema, ListAgentTasksPartsToolCallPart$outboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusKind$inboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusKind$outboundSchema, ListAgentTasksFileAgentsResponseFileInURIFormat$inboundSchema, ListAgentTasksFileAgentsResponseFileInURIFormat$outboundSchema, ListAgentTasksFileAgentsResponseBinaryFormat$inboundSchema, ListAgentTasksFileAgentsResponseBinaryFormat$outboundSchema, ListAgentTasksPartsAgentsResponseFile$inboundSchema, ListAgentTasksPartsAgentsResponseFile$outboundSchema, ListAgentTasksPartsAgentsResponseFilePart$inboundSchema, ListAgentTasksPartsAgentsResponseFilePart$outboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage2Kind$inboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage2Kind$outboundSchema, ListAgentTasksPartsAgentsResponseDataPart$inboundSchema, ListAgentTasksPartsAgentsResponseDataPart$outboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage1Kind$inboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage1Kind$outboundSchema, ListAgentTasksPartsAgentsResponseTextPart$inboundSchema, ListAgentTasksPartsAgentsResponseTextPart$outboundSchema, ListAgentTasksAgentsResponseParts$inboundSchema, ListAgentTasksAgentsResponseParts$outboundSchema, ListAgentTasksTaskStatusMessage$inboundSchema, ListAgentTasksTaskStatusMessage$outboundSchema, ListAgentTasksTaskStatus$inboundSchema, ListAgentTasksTaskStatus$outboundSchema, ListAgentTasksAgentsKind$inboundSchema, ListAgentTasksAgentsKind$outboundSchema, ListAgentTasksExtendedMessageRole$inboundSchema, ListAgentTasksExtendedMessageRole$outboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONKind$inboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONKind$outboundSchema, ListAgentTasksPartsToolResultPart$inboundSchema, ListAgentTasksPartsToolResultPart$outboundSchema, ListAgentTasksPartsAgentsResponse200Kind$inboundSchema, ListAgentTasksPartsAgentsResponse200Kind$outboundSchema, PartsToolCallPart$inboundSchema, PartsToolCallPart$outboundSchema, ListAgentTasksPartsAgentsResponseKind$inboundSchema, ListAgentTasksPartsAgentsResponseKind$outboundSchema, ListAgentTasksFileFileInURIFormat$inboundSchema, ListAgentTasksFileFileInURIFormat$outboundSchema, ListAgentTasksFileBinaryFormat$inboundSchema, ListAgentTasksFileBinaryFormat$outboundSchema, ListAgentTasksPartsFile$inboundSchema, ListAgentTasksPartsFile$outboundSchema, ListAgentTasksPartsFilePart$inboundSchema, ListAgentTasksPartsFilePart$outboundSchema, ListAgentTasksPartsAgentsKind$inboundSchema, ListAgentTasksPartsAgentsKind$outboundSchema, ListAgentTasksPartsAgentsDataPart$inboundSchema, ListAgentTasksPartsAgentsDataPart$outboundSchema, ListAgentTasksPartsKind$inboundSchema, ListAgentTasksPartsKind$outboundSchema, ListAgentTasksPartsTextPart$inboundSchema, ListAgentTasksPartsTextPart$outboundSchema, ListAgentTasksParts$inboundSchema, ListAgentTasksParts$outboundSchema, ListAgentTasksExtendedA2AMessage$inboundSchema, ListAgentTasksExtendedA2AMessage$outboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksArtifactsKind$inboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksArtifactsKind$outboundSchema, ListAgentTasksPartsDataPart$inboundSchema, ListAgentTasksPartsDataPart$outboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksKind$inboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksKind$outboundSchema, ListAgentTasksFileAgentsFileInURIFormat$inboundSchema, ListAgentTasksFileAgentsFileInURIFormat$outboundSchema, ListAgentTasksFileAgentsBinaryFormat$inboundSchema, ListAgentTasksFileAgentsBinaryFormat$outboundSchema, ListAgentTasksPartsAgentsFile$inboundSchema, ListAgentTasksPartsAgentsFile$outboundSchema, ListAgentTasksPartsAgentsFilePart$inboundSchema, ListAgentTasksPartsAgentsFilePart$outboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyKind$inboundSchema, ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyKind$outboundSchema, ListAgentTasksPartsAgentsTextPart$inboundSchema, ListAgentTasksPartsAgentsTextPart$outboundSchema, ListAgentTasksAgentsParts$inboundSchema, ListAgentTasksAgentsParts$outboundSchema, ListAgentTasksTaskArtifact$inboundSchema, ListAgentTasksTaskArtifact$outboundSchema, ExtendedTaskResponse$inboundSchema, ExtendedTaskResponse$outboundSchema, ListAgentTasksAgentTasksListResponse$inboundSchema, ListAgentTasksAgentTasksListResponse$outboundSchema;
58644
58892
  var init_listagenttasks2 = __esm(() => {
58645
58893
  init_esm();
58646
58894
  init_primitives();
58647
- Status = {
58895
+ ListAgentTasksKind = {
58896
+ Task: "task"
58897
+ };
58898
+ ListAgentTasksTaskState = {
58648
58899
  Submitted: "submitted",
58649
58900
  Working: "working",
58650
58901
  InputRequired: "input-required",
@@ -58654,13 +58905,34 @@ var init_listagenttasks2 = __esm(() => {
58654
58905
  Canceled: "canceled",
58655
58906
  Rejected: "rejected"
58656
58907
  };
58657
- ListAgentTasksKind = {
58658
- Task: "task"
58908
+ ListAgentTasksAgentsResponseKind = {
58909
+ Message: "message"
58910
+ };
58911
+ ListAgentTasksAgentsExtendedMessageRole = {
58912
+ User: "user",
58913
+ Agent: "agent",
58914
+ Tool: "tool",
58915
+ System: "system"
58916
+ };
58917
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage5Kind = {
58918
+ ToolResult: "tool_result"
58919
+ };
58920
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessageKind = {
58921
+ ToolCall: "tool_call"
58922
+ };
58923
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusKind = {
58924
+ File: "file"
58925
+ };
58926
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage2Kind = {
58927
+ Data: "data"
58928
+ };
58929
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage1Kind = {
58930
+ Text: "text"
58659
58931
  };
58660
58932
  ListAgentTasksAgentsKind = {
58661
58933
  Message: "message"
58662
58934
  };
58663
- ListAgentTasksRole = {
58935
+ ListAgentTasksExtendedMessageRole = {
58664
58936
  User: "user",
58665
58937
  Agent: "agent",
58666
58938
  Tool: "tool",
@@ -58681,17 +58953,21 @@ var init_listagenttasks2 = __esm(() => {
58681
58953
  ListAgentTasksPartsKind = {
58682
58954
  Text: "text"
58683
58955
  };
58684
- ListAgentTasksAgentsResponseKind = {
58685
- Artifact: "artifact"
58956
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksArtifactsKind = {
58957
+ Data: "data"
58958
+ };
58959
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksKind = {
58960
+ File: "file"
58961
+ };
58962
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyKind = {
58963
+ Text: "text"
58686
58964
  };
58687
- Status$inboundSchema = nativeEnumType(Status);
58688
- Status$outboundSchema = Status$inboundSchema;
58689
58965
  ListAgentTasksRequest$inboundSchema = objectType({
58690
58966
  agent_key: stringType(),
58691
58967
  limit: numberType().default(10),
58692
58968
  starting_after: stringType().optional(),
58693
58969
  ending_before: stringType().optional(),
58694
- status: Status$inboundSchema.optional()
58970
+ status: stringType().optional()
58695
58971
  }).transform((v2) => {
58696
58972
  return remap(v2, {
58697
58973
  agent_key: "agentKey",
@@ -58704,7 +58980,7 @@ var init_listagenttasks2 = __esm(() => {
58704
58980
  limit: numberType().default(10),
58705
58981
  startingAfter: stringType().optional(),
58706
58982
  endingBefore: stringType().optional(),
58707
- status: Status$outboundSchema.optional()
58983
+ status: stringType().optional()
58708
58984
  }).transform((v2) => {
58709
58985
  return remap(v2, {
58710
58986
  agentKey: "agent_key",
@@ -58714,23 +58990,183 @@ var init_listagenttasks2 = __esm(() => {
58714
58990
  });
58715
58991
  ListAgentTasksKind$inboundSchema = nativeEnumType(ListAgentTasksKind);
58716
58992
  ListAgentTasksKind$outboundSchema = ListAgentTasksKind$inboundSchema;
58717
- ListAgentTasksStatus$inboundSchema = objectType({
58718
- state: stringType(),
58993
+ ListAgentTasksTaskState$inboundSchema = nativeEnumType(ListAgentTasksTaskState);
58994
+ ListAgentTasksTaskState$outboundSchema = ListAgentTasksTaskState$inboundSchema;
58995
+ ListAgentTasksAgentsResponseKind$inboundSchema = nativeEnumType(ListAgentTasksAgentsResponseKind);
58996
+ ListAgentTasksAgentsResponseKind$outboundSchema = ListAgentTasksAgentsResponseKind$inboundSchema;
58997
+ ListAgentTasksAgentsExtendedMessageRole$inboundSchema = nativeEnumType(ListAgentTasksAgentsExtendedMessageRole);
58998
+ ListAgentTasksAgentsExtendedMessageRole$outboundSchema = ListAgentTasksAgentsExtendedMessageRole$inboundSchema;
58999
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage5Kind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage5Kind);
59000
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage5Kind$outboundSchema = ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage5Kind$inboundSchema;
59001
+ ListAgentTasksPartsAgentsToolResultPart$inboundSchema = objectType({
59002
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage5Kind$inboundSchema,
59003
+ tool_call_id: stringType(),
59004
+ result: anyType().optional(),
59005
+ metadata: recordType(anyType()).optional()
59006
+ }).transform((v2) => {
59007
+ return remap(v2, {
59008
+ tool_call_id: "toolCallId"
59009
+ });
59010
+ });
59011
+ ListAgentTasksPartsAgentsToolResultPart$outboundSchema = objectType({
59012
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage5Kind$outboundSchema,
59013
+ toolCallId: stringType(),
59014
+ result: anyType().optional(),
59015
+ metadata: recordType(anyType()).optional()
59016
+ }).transform((v2) => {
59017
+ return remap(v2, {
59018
+ toolCallId: "tool_call_id"
59019
+ });
59020
+ });
59021
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessageKind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessageKind);
59022
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessageKind$outboundSchema = ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessageKind$inboundSchema;
59023
+ ListAgentTasksPartsToolCallPart$inboundSchema = objectType({
59024
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessageKind$inboundSchema,
59025
+ tool_name: stringType(),
59026
+ tool_call_id: stringType(),
59027
+ arguments: recordType(anyType()),
59028
+ metadata: recordType(anyType()).optional()
59029
+ }).transform((v2) => {
59030
+ return remap(v2, {
59031
+ tool_name: "toolName",
59032
+ tool_call_id: "toolCallId"
59033
+ });
59034
+ });
59035
+ ListAgentTasksPartsToolCallPart$outboundSchema = objectType({
59036
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessageKind$outboundSchema,
59037
+ toolName: stringType(),
59038
+ toolCallId: stringType(),
59039
+ arguments: recordType(anyType()),
59040
+ metadata: recordType(anyType()).optional()
59041
+ }).transform((v2) => {
59042
+ return remap(v2, {
59043
+ toolName: "tool_name",
59044
+ toolCallId: "tool_call_id"
59045
+ });
59046
+ });
59047
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusKind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusKind);
59048
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusKind$outboundSchema = ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusKind$inboundSchema;
59049
+ ListAgentTasksFileAgentsResponseFileInURIFormat$inboundSchema = objectType({
59050
+ uri: stringType(),
59051
+ mimeType: stringType().optional(),
59052
+ name: stringType().optional()
59053
+ });
59054
+ ListAgentTasksFileAgentsResponseFileInURIFormat$outboundSchema = objectType({
59055
+ uri: stringType(),
59056
+ mimeType: stringType().optional(),
59057
+ name: stringType().optional()
59058
+ });
59059
+ ListAgentTasksFileAgentsResponseBinaryFormat$inboundSchema = objectType({
59060
+ bytes: stringType(),
59061
+ mimeType: stringType().optional(),
59062
+ name: stringType().optional()
59063
+ });
59064
+ ListAgentTasksFileAgentsResponseBinaryFormat$outboundSchema = objectType({
59065
+ bytes: stringType(),
59066
+ mimeType: stringType().optional(),
59067
+ name: stringType().optional()
59068
+ });
59069
+ ListAgentTasksPartsAgentsResponseFile$inboundSchema = unionType([
59070
+ lazyType(() => ListAgentTasksFileAgentsResponseBinaryFormat$inboundSchema),
59071
+ lazyType(() => ListAgentTasksFileAgentsResponseFileInURIFormat$inboundSchema)
59072
+ ]);
59073
+ ListAgentTasksPartsAgentsResponseFile$outboundSchema = unionType([
59074
+ lazyType(() => ListAgentTasksFileAgentsResponseBinaryFormat$outboundSchema),
59075
+ lazyType(() => ListAgentTasksFileAgentsResponseFileInURIFormat$outboundSchema)
59076
+ ]);
59077
+ ListAgentTasksPartsAgentsResponseFilePart$inboundSchema = objectType({
59078
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusKind$inboundSchema,
59079
+ file: unionType([
59080
+ lazyType(() => ListAgentTasksFileAgentsResponseBinaryFormat$inboundSchema),
59081
+ lazyType(() => ListAgentTasksFileAgentsResponseFileInURIFormat$inboundSchema)
59082
+ ]),
59083
+ metadata: recordType(anyType()).optional()
59084
+ });
59085
+ ListAgentTasksPartsAgentsResponseFilePart$outboundSchema = objectType({
59086
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusKind$outboundSchema,
59087
+ file: unionType([
59088
+ lazyType(() => ListAgentTasksFileAgentsResponseBinaryFormat$outboundSchema),
59089
+ lazyType(() => ListAgentTasksFileAgentsResponseFileInURIFormat$outboundSchema)
59090
+ ]),
59091
+ metadata: recordType(anyType()).optional()
59092
+ });
59093
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage2Kind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage2Kind);
59094
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage2Kind$outboundSchema = ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage2Kind$inboundSchema;
59095
+ ListAgentTasksPartsAgentsResponseDataPart$inboundSchema = objectType({
59096
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage2Kind$inboundSchema,
59097
+ data: recordType(anyType()),
59098
+ metadata: recordType(anyType()).optional()
59099
+ });
59100
+ ListAgentTasksPartsAgentsResponseDataPart$outboundSchema = objectType({
59101
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage2Kind$outboundSchema,
59102
+ data: recordType(anyType()),
59103
+ metadata: recordType(anyType()).optional()
59104
+ });
59105
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage1Kind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage1Kind);
59106
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage1Kind$outboundSchema = ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage1Kind$inboundSchema;
59107
+ ListAgentTasksPartsAgentsResponseTextPart$inboundSchema = objectType({
59108
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage1Kind$inboundSchema,
59109
+ text: stringType()
59110
+ });
59111
+ ListAgentTasksPartsAgentsResponseTextPart$outboundSchema = objectType({
59112
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksStatusMessage1Kind$outboundSchema,
59113
+ text: stringType()
59114
+ });
59115
+ ListAgentTasksAgentsResponseParts$inboundSchema = unionType([
59116
+ lazyType(() => ListAgentTasksPartsToolCallPart$inboundSchema),
59117
+ lazyType(() => ListAgentTasksPartsAgentsResponseTextPart$inboundSchema),
59118
+ lazyType(() => ListAgentTasksPartsAgentsResponseDataPart$inboundSchema),
59119
+ lazyType(() => ListAgentTasksPartsAgentsResponseFilePart$inboundSchema),
59120
+ lazyType(() => ListAgentTasksPartsAgentsToolResultPart$inboundSchema)
59121
+ ]);
59122
+ ListAgentTasksAgentsResponseParts$outboundSchema = unionType([
59123
+ lazyType(() => ListAgentTasksPartsToolCallPart$outboundSchema),
59124
+ lazyType(() => ListAgentTasksPartsAgentsResponseTextPart$outboundSchema),
59125
+ lazyType(() => ListAgentTasksPartsAgentsResponseDataPart$outboundSchema),
59126
+ lazyType(() => ListAgentTasksPartsAgentsResponseFilePart$outboundSchema),
59127
+ lazyType(() => ListAgentTasksPartsAgentsToolResultPart$outboundSchema)
59128
+ ]);
59129
+ ListAgentTasksTaskStatusMessage$inboundSchema = objectType({
59130
+ kind: ListAgentTasksAgentsResponseKind$inboundSchema,
59131
+ messageId: stringType(),
59132
+ role: ListAgentTasksAgentsExtendedMessageRole$inboundSchema,
59133
+ parts: arrayType(unionType([
59134
+ lazyType(() => ListAgentTasksPartsToolCallPart$inboundSchema),
59135
+ lazyType(() => ListAgentTasksPartsAgentsResponseTextPart$inboundSchema),
59136
+ lazyType(() => ListAgentTasksPartsAgentsResponseDataPart$inboundSchema),
59137
+ lazyType(() => ListAgentTasksPartsAgentsResponseFilePart$inboundSchema),
59138
+ lazyType(() => ListAgentTasksPartsAgentsToolResultPart$inboundSchema)
59139
+ ]))
59140
+ });
59141
+ ListAgentTasksTaskStatusMessage$outboundSchema = objectType({
59142
+ kind: ListAgentTasksAgentsResponseKind$outboundSchema,
59143
+ messageId: stringType(),
59144
+ role: ListAgentTasksAgentsExtendedMessageRole$outboundSchema,
59145
+ parts: arrayType(unionType([
59146
+ lazyType(() => ListAgentTasksPartsToolCallPart$outboundSchema),
59147
+ lazyType(() => ListAgentTasksPartsAgentsResponseTextPart$outboundSchema),
59148
+ lazyType(() => ListAgentTasksPartsAgentsResponseDataPart$outboundSchema),
59149
+ lazyType(() => ListAgentTasksPartsAgentsResponseFilePart$outboundSchema),
59150
+ lazyType(() => ListAgentTasksPartsAgentsToolResultPart$outboundSchema)
59151
+ ]))
59152
+ });
59153
+ ListAgentTasksTaskStatus$inboundSchema = objectType({
59154
+ state: ListAgentTasksTaskState$inboundSchema,
58719
59155
  timestamp: stringType().optional(),
58720
- message: anyType().optional()
59156
+ message: lazyType(() => ListAgentTasksTaskStatusMessage$inboundSchema).optional()
58721
59157
  });
58722
- ListAgentTasksStatus$outboundSchema = objectType({
58723
- state: stringType(),
59158
+ ListAgentTasksTaskStatus$outboundSchema = objectType({
59159
+ state: ListAgentTasksTaskState$outboundSchema,
58724
59160
  timestamp: stringType().optional(),
58725
- message: anyType().optional()
59161
+ message: lazyType(() => ListAgentTasksTaskStatusMessage$outboundSchema).optional()
58726
59162
  });
58727
59163
  ListAgentTasksAgentsKind$inboundSchema = nativeEnumType(ListAgentTasksAgentsKind);
58728
59164
  ListAgentTasksAgentsKind$outboundSchema = ListAgentTasksAgentsKind$inboundSchema;
58729
- ListAgentTasksRole$inboundSchema = nativeEnumType(ListAgentTasksRole);
58730
- ListAgentTasksRole$outboundSchema = ListAgentTasksRole$inboundSchema;
59165
+ ListAgentTasksExtendedMessageRole$inboundSchema = nativeEnumType(ListAgentTasksExtendedMessageRole);
59166
+ ListAgentTasksExtendedMessageRole$outboundSchema = ListAgentTasksExtendedMessageRole$inboundSchema;
58731
59167
  ListAgentTasksPartsAgentsResponse200ApplicationJSONKind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsResponse200ApplicationJSONKind);
58732
59168
  ListAgentTasksPartsAgentsResponse200ApplicationJSONKind$outboundSchema = ListAgentTasksPartsAgentsResponse200ApplicationJSONKind$inboundSchema;
58733
- ListAgentTasksParts5$inboundSchema = objectType({
59169
+ ListAgentTasksPartsToolResultPart$inboundSchema = objectType({
58734
59170
  kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONKind$inboundSchema,
58735
59171
  tool_call_id: stringType(),
58736
59172
  result: anyType().optional(),
@@ -58740,7 +59176,7 @@ var init_listagenttasks2 = __esm(() => {
58740
59176
  tool_call_id: "toolCallId"
58741
59177
  });
58742
59178
  });
58743
- ListAgentTasksParts5$outboundSchema = objectType({
59179
+ ListAgentTasksPartsToolResultPart$outboundSchema = objectType({
58744
59180
  kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONKind$outboundSchema,
58745
59181
  toolCallId: stringType(),
58746
59182
  result: anyType().optional(),
@@ -58752,7 +59188,7 @@ var init_listagenttasks2 = __esm(() => {
58752
59188
  });
58753
59189
  ListAgentTasksPartsAgentsResponse200Kind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsResponse200Kind);
58754
59190
  ListAgentTasksPartsAgentsResponse200Kind$outboundSchema = ListAgentTasksPartsAgentsResponse200Kind$inboundSchema;
58755
- ListAgentTasksParts4$inboundSchema = objectType({
59191
+ PartsToolCallPart$inboundSchema = objectType({
58756
59192
  kind: ListAgentTasksPartsAgentsResponse200Kind$inboundSchema,
58757
59193
  tool_name: stringType(),
58758
59194
  tool_call_id: stringType(),
@@ -58764,7 +59200,7 @@ var init_listagenttasks2 = __esm(() => {
58764
59200
  tool_call_id: "toolCallId"
58765
59201
  });
58766
59202
  });
58767
- ListAgentTasksParts4$outboundSchema = objectType({
59203
+ PartsToolCallPart$outboundSchema = objectType({
58768
59204
  kind: ListAgentTasksPartsAgentsResponse200Kind$outboundSchema,
58769
59205
  toolName: stringType(),
58770
59206
  toolCallId: stringType(),
@@ -58806,7 +59242,7 @@ var init_listagenttasks2 = __esm(() => {
58806
59242
  lazyType(() => ListAgentTasksFileBinaryFormat$outboundSchema),
58807
59243
  lazyType(() => ListAgentTasksFileFileInURIFormat$outboundSchema)
58808
59244
  ]);
58809
- ListAgentTasksParts3$inboundSchema = objectType({
59245
+ ListAgentTasksPartsFilePart$inboundSchema = objectType({
58810
59246
  kind: ListAgentTasksPartsAgentsResponseKind$inboundSchema,
58811
59247
  file: unionType([
58812
59248
  lazyType(() => ListAgentTasksFileBinaryFormat$inboundSchema),
@@ -58814,7 +59250,7 @@ var init_listagenttasks2 = __esm(() => {
58814
59250
  ]),
58815
59251
  metadata: recordType(anyType()).optional()
58816
59252
  });
58817
- ListAgentTasksParts3$outboundSchema = objectType({
59253
+ ListAgentTasksPartsFilePart$outboundSchema = objectType({
58818
59254
  kind: ListAgentTasksPartsAgentsResponseKind$outboundSchema,
58819
59255
  file: unionType([
58820
59256
  lazyType(() => ListAgentTasksFileBinaryFormat$outboundSchema),
@@ -58824,116 +59260,200 @@ var init_listagenttasks2 = __esm(() => {
58824
59260
  });
58825
59261
  ListAgentTasksPartsAgentsKind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsKind);
58826
59262
  ListAgentTasksPartsAgentsKind$outboundSchema = ListAgentTasksPartsAgentsKind$inboundSchema;
58827
- ListAgentTasksParts2$inboundSchema = objectType({
59263
+ ListAgentTasksPartsAgentsDataPart$inboundSchema = objectType({
58828
59264
  kind: ListAgentTasksPartsAgentsKind$inboundSchema,
58829
59265
  data: recordType(anyType()),
58830
59266
  metadata: recordType(anyType()).optional()
58831
59267
  });
58832
- ListAgentTasksParts2$outboundSchema = objectType({
59268
+ ListAgentTasksPartsAgentsDataPart$outboundSchema = objectType({
58833
59269
  kind: ListAgentTasksPartsAgentsKind$outboundSchema,
58834
59270
  data: recordType(anyType()),
58835
59271
  metadata: recordType(anyType()).optional()
58836
59272
  });
58837
59273
  ListAgentTasksPartsKind$inboundSchema = nativeEnumType(ListAgentTasksPartsKind);
58838
59274
  ListAgentTasksPartsKind$outboundSchema = ListAgentTasksPartsKind$inboundSchema;
58839
- ListAgentTasksParts1$inboundSchema = objectType({
59275
+ ListAgentTasksPartsTextPart$inboundSchema = objectType({
58840
59276
  kind: ListAgentTasksPartsKind$inboundSchema,
58841
59277
  text: stringType()
58842
59278
  });
58843
- ListAgentTasksParts1$outboundSchema = objectType({
59279
+ ListAgentTasksPartsTextPart$outboundSchema = objectType({
58844
59280
  kind: ListAgentTasksPartsKind$outboundSchema,
58845
59281
  text: stringType()
58846
59282
  });
58847
59283
  ListAgentTasksParts$inboundSchema = unionType([
58848
- lazyType(() => ListAgentTasksParts4$inboundSchema),
58849
- lazyType(() => ListAgentTasksParts1$inboundSchema),
58850
- lazyType(() => ListAgentTasksParts2$inboundSchema),
58851
- lazyType(() => ListAgentTasksParts3$inboundSchema),
58852
- lazyType(() => ListAgentTasksParts5$inboundSchema)
59284
+ lazyType(() => PartsToolCallPart$inboundSchema),
59285
+ lazyType(() => ListAgentTasksPartsTextPart$inboundSchema),
59286
+ lazyType(() => ListAgentTasksPartsAgentsDataPart$inboundSchema),
59287
+ lazyType(() => ListAgentTasksPartsFilePart$inboundSchema),
59288
+ lazyType(() => ListAgentTasksPartsToolResultPart$inboundSchema)
58853
59289
  ]);
58854
59290
  ListAgentTasksParts$outboundSchema = unionType([
58855
- lazyType(() => ListAgentTasksParts4$outboundSchema),
58856
- lazyType(() => ListAgentTasksParts1$outboundSchema),
58857
- lazyType(() => ListAgentTasksParts2$outboundSchema),
58858
- lazyType(() => ListAgentTasksParts3$outboundSchema),
58859
- lazyType(() => ListAgentTasksParts5$outboundSchema)
59291
+ lazyType(() => PartsToolCallPart$outboundSchema),
59292
+ lazyType(() => ListAgentTasksPartsTextPart$outboundSchema),
59293
+ lazyType(() => ListAgentTasksPartsAgentsDataPart$outboundSchema),
59294
+ lazyType(() => ListAgentTasksPartsFilePart$outboundSchema),
59295
+ lazyType(() => ListAgentTasksPartsToolResultPart$outboundSchema)
58860
59296
  ]);
58861
- ListAgentTasksHistory$inboundSchema = objectType({
59297
+ ListAgentTasksExtendedA2AMessage$inboundSchema = objectType({
58862
59298
  kind: ListAgentTasksAgentsKind$inboundSchema,
58863
59299
  messageId: stringType(),
58864
- role: ListAgentTasksRole$inboundSchema,
59300
+ role: ListAgentTasksExtendedMessageRole$inboundSchema,
58865
59301
  parts: arrayType(unionType([
58866
- lazyType(() => ListAgentTasksParts4$inboundSchema),
58867
- lazyType(() => ListAgentTasksParts1$inboundSchema),
58868
- lazyType(() => ListAgentTasksParts2$inboundSchema),
58869
- lazyType(() => ListAgentTasksParts3$inboundSchema),
58870
- lazyType(() => ListAgentTasksParts5$inboundSchema)
59302
+ lazyType(() => PartsToolCallPart$inboundSchema),
59303
+ lazyType(() => ListAgentTasksPartsTextPart$inboundSchema),
59304
+ lazyType(() => ListAgentTasksPartsAgentsDataPart$inboundSchema),
59305
+ lazyType(() => ListAgentTasksPartsFilePart$inboundSchema),
59306
+ lazyType(() => ListAgentTasksPartsToolResultPart$inboundSchema)
58871
59307
  ])),
58872
59308
  taskId: stringType().optional(),
58873
59309
  contextId: stringType().optional(),
58874
59310
  metadata: recordType(anyType()).optional()
58875
59311
  });
58876
- ListAgentTasksHistory$outboundSchema = objectType({
59312
+ ListAgentTasksExtendedA2AMessage$outboundSchema = objectType({
58877
59313
  kind: ListAgentTasksAgentsKind$outboundSchema,
58878
59314
  messageId: stringType(),
58879
- role: ListAgentTasksRole$outboundSchema,
59315
+ role: ListAgentTasksExtendedMessageRole$outboundSchema,
58880
59316
  parts: arrayType(unionType([
58881
- lazyType(() => ListAgentTasksParts4$outboundSchema),
58882
- lazyType(() => ListAgentTasksParts1$outboundSchema),
58883
- lazyType(() => ListAgentTasksParts2$outboundSchema),
58884
- lazyType(() => ListAgentTasksParts3$outboundSchema),
58885
- lazyType(() => ListAgentTasksParts5$outboundSchema)
59317
+ lazyType(() => PartsToolCallPart$outboundSchema),
59318
+ lazyType(() => ListAgentTasksPartsTextPart$outboundSchema),
59319
+ lazyType(() => ListAgentTasksPartsAgentsDataPart$outboundSchema),
59320
+ lazyType(() => ListAgentTasksPartsFilePart$outboundSchema),
59321
+ lazyType(() => ListAgentTasksPartsToolResultPart$outboundSchema)
58886
59322
  ])),
58887
59323
  taskId: stringType().optional(),
58888
59324
  contextId: stringType().optional(),
58889
59325
  metadata: recordType(anyType()).optional()
58890
59326
  });
58891
- ListAgentTasksAgentsResponseKind$inboundSchema = nativeEnumType(ListAgentTasksAgentsResponseKind);
58892
- ListAgentTasksAgentsResponseKind$outboundSchema = ListAgentTasksAgentsResponseKind$inboundSchema;
58893
- ListAgentTasksArtifacts$inboundSchema = objectType({
58894
- kind: ListAgentTasksAgentsResponseKind$inboundSchema,
59327
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksArtifactsKind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksArtifactsKind);
59328
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksArtifactsKind$outboundSchema = ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksArtifactsKind$inboundSchema;
59329
+ ListAgentTasksPartsDataPart$inboundSchema = objectType({
59330
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksArtifactsKind$inboundSchema,
59331
+ data: recordType(anyType()),
59332
+ metadata: recordType(anyType()).optional()
59333
+ });
59334
+ ListAgentTasksPartsDataPart$outboundSchema = objectType({
59335
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksArtifactsKind$outboundSchema,
59336
+ data: recordType(anyType()),
59337
+ metadata: recordType(anyType()).optional()
59338
+ });
59339
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksKind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksKind);
59340
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksKind$outboundSchema = ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksKind$inboundSchema;
59341
+ ListAgentTasksFileAgentsFileInURIFormat$inboundSchema = objectType({
59342
+ uri: stringType(),
59343
+ mimeType: stringType().optional(),
59344
+ name: stringType().optional()
59345
+ });
59346
+ ListAgentTasksFileAgentsFileInURIFormat$outboundSchema = objectType({
59347
+ uri: stringType(),
59348
+ mimeType: stringType().optional(),
59349
+ name: stringType().optional()
59350
+ });
59351
+ ListAgentTasksFileAgentsBinaryFormat$inboundSchema = objectType({
59352
+ bytes: stringType(),
59353
+ mimeType: stringType().optional(),
59354
+ name: stringType().optional()
59355
+ });
59356
+ ListAgentTasksFileAgentsBinaryFormat$outboundSchema = objectType({
59357
+ bytes: stringType(),
59358
+ mimeType: stringType().optional(),
59359
+ name: stringType().optional()
59360
+ });
59361
+ ListAgentTasksPartsAgentsFile$inboundSchema = unionType([
59362
+ lazyType(() => ListAgentTasksFileAgentsBinaryFormat$inboundSchema),
59363
+ lazyType(() => ListAgentTasksFileAgentsFileInURIFormat$inboundSchema)
59364
+ ]);
59365
+ ListAgentTasksPartsAgentsFile$outboundSchema = unionType([
59366
+ lazyType(() => ListAgentTasksFileAgentsBinaryFormat$outboundSchema),
59367
+ lazyType(() => ListAgentTasksFileAgentsFileInURIFormat$outboundSchema)
59368
+ ]);
59369
+ ListAgentTasksPartsAgentsFilePart$inboundSchema = objectType({
59370
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksKind$inboundSchema,
59371
+ file: unionType([
59372
+ lazyType(() => ListAgentTasksFileAgentsBinaryFormat$inboundSchema),
59373
+ lazyType(() => ListAgentTasksFileAgentsFileInURIFormat$inboundSchema)
59374
+ ]),
59375
+ metadata: recordType(anyType()).optional()
59376
+ });
59377
+ ListAgentTasksPartsAgentsFilePart$outboundSchema = objectType({
59378
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyTasksKind$outboundSchema,
59379
+ file: unionType([
59380
+ lazyType(() => ListAgentTasksFileAgentsBinaryFormat$outboundSchema),
59381
+ lazyType(() => ListAgentTasksFileAgentsFileInURIFormat$outboundSchema)
59382
+ ]),
59383
+ metadata: recordType(anyType()).optional()
59384
+ });
59385
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyKind$inboundSchema = nativeEnumType(ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyKind);
59386
+ ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyKind$outboundSchema = ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyKind$inboundSchema;
59387
+ ListAgentTasksPartsAgentsTextPart$inboundSchema = objectType({
59388
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyKind$inboundSchema,
59389
+ text: stringType()
59390
+ });
59391
+ ListAgentTasksPartsAgentsTextPart$outboundSchema = objectType({
59392
+ kind: ListAgentTasksPartsAgentsResponse200ApplicationJSONResponseBodyKind$outboundSchema,
59393
+ text: stringType()
59394
+ });
59395
+ ListAgentTasksAgentsParts$inboundSchema = unionType([
59396
+ lazyType(() => ListAgentTasksPartsAgentsTextPart$inboundSchema),
59397
+ lazyType(() => ListAgentTasksPartsAgentsFilePart$inboundSchema),
59398
+ lazyType(() => ListAgentTasksPartsDataPart$inboundSchema)
59399
+ ]);
59400
+ ListAgentTasksAgentsParts$outboundSchema = unionType([
59401
+ lazyType(() => ListAgentTasksPartsAgentsTextPart$outboundSchema),
59402
+ lazyType(() => ListAgentTasksPartsAgentsFilePart$outboundSchema),
59403
+ lazyType(() => ListAgentTasksPartsDataPart$outboundSchema)
59404
+ ]);
59405
+ ListAgentTasksTaskArtifact$inboundSchema = objectType({
58895
59406
  artifactId: stringType(),
58896
59407
  name: stringType(),
58897
- type: stringType(),
58898
- url: stringType().optional(),
58899
- data: anyType().optional()
59408
+ description: stringType().optional(),
59409
+ parts: arrayType(unionType([
59410
+ lazyType(() => ListAgentTasksPartsAgentsTextPart$inboundSchema),
59411
+ lazyType(() => ListAgentTasksPartsAgentsFilePart$inboundSchema),
59412
+ lazyType(() => ListAgentTasksPartsDataPart$inboundSchema)
59413
+ ])),
59414
+ extensions: arrayType(stringType()).optional(),
59415
+ metadata: recordType(anyType()).optional()
58900
59416
  });
58901
- ListAgentTasksArtifacts$outboundSchema = objectType({
58902
- kind: ListAgentTasksAgentsResponseKind$outboundSchema,
59417
+ ListAgentTasksTaskArtifact$outboundSchema = objectType({
58903
59418
  artifactId: stringType(),
58904
59419
  name: stringType(),
58905
- type: stringType(),
58906
- url: stringType().optional(),
58907
- data: anyType().optional()
59420
+ description: stringType().optional(),
59421
+ parts: arrayType(unionType([
59422
+ lazyType(() => ListAgentTasksPartsAgentsTextPart$outboundSchema),
59423
+ lazyType(() => ListAgentTasksPartsAgentsFilePart$outboundSchema),
59424
+ lazyType(() => ListAgentTasksPartsDataPart$outboundSchema)
59425
+ ])),
59426
+ extensions: arrayType(stringType()).optional(),
59427
+ metadata: recordType(anyType()).optional()
58908
59428
  });
58909
- Tasks$inboundSchema = objectType({
59429
+ ExtendedTaskResponse$inboundSchema = objectType({
58910
59430
  id: stringType(),
58911
59431
  contextId: stringType(),
58912
59432
  kind: ListAgentTasksKind$inboundSchema,
58913
- status: lazyType(() => ListAgentTasksStatus$inboundSchema),
58914
- history: arrayType(lazyType(() => ListAgentTasksHistory$inboundSchema)),
58915
- artifacts: arrayType(lazyType(() => ListAgentTasksArtifacts$inboundSchema)).optional(),
59433
+ status: lazyType(() => ListAgentTasksTaskStatus$inboundSchema),
59434
+ history: arrayType(lazyType(() => ListAgentTasksExtendedA2AMessage$inboundSchema)),
59435
+ artifacts: arrayType(lazyType(() => ListAgentTasksTaskArtifact$inboundSchema)).optional(),
58916
59436
  metadata: recordType(anyType()).optional()
58917
59437
  });
58918
- Tasks$outboundSchema = objectType({
59438
+ ExtendedTaskResponse$outboundSchema = objectType({
58919
59439
  id: stringType(),
58920
59440
  contextId: stringType(),
58921
59441
  kind: ListAgentTasksKind$outboundSchema,
58922
- status: lazyType(() => ListAgentTasksStatus$outboundSchema),
58923
- history: arrayType(lazyType(() => ListAgentTasksHistory$outboundSchema)),
58924
- artifacts: arrayType(lazyType(() => ListAgentTasksArtifacts$outboundSchema)).optional(),
59442
+ status: lazyType(() => ListAgentTasksTaskStatus$outboundSchema),
59443
+ history: arrayType(lazyType(() => ListAgentTasksExtendedA2AMessage$outboundSchema)),
59444
+ artifacts: arrayType(lazyType(() => ListAgentTasksTaskArtifact$outboundSchema)).optional(),
58925
59445
  metadata: recordType(anyType()).optional()
58926
59446
  });
58927
- ListAgentTasksResponseBody$inboundSchema2 = objectType({
58928
- tasks: arrayType(lazyType(() => Tasks$inboundSchema)),
59447
+ ListAgentTasksAgentTasksListResponse$inboundSchema = objectType({
59448
+ tasks: arrayType(lazyType(() => ExtendedTaskResponse$inboundSchema)),
58929
59449
  overall_total: numberType()
58930
59450
  }).transform((v2) => {
58931
59451
  return remap(v2, {
58932
59452
  overall_total: "overallTotal"
58933
59453
  });
58934
59454
  });
58935
- ListAgentTasksResponseBody$outboundSchema2 = objectType({
58936
- tasks: arrayType(lazyType(() => Tasks$outboundSchema)),
59455
+ ListAgentTasksAgentTasksListResponse$outboundSchema = objectType({
59456
+ tasks: arrayType(lazyType(() => ExtendedTaskResponse$outboundSchema)),
58937
59457
  overallTotal: numberType()
58938
59458
  }).transform((v2) => {
58939
59459
  return remap(v2, {
@@ -59046,7 +59566,7 @@ var init_listbudgets = __esm(() => {
59046
59566
  is_active: booleanType(),
59047
59567
  consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
59048
59568
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
59049
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.769Z").transform((v2) => new Date(v2))
59569
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:05.297Z").transform((v2) => new Date(v2))
59050
59570
  }).transform((v2) => {
59051
59571
  return remap(v2, {
59052
59572
  _id: "id",
@@ -59062,7 +59582,7 @@ var init_listbudgets = __esm(() => {
59062
59582
  isActive: booleanType(),
59063
59583
  consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
59064
59584
  created: dateType().transform((v2) => v2.toISOString()).optional(),
59065
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.769Z")).transform((v2) => v2.toISOString())
59585
+ updated: dateType().default(() => new Date("2025-11-20T07:47:05.297Z")).transform((v2) => v2.toISOString())
59066
59586
  }).transform((v2) => {
59067
59587
  return remap(v2, {
59068
59588
  id: "_id",
@@ -59091,7 +59611,7 @@ var init_listbudgets = __esm(() => {
59091
59611
  });
59092
59612
 
59093
59613
  // src/models/operations/listchunks.ts
59094
- var ListChunksObject, ListChunksStatus, ListChunksQueryParamStatus$inboundSchema, ListChunksQueryParamStatus$outboundSchema, ListChunksRequest$inboundSchema, ListChunksRequest$outboundSchema, ListChunksObject$inboundSchema, ListChunksObject$outboundSchema, ListChunksMetadata$inboundSchema, ListChunksMetadata$outboundSchema, ListChunksStatus$inboundSchema, ListChunksStatus$outboundSchema, ListChunksData$inboundSchema, ListChunksData$outboundSchema, ListChunksResponseBody$inboundSchema, ListChunksResponseBody$outboundSchema;
59614
+ var ListChunksObject, ListChunksStatus, QueryParamStatus$inboundSchema, QueryParamStatus$outboundSchema, ListChunksRequest$inboundSchema, ListChunksRequest$outboundSchema, ListChunksObject$inboundSchema, ListChunksObject$outboundSchema, ListChunksMetadata$inboundSchema, ListChunksMetadata$outboundSchema, ListChunksStatus$inboundSchema, ListChunksStatus$outboundSchema, ListChunksData$inboundSchema, ListChunksData$outboundSchema, ListChunksResponseBody$inboundSchema, ListChunksResponseBody$outboundSchema;
59095
59615
  var init_listchunks = __esm(() => {
59096
59616
  init_esm();
59097
59617
  init_primitives();
@@ -59105,8 +59625,8 @@ var init_listchunks = __esm(() => {
59105
59625
  Failed: "failed",
59106
59626
  Queued: "queued"
59107
59627
  };
59108
- ListChunksQueryParamStatus$inboundSchema = unionType([arrayType(stringType()), stringType()]);
59109
- ListChunksQueryParamStatus$outboundSchema = unionType([arrayType(stringType()), stringType()]);
59628
+ QueryParamStatus$inboundSchema = unionType([arrayType(stringType()), stringType()]);
59629
+ QueryParamStatus$outboundSchema = unionType([arrayType(stringType()), stringType()]);
59110
59630
  ListChunksRequest$inboundSchema = objectType({
59111
59631
  knowledge_id: stringType(),
59112
59632
  datasource_id: stringType(),
@@ -59389,7 +59909,7 @@ var init_listcontacts = __esm(() => {
59389
59909
  tags: arrayType(stringType()).optional(),
59390
59910
  metadata: recordType(anyType()).optional(),
59391
59911
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
59392
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2)),
59912
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2)),
59393
59913
  metrics: lazyType(() => ListContactsMetrics$inboundSchema)
59394
59914
  }).transform((v2) => {
59395
59915
  return remap(v2, {
@@ -59408,7 +59928,7 @@ var init_listcontacts = __esm(() => {
59408
59928
  tags: arrayType(stringType()).optional(),
59409
59929
  metadata: recordType(anyType()).optional(),
59410
59930
  created: dateType().transform((v2) => v2.toISOString()).optional(),
59411
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString()),
59931
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString()),
59412
59932
  metrics: lazyType(() => ListContactsMetrics$outboundSchema)
59413
59933
  }).transform((v2) => {
59414
59934
  return remap(v2, {
@@ -59997,7 +60517,7 @@ var init_listdatasetdatapoints = __esm(() => {
59997
60517
  human_review_id: stringType(),
59998
60518
  source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
59999
60519
  reviewed_by_id: stringType(),
60000
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.302Z").transform((v2) => new Date(v2)),
60520
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.798Z").transform((v2) => new Date(v2)),
60001
60521
  type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
60002
60522
  values: arrayType(stringType())
60003
60523
  }).transform((v2) => {
@@ -60014,7 +60534,7 @@ var init_listdatasetdatapoints = __esm(() => {
60014
60534
  humanReviewId: stringType(),
60015
60535
  source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
60016
60536
  reviewedById: stringType(),
60017
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.302Z")).transform((v2) => v2.toISOString()),
60537
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.798Z")).transform((v2) => v2.toISOString()),
60018
60538
  type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
60019
60539
  values: arrayType(stringType())
60020
60540
  }).transform((v2) => {
@@ -60037,7 +60557,7 @@ var init_listdatasetdatapoints = __esm(() => {
60037
60557
  human_review_id: stringType(),
60038
60558
  source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
60039
60559
  reviewed_by_id: stringType(),
60040
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.302Z").transform((v2) => new Date(v2)),
60560
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.797Z").transform((v2) => new Date(v2)),
60041
60561
  type: ListDatasetDatapointsEvaluationsType$inboundSchema,
60042
60562
  value: numberType()
60043
60563
  }).transform((v2) => {
@@ -60054,7 +60574,7 @@ var init_listdatasetdatapoints = __esm(() => {
60054
60574
  humanReviewId: stringType(),
60055
60575
  source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
60056
60576
  reviewedById: stringType(),
60057
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.302Z")).transform((v2) => v2.toISOString()),
60577
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.797Z")).transform((v2) => v2.toISOString()),
60058
60578
  type: ListDatasetDatapointsEvaluationsType$outboundSchema,
60059
60579
  value: numberType()
60060
60580
  }).transform((v2) => {
@@ -60077,7 +60597,7 @@ var init_listdatasetdatapoints = __esm(() => {
60077
60597
  human_review_id: stringType(),
60078
60598
  source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
60079
60599
  reviewed_by_id: stringType(),
60080
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.301Z").transform((v2) => new Date(v2)),
60600
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.788Z").transform((v2) => new Date(v2)),
60081
60601
  type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
60082
60602
  value: stringType()
60083
60603
  }).transform((v2) => {
@@ -60094,7 +60614,7 @@ var init_listdatasetdatapoints = __esm(() => {
60094
60614
  humanReviewId: stringType(),
60095
60615
  source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
60096
60616
  reviewedById: stringType(),
60097
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.301Z")).transform((v2) => v2.toISOString()),
60617
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.788Z")).transform((v2) => v2.toISOString()),
60098
60618
  type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
60099
60619
  value: stringType()
60100
60620
  }).transform((v2) => {
@@ -60137,7 +60657,7 @@ var init_listdatasetdatapoints = __esm(() => {
60137
60657
  created_by_id: stringType().optional(),
60138
60658
  updated_by_id: stringType().optional(),
60139
60659
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
60140
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
60660
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
60141
60661
  }).transform((v2) => {
60142
60662
  return remap(v2, {
60143
60663
  _id: "id",
@@ -60171,7 +60691,7 @@ var init_listdatasetdatapoints = __esm(() => {
60171
60691
  createdById: stringType().optional(),
60172
60692
  updatedById: stringType().optional(),
60173
60693
  created: dateType().transform((v2) => v2.toISOString()).optional(),
60174
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
60694
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
60175
60695
  }).transform((v2) => {
60176
60696
  return remap(v2, {
60177
60697
  id: "_id",
@@ -60260,7 +60780,7 @@ var init_listdatasets = __esm(() => {
60260
60780
  created_by_id: stringType().optional(),
60261
60781
  updated_by_id: stringType().optional(),
60262
60782
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
60263
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
60783
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
60264
60784
  }).transform((v2) => {
60265
60785
  return remap(v2, {
60266
60786
  _id: "id",
@@ -60280,7 +60800,7 @@ var init_listdatasets = __esm(() => {
60280
60800
  createdById: stringType().optional(),
60281
60801
  updatedById: stringType().optional(),
60282
60802
  created: dateType().transform((v2) => v2.toISOString()).optional(),
60283
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
60803
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
60284
60804
  }).transform((v2) => {
60285
60805
  return remap(v2, {
60286
60806
  id: "_id",
@@ -60312,7 +60832,7 @@ var init_listdatasets = __esm(() => {
60312
60832
  });
60313
60833
 
60314
60834
  // src/models/operations/listdatasources.ts
60315
- var ListDatasourcesObject, ListDatasourcesStatus, QueryParamStatus$inboundSchema, QueryParamStatus$outboundSchema, ListDatasourcesRequest$inboundSchema, ListDatasourcesRequest$outboundSchema, ListDatasourcesObject$inboundSchema, ListDatasourcesObject$outboundSchema, ListDatasourcesStatus$inboundSchema, ListDatasourcesStatus$outboundSchema, ListDatasourcesData$inboundSchema, ListDatasourcesData$outboundSchema, ListDatasourcesResponseBody$inboundSchema, ListDatasourcesResponseBody$outboundSchema;
60835
+ var ListDatasourcesObject, ListDatasourcesStatus, Status$inboundSchema, Status$outboundSchema, ListDatasourcesRequest$inboundSchema, ListDatasourcesRequest$outboundSchema, ListDatasourcesObject$inboundSchema, ListDatasourcesObject$outboundSchema, ListDatasourcesStatus$inboundSchema, ListDatasourcesStatus$outboundSchema, ListDatasourcesData$inboundSchema, ListDatasourcesData$outboundSchema, ListDatasourcesResponseBody$inboundSchema, ListDatasourcesResponseBody$outboundSchema;
60316
60836
  var init_listdatasources = __esm(() => {
60317
60837
  init_esm();
60318
60838
  init_primitives();
@@ -60326,8 +60846,8 @@ var init_listdatasources = __esm(() => {
60326
60846
  Failed: "failed",
60327
60847
  Queued: "queued"
60328
60848
  };
60329
- QueryParamStatus$inboundSchema = unionType([arrayType(stringType()), stringType()]);
60330
- QueryParamStatus$outboundSchema = unionType([arrayType(stringType()), stringType()]);
60849
+ Status$inboundSchema = unionType([arrayType(stringType()), stringType()]);
60850
+ Status$outboundSchema = unionType([arrayType(stringType()), stringType()]);
60331
60851
  ListDatasourcesRequest$inboundSchema = objectType({
60332
60852
  knowledge_id: stringType(),
60333
60853
  starting_after: stringType().optional(),
@@ -60361,7 +60881,7 @@ var init_listdatasources = __esm(() => {
60361
60881
  ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
60362
60882
  ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
60363
60883
  ListDatasourcesData$inboundSchema = objectType({
60364
- _id: stringType().default("01KADY1D7WR5XXW65P11W3J21M"),
60884
+ _id: stringType().default("01KAG3PQC6FC4KPN6J7X3ZYQSZ"),
60365
60885
  display_name: stringType(),
60366
60886
  description: stringType().optional(),
60367
60887
  status: ListDatasourcesStatus$inboundSchema,
@@ -60384,7 +60904,7 @@ var init_listdatasources = __esm(() => {
60384
60904
  });
60385
60905
  });
60386
60906
  ListDatasourcesData$outboundSchema = objectType({
60387
- id: stringType().default("01KADY1D7WR5XXW65P11W3J21M"),
60907
+ id: stringType().default("01KAG3PQC6FC4KPN6J7X3ZYQSZ"),
60388
60908
  displayName: stringType(),
60389
60909
  description: stringType().optional(),
60390
60910
  status: ListDatasourcesStatus$outboundSchema,
@@ -61857,7 +62377,7 @@ var init_retrievecontact2 = __esm(() => {
61857
62377
  tags: arrayType(stringType()).optional(),
61858
62378
  metadata: recordType(anyType()).optional(),
61859
62379
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61860
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
62380
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
61861
62381
  }).transform((v2) => {
61862
62382
  return remap(v2, {
61863
62383
  _id: "id",
@@ -61875,7 +62395,7 @@ var init_retrievecontact2 = __esm(() => {
61875
62395
  tags: arrayType(stringType()).optional(),
61876
62396
  metadata: recordType(anyType()).optional(),
61877
62397
  created: dateType().transform((v2) => v2.toISOString()).optional(),
61878
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
62398
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
61879
62399
  }).transform((v2) => {
61880
62400
  return remap(v2, {
61881
62401
  id: "_id",
@@ -62434,7 +62954,7 @@ var init_retrievedatapoint = __esm(() => {
62434
62954
  human_review_id: stringType(),
62435
62955
  source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
62436
62956
  reviewed_by_id: stringType(),
62437
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.317Z").transform((v2) => new Date(v2)),
62957
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.842Z").transform((v2) => new Date(v2)),
62438
62958
  type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
62439
62959
  values: arrayType(stringType())
62440
62960
  }).transform((v2) => {
@@ -62451,7 +62971,7 @@ var init_retrievedatapoint = __esm(() => {
62451
62971
  humanReviewId: stringType(),
62452
62972
  source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
62453
62973
  reviewedById: stringType(),
62454
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.317Z")).transform((v2) => v2.toISOString()),
62974
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.842Z")).transform((v2) => v2.toISOString()),
62455
62975
  type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
62456
62976
  values: arrayType(stringType())
62457
62977
  }).transform((v2) => {
@@ -62474,7 +62994,7 @@ var init_retrievedatapoint = __esm(() => {
62474
62994
  human_review_id: stringType(),
62475
62995
  source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
62476
62996
  reviewed_by_id: stringType(),
62477
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.316Z").transform((v2) => new Date(v2)),
62997
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.841Z").transform((v2) => new Date(v2)),
62478
62998
  type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
62479
62999
  value: numberType()
62480
63000
  }).transform((v2) => {
@@ -62491,7 +63011,7 @@ var init_retrievedatapoint = __esm(() => {
62491
63011
  humanReviewId: stringType(),
62492
63012
  source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
62493
63013
  reviewedById: stringType(),
62494
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.316Z")).transform((v2) => v2.toISOString()),
63014
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.841Z")).transform((v2) => v2.toISOString()),
62495
63015
  type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
62496
63016
  value: numberType()
62497
63017
  }).transform((v2) => {
@@ -62514,7 +63034,7 @@ var init_retrievedatapoint = __esm(() => {
62514
63034
  human_review_id: stringType(),
62515
63035
  source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
62516
63036
  reviewed_by_id: stringType(),
62517
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.313Z").transform((v2) => new Date(v2)),
63037
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.836Z").transform((v2) => new Date(v2)),
62518
63038
  type: RetrieveDatapointEvaluationsType$inboundSchema,
62519
63039
  value: stringType()
62520
63040
  }).transform((v2) => {
@@ -62531,7 +63051,7 @@ var init_retrievedatapoint = __esm(() => {
62531
63051
  humanReviewId: stringType(),
62532
63052
  source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
62533
63053
  reviewedById: stringType(),
62534
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.313Z")).transform((v2) => v2.toISOString()),
63054
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.836Z")).transform((v2) => v2.toISOString()),
62535
63055
  type: RetrieveDatapointEvaluationsType$outboundSchema,
62536
63056
  value: stringType()
62537
63057
  }).transform((v2) => {
@@ -62574,7 +63094,7 @@ var init_retrievedatapoint = __esm(() => {
62574
63094
  created_by_id: stringType().optional(),
62575
63095
  updated_by_id: stringType().optional(),
62576
63096
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
62577
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
63097
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
62578
63098
  }).transform((v2) => {
62579
63099
  return remap(v2, {
62580
63100
  _id: "id",
@@ -62608,7 +63128,7 @@ var init_retrievedatapoint = __esm(() => {
62608
63128
  createdById: stringType().optional(),
62609
63129
  updatedById: stringType().optional(),
62610
63130
  created: dateType().transform((v2) => v2.toISOString()).optional(),
62611
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
63131
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
62612
63132
  }).transform((v2) => {
62613
63133
  return remap(v2, {
62614
63134
  id: "_id",
@@ -62668,7 +63188,7 @@ var init_retrievedataset = __esm(() => {
62668
63188
  created_by_id: stringType().optional(),
62669
63189
  updated_by_id: stringType().optional(),
62670
63190
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
62671
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
63191
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
62672
63192
  }).transform((v2) => {
62673
63193
  return remap(v2, {
62674
63194
  _id: "id",
@@ -62688,7 +63208,7 @@ var init_retrievedataset = __esm(() => {
62688
63208
  createdById: stringType().optional(),
62689
63209
  updatedById: stringType().optional(),
62690
63210
  created: dateType().transform((v2) => v2.toISOString()).optional(),
62691
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
63211
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
62692
63212
  }).transform((v2) => {
62693
63213
  return remap(v2, {
62694
63214
  id: "_id",
@@ -62734,7 +63254,7 @@ var init_retrievedatasource = __esm(() => {
62734
63254
  RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
62735
63255
  RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
62736
63256
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
62737
- _id: stringType().default("01KADY1D7YF5Z7TMQJ9GB50WWS"),
63257
+ _id: stringType().default("01KAG3PQCC00VJ42R0G2ZF2SEF"),
62738
63258
  display_name: stringType(),
62739
63259
  description: stringType().optional(),
62740
63260
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -62757,7 +63277,7 @@ var init_retrievedatasource = __esm(() => {
62757
63277
  });
62758
63278
  });
62759
63279
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
62760
- id: stringType().default("01KADY1D7YF5Z7TMQJ9GB50WWS"),
63280
+ id: stringType().default("01KAG3PQCC00VJ42R0G2ZF2SEF"),
62761
63281
  displayName: stringType(),
62762
63282
  description: stringType().optional(),
62763
63283
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -63109,7 +63629,7 @@ var init_retrievetool = __esm(() => {
63109
63629
  code: stringType()
63110
63630
  });
63111
63631
  RetrieveToolResponseBody5$inboundSchema = objectType({
63112
- _id: stringType().default("tool_01KADY1D4ERTYNVS30VHD4V7PD"),
63632
+ _id: stringType().default("tool_01KAG3PQ1CEMSYYEEFCYTQR244"),
63113
63633
  path: stringType(),
63114
63634
  key: stringType(),
63115
63635
  display_name: stringType().optional(),
@@ -63137,7 +63657,7 @@ var init_retrievetool = __esm(() => {
63137
63657
  });
63138
63658
  });
63139
63659
  RetrieveToolResponseBody5$outboundSchema = objectType({
63140
- id: stringType().default("tool_01KADY1D4ERTYNVS30VHD4V7PD"),
63660
+ id: stringType().default("tool_01KAG3PQ1CEMSYYEEFCYTQR244"),
63141
63661
  path: stringType(),
63142
63662
  key: stringType(),
63143
63663
  displayName: stringType().optional(),
@@ -63189,13 +63709,13 @@ var init_retrievetool = __esm(() => {
63189
63709
  required: arrayType(stringType()).optional()
63190
63710
  });
63191
63711
  RetrieveToolResponseBodyTools$inboundSchema = objectType({
63192
- id: stringType().default("01KADY1D4D4KACZ0XRQY7Q6S91"),
63712
+ id: stringType().default("01KAG3PQ1BHEPTMEDHVKRQMCCX"),
63193
63713
  name: stringType(),
63194
63714
  description: stringType().optional(),
63195
63715
  schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
63196
63716
  });
63197
63717
  RetrieveToolResponseBodyTools$outboundSchema = objectType({
63198
- id: stringType().default("01KADY1D4D4KACZ0XRQY7Q6S91"),
63718
+ id: stringType().default("01KAG3PQ1BHEPTMEDHVKRQMCCX"),
63199
63719
  name: stringType(),
63200
63720
  description: stringType().optional(),
63201
63721
  schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
@@ -63225,7 +63745,7 @@ var init_retrievetool = __esm(() => {
63225
63745
  });
63226
63746
  });
63227
63747
  RetrieveToolResponseBody4$inboundSchema = objectType({
63228
- _id: stringType().default("tool_01KADY1D4BV28MJ8EBJCZ14E3V"),
63748
+ _id: stringType().default("tool_01KAG3PQ1A1ESRS4FVX9ADQP5P"),
63229
63749
  path: stringType(),
63230
63750
  key: stringType(),
63231
63751
  display_name: stringType().optional(),
@@ -63252,7 +63772,7 @@ var init_retrievetool = __esm(() => {
63252
63772
  });
63253
63773
  });
63254
63774
  RetrieveToolResponseBody4$outboundSchema = objectType({
63255
- id: stringType().default("tool_01KADY1D4BV28MJ8EBJCZ14E3V"),
63775
+ id: stringType().default("tool_01KAG3PQ1A1ESRS4FVX9ADQP5P"),
63256
63776
  path: stringType(),
63257
63777
  key: stringType(),
63258
63778
  displayName: stringType().optional(),
@@ -63341,7 +63861,7 @@ var init_retrievetool = __esm(() => {
63341
63861
  arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
63342
63862
  });
63343
63863
  RetrieveToolResponseBody3$inboundSchema = objectType({
63344
- _id: stringType().default("tool_01KADY1D485VF1JZ6T6CB55P1N"),
63864
+ _id: stringType().default("tool_01KAG3PQ18E705PTE0P5J61G7R"),
63345
63865
  path: stringType(),
63346
63866
  key: stringType(),
63347
63867
  display_name: stringType().optional(),
@@ -63368,7 +63888,7 @@ var init_retrievetool = __esm(() => {
63368
63888
  });
63369
63889
  });
63370
63890
  RetrieveToolResponseBody3$outboundSchema = objectType({
63371
- id: stringType().default("tool_01KADY1D485VF1JZ6T6CB55P1N"),
63891
+ id: stringType().default("tool_01KAG3PQ18E705PTE0P5J61G7R"),
63372
63892
  path: stringType(),
63373
63893
  key: stringType(),
63374
63894
  displayName: stringType().optional(),
@@ -63429,7 +63949,7 @@ var init_retrievetool = __esm(() => {
63429
63949
  strict: booleanType().optional()
63430
63950
  });
63431
63951
  RetrieveToolResponseBody2$inboundSchema = objectType({
63432
- _id: stringType().default("tool_01KADY1D40NXY8WCCE8MG7A3W4"),
63952
+ _id: stringType().default("tool_01KAG3PQ17CEYAJYS31BQY9QRM"),
63433
63953
  path: stringType(),
63434
63954
  key: stringType(),
63435
63955
  display_name: stringType().optional(),
@@ -63457,7 +63977,7 @@ var init_retrievetool = __esm(() => {
63457
63977
  });
63458
63978
  });
63459
63979
  RetrieveToolResponseBody2$outboundSchema = objectType({
63460
- id: stringType().default("tool_01KADY1D40NXY8WCCE8MG7A3W4"),
63980
+ id: stringType().default("tool_01KAG3PQ17CEYAJYS31BQY9QRM"),
63461
63981
  path: stringType(),
63462
63982
  key: stringType(),
63463
63983
  displayName: stringType().optional(),
@@ -63521,7 +64041,7 @@ var init_retrievetool = __esm(() => {
63521
64041
  parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
63522
64042
  });
63523
64043
  RetrieveToolResponseBody1$inboundSchema = objectType({
63524
- _id: stringType().default("tool_01KADY1D3Z7EBBWTPC07R7MBTF"),
64044
+ _id: stringType().default("tool_01KAG3PQ15Q5TJ3G9AW4TC4ASV"),
63525
64045
  path: stringType(),
63526
64046
  key: stringType(),
63527
64047
  display_name: stringType().optional(),
@@ -63548,7 +64068,7 @@ var init_retrievetool = __esm(() => {
63548
64068
  });
63549
64069
  });
63550
64070
  RetrieveToolResponseBody1$outboundSchema = objectType({
63551
- id: stringType().default("tool_01KADY1D3Z7EBBWTPC07R7MBTF"),
64071
+ id: stringType().default("tool_01KAG3PQ15Q5TJ3G9AW4TC4ASV"),
63552
64072
  path: stringType(),
63553
64073
  key: stringType(),
63554
64074
  displayName: stringType().optional(),
@@ -63591,7 +64111,7 @@ var init_retrievetool = __esm(() => {
63591
64111
  });
63592
64112
 
63593
64113
  // src/models/operations/runagent.ts
63594
- var RunAgentModelConfigurationVoice, RunAgentModelConfigurationFormat, RunAgentResponseFormatAgentsRequestType, RunAgentResponseFormatAgentsType, RunAgentResponseFormatType, RunAgentModelConfigurationType, RunAgentModelConfigurationThinkingLevel, RunAgentToolChoiceType, RunAgentToolChoice1, RunAgentModelConfigurationModalities, RunAgentFallbackModelConfigurationVoice, RunAgentFallbackModelConfigurationFormat, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, RunAgentResponseFormatAgentsRequestRequestBodyType, RunAgentFallbackModelConfigurationType, RunAgentFallbackModelConfigurationThinkingLevel, RunAgentToolChoiceAgentsType, RunAgentToolChoiceAgents1, RunAgentFallbackModelConfigurationModalities, RunAgentRoleToolMessage, RunAgentRoleUserMessage, RunAgentPublicMessagePartAgentsRequestKind, RunAgentPublicMessagePartAgentsKind, RunAgentPublicMessagePartKind, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType, ConnectionType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType, Language, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type, Method, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType, RunAgentAgentToolInputRunAgentsRequestRequestBodyType, RunAgentAgentToolInputRunAgentsRequestType, RunAgentAgentToolInputRunAgentsType, RunAgentAgentToolInputRunType, AgentToolInputRunType, RunAgentToolApprovalRequired, RunAgentExecuteOn, RunAgentAgentsExecuteOn, RunAgentKind, RunAgentState, RunAgentAgentsKind, RunAgentAgentsRole, RunAgentPartsAgentsResponse200ApplicationJSONKind, RunAgentPartsAgentsResponse200Kind, RunAgentPartsAgentsResponseKind, RunAgentPartsAgentsKind, RunAgentPartsKind, RunAgentModelConfigurationVoice$inboundSchema, RunAgentModelConfigurationVoice$outboundSchema, RunAgentModelConfigurationFormat$inboundSchema, RunAgentModelConfigurationFormat$outboundSchema, RunAgentModelConfigurationAudio$inboundSchema, RunAgentModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsRequestType$inboundSchema, RunAgentResponseFormatAgentsRequestType$outboundSchema, RunAgentResponseFormatAgentsJsonSchema$inboundSchema, RunAgentResponseFormatAgentsJsonSchema$outboundSchema, RunAgentResponseFormatJSONSchema$inboundSchema, RunAgentResponseFormatJSONSchema$outboundSchema, RunAgentResponseFormatAgentsType$inboundSchema, RunAgentResponseFormatAgentsType$outboundSchema, RunAgentResponseFormatJSONObject$inboundSchema, RunAgentResponseFormatJSONObject$outboundSchema, RunAgentResponseFormatType$inboundSchema, RunAgentResponseFormatType$outboundSchema, RunAgentResponseFormatText$inboundSchema, RunAgentResponseFormatText$outboundSchema, RunAgentModelConfigurationResponseFormat$inboundSchema, RunAgentModelConfigurationResponseFormat$outboundSchema, RunAgentModelConfigurationStop$inboundSchema, RunAgentModelConfigurationStop$outboundSchema, RunAgentModelConfigurationStreamOptions$inboundSchema, RunAgentModelConfigurationStreamOptions$outboundSchema, RunAgentModelConfigurationType$inboundSchema, RunAgentModelConfigurationType$outboundSchema, RunAgentModelConfigurationThinkingLevel$inboundSchema, RunAgentModelConfigurationThinkingLevel$outboundSchema, RunAgentModelConfigurationThinking$inboundSchema, RunAgentModelConfigurationThinking$outboundSchema, RunAgentToolChoiceType$inboundSchema, RunAgentToolChoiceType$outboundSchema, RunAgentToolChoiceFunction$inboundSchema, RunAgentToolChoiceFunction$outboundSchema, RunAgentToolChoice2$inboundSchema, RunAgentToolChoice2$outboundSchema, RunAgentToolChoice1$inboundSchema, RunAgentToolChoice1$outboundSchema, RunAgentModelConfigurationToolChoice$inboundSchema, RunAgentModelConfigurationToolChoice$outboundSchema, RunAgentModelConfigurationModalities$inboundSchema, RunAgentModelConfigurationModalities$outboundSchema, RunAgentModelConfigurationParameters$inboundSchema, RunAgentModelConfigurationParameters$outboundSchema, RunAgentModelConfigurationRetry$inboundSchema, RunAgentModelConfigurationRetry$outboundSchema, RunAgentModelConfiguration2$inboundSchema, RunAgentModelConfiguration2$outboundSchema, RunAgentModelConfiguration$inboundSchema, RunAgentModelConfiguration$outboundSchema, RunAgentFallbackModelConfigurationVoice$inboundSchema, RunAgentFallbackModelConfigurationVoice$outboundSchema, RunAgentFallbackModelConfigurationFormat$inboundSchema, RunAgentFallbackModelConfigurationFormat$outboundSchema, RunAgentFallbackModelConfigurationAudio$inboundSchema, RunAgentFallbackModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, RunAgentResponseFormatAgentsJSONObject$inboundSchema, RunAgentResponseFormatAgentsJSONObject$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, RunAgentResponseFormatAgentsText$inboundSchema, RunAgentResponseFormatAgentsText$outboundSchema, RunAgentFallbackModelConfigurationResponseFormat$inboundSchema, RunAgentFallbackModelConfigurationResponseFormat$outboundSchema, RunAgentFallbackModelConfigurationStop$inboundSchema, RunAgentFallbackModelConfigurationStop$outboundSchema, RunAgentFallbackModelConfigurationStreamOptions$inboundSchema, RunAgentFallbackModelConfigurationStreamOptions$outboundSchema, RunAgentFallbackModelConfigurationType$inboundSchema, RunAgentFallbackModelConfigurationType$outboundSchema, RunAgentFallbackModelConfigurationThinkingLevel$inboundSchema, RunAgentFallbackModelConfigurationThinkingLevel$outboundSchema, RunAgentFallbackModelConfigurationThinking$inboundSchema, RunAgentFallbackModelConfigurationThinking$outboundSchema, RunAgentToolChoiceAgentsType$inboundSchema, RunAgentToolChoiceAgentsType$outboundSchema, RunAgentToolChoiceAgentsFunction$inboundSchema, RunAgentToolChoiceAgentsFunction$outboundSchema, RunAgentToolChoiceAgents2$inboundSchema, RunAgentToolChoiceAgents2$outboundSchema, RunAgentToolChoiceAgents1$inboundSchema, RunAgentToolChoiceAgents1$outboundSchema, RunAgentFallbackModelConfigurationToolChoice$inboundSchema, RunAgentFallbackModelConfigurationToolChoice$outboundSchema, RunAgentFallbackModelConfigurationModalities$inboundSchema, RunAgentFallbackModelConfigurationModalities$outboundSchema, RunAgentFallbackModelConfigurationParameters$inboundSchema, RunAgentFallbackModelConfigurationParameters$outboundSchema, RunAgentFallbackModelConfiguration2$inboundSchema, RunAgentFallbackModelConfiguration2$outboundSchema, RunAgentFallbackModelConfiguration$inboundSchema, RunAgentFallbackModelConfiguration$outboundSchema, RunAgentRoleToolMessage$inboundSchema, RunAgentRoleToolMessage$outboundSchema, RunAgentRoleUserMessage$inboundSchema, RunAgentRoleUserMessage$outboundSchema, RunAgentRole$inboundSchema, RunAgentRole$outboundSchema, RunAgentPublicMessagePartAgentsRequestKind$inboundSchema, RunAgentPublicMessagePartAgentsRequestKind$outboundSchema, PublicMessagePartToolResultPart$inboundSchema, PublicMessagePartToolResultPart$outboundSchema, RunAgentPublicMessagePartAgentsKind$inboundSchema, RunAgentPublicMessagePartAgentsKind$outboundSchema, FileFileInURIFormat$inboundSchema, FileFileInURIFormat$outboundSchema, FileBinaryFormat$inboundSchema, FileBinaryFormat$outboundSchema, RunAgentPublicMessagePartFile$inboundSchema, RunAgentPublicMessagePartFile$outboundSchema, PublicMessagePartFilePart$inboundSchema, PublicMessagePartFilePart$outboundSchema, RunAgentPublicMessagePartKind$inboundSchema, RunAgentPublicMessagePartKind$outboundSchema, PublicMessagePartTextPart$inboundSchema, PublicMessagePartTextPart$outboundSchema, RunAgentPublicMessagePart$inboundSchema, RunAgentPublicMessagePart$outboundSchema, RunAgentMessage$inboundSchema, RunAgentMessage$outboundSchema, RunAgentContact$inboundSchema, RunAgentContact$outboundSchema, RunAgentThread$inboundSchema, RunAgentThread$outboundSchema, RunAgentMemory$inboundSchema, RunAgentMemory$outboundSchema, RunAgentKnowledgeBases$inboundSchema, RunAgentKnowledgeBases$outboundSchema, RunAgentTeamOfAgents$inboundSchema, RunAgentTeamOfAgents$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type$outboundSchema, AgentToolInputRunHeaders$inboundSchema, AgentToolInputRunHeaders$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$outboundSchema, Schema$inboundSchema, Schema$outboundSchema, Tools$inboundSchema, Tools$outboundSchema, ConnectionType$inboundSchema, ConnectionType$outboundSchema, Mcp$inboundSchema, Mcp$outboundSchema, MCPToolRun$inboundSchema, MCPToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$outboundSchema, RunAgentAgentToolInputRunParameters$inboundSchema, RunAgentAgentToolInputRunParameters$outboundSchema, AgentToolInputRunFunction$inboundSchema, AgentToolInputRunFunction$outboundSchema, FunctionToolRun$inboundSchema, FunctionToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$outboundSchema, AgentToolInputRunParameters$inboundSchema, AgentToolInputRunParameters$outboundSchema, Language$inboundSchema, Language$outboundSchema, CodeTool$inboundSchema, CodeTool$outboundSchema, CodeToolRun$inboundSchema, CodeToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$outboundSchema, Method$inboundSchema, Method$outboundSchema, Headers2$inboundSchema, Headers2$outboundSchema, Headers$inboundSchema, Headers$outboundSchema, Blueprint$inboundSchema, Blueprint$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$outboundSchema, DefaultValue$inboundSchema, DefaultValue$outboundSchema, Arguments$inboundSchema, Arguments$outboundSchema, Http$inboundSchema, Http$outboundSchema, HTTPToolRun$inboundSchema, HTTPToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema, AgentToolInputRunCurrentDateTool$inboundSchema, AgentToolInputRunCurrentDateTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema, AgentToolInputRunWriteMemoryStoreTool$inboundSchema, AgentToolInputRunWriteMemoryStoreTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema, AgentToolInputRunQueryMemoryStoreTool$inboundSchema, AgentToolInputRunQueryMemoryStoreTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestType$outboundSchema, AgentToolInputRunRetrieveAgentsTool$inboundSchema, AgentToolInputRunRetrieveAgentsTool$outboundSchema, RunAgentAgentToolInputRunAgentsType$inboundSchema, RunAgentAgentToolInputRunAgentsType$outboundSchema, AgentToolInputRunCallSubAgentTool$inboundSchema, AgentToolInputRunCallSubAgentTool$outboundSchema, RunAgentAgentToolInputRunType$inboundSchema, RunAgentAgentToolInputRunType$outboundSchema, AgentToolInputRunWebScraperTool$inboundSchema, AgentToolInputRunWebScraperTool$outboundSchema, AgentToolInputRunType$inboundSchema, AgentToolInputRunType$outboundSchema, AgentToolInputRunGoogleSearchTool$inboundSchema, AgentToolInputRunGoogleSearchTool$outboundSchema, AgentToolInputRun$inboundSchema, AgentToolInputRun$outboundSchema, RunAgentToolApprovalRequired$inboundSchema, RunAgentToolApprovalRequired$outboundSchema, RunAgentExecuteOn$inboundSchema, RunAgentExecuteOn$outboundSchema, RunAgentEvaluators$inboundSchema, RunAgentEvaluators$outboundSchema, RunAgentAgentsExecuteOn$inboundSchema, RunAgentAgentsExecuteOn$outboundSchema, RunAgentGuardrails$inboundSchema, RunAgentGuardrails$outboundSchema, RunAgentSettings$inboundSchema, RunAgentSettings$outboundSchema, RunAgentRequestBody$inboundSchema, RunAgentRequestBody$outboundSchema, RunAgentKind$inboundSchema, RunAgentKind$outboundSchema, RunAgentState$inboundSchema, RunAgentState$outboundSchema, RunAgentAgentsKind$inboundSchema, RunAgentAgentsKind$outboundSchema, RunAgentAgentsRole$inboundSchema, RunAgentAgentsRole$outboundSchema, RunAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema, RunAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema, RunAgentParts5$inboundSchema, RunAgentParts5$outboundSchema, RunAgentPartsAgentsResponse200Kind$inboundSchema, RunAgentPartsAgentsResponse200Kind$outboundSchema, RunAgentParts4$inboundSchema, RunAgentParts4$outboundSchema, RunAgentPartsAgentsResponseKind$inboundSchema, RunAgentPartsAgentsResponseKind$outboundSchema, RunAgentFileFileInURIFormat$inboundSchema, RunAgentFileFileInURIFormat$outboundSchema, RunAgentFileBinaryFormat$inboundSchema, RunAgentFileBinaryFormat$outboundSchema, RunAgentPartsFile$inboundSchema, RunAgentPartsFile$outboundSchema, RunAgentParts3$inboundSchema, RunAgentParts3$outboundSchema, RunAgentPartsAgentsKind$inboundSchema, RunAgentPartsAgentsKind$outboundSchema, RunAgentParts2$inboundSchema, RunAgentParts2$outboundSchema, RunAgentPartsKind$inboundSchema, RunAgentPartsKind$outboundSchema, RunAgentParts1$inboundSchema, RunAgentParts1$outboundSchema, RunAgentParts$inboundSchema, RunAgentParts$outboundSchema, RunAgentAgentsMessage$inboundSchema, RunAgentAgentsMessage$outboundSchema, RunAgentStatus$inboundSchema, RunAgentStatus$outboundSchema, RunAgentResponseBody$inboundSchema, RunAgentResponseBody$outboundSchema;
64114
+ var RunAgentModelConfigurationVoice, RunAgentModelConfigurationFormat, RunAgentResponseFormatAgentsRequestType, RunAgentResponseFormatAgentsType, RunAgentResponseFormatType, RunAgentModelConfigurationType, RunAgentModelConfigurationThinkingLevel, RunAgentToolChoiceType, RunAgentToolChoice1, RunAgentModelConfigurationModalities, RunAgentFallbackModelConfigurationVoice, RunAgentFallbackModelConfigurationFormat, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, RunAgentResponseFormatAgentsRequestRequestBodyType, RunAgentFallbackModelConfigurationType, RunAgentFallbackModelConfigurationThinkingLevel, RunAgentToolChoiceAgentsType, RunAgentToolChoiceAgents1, RunAgentFallbackModelConfigurationModalities, RunAgentRoleToolMessage, RunAgentRoleUserMessage, RunAgentPublicMessagePartAgentsRequestKind, RunAgentPublicMessagePartAgentsKind, RunAgentPublicMessagePartKind, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType, ConnectionType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType, Language, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type, Method, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType, RunAgentAgentToolInputRunAgentsRequestRequestBodyType, RunAgentAgentToolInputRunAgentsRequestType, RunAgentAgentToolInputRunAgentsType, RunAgentAgentToolInputRunType, AgentToolInputRunType, RunAgentToolApprovalRequired, RunAgentExecuteOn, RunAgentAgentsExecuteOn, RunAgentKind, RunAgentTaskState, RunAgentAgentsKind, RunAgentExtendedMessageRole, RunAgentPartsAgentsResponse200ApplicationJSONKind, RunAgentPartsAgentsResponse200Kind, RunAgentPartsAgentsResponseKind, RunAgentPartsAgentsKind, RunAgentPartsKind, RunAgentModelConfigurationVoice$inboundSchema, RunAgentModelConfigurationVoice$outboundSchema, RunAgentModelConfigurationFormat$inboundSchema, RunAgentModelConfigurationFormat$outboundSchema, RunAgentModelConfigurationAudio$inboundSchema, RunAgentModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsRequestType$inboundSchema, RunAgentResponseFormatAgentsRequestType$outboundSchema, RunAgentResponseFormatAgentsJsonSchema$inboundSchema, RunAgentResponseFormatAgentsJsonSchema$outboundSchema, RunAgentResponseFormatJSONSchema$inboundSchema, RunAgentResponseFormatJSONSchema$outboundSchema, RunAgentResponseFormatAgentsType$inboundSchema, RunAgentResponseFormatAgentsType$outboundSchema, RunAgentResponseFormatJSONObject$inboundSchema, RunAgentResponseFormatJSONObject$outboundSchema, RunAgentResponseFormatType$inboundSchema, RunAgentResponseFormatType$outboundSchema, RunAgentResponseFormatText$inboundSchema, RunAgentResponseFormatText$outboundSchema, RunAgentModelConfigurationResponseFormat$inboundSchema, RunAgentModelConfigurationResponseFormat$outboundSchema, RunAgentModelConfigurationStop$inboundSchema, RunAgentModelConfigurationStop$outboundSchema, RunAgentModelConfigurationStreamOptions$inboundSchema, RunAgentModelConfigurationStreamOptions$outboundSchema, RunAgentModelConfigurationType$inboundSchema, RunAgentModelConfigurationType$outboundSchema, RunAgentModelConfigurationThinkingLevel$inboundSchema, RunAgentModelConfigurationThinkingLevel$outboundSchema, RunAgentModelConfigurationThinking$inboundSchema, RunAgentModelConfigurationThinking$outboundSchema, RunAgentToolChoiceType$inboundSchema, RunAgentToolChoiceType$outboundSchema, RunAgentToolChoiceFunction$inboundSchema, RunAgentToolChoiceFunction$outboundSchema, RunAgentToolChoice2$inboundSchema, RunAgentToolChoice2$outboundSchema, RunAgentToolChoice1$inboundSchema, RunAgentToolChoice1$outboundSchema, RunAgentModelConfigurationToolChoice$inboundSchema, RunAgentModelConfigurationToolChoice$outboundSchema, RunAgentModelConfigurationModalities$inboundSchema, RunAgentModelConfigurationModalities$outboundSchema, RunAgentModelConfigurationParameters$inboundSchema, RunAgentModelConfigurationParameters$outboundSchema, RunAgentModelConfigurationRetry$inboundSchema, RunAgentModelConfigurationRetry$outboundSchema, RunAgentModelConfiguration2$inboundSchema, RunAgentModelConfiguration2$outboundSchema, RunAgentModelConfiguration$inboundSchema, RunAgentModelConfiguration$outboundSchema, RunAgentFallbackModelConfigurationVoice$inboundSchema, RunAgentFallbackModelConfigurationVoice$outboundSchema, RunAgentFallbackModelConfigurationFormat$inboundSchema, RunAgentFallbackModelConfigurationFormat$outboundSchema, RunAgentFallbackModelConfigurationAudio$inboundSchema, RunAgentFallbackModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, RunAgentResponseFormatAgentsJSONObject$inboundSchema, RunAgentResponseFormatAgentsJSONObject$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, RunAgentResponseFormatAgentsText$inboundSchema, RunAgentResponseFormatAgentsText$outboundSchema, RunAgentFallbackModelConfigurationResponseFormat$inboundSchema, RunAgentFallbackModelConfigurationResponseFormat$outboundSchema, RunAgentFallbackModelConfigurationStop$inboundSchema, RunAgentFallbackModelConfigurationStop$outboundSchema, RunAgentFallbackModelConfigurationStreamOptions$inboundSchema, RunAgentFallbackModelConfigurationStreamOptions$outboundSchema, RunAgentFallbackModelConfigurationType$inboundSchema, RunAgentFallbackModelConfigurationType$outboundSchema, RunAgentFallbackModelConfigurationThinkingLevel$inboundSchema, RunAgentFallbackModelConfigurationThinkingLevel$outboundSchema, RunAgentFallbackModelConfigurationThinking$inboundSchema, RunAgentFallbackModelConfigurationThinking$outboundSchema, RunAgentToolChoiceAgentsType$inboundSchema, RunAgentToolChoiceAgentsType$outboundSchema, RunAgentToolChoiceAgentsFunction$inboundSchema, RunAgentToolChoiceAgentsFunction$outboundSchema, RunAgentToolChoiceAgents2$inboundSchema, RunAgentToolChoiceAgents2$outboundSchema, RunAgentToolChoiceAgents1$inboundSchema, RunAgentToolChoiceAgents1$outboundSchema, RunAgentFallbackModelConfigurationToolChoice$inboundSchema, RunAgentFallbackModelConfigurationToolChoice$outboundSchema, RunAgentFallbackModelConfigurationModalities$inboundSchema, RunAgentFallbackModelConfigurationModalities$outboundSchema, RunAgentFallbackModelConfigurationParameters$inboundSchema, RunAgentFallbackModelConfigurationParameters$outboundSchema, RunAgentFallbackModelConfiguration2$inboundSchema, RunAgentFallbackModelConfiguration2$outboundSchema, RunAgentFallbackModelConfiguration$inboundSchema, RunAgentFallbackModelConfiguration$outboundSchema, RunAgentRoleToolMessage$inboundSchema, RunAgentRoleToolMessage$outboundSchema, RunAgentRoleUserMessage$inboundSchema, RunAgentRoleUserMessage$outboundSchema, RunAgentRole$inboundSchema, RunAgentRole$outboundSchema, RunAgentPublicMessagePartAgentsRequestKind$inboundSchema, RunAgentPublicMessagePartAgentsRequestKind$outboundSchema, PublicMessagePartToolResultPart$inboundSchema, PublicMessagePartToolResultPart$outboundSchema, RunAgentPublicMessagePartAgentsKind$inboundSchema, RunAgentPublicMessagePartAgentsKind$outboundSchema, FileFileInURIFormat$inboundSchema, FileFileInURIFormat$outboundSchema, FileBinaryFormat$inboundSchema, FileBinaryFormat$outboundSchema, RunAgentPublicMessagePartFile$inboundSchema, RunAgentPublicMessagePartFile$outboundSchema, PublicMessagePartFilePart$inboundSchema, PublicMessagePartFilePart$outboundSchema, RunAgentPublicMessagePartKind$inboundSchema, RunAgentPublicMessagePartKind$outboundSchema, PublicMessagePartTextPart$inboundSchema, PublicMessagePartTextPart$outboundSchema, RunAgentPublicMessagePart$inboundSchema, RunAgentPublicMessagePart$outboundSchema, RunAgentA2AMessage$inboundSchema, RunAgentA2AMessage$outboundSchema, RunAgentContact$inboundSchema, RunAgentContact$outboundSchema, RunAgentThread$inboundSchema, RunAgentThread$outboundSchema, RunAgentMemory$inboundSchema, RunAgentMemory$outboundSchema, RunAgentKnowledgeBases$inboundSchema, RunAgentKnowledgeBases$outboundSchema, RunAgentTeamOfAgents$inboundSchema, RunAgentTeamOfAgents$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type$outboundSchema, AgentToolInputRunHeaders$inboundSchema, AgentToolInputRunHeaders$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$outboundSchema, Schema$inboundSchema, Schema$outboundSchema, Tools$inboundSchema, Tools$outboundSchema, ConnectionType$inboundSchema, ConnectionType$outboundSchema, Mcp$inboundSchema, Mcp$outboundSchema, MCPToolRun$inboundSchema, MCPToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$outboundSchema, RunAgentAgentToolInputRunParameters$inboundSchema, RunAgentAgentToolInputRunParameters$outboundSchema, AgentToolInputRunFunction$inboundSchema, AgentToolInputRunFunction$outboundSchema, FunctionToolRun$inboundSchema, FunctionToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$outboundSchema, AgentToolInputRunParameters$inboundSchema, AgentToolInputRunParameters$outboundSchema, Language$inboundSchema, Language$outboundSchema, CodeTool$inboundSchema, CodeTool$outboundSchema, CodeToolRun$inboundSchema, CodeToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$outboundSchema, Method$inboundSchema, Method$outboundSchema, Headers2$inboundSchema, Headers2$outboundSchema, Headers$inboundSchema, Headers$outboundSchema, Blueprint$inboundSchema, Blueprint$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$outboundSchema, DefaultValue$inboundSchema, DefaultValue$outboundSchema, Arguments$inboundSchema, Arguments$outboundSchema, Http$inboundSchema, Http$outboundSchema, HTTPToolRun$inboundSchema, HTTPToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema, AgentToolInputRunCurrentDateTool$inboundSchema, AgentToolInputRunCurrentDateTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema, AgentToolInputRunWriteMemoryStoreTool$inboundSchema, AgentToolInputRunWriteMemoryStoreTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema, AgentToolInputRunQueryMemoryStoreTool$inboundSchema, AgentToolInputRunQueryMemoryStoreTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestType$outboundSchema, AgentToolInputRunRetrieveAgentsTool$inboundSchema, AgentToolInputRunRetrieveAgentsTool$outboundSchema, RunAgentAgentToolInputRunAgentsType$inboundSchema, RunAgentAgentToolInputRunAgentsType$outboundSchema, AgentToolInputRunCallSubAgentTool$inboundSchema, AgentToolInputRunCallSubAgentTool$outboundSchema, RunAgentAgentToolInputRunType$inboundSchema, RunAgentAgentToolInputRunType$outboundSchema, AgentToolInputRunWebScraperTool$inboundSchema, AgentToolInputRunWebScraperTool$outboundSchema, AgentToolInputRunType$inboundSchema, AgentToolInputRunType$outboundSchema, AgentToolInputRunGoogleSearchTool$inboundSchema, AgentToolInputRunGoogleSearchTool$outboundSchema, AgentToolInputRun$inboundSchema, AgentToolInputRun$outboundSchema, RunAgentToolApprovalRequired$inboundSchema, RunAgentToolApprovalRequired$outboundSchema, RunAgentExecuteOn$inboundSchema, RunAgentExecuteOn$outboundSchema, RunAgentEvaluators$inboundSchema, RunAgentEvaluators$outboundSchema, RunAgentAgentsExecuteOn$inboundSchema, RunAgentAgentsExecuteOn$outboundSchema, RunAgentGuardrails$inboundSchema, RunAgentGuardrails$outboundSchema, RunAgentSettings$inboundSchema, RunAgentSettings$outboundSchema, RunAgentRequestBody$inboundSchema, RunAgentRequestBody$outboundSchema, RunAgentKind$inboundSchema, RunAgentKind$outboundSchema, RunAgentTaskState$inboundSchema, RunAgentTaskState$outboundSchema, RunAgentAgentsKind$inboundSchema, RunAgentAgentsKind$outboundSchema, RunAgentExtendedMessageRole$inboundSchema, RunAgentExtendedMessageRole$outboundSchema, RunAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema, RunAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema, RunAgentPartsToolResultPart$inboundSchema, RunAgentPartsToolResultPart$outboundSchema, RunAgentPartsAgentsResponse200Kind$inboundSchema, RunAgentPartsAgentsResponse200Kind$outboundSchema, RunAgentPartsToolCallPart$inboundSchema, RunAgentPartsToolCallPart$outboundSchema, RunAgentPartsAgentsResponseKind$inboundSchema, RunAgentPartsAgentsResponseKind$outboundSchema, RunAgentFileFileInURIFormat$inboundSchema, RunAgentFileFileInURIFormat$outboundSchema, RunAgentFileBinaryFormat$inboundSchema, RunAgentFileBinaryFormat$outboundSchema, RunAgentPartsFile$inboundSchema, RunAgentPartsFile$outboundSchema, RunAgentPartsFilePart$inboundSchema, RunAgentPartsFilePart$outboundSchema, RunAgentPartsAgentsKind$inboundSchema, RunAgentPartsAgentsKind$outboundSchema, RunAgentPartsDataPart$inboundSchema, RunAgentPartsDataPart$outboundSchema, RunAgentPartsKind$inboundSchema, RunAgentPartsKind$outboundSchema, RunAgentPartsTextPart$inboundSchema, RunAgentPartsTextPart$outboundSchema, RunAgentParts$inboundSchema, RunAgentParts$outboundSchema, RunAgentTaskStatusMessage$inboundSchema, RunAgentTaskStatusMessage$outboundSchema, RunAgentTaskStatus$inboundSchema, RunAgentTaskStatus$outboundSchema, RunAgentA2ATaskResponse$inboundSchema, RunAgentA2ATaskResponse$outboundSchema;
63595
64115
  var init_runagent = __esm(() => {
63596
64116
  init_esm();
63597
64117
  init_primitives();
@@ -63787,21 +64307,20 @@ var init_runagent = __esm(() => {
63787
64307
  RunAgentKind = {
63788
64308
  Task: "task"
63789
64309
  };
63790
- RunAgentState = {
64310
+ RunAgentTaskState = {
63791
64311
  Submitted: "submitted",
63792
64312
  Working: "working",
63793
64313
  InputRequired: "input-required",
64314
+ AuthRequired: "auth-required",
63794
64315
  Completed: "completed",
63795
64316
  Failed: "failed",
63796
64317
  Canceled: "canceled",
63797
- Rejected: "rejected",
63798
- AuthRequired: "auth-required",
63799
- Unknown: "unknown"
64318
+ Rejected: "rejected"
63800
64319
  };
63801
64320
  RunAgentAgentsKind = {
63802
64321
  Message: "message"
63803
64322
  };
63804
- RunAgentAgentsRole = {
64323
+ RunAgentExtendedMessageRole = {
63805
64324
  User: "user",
63806
64325
  Agent: "agent",
63807
64326
  Tool: "tool",
@@ -64424,7 +64943,7 @@ var init_runagent = __esm(() => {
64424
64943
  lazyType(() => PublicMessagePartFilePart$outboundSchema),
64425
64944
  lazyType(() => PublicMessagePartToolResultPart$outboundSchema)
64426
64945
  ]);
64427
- RunAgentMessage$inboundSchema = objectType({
64946
+ RunAgentA2AMessage$inboundSchema = objectType({
64428
64947
  messageId: stringType().optional(),
64429
64948
  role: unionType([
64430
64949
  RunAgentRoleUserMessage$inboundSchema,
@@ -64436,7 +64955,7 @@ var init_runagent = __esm(() => {
64436
64955
  lazyType(() => PublicMessagePartToolResultPart$inboundSchema)
64437
64956
  ]))
64438
64957
  });
64439
- RunAgentMessage$outboundSchema = objectType({
64958
+ RunAgentA2AMessage$outboundSchema = objectType({
64440
64959
  messageId: stringType().optional(),
64441
64960
  role: unionType([
64442
64961
  RunAgentRoleUserMessage$outboundSchema,
@@ -64541,13 +65060,13 @@ var init_runagent = __esm(() => {
64541
65060
  required: arrayType(stringType()).optional()
64542
65061
  });
64543
65062
  Tools$inboundSchema = objectType({
64544
- id: stringType().default("01KADY1CSWR29SEYEKJQC36KGY"),
65063
+ id: stringType().default("01KAG3PPPWACXYWEHBQ4VHBT6R"),
64545
65064
  name: stringType(),
64546
65065
  description: stringType().optional(),
64547
65066
  schema: lazyType(() => Schema$inboundSchema)
64548
65067
  });
64549
65068
  Tools$outboundSchema = objectType({
64550
- id: stringType().default("01KADY1CSWR29SEYEKJQC36KGY"),
65069
+ id: stringType().default("01KAG3PPPWACXYWEHBQ4VHBT6R"),
64551
65070
  name: stringType(),
64552
65071
  description: stringType().optional(),
64553
65072
  schema: lazyType(() => Schema$outboundSchema)
@@ -65177,7 +65696,7 @@ var init_runagent = __esm(() => {
65177
65696
  ])).optional(),
65178
65697
  role: stringType(),
65179
65698
  instructions: stringType(),
65180
- message: lazyType(() => RunAgentMessage$inboundSchema),
65699
+ message: lazyType(() => RunAgentA2AMessage$inboundSchema),
65181
65700
  variables: recordType(anyType()).optional(),
65182
65701
  contact: lazyType(() => RunAgentContact$inboundSchema).optional(),
65183
65702
  thread: lazyType(() => RunAgentThread$inboundSchema).optional(),
@@ -65213,7 +65732,7 @@ var init_runagent = __esm(() => {
65213
65732
  ])).optional(),
65214
65733
  role: stringType(),
65215
65734
  instructions: stringType(),
65216
- message: lazyType(() => RunAgentMessage$outboundSchema),
65735
+ message: lazyType(() => RunAgentA2AMessage$outboundSchema),
65217
65736
  variables: recordType(anyType()).optional(),
65218
65737
  contact: lazyType(() => RunAgentContact$outboundSchema).optional(),
65219
65738
  thread: lazyType(() => RunAgentThread$outboundSchema).optional(),
@@ -65238,15 +65757,15 @@ var init_runagent = __esm(() => {
65238
65757
  });
65239
65758
  RunAgentKind$inboundSchema = nativeEnumType(RunAgentKind);
65240
65759
  RunAgentKind$outboundSchema = RunAgentKind$inboundSchema;
65241
- RunAgentState$inboundSchema = nativeEnumType(RunAgentState);
65242
- RunAgentState$outboundSchema = RunAgentState$inboundSchema;
65760
+ RunAgentTaskState$inboundSchema = nativeEnumType(RunAgentTaskState);
65761
+ RunAgentTaskState$outboundSchema = RunAgentTaskState$inboundSchema;
65243
65762
  RunAgentAgentsKind$inboundSchema = nativeEnumType(RunAgentAgentsKind);
65244
65763
  RunAgentAgentsKind$outboundSchema = RunAgentAgentsKind$inboundSchema;
65245
- RunAgentAgentsRole$inboundSchema = nativeEnumType(RunAgentAgentsRole);
65246
- RunAgentAgentsRole$outboundSchema = RunAgentAgentsRole$inboundSchema;
65764
+ RunAgentExtendedMessageRole$inboundSchema = nativeEnumType(RunAgentExtendedMessageRole);
65765
+ RunAgentExtendedMessageRole$outboundSchema = RunAgentExtendedMessageRole$inboundSchema;
65247
65766
  RunAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema = nativeEnumType(RunAgentPartsAgentsResponse200ApplicationJSONKind);
65248
65767
  RunAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema = RunAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema;
65249
- RunAgentParts5$inboundSchema = objectType({
65768
+ RunAgentPartsToolResultPart$inboundSchema = objectType({
65250
65769
  kind: RunAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema,
65251
65770
  tool_call_id: stringType(),
65252
65771
  result: anyType().optional(),
@@ -65256,7 +65775,7 @@ var init_runagent = __esm(() => {
65256
65775
  tool_call_id: "toolCallId"
65257
65776
  });
65258
65777
  });
65259
- RunAgentParts5$outboundSchema = objectType({
65778
+ RunAgentPartsToolResultPart$outboundSchema = objectType({
65260
65779
  kind: RunAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema,
65261
65780
  toolCallId: stringType(),
65262
65781
  result: anyType().optional(),
@@ -65268,7 +65787,7 @@ var init_runagent = __esm(() => {
65268
65787
  });
65269
65788
  RunAgentPartsAgentsResponse200Kind$inboundSchema = nativeEnumType(RunAgentPartsAgentsResponse200Kind);
65270
65789
  RunAgentPartsAgentsResponse200Kind$outboundSchema = RunAgentPartsAgentsResponse200Kind$inboundSchema;
65271
- RunAgentParts4$inboundSchema = objectType({
65790
+ RunAgentPartsToolCallPart$inboundSchema = objectType({
65272
65791
  kind: RunAgentPartsAgentsResponse200Kind$inboundSchema,
65273
65792
  tool_name: stringType(),
65274
65793
  tool_call_id: stringType(),
@@ -65280,7 +65799,7 @@ var init_runagent = __esm(() => {
65280
65799
  tool_call_id: "toolCallId"
65281
65800
  });
65282
65801
  });
65283
- RunAgentParts4$outboundSchema = objectType({
65802
+ RunAgentPartsToolCallPart$outboundSchema = objectType({
65284
65803
  kind: RunAgentPartsAgentsResponse200Kind$outboundSchema,
65285
65804
  toolName: stringType(),
65286
65805
  toolCallId: stringType(),
@@ -65322,7 +65841,7 @@ var init_runagent = __esm(() => {
65322
65841
  lazyType(() => RunAgentFileBinaryFormat$outboundSchema),
65323
65842
  lazyType(() => RunAgentFileFileInURIFormat$outboundSchema)
65324
65843
  ]);
65325
- RunAgentParts3$inboundSchema = objectType({
65844
+ RunAgentPartsFilePart$inboundSchema = objectType({
65326
65845
  kind: RunAgentPartsAgentsResponseKind$inboundSchema,
65327
65846
  file: unionType([
65328
65847
  lazyType(() => RunAgentFileBinaryFormat$inboundSchema),
@@ -65330,7 +65849,7 @@ var init_runagent = __esm(() => {
65330
65849
  ]),
65331
65850
  metadata: recordType(anyType()).optional()
65332
65851
  });
65333
- RunAgentParts3$outboundSchema = objectType({
65852
+ RunAgentPartsFilePart$outboundSchema = objectType({
65334
65853
  kind: RunAgentPartsAgentsResponseKind$outboundSchema,
65335
65854
  file: unionType([
65336
65855
  lazyType(() => RunAgentFileBinaryFormat$outboundSchema),
@@ -65340,86 +65859,86 @@ var init_runagent = __esm(() => {
65340
65859
  });
65341
65860
  RunAgentPartsAgentsKind$inboundSchema = nativeEnumType(RunAgentPartsAgentsKind);
65342
65861
  RunAgentPartsAgentsKind$outboundSchema = RunAgentPartsAgentsKind$inboundSchema;
65343
- RunAgentParts2$inboundSchema = objectType({
65862
+ RunAgentPartsDataPart$inboundSchema = objectType({
65344
65863
  kind: RunAgentPartsAgentsKind$inboundSchema,
65345
65864
  data: recordType(anyType()),
65346
65865
  metadata: recordType(anyType()).optional()
65347
65866
  });
65348
- RunAgentParts2$outboundSchema = objectType({
65867
+ RunAgentPartsDataPart$outboundSchema = objectType({
65349
65868
  kind: RunAgentPartsAgentsKind$outboundSchema,
65350
65869
  data: recordType(anyType()),
65351
65870
  metadata: recordType(anyType()).optional()
65352
65871
  });
65353
65872
  RunAgentPartsKind$inboundSchema = nativeEnumType(RunAgentPartsKind);
65354
65873
  RunAgentPartsKind$outboundSchema = RunAgentPartsKind$inboundSchema;
65355
- RunAgentParts1$inboundSchema = objectType({
65874
+ RunAgentPartsTextPart$inboundSchema = objectType({
65356
65875
  kind: RunAgentPartsKind$inboundSchema,
65357
65876
  text: stringType()
65358
65877
  });
65359
- RunAgentParts1$outboundSchema = objectType({
65878
+ RunAgentPartsTextPart$outboundSchema = objectType({
65360
65879
  kind: RunAgentPartsKind$outboundSchema,
65361
65880
  text: stringType()
65362
65881
  });
65363
65882
  RunAgentParts$inboundSchema = unionType([
65364
- lazyType(() => RunAgentParts4$inboundSchema),
65365
- lazyType(() => RunAgentParts1$inboundSchema),
65366
- lazyType(() => RunAgentParts2$inboundSchema),
65367
- lazyType(() => RunAgentParts3$inboundSchema),
65368
- lazyType(() => RunAgentParts5$inboundSchema)
65883
+ lazyType(() => RunAgentPartsToolCallPart$inboundSchema),
65884
+ lazyType(() => RunAgentPartsTextPart$inboundSchema),
65885
+ lazyType(() => RunAgentPartsDataPart$inboundSchema),
65886
+ lazyType(() => RunAgentPartsFilePart$inboundSchema),
65887
+ lazyType(() => RunAgentPartsToolResultPart$inboundSchema)
65369
65888
  ]);
65370
65889
  RunAgentParts$outboundSchema = unionType([
65371
- lazyType(() => RunAgentParts4$outboundSchema),
65372
- lazyType(() => RunAgentParts1$outboundSchema),
65373
- lazyType(() => RunAgentParts2$outboundSchema),
65374
- lazyType(() => RunAgentParts3$outboundSchema),
65375
- lazyType(() => RunAgentParts5$outboundSchema)
65890
+ lazyType(() => RunAgentPartsToolCallPart$outboundSchema),
65891
+ lazyType(() => RunAgentPartsTextPart$outboundSchema),
65892
+ lazyType(() => RunAgentPartsDataPart$outboundSchema),
65893
+ lazyType(() => RunAgentPartsFilePart$outboundSchema),
65894
+ lazyType(() => RunAgentPartsToolResultPart$outboundSchema)
65376
65895
  ]);
65377
- RunAgentAgentsMessage$inboundSchema = objectType({
65896
+ RunAgentTaskStatusMessage$inboundSchema = objectType({
65378
65897
  kind: RunAgentAgentsKind$inboundSchema,
65379
65898
  messageId: stringType(),
65380
- role: RunAgentAgentsRole$inboundSchema,
65899
+ role: RunAgentExtendedMessageRole$inboundSchema,
65381
65900
  parts: arrayType(unionType([
65382
- lazyType(() => RunAgentParts4$inboundSchema),
65383
- lazyType(() => RunAgentParts1$inboundSchema),
65384
- lazyType(() => RunAgentParts2$inboundSchema),
65385
- lazyType(() => RunAgentParts3$inboundSchema),
65386
- lazyType(() => RunAgentParts5$inboundSchema)
65901
+ lazyType(() => RunAgentPartsToolCallPart$inboundSchema),
65902
+ lazyType(() => RunAgentPartsTextPart$inboundSchema),
65903
+ lazyType(() => RunAgentPartsDataPart$inboundSchema),
65904
+ lazyType(() => RunAgentPartsFilePart$inboundSchema),
65905
+ lazyType(() => RunAgentPartsToolResultPart$inboundSchema)
65387
65906
  ]))
65388
65907
  });
65389
- RunAgentAgentsMessage$outboundSchema = objectType({
65908
+ RunAgentTaskStatusMessage$outboundSchema = objectType({
65390
65909
  kind: RunAgentAgentsKind$outboundSchema,
65391
65910
  messageId: stringType(),
65392
- role: RunAgentAgentsRole$outboundSchema,
65911
+ role: RunAgentExtendedMessageRole$outboundSchema,
65393
65912
  parts: arrayType(unionType([
65394
- lazyType(() => RunAgentParts4$outboundSchema),
65395
- lazyType(() => RunAgentParts1$outboundSchema),
65396
- lazyType(() => RunAgentParts2$outboundSchema),
65397
- lazyType(() => RunAgentParts3$outboundSchema),
65398
- lazyType(() => RunAgentParts5$outboundSchema)
65913
+ lazyType(() => RunAgentPartsToolCallPart$outboundSchema),
65914
+ lazyType(() => RunAgentPartsTextPart$outboundSchema),
65915
+ lazyType(() => RunAgentPartsDataPart$outboundSchema),
65916
+ lazyType(() => RunAgentPartsFilePart$outboundSchema),
65917
+ lazyType(() => RunAgentPartsToolResultPart$outboundSchema)
65399
65918
  ]))
65400
65919
  });
65401
- RunAgentStatus$inboundSchema = objectType({
65402
- state: RunAgentState$inboundSchema,
65920
+ RunAgentTaskStatus$inboundSchema = objectType({
65921
+ state: RunAgentTaskState$inboundSchema,
65403
65922
  timestamp: stringType().optional(),
65404
- message: lazyType(() => RunAgentAgentsMessage$inboundSchema).optional()
65923
+ message: lazyType(() => RunAgentTaskStatusMessage$inboundSchema).optional()
65405
65924
  });
65406
- RunAgentStatus$outboundSchema = objectType({
65407
- state: RunAgentState$outboundSchema,
65925
+ RunAgentTaskStatus$outboundSchema = objectType({
65926
+ state: RunAgentTaskState$outboundSchema,
65408
65927
  timestamp: stringType().optional(),
65409
- message: lazyType(() => RunAgentAgentsMessage$outboundSchema).optional()
65928
+ message: lazyType(() => RunAgentTaskStatusMessage$outboundSchema).optional()
65410
65929
  });
65411
- RunAgentResponseBody$inboundSchema = objectType({
65930
+ RunAgentA2ATaskResponse$inboundSchema = objectType({
65412
65931
  id: stringType(),
65413
65932
  contextId: stringType(),
65414
65933
  kind: RunAgentKind$inboundSchema,
65415
- status: lazyType(() => RunAgentStatus$inboundSchema),
65934
+ status: lazyType(() => RunAgentTaskStatus$inboundSchema),
65416
65935
  metadata: recordType(anyType()).optional()
65417
65936
  });
65418
- RunAgentResponseBody$outboundSchema = objectType({
65937
+ RunAgentA2ATaskResponse$outboundSchema = objectType({
65419
65938
  id: stringType(),
65420
65939
  contextId: stringType(),
65421
65940
  kind: RunAgentKind$outboundSchema,
65422
- status: lazyType(() => RunAgentStatus$outboundSchema),
65941
+ status: lazyType(() => RunAgentTaskStatus$outboundSchema),
65423
65942
  metadata: recordType(anyType()).optional()
65424
65943
  });
65425
65944
  });
@@ -65941,7 +66460,7 @@ var init_searchknowledge = __esm(() => {
65941
66460
  });
65942
66461
 
65943
66462
  // src/models/operations/streamagent.ts
65944
- var StreamAgentRoleToolMessage, StreamAgentRoleUserMessage, StreamAgentPublicMessagePartAgentsRequestKind, StreamAgentPublicMessagePartAgentsKind, StreamAgentPublicMessagePartKind, StreamAgentRoleToolMessage$inboundSchema, StreamAgentRoleToolMessage$outboundSchema, StreamAgentRoleUserMessage$inboundSchema, StreamAgentRoleUserMessage$outboundSchema, StreamAgentRole$inboundSchema, StreamAgentRole$outboundSchema, StreamAgentPublicMessagePartAgentsRequestKind$inboundSchema, StreamAgentPublicMessagePartAgentsRequestKind$outboundSchema, StreamAgentPublicMessagePartToolResultPart$inboundSchema, StreamAgentPublicMessagePartToolResultPart$outboundSchema, StreamAgentPublicMessagePartAgentsKind$inboundSchema, StreamAgentPublicMessagePartAgentsKind$outboundSchema, StreamAgentFileFileInURIFormat$inboundSchema, StreamAgentFileFileInURIFormat$outboundSchema, StreamAgentFileBinaryFormat$inboundSchema, StreamAgentFileBinaryFormat$outboundSchema, StreamAgentPublicMessagePartFile$inboundSchema, StreamAgentPublicMessagePartFile$outboundSchema, StreamAgentPublicMessagePartFilePart$inboundSchema, StreamAgentPublicMessagePartFilePart$outboundSchema, StreamAgentPublicMessagePartKind$inboundSchema, StreamAgentPublicMessagePartKind$outboundSchema, StreamAgentPublicMessagePartTextPart$inboundSchema, StreamAgentPublicMessagePartTextPart$outboundSchema, StreamAgentPublicMessagePart$inboundSchema, StreamAgentPublicMessagePart$outboundSchema, StreamAgentMessage$inboundSchema, StreamAgentMessage$outboundSchema, StreamAgentContact$inboundSchema, StreamAgentContact$outboundSchema, StreamAgentThread$inboundSchema, StreamAgentThread$outboundSchema, StreamAgentMemory$inboundSchema, StreamAgentMemory$outboundSchema, StreamAgentRequestBody$inboundSchema, StreamAgentRequestBody$outboundSchema, StreamAgentRequest$inboundSchema, StreamAgentRequest$outboundSchema, StreamAgentResponseBody$inboundSchema2, StreamAgentResponseBody$outboundSchema2;
66463
+ var StreamAgentRoleToolMessage, StreamAgentRoleUserMessage, StreamAgentPublicMessagePartAgentsRequestKind, StreamAgentPublicMessagePartAgentsKind, StreamAgentPublicMessagePartKind, StreamAgentRoleToolMessage$inboundSchema, StreamAgentRoleToolMessage$outboundSchema, StreamAgentRoleUserMessage$inboundSchema, StreamAgentRoleUserMessage$outboundSchema, StreamAgentRole$inboundSchema, StreamAgentRole$outboundSchema, StreamAgentPublicMessagePartAgentsRequestKind$inboundSchema, StreamAgentPublicMessagePartAgentsRequestKind$outboundSchema, StreamAgentPublicMessagePartToolResultPart$inboundSchema, StreamAgentPublicMessagePartToolResultPart$outboundSchema, StreamAgentPublicMessagePartAgentsKind$inboundSchema, StreamAgentPublicMessagePartAgentsKind$outboundSchema, StreamAgentFileFileInURIFormat$inboundSchema, StreamAgentFileFileInURIFormat$outboundSchema, StreamAgentFileBinaryFormat$inboundSchema, StreamAgentFileBinaryFormat$outboundSchema, StreamAgentPublicMessagePartFile$inboundSchema, StreamAgentPublicMessagePartFile$outboundSchema, StreamAgentPublicMessagePartFilePart$inboundSchema, StreamAgentPublicMessagePartFilePart$outboundSchema, StreamAgentPublicMessagePartKind$inboundSchema, StreamAgentPublicMessagePartKind$outboundSchema, StreamAgentPublicMessagePartTextPart$inboundSchema, StreamAgentPublicMessagePartTextPart$outboundSchema, StreamAgentPublicMessagePart$inboundSchema, StreamAgentPublicMessagePart$outboundSchema, StreamAgentA2AMessage$inboundSchema, StreamAgentA2AMessage$outboundSchema, StreamAgentContact$inboundSchema, StreamAgentContact$outboundSchema, StreamAgentThread$inboundSchema, StreamAgentThread$outboundSchema, StreamAgentMemory$inboundSchema, StreamAgentMemory$outboundSchema, StreamAgentRequestBody$inboundSchema, StreamAgentRequestBody$outboundSchema, StreamAgentRequest$inboundSchema, StreamAgentRequest$outboundSchema, StreamAgentResponseBody$inboundSchema2, StreamAgentResponseBody$outboundSchema2;
65945
66464
  var init_streamagent2 = __esm(() => {
65946
66465
  init_esm();
65947
66466
  init_primitives();
@@ -66060,7 +66579,7 @@ var init_streamagent2 = __esm(() => {
66060
66579
  lazyType(() => StreamAgentPublicMessagePartFilePart$outboundSchema),
66061
66580
  lazyType(() => StreamAgentPublicMessagePartToolResultPart$outboundSchema)
66062
66581
  ]);
66063
- StreamAgentMessage$inboundSchema = objectType({
66582
+ StreamAgentA2AMessage$inboundSchema = objectType({
66064
66583
  messageId: stringType().optional(),
66065
66584
  role: unionType([
66066
66585
  StreamAgentRoleUserMessage$inboundSchema,
@@ -66072,7 +66591,7 @@ var init_streamagent2 = __esm(() => {
66072
66591
  lazyType(() => StreamAgentPublicMessagePartToolResultPart$inboundSchema)
66073
66592
  ]))
66074
66593
  });
66075
- StreamAgentMessage$outboundSchema = objectType({
66594
+ StreamAgentA2AMessage$outboundSchema = objectType({
66076
66595
  messageId: stringType().optional(),
66077
66596
  role: unionType([
66078
66597
  StreamAgentRoleUserMessage$outboundSchema,
@@ -66134,7 +66653,7 @@ var init_streamagent2 = __esm(() => {
66134
66653
  });
66135
66654
  StreamAgentRequestBody$inboundSchema = objectType({
66136
66655
  task_id: stringType().optional(),
66137
- message: lazyType(() => StreamAgentMessage$inboundSchema),
66656
+ message: lazyType(() => StreamAgentA2AMessage$inboundSchema),
66138
66657
  variables: recordType(anyType()).optional(),
66139
66658
  contact: lazyType(() => StreamAgentContact$inboundSchema).optional(),
66140
66659
  thread: lazyType(() => StreamAgentThread$inboundSchema).optional(),
@@ -66149,7 +66668,7 @@ var init_streamagent2 = __esm(() => {
66149
66668
  });
66150
66669
  StreamAgentRequestBody$outboundSchema = objectType({
66151
66670
  taskId: stringType().optional(),
66152
- message: lazyType(() => StreamAgentMessage$outboundSchema),
66671
+ message: lazyType(() => StreamAgentA2AMessage$outboundSchema),
66153
66672
  variables: recordType(anyType()).optional(),
66154
66673
  contact: lazyType(() => StreamAgentContact$outboundSchema).optional(),
66155
66674
  thread: lazyType(() => StreamAgentThread$outboundSchema).optional(),
@@ -66187,7 +66706,7 @@ var init_streamagent2 = __esm(() => {
66187
66706
  });
66188
66707
 
66189
66708
  // src/models/operations/streamrunagent.ts
66190
- var StreamRunAgentModelConfigurationVoice, StreamRunAgentModelConfigurationFormat, StreamRunAgentResponseFormatAgentsRequestType, StreamRunAgentResponseFormatAgentsType, StreamRunAgentResponseFormatType, StreamRunAgentModelConfigurationType, StreamRunAgentModelConfigurationThinkingLevel, StreamRunAgentToolChoiceType, StreamRunAgentToolChoice1, StreamRunAgentModelConfigurationModalities, StreamRunAgentFallbackModelConfigurationVoice, StreamRunAgentFallbackModelConfigurationFormat, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, StreamRunAgentResponseFormatAgentsRequestRequestBodyType, StreamRunAgentFallbackModelConfigurationType, StreamRunAgentFallbackModelConfigurationThinkingLevel, StreamRunAgentToolChoiceAgentsType, StreamRunAgentToolChoiceAgents1, StreamRunAgentFallbackModelConfigurationModalities, StreamRunAgentRoleToolMessage, StreamRunAgentRoleUserMessage, StreamRunAgentPublicMessagePartAgentsRequestKind, StreamRunAgentPublicMessagePartAgentsKind, StreamRunAgentPublicMessagePartKind, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType, AgentToolInputRunConnectionType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType, AgentToolInputRunLanguage, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type, AgentToolInputRunMethod, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType, StreamRunAgentAgentToolInputRunAgentsRequestType, StreamRunAgentAgentToolInputRunAgentsType, StreamRunAgentAgentToolInputRunType, StreamRunAgentToolApprovalRequired, StreamRunAgentExecuteOn, StreamRunAgentAgentsExecuteOn, StreamRunAgentModelConfigurationVoice$inboundSchema, StreamRunAgentModelConfigurationVoice$outboundSchema, StreamRunAgentModelConfigurationFormat$inboundSchema, StreamRunAgentModelConfigurationFormat$outboundSchema, StreamRunAgentModelConfigurationAudio$inboundSchema, StreamRunAgentModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsRequestType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestType$outboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$outboundSchema, StreamRunAgentResponseFormatJSONSchema$inboundSchema, StreamRunAgentResponseFormatJSONSchema$outboundSchema, StreamRunAgentResponseFormatAgentsType$inboundSchema, StreamRunAgentResponseFormatAgentsType$outboundSchema, StreamRunAgentResponseFormatJSONObject$inboundSchema, StreamRunAgentResponseFormatJSONObject$outboundSchema, StreamRunAgentResponseFormatType$inboundSchema, StreamRunAgentResponseFormatType$outboundSchema, StreamRunAgentResponseFormatText$inboundSchema, StreamRunAgentResponseFormatText$outboundSchema, StreamRunAgentModelConfigurationResponseFormat$inboundSchema, StreamRunAgentModelConfigurationResponseFormat$outboundSchema, StreamRunAgentModelConfigurationStop$inboundSchema, StreamRunAgentModelConfigurationStop$outboundSchema, StreamRunAgentModelConfigurationStreamOptions$inboundSchema, StreamRunAgentModelConfigurationStreamOptions$outboundSchema, StreamRunAgentModelConfigurationType$inboundSchema, StreamRunAgentModelConfigurationType$outboundSchema, StreamRunAgentModelConfigurationThinkingLevel$inboundSchema, StreamRunAgentModelConfigurationThinkingLevel$outboundSchema, StreamRunAgentModelConfigurationThinking$inboundSchema, StreamRunAgentModelConfigurationThinking$outboundSchema, StreamRunAgentToolChoiceType$inboundSchema, StreamRunAgentToolChoiceType$outboundSchema, StreamRunAgentToolChoiceFunction$inboundSchema, StreamRunAgentToolChoiceFunction$outboundSchema, StreamRunAgentToolChoice2$inboundSchema, StreamRunAgentToolChoice2$outboundSchema, StreamRunAgentToolChoice1$inboundSchema, StreamRunAgentToolChoice1$outboundSchema, StreamRunAgentModelConfigurationToolChoice$inboundSchema, StreamRunAgentModelConfigurationToolChoice$outboundSchema, StreamRunAgentModelConfigurationModalities$inboundSchema, StreamRunAgentModelConfigurationModalities$outboundSchema, StreamRunAgentModelConfigurationParameters$inboundSchema, StreamRunAgentModelConfigurationParameters$outboundSchema, StreamRunAgentModelConfigurationRetry$inboundSchema, StreamRunAgentModelConfigurationRetry$outboundSchema, StreamRunAgentModelConfiguration2$inboundSchema, StreamRunAgentModelConfiguration2$outboundSchema, StreamRunAgentModelConfiguration$inboundSchema, StreamRunAgentModelConfiguration$outboundSchema, StreamRunAgentFallbackModelConfigurationVoice$inboundSchema, StreamRunAgentFallbackModelConfigurationVoice$outboundSchema, StreamRunAgentFallbackModelConfigurationFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationAudio$inboundSchema, StreamRunAgentFallbackModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$inboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, StreamRunAgentResponseFormatAgentsText$inboundSchema, StreamRunAgentResponseFormatAgentsText$outboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationStop$inboundSchema, StreamRunAgentFallbackModelConfigurationStop$outboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$inboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$outboundSchema, StreamRunAgentFallbackModelConfigurationType$inboundSchema, StreamRunAgentFallbackModelConfigurationType$outboundSchema, StreamRunAgentFallbackModelConfigurationThinkingLevel$inboundSchema, StreamRunAgentFallbackModelConfigurationThinkingLevel$outboundSchema, StreamRunAgentFallbackModelConfigurationThinking$inboundSchema, StreamRunAgentFallbackModelConfigurationThinking$outboundSchema, StreamRunAgentToolChoiceAgentsType$inboundSchema, StreamRunAgentToolChoiceAgentsType$outboundSchema, StreamRunAgentToolChoiceAgentsFunction$inboundSchema, StreamRunAgentToolChoiceAgentsFunction$outboundSchema, StreamRunAgentToolChoiceAgents2$inboundSchema, StreamRunAgentToolChoiceAgents2$outboundSchema, StreamRunAgentToolChoiceAgents1$inboundSchema, StreamRunAgentToolChoiceAgents1$outboundSchema, StreamRunAgentFallbackModelConfigurationToolChoice$inboundSchema, StreamRunAgentFallbackModelConfigurationToolChoice$outboundSchema, StreamRunAgentFallbackModelConfigurationModalities$inboundSchema, StreamRunAgentFallbackModelConfigurationModalities$outboundSchema, StreamRunAgentFallbackModelConfigurationParameters$inboundSchema, StreamRunAgentFallbackModelConfigurationParameters$outboundSchema, StreamRunAgentFallbackModelConfiguration2$inboundSchema, StreamRunAgentFallbackModelConfiguration2$outboundSchema, StreamRunAgentFallbackModelConfiguration$inboundSchema, StreamRunAgentFallbackModelConfiguration$outboundSchema, StreamRunAgentRoleToolMessage$inboundSchema, StreamRunAgentRoleToolMessage$outboundSchema, StreamRunAgentRoleUserMessage$inboundSchema, StreamRunAgentRoleUserMessage$outboundSchema, StreamRunAgentRole$inboundSchema, StreamRunAgentRole$outboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$outboundSchema, StreamRunAgentPublicMessagePartToolResultPart$inboundSchema, StreamRunAgentPublicMessagePartToolResultPart$outboundSchema, StreamRunAgentPublicMessagePartAgentsKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsKind$outboundSchema, StreamRunAgentFileFileInURIFormat$inboundSchema, StreamRunAgentFileFileInURIFormat$outboundSchema, StreamRunAgentFileBinaryFormat$inboundSchema, StreamRunAgentFileBinaryFormat$outboundSchema, StreamRunAgentPublicMessagePartFile$inboundSchema, StreamRunAgentPublicMessagePartFile$outboundSchema, StreamRunAgentPublicMessagePartFilePart$inboundSchema, StreamRunAgentPublicMessagePartFilePart$outboundSchema, StreamRunAgentPublicMessagePartKind$inboundSchema, StreamRunAgentPublicMessagePartKind$outboundSchema, StreamRunAgentPublicMessagePartTextPart$inboundSchema, StreamRunAgentPublicMessagePartTextPart$outboundSchema, StreamRunAgentPublicMessagePart$inboundSchema, StreamRunAgentPublicMessagePart$outboundSchema, StreamRunAgentMessage$inboundSchema, StreamRunAgentMessage$outboundSchema, StreamRunAgentContact$inboundSchema, StreamRunAgentContact$outboundSchema, StreamRunAgentThread$inboundSchema, StreamRunAgentThread$outboundSchema, StreamRunAgentMemory$inboundSchema, StreamRunAgentMemory$outboundSchema, StreamRunAgentKnowledgeBases$inboundSchema, StreamRunAgentKnowledgeBases$outboundSchema, StreamRunAgentTeamOfAgents$inboundSchema, StreamRunAgentTeamOfAgents$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type$outboundSchema, StreamRunAgentAgentToolInputRunAgentsHeaders$inboundSchema, StreamRunAgentAgentToolInputRunAgentsHeaders$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$outboundSchema, AgentToolInputRunSchema$inboundSchema, AgentToolInputRunSchema$outboundSchema, AgentToolInputRunTools$inboundSchema, AgentToolInputRunTools$outboundSchema, AgentToolInputRunConnectionType$inboundSchema, AgentToolInputRunConnectionType$outboundSchema, AgentToolInputRunMcp$inboundSchema, AgentToolInputRunMcp$outboundSchema, AgentToolInputRunMCPToolRun$inboundSchema, AgentToolInputRunMCPToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$outboundSchema, StreamRunAgentAgentToolInputRunAgentsParameters$inboundSchema, StreamRunAgentAgentToolInputRunAgentsParameters$outboundSchema, StreamRunAgentAgentToolInputRunFunction$inboundSchema, StreamRunAgentAgentToolInputRunFunction$outboundSchema, AgentToolInputRunFunctionToolRun$inboundSchema, AgentToolInputRunFunctionToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$outboundSchema, StreamRunAgentAgentToolInputRunParameters$inboundSchema, StreamRunAgentAgentToolInputRunParameters$outboundSchema, AgentToolInputRunLanguage$inboundSchema, AgentToolInputRunLanguage$outboundSchema, AgentToolInputRunCodeTool$inboundSchema, AgentToolInputRunCodeTool$outboundSchema, AgentToolInputRunCodeToolRun$inboundSchema, AgentToolInputRunCodeToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$outboundSchema, AgentToolInputRunMethod$inboundSchema, AgentToolInputRunMethod$outboundSchema, StreamRunAgentHeaders2$inboundSchema, StreamRunAgentHeaders2$outboundSchema, StreamRunAgentAgentToolInputRunHeaders$inboundSchema, StreamRunAgentAgentToolInputRunHeaders$outboundSchema, AgentToolInputRunBlueprint$inboundSchema, AgentToolInputRunBlueprint$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$outboundSchema, AgentToolInputRunDefaultValue$inboundSchema, AgentToolInputRunDefaultValue$outboundSchema, AgentToolInputRunArguments$inboundSchema, AgentToolInputRunArguments$outboundSchema, AgentToolInputRunHttp$inboundSchema, AgentToolInputRunHttp$outboundSchema, AgentToolInputRunHTTPToolRun$inboundSchema, AgentToolInputRunHTTPToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestType$outboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsType$outboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$outboundSchema, StreamRunAgentAgentToolInputRunType$inboundSchema, StreamRunAgentAgentToolInputRunType$outboundSchema, StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema, StreamRunAgentAgentToolInputRunGoogleSearchTool$outboundSchema, StreamRunAgentAgentToolInputRun$inboundSchema, StreamRunAgentAgentToolInputRun$outboundSchema, StreamRunAgentToolApprovalRequired$inboundSchema, StreamRunAgentToolApprovalRequired$outboundSchema, StreamRunAgentExecuteOn$inboundSchema, StreamRunAgentExecuteOn$outboundSchema, StreamRunAgentEvaluators$inboundSchema, StreamRunAgentEvaluators$outboundSchema, StreamRunAgentAgentsExecuteOn$inboundSchema, StreamRunAgentAgentsExecuteOn$outboundSchema, StreamRunAgentGuardrails$inboundSchema, StreamRunAgentGuardrails$outboundSchema, StreamRunAgentSettings$inboundSchema, StreamRunAgentSettings$outboundSchema, StreamRunAgentRequestBody$inboundSchema, StreamRunAgentRequestBody$outboundSchema, StreamRunAgentResponseBody$inboundSchema2, StreamRunAgentResponseBody$outboundSchema2;
66709
+ var StreamRunAgentModelConfigurationVoice, StreamRunAgentModelConfigurationFormat, StreamRunAgentResponseFormatAgentsRequestType, StreamRunAgentResponseFormatAgentsType, StreamRunAgentResponseFormatType, StreamRunAgentModelConfigurationType, StreamRunAgentModelConfigurationThinkingLevel, StreamRunAgentToolChoiceType, StreamRunAgentToolChoice1, StreamRunAgentModelConfigurationModalities, StreamRunAgentFallbackModelConfigurationVoice, StreamRunAgentFallbackModelConfigurationFormat, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, StreamRunAgentResponseFormatAgentsRequestRequestBodyType, StreamRunAgentFallbackModelConfigurationType, StreamRunAgentFallbackModelConfigurationThinkingLevel, StreamRunAgentToolChoiceAgentsType, StreamRunAgentToolChoiceAgents1, StreamRunAgentFallbackModelConfigurationModalities, StreamRunAgentRoleToolMessage, StreamRunAgentRoleUserMessage, StreamRunAgentPublicMessagePartAgentsRequestKind, StreamRunAgentPublicMessagePartAgentsKind, StreamRunAgentPublicMessagePartKind, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType, AgentToolInputRunConnectionType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType, AgentToolInputRunLanguage, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type, AgentToolInputRunMethod, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType, StreamRunAgentAgentToolInputRunAgentsRequestType, StreamRunAgentAgentToolInputRunAgentsType, StreamRunAgentAgentToolInputRunType, StreamRunAgentToolApprovalRequired, StreamRunAgentExecuteOn, StreamRunAgentAgentsExecuteOn, StreamRunAgentModelConfigurationVoice$inboundSchema, StreamRunAgentModelConfigurationVoice$outboundSchema, StreamRunAgentModelConfigurationFormat$inboundSchema, StreamRunAgentModelConfigurationFormat$outboundSchema, StreamRunAgentModelConfigurationAudio$inboundSchema, StreamRunAgentModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsRequestType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestType$outboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$outboundSchema, StreamRunAgentResponseFormatJSONSchema$inboundSchema, StreamRunAgentResponseFormatJSONSchema$outboundSchema, StreamRunAgentResponseFormatAgentsType$inboundSchema, StreamRunAgentResponseFormatAgentsType$outboundSchema, StreamRunAgentResponseFormatJSONObject$inboundSchema, StreamRunAgentResponseFormatJSONObject$outboundSchema, StreamRunAgentResponseFormatType$inboundSchema, StreamRunAgentResponseFormatType$outboundSchema, StreamRunAgentResponseFormatText$inboundSchema, StreamRunAgentResponseFormatText$outboundSchema, StreamRunAgentModelConfigurationResponseFormat$inboundSchema, StreamRunAgentModelConfigurationResponseFormat$outboundSchema, StreamRunAgentModelConfigurationStop$inboundSchema, StreamRunAgentModelConfigurationStop$outboundSchema, StreamRunAgentModelConfigurationStreamOptions$inboundSchema, StreamRunAgentModelConfigurationStreamOptions$outboundSchema, StreamRunAgentModelConfigurationType$inboundSchema, StreamRunAgentModelConfigurationType$outboundSchema, StreamRunAgentModelConfigurationThinkingLevel$inboundSchema, StreamRunAgentModelConfigurationThinkingLevel$outboundSchema, StreamRunAgentModelConfigurationThinking$inboundSchema, StreamRunAgentModelConfigurationThinking$outboundSchema, StreamRunAgentToolChoiceType$inboundSchema, StreamRunAgentToolChoiceType$outboundSchema, StreamRunAgentToolChoiceFunction$inboundSchema, StreamRunAgentToolChoiceFunction$outboundSchema, StreamRunAgentToolChoice2$inboundSchema, StreamRunAgentToolChoice2$outboundSchema, StreamRunAgentToolChoice1$inboundSchema, StreamRunAgentToolChoice1$outboundSchema, StreamRunAgentModelConfigurationToolChoice$inboundSchema, StreamRunAgentModelConfigurationToolChoice$outboundSchema, StreamRunAgentModelConfigurationModalities$inboundSchema, StreamRunAgentModelConfigurationModalities$outboundSchema, StreamRunAgentModelConfigurationParameters$inboundSchema, StreamRunAgentModelConfigurationParameters$outboundSchema, StreamRunAgentModelConfigurationRetry$inboundSchema, StreamRunAgentModelConfigurationRetry$outboundSchema, StreamRunAgentModelConfiguration2$inboundSchema, StreamRunAgentModelConfiguration2$outboundSchema, StreamRunAgentModelConfiguration$inboundSchema, StreamRunAgentModelConfiguration$outboundSchema, StreamRunAgentFallbackModelConfigurationVoice$inboundSchema, StreamRunAgentFallbackModelConfigurationVoice$outboundSchema, StreamRunAgentFallbackModelConfigurationFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationAudio$inboundSchema, StreamRunAgentFallbackModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$inboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, StreamRunAgentResponseFormatAgentsText$inboundSchema, StreamRunAgentResponseFormatAgentsText$outboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationStop$inboundSchema, StreamRunAgentFallbackModelConfigurationStop$outboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$inboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$outboundSchema, StreamRunAgentFallbackModelConfigurationType$inboundSchema, StreamRunAgentFallbackModelConfigurationType$outboundSchema, StreamRunAgentFallbackModelConfigurationThinkingLevel$inboundSchema, StreamRunAgentFallbackModelConfigurationThinkingLevel$outboundSchema, StreamRunAgentFallbackModelConfigurationThinking$inboundSchema, StreamRunAgentFallbackModelConfigurationThinking$outboundSchema, StreamRunAgentToolChoiceAgentsType$inboundSchema, StreamRunAgentToolChoiceAgentsType$outboundSchema, StreamRunAgentToolChoiceAgentsFunction$inboundSchema, StreamRunAgentToolChoiceAgentsFunction$outboundSchema, StreamRunAgentToolChoiceAgents2$inboundSchema, StreamRunAgentToolChoiceAgents2$outboundSchema, StreamRunAgentToolChoiceAgents1$inboundSchema, StreamRunAgentToolChoiceAgents1$outboundSchema, StreamRunAgentFallbackModelConfigurationToolChoice$inboundSchema, StreamRunAgentFallbackModelConfigurationToolChoice$outboundSchema, StreamRunAgentFallbackModelConfigurationModalities$inboundSchema, StreamRunAgentFallbackModelConfigurationModalities$outboundSchema, StreamRunAgentFallbackModelConfigurationParameters$inboundSchema, StreamRunAgentFallbackModelConfigurationParameters$outboundSchema, StreamRunAgentFallbackModelConfiguration2$inboundSchema, StreamRunAgentFallbackModelConfiguration2$outboundSchema, StreamRunAgentFallbackModelConfiguration$inboundSchema, StreamRunAgentFallbackModelConfiguration$outboundSchema, StreamRunAgentRoleToolMessage$inboundSchema, StreamRunAgentRoleToolMessage$outboundSchema, StreamRunAgentRoleUserMessage$inboundSchema, StreamRunAgentRoleUserMessage$outboundSchema, StreamRunAgentRole$inboundSchema, StreamRunAgentRole$outboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$outboundSchema, StreamRunAgentPublicMessagePartToolResultPart$inboundSchema, StreamRunAgentPublicMessagePartToolResultPart$outboundSchema, StreamRunAgentPublicMessagePartAgentsKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsKind$outboundSchema, StreamRunAgentFileFileInURIFormat$inboundSchema, StreamRunAgentFileFileInURIFormat$outboundSchema, StreamRunAgentFileBinaryFormat$inboundSchema, StreamRunAgentFileBinaryFormat$outboundSchema, StreamRunAgentPublicMessagePartFile$inboundSchema, StreamRunAgentPublicMessagePartFile$outboundSchema, StreamRunAgentPublicMessagePartFilePart$inboundSchema, StreamRunAgentPublicMessagePartFilePart$outboundSchema, StreamRunAgentPublicMessagePartKind$inboundSchema, StreamRunAgentPublicMessagePartKind$outboundSchema, StreamRunAgentPublicMessagePartTextPart$inboundSchema, StreamRunAgentPublicMessagePartTextPart$outboundSchema, StreamRunAgentPublicMessagePart$inboundSchema, StreamRunAgentPublicMessagePart$outboundSchema, StreamRunAgentA2AMessage$inboundSchema, StreamRunAgentA2AMessage$outboundSchema, StreamRunAgentContact$inboundSchema, StreamRunAgentContact$outboundSchema, StreamRunAgentThread$inboundSchema, StreamRunAgentThread$outboundSchema, StreamRunAgentMemory$inboundSchema, StreamRunAgentMemory$outboundSchema, StreamRunAgentKnowledgeBases$inboundSchema, StreamRunAgentKnowledgeBases$outboundSchema, StreamRunAgentTeamOfAgents$inboundSchema, StreamRunAgentTeamOfAgents$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15Type$outboundSchema, StreamRunAgentAgentToolInputRunAgentsHeaders$inboundSchema, StreamRunAgentAgentToolInputRunAgentsHeaders$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$outboundSchema, AgentToolInputRunSchema$inboundSchema, AgentToolInputRunSchema$outboundSchema, AgentToolInputRunTools$inboundSchema, AgentToolInputRunTools$outboundSchema, AgentToolInputRunConnectionType$inboundSchema, AgentToolInputRunConnectionType$outboundSchema, AgentToolInputRunMcp$inboundSchema, AgentToolInputRunMcp$outboundSchema, AgentToolInputRunMCPToolRun$inboundSchema, AgentToolInputRunMCPToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$outboundSchema, StreamRunAgentAgentToolInputRunAgentsParameters$inboundSchema, StreamRunAgentAgentToolInputRunAgentsParameters$outboundSchema, StreamRunAgentAgentToolInputRunFunction$inboundSchema, StreamRunAgentAgentToolInputRunFunction$outboundSchema, AgentToolInputRunFunctionToolRun$inboundSchema, AgentToolInputRunFunctionToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$outboundSchema, StreamRunAgentAgentToolInputRunParameters$inboundSchema, StreamRunAgentAgentToolInputRunParameters$outboundSchema, AgentToolInputRunLanguage$inboundSchema, AgentToolInputRunLanguage$outboundSchema, AgentToolInputRunCodeTool$inboundSchema, AgentToolInputRunCodeTool$outboundSchema, AgentToolInputRunCodeToolRun$inboundSchema, AgentToolInputRunCodeToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$outboundSchema, AgentToolInputRunMethod$inboundSchema, AgentToolInputRunMethod$outboundSchema, StreamRunAgentHeaders2$inboundSchema, StreamRunAgentHeaders2$outboundSchema, StreamRunAgentAgentToolInputRunHeaders$inboundSchema, StreamRunAgentAgentToolInputRunHeaders$outboundSchema, AgentToolInputRunBlueprint$inboundSchema, AgentToolInputRunBlueprint$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$outboundSchema, AgentToolInputRunDefaultValue$inboundSchema, AgentToolInputRunDefaultValue$outboundSchema, AgentToolInputRunArguments$inboundSchema, AgentToolInputRunArguments$outboundSchema, AgentToolInputRunHttp$inboundSchema, AgentToolInputRunHttp$outboundSchema, AgentToolInputRunHTTPToolRun$inboundSchema, AgentToolInputRunHTTPToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestType$outboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsType$outboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$outboundSchema, StreamRunAgentAgentToolInputRunType$inboundSchema, StreamRunAgentAgentToolInputRunType$outboundSchema, StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema, StreamRunAgentAgentToolInputRunGoogleSearchTool$outboundSchema, StreamRunAgentAgentToolInputRun$inboundSchema, StreamRunAgentAgentToolInputRun$outboundSchema, StreamRunAgentToolApprovalRequired$inboundSchema, StreamRunAgentToolApprovalRequired$outboundSchema, StreamRunAgentExecuteOn$inboundSchema, StreamRunAgentExecuteOn$outboundSchema, StreamRunAgentEvaluators$inboundSchema, StreamRunAgentEvaluators$outboundSchema, StreamRunAgentAgentsExecuteOn$inboundSchema, StreamRunAgentAgentsExecuteOn$outboundSchema, StreamRunAgentGuardrails$inboundSchema, StreamRunAgentGuardrails$outboundSchema, StreamRunAgentSettings$inboundSchema, StreamRunAgentSettings$outboundSchema, StreamRunAgentRequestBody$inboundSchema, StreamRunAgentRequestBody$outboundSchema, StreamRunAgentResponseBody$inboundSchema2, StreamRunAgentResponseBody$outboundSchema2;
66191
66710
  var init_streamrunagent2 = __esm(() => {
66192
66711
  init_esm();
66193
66712
  init_primitives();
@@ -66982,7 +67501,7 @@ var init_streamrunagent2 = __esm(() => {
66982
67501
  lazyType(() => StreamRunAgentPublicMessagePartFilePart$outboundSchema),
66983
67502
  lazyType(() => StreamRunAgentPublicMessagePartToolResultPart$outboundSchema)
66984
67503
  ]);
66985
- StreamRunAgentMessage$inboundSchema = objectType({
67504
+ StreamRunAgentA2AMessage$inboundSchema = objectType({
66986
67505
  messageId: stringType().optional(),
66987
67506
  role: unionType([
66988
67507
  StreamRunAgentRoleUserMessage$inboundSchema,
@@ -66994,7 +67513,7 @@ var init_streamrunagent2 = __esm(() => {
66994
67513
  lazyType(() => StreamRunAgentPublicMessagePartToolResultPart$inboundSchema)
66995
67514
  ]))
66996
67515
  });
66997
- StreamRunAgentMessage$outboundSchema = objectType({
67516
+ StreamRunAgentA2AMessage$outboundSchema = objectType({
66998
67517
  messageId: stringType().optional(),
66999
67518
  role: unionType([
67000
67519
  StreamRunAgentRoleUserMessage$outboundSchema,
@@ -67099,13 +67618,13 @@ var init_streamrunagent2 = __esm(() => {
67099
67618
  required: arrayType(stringType()).optional()
67100
67619
  });
67101
67620
  AgentToolInputRunTools$inboundSchema = objectType({
67102
- id: stringType().default("01KADY1CTE6KJ8WM96HN1Z09Z6"),
67621
+ id: stringType().default("01KAG3PPQHZ7FSFZG3EQS9WGTW"),
67103
67622
  name: stringType(),
67104
67623
  description: stringType().optional(),
67105
67624
  schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
67106
67625
  });
67107
67626
  AgentToolInputRunTools$outboundSchema = objectType({
67108
- id: stringType().default("01KADY1CTE6KJ8WM96HN1Z09Z6"),
67627
+ id: stringType().default("01KAG3PPQHZ7FSFZG3EQS9WGTW"),
67109
67628
  name: stringType(),
67110
67629
  description: stringType().optional(),
67111
67630
  schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
@@ -67735,7 +68254,7 @@ var init_streamrunagent2 = __esm(() => {
67735
68254
  ])).optional(),
67736
68255
  role: stringType(),
67737
68256
  instructions: stringType(),
67738
- message: lazyType(() => StreamRunAgentMessage$inboundSchema),
68257
+ message: lazyType(() => StreamRunAgentA2AMessage$inboundSchema),
67739
68258
  variables: recordType(anyType()).optional(),
67740
68259
  contact: lazyType(() => StreamRunAgentContact$inboundSchema).optional(),
67741
68260
  thread: lazyType(() => StreamRunAgentThread$inboundSchema).optional(),
@@ -67773,7 +68292,7 @@ var init_streamrunagent2 = __esm(() => {
67773
68292
  ])).optional(),
67774
68293
  role: stringType(),
67775
68294
  instructions: stringType(),
67776
- message: lazyType(() => StreamRunAgentMessage$outboundSchema),
68295
+ message: lazyType(() => StreamRunAgentA2AMessage$outboundSchema),
67777
68296
  variables: recordType(anyType()).optional(),
67778
68297
  contact: lazyType(() => StreamRunAgentContact$outboundSchema).optional(),
67779
68298
  thread: lazyType(() => StreamRunAgentThread$outboundSchema).optional(),
@@ -67807,7 +68326,7 @@ var init_streamrunagent2 = __esm(() => {
67807
68326
  });
67808
68327
 
67809
68328
  // src/models/operations/updateagent.ts
67810
- var ModelConfigurationVoice, UpdateAgentModelConfigurationFormat, UpdateAgentResponseFormatAgentsRequestType, UpdateAgentResponseFormatAgentsType, UpdateAgentResponseFormatType, UpdateAgentModelConfigurationType, ModelConfigurationThinkingLevel, UpdateAgentToolChoiceType, UpdateAgentToolChoice1, ModelConfigurationModalities, UpdateAgentFallbackModelConfigurationVoice, UpdateAgentFallbackModelConfigurationFormat, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, UpdateAgentResponseFormatAgentsRequestRequestBodyType, UpdateAgentFallbackModelConfigurationType, UpdateAgentFallbackModelConfigurationThinkingLevel, UpdateAgentToolChoiceAgentsType, UpdateAgentToolChoiceAgents1, UpdateAgentFallbackModelConfigurationModalities, UpdateAgentToolApprovalRequired, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, UpdateAgentAgentToolInputCRUDAgentsRequestType, UpdateAgentAgentToolInputCRUDAgentsType, UpdateAgentAgentToolInputCRUDType, UpdateAgentExecuteOn, UpdateAgentAgentsExecuteOn, UpdateAgentStatus, UpdateAgentAgentsToolApprovalRequired, UpdateAgentAgentsResponseExecuteOn, UpdateAgentAgentsResponse200ExecuteOn, UpdateAgentVoice, UpdateAgentFormat, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType, UpdateAgentResponseFormatAgentsResponse200Type, UpdateAgentResponseFormatAgentsResponseType, UpdateAgentType, UpdateAgentThinkingLevel, UpdateAgentToolChoiceAgentsResponseType, UpdateAgentToolChoiceAgentsResponse1, UpdateAgentModalities, UpdateAgentFallbackModelConfigurationAgentsVoice, UpdateAgentFallbackModelConfigurationAgentsFormat, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType, UpdateAgentFallbackModelConfigurationAgentsType, UpdateAgentFallbackModelConfigurationAgentsThinkingLevel, UpdateAgentToolChoiceAgentsResponse200Type, UpdateAgentToolChoiceAgentsResponse2001, UpdateAgentFallbackModelConfigurationAgentsModalities, ModelConfigurationVoice$inboundSchema, ModelConfigurationVoice$outboundSchema, UpdateAgentModelConfigurationFormat$inboundSchema, UpdateAgentModelConfigurationFormat$outboundSchema, UpdateAgentModelConfigurationAudio$inboundSchema, UpdateAgentModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsRequestType$inboundSchema, UpdateAgentResponseFormatAgentsRequestType$outboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$outboundSchema, UpdateAgentResponseFormatJSONSchema$inboundSchema, UpdateAgentResponseFormatJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsType$inboundSchema, UpdateAgentResponseFormatAgentsType$outboundSchema, UpdateAgentResponseFormatJSONObject$inboundSchema, UpdateAgentResponseFormatJSONObject$outboundSchema, UpdateAgentResponseFormatType$inboundSchema, UpdateAgentResponseFormatType$outboundSchema, UpdateAgentResponseFormatText$inboundSchema, UpdateAgentResponseFormatText$outboundSchema, ModelConfigurationResponseFormat$inboundSchema, ModelConfigurationResponseFormat$outboundSchema, ModelConfigurationStop$inboundSchema, ModelConfigurationStop$outboundSchema, ModelConfigurationStreamOptions$inboundSchema, ModelConfigurationStreamOptions$outboundSchema, UpdateAgentModelConfigurationType$inboundSchema, UpdateAgentModelConfigurationType$outboundSchema, ModelConfigurationThinkingLevel$inboundSchema, ModelConfigurationThinkingLevel$outboundSchema, ModelConfigurationThinking$inboundSchema, ModelConfigurationThinking$outboundSchema, UpdateAgentToolChoiceType$inboundSchema, UpdateAgentToolChoiceType$outboundSchema, UpdateAgentToolChoiceFunction$inboundSchema, UpdateAgentToolChoiceFunction$outboundSchema, UpdateAgentToolChoice2$inboundSchema, UpdateAgentToolChoice2$outboundSchema, UpdateAgentToolChoice1$inboundSchema, UpdateAgentToolChoice1$outboundSchema, ModelConfigurationToolChoice$inboundSchema, ModelConfigurationToolChoice$outboundSchema, ModelConfigurationModalities$inboundSchema, ModelConfigurationModalities$outboundSchema, ModelConfigurationParameters$inboundSchema, ModelConfigurationParameters$outboundSchema, ModelConfigurationRetry$inboundSchema, ModelConfigurationRetry$outboundSchema, UpdateAgentModelConfiguration2$inboundSchema, UpdateAgentModelConfiguration2$outboundSchema, UpdateAgentModelConfiguration$inboundSchema, UpdateAgentModelConfiguration$outboundSchema, UpdateAgentFallbackModelConfigurationVoice$inboundSchema, UpdateAgentFallbackModelConfigurationVoice$outboundSchema, UpdateAgentFallbackModelConfigurationFormat$inboundSchema, UpdateAgentFallbackModelConfigurationFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, UpdateAgentResponseFormatAgentsJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, UpdateAgentResponseFormatAgentsText$inboundSchema, UpdateAgentResponseFormatAgentsText$outboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationStop$inboundSchema, UpdateAgentFallbackModelConfigurationStop$outboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationType$inboundSchema, UpdateAgentFallbackModelConfigurationType$outboundSchema, UpdateAgentFallbackModelConfigurationThinkingLevel$inboundSchema, UpdateAgentFallbackModelConfigurationThinkingLevel$outboundSchema, UpdateAgentFallbackModelConfigurationThinking$inboundSchema, UpdateAgentFallbackModelConfigurationThinking$outboundSchema, UpdateAgentToolChoiceAgentsType$inboundSchema, UpdateAgentToolChoiceAgentsType$outboundSchema, UpdateAgentToolChoiceAgentsFunction$inboundSchema, UpdateAgentToolChoiceAgentsFunction$outboundSchema, UpdateAgentToolChoiceAgents2$inboundSchema, UpdateAgentToolChoiceAgents2$outboundSchema, UpdateAgentToolChoiceAgents1$inboundSchema, UpdateAgentToolChoiceAgents1$outboundSchema, UpdateAgentFallbackModelConfigurationToolChoice$inboundSchema, UpdateAgentFallbackModelConfigurationToolChoice$outboundSchema, UpdateAgentFallbackModelConfigurationModalities$inboundSchema, UpdateAgentFallbackModelConfigurationModalities$outboundSchema, UpdateAgentFallbackModelConfigurationParameters$inboundSchema, UpdateAgentFallbackModelConfigurationParameters$outboundSchema, UpdateAgentFallbackModelConfiguration2$inboundSchema, UpdateAgentFallbackModelConfiguration2$outboundSchema, UpdateAgentFallbackModelConfiguration$inboundSchema, UpdateAgentFallbackModelConfiguration$outboundSchema, UpdateAgentToolApprovalRequired$inboundSchema, UpdateAgentToolApprovalRequired$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema, AgentToolInputCRUDMCPTool$inboundSchema, AgentToolInputCRUDMCPTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, AgentToolInputCRUDFunctionTool$inboundSchema, AgentToolInputCRUDFunctionTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, AgentToolInputCRUDCodeExecutionTool$inboundSchema, AgentToolInputCRUDCodeExecutionTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, AgentToolInputCRUDHTTPTool$inboundSchema, AgentToolInputCRUDHTTPTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, AgentToolInputCRUDCurrentDateTool$inboundSchema, AgentToolInputCRUDCurrentDateTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, AgentToolInputCRUDRetrieveAgentsTool$inboundSchema, AgentToolInputCRUDRetrieveAgentsTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema, AgentToolInputCRUDCallSubAgentTool$inboundSchema, AgentToolInputCRUDCallSubAgentTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema, AgentToolInputCRUDWebScraperTool$inboundSchema, AgentToolInputCRUDWebScraperTool$outboundSchema, UpdateAgentAgentToolInputCRUDType$inboundSchema, UpdateAgentAgentToolInputCRUDType$outboundSchema, AgentToolInputCRUDGoogleSearchTool$inboundSchema, AgentToolInputCRUDGoogleSearchTool$outboundSchema, UpdateAgentAgentToolInputCRUD$inboundSchema, UpdateAgentAgentToolInputCRUD$outboundSchema, UpdateAgentExecuteOn$inboundSchema, UpdateAgentExecuteOn$outboundSchema, UpdateAgentEvaluators$inboundSchema, UpdateAgentEvaluators$outboundSchema, UpdateAgentAgentsExecuteOn$inboundSchema, UpdateAgentAgentsExecuteOn$outboundSchema, UpdateAgentGuardrails$inboundSchema, UpdateAgentGuardrails$outboundSchema, UpdateAgentSettings$inboundSchema, UpdateAgentSettings$outboundSchema, UpdateAgentKnowledgeBases$inboundSchema, UpdateAgentKnowledgeBases$outboundSchema, UpdateAgentTeamOfAgents$inboundSchema, UpdateAgentTeamOfAgents$outboundSchema, UpdateAgentRequestBody$inboundSchema, UpdateAgentRequestBody$outboundSchema, UpdateAgentRequest$inboundSchema, UpdateAgentRequest$outboundSchema, UpdateAgentStatus$inboundSchema, UpdateAgentStatus$outboundSchema, UpdateAgentAgentsToolApprovalRequired$inboundSchema, UpdateAgentAgentsToolApprovalRequired$outboundSchema, UpdateAgentConditions$inboundSchema, UpdateAgentConditions$outboundSchema, UpdateAgentTools$inboundSchema, UpdateAgentTools$outboundSchema, UpdateAgentAgentsResponseExecuteOn$inboundSchema, UpdateAgentAgentsResponseExecuteOn$outboundSchema, UpdateAgentAgentsEvaluators$inboundSchema, UpdateAgentAgentsEvaluators$outboundSchema, UpdateAgentAgentsResponse200ExecuteOn$inboundSchema, UpdateAgentAgentsResponse200ExecuteOn$outboundSchema, UpdateAgentAgentsGuardrails$inboundSchema, UpdateAgentAgentsGuardrails$outboundSchema, UpdateAgentAgentsSettings$inboundSchema, UpdateAgentAgentsSettings$outboundSchema, UpdateAgentVoice$inboundSchema, UpdateAgentVoice$outboundSchema, UpdateAgentFormat$inboundSchema, UpdateAgentFormat$outboundSchema, UpdateAgentAudio$inboundSchema, UpdateAgentAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType$outboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200Type$inboundSchema, UpdateAgentResponseFormatAgentsResponse200Type$outboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponseType$inboundSchema, UpdateAgentResponseFormatAgentsResponseType$outboundSchema, UpdateAgentResponseFormatAgentsResponseText$inboundSchema, UpdateAgentResponseFormatAgentsResponseText$outboundSchema, UpdateAgentResponseFormat$inboundSchema, UpdateAgentResponseFormat$outboundSchema, UpdateAgentStop$inboundSchema, UpdateAgentStop$outboundSchema, UpdateAgentStreamOptions$inboundSchema, UpdateAgentStreamOptions$outboundSchema, UpdateAgentType$inboundSchema, UpdateAgentType$outboundSchema, UpdateAgentThinkingLevel$inboundSchema, UpdateAgentThinkingLevel$outboundSchema, UpdateAgentThinking$inboundSchema, UpdateAgentThinking$outboundSchema, UpdateAgentToolChoiceAgentsResponseType$inboundSchema, UpdateAgentToolChoiceAgentsResponseType$outboundSchema, UpdateAgentToolChoiceAgentsResponseFunction$inboundSchema, UpdateAgentToolChoiceAgentsResponseFunction$outboundSchema, UpdateAgentToolChoiceAgentsResponse2$inboundSchema, UpdateAgentToolChoiceAgentsResponse2$outboundSchema, UpdateAgentToolChoiceAgentsResponse1$inboundSchema, UpdateAgentToolChoiceAgentsResponse1$outboundSchema, UpdateAgentToolChoice$inboundSchema, UpdateAgentToolChoice$outboundSchema, UpdateAgentModalities$inboundSchema, UpdateAgentModalities$outboundSchema, UpdateAgentParameters$inboundSchema, UpdateAgentParameters$outboundSchema, UpdateAgentRetry$inboundSchema, UpdateAgentRetry$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$inboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsType$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsType$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinkingLevel$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinkingLevel$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinking$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinking$outboundSchema, UpdateAgentToolChoiceAgentsResponse200Type$inboundSchema, UpdateAgentToolChoiceAgentsResponse200Type$outboundSchema, UpdateAgentToolChoiceAgentsResponse200Function$inboundSchema, UpdateAgentToolChoiceAgentsResponse200Function$outboundSchema, UpdateAgentToolChoiceAgentsResponse2002$inboundSchema, UpdateAgentToolChoiceAgentsResponse2002$outboundSchema, UpdateAgentToolChoiceAgentsResponse2001$inboundSchema, UpdateAgentToolChoiceAgentsResponse2001$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsToolChoice$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsToolChoice$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsModalities$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsModalities$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsParameters$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsParameters$outboundSchema, UpdateAgentFallbackModelConfigurationAgents2$inboundSchema, UpdateAgentFallbackModelConfigurationAgents2$outboundSchema, UpdateAgentAgentsFallbackModelConfiguration$inboundSchema, UpdateAgentAgentsFallbackModelConfiguration$outboundSchema, UpdateAgentModel$inboundSchema, UpdateAgentModel$outboundSchema, UpdateAgentAgentsTeamOfAgents$inboundSchema, UpdateAgentAgentsTeamOfAgents$outboundSchema, UpdateAgentMetrics$inboundSchema, UpdateAgentMetrics$outboundSchema, UpdateAgentAgentsKnowledgeBases$inboundSchema, UpdateAgentAgentsKnowledgeBases$outboundSchema, UpdateAgentResponseBody$inboundSchema2, UpdateAgentResponseBody$outboundSchema2;
68329
+ var ModelConfigurationVoice, UpdateAgentModelConfigurationFormat, UpdateAgentResponseFormatAgentsRequestType, UpdateAgentResponseFormatAgentsType, UpdateAgentResponseFormatType, UpdateAgentModelConfigurationType, ModelConfigurationThinkingLevel, UpdateAgentToolChoiceType, UpdateAgentToolChoice1, ModelConfigurationModalities, UpdateAgentFallbackModelConfigurationVoice, UpdateAgentFallbackModelConfigurationFormat, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, UpdateAgentResponseFormatAgentsRequestRequestBodyType, UpdateAgentFallbackModelConfigurationType, UpdateAgentFallbackModelConfigurationThinkingLevel, UpdateAgentToolChoiceAgentsType, UpdateAgentToolChoiceAgents1, UpdateAgentFallbackModelConfigurationModalities, UpdateAgentToolApprovalRequired, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, UpdateAgentAgentToolInputCRUDAgentsRequestType, UpdateAgentAgentToolInputCRUDAgentsType, UpdateAgentAgentToolInputCRUDType, UpdateAgentExecuteOn, UpdateAgentAgentsExecuteOn, UpdateAgentStatus, UpdateAgentAgentsToolApprovalRequired, UpdateAgentAgentsResponseExecuteOn, UpdateAgentAgentsResponse200ExecuteOn, UpdateAgentVoice, UpdateAgentFormat, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType, UpdateAgentResponseFormatAgentsResponse200Type, UpdateAgentResponseFormatAgentsResponseType, UpdateAgentType, UpdateAgentThinkingLevel, UpdateAgentToolChoiceAgentsResponseType, UpdateAgentToolChoiceAgentsResponse1, UpdateAgentModalities, UpdateAgentFallbackModelConfigurationAgentsVoice, UpdateAgentFallbackModelConfigurationAgentsFormat, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType, UpdateAgentFallbackModelConfigurationAgentsType, UpdateAgentFallbackModelConfigurationAgentsThinkingLevel, UpdateAgentToolChoiceAgentsResponse200Type, UpdateAgentToolChoiceAgentsResponse2001, UpdateAgentFallbackModelConfigurationAgentsModalities, ModelConfigurationVoice$inboundSchema, ModelConfigurationVoice$outboundSchema, UpdateAgentModelConfigurationFormat$inboundSchema, UpdateAgentModelConfigurationFormat$outboundSchema, UpdateAgentModelConfigurationAudio$inboundSchema, UpdateAgentModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsRequestType$inboundSchema, UpdateAgentResponseFormatAgentsRequestType$outboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$outboundSchema, UpdateAgentResponseFormatJSONSchema$inboundSchema, UpdateAgentResponseFormatJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsType$inboundSchema, UpdateAgentResponseFormatAgentsType$outboundSchema, UpdateAgentResponseFormatJSONObject$inboundSchema, UpdateAgentResponseFormatJSONObject$outboundSchema, UpdateAgentResponseFormatType$inboundSchema, UpdateAgentResponseFormatType$outboundSchema, UpdateAgentResponseFormatText$inboundSchema, UpdateAgentResponseFormatText$outboundSchema, ModelConfigurationResponseFormat$inboundSchema, ModelConfigurationResponseFormat$outboundSchema, ModelConfigurationStop$inboundSchema, ModelConfigurationStop$outboundSchema, ModelConfigurationStreamOptions$inboundSchema, ModelConfigurationStreamOptions$outboundSchema, UpdateAgentModelConfigurationType$inboundSchema, UpdateAgentModelConfigurationType$outboundSchema, ModelConfigurationThinkingLevel$inboundSchema, ModelConfigurationThinkingLevel$outboundSchema, ModelConfigurationThinking$inboundSchema, ModelConfigurationThinking$outboundSchema, UpdateAgentToolChoiceType$inboundSchema, UpdateAgentToolChoiceType$outboundSchema, UpdateAgentToolChoiceFunction$inboundSchema, UpdateAgentToolChoiceFunction$outboundSchema, UpdateAgentToolChoice2$inboundSchema, UpdateAgentToolChoice2$outboundSchema, UpdateAgentToolChoice1$inboundSchema, UpdateAgentToolChoice1$outboundSchema, ModelConfigurationToolChoice$inboundSchema, ModelConfigurationToolChoice$outboundSchema, ModelConfigurationModalities$inboundSchema, ModelConfigurationModalities$outboundSchema, ModelConfigurationParameters$inboundSchema, ModelConfigurationParameters$outboundSchema, ModelConfigurationRetry$inboundSchema, ModelConfigurationRetry$outboundSchema, UpdateAgentModelConfiguration2$inboundSchema, UpdateAgentModelConfiguration2$outboundSchema, UpdateAgentModelConfiguration$inboundSchema, UpdateAgentModelConfiguration$outboundSchema, UpdateAgentFallbackModelConfigurationVoice$inboundSchema, UpdateAgentFallbackModelConfigurationVoice$outboundSchema, UpdateAgentFallbackModelConfigurationFormat$inboundSchema, UpdateAgentFallbackModelConfigurationFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, UpdateAgentResponseFormatAgentsJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, UpdateAgentResponseFormatAgentsText$inboundSchema, UpdateAgentResponseFormatAgentsText$outboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationStop$inboundSchema, UpdateAgentFallbackModelConfigurationStop$outboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationType$inboundSchema, UpdateAgentFallbackModelConfigurationType$outboundSchema, UpdateAgentFallbackModelConfigurationThinkingLevel$inboundSchema, UpdateAgentFallbackModelConfigurationThinkingLevel$outboundSchema, UpdateAgentFallbackModelConfigurationThinking$inboundSchema, UpdateAgentFallbackModelConfigurationThinking$outboundSchema, UpdateAgentToolChoiceAgentsType$inboundSchema, UpdateAgentToolChoiceAgentsType$outboundSchema, UpdateAgentToolChoiceAgentsFunction$inboundSchema, UpdateAgentToolChoiceAgentsFunction$outboundSchema, UpdateAgentToolChoiceAgents2$inboundSchema, UpdateAgentToolChoiceAgents2$outboundSchema, UpdateAgentToolChoiceAgents1$inboundSchema, UpdateAgentToolChoiceAgents1$outboundSchema, UpdateAgentFallbackModelConfigurationToolChoice$inboundSchema, UpdateAgentFallbackModelConfigurationToolChoice$outboundSchema, UpdateAgentFallbackModelConfigurationModalities$inboundSchema, UpdateAgentFallbackModelConfigurationModalities$outboundSchema, UpdateAgentFallbackModelConfigurationParameters$inboundSchema, UpdateAgentFallbackModelConfigurationParameters$outboundSchema, UpdateAgentFallbackModelConfiguration2$inboundSchema, UpdateAgentFallbackModelConfiguration2$outboundSchema, UpdateAgentFallbackModelConfiguration$inboundSchema, UpdateAgentFallbackModelConfiguration$outboundSchema, UpdateAgentToolApprovalRequired$inboundSchema, UpdateAgentToolApprovalRequired$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema, AgentToolInputCRUDMCPTool$inboundSchema, AgentToolInputCRUDMCPTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, AgentToolInputCRUDFunctionTool$inboundSchema, AgentToolInputCRUDFunctionTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, AgentToolInputCRUDCodeExecutionTool$inboundSchema, AgentToolInputCRUDCodeExecutionTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, AgentToolInputCRUDHTTPTool$inboundSchema, AgentToolInputCRUDHTTPTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, AgentToolInputCRUDCurrentDateTool$inboundSchema, AgentToolInputCRUDCurrentDateTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, AgentToolInputCRUDRetrieveAgentsTool$inboundSchema, AgentToolInputCRUDRetrieveAgentsTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema, AgentToolInputCRUDCallSubAgentTool$inboundSchema, AgentToolInputCRUDCallSubAgentTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema, AgentToolInputCRUDWebScraperTool$inboundSchema, AgentToolInputCRUDWebScraperTool$outboundSchema, UpdateAgentAgentToolInputCRUDType$inboundSchema, UpdateAgentAgentToolInputCRUDType$outboundSchema, AgentToolInputCRUDGoogleSearchTool$inboundSchema, AgentToolInputCRUDGoogleSearchTool$outboundSchema, UpdateAgentAgentToolInputCRUD$inboundSchema, UpdateAgentAgentToolInputCRUD$outboundSchema, UpdateAgentExecuteOn$inboundSchema, UpdateAgentExecuteOn$outboundSchema, UpdateAgentEvaluators$inboundSchema, UpdateAgentEvaluators$outboundSchema, UpdateAgentAgentsExecuteOn$inboundSchema, UpdateAgentAgentsExecuteOn$outboundSchema, UpdateAgentGuardrails$inboundSchema, UpdateAgentGuardrails$outboundSchema, UpdateAgentSettings$inboundSchema, UpdateAgentSettings$outboundSchema, UpdateAgentKnowledgeBases$inboundSchema, UpdateAgentKnowledgeBases$outboundSchema, UpdateAgentTeamOfAgents$inboundSchema, UpdateAgentTeamOfAgents$outboundSchema, UpdateAgentUpdateAgentRequest$inboundSchema, UpdateAgentUpdateAgentRequest$outboundSchema, UpdateAgentRequest$inboundSchema, UpdateAgentRequest$outboundSchema, UpdateAgentStatus$inboundSchema, UpdateAgentStatus$outboundSchema, UpdateAgentAgentsToolApprovalRequired$inboundSchema, UpdateAgentAgentsToolApprovalRequired$outboundSchema, UpdateAgentConditions$inboundSchema, UpdateAgentConditions$outboundSchema, UpdateAgentTools$inboundSchema, UpdateAgentTools$outboundSchema, UpdateAgentAgentsResponseExecuteOn$inboundSchema, UpdateAgentAgentsResponseExecuteOn$outboundSchema, UpdateAgentAgentsEvaluators$inboundSchema, UpdateAgentAgentsEvaluators$outboundSchema, UpdateAgentAgentsResponse200ExecuteOn$inboundSchema, UpdateAgentAgentsResponse200ExecuteOn$outboundSchema, UpdateAgentAgentsGuardrails$inboundSchema, UpdateAgentAgentsGuardrails$outboundSchema, UpdateAgentAgentsSettings$inboundSchema, UpdateAgentAgentsSettings$outboundSchema, UpdateAgentVoice$inboundSchema, UpdateAgentVoice$outboundSchema, UpdateAgentFormat$inboundSchema, UpdateAgentFormat$outboundSchema, UpdateAgentAudio$inboundSchema, UpdateAgentAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType$outboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200Type$inboundSchema, UpdateAgentResponseFormatAgentsResponse200Type$outboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponseType$inboundSchema, UpdateAgentResponseFormatAgentsResponseType$outboundSchema, UpdateAgentResponseFormatAgentsResponseText$inboundSchema, UpdateAgentResponseFormatAgentsResponseText$outboundSchema, UpdateAgentResponseFormat$inboundSchema, UpdateAgentResponseFormat$outboundSchema, UpdateAgentStop$inboundSchema, UpdateAgentStop$outboundSchema, UpdateAgentStreamOptions$inboundSchema, UpdateAgentStreamOptions$outboundSchema, UpdateAgentType$inboundSchema, UpdateAgentType$outboundSchema, UpdateAgentThinkingLevel$inboundSchema, UpdateAgentThinkingLevel$outboundSchema, UpdateAgentThinking$inboundSchema, UpdateAgentThinking$outboundSchema, UpdateAgentToolChoiceAgentsResponseType$inboundSchema, UpdateAgentToolChoiceAgentsResponseType$outboundSchema, UpdateAgentToolChoiceAgentsResponseFunction$inboundSchema, UpdateAgentToolChoiceAgentsResponseFunction$outboundSchema, UpdateAgentToolChoiceAgentsResponse2$inboundSchema, UpdateAgentToolChoiceAgentsResponse2$outboundSchema, UpdateAgentToolChoiceAgentsResponse1$inboundSchema, UpdateAgentToolChoiceAgentsResponse1$outboundSchema, UpdateAgentToolChoice$inboundSchema, UpdateAgentToolChoice$outboundSchema, UpdateAgentModalities$inboundSchema, UpdateAgentModalities$outboundSchema, UpdateAgentParameters$inboundSchema, UpdateAgentParameters$outboundSchema, UpdateAgentRetry$inboundSchema, UpdateAgentRetry$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$inboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsType$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsType$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinkingLevel$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinkingLevel$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinking$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinking$outboundSchema, UpdateAgentToolChoiceAgentsResponse200Type$inboundSchema, UpdateAgentToolChoiceAgentsResponse200Type$outboundSchema, UpdateAgentToolChoiceAgentsResponse200Function$inboundSchema, UpdateAgentToolChoiceAgentsResponse200Function$outboundSchema, UpdateAgentToolChoiceAgentsResponse2002$inboundSchema, UpdateAgentToolChoiceAgentsResponse2002$outboundSchema, UpdateAgentToolChoiceAgentsResponse2001$inboundSchema, UpdateAgentToolChoiceAgentsResponse2001$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsToolChoice$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsToolChoice$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsModalities$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsModalities$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsParameters$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsParameters$outboundSchema, UpdateAgentFallbackModelConfigurationAgents2$inboundSchema, UpdateAgentFallbackModelConfigurationAgents2$outboundSchema, UpdateAgentAgentsFallbackModelConfiguration$inboundSchema, UpdateAgentAgentsFallbackModelConfiguration$outboundSchema, UpdateAgentModel$inboundSchema, UpdateAgentModel$outboundSchema, UpdateAgentAgentsTeamOfAgents$inboundSchema, UpdateAgentAgentsTeamOfAgents$outboundSchema, UpdateAgentMetrics$inboundSchema, UpdateAgentMetrics$outboundSchema, UpdateAgentAgentsKnowledgeBases$inboundSchema, UpdateAgentAgentsKnowledgeBases$outboundSchema, UpdateAgentResponseBody$inboundSchema2, UpdateAgentResponseBody$outboundSchema2;
67811
68330
  var init_updateagent2 = __esm(() => {
67812
68331
  init_esm();
67813
68332
  init_primitives();
@@ -69014,7 +69533,7 @@ var init_updateagent2 = __esm(() => {
69014
69533
  key: stringType(),
69015
69534
  role: stringType().optional()
69016
69535
  });
69017
- UpdateAgentRequestBody$inboundSchema = objectType({
69536
+ UpdateAgentUpdateAgentRequest$inboundSchema = objectType({
69018
69537
  key: stringType().optional(),
69019
69538
  display_name: stringType().optional(),
69020
69539
  project_id: stringType().optional(),
@@ -69047,7 +69566,7 @@ var init_updateagent2 = __esm(() => {
69047
69566
  team_of_agents: "teamOfAgents"
69048
69567
  });
69049
69568
  });
69050
- UpdateAgentRequestBody$outboundSchema = objectType({
69569
+ UpdateAgentUpdateAgentRequest$outboundSchema = objectType({
69051
69570
  key: stringType().optional(),
69052
69571
  displayName: stringType().optional(),
69053
69572
  projectId: stringType().optional(),
@@ -69082,7 +69601,7 @@ var init_updateagent2 = __esm(() => {
69082
69601
  });
69083
69602
  UpdateAgentRequest$inboundSchema = objectType({
69084
69603
  agent_key: stringType(),
69085
- RequestBody: lazyType(() => UpdateAgentRequestBody$inboundSchema).optional()
69604
+ RequestBody: lazyType(() => UpdateAgentUpdateAgentRequest$inboundSchema).optional()
69086
69605
  }).transform((v2) => {
69087
69606
  return remap(v2, {
69088
69607
  agent_key: "agentKey",
@@ -69091,7 +69610,7 @@ var init_updateagent2 = __esm(() => {
69091
69610
  });
69092
69611
  UpdateAgentRequest$outboundSchema = objectType({
69093
69612
  agentKey: stringType(),
69094
- requestBody: lazyType(() => UpdateAgentRequestBody$outboundSchema).optional()
69613
+ requestBody: lazyType(() => UpdateAgentUpdateAgentRequest$outboundSchema).optional()
69095
69614
  }).transform((v2) => {
69096
69615
  return remap(v2, {
69097
69616
  agentKey: "agent_key",
@@ -69958,7 +70477,7 @@ var init_updatebudget = __esm(() => {
69958
70477
  is_active: booleanType(),
69959
70478
  consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
69960
70479
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
69961
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.769Z").transform((v2) => new Date(v2))
70480
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:05.297Z").transform((v2) => new Date(v2))
69962
70481
  }).transform((v2) => {
69963
70482
  return remap(v2, {
69964
70483
  _id: "id",
@@ -69976,7 +70495,7 @@ var init_updatebudget = __esm(() => {
69976
70495
  isActive: booleanType(),
69977
70496
  consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
69978
70497
  created: dateType().transform((v2) => v2.toISOString()).optional(),
69979
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.769Z")).transform((v2) => v2.toISOString())
70498
+ updated: dateType().default(() => new Date("2025-11-20T07:47:05.297Z")).transform((v2) => v2.toISOString())
69980
70499
  }).transform((v2) => {
69981
70500
  return remap(v2, {
69982
70501
  id: "_id",
@@ -70131,7 +70650,7 @@ var init_updatecontact2 = __esm(() => {
70131
70650
  tags: arrayType(stringType()).optional(),
70132
70651
  metadata: recordType(anyType()).optional(),
70133
70652
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
70134
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
70653
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
70135
70654
  }).transform((v2) => {
70136
70655
  return remap(v2, {
70137
70656
  _id: "id",
@@ -70149,7 +70668,7 @@ var init_updatecontact2 = __esm(() => {
70149
70668
  tags: arrayType(stringType()).optional(),
70150
70669
  metadata: recordType(anyType()).optional(),
70151
70670
  created: dateType().transform((v2) => v2.toISOString()).optional(),
70152
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
70671
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
70153
70672
  }).transform((v2) => {
70154
70673
  return remap(v2, {
70155
70674
  id: "_id",
@@ -71225,7 +71744,7 @@ var init_updatedatapoint = __esm(() => {
71225
71744
  human_review_id: stringType(),
71226
71745
  source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
71227
71746
  reviewed_by_id: stringType(),
71228
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.357Z").transform((v2) => new Date(v2)),
71747
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.945Z").transform((v2) => new Date(v2)),
71229
71748
  type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
71230
71749
  values: arrayType(stringType())
71231
71750
  }).transform((v2) => {
@@ -71242,7 +71761,7 @@ var init_updatedatapoint = __esm(() => {
71242
71761
  humanReviewId: stringType(),
71243
71762
  source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
71244
71763
  reviewedById: stringType(),
71245
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.357Z")).transform((v2) => v2.toISOString()),
71764
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.945Z")).transform((v2) => v2.toISOString()),
71246
71765
  type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
71247
71766
  values: arrayType(stringType())
71248
71767
  }).transform((v2) => {
@@ -71265,7 +71784,7 @@ var init_updatedatapoint = __esm(() => {
71265
71784
  human_review_id: stringType(),
71266
71785
  source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
71267
71786
  reviewed_by_id: stringType(),
71268
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.356Z").transform((v2) => new Date(v2)),
71787
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.944Z").transform((v2) => new Date(v2)),
71269
71788
  type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
71270
71789
  value: numberType()
71271
71790
  }).transform((v2) => {
@@ -71282,7 +71801,7 @@ var init_updatedatapoint = __esm(() => {
71282
71801
  humanReviewId: stringType(),
71283
71802
  source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
71284
71803
  reviewedById: stringType(),
71285
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.356Z")).transform((v2) => v2.toISOString()),
71804
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.944Z")).transform((v2) => v2.toISOString()),
71286
71805
  type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
71287
71806
  value: numberType()
71288
71807
  }).transform((v2) => {
@@ -71305,7 +71824,7 @@ var init_updatedatapoint = __esm(() => {
71305
71824
  human_review_id: stringType(),
71306
71825
  source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
71307
71826
  reviewed_by_id: stringType(),
71308
- reviewed_at: stringType().datetime({ offset: true }).default("2025-11-19T11:29:46.355Z").transform((v2) => new Date(v2)),
71827
+ reviewed_at: stringType().datetime({ offset: true }).default("2025-11-20T07:47:16.938Z").transform((v2) => new Date(v2)),
71309
71828
  type: UpdateDatapointEvaluationsType$inboundSchema,
71310
71829
  value: stringType()
71311
71830
  }).transform((v2) => {
@@ -71322,7 +71841,7 @@ var init_updatedatapoint = __esm(() => {
71322
71841
  humanReviewId: stringType(),
71323
71842
  source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
71324
71843
  reviewedById: stringType(),
71325
- reviewedAt: dateType().default(() => new Date("2025-11-19T11:29:46.355Z")).transform((v2) => v2.toISOString()),
71844
+ reviewedAt: dateType().default(() => new Date("2025-11-20T07:47:16.938Z")).transform((v2) => v2.toISOString()),
71326
71845
  type: UpdateDatapointEvaluationsType$outboundSchema,
71327
71846
  value: stringType()
71328
71847
  }).transform((v2) => {
@@ -71365,7 +71884,7 @@ var init_updatedatapoint = __esm(() => {
71365
71884
  created_by_id: stringType().optional(),
71366
71885
  updated_by_id: stringType().optional(),
71367
71886
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
71368
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
71887
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
71369
71888
  }).transform((v2) => {
71370
71889
  return remap(v2, {
71371
71890
  _id: "id",
@@ -71399,7 +71918,7 @@ var init_updatedatapoint = __esm(() => {
71399
71918
  createdById: stringType().optional(),
71400
71919
  updatedById: stringType().optional(),
71401
71920
  created: dateType().transform((v2) => v2.toISOString()).optional(),
71402
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
71921
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
71403
71922
  }).transform((v2) => {
71404
71923
  return remap(v2, {
71405
71924
  id: "_id",
@@ -71483,7 +72002,7 @@ var init_updatedataset = __esm(() => {
71483
72002
  created_by_id: stringType().optional(),
71484
72003
  updated_by_id: stringType().optional(),
71485
72004
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
71486
- updated: stringType().datetime({ offset: true }).default("2025-11-19T11:29:35.434Z").transform((v2) => new Date(v2))
72005
+ updated: stringType().datetime({ offset: true }).default("2025-11-20T07:47:04.953Z").transform((v2) => new Date(v2))
71487
72006
  }).transform((v2) => {
71488
72007
  return remap(v2, {
71489
72008
  _id: "id",
@@ -71503,7 +72022,7 @@ var init_updatedataset = __esm(() => {
71503
72022
  createdById: stringType().optional(),
71504
72023
  updatedById: stringType().optional(),
71505
72024
  created: dateType().transform((v2) => v2.toISOString()).optional(),
71506
- updated: dateType().default(() => new Date("2025-11-19T11:29:35.434Z")).transform((v2) => v2.toISOString())
72025
+ updated: dateType().default(() => new Date("2025-11-20T07:47:04.953Z")).transform((v2) => v2.toISOString())
71507
72026
  }).transform((v2) => {
71508
72027
  return remap(v2, {
71509
72028
  id: "_id",
@@ -71567,7 +72086,7 @@ var init_updatedatasource = __esm(() => {
71567
72086
  UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
71568
72087
  UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
71569
72088
  UpdateDatasourceResponseBody$inboundSchema = objectType({
71570
- _id: stringType().default("01KADY1D81QFKFASTWWYH5Q4Z5"),
72089
+ _id: stringType().default("01KAG3PQCY01GZSPW87ADQX0WS"),
71571
72090
  display_name: stringType(),
71572
72091
  description: stringType().optional(),
71573
72092
  status: UpdateDatasourceStatus$inboundSchema,
@@ -71590,7 +72109,7 @@ var init_updatedatasource = __esm(() => {
71590
72109
  });
71591
72110
  });
71592
72111
  UpdateDatasourceResponseBody$outboundSchema = objectType({
71593
- id: stringType().default("01KADY1D81QFKFASTWWYH5Q4Z5"),
72112
+ id: stringType().default("01KAG3PQCY01GZSPW87ADQX0WS"),
71594
72113
  displayName: stringType(),
71595
72114
  description: stringType().optional(),
71596
72115
  status: UpdateDatasourceStatus$outboundSchema,
@@ -72337,8 +72856,8 @@ var init_updateeval2 = __esm(() => {
72337
72856
  ResponseBodyTypescript$inboundSchema = objectType({
72338
72857
  _id: stringType(),
72339
72858
  description: stringType(),
72340
- created: stringType().default("2025-11-19T11:29:37.418Z"),
72341
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
72859
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
72860
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
72342
72861
  guardrail_config: unionType([
72343
72862
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
72344
72863
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
@@ -72355,8 +72874,8 @@ var init_updateeval2 = __esm(() => {
72355
72874
  ResponseBodyTypescript$outboundSchema = objectType({
72356
72875
  id: stringType(),
72357
72876
  description: stringType(),
72358
- created: stringType().default("2025-11-19T11:29:37.418Z"),
72359
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
72877
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
72878
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
72360
72879
  guardrailConfig: unionType([
72361
72880
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
72362
72881
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
@@ -72413,8 +72932,8 @@ var init_updateeval2 = __esm(() => {
72413
72932
  ResponseBodyRagas$inboundSchema = objectType({
72414
72933
  _id: stringType(),
72415
72934
  description: stringType(),
72416
- created: stringType().default("2025-11-19T11:29:37.418Z"),
72417
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
72935
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
72936
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
72418
72937
  guardrail_config: unionType([
72419
72938
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
72420
72939
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
@@ -72433,8 +72952,8 @@ var init_updateeval2 = __esm(() => {
72433
72952
  ResponseBodyRagas$outboundSchema = objectType({
72434
72953
  id: stringType(),
72435
72954
  description: stringType(),
72436
- created: stringType().default("2025-11-19T11:29:37.418Z"),
72437
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
72955
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
72956
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
72438
72957
  guardrailConfig: unionType([
72439
72958
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
72440
72959
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
@@ -72871,8 +73390,8 @@ var init_updateeval2 = __esm(() => {
72871
73390
  ResponseBodyFunction$inboundSchema = objectType({
72872
73391
  _id: stringType(),
72873
73392
  description: stringType(),
72874
- created: stringType().default("2025-11-19T11:29:37.418Z"),
72875
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
73393
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
73394
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
72876
73395
  guardrail_config: unionType([
72877
73396
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
72878
73397
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
@@ -72926,8 +73445,8 @@ var init_updateeval2 = __esm(() => {
72926
73445
  ResponseBodyFunction$outboundSchema = objectType({
72927
73446
  id: stringType(),
72928
73447
  description: stringType(),
72929
- created: stringType().default("2025-11-19T11:29:37.418Z"),
72930
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
73448
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
73449
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
72931
73450
  guardrailConfig: unionType([
72932
73451
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
72933
73452
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
@@ -73019,8 +73538,8 @@ var init_updateeval2 = __esm(() => {
73019
73538
  UpdateEvalResponseBodyPython$inboundSchema = objectType({
73020
73539
  _id: stringType(),
73021
73540
  description: stringType(),
73022
- created: stringType().default("2025-11-19T11:29:37.418Z"),
73023
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
73541
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
73542
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
73024
73543
  guardrail_config: unionType([
73025
73544
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
73026
73545
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -73037,8 +73556,8 @@ var init_updateeval2 = __esm(() => {
73037
73556
  UpdateEvalResponseBodyPython$outboundSchema = objectType({
73038
73557
  id: stringType(),
73039
73558
  description: stringType(),
73040
- created: stringType().default("2025-11-19T11:29:37.418Z"),
73041
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
73559
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
73560
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
73042
73561
  guardrailConfig: unionType([
73043
73562
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
73044
73563
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -73095,8 +73614,8 @@ var init_updateeval2 = __esm(() => {
73095
73614
  UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
73096
73615
  _id: stringType(),
73097
73616
  description: stringType(),
73098
- created: stringType().default("2025-11-19T11:29:37.418Z"),
73099
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
73617
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
73618
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
73100
73619
  guardrail_config: unionType([
73101
73620
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
73102
73621
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -73116,8 +73635,8 @@ var init_updateeval2 = __esm(() => {
73116
73635
  UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
73117
73636
  id: stringType(),
73118
73637
  description: stringType(),
73119
- created: stringType().default("2025-11-19T11:29:37.418Z"),
73120
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
73638
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
73639
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
73121
73640
  guardrailConfig: unionType([
73122
73641
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
73123
73642
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -73175,8 +73694,8 @@ var init_updateeval2 = __esm(() => {
73175
73694
  UpdateEvalResponseBodyJSON$inboundSchema = objectType({
73176
73695
  _id: stringType(),
73177
73696
  description: stringType(),
73178
- created: stringType().default("2025-11-19T11:29:37.418Z"),
73179
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
73697
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
73698
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
73180
73699
  guardrail_config: unionType([
73181
73700
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
73182
73701
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -73193,8 +73712,8 @@ var init_updateeval2 = __esm(() => {
73193
73712
  UpdateEvalResponseBodyJSON$outboundSchema = objectType({
73194
73713
  id: stringType(),
73195
73714
  description: stringType(),
73196
- created: stringType().default("2025-11-19T11:29:37.418Z"),
73197
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
73715
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
73716
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
73198
73717
  guardrailConfig: unionType([
73199
73718
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
73200
73719
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -73249,8 +73768,8 @@ var init_updateeval2 = __esm(() => {
73249
73768
  UpdateEvalResponseBodyLLM$inboundSchema = objectType({
73250
73769
  _id: stringType(),
73251
73770
  description: stringType(),
73252
- created: stringType().default("2025-11-19T11:29:37.418Z"),
73253
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
73771
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
73772
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
73254
73773
  guardrail_config: unionType([
73255
73774
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
73256
73775
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -73268,8 +73787,8 @@ var init_updateeval2 = __esm(() => {
73268
73787
  UpdateEvalResponseBodyLLM$outboundSchema = objectType({
73269
73788
  id: stringType(),
73270
73789
  description: stringType(),
73271
- created: stringType().default("2025-11-19T11:29:37.418Z"),
73272
- updated: stringType().default("2025-11-19T11:29:37.418Z"),
73790
+ created: stringType().default("2025-11-20T07:47:06.974Z"),
73791
+ updated: stringType().default("2025-11-20T07:47:06.974Z"),
73273
73792
  guardrailConfig: unionType([
73274
73793
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
73275
73794
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -76037,13 +76556,13 @@ var init_updatetool2 = __esm(() => {
76037
76556
  required: arrayType(stringType()).optional()
76038
76557
  });
76039
76558
  RequestBodyTools$inboundSchema = objectType({
76040
- id: stringType().default("01KADY1D3MK0R9WEVWWQ9K58TJ"),
76559
+ id: stringType().default("01KAG3PQ0STQ8BRWHT7WRSVPMW"),
76041
76560
  name: stringType(),
76042
76561
  description: stringType().optional(),
76043
76562
  schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
76044
76563
  });
76045
76564
  RequestBodyTools$outboundSchema = objectType({
76046
- id: stringType().default("01KADY1D3MK0R9WEVWWQ9K58TJ"),
76565
+ id: stringType().default("01KAG3PQ0STQ8BRWHT7WRSVPMW"),
76047
76566
  name: stringType(),
76048
76567
  description: stringType().optional(),
76049
76568
  schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
@@ -76391,7 +76910,7 @@ var init_updatetool2 = __esm(() => {
76391
76910
  code: stringType()
76392
76911
  });
76393
76912
  UpdateToolResponseBody5$inboundSchema = objectType({
76394
- _id: stringType().default("tool_01KADY1D3C4Y8Z42GDP5C337GN"),
76913
+ _id: stringType().default("tool_01KAG3PQ0CP17SKWENRWGYJ6AY"),
76395
76914
  path: stringType(),
76396
76915
  key: stringType(),
76397
76916
  display_name: stringType().optional(),
@@ -76419,7 +76938,7 @@ var init_updatetool2 = __esm(() => {
76419
76938
  });
76420
76939
  });
76421
76940
  UpdateToolResponseBody5$outboundSchema = objectType({
76422
- id: stringType().default("tool_01KADY1D3C4Y8Z42GDP5C337GN"),
76941
+ id: stringType().default("tool_01KAG3PQ0CP17SKWENRWGYJ6AY"),
76423
76942
  path: stringType(),
76424
76943
  key: stringType(),
76425
76944
  displayName: stringType().optional(),
@@ -76471,13 +76990,13 @@ var init_updatetool2 = __esm(() => {
76471
76990
  required: arrayType(stringType()).optional()
76472
76991
  });
76473
76992
  UpdateToolResponseBodyTools$inboundSchema = objectType({
76474
- id: stringType().default("01KADY1D3AHPSRRBKTMHSTXNTB"),
76993
+ id: stringType().default("01KAG3PQ0BSJ51RKX5VR7K3N7N"),
76475
76994
  name: stringType(),
76476
76995
  description: stringType().optional(),
76477
76996
  schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
76478
76997
  });
76479
76998
  UpdateToolResponseBodyTools$outboundSchema = objectType({
76480
- id: stringType().default("01KADY1D3AHPSRRBKTMHSTXNTB"),
76999
+ id: stringType().default("01KAG3PQ0BSJ51RKX5VR7K3N7N"),
76481
77000
  name: stringType(),
76482
77001
  description: stringType().optional(),
76483
77002
  schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
@@ -76507,7 +77026,7 @@ var init_updatetool2 = __esm(() => {
76507
77026
  });
76508
77027
  });
76509
77028
  UpdateToolResponseBody4$inboundSchema = objectType({
76510
- _id: stringType().default("tool_01KADY1D38B8WEZ2J2V12F0X3S"),
77029
+ _id: stringType().default("tool_01KAG3PQ09ZW6DZ6JG4P6HJKNY"),
76511
77030
  path: stringType(),
76512
77031
  key: stringType(),
76513
77032
  display_name: stringType().optional(),
@@ -76534,7 +77053,7 @@ var init_updatetool2 = __esm(() => {
76534
77053
  });
76535
77054
  });
76536
77055
  UpdateToolResponseBody4$outboundSchema = objectType({
76537
- id: stringType().default("tool_01KADY1D38B8WEZ2J2V12F0X3S"),
77056
+ id: stringType().default("tool_01KAG3PQ09ZW6DZ6JG4P6HJKNY"),
76538
77057
  path: stringType(),
76539
77058
  key: stringType(),
76540
77059
  displayName: stringType().optional(),
@@ -76623,7 +77142,7 @@ var init_updatetool2 = __esm(() => {
76623
77142
  arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
76624
77143
  });
76625
77144
  UpdateToolResponseBody3$inboundSchema = objectType({
76626
- _id: stringType().default("tool_01KADY1D36GFD10YPWD7TV064J"),
77145
+ _id: stringType().default("tool_01KAG3PQ0645R48T8DP2RM2EDW"),
76627
77146
  path: stringType(),
76628
77147
  key: stringType(),
76629
77148
  display_name: stringType().optional(),
@@ -76650,7 +77169,7 @@ var init_updatetool2 = __esm(() => {
76650
77169
  });
76651
77170
  });
76652
77171
  UpdateToolResponseBody3$outboundSchema = objectType({
76653
- id: stringType().default("tool_01KADY1D36GFD10YPWD7TV064J"),
77172
+ id: stringType().default("tool_01KAG3PQ0645R48T8DP2RM2EDW"),
76654
77173
  path: stringType(),
76655
77174
  key: stringType(),
76656
77175
  displayName: stringType().optional(),
@@ -76711,7 +77230,7 @@ var init_updatetool2 = __esm(() => {
76711
77230
  strict: booleanType().optional()
76712
77231
  });
76713
77232
  UpdateToolResponseBody2$inboundSchema = objectType({
76714
- _id: stringType().default("tool_01KADY1D34D4H2R9AT1XQ7GDWA"),
77233
+ _id: stringType().default("tool_01KAG3PQ0407SQMK2W3E1HNH6X"),
76715
77234
  path: stringType(),
76716
77235
  key: stringType(),
76717
77236
  display_name: stringType().optional(),
@@ -76739,7 +77258,7 @@ var init_updatetool2 = __esm(() => {
76739
77258
  });
76740
77259
  });
76741
77260
  UpdateToolResponseBody2$outboundSchema = objectType({
76742
- id: stringType().default("tool_01KADY1D34D4H2R9AT1XQ7GDWA"),
77261
+ id: stringType().default("tool_01KAG3PQ0407SQMK2W3E1HNH6X"),
76743
77262
  path: stringType(),
76744
77263
  key: stringType(),
76745
77264
  displayName: stringType().optional(),
@@ -76803,7 +77322,7 @@ var init_updatetool2 = __esm(() => {
76803
77322
  parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
76804
77323
  });
76805
77324
  UpdateToolResponseBody1$inboundSchema = objectType({
76806
- _id: stringType().default("tool_01KADY1D33GBD209YBAPFR54QX"),
77325
+ _id: stringType().default("tool_01KAG3PQ02HFYDKCSWKC1M6PYK"),
76807
77326
  path: stringType(),
76808
77327
  key: stringType(),
76809
77328
  display_name: stringType().optional(),
@@ -76830,7 +77349,7 @@ var init_updatetool2 = __esm(() => {
76830
77349
  });
76831
77350
  });
76832
77351
  UpdateToolResponseBody1$outboundSchema = objectType({
76833
- id: stringType().default("tool_01KADY1D33GBD209YBAPFR54QX"),
77352
+ id: stringType().default("tool_01KAG3PQ02HFYDKCSWKC1M6PYK"),
76834
77353
  path: stringType(),
76835
77354
  key: stringType(),
76836
77355
  displayName: stringType().optional(),
@@ -76915,7 +77434,7 @@ var init_operations = __esm(() => {
76915
77434
  init_filelist();
76916
77435
  init_fileupload();
76917
77436
  init_getagent2();
76918
- init_getagenttask2();
77437
+ init_getagenttask();
76919
77438
  init_getallmemories();
76920
77439
  init_getallmemorydocuments();
76921
77440
  init_getallmemorystores();
@@ -77269,7 +77788,7 @@ async function $do3(client, request, options) {
77269
77788
  return [doResult, { status: "request-error", request: req }];
77270
77789
  }
77271
77790
  const response = doResult.value;
77272
- const [result] = await match(json(200, InvokeAgentResponseBody$inboundSchema), fail("4XX"), fail("5XX"))(response, req);
77791
+ const [result] = await match(json(200, InvokeAgentA2ATaskResponse$inboundSchema), fail("4XX"), fail("5XX"))(response, req);
77273
77792
  if (!result.ok) {
77274
77793
  return [result, { status: "complete", request: req, response }];
77275
77794
  }
@@ -77593,7 +78112,7 @@ async function $do6(client, request, options) {
77593
78112
  const responseFields = {
77594
78113
  HttpMeta: { Response: response, Request: req }
77595
78114
  };
77596
- const [result] = await match(json(200, ListAgentTasksResponseBody$inboundSchema2), jsonErr(404, ListAgentTasksResponseBody$inboundSchema), fail("4XX"), fail("5XX"))(response, req, { extraFields: responseFields });
78115
+ const [result] = await match(json(200, ListAgentTasksAgentTasksListResponse$inboundSchema), jsonErr(404, ListAgentTasksResponseBody$inboundSchema), fail("4XX"), fail("5XX"))(response, req, { extraFields: responseFields });
77597
78116
  if (!result.ok) {
77598
78117
  return [result, { status: "complete", request: req, response }];
77599
78118
  }
@@ -77923,7 +78442,7 @@ async function $do9(client, request, options) {
77923
78442
  const responseFields = {
77924
78443
  HttpMeta: { Response: response, Request: req }
77925
78444
  };
77926
- const [result] = await match(json(200, GetAgentTaskResponseBody$inboundSchema2), jsonErr(404, GetAgentTaskResponseBody$inboundSchema), fail("4XX"), fail("5XX"))(response, req, { extraFields: responseFields });
78445
+ const [result] = await match(json(200, GetAgentTaskExtendedTaskResponse$inboundSchema), jsonErr(404, HonoApiError$inboundSchema), fail("4XX"), fail("5XX"))(response, req, { extraFields: responseFields });
77927
78446
  if (!result.ok) {
77928
78447
  return [result, { status: "complete", request: req, response }];
77929
78448
  }
@@ -78023,7 +78542,7 @@ async function $do10(client, request, options) {
78023
78542
  return [doResult, { status: "request-error", request: req }];
78024
78543
  }
78025
78544
  const response = doResult.value;
78026
- const [result] = await match(json(200, RunAgentResponseBody$inboundSchema), fail("4XX"), fail("5XX"))(response, req);
78545
+ const [result] = await match(json(200, RunAgentA2ATaskResponse$inboundSchema), fail("4XX"), fail("5XX"))(response, req);
78027
78546
  if (!result.ok) {
78028
78547
  return [result, { status: "complete", request: req, response }];
78029
78548
  }
@@ -88974,7 +89493,7 @@ Updates a tool in the workspace.`,
88974
89493
  function createMCPServer(deps) {
88975
89494
  const server = new McpServer({
88976
89495
  name: "Orq",
88977
- version: "4.0.0-rc.50"
89496
+ version: "4.0.0-rc.52"
88978
89497
  });
88979
89498
  const client = new OrqCore({
88980
89499
  apiKey: deps.apiKey,
@@ -89004,7 +89523,6 @@ function createMCPServer(deps) {
89004
89523
  tool(tool$deploymentsList);
89005
89524
  tool(tool$deploymentsGetConfig);
89006
89525
  tool(tool$deploymentsStream);
89007
- tool(tool$agentsRetrieveTask);
89008
89526
  tool(tool$agentsCreate);
89009
89527
  tool(tool$agentsList);
89010
89528
  tool(tool$agentsDelete);
@@ -89012,6 +89530,7 @@ function createMCPServer(deps) {
89012
89530
  tool(tool$agentsUpdate);
89013
89531
  tool(tool$agentsInvoke);
89014
89532
  tool(tool$agentsListTasks);
89533
+ tool(tool$agentsRetrieveTask);
89015
89534
  tool(tool$agentsRun);
89016
89535
  tool(tool$agentsStreamRun);
89017
89536
  tool(tool$agentsStream);
@@ -90388,7 +90907,7 @@ var routes = rn({
90388
90907
  var app = Ve(routes, {
90389
90908
  name: "mcp",
90390
90909
  versionInfo: {
90391
- currentVersion: "4.0.0-rc.50"
90910
+ currentVersion: "4.0.0-rc.52"
90392
90911
  }
90393
90912
  });
90394
90913
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -90396,5 +90915,5 @@ export {
90396
90915
  app
90397
90916
  };
90398
90917
 
90399
- //# debugId=08488912E60E737364756E2164756E21
90918
+ //# debugId=5A7D9EF3DA6ED5E964756E2164756E21
90400
90919
  //# sourceMappingURL=mcp-server.js.map