@orq-ai/node 3.14.25 → 3.14.28

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 (142) hide show
  1. package/bin/mcp-server.js +302 -300
  2. package/bin/mcp-server.js.map +41 -41
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +3 -3
  6. package/lib/config.js +3 -3
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/operations/createagent.d.ts +11 -11
  10. package/models/operations/createagent.d.ts.map +1 -1
  11. package/models/operations/createagent.js +22 -22
  12. package/models/operations/createagent.js.map +1 -1
  13. package/models/operations/createbudget.js +2 -2
  14. package/models/operations/createcontact.js +2 -2
  15. package/models/operations/createdataset.js +2 -2
  16. package/models/operations/createdatasetitem.js +8 -8
  17. package/models/operations/createdatasource.js +2 -2
  18. package/models/operations/createeval.js +28 -28
  19. package/models/operations/createtool.js +10 -10
  20. package/models/operations/duplicatetool.js +10 -10
  21. package/models/operations/fileget.js +2 -2
  22. package/models/operations/filelist.js +2 -2
  23. package/models/operations/fileupload.js +2 -2
  24. package/models/operations/getalltools.js +10 -10
  25. package/models/operations/getbudget.js +2 -2
  26. package/models/operations/getevals.js +28 -28
  27. package/models/operations/listagenttasks.d.ts +6 -0
  28. package/models/operations/listagenttasks.d.ts.map +1 -1
  29. package/models/operations/listagenttasks.js +2 -0
  30. package/models/operations/listagenttasks.js.map +1 -1
  31. package/models/operations/listbudgets.js +2 -2
  32. package/models/operations/listcontacts.js +2 -2
  33. package/models/operations/listdatasetdatapoints.js +8 -8
  34. package/models/operations/listdatasets.js +2 -2
  35. package/models/operations/listdatasources.js +2 -2
  36. package/models/operations/retrievecontact.js +2 -2
  37. package/models/operations/retrievedatapoint.js +8 -8
  38. package/models/operations/retrievedataset.js +2 -2
  39. package/models/operations/retrievedatasource.js +2 -2
  40. package/models/operations/retrievetool.js +10 -10
  41. package/models/operations/runagent.d.ts +11 -11
  42. package/models/operations/runagent.d.ts.map +1 -1
  43. package/models/operations/runagent.js +22 -22
  44. package/models/operations/runagent.js.map +1 -1
  45. package/models/operations/streamrunagent.d.ts +11 -11
  46. package/models/operations/streamrunagent.d.ts.map +1 -1
  47. package/models/operations/streamrunagent.js +22 -22
  48. package/models/operations/streamrunagent.js.map +1 -1
  49. package/models/operations/updateagent.d.ts +11 -11
  50. package/models/operations/updateagent.d.ts.map +1 -1
  51. package/models/operations/updateagent.js +22 -22
  52. package/models/operations/updateagent.js.map +1 -1
  53. package/models/operations/updatebudget.js +2 -2
  54. package/models/operations/updatecontact.js +2 -2
  55. package/models/operations/updatedatapoint.js +8 -8
  56. package/models/operations/updatedataset.js +2 -2
  57. package/models/operations/updatedatasource.js +2 -2
  58. package/models/operations/updateeval.js +28 -28
  59. package/models/operations/updatetool.js +10 -10
  60. package/package.json +1 -1
  61. package/packages/orq-rc/examples/package-lock.json +1 -1
  62. package/packages/orq-rc/jsr.json +1 -1
  63. package/packages/orq-rc/package-lock.json +2 -2
  64. package/packages/orq-rc/package.json +1 -1
  65. package/packages/orq-rc/src/lib/config.ts +3 -3
  66. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  67. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  68. package/packages/orq-rc/src/models/operations/createagent.ts +33 -33
  69. package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
  70. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  71. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  72. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
  73. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  74. package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
  75. package/packages/orq-rc/src/models/operations/createtool.ts +10 -10
  76. package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
  77. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  78. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  79. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  80. package/packages/orq-rc/src/models/operations/getalltools.ts +10 -10
  81. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
  82. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  83. package/packages/orq-rc/src/models/operations/listagenttasks.ts +4 -0
  84. package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
  85. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  86. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
  87. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  88. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  89. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  90. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
  91. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  92. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  93. package/packages/orq-rc/src/models/operations/retrievetool.ts +10 -10
  94. package/packages/orq-rc/src/models/operations/runagent.ts +33 -33
  95. package/packages/orq-rc/src/models/operations/streamrunagent.ts +33 -33
  96. package/packages/orq-rc/src/models/operations/updateagent.ts +33 -33
  97. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
  98. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  99. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
  100. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  101. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  102. package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
  103. package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
  104. package/src/lib/config.ts +3 -3
  105. package/src/mcp-server/mcp-server.ts +1 -1
  106. package/src/mcp-server/server.ts +1 -1
  107. package/src/models/operations/createagent.ts +33 -33
  108. package/src/models/operations/createbudget.ts +2 -2
  109. package/src/models/operations/createcontact.ts +2 -2
  110. package/src/models/operations/createdataset.ts +2 -2
  111. package/src/models/operations/createdatasetitem.ts +8 -8
  112. package/src/models/operations/createdatasource.ts +2 -2
  113. package/src/models/operations/createeval.ts +28 -28
  114. package/src/models/operations/createtool.ts +10 -10
  115. package/src/models/operations/duplicatetool.ts +10 -10
  116. package/src/models/operations/fileget.ts +2 -2
  117. package/src/models/operations/filelist.ts +2 -2
  118. package/src/models/operations/fileupload.ts +2 -2
  119. package/src/models/operations/getalltools.ts +10 -10
  120. package/src/models/operations/getbudget.ts +2 -2
  121. package/src/models/operations/getevals.ts +28 -28
  122. package/src/models/operations/listagenttasks.ts +4 -0
  123. package/src/models/operations/listbudgets.ts +2 -2
  124. package/src/models/operations/listcontacts.ts +2 -2
  125. package/src/models/operations/listdatasetdatapoints.ts +8 -8
  126. package/src/models/operations/listdatasets.ts +2 -2
  127. package/src/models/operations/listdatasources.ts +2 -2
  128. package/src/models/operations/retrievecontact.ts +2 -2
  129. package/src/models/operations/retrievedatapoint.ts +8 -8
  130. package/src/models/operations/retrievedataset.ts +2 -2
  131. package/src/models/operations/retrievedatasource.ts +2 -2
  132. package/src/models/operations/retrievetool.ts +10 -10
  133. package/src/models/operations/runagent.ts +33 -33
  134. package/src/models/operations/streamrunagent.ts +33 -33
  135. package/src/models/operations/updateagent.ts +33 -33
  136. package/src/models/operations/updatebudget.ts +2 -2
  137. package/src/models/operations/updatecontact.ts +2 -2
  138. package/src/models/operations/updatedatapoint.ts +8 -8
  139. package/src/models/operations/updatedataset.ts +2 -2
  140. package/src/models/operations/updatedatasource.ts +2 -2
  141. package/src/models/operations/updateeval.ts +28 -28
  142. package/src/models/operations/updatetool.ts +10 -10
@@ -4893,7 +4893,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
4893
4893
  .default("orq"),
4894
4894
  reviewed_by_id: z.string(),
4895
4895
  reviewed_at: z.string().datetime({ offset: true }).default(
4896
- "2025-11-07T06:52:50.457Z",
4896
+ "2025-11-08T09:16:46.571Z",
4897
4897
  ).transform(v => new Date(v)),
4898
4898
  type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
4899
4899
  values: z.array(z.string()),
@@ -4930,7 +4930,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
4930
4930
  source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
4931
4931
  .default("orq"),
4932
4932
  reviewedById: z.string(),
4933
- reviewedAt: z.date().default(() => new Date("2025-11-07T06:52:50.457Z"))
4933
+ reviewedAt: z.date().default(() => new Date("2025-11-08T09:16:46.571Z"))
4934
4934
  .transform(v => v.toISOString()),
4935
4935
  type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
4936
4936
  values: z.array(z.string()),
@@ -5003,7 +5003,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
5003
5003
  source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
5004
5004
  reviewed_by_id: z.string(),
5005
5005
  reviewed_at: z.string().datetime({ offset: true }).default(
5006
- "2025-11-07T06:52:50.456Z",
5006
+ "2025-11-08T09:16:46.571Z",
5007
5007
  ).transform(v => new Date(v)),
5008
5008
  type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
5009
5009
  value: z.number(),
@@ -5041,7 +5041,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
5041
5041
  "orq",
5042
5042
  ),
5043
5043
  reviewedById: z.string(),
5044
- reviewedAt: z.date().default(() => new Date("2025-11-07T06:52:50.456Z"))
5044
+ reviewedAt: z.date().default(() => new Date("2025-11-08T09:16:46.571Z"))
5045
5045
  .transform(v => v.toISOString()),
5046
5046
  type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
5047
5047
  value: z.number(),
@@ -5112,7 +5112,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
5112
5112
  source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
5113
5113
  reviewed_by_id: z.string(),
5114
5114
  reviewed_at: z.string().datetime({ offset: true }).default(
5115
- "2025-11-07T06:52:50.456Z",
5115
+ "2025-11-08T09:16:46.570Z",
5116
5116
  ).transform(v => new Date(v)),
5117
5117
  type: UpdateDatapointEvaluationsType$inboundSchema,
5118
5118
  value: z.string(),
@@ -5147,7 +5147,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
5147
5147
  humanReviewId: z.string(),
5148
5148
  source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
5149
5149
  reviewedById: z.string(),
5150
- reviewedAt: z.date().default(() => new Date("2025-11-07T06:52:50.456Z"))
5150
+ reviewedAt: z.date().default(() => new Date("2025-11-08T09:16:46.570Z"))
5151
5151
  .transform(v => v.toISOString()),
5152
5152
  type: UpdateDatapointEvaluationsType$outboundSchema,
5153
5153
  value: z.string(),
@@ -5262,7 +5262,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
5262
5262
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
5263
5263
  .optional(),
5264
5264
  updated: z.string().datetime({ offset: true }).default(
5265
- "2025-11-07T06:52:38.992Z",
5265
+ "2025-11-08T09:16:35.289Z",
5266
5266
  ).transform(v => new Date(v)),
5267
5267
  }).transform((v) => {
5268
5268
  return remap$(v, {
@@ -5340,7 +5340,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
5340
5340
  createdById: z.string().optional(),
5341
5341
  updatedById: z.string().optional(),
5342
5342
  created: z.date().transform(v => v.toISOString()).optional(),
5343
- updated: z.date().default(() => new Date("2025-11-07T06:52:38.992Z"))
5343
+ updated: z.date().default(() => new Date("2025-11-08T09:16:35.289Z"))
5344
5344
  .transform(v => v.toISOString()),
5345
5345
  }).transform((v) => {
5346
5346
  return remap$(v, {
@@ -256,7 +256,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
256
256
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
257
257
  .optional(),
258
258
  updated: z.string().datetime({ offset: true }).default(
259
- "2025-11-07T06:52:38.992Z",
259
+ "2025-11-08T09:16:35.289Z",
260
260
  ).transform(v => new Date(v)),
261
261
  }).transform((v) => {
262
262
  return remap$(v, {
@@ -295,7 +295,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
295
295
  createdById: z.string().optional(),
296
296
  updatedById: z.string().optional(),
297
297
  created: z.date().transform(v => v.toISOString()).optional(),
298
- updated: z.date().default(() => new Date("2025-11-07T06:52:38.992Z"))
298
+ updated: z.date().default(() => new Date("2025-11-08T09:16:35.289Z"))
299
299
  .transform(v => v.toISOString()),
300
300
  }).transform((v) => {
301
301
  return remap$(v, {
@@ -202,7 +202,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
202
202
  z.ZodTypeDef,
203
203
  unknown
204
204
  > = z.object({
205
- _id: z.string().default("01K9EHDPREZFRTKKB9QY3HTEAP"),
205
+ _id: z.string().default("01K9HC1ZE366GCTGANE1BKBCWA"),
206
206
  display_name: z.string(),
207
207
  description: z.string().optional(),
208
208
  status: UpdateDatasourceStatus$inboundSchema,
@@ -245,7 +245,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
245
245
  z.ZodTypeDef,
246
246
  UpdateDatasourceResponseBody
247
247
  > = z.object({
248
- id: z.string().default("01K9EHDPREZFRTKKB9QY3HTEAP"),
248
+ id: z.string().default("01K9HC1ZE366GCTGANE1BKBCWA"),
249
249
  displayName: z.string(),
250
250
  description: z.string().optional(),
251
251
  status: UpdateDatasourceStatus$outboundSchema,
@@ -2988,8 +2988,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
2988
2988
  > = z.object({
2989
2989
  _id: z.string(),
2990
2990
  description: z.string(),
2991
- created: z.string().default("2025-11-07T06:52:41.558Z"),
2992
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
2991
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
2992
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
2993
2993
  guardrail_config: z.union([
2994
2994
  z.lazy(() =>
2995
2995
  UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
@@ -3031,8 +3031,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
3031
3031
  > = z.object({
3032
3032
  id: z.string(),
3033
3033
  description: z.string(),
3034
- created: z.string().default("2025-11-07T06:52:41.558Z"),
3035
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
3034
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
3035
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
3036
3036
  guardrailConfig: z.union([
3037
3037
  z.lazy(() =>
3038
3038
  UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
@@ -3322,8 +3322,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
3322
3322
  > = z.object({
3323
3323
  _id: z.string(),
3324
3324
  description: z.string(),
3325
- created: z.string().default("2025-11-07T06:52:41.558Z"),
3326
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
3325
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
3326
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
3327
3327
  guardrail_config: z.union([
3328
3328
  z.lazy(() =>
3329
3329
  UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
@@ -3368,8 +3368,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
3368
3368
  > = z.object({
3369
3369
  id: z.string(),
3370
3370
  description: z.string(),
3371
- created: z.string().default("2025-11-07T06:52:41.558Z"),
3372
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
3371
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
3372
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
3373
3373
  guardrailConfig: z.union([
3374
3374
  z.lazy(() =>
3375
3375
  UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
@@ -5707,8 +5707,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
5707
5707
  > = z.object({
5708
5708
  _id: z.string(),
5709
5709
  description: z.string(),
5710
- created: z.string().default("2025-11-07T06:52:41.558Z"),
5711
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
5710
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
5711
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
5712
5712
  guardrail_config: z.union([
5713
5713
  z.lazy(() =>
5714
5714
  UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
@@ -5821,8 +5821,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
5821
5821
  > = z.object({
5822
5822
  id: z.string(),
5823
5823
  description: z.string(),
5824
- created: z.string().default("2025-11-07T06:52:41.558Z"),
5825
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
5824
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
5825
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
5826
5826
  guardrailConfig: z.union([
5827
5827
  z.lazy(() =>
5828
5828
  UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
@@ -6138,8 +6138,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
6138
6138
  > = z.object({
6139
6139
  _id: z.string(),
6140
6140
  description: z.string(),
6141
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6142
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6141
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6142
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6143
6143
  guardrail_config: z.union([
6144
6144
  z.lazy(() =>
6145
6145
  UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -6180,8 +6180,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
6180
6180
  > = z.object({
6181
6181
  id: z.string(),
6182
6182
  description: z.string(),
6183
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6184
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6183
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6184
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6185
6185
  guardrailConfig: z.union([
6186
6186
  z.lazy(() =>
6187
6187
  UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
@@ -6466,8 +6466,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
6466
6466
  > = z.object({
6467
6467
  _id: z.string(),
6468
6468
  description: z.string(),
6469
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6470
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6469
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6470
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6471
6471
  guardrail_config: z.union([
6472
6472
  z.lazy(() =>
6473
6473
  UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -6514,8 +6514,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
6514
6514
  > = z.object({
6515
6515
  id: z.string(),
6516
6516
  description: z.string(),
6517
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6518
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6517
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6518
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6519
6519
  guardrailConfig: z.union([
6520
6520
  z.lazy(() =>
6521
6521
  UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -6784,8 +6784,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
6784
6784
  > = z.object({
6785
6785
  _id: z.string(),
6786
6786
  description: z.string(),
6787
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6788
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6787
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6788
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6789
6789
  guardrail_config: z.union([
6790
6790
  z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
6791
6791
  z.lazy(() =>
@@ -6824,8 +6824,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
6824
6824
  > = z.object({
6825
6825
  id: z.string(),
6826
6826
  description: z.string(),
6827
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6828
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6827
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6828
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6829
6829
  guardrailConfig: z.union([
6830
6830
  z.lazy(() =>
6831
6831
  UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
@@ -7064,8 +7064,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
7064
7064
  > = z.object({
7065
7065
  _id: z.string(),
7066
7066
  description: z.string(),
7067
- created: z.string().default("2025-11-07T06:52:41.558Z"),
7068
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
7067
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
7068
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
7069
7069
  guardrail_config: z.union([
7070
7070
  z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
7071
7071
  z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -7104,8 +7104,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
7104
7104
  > = z.object({
7105
7105
  id: z.string(),
7106
7106
  description: z.string(),
7107
- created: z.string().default("2025-11-07T06:52:41.558Z"),
7108
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
7107
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
7108
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
7109
7109
  guardrailConfig: z.union([
7110
7110
  z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
7111
7111
  z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
@@ -2251,7 +2251,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
2251
2251
  z.ZodTypeDef,
2252
2252
  unknown
2253
2253
  > = z.object({
2254
- _id: z.string().default("01K9EHDPN54J2QFCSN2K3DJ8RC"),
2254
+ _id: z.string().default("01K9HC1ZAH3MWVK8DTC9GQF2NS"),
2255
2255
  path: z.string(),
2256
2256
  key: z.string(),
2257
2257
  display_name: z.string().optional(),
@@ -2305,7 +2305,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
2305
2305
  z.ZodTypeDef,
2306
2306
  UpdateToolResponseBody5
2307
2307
  > = z.object({
2308
- id: z.string().default("01K9EHDPN54J2QFCSN2K3DJ8RC"),
2308
+ id: z.string().default("01K9HC1ZAH3MWVK8DTC9GQF2NS"),
2309
2309
  path: z.string(),
2310
2310
  key: z.string(),
2311
2311
  displayName: z.string().optional(),
@@ -2563,7 +2563,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
2563
2563
  z.ZodTypeDef,
2564
2564
  unknown
2565
2565
  > = z.object({
2566
- _id: z.string().default("01K9EHDPN3MNVGF3KPT4FY1FFZ"),
2566
+ _id: z.string().default("01K9HC1ZAFNSRKC98V7S6AVTQG"),
2567
2567
  path: z.string(),
2568
2568
  key: z.string(),
2569
2569
  display_name: z.string().optional(),
@@ -2616,7 +2616,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
2616
2616
  z.ZodTypeDef,
2617
2617
  UpdateToolResponseBody4
2618
2618
  > = z.object({
2619
- id: z.string().default("01K9EHDPN3MNVGF3KPT4FY1FFZ"),
2619
+ id: z.string().default("01K9HC1ZAFNSRKC98V7S6AVTQG"),
2620
2620
  path: z.string(),
2621
2621
  key: z.string(),
2622
2622
  displayName: z.string().optional(),
@@ -2905,7 +2905,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
2905
2905
  z.ZodTypeDef,
2906
2906
  unknown
2907
2907
  > = z.object({
2908
- _id: z.string().default("01K9EHDPN0C0NZADEZNBWGNADP"),
2908
+ _id: z.string().default("01K9HC1ZAC7GK78DBEJZ18ZWAD"),
2909
2909
  path: z.string(),
2910
2910
  key: z.string(),
2911
2911
  display_name: z.string().optional(),
@@ -2958,7 +2958,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
2958
2958
  z.ZodTypeDef,
2959
2959
  UpdateToolResponseBody3
2960
2960
  > = z.object({
2961
- id: z.string().default("01K9EHDPN0C0NZADEZNBWGNADP"),
2961
+ id: z.string().default("01K9HC1ZAC7GK78DBEJZ18ZWAD"),
2962
2962
  path: z.string(),
2963
2963
  key: z.string(),
2964
2964
  displayName: z.string().optional(),
@@ -3078,7 +3078,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
3078
3078
  z.ZodTypeDef,
3079
3079
  unknown
3080
3080
  > = z.object({
3081
- _id: z.string().default("01K9EHDPMY5CMX9QG3E4SN6WJE"),
3081
+ _id: z.string().default("01K9HC1ZAA6WNM9YSJ3AN5FRM1"),
3082
3082
  path: z.string(),
3083
3083
  key: z.string(),
3084
3084
  display_name: z.string().optional(),
@@ -3130,7 +3130,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
3130
3130
  z.ZodTypeDef,
3131
3131
  UpdateToolResponseBody2
3132
3132
  > = z.object({
3133
- id: z.string().default("01K9EHDPMY5CMX9QG3E4SN6WJE"),
3133
+ id: z.string().default("01K9HC1ZAA6WNM9YSJ3AN5FRM1"),
3134
3134
  path: z.string(),
3135
3135
  key: z.string(),
3136
3136
  displayName: z.string().optional(),
@@ -3249,7 +3249,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
3249
3249
  z.ZodTypeDef,
3250
3250
  unknown
3251
3251
  > = z.object({
3252
- _id: z.string().default("01K9EHDPMWGTKPZBR215Z1FM00"),
3252
+ _id: z.string().default("01K9HC1ZA9VPVAXN5NY82T2FVS"),
3253
3253
  path: z.string(),
3254
3254
  key: z.string(),
3255
3255
  display_name: z.string().optional(),
@@ -3300,7 +3300,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
3300
3300
  z.ZodTypeDef,
3301
3301
  UpdateToolResponseBody1
3302
3302
  > = z.object({
3303
- id: z.string().default("01K9EHDPMWGTKPZBR215Z1FM00"),
3303
+ id: z.string().default("01K9HC1ZA9VPVAXN5NY82T2FVS"),
3304
3304
  path: z.string(),
3305
3305
  key: z.string(),
3306
3306
  displayName: z.string().optional(),
package/src/lib/config.ts CHANGED
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
68
68
  export const SDK_METADATA = {
69
69
  language: "typescript",
70
70
  openapiDocVersion: "2.0",
71
- sdkVersion: "3.14.25",
72
- genVersion: "2.743.2",
73
- userAgent: "speakeasy-sdk/typescript 3.14.25 2.743.2 2.0 @orq-ai/node",
71
+ sdkVersion: "3.14.28",
72
+ genVersion: "2.745.2",
73
+ userAgent: "speakeasy-sdk/typescript 3.14.28 2.745.2 2.0 @orq-ai/node",
74
74
  } as const;
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
19
19
  export const app = buildApplication(routes, {
20
20
  name: "mcp",
21
21
  versionInfo: {
22
- currentVersion: "3.14.25",
22
+ currentVersion: "3.14.28",
23
23
  },
24
24
  });
25
25
 
@@ -124,7 +124,7 @@ export function createMCPServer(deps: {
124
124
  }) {
125
125
  const server = new McpServer({
126
126
  name: "Orq",
127
- version: "3.14.25",
127
+ version: "3.14.28",
128
128
  });
129
129
 
130
130
  const client = new OrqCore({
@@ -3864,7 +3864,7 @@ export const CurrentDateTool$inboundSchema: z.ZodType<
3864
3864
  > = z.object({
3865
3865
  type:
3866
3866
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
3867
- requires_approval: z.boolean().default(false),
3867
+ requires_approval: z.boolean().optional(),
3868
3868
  }).transform((v) => {
3869
3869
  return remap$(v, {
3870
3870
  "requires_approval": "requiresApproval",
@@ -3873,7 +3873,7 @@ export const CurrentDateTool$inboundSchema: z.ZodType<
3873
3873
  /** @internal */
3874
3874
  export type CurrentDateTool$Outbound = {
3875
3875
  type: string;
3876
- requires_approval: boolean;
3876
+ requires_approval?: boolean | undefined;
3877
3877
  };
3878
3878
 
3879
3879
  /** @internal */
@@ -3884,7 +3884,7 @@ export const CurrentDateTool$outboundSchema: z.ZodType<
3884
3884
  > = z.object({
3885
3885
  type:
3886
3886
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
3887
- requiresApproval: z.boolean().default(false),
3887
+ requiresApproval: z.boolean().optional(),
3888
3888
  }).transform((v) => {
3889
3889
  return remap$(v, {
3890
3890
  requiresApproval: "requires_approval",
@@ -3928,7 +3928,7 @@ export const QueryKnowledgeBaseTool$inboundSchema: z.ZodType<
3928
3928
  > = z.object({
3929
3929
  type:
3930
3930
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
3931
- requires_approval: z.boolean().default(false),
3931
+ requires_approval: z.boolean().optional(),
3932
3932
  }).transform((v) => {
3933
3933
  return remap$(v, {
3934
3934
  "requires_approval": "requiresApproval",
@@ -3937,7 +3937,7 @@ export const QueryKnowledgeBaseTool$inboundSchema: z.ZodType<
3937
3937
  /** @internal */
3938
3938
  export type QueryKnowledgeBaseTool$Outbound = {
3939
3939
  type: string;
3940
- requires_approval: boolean;
3940
+ requires_approval?: boolean | undefined;
3941
3941
  };
3942
3942
 
3943
3943
  /** @internal */
@@ -3948,7 +3948,7 @@ export const QueryKnowledgeBaseTool$outboundSchema: z.ZodType<
3948
3948
  > = z.object({
3949
3949
  type:
3950
3950
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
3951
- requiresApproval: z.boolean().default(false),
3951
+ requiresApproval: z.boolean().optional(),
3952
3952
  }).transform((v) => {
3953
3953
  return remap$(v, {
3954
3954
  requiresApproval: "requires_approval",
@@ -3994,7 +3994,7 @@ export const RetrieveKnowledgeBasesTool$inboundSchema: z.ZodType<
3994
3994
  > = z.object({
3995
3995
  type:
3996
3996
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
3997
- requires_approval: z.boolean().default(false),
3997
+ requires_approval: z.boolean().optional(),
3998
3998
  }).transform((v) => {
3999
3999
  return remap$(v, {
4000
4000
  "requires_approval": "requiresApproval",
@@ -4003,7 +4003,7 @@ export const RetrieveKnowledgeBasesTool$inboundSchema: z.ZodType<
4003
4003
  /** @internal */
4004
4004
  export type RetrieveKnowledgeBasesTool$Outbound = {
4005
4005
  type: string;
4006
- requires_approval: boolean;
4006
+ requires_approval?: boolean | undefined;
4007
4007
  };
4008
4008
 
4009
4009
  /** @internal */
@@ -4014,7 +4014,7 @@ export const RetrieveKnowledgeBasesTool$outboundSchema: z.ZodType<
4014
4014
  > = z.object({
4015
4015
  type:
4016
4016
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
4017
- requiresApproval: z.boolean().default(false),
4017
+ requiresApproval: z.boolean().optional(),
4018
4018
  }).transform((v) => {
4019
4019
  return remap$(v, {
4020
4020
  requiresApproval: "requires_approval",
@@ -4060,7 +4060,7 @@ export const DeleteMemoryDocumentTool$inboundSchema: z.ZodType<
4060
4060
  > = z.object({
4061
4061
  type:
4062
4062
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
4063
- requires_approval: z.boolean().default(false),
4063
+ requires_approval: z.boolean().optional(),
4064
4064
  }).transform((v) => {
4065
4065
  return remap$(v, {
4066
4066
  "requires_approval": "requiresApproval",
@@ -4069,7 +4069,7 @@ export const DeleteMemoryDocumentTool$inboundSchema: z.ZodType<
4069
4069
  /** @internal */
4070
4070
  export type DeleteMemoryDocumentTool$Outbound = {
4071
4071
  type: string;
4072
- requires_approval: boolean;
4072
+ requires_approval?: boolean | undefined;
4073
4073
  };
4074
4074
 
4075
4075
  /** @internal */
@@ -4080,7 +4080,7 @@ export const DeleteMemoryDocumentTool$outboundSchema: z.ZodType<
4080
4080
  > = z.object({
4081
4081
  type:
4082
4082
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
4083
- requiresApproval: z.boolean().default(false),
4083
+ requiresApproval: z.boolean().optional(),
4084
4084
  }).transform((v) => {
4085
4085
  return remap$(v, {
4086
4086
  requiresApproval: "requires_approval",
@@ -4126,7 +4126,7 @@ export const RetrieveMemoryStoresTool$inboundSchema: z.ZodType<
4126
4126
  > = z.object({
4127
4127
  type:
4128
4128
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema,
4129
- requires_approval: z.boolean().default(false),
4129
+ requires_approval: z.boolean().optional(),
4130
4130
  }).transform((v) => {
4131
4131
  return remap$(v, {
4132
4132
  "requires_approval": "requiresApproval",
@@ -4135,7 +4135,7 @@ export const RetrieveMemoryStoresTool$inboundSchema: z.ZodType<
4135
4135
  /** @internal */
4136
4136
  export type RetrieveMemoryStoresTool$Outbound = {
4137
4137
  type: string;
4138
- requires_approval: boolean;
4138
+ requires_approval?: boolean | undefined;
4139
4139
  };
4140
4140
 
4141
4141
  /** @internal */
@@ -4146,7 +4146,7 @@ export const RetrieveMemoryStoresTool$outboundSchema: z.ZodType<
4146
4146
  > = z.object({
4147
4147
  type:
4148
4148
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema,
4149
- requiresApproval: z.boolean().default(false),
4149
+ requiresApproval: z.boolean().optional(),
4150
4150
  }).transform((v) => {
4151
4151
  return remap$(v, {
4152
4152
  requiresApproval: "requires_approval",
@@ -4192,7 +4192,7 @@ export const WriteMemoryStoreTool$inboundSchema: z.ZodType<
4192
4192
  > = z.object({
4193
4193
  type:
4194
4194
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema,
4195
- requires_approval: z.boolean().default(false),
4195
+ requires_approval: z.boolean().optional(),
4196
4196
  }).transform((v) => {
4197
4197
  return remap$(v, {
4198
4198
  "requires_approval": "requiresApproval",
@@ -4201,7 +4201,7 @@ export const WriteMemoryStoreTool$inboundSchema: z.ZodType<
4201
4201
  /** @internal */
4202
4202
  export type WriteMemoryStoreTool$Outbound = {
4203
4203
  type: string;
4204
- requires_approval: boolean;
4204
+ requires_approval?: boolean | undefined;
4205
4205
  };
4206
4206
 
4207
4207
  /** @internal */
@@ -4212,7 +4212,7 @@ export const WriteMemoryStoreTool$outboundSchema: z.ZodType<
4212
4212
  > = z.object({
4213
4213
  type:
4214
4214
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema,
4215
- requiresApproval: z.boolean().default(false),
4215
+ requiresApproval: z.boolean().optional(),
4216
4216
  }).transform((v) => {
4217
4217
  return remap$(v, {
4218
4218
  requiresApproval: "requires_approval",
@@ -4254,7 +4254,7 @@ export const QueryMemoryStoreTool$inboundSchema: z.ZodType<
4254
4254
  unknown
4255
4255
  > = z.object({
4256
4256
  type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema,
4257
- requires_approval: z.boolean().default(false),
4257
+ requires_approval: z.boolean().optional(),
4258
4258
  }).transform((v) => {
4259
4259
  return remap$(v, {
4260
4260
  "requires_approval": "requiresApproval",
@@ -4263,7 +4263,7 @@ export const QueryMemoryStoreTool$inboundSchema: z.ZodType<
4263
4263
  /** @internal */
4264
4264
  export type QueryMemoryStoreTool$Outbound = {
4265
4265
  type: string;
4266
- requires_approval: boolean;
4266
+ requires_approval?: boolean | undefined;
4267
4267
  };
4268
4268
 
4269
4269
  /** @internal */
@@ -4274,7 +4274,7 @@ export const QueryMemoryStoreTool$outboundSchema: z.ZodType<
4274
4274
  > = z.object({
4275
4275
  type:
4276
4276
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema,
4277
- requiresApproval: z.boolean().default(false),
4277
+ requiresApproval: z.boolean().optional(),
4278
4278
  }).transform((v) => {
4279
4279
  return remap$(v, {
4280
4280
  requiresApproval: "requires_approval",
@@ -4314,7 +4314,7 @@ export const RetrieveAgentsTool$inboundSchema: z.ZodType<
4314
4314
  unknown
4315
4315
  > = z.object({
4316
4316
  type: CreateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema,
4317
- requires_approval: z.boolean().default(false),
4317
+ requires_approval: z.boolean().optional(),
4318
4318
  }).transform((v) => {
4319
4319
  return remap$(v, {
4320
4320
  "requires_approval": "requiresApproval",
@@ -4323,7 +4323,7 @@ export const RetrieveAgentsTool$inboundSchema: z.ZodType<
4323
4323
  /** @internal */
4324
4324
  export type RetrieveAgentsTool$Outbound = {
4325
4325
  type: string;
4326
- requires_approval: boolean;
4326
+ requires_approval?: boolean | undefined;
4327
4327
  };
4328
4328
 
4329
4329
  /** @internal */
@@ -4333,7 +4333,7 @@ export const RetrieveAgentsTool$outboundSchema: z.ZodType<
4333
4333
  RetrieveAgentsTool
4334
4334
  > = z.object({
4335
4335
  type: CreateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema,
4336
- requiresApproval: z.boolean().default(false),
4336
+ requiresApproval: z.boolean().optional(),
4337
4337
  }).transform((v) => {
4338
4338
  return remap$(v, {
4339
4339
  requiresApproval: "requires_approval",
@@ -4373,7 +4373,7 @@ export const CallSubAgentTool$inboundSchema: z.ZodType<
4373
4373
  unknown
4374
4374
  > = z.object({
4375
4375
  type: CreateAgentAgentToolInputCRUDAgentsType$inboundSchema,
4376
- requires_approval: z.boolean().default(false),
4376
+ requires_approval: z.boolean().optional(),
4377
4377
  }).transform((v) => {
4378
4378
  return remap$(v, {
4379
4379
  "requires_approval": "requiresApproval",
@@ -4382,7 +4382,7 @@ export const CallSubAgentTool$inboundSchema: z.ZodType<
4382
4382
  /** @internal */
4383
4383
  export type CallSubAgentTool$Outbound = {
4384
4384
  type: string;
4385
- requires_approval: boolean;
4385
+ requires_approval?: boolean | undefined;
4386
4386
  };
4387
4387
 
4388
4388
  /** @internal */
@@ -4392,7 +4392,7 @@ export const CallSubAgentTool$outboundSchema: z.ZodType<
4392
4392
  CallSubAgentTool
4393
4393
  > = z.object({
4394
4394
  type: CreateAgentAgentToolInputCRUDAgentsType$outboundSchema,
4395
- requiresApproval: z.boolean().default(false),
4395
+ requiresApproval: z.boolean().optional(),
4396
4396
  }).transform((v) => {
4397
4397
  return remap$(v, {
4398
4398
  requiresApproval: "requires_approval",
@@ -4432,7 +4432,7 @@ export const WebScraperTool$inboundSchema: z.ZodType<
4432
4432
  unknown
4433
4433
  > = z.object({
4434
4434
  type: CreateAgentAgentToolInputCRUDType$inboundSchema,
4435
- requires_approval: z.boolean().default(false),
4435
+ requires_approval: z.boolean().optional(),
4436
4436
  }).transform((v) => {
4437
4437
  return remap$(v, {
4438
4438
  "requires_approval": "requiresApproval",
@@ -4441,7 +4441,7 @@ export const WebScraperTool$inboundSchema: z.ZodType<
4441
4441
  /** @internal */
4442
4442
  export type WebScraperTool$Outbound = {
4443
4443
  type: string;
4444
- requires_approval: boolean;
4444
+ requires_approval?: boolean | undefined;
4445
4445
  };
4446
4446
 
4447
4447
  /** @internal */
@@ -4451,7 +4451,7 @@ export const WebScraperTool$outboundSchema: z.ZodType<
4451
4451
  WebScraperTool
4452
4452
  > = z.object({
4453
4453
  type: CreateAgentAgentToolInputCRUDType$outboundSchema,
4454
- requiresApproval: z.boolean().default(false),
4454
+ requiresApproval: z.boolean().optional(),
4455
4455
  }).transform((v) => {
4456
4456
  return remap$(v, {
4457
4457
  requiresApproval: "requires_approval",
@@ -4487,7 +4487,7 @@ export const GoogleSearchTool$inboundSchema: z.ZodType<
4487
4487
  unknown
4488
4488
  > = z.object({
4489
4489
  type: AgentToolInputCRUDType$inboundSchema,
4490
- requires_approval: z.boolean().default(false),
4490
+ requires_approval: z.boolean().optional(),
4491
4491
  }).transform((v) => {
4492
4492
  return remap$(v, {
4493
4493
  "requires_approval": "requiresApproval",
@@ -4496,7 +4496,7 @@ export const GoogleSearchTool$inboundSchema: z.ZodType<
4496
4496
  /** @internal */
4497
4497
  export type GoogleSearchTool$Outbound = {
4498
4498
  type: string;
4499
- requires_approval: boolean;
4499
+ requires_approval?: boolean | undefined;
4500
4500
  };
4501
4501
 
4502
4502
  /** @internal */
@@ -4506,7 +4506,7 @@ export const GoogleSearchTool$outboundSchema: z.ZodType<
4506
4506
  GoogleSearchTool
4507
4507
  > = z.object({
4508
4508
  type: AgentToolInputCRUDType$outboundSchema,
4509
- requiresApproval: z.boolean().default(false),
4509
+ requiresApproval: z.boolean().optional(),
4510
4510
  }).transform((v) => {
4511
4511
  return remap$(v, {
4512
4512
  requiresApproval: "requires_approval",