@orq-ai/node 3.12.17 → 3.12.19
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 +112 -112
- package/bin/mcp-server.js.map +30 -30
- 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/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- 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 +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- 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/components/httptool.ts +2 -2
- 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 +2 -2
- 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 +14 -14
- 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/getagent.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/listagents.ts +2 -2
- 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 +2 -2
- 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 +2 -2
- 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 +2 -2
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +2 -2
- 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 +2 -2
- 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 +14 -14
- 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/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 +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- 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/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- 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 +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
|
@@ -1892,7 +1892,7 @@ export const RequestBody3$inboundSchema: z.ZodType<
|
|
|
1892
1892
|
z.ZodTypeDef,
|
|
1893
1893
|
unknown
|
|
1894
1894
|
> = z.object({
|
|
1895
|
-
_id: z.string().default("
|
|
1895
|
+
_id: z.string().default("01K60CGQ9QHWZSP7YNAT9R1N5E"),
|
|
1896
1896
|
path: z.string(),
|
|
1897
1897
|
key: z.string(),
|
|
1898
1898
|
display_name: z.string(),
|
|
@@ -1928,7 +1928,7 @@ export const RequestBody3$outboundSchema: z.ZodType<
|
|
|
1928
1928
|
z.ZodTypeDef,
|
|
1929
1929
|
RequestBody3
|
|
1930
1930
|
> = z.object({
|
|
1931
|
-
id: z.string().default("
|
|
1931
|
+
id: z.string().default("01K60CGQ9QHWZSP7YNAT9R1N5E"),
|
|
1932
1932
|
path: z.string(),
|
|
1933
1933
|
key: z.string(),
|
|
1934
1934
|
displayName: z.string(),
|
|
@@ -2083,7 +2083,7 @@ export const RequestBody2$inboundSchema: z.ZodType<
|
|
|
2083
2083
|
z.ZodTypeDef,
|
|
2084
2084
|
unknown
|
|
2085
2085
|
> = z.object({
|
|
2086
|
-
_id: z.string().default("
|
|
2086
|
+
_id: z.string().default("01K60CGQ9PYG7FZW5Y0WBFFNCP"),
|
|
2087
2087
|
path: z.string(),
|
|
2088
2088
|
key: z.string(),
|
|
2089
2089
|
display_name: z.string(),
|
|
@@ -2120,7 +2120,7 @@ export const RequestBody2$outboundSchema: z.ZodType<
|
|
|
2120
2120
|
z.ZodTypeDef,
|
|
2121
2121
|
RequestBody2
|
|
2122
2122
|
> = z.object({
|
|
2123
|
-
id: z.string().default("
|
|
2123
|
+
id: z.string().default("01K60CGQ9PYG7FZW5Y0WBFFNCP"),
|
|
2124
2124
|
path: z.string(),
|
|
2125
2125
|
key: z.string(),
|
|
2126
2126
|
displayName: z.string(),
|
|
@@ -2551,7 +2551,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2551
2551
|
z.ZodTypeDef,
|
|
2552
2552
|
unknown
|
|
2553
2553
|
> = z.object({
|
|
2554
|
-
_id: z.string().default("
|
|
2554
|
+
_id: z.string().default("01K60CGQ9PKFSCPH297T34NFBP"),
|
|
2555
2555
|
path: z.string(),
|
|
2556
2556
|
key: z.string(),
|
|
2557
2557
|
display_name: z.string(),
|
|
@@ -2606,7 +2606,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2606
2606
|
z.ZodTypeDef,
|
|
2607
2607
|
ResponseBody5
|
|
2608
2608
|
> = z.object({
|
|
2609
|
-
id: z.string().default("
|
|
2609
|
+
id: z.string().default("01K60CGQ9PKFSCPH297T34NFBP"),
|
|
2610
2610
|
path: z.string(),
|
|
2611
2611
|
key: z.string(),
|
|
2612
2612
|
displayName: z.string(),
|
|
@@ -2965,7 +2965,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2965
2965
|
z.ZodTypeDef,
|
|
2966
2966
|
unknown
|
|
2967
2967
|
> = z.object({
|
|
2968
|
-
_id: z.string().default("
|
|
2968
|
+
_id: z.string().default("01K60CGQ9NJGD9NA98W7XH4RCG"),
|
|
2969
2969
|
path: z.string(),
|
|
2970
2970
|
key: z.string(),
|
|
2971
2971
|
display_name: z.string(),
|
|
@@ -3019,7 +3019,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
3019
3019
|
z.ZodTypeDef,
|
|
3020
3020
|
ResponseBody4
|
|
3021
3021
|
> = z.object({
|
|
3022
|
-
id: z.string().default("
|
|
3022
|
+
id: z.string().default("01K60CGQ9NJGD9NA98W7XH4RCG"),
|
|
3023
3023
|
path: z.string(),
|
|
3024
3024
|
key: z.string(),
|
|
3025
3025
|
displayName: z.string(),
|
|
@@ -3417,7 +3417,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
3417
3417
|
z.ZodTypeDef,
|
|
3418
3418
|
unknown
|
|
3419
3419
|
> = z.object({
|
|
3420
|
-
_id: z.string().default("
|
|
3420
|
+
_id: z.string().default("01K60CGQ9MFRVQAX527BDBDQEF"),
|
|
3421
3421
|
path: z.string(),
|
|
3422
3422
|
key: z.string(),
|
|
3423
3423
|
display_name: z.string(),
|
|
@@ -3469,7 +3469,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
3469
3469
|
z.ZodTypeDef,
|
|
3470
3470
|
ResponseBody3
|
|
3471
3471
|
> = z.object({
|
|
3472
|
-
id: z.string().default("
|
|
3472
|
+
id: z.string().default("01K60CGQ9MFRVQAX527BDBDQEF"),
|
|
3473
3473
|
path: z.string(),
|
|
3474
3474
|
key: z.string(),
|
|
3475
3475
|
displayName: z.string(),
|
|
@@ -3634,7 +3634,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
3634
3634
|
z.ZodTypeDef,
|
|
3635
3635
|
unknown
|
|
3636
3636
|
> = z.object({
|
|
3637
|
-
_id: z.string().default("
|
|
3637
|
+
_id: z.string().default("01K60CGQ9MW19WTCHP8WT2SE8A"),
|
|
3638
3638
|
path: z.string(),
|
|
3639
3639
|
key: z.string(),
|
|
3640
3640
|
display_name: z.string(),
|
|
@@ -3687,7 +3687,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
3687
3687
|
z.ZodTypeDef,
|
|
3688
3688
|
ResponseBody2
|
|
3689
3689
|
> = z.object({
|
|
3690
|
-
id: z.string().default("
|
|
3690
|
+
id: z.string().default("01K60CGQ9MW19WTCHP8WT2SE8A"),
|
|
3691
3691
|
path: z.string(),
|
|
3692
3692
|
key: z.string(),
|
|
3693
3693
|
displayName: z.string(),
|
|
@@ -3855,7 +3855,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3855
3855
|
z.ZodTypeDef,
|
|
3856
3856
|
unknown
|
|
3857
3857
|
> = z.object({
|
|
3858
|
-
_id: z.string().default("
|
|
3858
|
+
_id: z.string().default("01K60CGQ9M3T2WJSV2HSTAB5KR"),
|
|
3859
3859
|
path: z.string(),
|
|
3860
3860
|
key: z.string(),
|
|
3861
3861
|
display_name: z.string(),
|
|
@@ -3907,7 +3907,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3907
3907
|
z.ZodTypeDef,
|
|
3908
3908
|
ResponseBody1
|
|
3909
3909
|
> = z.object({
|
|
3910
|
-
id: z.string().default("
|
|
3910
|
+
id: z.string().default("01K60CGQ9M3T2WJSV2HSTAB5KR"),
|
|
3911
3911
|
path: z.string(),
|
|
3912
3912
|
key: z.string(),
|
|
3913
3913
|
displayName: z.string(),
|
|
@@ -750,7 +750,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
750
750
|
z.ZodTypeDef,
|
|
751
751
|
unknown
|
|
752
752
|
> = z.object({
|
|
753
|
-
_id: z.string().default("
|
|
753
|
+
_id: z.string().default("01K60CGQ9WHHGGY57AC7GVCW1H"),
|
|
754
754
|
path: z.string(),
|
|
755
755
|
key: z.string(),
|
|
756
756
|
display_name: z.string(),
|
|
@@ -806,7 +806,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
806
806
|
z.ZodTypeDef,
|
|
807
807
|
DuplicateToolResponseBody5
|
|
808
808
|
> = z.object({
|
|
809
|
-
id: z.string().default("
|
|
809
|
+
id: z.string().default("01K60CGQ9WHHGGY57AC7GVCW1H"),
|
|
810
810
|
path: z.string(),
|
|
811
811
|
key: z.string(),
|
|
812
812
|
displayName: z.string(),
|
|
@@ -1194,7 +1194,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1194
1194
|
z.ZodTypeDef,
|
|
1195
1195
|
unknown
|
|
1196
1196
|
> = z.object({
|
|
1197
|
-
_id: z.string().default("
|
|
1197
|
+
_id: z.string().default("01K60CGQ9WGSM4QND7MEH3RPT4"),
|
|
1198
1198
|
path: z.string(),
|
|
1199
1199
|
key: z.string(),
|
|
1200
1200
|
display_name: z.string(),
|
|
@@ -1248,7 +1248,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1248
1248
|
z.ZodTypeDef,
|
|
1249
1249
|
DuplicateToolResponseBody4
|
|
1250
1250
|
> = z.object({
|
|
1251
|
-
id: z.string().default("
|
|
1251
|
+
id: z.string().default("01K60CGQ9WGSM4QND7MEH3RPT4"),
|
|
1252
1252
|
path: z.string(),
|
|
1253
1253
|
key: z.string(),
|
|
1254
1254
|
displayName: z.string(),
|
|
@@ -1675,7 +1675,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1675
1675
|
z.ZodTypeDef,
|
|
1676
1676
|
unknown
|
|
1677
1677
|
> = z.object({
|
|
1678
|
-
_id: z.string().default("
|
|
1678
|
+
_id: z.string().default("01K60CGQ9VKMCV644JV4Y2H7JM"),
|
|
1679
1679
|
path: z.string(),
|
|
1680
1680
|
key: z.string(),
|
|
1681
1681
|
display_name: z.string(),
|
|
@@ -1729,7 +1729,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1729
1729
|
z.ZodTypeDef,
|
|
1730
1730
|
DuplicateToolResponseBody3
|
|
1731
1731
|
> = z.object({
|
|
1732
|
-
id: z.string().default("
|
|
1732
|
+
id: z.string().default("01K60CGQ9VKMCV644JV4Y2H7JM"),
|
|
1733
1733
|
path: z.string(),
|
|
1734
1734
|
key: z.string(),
|
|
1735
1735
|
displayName: z.string(),
|
|
@@ -1909,7 +1909,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1909
1909
|
z.ZodTypeDef,
|
|
1910
1910
|
unknown
|
|
1911
1911
|
> = z.object({
|
|
1912
|
-
_id: z.string().default("
|
|
1912
|
+
_id: z.string().default("01K60CGQ9VJ22G4C6SBT6R8BMR"),
|
|
1913
1913
|
path: z.string(),
|
|
1914
1914
|
key: z.string(),
|
|
1915
1915
|
display_name: z.string(),
|
|
@@ -1962,7 +1962,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1962
1962
|
z.ZodTypeDef,
|
|
1963
1963
|
DuplicateToolResponseBody2
|
|
1964
1964
|
> = z.object({
|
|
1965
|
-
id: z.string().default("
|
|
1965
|
+
id: z.string().default("01K60CGQ9VJ22G4C6SBT6R8BMR"),
|
|
1966
1966
|
path: z.string(),
|
|
1967
1967
|
key: z.string(),
|
|
1968
1968
|
displayName: z.string(),
|
|
@@ -2135,7 +2135,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2135
2135
|
z.ZodTypeDef,
|
|
2136
2136
|
unknown
|
|
2137
2137
|
> = z.object({
|
|
2138
|
-
_id: z.string().default("
|
|
2138
|
+
_id: z.string().default("01K60CGQ9VCC5V69QVDBK1NWCP"),
|
|
2139
2139
|
path: z.string(),
|
|
2140
2140
|
key: z.string(),
|
|
2141
2141
|
display_name: z.string(),
|
|
@@ -2187,7 +2187,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2187
2187
|
z.ZodTypeDef,
|
|
2188
2188
|
DuplicateToolResponseBody1
|
|
2189
2189
|
> = z.object({
|
|
2190
|
-
id: z.string().default("
|
|
2190
|
+
id: z.string().default("01K60CGQ9VCC5V69QVDBK1NWCP"),
|
|
2191
2191
|
path: z.string(),
|
|
2192
2192
|
key: z.string(),
|
|
2193
2193
|
displayName: z.string(),
|
|
@@ -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-
|
|
149
|
+
"2025-09-25T12:10:32.801Z",
|
|
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-
|
|
183
|
+
created: z.date().default(() => new Date("2025-09-25T12:10:32.801Z"))
|
|
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-
|
|
199
|
+
"2025-09-25T12:10:32.801Z",
|
|
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-
|
|
233
|
+
created: z.date().default(() => new Date("2025-09-25T12:10:32.801Z"))
|
|
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-
|
|
253
|
+
"2025-09-25T12:10:32.801Z",
|
|
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-
|
|
287
|
+
created: z.date().default(() => new Date("2025-09-25T12:10:32.801Z"))
|
|
288
288
|
.transform(v => v.toISOString()),
|
|
289
289
|
}).transform((v) => {
|
|
290
290
|
return remap$(v, {
|
|
@@ -946,7 +946,7 @@ export const GetAgentKnowledgeBases$inboundSchema: z.ZodType<
|
|
|
946
946
|
z.ZodTypeDef,
|
|
947
947
|
unknown
|
|
948
948
|
> = z.object({
|
|
949
|
-
id: z.string().default("
|
|
949
|
+
id: z.string().default("01K60CGQ2DXANBB2SN1A3NQ2CT"),
|
|
950
950
|
knowledge_id: z.string(),
|
|
951
951
|
configuration: z.union([
|
|
952
952
|
z.lazy(() => GetAgentConfiguration2$inboundSchema),
|
|
@@ -973,7 +973,7 @@ export const GetAgentKnowledgeBases$outboundSchema: z.ZodType<
|
|
|
973
973
|
z.ZodTypeDef,
|
|
974
974
|
GetAgentKnowledgeBases
|
|
975
975
|
> = z.object({
|
|
976
|
-
id: z.string().default("
|
|
976
|
+
id: z.string().default("01K60CGQ2DXANBB2SN1A3NQ2CT"),
|
|
977
977
|
knowledgeId: z.string(),
|
|
978
978
|
configuration: z.union([
|
|
979
979
|
z.lazy(() => GetAgentConfiguration2$outboundSchema),
|
|
@@ -763,7 +763,7 @@ export function dataCodeToolFromJSON(
|
|
|
763
763
|
/** @internal */
|
|
764
764
|
export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
|
|
765
765
|
.object({
|
|
766
|
-
_id: z.string().default("
|
|
766
|
+
_id: z.string().default("01K60CGQ9JKN0EVPJZ8DA1XVR9"),
|
|
767
767
|
path: z.string(),
|
|
768
768
|
key: z.string(),
|
|
769
769
|
display_name: z.string(),
|
|
@@ -816,7 +816,7 @@ export const Data5$outboundSchema: z.ZodType<
|
|
|
816
816
|
z.ZodTypeDef,
|
|
817
817
|
Data5
|
|
818
818
|
> = z.object({
|
|
819
|
-
id: z.string().default("
|
|
819
|
+
id: z.string().default("01K60CGQ9JKN0EVPJZ8DA1XVR9"),
|
|
820
820
|
path: z.string(),
|
|
821
821
|
key: z.string(),
|
|
822
822
|
displayName: z.string(),
|
|
@@ -1159,7 +1159,7 @@ export function dataMcpFromJSON(
|
|
|
1159
1159
|
/** @internal */
|
|
1160
1160
|
export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
|
|
1161
1161
|
.object({
|
|
1162
|
-
_id: z.string().default("
|
|
1162
|
+
_id: z.string().default("01K60CGQ9HDTYR0DSP0SF3E0KN"),
|
|
1163
1163
|
path: z.string(),
|
|
1164
1164
|
key: z.string(),
|
|
1165
1165
|
display_name: z.string(),
|
|
@@ -1211,7 +1211,7 @@ export const Data4$outboundSchema: z.ZodType<
|
|
|
1211
1211
|
z.ZodTypeDef,
|
|
1212
1212
|
Data4
|
|
1213
1213
|
> = z.object({
|
|
1214
|
-
id: z.string().default("
|
|
1214
|
+
id: z.string().default("01K60CGQ9HDTYR0DSP0SF3E0KN"),
|
|
1215
1215
|
path: z.string(),
|
|
1216
1216
|
key: z.string(),
|
|
1217
1217
|
displayName: z.string(),
|
|
@@ -1594,7 +1594,7 @@ export function getAllToolsDataHttpFromJSON(
|
|
|
1594
1594
|
/** @internal */
|
|
1595
1595
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
1596
1596
|
.object({
|
|
1597
|
-
_id: z.string().default("
|
|
1597
|
+
_id: z.string().default("01K60CGQ9HZMSC5HPSB1FN8WQP"),
|
|
1598
1598
|
path: z.string(),
|
|
1599
1599
|
key: z.string(),
|
|
1600
1600
|
display_name: z.string(),
|
|
@@ -1646,7 +1646,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
1646
1646
|
z.ZodTypeDef,
|
|
1647
1647
|
Data3
|
|
1648
1648
|
> = z.object({
|
|
1649
|
-
id: z.string().default("
|
|
1649
|
+
id: z.string().default("01K60CGQ9HZMSC5HPSB1FN8WQP"),
|
|
1650
1650
|
path: z.string(),
|
|
1651
1651
|
key: z.string(),
|
|
1652
1652
|
displayName: z.string(),
|
|
@@ -1804,7 +1804,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
1804
1804
|
/** @internal */
|
|
1805
1805
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
1806
1806
|
.object({
|
|
1807
|
-
_id: z.string().default("
|
|
1807
|
+
_id: z.string().default("01K60CGQ9GBQ2CBS40R0ZMKNQ6"),
|
|
1808
1808
|
path: z.string(),
|
|
1809
1809
|
key: z.string(),
|
|
1810
1810
|
display_name: z.string(),
|
|
@@ -1857,7 +1857,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
1857
1857
|
z.ZodTypeDef,
|
|
1858
1858
|
Data2
|
|
1859
1859
|
> = z.object({
|
|
1860
|
-
id: z.string().default("
|
|
1860
|
+
id: z.string().default("01K60CGQ9GBQ2CBS40R0ZMKNQ6"),
|
|
1861
1861
|
path: z.string(),
|
|
1862
1862
|
key: z.string(),
|
|
1863
1863
|
displayName: z.string(),
|
|
@@ -2018,7 +2018,7 @@ export function getAllToolsDataFunctionFromJSON(
|
|
|
2018
2018
|
/** @internal */
|
|
2019
2019
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
2020
2020
|
.object({
|
|
2021
|
-
_id: z.string().default("
|
|
2021
|
+
_id: z.string().default("01K60CGQ9GVX9P8YCDMQS4H380"),
|
|
2022
2022
|
path: z.string(),
|
|
2023
2023
|
key: z.string(),
|
|
2024
2024
|
display_name: z.string(),
|
|
@@ -2070,7 +2070,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
2070
2070
|
z.ZodTypeDef,
|
|
2071
2071
|
Data1
|
|
2072
2072
|
> = z.object({
|
|
2073
|
-
id: z.string().default("
|
|
2073
|
+
id: z.string().default("01K60CGQ9GVX9P8YCDMQS4H380"),
|
|
2074
2074
|
path: z.string(),
|
|
2075
2075
|
key: z.string(),
|
|
2076
2076
|
displayName: z.string(),
|
|
@@ -351,7 +351,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
351
351
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
352
352
|
.optional(),
|
|
353
353
|
updated: z.string().datetime({ offset: true }).default(
|
|
354
|
-
"2025-09-
|
|
354
|
+
"2025-09-25T12:10:29.955Z",
|
|
355
355
|
).transform(v => new Date(v)),
|
|
356
356
|
}).transform((v) => {
|
|
357
357
|
return remap$(v, {
|
|
@@ -386,7 +386,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
386
386
|
isActive: z.boolean(),
|
|
387
387
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
388
388
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
389
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
389
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
390
390
|
.transform(v => v.toISOString()),
|
|
391
391
|
}).transform((v) => {
|
|
392
392
|
return remap$(v, {
|
|
@@ -1556,8 +1556,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1556
1556
|
> = z.object({
|
|
1557
1557
|
_id: z.string(),
|
|
1558
1558
|
description: z.string(),
|
|
1559
|
-
created: z.string().default("2025-09-
|
|
1560
|
-
updated: z.string().default("2025-09-
|
|
1559
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
1560
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
1561
1561
|
guardrail_config: z.union([
|
|
1562
1562
|
z.lazy(() =>
|
|
1563
1563
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1600,8 +1600,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1600
1600
|
> = z.object({
|
|
1601
1601
|
id: z.string(),
|
|
1602
1602
|
description: z.string(),
|
|
1603
|
-
created: z.string().default("2025-09-
|
|
1604
|
-
updated: z.string().default("2025-09-
|
|
1603
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
1604
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
1605
1605
|
guardrailConfig: z.union([
|
|
1606
1606
|
z.lazy(() =>
|
|
1607
1607
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -2002,8 +2002,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
2002
2002
|
> = z.object({
|
|
2003
2003
|
_id: z.string(),
|
|
2004
2004
|
description: z.string(),
|
|
2005
|
-
created: z.string().default("2025-09-
|
|
2006
|
-
updated: z.string().default("2025-09-
|
|
2005
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
2006
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
2007
2007
|
guardrail_config: z.union([
|
|
2008
2008
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
2009
2009
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -2044,8 +2044,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
2044
2044
|
> = z.object({
|
|
2045
2045
|
id: z.string(),
|
|
2046
2046
|
description: z.string(),
|
|
2047
|
-
created: z.string().default("2025-09-
|
|
2048
|
-
updated: z.string().default("2025-09-
|
|
2047
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
2048
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
2049
2049
|
guardrailConfig: z.union([
|
|
2050
2050
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
2051
2051
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -5512,8 +5512,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
5512
5512
|
> = z.object({
|
|
5513
5513
|
_id: z.string(),
|
|
5514
5514
|
description: z.string(),
|
|
5515
|
-
created: z.string().default("2025-09-
|
|
5516
|
-
updated: z.string().default("2025-09-
|
|
5515
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
5516
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
5517
5517
|
guardrail_config: z.union([
|
|
5518
5518
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
5519
5519
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -5623,8 +5623,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
5623
5623
|
> = z.object({
|
|
5624
5624
|
id: z.string(),
|
|
5625
5625
|
description: z.string(),
|
|
5626
|
-
created: z.string().default("2025-09-
|
|
5627
|
-
updated: z.string().default("2025-09-
|
|
5626
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
5627
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
5628
5628
|
guardrailConfig: z.union([
|
|
5629
5629
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
5630
5630
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -6006,8 +6006,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
6006
6006
|
> = z.object({
|
|
6007
6007
|
_id: z.string(),
|
|
6008
6008
|
description: z.string(),
|
|
6009
|
-
created: z.string().default("2025-09-
|
|
6010
|
-
updated: z.string().default("2025-09-
|
|
6009
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6010
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6011
6011
|
guardrail_config: z.union([
|
|
6012
6012
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
6013
6013
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -6045,8 +6045,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
6045
6045
|
> = z.object({
|
|
6046
6046
|
id: z.string(),
|
|
6047
6047
|
description: z.string(),
|
|
6048
|
-
created: z.string().default("2025-09-
|
|
6049
|
-
updated: z.string().default("2025-09-
|
|
6048
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6049
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6050
6050
|
guardrailConfig: z.union([
|
|
6051
6051
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
6052
6052
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -6392,8 +6392,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
6392
6392
|
> = z.object({
|
|
6393
6393
|
_id: z.string(),
|
|
6394
6394
|
description: z.string(),
|
|
6395
|
-
created: z.string().default("2025-09-
|
|
6396
|
-
updated: z.string().default("2025-09-
|
|
6395
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6396
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6397
6397
|
guardrail_config: z.union([
|
|
6398
6398
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
6399
6399
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -6437,8 +6437,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
6437
6437
|
> = z.object({
|
|
6438
6438
|
id: z.string(),
|
|
6439
6439
|
description: z.string(),
|
|
6440
|
-
created: z.string().default("2025-09-
|
|
6441
|
-
updated: z.string().default("2025-09-
|
|
6440
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6441
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6442
6442
|
guardrailConfig: z.union([
|
|
6443
6443
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
6444
6444
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -6803,8 +6803,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
6803
6803
|
> = z.object({
|
|
6804
6804
|
_id: z.string(),
|
|
6805
6805
|
description: z.string(),
|
|
6806
|
-
created: z.string().default("2025-09-
|
|
6807
|
-
updated: z.string().default("2025-09-
|
|
6806
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6807
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6808
6808
|
guardrail_config: z.union([
|
|
6809
6809
|
z.lazy(() =>
|
|
6810
6810
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -6846,8 +6846,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
6846
6846
|
> = z.object({
|
|
6847
6847
|
id: z.string(),
|
|
6848
6848
|
description: z.string(),
|
|
6849
|
-
created: z.string().default("2025-09-
|
|
6850
|
-
updated: z.string().default("2025-09-
|
|
6849
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6850
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
6851
6851
|
guardrailConfig: z.union([
|
|
6852
6852
|
z.lazy(() =>
|
|
6853
6853
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -7229,8 +7229,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
7229
7229
|
z.object({
|
|
7230
7230
|
_id: z.string(),
|
|
7231
7231
|
description: z.string(),
|
|
7232
|
-
created: z.string().default("2025-09-
|
|
7233
|
-
updated: z.string().default("2025-09-
|
|
7232
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
7233
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
7234
7234
|
guardrail_config: z.union([
|
|
7235
7235
|
z.lazy(() =>
|
|
7236
7236
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7274,8 +7274,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
7274
7274
|
> = z.object({
|
|
7275
7275
|
id: z.string(),
|
|
7276
7276
|
description: z.string(),
|
|
7277
|
-
created: z.string().default("2025-09-
|
|
7278
|
-
updated: z.string().default("2025-09-
|
|
7277
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
7278
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
7279
7279
|
guardrailConfig: z.union([
|
|
7280
7280
|
z.lazy(() =>
|
|
7281
7281
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -1022,7 +1022,7 @@ export const ListAgentsKnowledgeBases$inboundSchema: z.ZodType<
|
|
|
1022
1022
|
z.ZodTypeDef,
|
|
1023
1023
|
unknown
|
|
1024
1024
|
> = z.object({
|
|
1025
|
-
id: z.string().default("
|
|
1025
|
+
id: z.string().default("01K60CGQ250M2GXK4GC08ZSGV1"),
|
|
1026
1026
|
knowledge_id: z.string(),
|
|
1027
1027
|
configuration: z.union([
|
|
1028
1028
|
z.lazy(() => ListAgentsConfiguration2$inboundSchema),
|
|
@@ -1049,7 +1049,7 @@ export const ListAgentsKnowledgeBases$outboundSchema: z.ZodType<
|
|
|
1049
1049
|
z.ZodTypeDef,
|
|
1050
1050
|
ListAgentsKnowledgeBases
|
|
1051
1051
|
> = z.object({
|
|
1052
|
-
id: z.string().default("
|
|
1052
|
+
id: z.string().default("01K60CGQ250M2GXK4GC08ZSGV1"),
|
|
1053
1053
|
knowledgeId: z.string(),
|
|
1054
1054
|
configuration: z.union([
|
|
1055
1055
|
z.lazy(() => ListAgentsConfiguration2$outboundSchema),
|
|
@@ -464,7 +464,7 @@ export const ListBudgetsData$inboundSchema: z.ZodType<
|
|
|
464
464
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
465
465
|
.optional(),
|
|
466
466
|
updated: z.string().datetime({ offset: true }).default(
|
|
467
|
-
"2025-09-
|
|
467
|
+
"2025-09-25T12:10:29.955Z",
|
|
468
468
|
).transform(v => new Date(v)),
|
|
469
469
|
}).transform((v) => {
|
|
470
470
|
return remap$(v, {
|
|
@@ -499,7 +499,7 @@ export const ListBudgetsData$outboundSchema: z.ZodType<
|
|
|
499
499
|
isActive: z.boolean(),
|
|
500
500
|
consumption: z.lazy(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
501
501
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
502
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
502
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
503
503
|
.transform(v => v.toISOString()),
|
|
504
504
|
}).transform((v) => {
|
|
505
505
|
return remap$(v, {
|
|
@@ -352,7 +352,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
|
|
|
352
352
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
353
353
|
.optional(),
|
|
354
354
|
updated: z.string().datetime({ offset: true }).default(
|
|
355
|
-
"2025-09-
|
|
355
|
+
"2025-09-25T12:10:29.955Z",
|
|
356
356
|
).transform(v => new Date(v)),
|
|
357
357
|
metrics: z.lazy(() => ListContactsMetrics$inboundSchema),
|
|
358
358
|
}).transform((v) => {
|
|
@@ -389,7 +389,7 @@ export const Data$outboundSchema: z.ZodType<Data$Outbound, z.ZodTypeDef, Data> =
|
|
|
389
389
|
tags: z.array(z.string()).optional(),
|
|
390
390
|
metadata: z.record(z.any()).optional(),
|
|
391
391
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
392
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
392
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
393
393
|
.transform(v => v.toISOString()),
|
|
394
394
|
metrics: z.lazy(() => ListContactsMetrics$outboundSchema),
|
|
395
395
|
}).transform((v) => {
|
|
@@ -3101,7 +3101,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
3101
3101
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3102
3102
|
.optional(),
|
|
3103
3103
|
updated: z.string().datetime({ offset: true }).default(
|
|
3104
|
-
"2025-09-
|
|
3104
|
+
"2025-09-25T12:10:29.955Z",
|
|
3105
3105
|
).transform(v => new Date(v)),
|
|
3106
3106
|
}).transform((v) => {
|
|
3107
3107
|
return remap$(v, {
|
|
@@ -3165,7 +3165,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
3165
3165
|
createdById: z.string().optional(),
|
|
3166
3166
|
updatedById: z.string().optional(),
|
|
3167
3167
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3168
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
3168
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
3169
3169
|
.transform(v => v.toISOString()),
|
|
3170
3170
|
}).transform((v) => {
|
|
3171
3171
|
return remap$(v, {
|
|
@@ -253,7 +253,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
|
|
|
253
253
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
254
254
|
.optional(),
|
|
255
255
|
updated: z.string().datetime({ offset: true }).default(
|
|
256
|
-
"2025-09-
|
|
256
|
+
"2025-09-25T12:10:29.955Z",
|
|
257
257
|
).transform(v => new Date(v)),
|
|
258
258
|
}).transform((v) => {
|
|
259
259
|
return remap$(v, {
|
|
@@ -293,7 +293,7 @@ export const ListDatasetsData$outboundSchema: z.ZodType<
|
|
|
293
293
|
updatedById: z.string().optional(),
|
|
294
294
|
metadata: z.lazy(() => ListDatasetsMetadata$outboundSchema),
|
|
295
295
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
296
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
296
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
297
297
|
.transform(v => v.toISOString()),
|
|
298
298
|
}).transform((v) => {
|
|
299
299
|
return remap$(v, {
|
|
@@ -285,7 +285,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
285
285
|
z.ZodTypeDef,
|
|
286
286
|
unknown
|
|
287
287
|
> = z.object({
|
|
288
|
-
_id: z.string().default("
|
|
288
|
+
_id: z.string().default("01K60CGQ6KMNCZ11M6ZTSX707R"),
|
|
289
289
|
display_name: z.string(),
|
|
290
290
|
description: z.string().optional(),
|
|
291
291
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -329,7 +329,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
|
|
|
329
329
|
z.ZodTypeDef,
|
|
330
330
|
ListDatasourcesData
|
|
331
331
|
> = z.object({
|
|
332
|
-
id: z.string().default("
|
|
332
|
+
id: z.string().default("01K60CGQ6KMNCZ11M6ZTSX707R"),
|
|
333
333
|
displayName: z.string(),
|
|
334
334
|
description: z.string().optional(),
|
|
335
335
|
status: ListDatasourcesStatus$outboundSchema,
|