@orq-ai/node 3.12.11 → 3.12.13

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 (77) hide show
  1. package/bin/mcp-server.js +259 -250
  2. package/bin/mcp-server.js.map +32 -32
  3. package/docs/sdks/evals/README.md +2 -0
  4. package/docs/sdks/knowledge/README.md +12 -0
  5. package/examples/package-lock.json +1 -1
  6. package/jsr.json +1 -1
  7. package/lib/config.d.ts +3 -3
  8. package/lib/config.js +3 -3
  9. package/mcp-server/mcp-server.js +1 -1
  10. package/mcp-server/server.js +1 -1
  11. package/models/operations/createbudget.js +2 -2
  12. package/models/operations/createcontact.js +2 -2
  13. package/models/operations/createdataset.js +2 -2
  14. package/models/operations/createdatasetitem.js +2 -2
  15. package/models/operations/createdatasource.js +2 -2
  16. package/models/operations/createeval.d.ts +114 -0
  17. package/models/operations/createeval.d.ts.map +1 -1
  18. package/models/operations/createeval.js +117 -21
  19. package/models/operations/createeval.js.map +1 -1
  20. package/models/operations/fileget.js +2 -2
  21. package/models/operations/filelist.js +2 -2
  22. package/models/operations/fileupload.js +2 -2
  23. package/models/operations/getbudget.js +2 -2
  24. package/models/operations/getevals.js +28 -28
  25. package/models/operations/listbudgets.js +2 -2
  26. package/models/operations/listcontacts.js +2 -2
  27. package/models/operations/listdatasetdatapoints.js +2 -2
  28. package/models/operations/listdatasets.js +2 -2
  29. package/models/operations/listdatasources.js +2 -2
  30. package/models/operations/retrievecontact.js +2 -2
  31. package/models/operations/retrievedatapoint.js +2 -2
  32. package/models/operations/retrievedataset.js +2 -2
  33. package/models/operations/retrievedatasource.js +2 -2
  34. package/models/operations/searchknowledge.d.ts +17 -246
  35. package/models/operations/searchknowledge.d.ts.map +1 -1
  36. package/models/operations/searchknowledge.js +16 -167
  37. package/models/operations/searchknowledge.js.map +1 -1
  38. package/models/operations/updatebudget.js +2 -2
  39. package/models/operations/updatecontact.js +2 -2
  40. package/models/operations/updatedatapoint.js +2 -2
  41. package/models/operations/updatedataset.js +2 -2
  42. package/models/operations/updatedatasource.js +2 -2
  43. package/models/operations/updateeval.d.ts +114 -0
  44. package/models/operations/updateeval.d.ts.map +1 -1
  45. package/models/operations/updateeval.js +122 -21
  46. package/models/operations/updateeval.js.map +1 -1
  47. package/package.json +1 -1
  48. package/src/lib/config.ts +3 -3
  49. package/src/mcp-server/mcp-server.ts +1 -1
  50. package/src/mcp-server/server.ts +1 -1
  51. package/src/models/operations/createbudget.ts +2 -2
  52. package/src/models/operations/createcontact.ts +2 -2
  53. package/src/models/operations/createdataset.ts +2 -2
  54. package/src/models/operations/createdatasetitem.ts +2 -2
  55. package/src/models/operations/createdatasource.ts +2 -2
  56. package/src/models/operations/createeval.ts +155 -16
  57. package/src/models/operations/fileget.ts +2 -2
  58. package/src/models/operations/filelist.ts +2 -2
  59. package/src/models/operations/fileupload.ts +2 -2
  60. package/src/models/operations/getbudget.ts +2 -2
  61. package/src/models/operations/getevals.ts +28 -28
  62. package/src/models/operations/listbudgets.ts +2 -2
  63. package/src/models/operations/listcontacts.ts +2 -2
  64. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  65. package/src/models/operations/listdatasets.ts +2 -2
  66. package/src/models/operations/listdatasources.ts +2 -2
  67. package/src/models/operations/retrievecontact.ts +2 -2
  68. package/src/models/operations/retrievedatapoint.ts +2 -2
  69. package/src/models/operations/retrievedataset.ts +2 -2
  70. package/src/models/operations/retrievedatasource.ts +2 -2
  71. package/src/models/operations/searchknowledge.ts +29 -259
  72. package/src/models/operations/updatebudget.ts +2 -2
  73. package/src/models/operations/updatecontact.ts +2 -2
  74. package/src/models/operations/updatedatapoint.ts +2 -2
  75. package/src/models/operations/updatedataset.ts +2 -2
  76. package/src/models/operations/updatedatasource.ts +2 -2
  77. package/src/models/operations/updateeval.ts +169 -16
@@ -52,6 +52,15 @@ export type CreateEvalRequestBodyEvalsGuardrailConfig =
52
52
  | CreateEvalGuardrailConfigEvalsNumber
53
53
  | CreateEvalGuardrailConfigEvalsBoolean;
54
54
 
55
+ export const CreateEvalRequestBodyEvalsOutputType = {
56
+ Boolean: "boolean",
57
+ Number: "number",
58
+ String: "string",
59
+ } as const;
60
+ export type CreateEvalRequestBodyEvalsOutputType = ClosedEnum<
61
+ typeof CreateEvalRequestBodyEvalsOutputType
62
+ >;
63
+
55
64
  export const CreateEvalRequestBodyEvalsRequestType = {
56
65
  PythonEval: "python_eval",
57
66
  } as const;
@@ -64,6 +73,7 @@ export type Python = {
64
73
  | CreateEvalGuardrailConfigEvalsNumber
65
74
  | CreateEvalGuardrailConfigEvalsBoolean
66
75
  | undefined;
76
+ outputType: CreateEvalRequestBodyEvalsOutputType;
67
77
  code: string;
68
78
  type: CreateEvalRequestBodyEvalsRequestType;
69
79
  /**
@@ -117,6 +127,15 @@ export type CreateEvalRequestBodyGuardrailConfig =
117
127
  | CreateEvalGuardrailConfigNumber
118
128
  | CreateEvalGuardrailConfigBoolean;
119
129
 
130
+ export const CreateEvalRequestBodyOutputType = {
131
+ Boolean: "boolean",
132
+ Number: "number",
133
+ String: "string",
134
+ } as const;
135
+ export type CreateEvalRequestBodyOutputType = ClosedEnum<
136
+ typeof CreateEvalRequestBodyOutputType
137
+ >;
138
+
120
139
  export const CreateEvalRequestBodyEvalsType = {
121
140
  HttpEval: "http_eval",
122
141
  } as const;
@@ -135,6 +154,7 @@ export type Http = {
135
154
  | CreateEvalGuardrailConfigNumber
136
155
  | CreateEvalGuardrailConfigBoolean
137
156
  | undefined;
157
+ outputType: CreateEvalRequestBodyOutputType;
138
158
  type: CreateEvalRequestBodyEvalsType;
139
159
  url: string;
140
160
  method: Method;
@@ -191,6 +211,11 @@ export type RequestBodyGuardrailConfig =
191
211
  | GuardrailConfigNumber
192
212
  | GuardrailConfigBoolean;
193
213
 
214
+ export const RequestBodyOutputType = {
215
+ Boolean: "boolean",
216
+ } as const;
217
+ export type RequestBodyOutputType = ClosedEnum<typeof RequestBodyOutputType>;
218
+
194
219
  export const CreateEvalRequestBodyType = {
195
220
  JsonSchema: "json_schema",
196
221
  } as const;
@@ -200,6 +225,7 @@ export type CreateEvalRequestBodyType = ClosedEnum<
200
225
 
201
226
  export type Json = {
202
227
  guardrailConfig?: GuardrailConfigNumber | GuardrailConfigBoolean | undefined;
228
+ outputType: RequestBodyOutputType;
203
229
  type: CreateEvalRequestBodyType;
204
230
  schema: string;
205
231
  /**
@@ -247,6 +273,13 @@ export type Boolean = {
247
273
 
248
274
  export type GuardrailConfig = NumberT | Boolean;
249
275
 
276
+ export const OutputType = {
277
+ Boolean: "boolean",
278
+ Number: "number",
279
+ String: "string",
280
+ } as const;
281
+ export type OutputType = ClosedEnum<typeof OutputType>;
282
+
250
283
  export const RequestBodyType = {
251
284
  LlmEval: "llm_eval",
252
285
  } as const;
@@ -254,6 +287,7 @@ export type RequestBodyType = ClosedEnum<typeof RequestBodyType>;
254
287
 
255
288
  export type Llm = {
256
289
  guardrailConfig?: NumberT | Boolean | undefined;
290
+ outputType: OutputType;
257
291
  type: RequestBodyType;
258
292
  prompt: string;
259
293
  /**
@@ -838,6 +872,30 @@ export function createEvalRequestBodyEvalsGuardrailConfigFromJSON(
838
872
  );
839
873
  }
840
874
 
875
+ /** @internal */
876
+ export const CreateEvalRequestBodyEvalsOutputType$inboundSchema:
877
+ z.ZodNativeEnum<typeof CreateEvalRequestBodyEvalsOutputType> = z.nativeEnum(
878
+ CreateEvalRequestBodyEvalsOutputType,
879
+ );
880
+
881
+ /** @internal */
882
+ export const CreateEvalRequestBodyEvalsOutputType$outboundSchema:
883
+ z.ZodNativeEnum<typeof CreateEvalRequestBodyEvalsOutputType> =
884
+ CreateEvalRequestBodyEvalsOutputType$inboundSchema;
885
+
886
+ /**
887
+ * @internal
888
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
889
+ */
890
+ export namespace CreateEvalRequestBodyEvalsOutputType$ {
891
+ /** @deprecated use `CreateEvalRequestBodyEvalsOutputType$inboundSchema` instead. */
892
+ export const inboundSchema =
893
+ CreateEvalRequestBodyEvalsOutputType$inboundSchema;
894
+ /** @deprecated use `CreateEvalRequestBodyEvalsOutputType$outboundSchema` instead. */
895
+ export const outboundSchema =
896
+ CreateEvalRequestBodyEvalsOutputType$outboundSchema;
897
+ }
898
+
841
899
  /** @internal */
842
900
  export const CreateEvalRequestBodyEvalsRequestType$inboundSchema:
843
901
  z.ZodNativeEnum<typeof CreateEvalRequestBodyEvalsRequestType> = z.nativeEnum(
@@ -869,6 +927,7 @@ export const Python$inboundSchema: z.ZodType<Python, z.ZodTypeDef, unknown> = z
869
927
  z.lazy(() => CreateEvalGuardrailConfigEvalsNumber$inboundSchema),
870
928
  z.lazy(() => CreateEvalGuardrailConfigEvalsBoolean$inboundSchema),
871
929
  ]).optional(),
930
+ output_type: CreateEvalRequestBodyEvalsOutputType$inboundSchema,
872
931
  code: z.string(),
873
932
  type: CreateEvalRequestBodyEvalsRequestType$inboundSchema,
874
933
  path: z.string(),
@@ -877,6 +936,7 @@ export const Python$inboundSchema: z.ZodType<Python, z.ZodTypeDef, unknown> = z
877
936
  }).transform((v) => {
878
937
  return remap$(v, {
879
938
  "guardrail_config": "guardrailConfig",
939
+ "output_type": "outputType",
880
940
  });
881
941
  });
882
942
 
@@ -886,6 +946,7 @@ export type Python$Outbound = {
886
946
  | CreateEvalGuardrailConfigEvalsNumber$Outbound
887
947
  | CreateEvalGuardrailConfigEvalsBoolean$Outbound
888
948
  | undefined;
949
+ output_type: string;
889
950
  code: string;
890
951
  type: string;
891
952
  path: string;
@@ -903,6 +964,7 @@ export const Python$outboundSchema: z.ZodType<
903
964
  z.lazy(() => CreateEvalGuardrailConfigEvalsNumber$outboundSchema),
904
965
  z.lazy(() => CreateEvalGuardrailConfigEvalsBoolean$outboundSchema),
905
966
  ]).optional(),
967
+ outputType: CreateEvalRequestBodyEvalsOutputType$outboundSchema,
906
968
  code: z.string(),
907
969
  type: CreateEvalRequestBodyEvalsRequestType$outboundSchema,
908
970
  path: z.string(),
@@ -911,6 +973,7 @@ export const Python$outboundSchema: z.ZodType<
911
973
  }).transform((v) => {
912
974
  return remap$(v, {
913
975
  guardrailConfig: "guardrail_config",
976
+ outputType: "output_type",
914
977
  });
915
978
  });
916
979
 
@@ -1199,6 +1262,27 @@ export function createEvalRequestBodyGuardrailConfigFromJSON(
1199
1262
  );
1200
1263
  }
1201
1264
 
1265
+ /** @internal */
1266
+ export const CreateEvalRequestBodyOutputType$inboundSchema: z.ZodNativeEnum<
1267
+ typeof CreateEvalRequestBodyOutputType
1268
+ > = z.nativeEnum(CreateEvalRequestBodyOutputType);
1269
+
1270
+ /** @internal */
1271
+ export const CreateEvalRequestBodyOutputType$outboundSchema: z.ZodNativeEnum<
1272
+ typeof CreateEvalRequestBodyOutputType
1273
+ > = CreateEvalRequestBodyOutputType$inboundSchema;
1274
+
1275
+ /**
1276
+ * @internal
1277
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1278
+ */
1279
+ export namespace CreateEvalRequestBodyOutputType$ {
1280
+ /** @deprecated use `CreateEvalRequestBodyOutputType$inboundSchema` instead. */
1281
+ export const inboundSchema = CreateEvalRequestBodyOutputType$inboundSchema;
1282
+ /** @deprecated use `CreateEvalRequestBodyOutputType$outboundSchema` instead. */
1283
+ export const outboundSchema = CreateEvalRequestBodyOutputType$outboundSchema;
1284
+ }
1285
+
1202
1286
  /** @internal */
1203
1287
  export const CreateEvalRequestBodyEvalsType$inboundSchema: z.ZodNativeEnum<
1204
1288
  typeof CreateEvalRequestBodyEvalsType
@@ -1246,6 +1330,7 @@ export const Http$inboundSchema: z.ZodType<Http, z.ZodTypeDef, unknown> = z
1246
1330
  z.lazy(() => CreateEvalGuardrailConfigNumber$inboundSchema),
1247
1331
  z.lazy(() => CreateEvalGuardrailConfigBoolean$inboundSchema),
1248
1332
  ]).optional(),
1333
+ output_type: CreateEvalRequestBodyOutputType$inboundSchema,
1249
1334
  type: CreateEvalRequestBodyEvalsType$inboundSchema,
1250
1335
  url: z.string(),
1251
1336
  method: Method$inboundSchema,
@@ -1257,6 +1342,7 @@ export const Http$inboundSchema: z.ZodType<Http, z.ZodTypeDef, unknown> = z
1257
1342
  }).transform((v) => {
1258
1343
  return remap$(v, {
1259
1344
  "guardrail_config": "guardrailConfig",
1345
+ "output_type": "outputType",
1260
1346
  });
1261
1347
  });
1262
1348
 
@@ -1266,6 +1352,7 @@ export type Http$Outbound = {
1266
1352
  | CreateEvalGuardrailConfigNumber$Outbound
1267
1353
  | CreateEvalGuardrailConfigBoolean$Outbound
1268
1354
  | undefined;
1355
+ output_type: string;
1269
1356
  type: string;
1270
1357
  url: string;
1271
1358
  method: string;
@@ -1283,6 +1370,7 @@ export const Http$outboundSchema: z.ZodType<Http$Outbound, z.ZodTypeDef, Http> =
1283
1370
  z.lazy(() => CreateEvalGuardrailConfigNumber$outboundSchema),
1284
1371
  z.lazy(() => CreateEvalGuardrailConfigBoolean$outboundSchema),
1285
1372
  ]).optional(),
1373
+ outputType: CreateEvalRequestBodyOutputType$outboundSchema,
1286
1374
  type: CreateEvalRequestBodyEvalsType$outboundSchema,
1287
1375
  url: z.string(),
1288
1376
  method: Method$outboundSchema,
@@ -1294,6 +1382,7 @@ export const Http$outboundSchema: z.ZodType<Http$Outbound, z.ZodTypeDef, Http> =
1294
1382
  }).transform((v) => {
1295
1383
  return remap$(v, {
1296
1384
  guardrailConfig: "guardrail_config",
1385
+ outputType: "output_type",
1297
1386
  });
1298
1387
  });
1299
1388
 
@@ -1569,6 +1658,27 @@ export function requestBodyGuardrailConfigFromJSON(
1569
1658
  );
1570
1659
  }
1571
1660
 
1661
+ /** @internal */
1662
+ export const RequestBodyOutputType$inboundSchema: z.ZodNativeEnum<
1663
+ typeof RequestBodyOutputType
1664
+ > = z.nativeEnum(RequestBodyOutputType);
1665
+
1666
+ /** @internal */
1667
+ export const RequestBodyOutputType$outboundSchema: z.ZodNativeEnum<
1668
+ typeof RequestBodyOutputType
1669
+ > = RequestBodyOutputType$inboundSchema;
1670
+
1671
+ /**
1672
+ * @internal
1673
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1674
+ */
1675
+ export namespace RequestBodyOutputType$ {
1676
+ /** @deprecated use `RequestBodyOutputType$inboundSchema` instead. */
1677
+ export const inboundSchema = RequestBodyOutputType$inboundSchema;
1678
+ /** @deprecated use `RequestBodyOutputType$outboundSchema` instead. */
1679
+ export const outboundSchema = RequestBodyOutputType$outboundSchema;
1680
+ }
1681
+
1572
1682
  /** @internal */
1573
1683
  export const CreateEvalRequestBodyType$inboundSchema: z.ZodNativeEnum<
1574
1684
  typeof CreateEvalRequestBodyType
@@ -1597,6 +1707,7 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
1597
1707
  z.lazy(() => GuardrailConfigNumber$inboundSchema),
1598
1708
  z.lazy(() => GuardrailConfigBoolean$inboundSchema),
1599
1709
  ]).optional(),
1710
+ output_type: RequestBodyOutputType$inboundSchema,
1600
1711
  type: CreateEvalRequestBodyType$inboundSchema,
1601
1712
  schema: z.string(),
1602
1713
  path: z.string(),
@@ -1605,6 +1716,7 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
1605
1716
  }).transform((v) => {
1606
1717
  return remap$(v, {
1607
1718
  "guardrail_config": "guardrailConfig",
1719
+ "output_type": "outputType",
1608
1720
  });
1609
1721
  });
1610
1722
 
@@ -1614,6 +1726,7 @@ export type Json$Outbound = {
1614
1726
  | GuardrailConfigNumber$Outbound
1615
1727
  | GuardrailConfigBoolean$Outbound
1616
1728
  | undefined;
1729
+ output_type: string;
1617
1730
  type: string;
1618
1731
  schema: string;
1619
1732
  path: string;
@@ -1628,6 +1741,7 @@ export const Json$outboundSchema: z.ZodType<Json$Outbound, z.ZodTypeDef, Json> =
1628
1741
  z.lazy(() => GuardrailConfigNumber$outboundSchema),
1629
1742
  z.lazy(() => GuardrailConfigBoolean$outboundSchema),
1630
1743
  ]).optional(),
1744
+ outputType: RequestBodyOutputType$outboundSchema,
1631
1745
  type: CreateEvalRequestBodyType$outboundSchema,
1632
1746
  schema: z.string(),
1633
1747
  path: z.string(),
@@ -1636,6 +1750,7 @@ export const Json$outboundSchema: z.ZodType<Json$Outbound, z.ZodTypeDef, Json> =
1636
1750
  }).transform((v) => {
1637
1751
  return remap$(v, {
1638
1752
  guardrailConfig: "guardrail_config",
1753
+ outputType: "output_type",
1639
1754
  });
1640
1755
  });
1641
1756
 
@@ -1888,6 +2003,25 @@ export function guardrailConfigFromJSON(
1888
2003
  );
1889
2004
  }
1890
2005
 
2006
+ /** @internal */
2007
+ export const OutputType$inboundSchema: z.ZodNativeEnum<typeof OutputType> = z
2008
+ .nativeEnum(OutputType);
2009
+
2010
+ /** @internal */
2011
+ export const OutputType$outboundSchema: z.ZodNativeEnum<typeof OutputType> =
2012
+ OutputType$inboundSchema;
2013
+
2014
+ /**
2015
+ * @internal
2016
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2017
+ */
2018
+ export namespace OutputType$ {
2019
+ /** @deprecated use `OutputType$inboundSchema` instead. */
2020
+ export const inboundSchema = OutputType$inboundSchema;
2021
+ /** @deprecated use `OutputType$outboundSchema` instead. */
2022
+ export const outboundSchema = OutputType$outboundSchema;
2023
+ }
2024
+
1891
2025
  /** @internal */
1892
2026
  export const RequestBodyType$inboundSchema: z.ZodNativeEnum<
1893
2027
  typeof RequestBodyType
@@ -1916,6 +2050,7 @@ export const Llm$inboundSchema: z.ZodType<Llm, z.ZodTypeDef, unknown> = z
1916
2050
  z.lazy(() => NumberT$inboundSchema),
1917
2051
  z.lazy(() => Boolean$inboundSchema),
1918
2052
  ]).optional(),
2053
+ output_type: OutputType$inboundSchema,
1919
2054
  type: RequestBodyType$inboundSchema,
1920
2055
  prompt: z.string(),
1921
2056
  path: z.string(),
@@ -1925,12 +2060,14 @@ export const Llm$inboundSchema: z.ZodType<Llm, z.ZodTypeDef, unknown> = z
1925
2060
  }).transform((v) => {
1926
2061
  return remap$(v, {
1927
2062
  "guardrail_config": "guardrailConfig",
2063
+ "output_type": "outputType",
1928
2064
  });
1929
2065
  });
1930
2066
 
1931
2067
  /** @internal */
1932
2068
  export type Llm$Outbound = {
1933
2069
  guardrail_config?: NumberT$Outbound | Boolean$Outbound | undefined;
2070
+ output_type: string;
1934
2071
  type: string;
1935
2072
  prompt: string;
1936
2073
  path: string;
@@ -1946,6 +2083,7 @@ export const Llm$outboundSchema: z.ZodType<Llm$Outbound, z.ZodTypeDef, Llm> = z
1946
2083
  z.lazy(() => NumberT$outboundSchema),
1947
2084
  z.lazy(() => Boolean$outboundSchema),
1948
2085
  ]).optional(),
2086
+ outputType: OutputType$outboundSchema,
1949
2087
  type: RequestBodyType$outboundSchema,
1950
2088
  prompt: z.string(),
1951
2089
  path: z.string(),
@@ -1955,6 +2093,7 @@ export const Llm$outboundSchema: z.ZodType<Llm$Outbound, z.ZodTypeDef, Llm> = z
1955
2093
  }).transform((v) => {
1956
2094
  return remap$(v, {
1957
2095
  guardrailConfig: "guardrail_config",
2096
+ outputType: "output_type",
1958
2097
  });
1959
2098
  });
1960
2099
 
@@ -2399,8 +2538,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
2399
2538
  > = z.object({
2400
2539
  _id: z.string(),
2401
2540
  description: z.string(),
2402
- created: z.string().default("2025-09-18T16:20:51.118Z"),
2403
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
2541
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
2542
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
2404
2543
  guardrail_config: z.union([
2405
2544
  z.lazy(() =>
2406
2545
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -2442,8 +2581,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
2442
2581
  > = z.object({
2443
2582
  id: z.string(),
2444
2583
  description: z.string(),
2445
- created: z.string().default("2025-09-18T16:20:51.118Z"),
2446
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
2584
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
2585
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
2447
2586
  guardrailConfig: z.union([
2448
2587
  z.lazy(() =>
2449
2588
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
@@ -2856,8 +2995,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
2856
2995
  > = z.object({
2857
2996
  _id: z.string(),
2858
2997
  description: z.string(),
2859
- created: z.string().default("2025-09-18T16:20:51.118Z"),
2860
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
2998
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
2999
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
2861
3000
  guardrail_config: z.union([
2862
3001
  z.lazy(() =>
2863
3002
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -2905,8 +3044,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
2905
3044
  > = z.object({
2906
3045
  id: z.string(),
2907
3046
  description: z.string(),
2908
- created: z.string().default("2025-09-18T16:20:51.118Z"),
2909
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
3047
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
3048
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
2910
3049
  guardrailConfig: z.union([
2911
3050
  z.lazy(() =>
2912
3051
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -3283,8 +3422,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
3283
3422
  > = z.object({
3284
3423
  _id: z.string(),
3285
3424
  description: z.string(),
3286
- created: z.string().default("2025-09-18T16:20:51.118Z"),
3287
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
3425
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
3426
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
3288
3427
  guardrail_config: z.union([
3289
3428
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
3290
3429
  z.lazy(() =>
@@ -3324,8 +3463,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
3324
3463
  > = z.object({
3325
3464
  id: z.string(),
3326
3465
  description: z.string(),
3327
- created: z.string().default("2025-09-18T16:20:51.118Z"),
3328
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
3466
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
3467
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
3329
3468
  guardrailConfig: z.union([
3330
3469
  z.lazy(() =>
3331
3470
  CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
@@ -3680,8 +3819,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
3680
3819
  > = z.object({
3681
3820
  _id: z.string(),
3682
3821
  description: z.string(),
3683
- created: z.string().default("2025-09-18T16:20:51.118Z"),
3684
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
3822
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
3823
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
3685
3824
  guardrail_config: z.union([
3686
3825
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
3687
3826
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -3721,8 +3860,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
3721
3860
  > = z.object({
3722
3861
  id: z.string(),
3723
3862
  description: z.string(),
3724
- created: z.string().default("2025-09-18T16:20:51.118Z"),
3725
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
3863
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
3864
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
3726
3865
  guardrailConfig: z.union([
3727
3866
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
3728
3867
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
@@ -146,7 +146,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
146
146
  file_name: z.string(),
147
147
  workspace_id: z.string(),
148
148
  created: z.string().datetime({ offset: true }).default(
149
- "2025-09-18T16:20:52.107Z",
149
+ "2025-09-18T21:41:51.963Z",
150
150
  ).transform(v => new Date(v)),
151
151
  }).transform((v) => {
152
152
  return remap$(v, {
@@ -180,7 +180,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
180
180
  bytes: z.number(),
181
181
  fileName: z.string(),
182
182
  workspaceId: z.string(),
183
- created: z.date().default(() => new Date("2025-09-18T16:20:52.107Z"))
183
+ created: z.date().default(() => new Date("2025-09-18T21:41:51.963Z"))
184
184
  .transform(v => v.toISOString()),
185
185
  }).transform((v) => {
186
186
  return remap$(v, {
@@ -196,7 +196,7 @@ export const FileListData$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
- "2025-09-18T16:20:52.107Z",
199
+ "2025-09-18T21:41:51.963Z",
200
200
  ).transform(v => new Date(v)),
201
201
  }).transform((v) => {
202
202
  return remap$(v, {
@@ -230,7 +230,7 @@ export const FileListData$outboundSchema: z.ZodType<
230
230
  bytes: z.number(),
231
231
  fileName: z.string(),
232
232
  workspaceId: z.string(),
233
- created: z.date().default(() => new Date("2025-09-18T16:20:52.107Z"))
233
+ created: z.date().default(() => new Date("2025-09-18T21:41:51.963Z"))
234
234
  .transform(v => v.toISOString()),
235
235
  }).transform((v) => {
236
236
  return remap$(v, {
@@ -250,7 +250,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
250
250
  file_name: z.string(),
251
251
  workspace_id: z.string(),
252
252
  created: z.string().datetime({ offset: true }).default(
253
- "2025-09-18T16:20:52.107Z",
253
+ "2025-09-18T21:41:51.963Z",
254
254
  ).transform(v => new Date(v)),
255
255
  }).transform((v) => {
256
256
  return remap$(v, {
@@ -284,7 +284,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
284
284
  bytes: z.number(),
285
285
  fileName: z.string(),
286
286
  workspaceId: z.string(),
287
- created: z.date().default(() => new Date("2025-09-18T16:20:52.107Z"))
287
+ created: z.date().default(() => new Date("2025-09-18T21:41:51.963Z"))
288
288
  .transform(v => v.toISOString()),
289
289
  }).transform((v) => {
290
290
  return remap$(v, {
@@ -356,7 +356,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
356
356
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
357
357
  .optional(),
358
358
  updated: z.string().datetime({ offset: true }).default(
359
- "2025-09-18T16:20:48.743Z",
359
+ "2025-09-18T21:41:48.234Z",
360
360
  ).transform(v => new Date(v)),
361
361
  }).transform((v) => {
362
362
  return remap$(v, {
@@ -394,7 +394,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
394
394
  isActive: z.boolean(),
395
395
  consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
396
396
  created: z.date().transform(v => v.toISOString()).optional(),
397
- updated: z.date().default(() => new Date("2025-09-18T16:20:48.743Z"))
397
+ updated: z.date().default(() => new Date("2025-09-18T21:41:48.234Z"))
398
398
  .transform(v => v.toISOString()),
399
399
  }).transform((v) => {
400
400
  return remap$(v, {
@@ -1551,8 +1551,8 @@ export const Typescript$inboundSchema: z.ZodType<
1551
1551
  > = z.object({
1552
1552
  _id: z.string(),
1553
1553
  description: z.string(),
1554
- created: z.string().default("2025-09-18T16:20:51.118Z"),
1555
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
1554
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
1555
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
1556
1556
  guardrail_config: z.union([
1557
1557
  z.lazy(() =>
1558
1558
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -1595,8 +1595,8 @@ export const Typescript$outboundSchema: z.ZodType<
1595
1595
  > = z.object({
1596
1596
  id: z.string(),
1597
1597
  description: z.string(),
1598
- created: z.string().default("2025-09-18T16:20:51.118Z"),
1599
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
1598
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
1599
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
1600
1600
  guardrailConfig: z.union([
1601
1601
  z.lazy(() =>
1602
1602
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -1992,8 +1992,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
1992
1992
  .object({
1993
1993
  _id: z.string(),
1994
1994
  description: z.string(),
1995
- created: z.string().default("2025-09-18T16:20:51.118Z"),
1996
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
1995
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
1996
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
1997
1997
  guardrail_config: z.union([
1998
1998
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
1999
1999
  z.lazy(() =>
@@ -2036,8 +2036,8 @@ export const Ragas$outboundSchema: z.ZodType<
2036
2036
  > = z.object({
2037
2037
  id: z.string(),
2038
2038
  description: z.string(),
2039
- created: z.string().default("2025-09-18T16:20:51.118Z"),
2040
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
2039
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
2040
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
2041
2041
  guardrailConfig: z.union([
2042
2042
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
2043
2043
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
@@ -5316,8 +5316,8 @@ export const DataFunction$inboundSchema: z.ZodType<
5316
5316
  > = z.object({
5317
5317
  _id: z.string(),
5318
5318
  description: z.string(),
5319
- created: z.string().default("2025-09-18T16:20:51.118Z"),
5320
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
5319
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
5320
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
5321
5321
  guardrail_config: z.union([
5322
5322
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
5323
5323
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -5427,8 +5427,8 @@ export const DataFunction$outboundSchema: z.ZodType<
5427
5427
  > = z.object({
5428
5428
  id: z.string(),
5429
5429
  description: z.string(),
5430
- created: z.string().default("2025-09-18T16:20:51.118Z"),
5431
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
5430
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
5431
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
5432
5432
  guardrailConfig: z.union([
5433
5433
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
5434
5434
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
@@ -5810,8 +5810,8 @@ export const DataPython$inboundSchema: z.ZodType<
5810
5810
  > = z.object({
5811
5811
  _id: z.string(),
5812
5812
  description: z.string(),
5813
- created: z.string().default("2025-09-18T16:20:51.118Z"),
5814
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
5813
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
5814
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
5815
5815
  guardrail_config: z.union([
5816
5816
  z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
5817
5817
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
@@ -5849,8 +5849,8 @@ export const DataPython$outboundSchema: z.ZodType<
5849
5849
  > = z.object({
5850
5850
  id: z.string(),
5851
5851
  description: z.string(),
5852
- created: z.string().default("2025-09-18T16:20:51.118Z"),
5853
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
5852
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
5853
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
5854
5854
  guardrailConfig: z.union([
5855
5855
  z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
5856
5856
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
@@ -6196,8 +6196,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
6196
6196
  > = z.object({
6197
6197
  _id: z.string(),
6198
6198
  description: z.string(),
6199
- created: z.string().default("2025-09-18T16:20:51.118Z"),
6200
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
6199
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
6200
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
6201
6201
  guardrail_config: z.union([
6202
6202
  z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
6203
6203
  z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
@@ -6241,8 +6241,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
6241
6241
  > = z.object({
6242
6242
  id: z.string(),
6243
6243
  description: z.string(),
6244
- created: z.string().default("2025-09-18T16:20:51.118Z"),
6245
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
6244
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
6245
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
6246
6246
  guardrailConfig: z.union([
6247
6247
  z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
6248
6248
  z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
@@ -6607,8 +6607,8 @@ export const DataJSON$inboundSchema: z.ZodType<
6607
6607
  > = z.object({
6608
6608
  _id: z.string(),
6609
6609
  description: z.string(),
6610
- created: z.string().default("2025-09-18T16:20:51.118Z"),
6611
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
6610
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
6611
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
6612
6612
  guardrail_config: z.union([
6613
6613
  z.lazy(() =>
6614
6614
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
@@ -6650,8 +6650,8 @@ export const DataJSON$outboundSchema: z.ZodType<
6650
6650
  > = z.object({
6651
6651
  id: z.string(),
6652
6652
  description: z.string(),
6653
- created: z.string().default("2025-09-18T16:20:51.118Z"),
6654
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
6653
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
6654
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
6655
6655
  guardrailConfig: z.union([
6656
6656
  z.lazy(() =>
6657
6657
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
@@ -7033,8 +7033,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
7033
7033
  z.object({
7034
7034
  _id: z.string(),
7035
7035
  description: z.string(),
7036
- created: z.string().default("2025-09-18T16:20:51.118Z"),
7037
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
7036
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
7037
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
7038
7038
  guardrail_config: z.union([
7039
7039
  z.lazy(() =>
7040
7040
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -7078,8 +7078,8 @@ export const DataLLM$outboundSchema: z.ZodType<
7078
7078
  > = z.object({
7079
7079
  id: z.string(),
7080
7080
  description: z.string(),
7081
- created: z.string().default("2025-09-18T16:20:51.118Z"),
7082
- updated: z.string().default("2025-09-18T16:20:51.118Z"),
7081
+ created: z.string().default("2025-09-18T21:41:50.865Z"),
7082
+ updated: z.string().default("2025-09-18T21:41:50.865Z"),
7083
7083
  guardrailConfig: z.union([
7084
7084
  z.lazy(() =>
7085
7085
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema