@orq-ai/node 4.1.0-rc.39 → 4.1.0-rc.40
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.
- package/bin/mcp-server.js +662 -352
- package/bin/mcp-server.js.map +49 -49
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createagentrequest.d.ts +370 -42
- package/models/operations/createagentrequest.d.ts.map +1 -1
- package/models/operations/createagentrequest.js +277 -48
- package/models/operations/createagentrequest.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createprompt.d.ts +10 -10
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +13 -13
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.d.ts +96 -4
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +57 -7
- package/models/operations/listagents.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrieveagentrequest.d.ts +96 -4
- package/models/operations/retrieveagentrequest.d.ts.map +1 -1
- package/models/operations/retrieveagentrequest.js +59 -7
- package/models/operations/retrieveagentrequest.js.map +1 -1
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrieveconversation.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.d.ts +96 -4
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +65 -11
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +96 -4
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +63 -11
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +370 -42
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +276 -48
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createagentrequest.ts +696 -86
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createprompt.ts +25 -23
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +122 -8
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrieveagentrequest.ts +130 -8
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrieveconversation.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +126 -10
- package/src/models/operations/streamrunagent.ts +128 -10
- package/src/models/operations/updateagent.ts +698 -86
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -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("
|
|
866
|
+
_id: z.string().default("tool_01KC8Y89T9AW83F4W8AJKA0AEE"),
|
|
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("
|
|
918
|
+
id: z.string().default("tool_01KC8Y89T9AW83F4W8AJKA0AEE"),
|
|
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("
|
|
1077
|
+
id: z.string().default("01KC8Y89T84YRW9HDWN238T7C5"),
|
|
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("
|
|
1096
|
+
id: z.string().default("01KC8Y89T84YRW9HDWN238T7C5"),
|
|
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("
|
|
1181
|
+
_id: z.string().default("tool_01KC8Y89T7XM0S44A55KGSB8KW"),
|
|
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("
|
|
1232
|
+
id: z.string().default("tool_01KC8Y89T7XM0S44A55KGSB8KW"),
|
|
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("
|
|
1566
|
+
_id: z.string().default("tool_01KC8Y89T52V9FXTP1AH6GZ7SF"),
|
|
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("
|
|
1617
|
+
id: z.string().default("tool_01KC8Y89T52V9FXTP1AH6GZ7SF"),
|
|
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("
|
|
1770
|
+
_id: z.string().default("tool_01KC8Y89T32NAK36SCECJXWX6A"),
|
|
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("
|
|
1822
|
+
id: z.string().default("tool_01KC8Y89T32NAK36SCECJXWX6A"),
|
|
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("
|
|
1998
|
+
_id: z.string().default("tool_01KC8Y89T2WVF9036JDYDBMZEK"),
|
|
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("
|
|
2049
|
+
id: z.string().default("tool_01KC8Y89T2WVF9036JDYDBMZEK"),
|
|
2050
2050
|
path: z.string(),
|
|
2051
2051
|
key: z.string(),
|
|
2052
2052
|
displayName: z.string().optional(),
|
|
@@ -295,7 +295,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
295
295
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
296
296
|
.optional(),
|
|
297
297
|
updated: z.string().datetime({ offset: true }).default(
|
|
298
|
-
"2025-12-
|
|
298
|
+
"2025-12-12T09:28:31.861Z",
|
|
299
299
|
).transform(v => new Date(v)),
|
|
300
300
|
}).transform((v) => {
|
|
301
301
|
return remap$(v, {
|
|
@@ -335,7 +335,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
335
335
|
isActive: z.boolean(),
|
|
336
336
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
337
337
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
338
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
338
|
+
updated: z.date().default(() => new Date("2025-12-12T09:28:31.861Z"))
|
|
339
339
|
.transform(v => v.toISOString()),
|
|
340
340
|
}).transform((v) => {
|
|
341
341
|
return remap$(v, {
|
|
@@ -857,8 +857,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
857
857
|
> = z.object({
|
|
858
858
|
_id: z.string(),
|
|
859
859
|
description: z.string(),
|
|
860
|
-
created: z.string().default("2025-12-
|
|
861
|
-
updated: z.string().default("2025-12-
|
|
860
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
861
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
862
862
|
guardrail_config: z.union([
|
|
863
863
|
z.lazy(() =>
|
|
864
864
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -899,8 +899,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
899
899
|
> = z.object({
|
|
900
900
|
id: z.string(),
|
|
901
901
|
description: z.string(),
|
|
902
|
-
created: z.string().default("2025-12-
|
|
903
|
-
updated: z.string().default("2025-12-
|
|
902
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
903
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
904
904
|
guardrailConfig: z.union([
|
|
905
905
|
z.lazy(() =>
|
|
906
906
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -1125,8 +1125,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1125
1125
|
> = z.object({
|
|
1126
1126
|
_id: z.string(),
|
|
1127
1127
|
description: z.string(),
|
|
1128
|
-
created: z.string().default("2025-12-
|
|
1129
|
-
updated: z.string().default("2025-12-
|
|
1128
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
1129
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
1130
1130
|
guardrail_config: z.union([
|
|
1131
1131
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
1132
1132
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -1166,8 +1166,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
1166
1166
|
> = z.object({
|
|
1167
1167
|
id: z.string(),
|
|
1168
1168
|
description: z.string(),
|
|
1169
|
-
created: z.string().default("2025-12-
|
|
1170
|
-
updated: z.string().default("2025-12-
|
|
1169
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
1170
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
1171
1171
|
guardrailConfig: z.union([
|
|
1172
1172
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
1173
1173
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
@@ -2791,8 +2791,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
2791
2791
|
> = z.object({
|
|
2792
2792
|
_id: z.string(),
|
|
2793
2793
|
description: z.string(),
|
|
2794
|
-
created: z.string().default("2025-12-
|
|
2795
|
-
updated: z.string().default("2025-12-
|
|
2794
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
2795
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
2796
2796
|
guardrail_config: z.union([
|
|
2797
2797
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
2798
2798
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -2895,8 +2895,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
2895
2895
|
> = z.object({
|
|
2896
2896
|
id: z.string(),
|
|
2897
2897
|
description: z.string(),
|
|
2898
|
-
created: z.string().default("2025-12-
|
|
2899
|
-
updated: z.string().default("2025-12-
|
|
2898
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
2899
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
2900
2900
|
guardrailConfig: z.union([
|
|
2901
2901
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
2902
2902
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -3118,8 +3118,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
3118
3118
|
> = z.object({
|
|
3119
3119
|
_id: z.string(),
|
|
3120
3120
|
description: z.string(),
|
|
3121
|
-
created: z.string().default("2025-12-
|
|
3122
|
-
updated: z.string().default("2025-12-
|
|
3121
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3122
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3123
3123
|
guardrail_config: z.union([
|
|
3124
3124
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
3125
3125
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -3156,8 +3156,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
3156
3156
|
> = z.object({
|
|
3157
3157
|
id: z.string(),
|
|
3158
3158
|
description: z.string(),
|
|
3159
|
-
created: z.string().default("2025-12-
|
|
3160
|
-
updated: z.string().default("2025-12-
|
|
3159
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3160
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3161
3161
|
guardrailConfig: z.union([
|
|
3162
3162
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
3163
3163
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
@@ -3349,8 +3349,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
3349
3349
|
> = z.object({
|
|
3350
3350
|
_id: z.string(),
|
|
3351
3351
|
description: z.string(),
|
|
3352
|
-
created: z.string().default("2025-12-
|
|
3353
|
-
updated: z.string().default("2025-12-
|
|
3352
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3353
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3354
3354
|
guardrail_config: z.union([
|
|
3355
3355
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
3356
3356
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
@@ -3393,8 +3393,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
3393
3393
|
> = z.object({
|
|
3394
3394
|
id: z.string(),
|
|
3395
3395
|
description: z.string(),
|
|
3396
|
-
created: z.string().default("2025-12-
|
|
3397
|
-
updated: z.string().default("2025-12-
|
|
3396
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3397
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3398
3398
|
guardrailConfig: z.union([
|
|
3399
3399
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
3400
3400
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
@@ -3615,8 +3615,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
3615
3615
|
> = z.object({
|
|
3616
3616
|
_id: z.string(),
|
|
3617
3617
|
description: z.string(),
|
|
3618
|
-
created: z.string().default("2025-12-
|
|
3619
|
-
updated: z.string().default("2025-12-
|
|
3618
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3619
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3620
3620
|
guardrail_config: z.union([
|
|
3621
3621
|
z.lazy(() =>
|
|
3622
3622
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
|
|
@@ -3657,8 +3657,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
3657
3657
|
> = z.object({
|
|
3658
3658
|
id: z.string(),
|
|
3659
3659
|
description: z.string(),
|
|
3660
|
-
created: z.string().default("2025-12-
|
|
3661
|
-
updated: z.string().default("2025-12-
|
|
3660
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3661
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3662
3662
|
guardrailConfig: z.union([
|
|
3663
3663
|
z.lazy(() =>
|
|
3664
3664
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema
|
|
@@ -3888,8 +3888,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
3888
3888
|
z.object({
|
|
3889
3889
|
_id: z.string(),
|
|
3890
3890
|
description: z.string(),
|
|
3891
|
-
created: z.string().default("2025-12-
|
|
3892
|
-
updated: z.string().default("2025-12-
|
|
3891
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3892
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3893
3893
|
guardrail_config: z.union([
|
|
3894
3894
|
z.lazy(() =>
|
|
3895
3895
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -3932,8 +3932,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
3932
3932
|
> = z.object({
|
|
3933
3933
|
id: z.string(),
|
|
3934
3934
|
description: z.string(),
|
|
3935
|
-
created: z.string().default("2025-12-
|
|
3936
|
-
updated: z.string().default("2025-12-
|
|
3935
|
+
created: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3936
|
+
updated: z.string().default("2025-12-12T09:28:33.660Z"),
|
|
3937
3937
|
guardrailConfig: z.union([
|
|
3938
3938
|
z.lazy(() =>
|
|
3939
3939
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -281,6 +281,42 @@ export type ListAgentsResponseFormat =
|
|
|
281
281
|
| ListAgentsResponseFormatJSONObject
|
|
282
282
|
| ListAgentsResponseFormatAgentsJSONSchema;
|
|
283
283
|
|
|
284
|
+
/**
|
|
285
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
286
|
+
*
|
|
287
|
+
* @remarks
|
|
288
|
+
*
|
|
289
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
290
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
291
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
292
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
293
|
+
*
|
|
294
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
295
|
+
*/
|
|
296
|
+
export const ListAgentsReasoningEffort = {
|
|
297
|
+
None: "none",
|
|
298
|
+
Minimal: "minimal",
|
|
299
|
+
Low: "low",
|
|
300
|
+
Medium: "medium",
|
|
301
|
+
High: "high",
|
|
302
|
+
Xhigh: "xhigh",
|
|
303
|
+
} as const;
|
|
304
|
+
/**
|
|
305
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
306
|
+
*
|
|
307
|
+
* @remarks
|
|
308
|
+
*
|
|
309
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
310
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
311
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
312
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
313
|
+
*
|
|
314
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
315
|
+
*/
|
|
316
|
+
export type ListAgentsReasoningEffort = ClosedEnum<
|
|
317
|
+
typeof ListAgentsReasoningEffort
|
|
318
|
+
>;
|
|
319
|
+
|
|
284
320
|
/**
|
|
285
321
|
* Up to 4 sequences where the API will stop generating further tokens.
|
|
286
322
|
*/
|
|
@@ -397,9 +433,18 @@ export type ListAgentsParameters = {
|
|
|
397
433
|
| ListAgentsResponseFormatAgentsJSONSchema
|
|
398
434
|
| undefined;
|
|
399
435
|
/**
|
|
400
|
-
* Constrains effort on reasoning for reasoning models. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
436
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
437
|
+
*
|
|
438
|
+
* @remarks
|
|
439
|
+
*
|
|
440
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
441
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
442
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
443
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
444
|
+
*
|
|
445
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
401
446
|
*/
|
|
402
|
-
reasoningEffort?:
|
|
447
|
+
reasoningEffort?: ListAgentsReasoningEffort | undefined;
|
|
403
448
|
/**
|
|
404
449
|
* Adjusts response verbosity. Lower levels yield shorter answers.
|
|
405
450
|
*/
|
|
@@ -564,6 +609,42 @@ export type ListAgentsFallbackModelConfigurationResponseFormat =
|
|
|
564
609
|
| ListAgentsResponseFormatAgentsJSONObject
|
|
565
610
|
| ListAgentsResponseFormatAgentsResponse200JSONSchema;
|
|
566
611
|
|
|
612
|
+
/**
|
|
613
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
614
|
+
*
|
|
615
|
+
* @remarks
|
|
616
|
+
*
|
|
617
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
618
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
619
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
620
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
621
|
+
*
|
|
622
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
623
|
+
*/
|
|
624
|
+
export const ListAgentsFallbackModelConfigurationReasoningEffort = {
|
|
625
|
+
None: "none",
|
|
626
|
+
Minimal: "minimal",
|
|
627
|
+
Low: "low",
|
|
628
|
+
Medium: "medium",
|
|
629
|
+
High: "high",
|
|
630
|
+
Xhigh: "xhigh",
|
|
631
|
+
} as const;
|
|
632
|
+
/**
|
|
633
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
634
|
+
*
|
|
635
|
+
* @remarks
|
|
636
|
+
*
|
|
637
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
638
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
639
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
640
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
641
|
+
*
|
|
642
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
643
|
+
*/
|
|
644
|
+
export type ListAgentsFallbackModelConfigurationReasoningEffort = ClosedEnum<
|
|
645
|
+
typeof ListAgentsFallbackModelConfigurationReasoningEffort
|
|
646
|
+
>;
|
|
647
|
+
|
|
567
648
|
/**
|
|
568
649
|
* Up to 4 sequences where the API will stop generating further tokens.
|
|
569
650
|
*/
|
|
@@ -684,9 +765,20 @@ export type ListAgentsFallbackModelConfigurationParameters = {
|
|
|
684
765
|
| ListAgentsResponseFormatAgentsResponse200JSONSchema
|
|
685
766
|
| undefined;
|
|
686
767
|
/**
|
|
687
|
-
* Constrains effort on reasoning for reasoning models. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
768
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
769
|
+
*
|
|
770
|
+
* @remarks
|
|
771
|
+
*
|
|
772
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
773
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
774
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
775
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
776
|
+
*
|
|
777
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
688
778
|
*/
|
|
689
|
-
reasoningEffort?:
|
|
779
|
+
reasoningEffort?:
|
|
780
|
+
| ListAgentsFallbackModelConfigurationReasoningEffort
|
|
781
|
+
| undefined;
|
|
690
782
|
/**
|
|
691
783
|
* Adjusts response verbosity. Lower levels yield shorter answers.
|
|
692
784
|
*/
|
|
@@ -1572,6 +1664,15 @@ export function listAgentsResponseFormatFromJSON(
|
|
|
1572
1664
|
);
|
|
1573
1665
|
}
|
|
1574
1666
|
|
|
1667
|
+
/** @internal */
|
|
1668
|
+
export const ListAgentsReasoningEffort$inboundSchema: z.ZodNativeEnum<
|
|
1669
|
+
typeof ListAgentsReasoningEffort
|
|
1670
|
+
> = z.nativeEnum(ListAgentsReasoningEffort);
|
|
1671
|
+
/** @internal */
|
|
1672
|
+
export const ListAgentsReasoningEffort$outboundSchema: z.ZodNativeEnum<
|
|
1673
|
+
typeof ListAgentsReasoningEffort
|
|
1674
|
+
> = ListAgentsReasoningEffort$inboundSchema;
|
|
1675
|
+
|
|
1575
1676
|
/** @internal */
|
|
1576
1677
|
export const ListAgentsStop$inboundSchema: z.ZodType<
|
|
1577
1678
|
ListAgentsStop,
|
|
@@ -1859,7 +1960,7 @@ export const ListAgentsParameters$inboundSchema: z.ZodType<
|
|
|
1859
1960
|
z.lazy(() => ListAgentsResponseFormatJSONObject$inboundSchema),
|
|
1860
1961
|
z.lazy(() => ListAgentsResponseFormatAgentsJSONSchema$inboundSchema),
|
|
1861
1962
|
]).optional(),
|
|
1862
|
-
reasoning_effort:
|
|
1963
|
+
reasoning_effort: ListAgentsReasoningEffort$inboundSchema.optional(),
|
|
1863
1964
|
verbosity: z.string().optional(),
|
|
1864
1965
|
seed: z.nullable(z.number()).optional(),
|
|
1865
1966
|
stop: z.nullable(z.union([z.string(), z.array(z.string())])).optional(),
|
|
@@ -1947,7 +2048,7 @@ export const ListAgentsParameters$outboundSchema: z.ZodType<
|
|
|
1947
2048
|
z.lazy(() => ListAgentsResponseFormatJSONObject$outboundSchema),
|
|
1948
2049
|
z.lazy(() => ListAgentsResponseFormatAgentsJSONSchema$outboundSchema),
|
|
1949
2050
|
]).optional(),
|
|
1950
|
-
reasoningEffort:
|
|
2051
|
+
reasoningEffort: ListAgentsReasoningEffort$outboundSchema.optional(),
|
|
1951
2052
|
verbosity: z.string().optional(),
|
|
1952
2053
|
seed: z.nullable(z.number()).optional(),
|
|
1953
2054
|
stop: z.nullable(z.union([z.string(), z.array(z.string())])).optional(),
|
|
@@ -2393,6 +2494,15 @@ export function listAgentsFallbackModelConfigurationResponseFormatFromJSON(
|
|
|
2393
2494
|
);
|
|
2394
2495
|
}
|
|
2395
2496
|
|
|
2497
|
+
/** @internal */
|
|
2498
|
+
export const ListAgentsFallbackModelConfigurationReasoningEffort$inboundSchema:
|
|
2499
|
+
z.ZodNativeEnum<typeof ListAgentsFallbackModelConfigurationReasoningEffort> =
|
|
2500
|
+
z.nativeEnum(ListAgentsFallbackModelConfigurationReasoningEffort);
|
|
2501
|
+
/** @internal */
|
|
2502
|
+
export const ListAgentsFallbackModelConfigurationReasoningEffort$outboundSchema:
|
|
2503
|
+
z.ZodNativeEnum<typeof ListAgentsFallbackModelConfigurationReasoningEffort> =
|
|
2504
|
+
ListAgentsFallbackModelConfigurationReasoningEffort$inboundSchema;
|
|
2505
|
+
|
|
2396
2506
|
/** @internal */
|
|
2397
2507
|
export const ListAgentsFallbackModelConfigurationStop$inboundSchema: z.ZodType<
|
|
2398
2508
|
ListAgentsFallbackModelConfigurationStop,
|
|
@@ -2736,7 +2846,9 @@ export const ListAgentsFallbackModelConfigurationParameters$inboundSchema:
|
|
|
2736
2846
|
ListAgentsResponseFormatAgentsResponse200JSONSchema$inboundSchema
|
|
2737
2847
|
),
|
|
2738
2848
|
]).optional(),
|
|
2739
|
-
reasoning_effort:
|
|
2849
|
+
reasoning_effort:
|
|
2850
|
+
ListAgentsFallbackModelConfigurationReasoningEffort$inboundSchema
|
|
2851
|
+
.optional(),
|
|
2740
2852
|
verbosity: z.string().optional(),
|
|
2741
2853
|
seed: z.nullable(z.number()).optional(),
|
|
2742
2854
|
stop: z.nullable(z.union([z.string(), z.array(z.string())])).optional(),
|
|
@@ -2835,7 +2947,9 @@ export const ListAgentsFallbackModelConfigurationParameters$outboundSchema:
|
|
|
2835
2947
|
ListAgentsResponseFormatAgentsResponse200JSONSchema$outboundSchema
|
|
2836
2948
|
),
|
|
2837
2949
|
]).optional(),
|
|
2838
|
-
reasoningEffort:
|
|
2950
|
+
reasoningEffort:
|
|
2951
|
+
ListAgentsFallbackModelConfigurationReasoningEffort$outboundSchema
|
|
2952
|
+
.optional(),
|
|
2839
2953
|
verbosity: z.string().optional(),
|
|
2840
2954
|
seed: z.nullable(z.number()).optional(),
|
|
2841
2955
|
stop: z.nullable(z.union([z.string(), z.array(z.string())])).optional(),
|
|
@@ -385,7 +385,7 @@ export const ListBudgetsData$inboundSchema: z.ZodType<
|
|
|
385
385
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
386
386
|
.optional(),
|
|
387
387
|
updated: z.string().datetime({ offset: true }).default(
|
|
388
|
-
"2025-12-
|
|
388
|
+
"2025-12-12T09:28:31.861Z",
|
|
389
389
|
).transform(v => new Date(v)),
|
|
390
390
|
}).transform((v) => {
|
|
391
391
|
return remap$(v, {
|
|
@@ -422,7 +422,7 @@ export const ListBudgetsData$outboundSchema: z.ZodType<
|
|
|
422
422
|
isActive: z.boolean(),
|
|
423
423
|
consumption: z.lazy(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
424
424
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
425
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
425
|
+
updated: z.date().default(() => new Date("2025-12-12T09:28:31.861Z"))
|
|
426
426
|
.transform(v => v.toISOString()),
|
|
427
427
|
}).transform((v) => {
|
|
428
428
|
return remap$(v, {
|
|
@@ -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
|
-
"2025-12-
|
|
308
|
+
"2025-12-12T09:28:31.444Z",
|
|
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("2025-12-
|
|
344
|
+
updated: z.date().default(() => new Date("2025-12-12T09:28:31.444Z"))
|
|
345
345
|
.transform(v => v.toISOString()),
|
|
346
346
|
metrics: z.lazy(() => ListContactsMetrics$outboundSchema),
|
|
347
347
|
}).transform((v) => {
|
|
@@ -1960,7 +1960,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
|
|
|
1960
1960
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
1961
1961
|
reviewed_by_id: z.string(),
|
|
1962
1962
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1963
|
-
"2025-12-
|
|
1963
|
+
"2025-12-12T09:28:43.857Z",
|
|
1964
1964
|
).transform(v => new Date(v)),
|
|
1965
1965
|
type: z.literal("string_array"),
|
|
1966
1966
|
values: z.array(z.string()),
|
|
@@ -1995,7 +1995,7 @@ export const ListDatasetDatapointsEvaluations3$outboundSchema: z.ZodType<
|
|
|
1995
1995
|
humanReviewId: z.string(),
|
|
1996
1996
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
1997
1997
|
reviewedById: z.string(),
|
|
1998
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
1998
|
+
reviewedAt: z.date().default(() => new Date("2025-12-12T09:28:43.857Z"))
|
|
1999
1999
|
.transform(v => v.toISOString()),
|
|
2000
2000
|
type: z.literal("string_array"),
|
|
2001
2001
|
values: z.array(z.string()),
|
|
@@ -2066,7 +2066,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
|
|
|
2066
2066
|
.default("orq"),
|
|
2067
2067
|
reviewed_by_id: z.string(),
|
|
2068
2068
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2069
|
-
"2025-12-
|
|
2069
|
+
"2025-12-12T09:28:43.857Z",
|
|
2070
2070
|
).transform(v => new Date(v)),
|
|
2071
2071
|
type: z.literal("number"),
|
|
2072
2072
|
value: z.number(),
|
|
@@ -2103,7 +2103,7 @@ export const ListDatasetDatapointsEvaluations2$outboundSchema: z.ZodType<
|
|
|
2103
2103
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
|
|
2104
2104
|
.default("orq"),
|
|
2105
2105
|
reviewedById: z.string(),
|
|
2106
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
2106
|
+
reviewedAt: z.date().default(() => new Date("2025-12-12T09:28:43.857Z"))
|
|
2107
2107
|
.transform(v => v.toISOString()),
|
|
2108
2108
|
type: z.literal("number"),
|
|
2109
2109
|
value: z.number(),
|
|
@@ -2170,7 +2170,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
|
|
|
2170
2170
|
),
|
|
2171
2171
|
reviewed_by_id: z.string(),
|
|
2172
2172
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2173
|
-
"2025-12-
|
|
2173
|
+
"2025-12-12T09:28:43.857Z",
|
|
2174
2174
|
).transform(v => new Date(v)),
|
|
2175
2175
|
type: z.literal("string"),
|
|
2176
2176
|
value: z.string(),
|
|
@@ -2208,7 +2208,7 @@ export const ListDatasetDatapointsEvaluations1$outboundSchema: z.ZodType<
|
|
|
2208
2208
|
"orq",
|
|
2209
2209
|
),
|
|
2210
2210
|
reviewedById: z.string(),
|
|
2211
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
2211
|
+
reviewedAt: z.date().default(() => new Date("2025-12-12T09:28:43.857Z"))
|
|
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
|
-
"2025-12-
|
|
2324
|
+
"2025-12-12T09:28:31.444Z",
|
|
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("2025-12-
|
|
2402
|
+
updated: z.date().default(() => new Date("2025-12-12T09:28:31.444Z"))
|
|
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
|
-
"2025-12-
|
|
214
|
+
"2025-12-12T09:28:31.444Z",
|
|
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("2025-12-
|
|
253
|
+
updated: z.date().default(() => new Date("2025-12-12T09:28:31.444Z"))
|
|
254
254
|
.transform(v => v.toISOString()),
|
|
255
255
|
}).transform((v) => {
|
|
256
256
|
return remap$(v, {
|
|
@@ -224,7 +224,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
224
224
|
z.ZodTypeDef,
|
|
225
225
|
unknown
|
|
226
226
|
> = z.object({
|
|
227
|
-
_id: z.string().default("
|
|
227
|
+
_id: z.string().default("01KC8Y8A08VH0W72P3W35N3S08"),
|
|
228
228
|
display_name: z.string(),
|
|
229
229
|
description: z.string().optional(),
|
|
230
230
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -267,7 +267,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
|
|
|
267
267
|
z.ZodTypeDef,
|
|
268
268
|
ListDatasourcesData
|
|
269
269
|
> = z.object({
|
|
270
|
-
id: z.string().default("
|
|
270
|
+
id: z.string().default("01KC8Y8A08VH0W72P3W35N3S08"),
|
|
271
271
|
displayName: z.string(),
|
|
272
272
|
description: z.string().optional(),
|
|
273
273
|
status: ListDatasourcesStatus$outboundSchema,
|