@orq-ai/node 3.14.25 → 3.14.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +302 -300
- package/bin/mcp-server.js.map +41 -41
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +11 -11
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +22 -22
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.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/createtool.js +10 -10
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagenttasks.d.ts +6 -0
- package/models/operations/listagenttasks.d.ts.map +1 -1
- package/models/operations/listagenttasks.js +2 -0
- package/models/operations/listagenttasks.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/retrievecontact.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 +10 -10
- package/models/operations/runagent.d.ts +11 -11
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +22 -22
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +11 -11
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +22 -22
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +11 -11
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +22 -22
- 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/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 +10 -10
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/operations/createagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +10 -10
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +10 -10
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +4 -0
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/runagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/updateagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createagent.ts +33 -33
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.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/createtool.ts +10 -10
- package/src/models/operations/duplicatetool.ts +10 -10
- 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/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagenttasks.ts +4 -0
- 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/retrievecontact.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 +10 -10
- package/src/models/operations/runagent.ts +33 -33
- package/src/models/operations/streamrunagent.ts +33 -33
- package/src/models/operations/updateagent.ts +33 -33
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.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 +10 -10
|
@@ -2112,7 +2112,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2112
2112
|
z.ZodTypeDef,
|
|
2113
2113
|
unknown
|
|
2114
2114
|
> = z.object({
|
|
2115
|
-
_id: z.string().default("
|
|
2115
|
+
_id: z.string().default("01K9HC1ZA1GN2667S6V2B25ZEB"),
|
|
2116
2116
|
path: z.string(),
|
|
2117
2117
|
key: z.string(),
|
|
2118
2118
|
display_name: z.string().optional(),
|
|
@@ -2166,7 +2166,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2166
2166
|
z.ZodTypeDef,
|
|
2167
2167
|
ResponseBody5
|
|
2168
2168
|
> = z.object({
|
|
2169
|
-
id: z.string().default("
|
|
2169
|
+
id: z.string().default("01K9HC1ZA1GN2667S6V2B25ZEB"),
|
|
2170
2170
|
path: z.string(),
|
|
2171
2171
|
key: z.string(),
|
|
2172
2172
|
displayName: z.string().optional(),
|
|
@@ -2412,7 +2412,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2412
2412
|
z.ZodTypeDef,
|
|
2413
2413
|
unknown
|
|
2414
2414
|
> = z.object({
|
|
2415
|
-
_id: z.string().default("
|
|
2415
|
+
_id: z.string().default("01K9HC1Z9ZPBECV3186VWPZJK1"),
|
|
2416
2416
|
path: z.string(),
|
|
2417
2417
|
key: z.string(),
|
|
2418
2418
|
display_name: z.string().optional(),
|
|
@@ -2465,7 +2465,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2465
2465
|
z.ZodTypeDef,
|
|
2466
2466
|
ResponseBody4
|
|
2467
2467
|
> = z.object({
|
|
2468
|
-
id: z.string().default("
|
|
2468
|
+
id: z.string().default("01K9HC1Z9ZPBECV3186VWPZJK1"),
|
|
2469
2469
|
path: z.string(),
|
|
2470
2470
|
key: z.string(),
|
|
2471
2471
|
displayName: z.string().optional(),
|
|
@@ -2736,7 +2736,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
2736
2736
|
z.ZodTypeDef,
|
|
2737
2737
|
unknown
|
|
2738
2738
|
> = z.object({
|
|
2739
|
-
_id: z.string().default("
|
|
2739
|
+
_id: z.string().default("01K9HC1Z9XAJA7QDC41C8REWPT"),
|
|
2740
2740
|
path: z.string(),
|
|
2741
2741
|
key: z.string(),
|
|
2742
2742
|
display_name: z.string().optional(),
|
|
@@ -2787,7 +2787,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
2787
2787
|
z.ZodTypeDef,
|
|
2788
2788
|
ResponseBody3
|
|
2789
2789
|
> = z.object({
|
|
2790
|
-
id: z.string().default("
|
|
2790
|
+
id: z.string().default("01K9HC1Z9XAJA7QDC41C8REWPT"),
|
|
2791
2791
|
path: z.string(),
|
|
2792
2792
|
key: z.string(),
|
|
2793
2793
|
displayName: z.string().optional(),
|
|
@@ -2899,7 +2899,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
2899
2899
|
z.ZodTypeDef,
|
|
2900
2900
|
unknown
|
|
2901
2901
|
> = z.object({
|
|
2902
|
-
_id: z.string().default("
|
|
2902
|
+
_id: z.string().default("01K9HC1Z9W9E6HCJQ9S2JYG35Q"),
|
|
2903
2903
|
path: z.string(),
|
|
2904
2904
|
key: z.string(),
|
|
2905
2905
|
display_name: z.string().optional(),
|
|
@@ -2951,7 +2951,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
2951
2951
|
z.ZodTypeDef,
|
|
2952
2952
|
ResponseBody2
|
|
2953
2953
|
> = z.object({
|
|
2954
|
-
id: z.string().default("
|
|
2954
|
+
id: z.string().default("01K9HC1Z9W9E6HCJQ9S2JYG35Q"),
|
|
2955
2955
|
path: z.string(),
|
|
2956
2956
|
key: z.string(),
|
|
2957
2957
|
displayName: z.string().optional(),
|
|
@@ -3066,7 +3066,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3066
3066
|
z.ZodTypeDef,
|
|
3067
3067
|
unknown
|
|
3068
3068
|
> = z.object({
|
|
3069
|
-
_id: z.string().default("
|
|
3069
|
+
_id: z.string().default("01K9HC1Z9V2XTE56296E27QAYX"),
|
|
3070
3070
|
path: z.string(),
|
|
3071
3071
|
key: z.string(),
|
|
3072
3072
|
display_name: z.string().optional(),
|
|
@@ -3117,7 +3117,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3117
3117
|
z.ZodTypeDef,
|
|
3118
3118
|
ResponseBody1
|
|
3119
3119
|
> = z.object({
|
|
3120
|
-
id: z.string().default("
|
|
3120
|
+
id: z.string().default("01K9HC1Z9V2XTE56296E27QAYX"),
|
|
3121
3121
|
path: z.string(),
|
|
3122
3122
|
key: z.string(),
|
|
3123
3123
|
displayName: z.string().optional(),
|
|
@@ -716,7 +716,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
716
716
|
z.ZodTypeDef,
|
|
717
717
|
unknown
|
|
718
718
|
> = z.object({
|
|
719
|
-
_id: z.string().default("
|
|
719
|
+
_id: z.string().default("01K9HC1ZB4YHHJ34WFJS907B5N"),
|
|
720
720
|
path: z.string(),
|
|
721
721
|
key: z.string(),
|
|
722
722
|
display_name: z.string().optional(),
|
|
@@ -771,7 +771,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
771
771
|
z.ZodTypeDef,
|
|
772
772
|
DuplicateToolResponseBody5
|
|
773
773
|
> = z.object({
|
|
774
|
-
id: z.string().default("
|
|
774
|
+
id: z.string().default("01K9HC1ZB4YHHJ34WFJS907B5N"),
|
|
775
775
|
path: z.string(),
|
|
776
776
|
key: z.string(),
|
|
777
777
|
displayName: z.string().optional(),
|
|
@@ -1042,7 +1042,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1042
1042
|
z.ZodTypeDef,
|
|
1043
1043
|
unknown
|
|
1044
1044
|
> = z.object({
|
|
1045
|
-
_id: z.string().default("
|
|
1045
|
+
_id: z.string().default("01K9HC1ZB3HCVFTQ8KQPVDJVDD"),
|
|
1046
1046
|
path: z.string(),
|
|
1047
1047
|
key: z.string(),
|
|
1048
1048
|
display_name: z.string().optional(),
|
|
@@ -1095,7 +1095,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1095
1095
|
z.ZodTypeDef,
|
|
1096
1096
|
DuplicateToolResponseBody4
|
|
1097
1097
|
> = z.object({
|
|
1098
|
-
id: z.string().default("
|
|
1098
|
+
id: z.string().default("01K9HC1ZB3HCVFTQ8KQPVDJVDD"),
|
|
1099
1099
|
path: z.string(),
|
|
1100
1100
|
key: z.string(),
|
|
1101
1101
|
displayName: z.string().optional(),
|
|
@@ -1390,7 +1390,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1390
1390
|
z.ZodTypeDef,
|
|
1391
1391
|
unknown
|
|
1392
1392
|
> = z.object({
|
|
1393
|
-
_id: z.string().default("
|
|
1393
|
+
_id: z.string().default("01K9HC1ZB1HVYJERA0G1TVC32B"),
|
|
1394
1394
|
path: z.string(),
|
|
1395
1395
|
key: z.string(),
|
|
1396
1396
|
display_name: z.string().optional(),
|
|
@@ -1443,7 +1443,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1443
1443
|
z.ZodTypeDef,
|
|
1444
1444
|
DuplicateToolResponseBody3
|
|
1445
1445
|
> = z.object({
|
|
1446
|
-
id: z.string().default("
|
|
1446
|
+
id: z.string().default("01K9HC1ZB1HVYJERA0G1TVC32B"),
|
|
1447
1447
|
path: z.string(),
|
|
1448
1448
|
key: z.string(),
|
|
1449
1449
|
displayName: z.string().optional(),
|
|
@@ -1565,7 +1565,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1565
1565
|
z.ZodTypeDef,
|
|
1566
1566
|
unknown
|
|
1567
1567
|
> = z.object({
|
|
1568
|
-
_id: z.string().default("
|
|
1568
|
+
_id: z.string().default("01K9HC1ZB0QE1NHJX906SPE1PE"),
|
|
1569
1569
|
path: z.string(),
|
|
1570
1570
|
key: z.string(),
|
|
1571
1571
|
display_name: z.string().optional(),
|
|
@@ -1617,7 +1617,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1617
1617
|
z.ZodTypeDef,
|
|
1618
1618
|
DuplicateToolResponseBody2
|
|
1619
1619
|
> = z.object({
|
|
1620
|
-
id: z.string().default("
|
|
1620
|
+
id: z.string().default("01K9HC1ZB0QE1NHJX906SPE1PE"),
|
|
1621
1621
|
path: z.string(),
|
|
1622
1622
|
key: z.string(),
|
|
1623
1623
|
displayName: z.string().optional(),
|
|
@@ -1736,7 +1736,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
1736
1736
|
z.ZodTypeDef,
|
|
1737
1737
|
unknown
|
|
1738
1738
|
> = z.object({
|
|
1739
|
-
_id: z.string().default("
|
|
1739
|
+
_id: z.string().default("01K9HC1ZAZWTNZK5EMJ5BSQMKH"),
|
|
1740
1740
|
path: z.string(),
|
|
1741
1741
|
key: z.string(),
|
|
1742
1742
|
display_name: z.string().optional(),
|
|
@@ -1787,7 +1787,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
1787
1787
|
z.ZodTypeDef,
|
|
1788
1788
|
DuplicateToolResponseBody1
|
|
1789
1789
|
> = z.object({
|
|
1790
|
-
id: z.string().default("
|
|
1790
|
+
id: z.string().default("01K9HC1ZAZWTNZK5EMJ5BSQMKH"),
|
|
1791
1791
|
path: z.string(),
|
|
1792
1792
|
key: z.string(),
|
|
1793
1793
|
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
|
-
"2025-11-
|
|
122
|
+
"2025-11-08T09:16:38.732Z",
|
|
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("2025-11-
|
|
155
|
+
created: z.date().default(() => new Date("2025-11-08T09:16:38.732Z"))
|
|
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
|
-
"2025-11-
|
|
160
|
+
"2025-11-08T09:16:38.732Z",
|
|
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("2025-11-
|
|
193
|
+
created: z.date().default(() => new Date("2025-11-08T09:16:38.732Z"))
|
|
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
|
-
"2025-11-
|
|
199
|
+
"2025-11-08T09:16:38.732Z",
|
|
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("2025-11-
|
|
232
|
+
created: z.date().default(() => new Date("2025-11-08T09:16:38.732Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -711,7 +711,7 @@ export function dataCodeToolFromJSON(
|
|
|
711
711
|
/** @internal */
|
|
712
712
|
export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
|
|
713
713
|
.object({
|
|
714
|
-
_id: z.string().default("
|
|
714
|
+
_id: z.string().default("01K9HC1Z9B54KWRX1S1SF39WQA"),
|
|
715
715
|
path: z.string(),
|
|
716
716
|
key: z.string(),
|
|
717
717
|
display_name: z.string().optional(),
|
|
@@ -763,7 +763,7 @@ export const Data5$outboundSchema: z.ZodType<
|
|
|
763
763
|
z.ZodTypeDef,
|
|
764
764
|
Data5
|
|
765
765
|
> = z.object({
|
|
766
|
-
id: z.string().default("
|
|
766
|
+
id: z.string().default("01K9HC1Z9B54KWRX1S1SF39WQA"),
|
|
767
767
|
path: z.string(),
|
|
768
768
|
key: z.string(),
|
|
769
769
|
displayName: z.string().optional(),
|
|
@@ -994,7 +994,7 @@ export function dataMcpFromJSON(
|
|
|
994
994
|
/** @internal */
|
|
995
995
|
export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
|
|
996
996
|
.object({
|
|
997
|
-
_id: z.string().default("
|
|
997
|
+
_id: z.string().default("01K9HC1Z982C172CVX4GEYEQ5H"),
|
|
998
998
|
path: z.string(),
|
|
999
999
|
key: z.string(),
|
|
1000
1000
|
display_name: z.string().optional(),
|
|
@@ -1045,7 +1045,7 @@ export const Data4$outboundSchema: z.ZodType<
|
|
|
1045
1045
|
z.ZodTypeDef,
|
|
1046
1046
|
Data4
|
|
1047
1047
|
> = z.object({
|
|
1048
|
-
id: z.string().default("
|
|
1048
|
+
id: z.string().default("01K9HC1Z982C172CVX4GEYEQ5H"),
|
|
1049
1049
|
path: z.string(),
|
|
1050
1050
|
key: z.string(),
|
|
1051
1051
|
displayName: z.string().optional(),
|
|
@@ -1304,7 +1304,7 @@ export function getAllToolsDataHttpFromJSON(
|
|
|
1304
1304
|
/** @internal */
|
|
1305
1305
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
1306
1306
|
.object({
|
|
1307
|
-
_id: z.string().default("
|
|
1307
|
+
_id: z.string().default("01K9HC1Z95DP5X83XDHDAJ5YQK"),
|
|
1308
1308
|
path: z.string(),
|
|
1309
1309
|
key: z.string(),
|
|
1310
1310
|
display_name: z.string().optional(),
|
|
@@ -1355,7 +1355,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
1355
1355
|
z.ZodTypeDef,
|
|
1356
1356
|
Data3
|
|
1357
1357
|
> = z.object({
|
|
1358
|
-
id: z.string().default("
|
|
1358
|
+
id: z.string().default("01K9HC1Z95DP5X83XDHDAJ5YQK"),
|
|
1359
1359
|
path: z.string(),
|
|
1360
1360
|
key: z.string(),
|
|
1361
1361
|
displayName: z.string().optional(),
|
|
@@ -1460,7 +1460,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
1460
1460
|
/** @internal */
|
|
1461
1461
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
1462
1462
|
.object({
|
|
1463
|
-
_id: z.string().default("
|
|
1463
|
+
_id: z.string().default("01K9HC1Z92938PSKZTX86KJR48"),
|
|
1464
1464
|
path: z.string(),
|
|
1465
1465
|
key: z.string(),
|
|
1466
1466
|
display_name: z.string().optional(),
|
|
@@ -1512,7 +1512,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
1512
1512
|
z.ZodTypeDef,
|
|
1513
1513
|
Data2
|
|
1514
1514
|
> = z.object({
|
|
1515
|
-
id: z.string().default("
|
|
1515
|
+
id: z.string().default("01K9HC1Z92938PSKZTX86KJR48"),
|
|
1516
1516
|
path: z.string(),
|
|
1517
1517
|
key: z.string(),
|
|
1518
1518
|
displayName: z.string().optional(),
|
|
@@ -1620,7 +1620,7 @@ export function getAllToolsDataFunctionFromJSON(
|
|
|
1620
1620
|
/** @internal */
|
|
1621
1621
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
1622
1622
|
.object({
|
|
1623
|
-
_id: z.string().default("
|
|
1623
|
+
_id: z.string().default("01K9HC1Z8KJJMB0W1XSNX892JN"),
|
|
1624
1624
|
path: z.string(),
|
|
1625
1625
|
key: z.string(),
|
|
1626
1626
|
display_name: z.string().optional(),
|
|
@@ -1671,7 +1671,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
1671
1671
|
z.ZodTypeDef,
|
|
1672
1672
|
Data1
|
|
1673
1673
|
> = z.object({
|
|
1674
|
-
id: z.string().default("
|
|
1674
|
+
id: z.string().default("01K9HC1Z8KJJMB0W1XSNX892JN"),
|
|
1675
1675
|
path: z.string(),
|
|
1676
1676
|
key: z.string(),
|
|
1677
1677
|
displayName: z.string().optional(),
|
|
@@ -291,7 +291,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
291
291
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
292
292
|
.optional(),
|
|
293
293
|
updated: z.string().datetime({ offset: true }).default(
|
|
294
|
-
"2025-11-
|
|
294
|
+
"2025-11-08T09:16:35.610Z",
|
|
295
295
|
).transform(v => new Date(v)),
|
|
296
296
|
}).transform((v) => {
|
|
297
297
|
return remap$(v, {
|
|
@@ -328,7 +328,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
328
328
|
isActive: z.boolean(),
|
|
329
329
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
330
330
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
331
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
331
|
+
updated: z.date().default(() => new Date("2025-11-08T09:16:35.610Z"))
|
|
332
332
|
.transform(v => v.toISOString()),
|
|
333
333
|
}).transform((v) => {
|
|
334
334
|
return remap$(v, {
|
|
@@ -1417,8 +1417,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1417
1417
|
> = z.object({
|
|
1418
1418
|
_id: z.string(),
|
|
1419
1419
|
description: z.string(),
|
|
1420
|
-
created: z.string().default("2025-11-
|
|
1421
|
-
updated: z.string().default("2025-11-
|
|
1420
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
1421
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
1422
1422
|
guardrail_config: z.union([
|
|
1423
1423
|
z.lazy(() =>
|
|
1424
1424
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1459,8 +1459,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1459
1459
|
> = z.object({
|
|
1460
1460
|
id: z.string(),
|
|
1461
1461
|
description: z.string(),
|
|
1462
|
-
created: z.string().default("2025-11-
|
|
1463
|
-
updated: z.string().default("2025-11-
|
|
1462
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
1463
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
1464
1464
|
guardrailConfig: z.union([
|
|
1465
1465
|
z.lazy(() =>
|
|
1466
1466
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -1726,8 +1726,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1726
1726
|
> = z.object({
|
|
1727
1727
|
_id: z.string(),
|
|
1728
1728
|
description: z.string(),
|
|
1729
|
-
created: z.string().default("2025-11-
|
|
1730
|
-
updated: z.string().default("2025-11-
|
|
1729
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
1730
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
1731
1731
|
guardrail_config: z.union([
|
|
1732
1732
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1733
1733
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -1767,8 +1767,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
1767
1767
|
> = z.object({
|
|
1768
1768
|
id: z.string(),
|
|
1769
1769
|
description: z.string(),
|
|
1770
|
-
created: z.string().default("2025-11-
|
|
1771
|
-
updated: z.string().default("2025-11-
|
|
1770
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
1771
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
1772
1772
|
guardrailConfig: z.union([
|
|
1773
1773
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
1774
1774
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -4090,8 +4090,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
4090
4090
|
> = z.object({
|
|
4091
4091
|
_id: z.string(),
|
|
4092
4092
|
description: z.string(),
|
|
4093
|
-
created: z.string().default("2025-11-
|
|
4094
|
-
updated: z.string().default("2025-11-
|
|
4093
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4094
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4095
4095
|
guardrail_config: z.union([
|
|
4096
4096
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
4097
4097
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -4200,8 +4200,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
4200
4200
|
> = z.object({
|
|
4201
4201
|
id: z.string(),
|
|
4202
4202
|
description: z.string(),
|
|
4203
|
-
created: z.string().default("2025-11-
|
|
4204
|
-
updated: z.string().default("2025-11-
|
|
4203
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4204
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4205
4205
|
guardrailConfig: z.union([
|
|
4206
4206
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
4207
4207
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -4467,8 +4467,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
4467
4467
|
> = z.object({
|
|
4468
4468
|
_id: z.string(),
|
|
4469
4469
|
description: z.string(),
|
|
4470
|
-
created: z.string().default("2025-11-
|
|
4471
|
-
updated: z.string().default("2025-11-
|
|
4470
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4471
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4472
4472
|
guardrail_config: z.union([
|
|
4473
4473
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
4474
4474
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -4505,8 +4505,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
4505
4505
|
> = z.object({
|
|
4506
4506
|
id: z.string(),
|
|
4507
4507
|
description: z.string(),
|
|
4508
|
-
created: z.string().default("2025-11-
|
|
4509
|
-
updated: z.string().default("2025-11-
|
|
4508
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4509
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4510
4510
|
guardrailConfig: z.union([
|
|
4511
4511
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
4512
4512
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -4729,8 +4729,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
4729
4729
|
> = z.object({
|
|
4730
4730
|
_id: z.string(),
|
|
4731
4731
|
description: z.string(),
|
|
4732
|
-
created: z.string().default("2025-11-
|
|
4733
|
-
updated: z.string().default("2025-11-
|
|
4732
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4733
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4734
4734
|
guardrail_config: z.union([
|
|
4735
4735
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
4736
4736
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -4773,8 +4773,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
4773
4773
|
> = z.object({
|
|
4774
4774
|
id: z.string(),
|
|
4775
4775
|
description: z.string(),
|
|
4776
|
-
created: z.string().default("2025-11-
|
|
4777
|
-
updated: z.string().default("2025-11-
|
|
4776
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4777
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
4778
4778
|
guardrailConfig: z.union([
|
|
4779
4779
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
4780
4780
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -5020,8 +5020,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
5020
5020
|
> = z.object({
|
|
5021
5021
|
_id: z.string(),
|
|
5022
5022
|
description: z.string(),
|
|
5023
|
-
created: z.string().default("2025-11-
|
|
5024
|
-
updated: z.string().default("2025-11-
|
|
5023
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
5024
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
5025
5025
|
guardrail_config: z.union([
|
|
5026
5026
|
z.lazy(() =>
|
|
5027
5027
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -5062,8 +5062,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
5062
5062
|
> = z.object({
|
|
5063
5063
|
id: z.string(),
|
|
5064
5064
|
description: z.string(),
|
|
5065
|
-
created: z.string().default("2025-11-
|
|
5066
|
-
updated: z.string().default("2025-11-
|
|
5065
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
5066
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
5067
5067
|
guardrailConfig: z.union([
|
|
5068
5068
|
z.lazy(() =>
|
|
5069
5069
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -5329,8 +5329,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
5329
5329
|
z.object({
|
|
5330
5330
|
_id: z.string(),
|
|
5331
5331
|
description: z.string(),
|
|
5332
|
-
created: z.string().default("2025-11-
|
|
5333
|
-
updated: z.string().default("2025-11-
|
|
5332
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
5333
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
5334
5334
|
guardrail_config: z.union([
|
|
5335
5335
|
z.lazy(() =>
|
|
5336
5336
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5374,8 +5374,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
5374
5374
|
> = z.object({
|
|
5375
5375
|
id: z.string(),
|
|
5376
5376
|
description: z.string(),
|
|
5377
|
-
created: z.string().default("2025-11-
|
|
5378
|
-
updated: z.string().default("2025-11-
|
|
5377
|
+
created: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
5378
|
+
updated: z.string().default("2025-11-08T09:16:37.832Z"),
|
|
5379
5379
|
guardrailConfig: z.union([
|
|
5380
5380
|
z.lazy(() =>
|
|
5381
5381
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -823,6 +823,7 @@ export type ListAgentTasksState = {
|
|
|
823
823
|
error?: string | undefined;
|
|
824
824
|
iteration?: number | undefined;
|
|
825
825
|
accumulatedExecutionTime?: number | undefined;
|
|
826
|
+
variables?: { [k: string]: any } | undefined;
|
|
826
827
|
};
|
|
827
828
|
|
|
828
829
|
export type ListAgentTasksMetrics = {
|
|
@@ -3135,6 +3136,7 @@ export const ListAgentTasksState$inboundSchema: z.ZodType<
|
|
|
3135
3136
|
error: z.string().optional(),
|
|
3136
3137
|
iteration: z.number().int().default(1),
|
|
3137
3138
|
accumulated_execution_time: z.number().default(0),
|
|
3139
|
+
variables: z.record(z.any()).optional(),
|
|
3138
3140
|
}).transform((v) => {
|
|
3139
3141
|
return remap$(v, {
|
|
3140
3142
|
"waiting_for_approval": "waitingForApproval",
|
|
@@ -3148,6 +3150,7 @@ export type ListAgentTasksState$Outbound = {
|
|
|
3148
3150
|
error?: string | undefined;
|
|
3149
3151
|
iteration: number;
|
|
3150
3152
|
accumulated_execution_time: number;
|
|
3153
|
+
variables?: { [k: string]: any } | undefined;
|
|
3151
3154
|
};
|
|
3152
3155
|
|
|
3153
3156
|
/** @internal */
|
|
@@ -3161,6 +3164,7 @@ export const ListAgentTasksState$outboundSchema: z.ZodType<
|
|
|
3161
3164
|
error: z.string().optional(),
|
|
3162
3165
|
iteration: z.number().int().default(1),
|
|
3163
3166
|
accumulatedExecutionTime: z.number().default(0),
|
|
3167
|
+
variables: z.record(z.any()).optional(),
|
|
3164
3168
|
}).transform((v) => {
|
|
3165
3169
|
return remap$(v, {
|
|
3166
3170
|
waitingForApproval: "waiting_for_approval",
|
|
@@ -381,7 +381,7 @@ export const ListBudgetsData$inboundSchema: z.ZodType<
|
|
|
381
381
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
382
382
|
.optional(),
|
|
383
383
|
updated: z.string().datetime({ offset: true }).default(
|
|
384
|
-
"2025-11-
|
|
384
|
+
"2025-11-08T09:16:35.610Z",
|
|
385
385
|
).transform(v => new Date(v)),
|
|
386
386
|
}).transform((v) => {
|
|
387
387
|
return remap$(v, {
|
|
@@ -415,7 +415,7 @@ export const ListBudgetsData$outboundSchema: z.ZodType<
|
|
|
415
415
|
isActive: z.boolean(),
|
|
416
416
|
consumption: z.lazy(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
417
417
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
418
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
418
|
+
updated: z.date().default(() => new Date("2025-11-08T09:16:35.610Z"))
|
|
419
419
|
.transform(v => v.toISOString()),
|
|
420
420
|
}).transform((v) => {
|
|
421
421
|
return remap$(v, {
|
|
@@ -298,7 +298,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
|
|
|
298
298
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
299
299
|
.optional(),
|
|
300
300
|
updated: z.string().datetime({ offset: true }).default(
|
|
301
|
-
"2025-11-
|
|
301
|
+
"2025-11-08T09:16:35.289Z",
|
|
302
302
|
).transform(v => new Date(v)),
|
|
303
303
|
metrics: z.lazy(() => ListContactsMetrics$inboundSchema),
|
|
304
304
|
}).transform((v) => {
|
|
@@ -334,7 +334,7 @@ export const Data$outboundSchema: z.ZodType<Data$Outbound, z.ZodTypeDef, Data> =
|
|
|
334
334
|
tags: z.array(z.string()).optional(),
|
|
335
335
|
metadata: z.record(z.any()).optional(),
|
|
336
336
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
337
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
337
|
+
updated: z.date().default(() => new Date("2025-11-08T09:16:35.289Z"))
|
|
338
338
|
.transform(v => v.toISOString()),
|
|
339
339
|
metrics: z.lazy(() => ListContactsMetrics$outboundSchema),
|
|
340
340
|
}).transform((v) => {
|
|
@@ -2622,7 +2622,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
|
|
|
2622
2622
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
2623
2623
|
reviewed_by_id: z.string(),
|
|
2624
2624
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2625
|
-
"2025-11-
|
|
2625
|
+
"2025-11-08T09:16:46.514Z",
|
|
2626
2626
|
).transform(v => new Date(v)),
|
|
2627
2627
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
2628
2628
|
values: z.array(z.string()),
|
|
@@ -2657,7 +2657,7 @@ export const ListDatasetDatapointsEvaluations3$outboundSchema: z.ZodType<
|
|
|
2657
2657
|
humanReviewId: z.string(),
|
|
2658
2658
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
2659
2659
|
reviewedById: z.string(),
|
|
2660
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
2660
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T09:16:46.514Z"))
|
|
2661
2661
|
.transform(v => v.toISOString()),
|
|
2662
2662
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
2663
2663
|
values: z.array(z.string()),
|
|
@@ -2738,7 +2738,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
|
|
|
2738
2738
|
.default("orq"),
|
|
2739
2739
|
reviewed_by_id: z.string(),
|
|
2740
2740
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2741
|
-
"2025-11-
|
|
2741
|
+
"2025-11-08T09:16:46.513Z",
|
|
2742
2742
|
).transform(v => new Date(v)),
|
|
2743
2743
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
2744
2744
|
value: z.number(),
|
|
@@ -2775,7 +2775,7 @@ export const ListDatasetDatapointsEvaluations2$outboundSchema: z.ZodType<
|
|
|
2775
2775
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
|
|
2776
2776
|
.default("orq"),
|
|
2777
2777
|
reviewedById: z.string(),
|
|
2778
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
2778
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T09:16:46.513Z"))
|
|
2779
2779
|
.transform(v => v.toISOString()),
|
|
2780
2780
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
2781
2781
|
value: z.number(),
|
|
@@ -2851,7 +2851,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
|
|
|
2851
2851
|
),
|
|
2852
2852
|
reviewed_by_id: z.string(),
|
|
2853
2853
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2854
|
-
"2025-11-
|
|
2854
|
+
"2025-11-08T09:16:46.512Z",
|
|
2855
2855
|
).transform(v => new Date(v)),
|
|
2856
2856
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
2857
2857
|
value: z.string(),
|
|
@@ -2889,7 +2889,7 @@ export const ListDatasetDatapointsEvaluations1$outboundSchema: z.ZodType<
|
|
|
2889
2889
|
"orq",
|
|
2890
2890
|
),
|
|
2891
2891
|
reviewedById: z.string(),
|
|
2892
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
2892
|
+
reviewedAt: z.date().default(() => new Date("2025-11-08T09:16:46.512Z"))
|
|
2893
2893
|
.transform(v => v.toISOString()),
|
|
2894
2894
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
2895
2895
|
value: z.string(),
|
|
@@ -3002,7 +3002,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
3002
3002
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3003
3003
|
.optional(),
|
|
3004
3004
|
updated: z.string().datetime({ offset: true }).default(
|
|
3005
|
-
"2025-11-
|
|
3005
|
+
"2025-11-08T09:16:35.289Z",
|
|
3006
3006
|
).transform(v => new Date(v)),
|
|
3007
3007
|
}).transform((v) => {
|
|
3008
3008
|
return remap$(v, {
|
|
@@ -3082,7 +3082,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
3082
3082
|
createdById: z.string().optional(),
|
|
3083
3083
|
updatedById: z.string().optional(),
|
|
3084
3084
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3085
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
3085
|
+
updated: z.date().default(() => new Date("2025-11-08T09:16:35.289Z"))
|
|
3086
3086
|
.transform(v => v.toISOString()),
|
|
3087
3087
|
}).transform((v) => {
|
|
3088
3088
|
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-11-
|
|
214
|
+
"2025-11-08T09:16:35.289Z",
|
|
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-11-
|
|
253
|
+
updated: z.date().default(() => new Date("2025-11-08T09:16:35.289Z"))
|
|
254
254
|
.transform(v => v.toISOString()),
|
|
255
255
|
}).transform((v) => {
|
|
256
256
|
return remap$(v, {
|