@orq-ai/node 3.4.0-rc.21 → 3.4.0-rc.22
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 +63 -63
- package/bin/mcp-server.js.map +25 -25
- 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/operations/bulkcreatedatapoints.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/createtool.js +6 -6
- 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 +6 -6
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.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/retrievetool.js +6 -6
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updatetool.js +6 -6
- 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/operations/bulkcreatedatapoints.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/createtool.ts +6 -6
- 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 +6 -6
- 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/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +6 -6
- 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/updatetool.ts +6 -6
|
@@ -1731,7 +1731,7 @@ export const ResponseBody$inboundSchema: z.ZodType<
|
|
|
1731
1731
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1732
1732
|
.optional(),
|
|
1733
1733
|
updated: z.string().datetime({ offset: true }).default(
|
|
1734
|
-
"2025-04-
|
|
1734
|
+
"2025-04-15T11:48:57.228Z",
|
|
1735
1735
|
).transform(v => new Date(v)),
|
|
1736
1736
|
}).transform((v) => {
|
|
1737
1737
|
return remap$(v, {
|
|
@@ -1775,7 +1775,7 @@ export const ResponseBody$outboundSchema: z.ZodType<
|
|
|
1775
1775
|
createdById: z.string().optional(),
|
|
1776
1776
|
updatedById: z.string().optional(),
|
|
1777
1777
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
1778
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
1778
|
+
updated: z.date().default(() => new Date("2025-04-15T11:48:57.228Z"))
|
|
1779
1779
|
.transform(v => v.toISOString()),
|
|
1780
1780
|
}).transform((v) => {
|
|
1781
1781
|
return remap$(v, {
|
|
@@ -177,7 +177,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
177
177
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
178
178
|
.optional(),
|
|
179
179
|
updated: z.string().datetime({ offset: true }).default(
|
|
180
|
-
"2025-04-
|
|
180
|
+
"2025-04-15T11:48:57.228Z",
|
|
181
181
|
).transform(v => new Date(v)),
|
|
182
182
|
}).transform((v) => {
|
|
183
183
|
return remap$(v, {
|
|
@@ -214,7 +214,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
214
214
|
tags: z.array(z.string()).optional(),
|
|
215
215
|
metadata: z.record(z.any()).optional(),
|
|
216
216
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
217
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
217
|
+
updated: z.date().default(() => new Date("2025-04-15T11:48:57.228Z"))
|
|
218
218
|
.transform(v => v.toISOString()),
|
|
219
219
|
}).transform((v) => {
|
|
220
220
|
return remap$(v, {
|
|
@@ -211,7 +211,7 @@ export const CreateDatasetResponseBody$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-04-
|
|
214
|
+
"2025-04-15T11:48:57.228Z",
|
|
215
215
|
).transform(v => new Date(v)),
|
|
216
216
|
}).transform((v) => {
|
|
217
217
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
updatedById: z.string().optional(),
|
|
252
252
|
metadata: z.lazy(() => CreateDatasetMetadata$outboundSchema),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-04-15T11:48:57.228Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -1649,7 +1649,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
1649
1649
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1650
1650
|
.optional(),
|
|
1651
1651
|
updated: z.string().datetime({ offset: true }).default(
|
|
1652
|
-
"2025-04-
|
|
1652
|
+
"2025-04-15T11:48:57.228Z",
|
|
1653
1653
|
).transform(v => new Date(v)),
|
|
1654
1654
|
}).transform((v) => {
|
|
1655
1655
|
return remap$(v, {
|
|
@@ -1693,7 +1693,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
1693
1693
|
createdById: z.string().optional(),
|
|
1694
1694
|
updatedById: z.string().optional(),
|
|
1695
1695
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
1696
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
1696
|
+
updated: z.date().default(() => new Date("2025-04-15T11:48:57.228Z"))
|
|
1697
1697
|
.transform(v => v.toISOString()),
|
|
1698
1698
|
}).transform((v) => {
|
|
1699
1699
|
return remap$(v, {
|
|
@@ -751,7 +751,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
751
751
|
z.ZodTypeDef,
|
|
752
752
|
unknown
|
|
753
753
|
> = z.object({
|
|
754
|
-
_id: z.string().default("
|
|
754
|
+
_id: z.string().default("01JRWMG1S4AJ66G987YZPKGM5Q"),
|
|
755
755
|
display_name: z.string(),
|
|
756
756
|
description: z.string().optional(),
|
|
757
757
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -795,7 +795,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
795
795
|
z.ZodTypeDef,
|
|
796
796
|
CreateDatasourceResponseBody
|
|
797
797
|
> = z.object({
|
|
798
|
-
id: z.string().default("
|
|
798
|
+
id: z.string().default("01JRWMG1S4AJ66G987YZPKGM5Q"),
|
|
799
799
|
displayName: z.string(),
|
|
800
800
|
description: z.string().optional(),
|
|
801
801
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -1710,7 +1710,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
1710
1710
|
z.ZodTypeDef,
|
|
1711
1711
|
unknown
|
|
1712
1712
|
> = z.object({
|
|
1713
|
-
_id: z.string().default("
|
|
1713
|
+
_id: z.string().default("tool_01JRWMG1PZ9C9834X91QW1P5KV"),
|
|
1714
1714
|
path: z.string(),
|
|
1715
1715
|
key: z.string(),
|
|
1716
1716
|
description: z.string(),
|
|
@@ -1759,7 +1759,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
1759
1759
|
z.ZodTypeDef,
|
|
1760
1760
|
ResponseBody3
|
|
1761
1761
|
> = z.object({
|
|
1762
|
-
id: z.string().default("
|
|
1762
|
+
id: z.string().default("tool_01JRWMG1PZ9C9834X91QW1P5KV"),
|
|
1763
1763
|
path: z.string(),
|
|
1764
1764
|
key: z.string(),
|
|
1765
1765
|
description: z.string(),
|
|
@@ -1922,7 +1922,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
1922
1922
|
z.ZodTypeDef,
|
|
1923
1923
|
unknown
|
|
1924
1924
|
> = z.object({
|
|
1925
|
-
_id: z.string().default("
|
|
1925
|
+
_id: z.string().default("tool_01JRWMG1PYGZ7CYA8NGZWC29Q5"),
|
|
1926
1926
|
path: z.string(),
|
|
1927
1927
|
key: z.string(),
|
|
1928
1928
|
description: z.string(),
|
|
@@ -1972,7 +1972,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
1972
1972
|
z.ZodTypeDef,
|
|
1973
1973
|
ResponseBody2
|
|
1974
1974
|
> = z.object({
|
|
1975
|
-
id: z.string().default("
|
|
1975
|
+
id: z.string().default("tool_01JRWMG1PYGZ7CYA8NGZWC29Q5"),
|
|
1976
1976
|
path: z.string(),
|
|
1977
1977
|
key: z.string(),
|
|
1978
1978
|
description: z.string(),
|
|
@@ -2136,7 +2136,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
2136
2136
|
z.ZodTypeDef,
|
|
2137
2137
|
unknown
|
|
2138
2138
|
> = z.object({
|
|
2139
|
-
_id: z.string().default("
|
|
2139
|
+
_id: z.string().default("tool_01JRWMG1PXNZE47SHPFJHH4JNM"),
|
|
2140
2140
|
path: z.string(),
|
|
2141
2141
|
key: z.string(),
|
|
2142
2142
|
description: z.string(),
|
|
@@ -2185,7 +2185,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
2185
2185
|
z.ZodTypeDef,
|
|
2186
2186
|
ResponseBody1
|
|
2187
2187
|
> = z.object({
|
|
2188
|
-
id: z.string().default("
|
|
2188
|
+
id: z.string().default("tool_01JRWMG1PXNZE47SHPFJHH4JNM"),
|
|
2189
2189
|
path: z.string(),
|
|
2190
2190
|
key: z.string(),
|
|
2191
2191
|
description: 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-04-
|
|
149
|
+
"2025-04-15T11:48:59.902Z",
|
|
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-04-
|
|
183
|
+
created: z.date().default(() => new Date("2025-04-15T11:48:59.902Z"))
|
|
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-04-
|
|
199
|
+
"2025-04-15T11:48:59.902Z",
|
|
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-04-
|
|
233
|
+
created: z.date().default(() => new Date("2025-04-15T11:48:59.902Z"))
|
|
234
234
|
.transform(v => v.toISOString()),
|
|
235
235
|
}).transform((v) => {
|
|
236
236
|
return remap$(v, {
|
|
@@ -247,7 +247,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
247
247
|
file_name: z.string(),
|
|
248
248
|
workspace_id: z.string(),
|
|
249
249
|
created: z.string().datetime({ offset: true }).default(
|
|
250
|
-
"2025-04-
|
|
250
|
+
"2025-04-15T11:48:59.902Z",
|
|
251
251
|
).transform(v => new Date(v)),
|
|
252
252
|
}).transform((v) => {
|
|
253
253
|
return remap$(v, {
|
|
@@ -281,7 +281,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
281
281
|
bytes: z.number(),
|
|
282
282
|
fileName: z.string(),
|
|
283
283
|
workspaceId: z.string(),
|
|
284
|
-
created: z.date().default(() => new Date("2025-04-
|
|
284
|
+
created: z.date().default(() => new Date("2025-04-15T11:48:59.902Z"))
|
|
285
285
|
.transform(v => v.toISOString()),
|
|
286
286
|
}).transform((v) => {
|
|
287
287
|
return remap$(v, {
|
|
@@ -735,7 +735,7 @@ export function dataHttpFromJSON(
|
|
|
735
735
|
/** @internal */
|
|
736
736
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
737
737
|
.object({
|
|
738
|
-
_id: z.string().default("
|
|
738
|
+
_id: z.string().default("tool_01JRWMG1PV2GT1M4CGYNW2J0CC"),
|
|
739
739
|
path: z.string(),
|
|
740
740
|
key: z.string(),
|
|
741
741
|
description: z.string(),
|
|
@@ -784,7 +784,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
784
784
|
z.ZodTypeDef,
|
|
785
785
|
Data3
|
|
786
786
|
> = z.object({
|
|
787
|
-
id: z.string().default("
|
|
787
|
+
id: z.string().default("tool_01JRWMG1PV2GT1M4CGYNW2J0CC"),
|
|
788
788
|
path: z.string(),
|
|
789
789
|
key: z.string(),
|
|
790
790
|
description: z.string(),
|
|
@@ -938,7 +938,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
938
938
|
/** @internal */
|
|
939
939
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
940
940
|
.object({
|
|
941
|
-
_id: z.string().default("
|
|
941
|
+
_id: z.string().default("tool_01JRWMG1PVS11H9VVAG60A551R"),
|
|
942
942
|
path: z.string(),
|
|
943
943
|
key: z.string(),
|
|
944
944
|
description: z.string(),
|
|
@@ -988,7 +988,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
988
988
|
z.ZodTypeDef,
|
|
989
989
|
Data2
|
|
990
990
|
> = z.object({
|
|
991
|
-
id: z.string().default("
|
|
991
|
+
id: z.string().default("tool_01JRWMG1PVS11H9VVAG60A551R"),
|
|
992
992
|
path: z.string(),
|
|
993
993
|
key: z.string(),
|
|
994
994
|
description: z.string(),
|
|
@@ -1143,7 +1143,7 @@ export function dataFunctionFromJSON(
|
|
|
1143
1143
|
/** @internal */
|
|
1144
1144
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
1145
1145
|
.object({
|
|
1146
|
-
_id: z.string().default("
|
|
1146
|
+
_id: z.string().default("tool_01JRWMG1PTFD4G6RJVCY3Y3865"),
|
|
1147
1147
|
path: z.string(),
|
|
1148
1148
|
key: z.string(),
|
|
1149
1149
|
description: z.string(),
|
|
@@ -1192,7 +1192,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
1192
1192
|
z.ZodTypeDef,
|
|
1193
1193
|
Data1
|
|
1194
1194
|
> = z.object({
|
|
1195
|
-
id: z.string().default("
|
|
1195
|
+
id: z.string().default("tool_01JRWMG1PTFD4G6RJVCY3Y3865"),
|
|
1196
1196
|
path: z.string(),
|
|
1197
1197
|
key: z.string(),
|
|
1198
1198
|
description: z.string(),
|
|
@@ -912,7 +912,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
912
912
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
913
913
|
.optional(),
|
|
914
914
|
updated: z.string().datetime({ offset: true }).default(
|
|
915
|
-
"2025-04-
|
|
915
|
+
"2025-04-15T11:48:57.228Z",
|
|
916
916
|
).transform(v => new Date(v)),
|
|
917
917
|
}).transform((v) => {
|
|
918
918
|
return remap$(v, {
|
|
@@ -955,7 +955,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
955
955
|
createdById: z.string().optional(),
|
|
956
956
|
updatedById: z.string().optional(),
|
|
957
957
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
958
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
958
|
+
updated: z.date().default(() => new Date("2025-04-15T11:48:57.228Z"))
|
|
959
959
|
.transform(v => v.toISOString()),
|
|
960
960
|
}).transform((v) => {
|
|
961
961
|
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-04-
|
|
256
|
+
"2025-04-15T11:48:57.228Z",
|
|
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-04-
|
|
296
|
+
updated: z.date().default(() => new Date("2025-04-15T11:48:57.228Z"))
|
|
297
297
|
.transform(v => v.toISOString()),
|
|
298
298
|
}).transform((v) => {
|
|
299
299
|
return remap$(v, {
|
|
@@ -278,7 +278,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
278
278
|
z.ZodTypeDef,
|
|
279
279
|
unknown
|
|
280
280
|
> = z.object({
|
|
281
|
-
_id: z.string().default("
|
|
281
|
+
_id: z.string().default("01JRWMG1RY7NPCG9VD25605CQA"),
|
|
282
282
|
display_name: z.string(),
|
|
283
283
|
description: z.string().optional(),
|
|
284
284
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -322,7 +322,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
|
|
|
322
322
|
z.ZodTypeDef,
|
|
323
323
|
ListDatasourcesData
|
|
324
324
|
> = z.object({
|
|
325
|
-
id: z.string().default("
|
|
325
|
+
id: z.string().default("01JRWMG1RY7NPCG9VD25605CQA"),
|
|
326
326
|
displayName: z.string(),
|
|
327
327
|
description: z.string().optional(),
|
|
328
328
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -834,7 +834,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
834
834
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
835
835
|
.optional(),
|
|
836
836
|
updated: z.string().datetime({ offset: true }).default(
|
|
837
|
-
"2025-04-
|
|
837
|
+
"2025-04-15T11:48:57.228Z",
|
|
838
838
|
).transform(v => new Date(v)),
|
|
839
839
|
}).transform((v) => {
|
|
840
840
|
return remap$(v, {
|
|
@@ -877,7 +877,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
877
877
|
createdById: z.string().optional(),
|
|
878
878
|
updatedById: z.string().optional(),
|
|
879
879
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
880
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
880
|
+
updated: z.date().default(() => new Date("2025-04-15T11:48:57.228Z"))
|
|
881
881
|
.transform(v => v.toISOString()),
|
|
882
882
|
}).transform((v) => {
|
|
883
883
|
return remap$(v, {
|
|
@@ -201,7 +201,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
201
201
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
202
202
|
.optional(),
|
|
203
203
|
updated: z.string().datetime({ offset: true }).default(
|
|
204
|
-
"2025-04-
|
|
204
|
+
"2025-04-15T11:48:57.228Z",
|
|
205
205
|
).transform(v => new Date(v)),
|
|
206
206
|
}).transform((v) => {
|
|
207
207
|
return remap$(v, {
|
|
@@ -241,7 +241,7 @@ export const RetrieveDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
241
241
|
updatedById: z.string().optional(),
|
|
242
242
|
metadata: z.lazy(() => RetrieveDatasetMetadata$outboundSchema),
|
|
243
243
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
244
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
244
|
+
updated: z.date().default(() => new Date("2025-04-15T11:48:57.228Z"))
|
|
245
245
|
.transform(v => v.toISOString()),
|
|
246
246
|
}).transform((v) => {
|
|
247
247
|
return remap$(v, {
|
|
@@ -172,7 +172,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
172
172
|
z.ZodTypeDef,
|
|
173
173
|
unknown
|
|
174
174
|
> = z.object({
|
|
175
|
-
_id: z.string().default("
|
|
175
|
+
_id: z.string().default("01JRWMG1S1CRCHE9QK19MDDM0H"),
|
|
176
176
|
display_name: z.string(),
|
|
177
177
|
description: z.string().optional(),
|
|
178
178
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -216,7 +216,7 @@ export const RetrieveDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
216
216
|
z.ZodTypeDef,
|
|
217
217
|
RetrieveDatasourceResponseBody
|
|
218
218
|
> = z.object({
|
|
219
|
-
id: z.string().default("
|
|
219
|
+
id: z.string().default("01JRWMG1S1CRCHE9QK19MDDM0H"),
|
|
220
220
|
displayName: z.string(),
|
|
221
221
|
description: z.string().optional(),
|
|
222
222
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -742,7 +742,7 @@ export const RetrieveToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
742
742
|
z.ZodTypeDef,
|
|
743
743
|
unknown
|
|
744
744
|
> = z.object({
|
|
745
|
-
_id: z.string().default("
|
|
745
|
+
_id: z.string().default("tool_01JRWMG1Q94VYSPS44SGSPT5GD"),
|
|
746
746
|
path: z.string(),
|
|
747
747
|
key: z.string(),
|
|
748
748
|
description: z.string(),
|
|
@@ -791,7 +791,7 @@ export const RetrieveToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
791
791
|
z.ZodTypeDef,
|
|
792
792
|
RetrieveToolResponseBody3
|
|
793
793
|
> = z.object({
|
|
794
|
-
id: z.string().default("
|
|
794
|
+
id: z.string().default("tool_01JRWMG1Q94VYSPS44SGSPT5GD"),
|
|
795
795
|
path: z.string(),
|
|
796
796
|
key: z.string(),
|
|
797
797
|
description: z.string(),
|
|
@@ -965,7 +965,7 @@ export const RetrieveToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
965
965
|
z.ZodTypeDef,
|
|
966
966
|
unknown
|
|
967
967
|
> = z.object({
|
|
968
|
-
_id: z.string().default("
|
|
968
|
+
_id: z.string().default("tool_01JRWMG1Q8DNG62H7WSPHJ7709"),
|
|
969
969
|
path: z.string(),
|
|
970
970
|
key: z.string(),
|
|
971
971
|
description: z.string(),
|
|
@@ -1015,7 +1015,7 @@ export const RetrieveToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1015
1015
|
z.ZodTypeDef,
|
|
1016
1016
|
RetrieveToolResponseBody2
|
|
1017
1017
|
> = z.object({
|
|
1018
|
-
id: z.string().default("
|
|
1018
|
+
id: z.string().default("tool_01JRWMG1Q8DNG62H7WSPHJ7709"),
|
|
1019
1019
|
path: z.string(),
|
|
1020
1020
|
key: z.string(),
|
|
1021
1021
|
description: z.string(),
|
|
@@ -1185,7 +1185,7 @@ export const RetrieveToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
1185
1185
|
z.ZodTypeDef,
|
|
1186
1186
|
unknown
|
|
1187
1187
|
> = z.object({
|
|
1188
|
-
_id: z.string().default("
|
|
1188
|
+
_id: z.string().default("tool_01JRWMG1Q87NFMT25PK1NWCWZE"),
|
|
1189
1189
|
path: z.string(),
|
|
1190
1190
|
key: z.string(),
|
|
1191
1191
|
description: z.string(),
|
|
@@ -1234,7 +1234,7 @@ export const RetrieveToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
1234
1234
|
z.ZodTypeDef,
|
|
1235
1235
|
RetrieveToolResponseBody1
|
|
1236
1236
|
> = z.object({
|
|
1237
|
-
id: z.string().default("
|
|
1237
|
+
id: z.string().default("tool_01JRWMG1Q87NFMT25PK1NWCWZE"),
|
|
1238
1238
|
path: z.string(),
|
|
1239
1239
|
key: z.string(),
|
|
1240
1240
|
description: z.string(),
|
|
@@ -1638,7 +1638,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
1638
1638
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1639
1639
|
.optional(),
|
|
1640
1640
|
updated: z.string().datetime({ offset: true }).default(
|
|
1641
|
-
"2025-04-
|
|
1641
|
+
"2025-04-15T11:48:57.228Z",
|
|
1642
1642
|
).transform(v => new Date(v)),
|
|
1643
1643
|
}).transform((v) => {
|
|
1644
1644
|
return remap$(v, {
|
|
@@ -1682,7 +1682,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
1682
1682
|
createdById: z.string().optional(),
|
|
1683
1683
|
updatedById: z.string().optional(),
|
|
1684
1684
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
1685
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
1685
|
+
updated: z.date().default(() => new Date("2025-04-15T11:48:57.228Z"))
|
|
1686
1686
|
.transform(v => v.toISOString()),
|
|
1687
1687
|
}).transform((v) => {
|
|
1688
1688
|
return remap$(v, {
|
|
@@ -302,7 +302,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
302
302
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
303
303
|
.optional(),
|
|
304
304
|
updated: z.string().datetime({ offset: true }).default(
|
|
305
|
-
"2025-04-
|
|
305
|
+
"2025-04-15T11:48:57.228Z",
|
|
306
306
|
).transform(v => new Date(v)),
|
|
307
307
|
}).transform((v) => {
|
|
308
308
|
return remap$(v, {
|
|
@@ -347,7 +347,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
347
347
|
parentId: z.string().optional(),
|
|
348
348
|
version: z.string().optional(),
|
|
349
349
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
350
|
-
updated: z.date().default(() => new Date("2025-04-
|
|
350
|
+
updated: z.date().default(() => new Date("2025-04-15T11:48:57.228Z"))
|
|
351
351
|
.transform(v => v.toISOString()),
|
|
352
352
|
}).transform((v) => {
|
|
353
353
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
z.ZodTypeDef,
|
|
245
245
|
unknown
|
|
246
246
|
> = z.object({
|
|
247
|
-
_id: z.string().default("
|
|
247
|
+
_id: z.string().default("01JRWMG1S6NKPGQ6YD5PQCC1SM"),
|
|
248
248
|
display_name: z.string(),
|
|
249
249
|
description: z.string().optional(),
|
|
250
250
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -288,7 +288,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
288
288
|
z.ZodTypeDef,
|
|
289
289
|
UpdateDatasourceResponseBody
|
|
290
290
|
> = z.object({
|
|
291
|
-
id: z.string().default("
|
|
291
|
+
id: z.string().default("01JRWMG1S6NKPGQ6YD5PQCC1SM"),
|
|
292
292
|
displayName: z.string(),
|
|
293
293
|
description: z.string().optional(),
|
|
294
294
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -1860,7 +1860,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1860
1860
|
z.ZodTypeDef,
|
|
1861
1861
|
unknown
|
|
1862
1862
|
> = z.object({
|
|
1863
|
-
_id: z.string().default("
|
|
1863
|
+
_id: z.string().default("tool_01JRWMG1Q4MWYPEXE5R2WB65BV"),
|
|
1864
1864
|
path: z.string(),
|
|
1865
1865
|
key: z.string(),
|
|
1866
1866
|
description: z.string(),
|
|
@@ -1909,7 +1909,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1909
1909
|
z.ZodTypeDef,
|
|
1910
1910
|
UpdateToolResponseBody3
|
|
1911
1911
|
> = z.object({
|
|
1912
|
-
id: z.string().default("
|
|
1912
|
+
id: z.string().default("tool_01JRWMG1Q4MWYPEXE5R2WB65BV"),
|
|
1913
1913
|
path: z.string(),
|
|
1914
1914
|
key: z.string(),
|
|
1915
1915
|
description: z.string(),
|
|
@@ -2079,7 +2079,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
2079
2079
|
z.ZodTypeDef,
|
|
2080
2080
|
unknown
|
|
2081
2081
|
> = z.object({
|
|
2082
|
-
_id: z.string().default("
|
|
2082
|
+
_id: z.string().default("tool_01JRWMG1Q31GQT7BJZ6SMS5AKM"),
|
|
2083
2083
|
path: z.string(),
|
|
2084
2084
|
key: z.string(),
|
|
2085
2085
|
description: z.string(),
|
|
@@ -2129,7 +2129,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
2129
2129
|
z.ZodTypeDef,
|
|
2130
2130
|
UpdateToolResponseBody2
|
|
2131
2131
|
> = z.object({
|
|
2132
|
-
id: z.string().default("
|
|
2132
|
+
id: z.string().default("tool_01JRWMG1Q31GQT7BJZ6SMS5AKM"),
|
|
2133
2133
|
path: z.string(),
|
|
2134
2134
|
key: z.string(),
|
|
2135
2135
|
description: z.string(),
|
|
@@ -2299,7 +2299,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2299
2299
|
z.ZodTypeDef,
|
|
2300
2300
|
unknown
|
|
2301
2301
|
> = z.object({
|
|
2302
|
-
_id: z.string().default("
|
|
2302
|
+
_id: z.string().default("tool_01JRWMG1Q2J6Q38M5FXJ76E8DV"),
|
|
2303
2303
|
path: z.string(),
|
|
2304
2304
|
key: z.string(),
|
|
2305
2305
|
description: z.string(),
|
|
@@ -2348,7 +2348,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2348
2348
|
z.ZodTypeDef,
|
|
2349
2349
|
UpdateToolResponseBody1
|
|
2350
2350
|
> = z.object({
|
|
2351
|
-
id: z.string().default("
|
|
2351
|
+
id: z.string().default("tool_01JRWMG1Q2J6Q38M5FXJ76E8DV"),
|
|
2352
2352
|
path: z.string(),
|
|
2353
2353
|
key: z.string(),
|
|
2354
2354
|
description: z.string(),
|