@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
@@ -3876,7 +3876,7 @@ export const CurrentDateTool$inboundSchema: z.ZodType<
3876
3876
  > = z.object({
3877
3877
  type:
3878
3878
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
3879
- requires_approval: z.boolean().default(false),
3879
+ requires_approval: z.boolean().optional(),
3880
3880
  }).transform((v) => {
3881
3881
  return remap$(v, {
3882
3882
  "requires_approval": "requiresApproval",
@@ -3885,7 +3885,7 @@ export const CurrentDateTool$inboundSchema: z.ZodType<
3885
3885
  /** @internal */
3886
3886
  export type CurrentDateTool$Outbound = {
3887
3887
  type: string;
3888
- requires_approval: boolean;
3888
+ requires_approval?: boolean | undefined;
3889
3889
  };
3890
3890
 
3891
3891
  /** @internal */
@@ -3896,7 +3896,7 @@ export const CurrentDateTool$outboundSchema: z.ZodType<
3896
3896
  > = z.object({
3897
3897
  type:
3898
3898
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
3899
- requiresApproval: z.boolean().default(false),
3899
+ requiresApproval: z.boolean().optional(),
3900
3900
  }).transform((v) => {
3901
3901
  return remap$(v, {
3902
3902
  requiresApproval: "requires_approval",
@@ -3940,7 +3940,7 @@ export const QueryKnowledgeBaseTool$inboundSchema: z.ZodType<
3940
3940
  > = z.object({
3941
3941
  type:
3942
3942
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
3943
- requires_approval: z.boolean().default(false),
3943
+ requires_approval: z.boolean().optional(),
3944
3944
  }).transform((v) => {
3945
3945
  return remap$(v, {
3946
3946
  "requires_approval": "requiresApproval",
@@ -3949,7 +3949,7 @@ export const QueryKnowledgeBaseTool$inboundSchema: z.ZodType<
3949
3949
  /** @internal */
3950
3950
  export type QueryKnowledgeBaseTool$Outbound = {
3951
3951
  type: string;
3952
- requires_approval: boolean;
3952
+ requires_approval?: boolean | undefined;
3953
3953
  };
3954
3954
 
3955
3955
  /** @internal */
@@ -3960,7 +3960,7 @@ export const QueryKnowledgeBaseTool$outboundSchema: z.ZodType<
3960
3960
  > = z.object({
3961
3961
  type:
3962
3962
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
3963
- requiresApproval: z.boolean().default(false),
3963
+ requiresApproval: z.boolean().optional(),
3964
3964
  }).transform((v) => {
3965
3965
  return remap$(v, {
3966
3966
  requiresApproval: "requires_approval",
@@ -4006,7 +4006,7 @@ export const RetrieveKnowledgeBasesTool$inboundSchema: z.ZodType<
4006
4006
  > = z.object({
4007
4007
  type:
4008
4008
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
4009
- requires_approval: z.boolean().default(false),
4009
+ requires_approval: z.boolean().optional(),
4010
4010
  }).transform((v) => {
4011
4011
  return remap$(v, {
4012
4012
  "requires_approval": "requiresApproval",
@@ -4015,7 +4015,7 @@ export const RetrieveKnowledgeBasesTool$inboundSchema: z.ZodType<
4015
4015
  /** @internal */
4016
4016
  export type RetrieveKnowledgeBasesTool$Outbound = {
4017
4017
  type: string;
4018
- requires_approval: boolean;
4018
+ requires_approval?: boolean | undefined;
4019
4019
  };
4020
4020
 
4021
4021
  /** @internal */
@@ -4026,7 +4026,7 @@ export const RetrieveKnowledgeBasesTool$outboundSchema: z.ZodType<
4026
4026
  > = z.object({
4027
4027
  type:
4028
4028
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
4029
- requiresApproval: z.boolean().default(false),
4029
+ requiresApproval: z.boolean().optional(),
4030
4030
  }).transform((v) => {
4031
4031
  return remap$(v, {
4032
4032
  requiresApproval: "requires_approval",
@@ -4072,7 +4072,7 @@ export const DeleteMemoryDocumentTool$inboundSchema: z.ZodType<
4072
4072
  > = z.object({
4073
4073
  type:
4074
4074
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
4075
- requires_approval: z.boolean().default(false),
4075
+ requires_approval: z.boolean().optional(),
4076
4076
  }).transform((v) => {
4077
4077
  return remap$(v, {
4078
4078
  "requires_approval": "requiresApproval",
@@ -4081,7 +4081,7 @@ export const DeleteMemoryDocumentTool$inboundSchema: z.ZodType<
4081
4081
  /** @internal */
4082
4082
  export type DeleteMemoryDocumentTool$Outbound = {
4083
4083
  type: string;
4084
- requires_approval: boolean;
4084
+ requires_approval?: boolean | undefined;
4085
4085
  };
4086
4086
 
4087
4087
  /** @internal */
@@ -4092,7 +4092,7 @@ export const DeleteMemoryDocumentTool$outboundSchema: z.ZodType<
4092
4092
  > = z.object({
4093
4093
  type:
4094
4094
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
4095
- requiresApproval: z.boolean().default(false),
4095
+ requiresApproval: z.boolean().optional(),
4096
4096
  }).transform((v) => {
4097
4097
  return remap$(v, {
4098
4098
  requiresApproval: "requires_approval",
@@ -4138,7 +4138,7 @@ export const RetrieveMemoryStoresTool$inboundSchema: z.ZodType<
4138
4138
  > = z.object({
4139
4139
  type:
4140
4140
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema,
4141
- requires_approval: z.boolean().default(false),
4141
+ requires_approval: z.boolean().optional(),
4142
4142
  }).transform((v) => {
4143
4143
  return remap$(v, {
4144
4144
  "requires_approval": "requiresApproval",
@@ -4147,7 +4147,7 @@ export const RetrieveMemoryStoresTool$inboundSchema: z.ZodType<
4147
4147
  /** @internal */
4148
4148
  export type RetrieveMemoryStoresTool$Outbound = {
4149
4149
  type: string;
4150
- requires_approval: boolean;
4150
+ requires_approval?: boolean | undefined;
4151
4151
  };
4152
4152
 
4153
4153
  /** @internal */
@@ -4158,7 +4158,7 @@ export const RetrieveMemoryStoresTool$outboundSchema: z.ZodType<
4158
4158
  > = z.object({
4159
4159
  type:
4160
4160
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema,
4161
- requiresApproval: z.boolean().default(false),
4161
+ requiresApproval: z.boolean().optional(),
4162
4162
  }).transform((v) => {
4163
4163
  return remap$(v, {
4164
4164
  requiresApproval: "requires_approval",
@@ -4204,7 +4204,7 @@ export const WriteMemoryStoreTool$inboundSchema: z.ZodType<
4204
4204
  > = z.object({
4205
4205
  type:
4206
4206
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema,
4207
- requires_approval: z.boolean().default(false),
4207
+ requires_approval: z.boolean().optional(),
4208
4208
  }).transform((v) => {
4209
4209
  return remap$(v, {
4210
4210
  "requires_approval": "requiresApproval",
@@ -4213,7 +4213,7 @@ export const WriteMemoryStoreTool$inboundSchema: z.ZodType<
4213
4213
  /** @internal */
4214
4214
  export type WriteMemoryStoreTool$Outbound = {
4215
4215
  type: string;
4216
- requires_approval: boolean;
4216
+ requires_approval?: boolean | undefined;
4217
4217
  };
4218
4218
 
4219
4219
  /** @internal */
@@ -4224,7 +4224,7 @@ export const WriteMemoryStoreTool$outboundSchema: z.ZodType<
4224
4224
  > = z.object({
4225
4225
  type:
4226
4226
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema,
4227
- requiresApproval: z.boolean().default(false),
4227
+ requiresApproval: z.boolean().optional(),
4228
4228
  }).transform((v) => {
4229
4229
  return remap$(v, {
4230
4230
  requiresApproval: "requires_approval",
@@ -4266,7 +4266,7 @@ export const QueryMemoryStoreTool$inboundSchema: z.ZodType<
4266
4266
  unknown
4267
4267
  > = z.object({
4268
4268
  type: CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema,
4269
- requires_approval: z.boolean().default(false),
4269
+ requires_approval: z.boolean().optional(),
4270
4270
  }).transform((v) => {
4271
4271
  return remap$(v, {
4272
4272
  "requires_approval": "requiresApproval",
@@ -4275,7 +4275,7 @@ export const QueryMemoryStoreTool$inboundSchema: z.ZodType<
4275
4275
  /** @internal */
4276
4276
  export type QueryMemoryStoreTool$Outbound = {
4277
4277
  type: string;
4278
- requires_approval: boolean;
4278
+ requires_approval?: boolean | undefined;
4279
4279
  };
4280
4280
 
4281
4281
  /** @internal */
@@ -4286,7 +4286,7 @@ export const QueryMemoryStoreTool$outboundSchema: z.ZodType<
4286
4286
  > = z.object({
4287
4287
  type:
4288
4288
  CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema,
4289
- requiresApproval: z.boolean().default(false),
4289
+ requiresApproval: z.boolean().optional(),
4290
4290
  }).transform((v) => {
4291
4291
  return remap$(v, {
4292
4292
  requiresApproval: "requires_approval",
@@ -4326,7 +4326,7 @@ export const RetrieveAgentsTool$inboundSchema: z.ZodType<
4326
4326
  unknown
4327
4327
  > = z.object({
4328
4328
  type: CreateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema,
4329
- requires_approval: z.boolean().default(false),
4329
+ requires_approval: z.boolean().optional(),
4330
4330
  }).transform((v) => {
4331
4331
  return remap$(v, {
4332
4332
  "requires_approval": "requiresApproval",
@@ -4335,7 +4335,7 @@ export const RetrieveAgentsTool$inboundSchema: z.ZodType<
4335
4335
  /** @internal */
4336
4336
  export type RetrieveAgentsTool$Outbound = {
4337
4337
  type: string;
4338
- requires_approval: boolean;
4338
+ requires_approval?: boolean | undefined;
4339
4339
  };
4340
4340
 
4341
4341
  /** @internal */
@@ -4345,7 +4345,7 @@ export const RetrieveAgentsTool$outboundSchema: z.ZodType<
4345
4345
  RetrieveAgentsTool
4346
4346
  > = z.object({
4347
4347
  type: CreateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema,
4348
- requiresApproval: z.boolean().default(false),
4348
+ requiresApproval: z.boolean().optional(),
4349
4349
  }).transform((v) => {
4350
4350
  return remap$(v, {
4351
4351
  requiresApproval: "requires_approval",
@@ -4385,7 +4385,7 @@ export const CallSubAgentTool$inboundSchema: z.ZodType<
4385
4385
  unknown
4386
4386
  > = z.object({
4387
4387
  type: CreateAgentAgentToolInputCRUDAgentsType$inboundSchema,
4388
- requires_approval: z.boolean().default(false),
4388
+ requires_approval: z.boolean().optional(),
4389
4389
  }).transform((v) => {
4390
4390
  return remap$(v, {
4391
4391
  "requires_approval": "requiresApproval",
@@ -4394,7 +4394,7 @@ export const CallSubAgentTool$inboundSchema: z.ZodType<
4394
4394
  /** @internal */
4395
4395
  export type CallSubAgentTool$Outbound = {
4396
4396
  type: string;
4397
- requires_approval: boolean;
4397
+ requires_approval?: boolean | undefined;
4398
4398
  };
4399
4399
 
4400
4400
  /** @internal */
@@ -4404,7 +4404,7 @@ export const CallSubAgentTool$outboundSchema: z.ZodType<
4404
4404
  CallSubAgentTool
4405
4405
  > = z.object({
4406
4406
  type: CreateAgentAgentToolInputCRUDAgentsType$outboundSchema,
4407
- requiresApproval: z.boolean().default(false),
4407
+ requiresApproval: z.boolean().optional(),
4408
4408
  }).transform((v) => {
4409
4409
  return remap$(v, {
4410
4410
  requiresApproval: "requires_approval",
@@ -4444,7 +4444,7 @@ export const WebScraperTool$inboundSchema: z.ZodType<
4444
4444
  unknown
4445
4445
  > = z.object({
4446
4446
  type: CreateAgentAgentToolInputCRUDType$inboundSchema,
4447
- requires_approval: z.boolean().default(false),
4447
+ requires_approval: z.boolean().optional(),
4448
4448
  }).transform((v) => {
4449
4449
  return remap$(v, {
4450
4450
  "requires_approval": "requiresApproval",
@@ -4453,7 +4453,7 @@ export const WebScraperTool$inboundSchema: z.ZodType<
4453
4453
  /** @internal */
4454
4454
  export type WebScraperTool$Outbound = {
4455
4455
  type: string;
4456
- requires_approval: boolean;
4456
+ requires_approval?: boolean | undefined;
4457
4457
  };
4458
4458
 
4459
4459
  /** @internal */
@@ -4463,7 +4463,7 @@ export const WebScraperTool$outboundSchema: z.ZodType<
4463
4463
  WebScraperTool
4464
4464
  > = z.object({
4465
4465
  type: CreateAgentAgentToolInputCRUDType$outboundSchema,
4466
- requiresApproval: z.boolean().default(false),
4466
+ requiresApproval: z.boolean().optional(),
4467
4467
  }).transform((v) => {
4468
4468
  return remap$(v, {
4469
4469
  requiresApproval: "requires_approval",
@@ -4499,7 +4499,7 @@ export const GoogleSearchTool$inboundSchema: z.ZodType<
4499
4499
  unknown
4500
4500
  > = z.object({
4501
4501
  type: AgentToolInputCRUDType$inboundSchema,
4502
- requires_approval: z.boolean().default(false),
4502
+ requires_approval: z.boolean().optional(),
4503
4503
  }).transform((v) => {
4504
4504
  return remap$(v, {
4505
4505
  "requires_approval": "requiresApproval",
@@ -4508,7 +4508,7 @@ export const GoogleSearchTool$inboundSchema: z.ZodType<
4508
4508
  /** @internal */
4509
4509
  export type GoogleSearchTool$Outbound = {
4510
4510
  type: string;
4511
- requires_approval: boolean;
4511
+ requires_approval?: boolean | undefined;
4512
4512
  };
4513
4513
 
4514
4514
  /** @internal */
@@ -4518,7 +4518,7 @@ export const GoogleSearchTool$outboundSchema: z.ZodType<
4518
4518
  GoogleSearchTool
4519
4519
  > = z.object({
4520
4520
  type: AgentToolInputCRUDType$outboundSchema,
4521
- requiresApproval: z.boolean().default(false),
4521
+ requiresApproval: z.boolean().optional(),
4522
4522
  }).transform((v) => {
4523
4523
  return remap$(v, {
4524
4524
  requiresApproval: "requires_approval",
@@ -516,7 +516,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
516
516
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
517
517
  .optional(),
518
518
  updated: z.string().datetime({ offset: true }).default(
519
- "2025-11-07T06:52:39.381Z",
519
+ "2025-11-08T09:16:35.610Z",
520
520
  ).transform(v => new Date(v)),
521
521
  }).transform((v) => {
522
522
  return remap$(v, {
@@ -553,7 +553,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
553
553
  isActive: z.boolean(),
554
554
  consumption: z.lazy(() => Consumption$outboundSchema).optional(),
555
555
  created: z.date().transform(v => v.toISOString()).optional(),
556
- updated: z.date().default(() => new Date("2025-11-07T06:52:39.381Z"))
556
+ updated: z.date().default(() => new Date("2025-11-08T09:16:35.610Z"))
557
557
  .transform(v => v.toISOString()),
558
558
  }).transform((v) => {
559
559
  return remap$(v, {
@@ -167,7 +167,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
167
167
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
168
168
  .optional(),
169
169
  updated: z.string().datetime({ offset: true }).default(
170
- "2025-11-07T06:52:38.992Z",
170
+ "2025-11-08T09:16:35.289Z",
171
171
  ).transform(v => new Date(v)),
172
172
  }).transform((v) => {
173
173
  return remap$(v, {
@@ -207,7 +207,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
207
207
  tags: z.array(z.string()).optional(),
208
208
  metadata: z.record(z.any()).optional(),
209
209
  created: z.date().transform(v => v.toISOString()).optional(),
210
- updated: z.date().default(() => new Date("2025-11-07T06:52:38.992Z"))
210
+ updated: z.date().default(() => new Date("2025-11-08T09:16:35.289Z"))
211
211
  .transform(v => v.toISOString()),
212
212
  }).transform((v) => {
213
213
  return remap$(v, {
@@ -187,7 +187,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
187
187
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
188
188
  .optional(),
189
189
  updated: z.string().datetime({ offset: true }).default(
190
- "2025-11-07T06:52:38.992Z",
190
+ "2025-11-08T09:16:35.289Z",
191
191
  ).transform(v => new Date(v)),
192
192
  }).transform((v) => {
193
193
  return remap$(v, {
@@ -226,7 +226,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
226
226
  createdById: z.string().optional(),
227
227
  updatedById: z.string().optional(),
228
228
  created: z.date().transform(v => v.toISOString()).optional(),
229
- updated: z.date().default(() => new Date("2025-11-07T06:52:38.992Z"))
229
+ updated: z.date().default(() => new Date("2025-11-08T09:16:35.289Z"))
230
230
  .transform(v => v.toISOString()),
231
231
  }).transform((v) => {
232
232
  return remap$(v, {
@@ -4929,7 +4929,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
4929
4929
  source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
4930
4930
  reviewed_by_id: z.string(),
4931
4931
  reviewed_at: z.string().datetime({ offset: true }).default(
4932
- "2025-11-07T06:52:50.426Z",
4932
+ "2025-11-08T09:16:46.550Z",
4933
4933
  ).transform(v => new Date(v)),
4934
4934
  type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
4935
4935
  values: z.array(z.string()),
@@ -4964,7 +4964,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
4964
4964
  humanReviewId: z.string(),
4965
4965
  source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
4966
4966
  reviewedById: z.string(),
4967
- reviewedAt: z.date().default(() => new Date("2025-11-07T06:52:50.426Z"))
4967
+ reviewedAt: z.date().default(() => new Date("2025-11-08T09:16:46.550Z"))
4968
4968
  .transform(v => v.toISOString()),
4969
4969
  type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
4970
4970
  values: z.array(z.string()),
@@ -5029,7 +5029,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
5029
5029
  source: EvaluationsSource$inboundSchema.default("orq"),
5030
5030
  reviewed_by_id: z.string(),
5031
5031
  reviewed_at: z.string().datetime({ offset: true }).default(
5032
- "2025-11-07T06:52:50.425Z",
5032
+ "2025-11-08T09:16:46.550Z",
5033
5033
  ).transform(v => new Date(v)),
5034
5034
  type: CreateDatasetItemEvaluationsType$inboundSchema,
5035
5035
  value: z.number(),
@@ -5064,7 +5064,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
5064
5064
  humanReviewId: z.string(),
5065
5065
  source: EvaluationsSource$outboundSchema.default("orq"),
5066
5066
  reviewedById: z.string(),
5067
- reviewedAt: z.date().default(() => new Date("2025-11-07T06:52:50.425Z"))
5067
+ reviewedAt: z.date().default(() => new Date("2025-11-08T09:16:46.550Z"))
5068
5068
  .transform(v => v.toISOString()),
5069
5069
  type: CreateDatasetItemEvaluationsType$outboundSchema,
5070
5070
  value: z.number(),
@@ -5127,7 +5127,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
5127
5127
  source: Source$inboundSchema.default("orq"),
5128
5128
  reviewed_by_id: z.string(),
5129
5129
  reviewed_at: z.string().datetime({ offset: true }).default(
5130
- "2025-11-07T06:52:50.424Z",
5130
+ "2025-11-08T09:16:46.550Z",
5131
5131
  ).transform(v => new Date(v)),
5132
5132
  type: EvaluationsType$inboundSchema,
5133
5133
  value: z.string(),
@@ -5162,7 +5162,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
5162
5162
  humanReviewId: z.string(),
5163
5163
  source: Source$outboundSchema.default("orq"),
5164
5164
  reviewedById: z.string(),
5165
- reviewedAt: z.date().default(() => new Date("2025-11-07T06:52:50.424Z"))
5165
+ reviewedAt: z.date().default(() => new Date("2025-11-08T09:16:46.550Z"))
5166
5166
  .transform(v => v.toISOString()),
5167
5167
  type: EvaluationsType$outboundSchema,
5168
5168
  value: z.string(),
@@ -5267,7 +5267,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
5267
5267
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
5268
5268
  .optional(),
5269
5269
  updated: z.string().datetime({ offset: true }).default(
5270
- "2025-11-07T06:52:38.992Z",
5270
+ "2025-11-08T09:16:35.289Z",
5271
5271
  ).transform(v => new Date(v)),
5272
5272
  }).transform((v) => {
5273
5273
  return remap$(v, {
@@ -5345,7 +5345,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
5345
5345
  createdById: z.string().optional(),
5346
5346
  updatedById: z.string().optional(),
5347
5347
  created: z.date().transform(v => v.toISOString()).optional(),
5348
- updated: z.date().default(() => new Date("2025-11-07T06:52:38.992Z"))
5348
+ updated: z.date().default(() => new Date("2025-11-08T09:16:35.289Z"))
5349
5349
  .transform(v => v.toISOString()),
5350
5350
  }).transform((v) => {
5351
5351
  return remap$(v, {
@@ -608,7 +608,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
608
608
  z.ZodTypeDef,
609
609
  unknown
610
610
  > = z.object({
611
- _id: z.string().default("01K9EHDPRBD2MHHC122GZANNK8"),
611
+ _id: z.string().default("01K9HC1ZDZB2SF4BFVZAD1CV9A"),
612
612
  display_name: z.string(),
613
613
  description: z.string().optional(),
614
614
  status: CreateDatasourceStatus$inboundSchema,
@@ -651,7 +651,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
651
651
  z.ZodTypeDef,
652
652
  CreateDatasourceResponseBody
653
653
  > = z.object({
654
- id: z.string().default("01K9EHDPRBD2MHHC122GZANNK8"),
654
+ id: z.string().default("01K9HC1ZDZB2SF4BFVZAD1CV9A"),
655
655
  displayName: z.string(),
656
656
  description: z.string().optional(),
657
657
  status: CreateDatasourceStatus$outboundSchema,
@@ -2754,8 +2754,8 @@ export const Typescript$inboundSchema: z.ZodType<
2754
2754
  > = z.object({
2755
2755
  _id: z.string(),
2756
2756
  description: z.string(),
2757
- created: z.string().default("2025-11-07T06:52:41.558Z"),
2758
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
2757
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
2758
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
2759
2759
  guardrail_config: z.union([
2760
2760
  z.lazy(() =>
2761
2761
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
@@ -2797,8 +2797,8 @@ export const Typescript$outboundSchema: z.ZodType<
2797
2797
  > = z.object({
2798
2798
  id: z.string(),
2799
2799
  description: z.string(),
2800
- created: z.string().default("2025-11-07T06:52:41.558Z"),
2801
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
2800
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
2801
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
2802
2802
  guardrailConfig: z.union([
2803
2803
  z.lazy(() =>
2804
2804
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
@@ -3079,8 +3079,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
3079
3079
  .object({
3080
3080
  _id: z.string(),
3081
3081
  description: z.string(),
3082
- created: z.string().default("2025-11-07T06:52:41.558Z"),
3083
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
3082
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
3083
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
3084
3084
  guardrail_config: z.union([
3085
3085
  z.lazy(() =>
3086
3086
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
@@ -3125,8 +3125,8 @@ export const Ragas$outboundSchema: z.ZodType<
3125
3125
  > = z.object({
3126
3126
  id: z.string(),
3127
3127
  description: z.string(),
3128
- created: z.string().default("2025-11-07T06:52:41.558Z"),
3129
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
3128
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
3129
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
3130
3130
  guardrailConfig: z.union([
3131
3131
  z.lazy(() =>
3132
3132
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
@@ -5414,8 +5414,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
5414
5414
  > = z.object({
5415
5415
  _id: z.string(),
5416
5416
  description: z.string(),
5417
- created: z.string().default("2025-11-07T06:52:41.558Z"),
5418
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
5417
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
5418
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
5419
5419
  guardrail_config: z.union([
5420
5420
  z.lazy(() =>
5421
5421
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
@@ -5528,8 +5528,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
5528
5528
  > = z.object({
5529
5529
  id: z.string(),
5530
5530
  description: z.string(),
5531
- created: z.string().default("2025-11-07T06:52:41.558Z"),
5532
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
5531
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
5532
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
5533
5533
  guardrailConfig: z.union([
5534
5534
  z.lazy(() =>
5535
5535
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
@@ -5846,8 +5846,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
5846
5846
  > = z.object({
5847
5847
  _id: z.string(),
5848
5848
  description: z.string(),
5849
- created: z.string().default("2025-11-07T06:52:41.558Z"),
5850
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
5849
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
5850
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
5851
5851
  guardrail_config: z.union([
5852
5852
  z.lazy(() =>
5853
5853
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -5888,8 +5888,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
5888
5888
  > = z.object({
5889
5889
  id: z.string(),
5890
5890
  description: z.string(),
5891
- created: z.string().default("2025-11-07T06:52:41.558Z"),
5892
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
5891
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
5892
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
5893
5893
  guardrailConfig: z.union([
5894
5894
  z.lazy(() =>
5895
5895
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
@@ -6169,8 +6169,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
6169
6169
  > = z.object({
6170
6170
  _id: z.string(),
6171
6171
  description: z.string(),
6172
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6173
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6172
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6173
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6174
6174
  guardrail_config: z.union([
6175
6175
  z.lazy(() =>
6176
6176
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -6217,8 +6217,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
6217
6217
  > = z.object({
6218
6218
  id: z.string(),
6219
6219
  description: z.string(),
6220
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6221
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6220
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6221
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6222
6222
  guardrailConfig: z.union([
6223
6223
  z.lazy(() =>
6224
6224
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -6474,8 +6474,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
6474
6474
  > = z.object({
6475
6475
  _id: z.string(),
6476
6476
  description: z.string(),
6477
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6478
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6477
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6478
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6479
6479
  guardrail_config: z.union([
6480
6480
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
6481
6481
  z.lazy(() =>
@@ -6514,8 +6514,8 @@ export const ResponseBodyJSON$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
  CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
@@ -6753,8 +6753,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
6753
6753
  > = z.object({
6754
6754
  _id: z.string(),
6755
6755
  description: z.string(),
6756
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6757
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6756
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6757
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6758
6758
  guardrail_config: z.union([
6759
6759
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
6760
6760
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -6793,8 +6793,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
6793
6793
  > = z.object({
6794
6794
  id: z.string(),
6795
6795
  description: z.string(),
6796
- created: z.string().default("2025-11-07T06:52:41.558Z"),
6797
- updated: z.string().default("2025-11-07T06:52:41.558Z"),
6796
+ created: z.string().default("2025-11-08T09:16:37.832Z"),
6797
+ updated: z.string().default("2025-11-08T09:16:37.832Z"),
6798
6798
  guardrailConfig: z.union([
6799
6799
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
6800
6800
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),