@orq-ai/node 4.2.0-rc.27 → 4.2.0-rc.29

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 (103) hide show
  1. package/bin/mcp-server.js +458 -268
  2. package/bin/mcp-server.js.map +43 -43
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +2 -2
  6. package/lib/config.js +2 -2
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/components/conversationresponse.js +2 -2
  10. package/models/components/conversationwithmessagesresponse.js +2 -2
  11. package/models/components/partdoneevent.js +2 -2
  12. package/models/components/reasoningpart.js +2 -2
  13. package/models/operations/createagentrequest.d.ts +58 -10
  14. package/models/operations/createagentrequest.d.ts.map +1 -1
  15. package/models/operations/createagentrequest.js +59 -13
  16. package/models/operations/createagentrequest.js.map +1 -1
  17. package/models/operations/createcontact.js +2 -2
  18. package/models/operations/createconversation.js +2 -2
  19. package/models/operations/createconversationresponse.js +4 -4
  20. package/models/operations/createdataset.js +2 -2
  21. package/models/operations/createdatasetitem.js +8 -8
  22. package/models/operations/createdatasource.js +2 -2
  23. package/models/operations/createeval.js +28 -28
  24. package/models/operations/createtool.d.ts +8 -8
  25. package/models/operations/createtool.d.ts.map +1 -1
  26. package/models/operations/createtool.js +23 -23
  27. package/models/operations/createtool.js.map +1 -1
  28. package/models/operations/fileget.js +2 -2
  29. package/models/operations/filelist.js +2 -2
  30. package/models/operations/fileupload.js +2 -2
  31. package/models/operations/generateconversationname.js +2 -2
  32. package/models/operations/getalltools.js +12 -12
  33. package/models/operations/getevals.js +28 -28
  34. package/models/operations/listcontacts.js +2 -2
  35. package/models/operations/listdatasetdatapoints.js +8 -8
  36. package/models/operations/listdatasets.js +2 -2
  37. package/models/operations/listdatasources.js +2 -2
  38. package/models/operations/retrievecontact.js +2 -2
  39. package/models/operations/retrievedatapoint.js +8 -8
  40. package/models/operations/retrievedataset.js +2 -2
  41. package/models/operations/retrievedatasource.js +2 -2
  42. package/models/operations/retrievetool.js +12 -12
  43. package/models/operations/runagent.d.ts +120 -18
  44. package/models/operations/runagent.d.ts.map +1 -1
  45. package/models/operations/runagent.js +117 -22
  46. package/models/operations/runagent.js.map +1 -1
  47. package/models/operations/streamrunagent.d.ts +120 -18
  48. package/models/operations/streamrunagent.d.ts.map +1 -1
  49. package/models/operations/streamrunagent.js +117 -20
  50. package/models/operations/streamrunagent.js.map +1 -1
  51. package/models/operations/updateagent.d.ts +58 -10
  52. package/models/operations/updateagent.d.ts.map +1 -1
  53. package/models/operations/updateagent.js +59 -13
  54. package/models/operations/updateagent.js.map +1 -1
  55. package/models/operations/updatecontact.js +2 -2
  56. package/models/operations/updateconversation.js +2 -2
  57. package/models/operations/updatedatapoint.js +8 -8
  58. package/models/operations/updatedataset.js +2 -2
  59. package/models/operations/updatedatasource.js +2 -2
  60. package/models/operations/updateeval.js +28 -28
  61. package/models/operations/updatetool.js +14 -14
  62. package/package.json +1 -1
  63. package/src/lib/config.ts +2 -2
  64. package/src/mcp-server/mcp-server.ts +1 -1
  65. package/src/mcp-server/server.ts +1 -1
  66. package/src/models/components/conversationresponse.ts +2 -2
  67. package/src/models/components/conversationwithmessagesresponse.ts +2 -2
  68. package/src/models/components/partdoneevent.ts +2 -2
  69. package/src/models/components/reasoningpart.ts +2 -2
  70. package/src/models/operations/createagentrequest.ts +132 -15
  71. package/src/models/operations/createcontact.ts +2 -2
  72. package/src/models/operations/createconversation.ts +2 -2
  73. package/src/models/operations/createconversationresponse.ts +4 -4
  74. package/src/models/operations/createdataset.ts +2 -2
  75. package/src/models/operations/createdatasetitem.ts +8 -8
  76. package/src/models/operations/createdatasource.ts +2 -2
  77. package/src/models/operations/createeval.ts +28 -28
  78. package/src/models/operations/createtool.ts +33 -29
  79. package/src/models/operations/fileget.ts +2 -2
  80. package/src/models/operations/filelist.ts +2 -2
  81. package/src/models/operations/fileupload.ts +2 -2
  82. package/src/models/operations/generateconversationname.ts +2 -2
  83. package/src/models/operations/getalltools.ts +12 -12
  84. package/src/models/operations/getevals.ts +28 -28
  85. package/src/models/operations/listcontacts.ts +2 -2
  86. package/src/models/operations/listdatasetdatapoints.ts +8 -8
  87. package/src/models/operations/listdatasets.ts +2 -2
  88. package/src/models/operations/listdatasources.ts +2 -2
  89. package/src/models/operations/retrievecontact.ts +2 -2
  90. package/src/models/operations/retrievedatapoint.ts +8 -8
  91. package/src/models/operations/retrievedataset.ts +2 -2
  92. package/src/models/operations/retrievedatasource.ts +2 -2
  93. package/src/models/operations/retrievetool.ts +12 -12
  94. package/src/models/operations/runagent.ts +280 -36
  95. package/src/models/operations/streamrunagent.ts +323 -46
  96. package/src/models/operations/updateagent.ts +138 -15
  97. package/src/models/operations/updatecontact.ts +2 -2
  98. package/src/models/operations/updateconversation.ts +2 -2
  99. package/src/models/operations/updatedatapoint.ts +8 -8
  100. package/src/models/operations/updatedataset.ts +2 -2
  101. package/src/models/operations/updatedatasource.ts +2 -2
  102. package/src/models/operations/updateeval.ts +28 -28
  103. package/src/models/operations/updatetool.ts +14 -14
@@ -395,7 +395,7 @@ export type RequestBodyJsonSchema = {
395
395
  /**
396
396
  * A tool that enforces structured output format using JSON Schema for consistent response formatting.
397
397
  */
398
- export type JSONSchemaTool = {
398
+ export type RequestBodyJSONSchemaTool = {
399
399
  /**
400
400
  * Entity storage path in the format: `project/folder/subfolder/...`
401
401
  *
@@ -532,7 +532,7 @@ export type RequestBodyFunctionTool = {
532
532
  */
533
533
  export type CreateToolRequestBody =
534
534
  | RequestBodyFunctionTool
535
- | JSONSchemaTool
535
+ | RequestBodyJSONSchemaTool
536
536
  | RequestBodyHTTPTool
537
537
  | RequestBodyMCPTool
538
538
  | RequestBodyCodeExecutionTool;
@@ -2008,8 +2008,8 @@ export function requestBodyJsonSchemaFromJSON(
2008
2008
  }
2009
2009
 
2010
2010
  /** @internal */
2011
- export const JSONSchemaTool$inboundSchema: z.ZodType<
2012
- JSONSchemaTool,
2011
+ export const RequestBodyJSONSchemaTool$inboundSchema: z.ZodType<
2012
+ RequestBodyJSONSchemaTool,
2013
2013
  z.ZodTypeDef,
2014
2014
  unknown
2015
2015
  > = z.object({
@@ -2027,7 +2027,7 @@ export const JSONSchemaTool$inboundSchema: z.ZodType<
2027
2027
  });
2028
2028
  });
2029
2029
  /** @internal */
2030
- export type JSONSchemaTool$Outbound = {
2030
+ export type RequestBodyJSONSchemaTool$Outbound = {
2031
2031
  path: string;
2032
2032
  key: string;
2033
2033
  display_name?: string | undefined;
@@ -2038,10 +2038,10 @@ export type JSONSchemaTool$Outbound = {
2038
2038
  };
2039
2039
 
2040
2040
  /** @internal */
2041
- export const JSONSchemaTool$outboundSchema: z.ZodType<
2042
- JSONSchemaTool$Outbound,
2041
+ export const RequestBodyJSONSchemaTool$outboundSchema: z.ZodType<
2042
+ RequestBodyJSONSchemaTool$Outbound,
2043
2043
  z.ZodTypeDef,
2044
- JSONSchemaTool
2044
+ RequestBodyJSONSchemaTool
2045
2045
  > = z.object({
2046
2046
  path: z.string(),
2047
2047
  key: z.string(),
@@ -2057,16 +2057,20 @@ export const JSONSchemaTool$outboundSchema: z.ZodType<
2057
2057
  });
2058
2058
  });
2059
2059
 
2060
- export function jsonSchemaToolToJSON(jsonSchemaTool: JSONSchemaTool): string {
2061
- return JSON.stringify(JSONSchemaTool$outboundSchema.parse(jsonSchemaTool));
2060
+ export function requestBodyJSONSchemaToolToJSON(
2061
+ requestBodyJSONSchemaTool: RequestBodyJSONSchemaTool,
2062
+ ): string {
2063
+ return JSON.stringify(
2064
+ RequestBodyJSONSchemaTool$outboundSchema.parse(requestBodyJSONSchemaTool),
2065
+ );
2062
2066
  }
2063
- export function jsonSchemaToolFromJSON(
2067
+ export function requestBodyJSONSchemaToolFromJSON(
2064
2068
  jsonString: string,
2065
- ): SafeParseResult<JSONSchemaTool, SDKValidationError> {
2069
+ ): SafeParseResult<RequestBodyJSONSchemaTool, SDKValidationError> {
2066
2070
  return safeParse(
2067
2071
  jsonString,
2068
- (x) => JSONSchemaTool$inboundSchema.parse(JSON.parse(x)),
2069
- `Failed to parse 'JSONSchemaTool' from JSON`,
2072
+ (x) => RequestBodyJSONSchemaTool$inboundSchema.parse(JSON.parse(x)),
2073
+ `Failed to parse 'RequestBodyJSONSchemaTool' from JSON`,
2070
2074
  );
2071
2075
  }
2072
2076
 
@@ -2271,7 +2275,7 @@ export const CreateToolRequestBody$inboundSchema: z.ZodType<
2271
2275
  unknown
2272
2276
  > = z.union([
2273
2277
  z.lazy(() => RequestBodyFunctionTool$inboundSchema),
2274
- z.lazy(() => JSONSchemaTool$inboundSchema),
2278
+ z.lazy(() => RequestBodyJSONSchemaTool$inboundSchema),
2275
2279
  z.lazy(() => RequestBodyHTTPTool$inboundSchema),
2276
2280
  z.lazy(() => RequestBodyMCPTool$inboundSchema),
2277
2281
  z.lazy(() => RequestBodyCodeExecutionTool$inboundSchema),
@@ -2279,7 +2283,7 @@ export const CreateToolRequestBody$inboundSchema: z.ZodType<
2279
2283
  /** @internal */
2280
2284
  export type CreateToolRequestBody$Outbound =
2281
2285
  | RequestBodyFunctionTool$Outbound
2282
- | JSONSchemaTool$Outbound
2286
+ | RequestBodyJSONSchemaTool$Outbound
2283
2287
  | RequestBodyHTTPTool$Outbound
2284
2288
  | RequestBodyMCPTool$Outbound
2285
2289
  | RequestBodyCodeExecutionTool$Outbound;
@@ -2291,7 +2295,7 @@ export const CreateToolRequestBody$outboundSchema: z.ZodType<
2291
2295
  CreateToolRequestBody
2292
2296
  > = z.union([
2293
2297
  z.lazy(() => RequestBodyFunctionTool$outboundSchema),
2294
- z.lazy(() => JSONSchemaTool$outboundSchema),
2298
+ z.lazy(() => RequestBodyJSONSchemaTool$outboundSchema),
2295
2299
  z.lazy(() => RequestBodyHTTPTool$outboundSchema),
2296
2300
  z.lazy(() => RequestBodyMCPTool$outboundSchema),
2297
2301
  z.lazy(() => RequestBodyCodeExecutionTool$outboundSchema),
@@ -2458,7 +2462,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
2458
2462
  z.ZodTypeDef,
2459
2463
  unknown
2460
2464
  > = z.object({
2461
- _id: z.string().default("tool_01KEVXWAV61PG8H55G9CYEMKX6"),
2465
+ _id: z.string().default("tool_01KEYB6FGNRJR4TWEZE1R92H2A"),
2462
2466
  path: z.string(),
2463
2467
  key: z.string(),
2464
2468
  display_name: z.string().optional(),
@@ -2512,7 +2516,7 @@ export const ResponseBodyCodeExecutionTool$outboundSchema: z.ZodType<
2512
2516
  z.ZodTypeDef,
2513
2517
  ResponseBodyCodeExecutionTool
2514
2518
  > = z.object({
2515
- id: z.string().default("tool_01KEVXWAV61PG8H55G9CYEMKX6"),
2519
+ id: z.string().default("tool_01KEYB6FGNRJR4TWEZE1R92H2A"),
2516
2520
  path: z.string(),
2517
2521
  key: z.string(),
2518
2522
  displayName: z.string().optional(),
@@ -2678,7 +2682,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
2678
2682
  z.ZodTypeDef,
2679
2683
  unknown
2680
2684
  > = z.object({
2681
- id: z.string().default("01KEVXWAV3NHEZVSERMEDDK85M"),
2685
+ id: z.string().default("01KEYB6FGMQMM6H7MCX4T5HRDC"),
2682
2686
  name: z.string(),
2683
2687
  description: z.string().optional(),
2684
2688
  schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
@@ -2697,7 +2701,7 @@ export const ResponseBodyTools$outboundSchema: z.ZodType<
2697
2701
  z.ZodTypeDef,
2698
2702
  ResponseBodyTools
2699
2703
  > = z.object({
2700
- id: z.string().default("01KEVXWAV3NHEZVSERMEDDK85M"),
2704
+ id: z.string().default("01KEYB6FGMQMM6H7MCX4T5HRDC"),
2701
2705
  name: z.string(),
2702
2706
  description: z.string().optional(),
2703
2707
  schema: z.lazy(() => CreateToolResponseBodySchema$outboundSchema),
@@ -2792,7 +2796,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
2792
2796
  z.ZodTypeDef,
2793
2797
  unknown
2794
2798
  > = z.object({
2795
- _id: z.string().default("tool_01KEVXWAV1M65C6JKPKAATF4J4"),
2799
+ _id: z.string().default("tool_01KEYB6FGA4RMX3SE4SZ3RH74X"),
2796
2800
  path: z.string(),
2797
2801
  key: z.string(),
2798
2802
  display_name: z.string().optional(),
@@ -2845,7 +2849,7 @@ export const ResponseBodyMCPTool$outboundSchema: z.ZodType<
2845
2849
  z.ZodTypeDef,
2846
2850
  ResponseBodyMCPTool
2847
2851
  > = z.object({
2848
- id: z.string().default("tool_01KEVXWAV1M65C6JKPKAATF4J4"),
2852
+ id: z.string().default("tool_01KEYB6FGA4RMX3SE4SZ3RH74X"),
2849
2853
  path: z.string(),
2850
2854
  key: z.string(),
2851
2855
  displayName: z.string().optional(),
@@ -3196,7 +3200,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
3196
3200
  z.ZodTypeDef,
3197
3201
  unknown
3198
3202
  > = z.object({
3199
- _id: z.string().default("tool_01KEVXWATXEVWFKZ12YD3E85F3"),
3203
+ _id: z.string().default("tool_01KEYB6FG81QQJ7R7EH3VVEB2B"),
3200
3204
  path: z.string(),
3201
3205
  key: z.string(),
3202
3206
  display_name: z.string().optional(),
@@ -3247,7 +3251,7 @@ export const ResponseBodyHTTPTool$outboundSchema: z.ZodType<
3247
3251
  z.ZodTypeDef,
3248
3252
  ResponseBodyHTTPTool
3249
3253
  > = z.object({
3250
- id: z.string().default("tool_01KEVXWATXEVWFKZ12YD3E85F3"),
3254
+ id: z.string().default("tool_01KEYB6FG81QQJ7R7EH3VVEB2B"),
3251
3255
  path: z.string(),
3252
3256
  key: z.string(),
3253
3257
  displayName: z.string().optional(),
@@ -3412,7 +3416,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
3412
3416
  z.ZodTypeDef,
3413
3417
  unknown
3414
3418
  > = z.object({
3415
- _id: z.string().default("tool_01KEVXWATV6YZ6MVSWGYNHKW9T"),
3419
+ _id: z.string().default("tool_01KEYB6FG7WN4F8YGYSFSRG4G8"),
3416
3420
  path: z.string(),
3417
3421
  key: z.string(),
3418
3422
  display_name: z.string().optional(),
@@ -3464,7 +3468,7 @@ export const ResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
3464
3468
  z.ZodTypeDef,
3465
3469
  ResponseBodyJSONSchemaTool
3466
3470
  > = z.object({
3467
- id: z.string().default("tool_01KEVXWATV6YZ6MVSWGYNHKW9T"),
3471
+ id: z.string().default("tool_01KEYB6FG7WN4F8YGYSFSRG4G8"),
3468
3472
  path: z.string(),
3469
3473
  key: z.string(),
3470
3474
  displayName: z.string().optional(),
@@ -3645,7 +3649,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
3645
3649
  z.ZodTypeDef,
3646
3650
  unknown
3647
3651
  > = z.object({
3648
- _id: z.string().default("tool_01KEVXWATS8PXP072H4J6CTA7R"),
3652
+ _id: z.string().default("tool_01KEYB6FG6D0BW3PGZ7A5C63VV"),
3649
3653
  path: z.string(),
3650
3654
  key: z.string(),
3651
3655
  display_name: z.string().optional(),
@@ -3696,7 +3700,7 @@ export const ResponseBodyFunctionTool$outboundSchema: z.ZodType<
3696
3700
  z.ZodTypeDef,
3697
3701
  ResponseBodyFunctionTool
3698
3702
  > = z.object({
3699
- id: z.string().default("tool_01KEVXWATS8PXP072H4J6CTA7R"),
3703
+ id: z.string().default("tool_01KEYB6FG6D0BW3PGZ7A5C63VV"),
3700
3704
  path: z.string(),
3701
3705
  key: z.string(),
3702
3706
  displayName: z.string().optional(),
@@ -119,7 +119,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
119
119
  file_name: z.string(),
120
120
  workspace_id: z.string(),
121
121
  created: z.string().datetime({ offset: true }).default(
122
- "2026-01-13T14:58:57.532Z",
122
+ "2026-01-14T13:30:12.726Z",
123
123
  ).transform(v => new Date(v)),
124
124
  }).transform((v) => {
125
125
  return remap$(v, {
@@ -152,7 +152,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
152
152
  bytes: z.number(),
153
153
  fileName: z.string(),
154
154
  workspaceId: z.string(),
155
- created: z.date().default(() => new Date("2026-01-13T14:58:57.532Z"))
155
+ created: z.date().default(() => new Date("2026-01-14T13:30:12.726Z"))
156
156
  .transform(v => v.toISOString()),
157
157
  }).transform((v) => {
158
158
  return remap$(v, {
@@ -157,7 +157,7 @@ export const FileListData$inboundSchema: z.ZodType<
157
157
  file_name: z.string(),
158
158
  workspace_id: z.string(),
159
159
  created: z.string().datetime({ offset: true }).default(
160
- "2026-01-13T14:58:57.532Z",
160
+ "2026-01-14T13:30:12.726Z",
161
161
  ).transform(v => new Date(v)),
162
162
  }).transform((v) => {
163
163
  return remap$(v, {
@@ -190,7 +190,7 @@ export const FileListData$outboundSchema: z.ZodType<
190
190
  bytes: z.number(),
191
191
  fileName: z.string(),
192
192
  workspaceId: z.string(),
193
- created: z.date().default(() => new Date("2026-01-13T14:58:57.532Z"))
193
+ created: z.date().default(() => new Date("2026-01-14T13:30:12.726Z"))
194
194
  .transform(v => v.toISOString()),
195
195
  }).transform((v) => {
196
196
  return remap$(v, {
@@ -196,7 +196,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
196
196
  file_name: z.string(),
197
197
  workspace_id: z.string(),
198
198
  created: z.string().datetime({ offset: true }).default(
199
- "2026-01-13T14:58:57.532Z",
199
+ "2026-01-14T13:30:12.726Z",
200
200
  ).transform(v => new Date(v)),
201
201
  }).transform((v) => {
202
202
  return remap$(v, {
@@ -229,7 +229,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
229
229
  bytes: z.number(),
230
230
  fileName: z.string(),
231
231
  workspaceId: z.string(),
232
- created: z.date().default(() => new Date("2026-01-13T14:58:57.532Z"))
232
+ created: z.date().default(() => new Date("2026-01-14T13:30:12.726Z"))
233
233
  .transform(v => v.toISOString()),
234
234
  }).transform((v) => {
235
235
  return remap$(v, {
@@ -251,7 +251,7 @@ export const GenerateConversationNameResponseBody$inboundSchema: z.ZodType<
251
251
  z.ZodTypeDef,
252
252
  unknown
253
253
  > = z.object({
254
- _id: z.string().default("conv_01kevxwajbf0cyqfjjvkg3ec8k"),
254
+ _id: z.string().default("conv_01keyb6f8d4t37mtjaqk8dqtdf"),
255
255
  kind: GenerateConversationNameKind$inboundSchema,
256
256
  displayName: z.string(),
257
257
  createdAt: z.number(),
@@ -283,7 +283,7 @@ export const GenerateConversationNameResponseBody$outboundSchema: z.ZodType<
283
283
  z.ZodTypeDef,
284
284
  GenerateConversationNameResponseBody
285
285
  > = z.object({
286
- id: z.string().default("conv_01kevxwajbf0cyqfjjvkg3ec8k"),
286
+ id: z.string().default("conv_01keyb6f8d4t37mtjaqk8dqtdf"),
287
287
  kind: GenerateConversationNameKind$outboundSchema,
288
288
  displayName: z.string(),
289
289
  createdAt: z.number(),
@@ -863,7 +863,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
863
863
  z.ZodTypeDef,
864
864
  unknown
865
865
  > = z.object({
866
- _id: z.string().default("tool_01KEVXWAT9781HZGDG09Q3XEDG"),
866
+ _id: z.string().default("tool_01KEYB6FFRZD0RKCPPBQM3QTJQ"),
867
867
  path: z.string(),
868
868
  key: z.string(),
869
869
  display_name: z.string().optional(),
@@ -915,7 +915,7 @@ export const DataCodeExecutionTool$outboundSchema: z.ZodType<
915
915
  z.ZodTypeDef,
916
916
  DataCodeExecutionTool
917
917
  > = z.object({
918
- id: z.string().default("tool_01KEVXWAT9781HZGDG09Q3XEDG"),
918
+ id: z.string().default("tool_01KEYB6FFRZD0RKCPPBQM3QTJQ"),
919
919
  path: z.string(),
920
920
  key: z.string(),
921
921
  displayName: z.string().optional(),
@@ -1074,7 +1074,7 @@ export const DataTools$inboundSchema: z.ZodType<
1074
1074
  z.ZodTypeDef,
1075
1075
  unknown
1076
1076
  > = z.object({
1077
- id: z.string().default("01KEVXWAT8KS1KKYEF3YTTTE63"),
1077
+ id: z.string().default("01KEYB6FFP67NV0N869449Z70V"),
1078
1078
  name: z.string(),
1079
1079
  description: z.string().optional(),
1080
1080
  schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
@@ -1093,7 +1093,7 @@ export const DataTools$outboundSchema: z.ZodType<
1093
1093
  z.ZodTypeDef,
1094
1094
  DataTools
1095
1095
  > = z.object({
1096
- id: z.string().default("01KEVXWAT8KS1KKYEF3YTTTE63"),
1096
+ id: z.string().default("01KEYB6FFP67NV0N869449Z70V"),
1097
1097
  name: z.string(),
1098
1098
  description: z.string().optional(),
1099
1099
  schema: z.lazy(() => GetAllToolsDataSchema$outboundSchema),
@@ -1178,7 +1178,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
1178
1178
  z.ZodTypeDef,
1179
1179
  unknown
1180
1180
  > = z.object({
1181
- _id: z.string().default("tool_01KEVXWAT6SH13A81Y7SA5YFSZ"),
1181
+ _id: z.string().default("tool_01KEYB6FFM7VXCHM74EGHV093D"),
1182
1182
  path: z.string(),
1183
1183
  key: z.string(),
1184
1184
  display_name: z.string().optional(),
@@ -1229,7 +1229,7 @@ export const DataMCPTool$outboundSchema: z.ZodType<
1229
1229
  z.ZodTypeDef,
1230
1230
  DataMCPTool
1231
1231
  > = z.object({
1232
- id: z.string().default("tool_01KEVXWAT6SH13A81Y7SA5YFSZ"),
1232
+ id: z.string().default("tool_01KEYB6FFM7VXCHM74EGHV093D"),
1233
1233
  path: z.string(),
1234
1234
  key: z.string(),
1235
1235
  displayName: z.string().optional(),
@@ -1563,7 +1563,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
1563
1563
  z.ZodTypeDef,
1564
1564
  unknown
1565
1565
  > = z.object({
1566
- _id: z.string().default("tool_01KEVXWAT3AV7RQ4CPQJ6PZHQ8"),
1566
+ _id: z.string().default("tool_01KEYB6FFH79CJJ9A66VXTF91B"),
1567
1567
  path: z.string(),
1568
1568
  key: z.string(),
1569
1569
  display_name: z.string().optional(),
@@ -1614,7 +1614,7 @@ export const DataHTTPTool$outboundSchema: z.ZodType<
1614
1614
  z.ZodTypeDef,
1615
1615
  DataHTTPTool
1616
1616
  > = z.object({
1617
- id: z.string().default("tool_01KEVXWAT3AV7RQ4CPQJ6PZHQ8"),
1617
+ id: z.string().default("tool_01KEYB6FFH79CJJ9A66VXTF91B"),
1618
1618
  path: z.string(),
1619
1619
  key: z.string(),
1620
1620
  displayName: z.string().optional(),
@@ -1767,7 +1767,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
1767
1767
  z.ZodTypeDef,
1768
1768
  unknown
1769
1769
  > = z.object({
1770
- _id: z.string().default("tool_01KEVXWAT0ZX5CMCYM49EV9RZX"),
1770
+ _id: z.string().default("tool_01KEYB6FFF6HK6XBY6QKJ74QF5"),
1771
1771
  path: z.string(),
1772
1772
  key: z.string(),
1773
1773
  display_name: z.string().optional(),
@@ -1819,7 +1819,7 @@ export const DataJSONSchemaTool$outboundSchema: z.ZodType<
1819
1819
  z.ZodTypeDef,
1820
1820
  DataJSONSchemaTool
1821
1821
  > = z.object({
1822
- id: z.string().default("tool_01KEVXWAT0ZX5CMCYM49EV9RZX"),
1822
+ id: z.string().default("tool_01KEYB6FFF6HK6XBY6QKJ74QF5"),
1823
1823
  path: z.string(),
1824
1824
  key: z.string(),
1825
1825
  displayName: z.string().optional(),
@@ -1995,7 +1995,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
1995
1995
  z.ZodTypeDef,
1996
1996
  unknown
1997
1997
  > = z.object({
1998
- _id: z.string().default("tool_01KEVXWASYWFBF3FNN0AXBJ5TC"),
1998
+ _id: z.string().default("tool_01KEYB6FFCKTM67GTGNTMZ70ZQ"),
1999
1999
  path: z.string(),
2000
2000
  key: z.string(),
2001
2001
  display_name: z.string().optional(),
@@ -2046,7 +2046,7 @@ export const DataFunctionTool$outboundSchema: z.ZodType<
2046
2046
  z.ZodTypeDef,
2047
2047
  DataFunctionTool
2048
2048
  > = z.object({
2049
- id: z.string().default("tool_01KEVXWASYWFBF3FNN0AXBJ5TC"),
2049
+ id: z.string().default("tool_01KEYB6FFCKTM67GTGNTMZ70ZQ"),
2050
2050
  path: z.string(),
2051
2051
  key: z.string(),
2052
2052
  displayName: z.string().optional(),
@@ -893,8 +893,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
893
893
  > = z.object({
894
894
  _id: z.string(),
895
895
  description: z.string(),
896
- created: z.string().default("2026-01-13T14:58:56.564Z"),
897
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
896
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
897
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
898
898
  guardrail_config: z.union([
899
899
  z.lazy(() =>
900
900
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
@@ -935,8 +935,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
935
935
  > = z.object({
936
936
  id: z.string(),
937
937
  description: z.string(),
938
- created: z.string().default("2026-01-13T14:58:56.564Z"),
939
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
938
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
939
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
940
940
  guardrailConfig: z.union([
941
941
  z.lazy(() =>
942
942
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
@@ -1183,8 +1183,8 @@ export const DataRagas$inboundSchema: z.ZodType<
1183
1183
  > = z.object({
1184
1184
  _id: z.string(),
1185
1185
  description: z.string(),
1186
- created: z.string().default("2026-01-13T14:58:56.564Z"),
1187
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
1186
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
1187
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
1188
1188
  guardrail_config: z.union([
1189
1189
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
1190
1190
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
@@ -1224,8 +1224,8 @@ export const DataRagas$outboundSchema: z.ZodType<
1224
1224
  > = z.object({
1225
1225
  id: z.string(),
1226
1226
  description: z.string(),
1227
- created: z.string().default("2026-01-13T14:58:56.564Z"),
1228
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
1227
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
1228
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
1229
1229
  guardrailConfig: z.union([
1230
1230
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
1231
1231
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
@@ -2871,8 +2871,8 @@ export const DataFunction$inboundSchema: z.ZodType<
2871
2871
  > = z.object({
2872
2872
  _id: z.string(),
2873
2873
  description: z.string(),
2874
- created: z.string().default("2026-01-13T14:58:56.564Z"),
2875
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
2874
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
2875
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
2876
2876
  guardrail_config: z.union([
2877
2877
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
2878
2878
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
@@ -2975,8 +2975,8 @@ export const DataFunction$outboundSchema: z.ZodType<
2975
2975
  > = z.object({
2976
2976
  id: z.string(),
2977
2977
  description: z.string(),
2978
- created: z.string().default("2026-01-13T14:58:56.564Z"),
2979
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
2978
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
2979
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
2980
2980
  guardrailConfig: z.union([
2981
2981
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
2982
2982
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
@@ -3220,8 +3220,8 @@ export const DataPython$inboundSchema: z.ZodType<
3220
3220
  > = z.object({
3221
3221
  _id: z.string(),
3222
3222
  description: z.string(),
3223
- created: z.string().default("2026-01-13T14:58:56.564Z"),
3224
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
3223
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
3224
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
3225
3225
  guardrail_config: z.union([
3226
3226
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
3227
3227
  z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
@@ -3258,8 +3258,8 @@ export const DataPython$outboundSchema: z.ZodType<
3258
3258
  > = z.object({
3259
3259
  id: z.string(),
3260
3260
  description: z.string(),
3261
- created: z.string().default("2026-01-13T14:58:56.564Z"),
3262
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
3261
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
3262
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
3263
3263
  guardrailConfig: z.union([
3264
3264
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
3265
3265
  z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
@@ -3473,8 +3473,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
3473
3473
  > = z.object({
3474
3474
  _id: z.string(),
3475
3475
  description: z.string(),
3476
- created: z.string().default("2026-01-13T14:58:56.564Z"),
3477
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
3476
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
3477
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
3478
3478
  guardrail_config: z.union([
3479
3479
  z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
3480
3480
  z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
@@ -3517,8 +3517,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
3517
3517
  > = z.object({
3518
3518
  id: z.string(),
3519
3519
  description: z.string(),
3520
- created: z.string().default("2026-01-13T14:58:56.564Z"),
3521
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
3520
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
3521
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
3522
3522
  guardrailConfig: z.union([
3523
3523
  z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
3524
3524
  z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
@@ -3761,8 +3761,8 @@ export const DataJSON$inboundSchema: z.ZodType<
3761
3761
  > = z.object({
3762
3762
  _id: z.string(),
3763
3763
  description: z.string(),
3764
- created: z.string().default("2026-01-13T14:58:56.564Z"),
3765
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
3764
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
3765
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
3766
3766
  guardrail_config: z.union([
3767
3767
  z.lazy(() =>
3768
3768
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
@@ -3803,8 +3803,8 @@ export const DataJSON$outboundSchema: z.ZodType<
3803
3803
  > = z.object({
3804
3804
  id: z.string(),
3805
3805
  description: z.string(),
3806
- created: z.string().default("2026-01-13T14:58:56.564Z"),
3807
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
3806
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
3807
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
3808
3808
  guardrailConfig: z.union([
3809
3809
  z.lazy(() =>
3810
3810
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema
@@ -4056,8 +4056,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
4056
4056
  z.object({
4057
4057
  _id: z.string(),
4058
4058
  description: z.string(),
4059
- created: z.string().default("2026-01-13T14:58:56.564Z"),
4060
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
4059
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
4060
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
4061
4061
  guardrail_config: z.union([
4062
4062
  z.lazy(() =>
4063
4063
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
@@ -4100,8 +4100,8 @@ export const DataLLM$outboundSchema: z.ZodType<
4100
4100
  > = z.object({
4101
4101
  id: z.string(),
4102
4102
  description: z.string(),
4103
- created: z.string().default("2026-01-13T14:58:56.564Z"),
4104
- updated: z.string().default("2026-01-13T14:58:56.564Z"),
4103
+ created: z.string().default("2026-01-14T13:30:10.979Z"),
4104
+ updated: z.string().default("2026-01-14T13:30:10.979Z"),
4105
4105
  guardrailConfig: z.union([
4106
4106
  z.lazy(() =>
4107
4107
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
@@ -305,7 +305,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
305
305
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
306
306
  .optional(),
307
307
  updated: z.string().datetime({ offset: true }).default(
308
- "2026-01-13T14:58:54.165Z",
308
+ "2026-01-14T13:30:08.520Z",
309
309
  ).transform(v => new Date(v)),
310
310
  metrics: z.lazy(() => ListContactsMetrics$inboundSchema),
311
311
  }).transform((v) => {
@@ -341,7 +341,7 @@ export const Data$outboundSchema: z.ZodType<Data$Outbound, z.ZodTypeDef, Data> =
341
341
  tags: z.array(z.string()).optional(),
342
342
  metadata: z.record(z.any()).optional(),
343
343
  created: z.date().transform(v => v.toISOString()).optional(),
344
- updated: z.date().default(() => new Date("2026-01-13T14:58:54.165Z"))
344
+ updated: z.date().default(() => new Date("2026-01-14T13:30:08.520Z"))
345
345
  .transform(v => v.toISOString()),
346
346
  metrics: z.lazy(() => ListContactsMetrics$outboundSchema),
347
347
  }).transform((v) => {
@@ -1961,7 +1961,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
1961
1961
  ),
1962
1962
  reviewed_by_id: z.string(),
1963
1963
  reviewed_at: z.string().datetime({ offset: true }).default(
1964
- "2026-01-13T14:59:09.531Z",
1964
+ "2026-01-14T13:30:22.591Z",
1965
1965
  ).transform(v => new Date(v)),
1966
1966
  type: z.literal("string_array"),
1967
1967
  values: z.array(z.string()),
@@ -1998,7 +1998,7 @@ export const ListDatasetDatapointsEvaluations3$outboundSchema: z.ZodType<
1998
1998
  "orq",
1999
1999
  ),
2000
2000
  reviewedById: z.string(),
2001
- reviewedAt: z.date().default(() => new Date("2026-01-13T14:59:09.531Z"))
2001
+ reviewedAt: z.date().default(() => new Date("2026-01-14T13:30:22.591Z"))
2002
2002
  .transform(v => v.toISOString()),
2003
2003
  type: z.literal("string_array"),
2004
2004
  values: z.array(z.string()),
@@ -2067,7 +2067,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
2067
2067
  source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
2068
2068
  reviewed_by_id: z.string(),
2069
2069
  reviewed_at: z.string().datetime({ offset: true }).default(
2070
- "2026-01-13T14:59:09.530Z",
2070
+ "2026-01-14T13:30:22.587Z",
2071
2071
  ).transform(v => new Date(v)),
2072
2072
  type: z.literal("number"),
2073
2073
  value: z.number(),
@@ -2103,7 +2103,7 @@ export const ListDatasetDatapointsEvaluations2$outboundSchema: z.ZodType<
2103
2103
  humanReviewId: z.string(),
2104
2104
  source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
2105
2105
  reviewedById: z.string(),
2106
- reviewedAt: z.date().default(() => new Date("2026-01-13T14:59:09.530Z"))
2106
+ reviewedAt: z.date().default(() => new Date("2026-01-14T13:30:22.587Z"))
2107
2107
  .transform(v => v.toISOString()),
2108
2108
  type: z.literal("number"),
2109
2109
  value: z.number(),
@@ -2171,7 +2171,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
2171
2171
  .default("orq"),
2172
2172
  reviewed_by_id: z.string(),
2173
2173
  reviewed_at: z.string().datetime({ offset: true }).default(
2174
- "2026-01-13T14:59:09.529Z",
2174
+ "2026-01-14T13:30:22.582Z",
2175
2175
  ).transform(v => new Date(v)),
2176
2176
  type: z.literal("string"),
2177
2177
  value: z.string(),
@@ -2208,7 +2208,7 @@ export const ListDatasetDatapointsEvaluations1$outboundSchema: z.ZodType<
2208
2208
  source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
2209
2209
  .default("orq"),
2210
2210
  reviewedById: z.string(),
2211
- reviewedAt: z.date().default(() => new Date("2026-01-13T14:59:09.529Z"))
2211
+ reviewedAt: z.date().default(() => new Date("2026-01-14T13:30:22.582Z"))
2212
2212
  .transform(v => v.toISOString()),
2213
2213
  type: z.literal("string"),
2214
2214
  value: z.string(),
@@ -2321,7 +2321,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
2321
2321
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
2322
2322
  .optional(),
2323
2323
  updated: z.string().datetime({ offset: true }).default(
2324
- "2026-01-13T14:58:54.165Z",
2324
+ "2026-01-14T13:30:08.520Z",
2325
2325
  ).transform(v => new Date(v)),
2326
2326
  }).transform((v) => {
2327
2327
  return remap$(v, {
@@ -2399,7 +2399,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
2399
2399
  createdById: z.string().optional(),
2400
2400
  updatedById: z.string().optional(),
2401
2401
  created: z.date().transform(v => v.toISOString()).optional(),
2402
- updated: z.date().default(() => new Date("2026-01-13T14:58:54.165Z"))
2402
+ updated: z.date().default(() => new Date("2026-01-14T13:30:08.520Z"))
2403
2403
  .transform(v => v.toISOString()),
2404
2404
  }).transform((v) => {
2405
2405
  return remap$(v, {
@@ -211,7 +211,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
211
211
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
212
212
  .optional(),
213
213
  updated: z.string().datetime({ offset: true }).default(
214
- "2026-01-13T14:58:54.165Z",
214
+ "2026-01-14T13:30:08.520Z",
215
215
  ).transform(v => new Date(v)),
216
216
  }).transform((v) => {
217
217
  return remap$(v, {
@@ -250,7 +250,7 @@ export const ListDatasetsData$outboundSchema: z.ZodType<
250
250
  createdById: z.string().optional(),
251
251
  updatedById: z.string().optional(),
252
252
  created: z.date().transform(v => v.toISOString()).optional(),
253
- updated: z.date().default(() => new Date("2026-01-13T14:58:54.165Z"))
253
+ updated: z.date().default(() => new Date("2026-01-14T13:30:08.520Z"))
254
254
  .transform(v => v.toISOString()),
255
255
  }).transform((v) => {
256
256
  return remap$(v, {