@orq-ai/node 3.12.14 → 3.12.16
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/README.md +1 -4
- package/bin/mcp-server.js +113 -113
- package/bin/mcp-server.js.map +31 -31
- 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/lib/url.js +1 -1
- package/lib/url.js.map +1 -1
- 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/README.md +1 -4
- package/packages/orq-rc/docs/sdks/agents/README.md +8 -2
- package/packages/orq-rc/docs/sdks/evals/README.md +2 -0
- 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/lib/url.ts +1 -1
- 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/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 +167 -28
- package/packages/orq-rc/src/models/operations/createprompt.ts +2 -0
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +1 -0
- package/packages/orq-rc/src/models/operations/deployments.ts +1 -0
- 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/getallprompts.ts +1 -0
- 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/getoneprompt.ts +1 -0
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +1 -0
- 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/listpromptversions.ts +1 -0
- 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/runagent.ts +26 -19
- package/packages/orq-rc/src/models/operations/searchknowledge.ts +2 -2
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +27 -20
- 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 +181 -28
- package/packages/orq-rc/src/models/operations/updateprompt.ts +2 -0
- package/src/lib/config.ts +3 -3
- package/src/lib/url.ts +1 -1
- 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
|
@@ -107,7 +107,7 @@ export type StreamRunAgentPartsAgentsKind = ClosedEnum<
|
|
|
107
107
|
|
|
108
108
|
export type StreamRunAgentParts2 = {
|
|
109
109
|
kind: StreamRunAgentPartsAgentsKind;
|
|
110
|
-
data
|
|
110
|
+
data: { [k: string]: any };
|
|
111
111
|
metadata?: { [k: string]: any } | undefined;
|
|
112
112
|
};
|
|
113
113
|
|
|
@@ -126,9 +126,9 @@ export type StreamRunAgentParts1 = {
|
|
|
126
126
|
export type StreamRunAgentParts =
|
|
127
127
|
| StreamRunAgentParts4
|
|
128
128
|
| StreamRunAgentParts1
|
|
129
|
+
| StreamRunAgentParts2
|
|
129
130
|
| StreamRunAgentParts3
|
|
130
|
-
| Parts5
|
|
131
|
-
| StreamRunAgentParts2;
|
|
131
|
+
| Parts5;
|
|
132
132
|
|
|
133
133
|
/**
|
|
134
134
|
* The A2A format message containing the task for the agent to perform.
|
|
@@ -148,9 +148,9 @@ export type StreamRunAgentMessage = {
|
|
|
148
148
|
parts: Array<
|
|
149
149
|
| StreamRunAgentParts4
|
|
150
150
|
| StreamRunAgentParts1
|
|
151
|
+
| StreamRunAgentParts2
|
|
151
152
|
| StreamRunAgentParts3
|
|
152
153
|
| Parts5
|
|
153
|
-
| StreamRunAgentParts2
|
|
154
154
|
>;
|
|
155
155
|
/**
|
|
156
156
|
* Optional message metadata
|
|
@@ -392,7 +392,7 @@ export type Tools12 = {
|
|
|
392
392
|
/**
|
|
393
393
|
* The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
|
|
394
394
|
*/
|
|
395
|
-
path
|
|
395
|
+
path?: string | undefined;
|
|
396
396
|
/**
|
|
397
397
|
* Unique key of the tool as it will be displayed in the UI
|
|
398
398
|
*/
|
|
@@ -664,6 +664,10 @@ export type StreamRunAgentRequestBody = {
|
|
|
664
664
|
*/
|
|
665
665
|
teamOfAgents?: Array<StreamRunAgentTeamOfAgents> | undefined;
|
|
666
666
|
settings: StreamRunAgentSettings;
|
|
667
|
+
/**
|
|
668
|
+
* Optional metadata for the agent run as key-value pairs that will be included in traces
|
|
669
|
+
*/
|
|
670
|
+
metadata?: { [k: string]: any } | undefined;
|
|
667
671
|
/**
|
|
668
672
|
* Stream timeout in seconds (1-3600). Default: 1800 (30 minutes)
|
|
669
673
|
*/
|
|
@@ -1258,14 +1262,14 @@ export const StreamRunAgentParts2$inboundSchema: z.ZodType<
|
|
|
1258
1262
|
unknown
|
|
1259
1263
|
> = z.object({
|
|
1260
1264
|
kind: StreamRunAgentPartsAgentsKind$inboundSchema,
|
|
1261
|
-
data: z.
|
|
1265
|
+
data: z.record(z.any()),
|
|
1262
1266
|
metadata: z.record(z.any()).optional(),
|
|
1263
1267
|
});
|
|
1264
1268
|
|
|
1265
1269
|
/** @internal */
|
|
1266
1270
|
export type StreamRunAgentParts2$Outbound = {
|
|
1267
1271
|
kind: string;
|
|
1268
|
-
data
|
|
1272
|
+
data: { [k: string]: any };
|
|
1269
1273
|
metadata?: { [k: string]: any } | undefined;
|
|
1270
1274
|
};
|
|
1271
1275
|
|
|
@@ -1276,7 +1280,7 @@ export const StreamRunAgentParts2$outboundSchema: z.ZodType<
|
|
|
1276
1280
|
StreamRunAgentParts2
|
|
1277
1281
|
> = z.object({
|
|
1278
1282
|
kind: StreamRunAgentPartsAgentsKind$outboundSchema,
|
|
1279
|
-
data: z.
|
|
1283
|
+
data: z.record(z.any()),
|
|
1280
1284
|
metadata: z.record(z.any()).optional(),
|
|
1281
1285
|
});
|
|
1282
1286
|
|
|
@@ -1397,18 +1401,18 @@ export const StreamRunAgentParts$inboundSchema: z.ZodType<
|
|
|
1397
1401
|
> = z.union([
|
|
1398
1402
|
z.lazy(() => StreamRunAgentParts4$inboundSchema),
|
|
1399
1403
|
z.lazy(() => StreamRunAgentParts1$inboundSchema),
|
|
1404
|
+
z.lazy(() => StreamRunAgentParts2$inboundSchema),
|
|
1400
1405
|
z.lazy(() => StreamRunAgentParts3$inboundSchema),
|
|
1401
1406
|
z.lazy(() => Parts5$inboundSchema),
|
|
1402
|
-
z.lazy(() => StreamRunAgentParts2$inboundSchema),
|
|
1403
1407
|
]);
|
|
1404
1408
|
|
|
1405
1409
|
/** @internal */
|
|
1406
1410
|
export type StreamRunAgentParts$Outbound =
|
|
1407
1411
|
| StreamRunAgentParts4$Outbound
|
|
1408
1412
|
| StreamRunAgentParts1$Outbound
|
|
1413
|
+
| StreamRunAgentParts2$Outbound
|
|
1409
1414
|
| StreamRunAgentParts3$Outbound
|
|
1410
|
-
| Parts5$Outbound
|
|
1411
|
-
| StreamRunAgentParts2$Outbound;
|
|
1415
|
+
| Parts5$Outbound;
|
|
1412
1416
|
|
|
1413
1417
|
/** @internal */
|
|
1414
1418
|
export const StreamRunAgentParts$outboundSchema: z.ZodType<
|
|
@@ -1418,9 +1422,9 @@ export const StreamRunAgentParts$outboundSchema: z.ZodType<
|
|
|
1418
1422
|
> = z.union([
|
|
1419
1423
|
z.lazy(() => StreamRunAgentParts4$outboundSchema),
|
|
1420
1424
|
z.lazy(() => StreamRunAgentParts1$outboundSchema),
|
|
1425
|
+
z.lazy(() => StreamRunAgentParts2$outboundSchema),
|
|
1421
1426
|
z.lazy(() => StreamRunAgentParts3$outboundSchema),
|
|
1422
1427
|
z.lazy(() => Parts5$outboundSchema),
|
|
1423
|
-
z.lazy(() => StreamRunAgentParts2$outboundSchema),
|
|
1424
1428
|
]);
|
|
1425
1429
|
|
|
1426
1430
|
/**
|
|
@@ -1469,9 +1473,9 @@ export const StreamRunAgentMessage$inboundSchema: z.ZodType<
|
|
|
1469
1473
|
z.union([
|
|
1470
1474
|
z.lazy(() => StreamRunAgentParts4$inboundSchema),
|
|
1471
1475
|
z.lazy(() => StreamRunAgentParts1$inboundSchema),
|
|
1476
|
+
z.lazy(() => StreamRunAgentParts2$inboundSchema),
|
|
1472
1477
|
z.lazy(() => StreamRunAgentParts3$inboundSchema),
|
|
1473
1478
|
z.lazy(() => Parts5$inboundSchema),
|
|
1474
|
-
z.lazy(() => StreamRunAgentParts2$inboundSchema),
|
|
1475
1479
|
]),
|
|
1476
1480
|
),
|
|
1477
1481
|
metadata: z.record(z.any()).optional(),
|
|
@@ -1484,9 +1488,9 @@ export type StreamRunAgentMessage$Outbound = {
|
|
|
1484
1488
|
parts: Array<
|
|
1485
1489
|
| StreamRunAgentParts4$Outbound
|
|
1486
1490
|
| StreamRunAgentParts1$Outbound
|
|
1491
|
+
| StreamRunAgentParts2$Outbound
|
|
1487
1492
|
| StreamRunAgentParts3$Outbound
|
|
1488
1493
|
| Parts5$Outbound
|
|
1489
|
-
| StreamRunAgentParts2$Outbound
|
|
1490
1494
|
>;
|
|
1491
1495
|
metadata?: { [k: string]: any } | undefined;
|
|
1492
1496
|
};
|
|
@@ -1506,9 +1510,9 @@ export const StreamRunAgentMessage$outboundSchema: z.ZodType<
|
|
|
1506
1510
|
z.union([
|
|
1507
1511
|
z.lazy(() => StreamRunAgentParts4$outboundSchema),
|
|
1508
1512
|
z.lazy(() => StreamRunAgentParts1$outboundSchema),
|
|
1513
|
+
z.lazy(() => StreamRunAgentParts2$outboundSchema),
|
|
1509
1514
|
z.lazy(() => StreamRunAgentParts3$outboundSchema),
|
|
1510
1515
|
z.lazy(() => Parts5$outboundSchema),
|
|
1511
|
-
z.lazy(() => StreamRunAgentParts2$outboundSchema),
|
|
1512
1516
|
]),
|
|
1513
1517
|
),
|
|
1514
1518
|
metadata: z.record(z.any()).optional(),
|
|
@@ -2584,8 +2588,8 @@ export function toolsHttpFromJSON(
|
|
|
2584
2588
|
/** @internal */
|
|
2585
2589
|
export const Tools12$inboundSchema: z.ZodType<Tools12, z.ZodTypeDef, unknown> =
|
|
2586
2590
|
z.object({
|
|
2587
|
-
_id: z.string().default("
|
|
2588
|
-
path: z.string(),
|
|
2591
|
+
_id: z.string().default("01K5X16BV6H39EVD4E4K07VQ12"),
|
|
2592
|
+
path: z.string().optional(),
|
|
2589
2593
|
key: z.string(),
|
|
2590
2594
|
display_name: z.string(),
|
|
2591
2595
|
description: z.string(),
|
|
@@ -2607,7 +2611,7 @@ export const Tools12$inboundSchema: z.ZodType<Tools12, z.ZodTypeDef, unknown> =
|
|
|
2607
2611
|
/** @internal */
|
|
2608
2612
|
export type Tools12$Outbound = {
|
|
2609
2613
|
_id: string;
|
|
2610
|
-
path
|
|
2614
|
+
path?: string | undefined;
|
|
2611
2615
|
key: string;
|
|
2612
2616
|
display_name: string;
|
|
2613
2617
|
description: string;
|
|
@@ -2624,8 +2628,8 @@ export const Tools12$outboundSchema: z.ZodType<
|
|
|
2624
2628
|
z.ZodTypeDef,
|
|
2625
2629
|
Tools12
|
|
2626
2630
|
> = z.object({
|
|
2627
|
-
id: z.string().default("
|
|
2628
|
-
path: z.string(),
|
|
2631
|
+
id: z.string().default("01K5X16BV6H39EVD4E4K07VQ12"),
|
|
2632
|
+
path: z.string().optional(),
|
|
2629
2633
|
key: z.string(),
|
|
2630
2634
|
displayName: z.string(),
|
|
2631
2635
|
description: z.string(),
|
|
@@ -3878,6 +3882,7 @@ export const StreamRunAgentRequestBody$inboundSchema: z.ZodType<
|
|
|
3878
3882
|
z.lazy(() => StreamRunAgentTeamOfAgents$inboundSchema),
|
|
3879
3883
|
).optional(),
|
|
3880
3884
|
settings: z.lazy(() => StreamRunAgentSettings$inboundSchema),
|
|
3885
|
+
metadata: z.record(z.any()).optional(),
|
|
3881
3886
|
stream_timeout_seconds: z.number().optional(),
|
|
3882
3887
|
}).transform((v) => {
|
|
3883
3888
|
return remap$(v, {
|
|
@@ -3910,6 +3915,7 @@ export type StreamRunAgentRequestBody$Outbound = {
|
|
|
3910
3915
|
knowledge_bases?: Array<StreamRunAgentKnowledgeBases$Outbound> | undefined;
|
|
3911
3916
|
team_of_agents?: Array<StreamRunAgentTeamOfAgents$Outbound> | undefined;
|
|
3912
3917
|
settings: StreamRunAgentSettings$Outbound;
|
|
3918
|
+
metadata?: { [k: string]: any } | undefined;
|
|
3913
3919
|
stream_timeout_seconds?: number | undefined;
|
|
3914
3920
|
};
|
|
3915
3921
|
|
|
@@ -3940,6 +3946,7 @@ export const StreamRunAgentRequestBody$outboundSchema: z.ZodType<
|
|
|
3940
3946
|
teamOfAgents: z.array(z.lazy(() => StreamRunAgentTeamOfAgents$outboundSchema))
|
|
3941
3947
|
.optional(),
|
|
3942
3948
|
settings: z.lazy(() => StreamRunAgentSettings$outboundSchema),
|
|
3949
|
+
metadata: z.record(z.any()).optional(),
|
|
3943
3950
|
streamTimeoutSeconds: z.number().optional(),
|
|
3944
3951
|
}).transform((v) => {
|
|
3945
3952
|
return remap$(v, {
|
|
@@ -538,7 +538,7 @@ export const UpdateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
538
538
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
539
539
|
.optional(),
|
|
540
540
|
updated: z.string().datetime({ offset: true }).default(
|
|
541
|
-
"2025-09-
|
|
541
|
+
"2025-09-24T04:54:52.401Z",
|
|
542
542
|
).transform(v => new Date(v)),
|
|
543
543
|
}).transform((v) => {
|
|
544
544
|
return remap$(v, {
|
|
@@ -573,7 +573,7 @@ export const UpdateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
573
573
|
isActive: z.boolean(),
|
|
574
574
|
consumption: z.lazy(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
575
575
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
576
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
576
|
+
updated: z.date().default(() => new Date("2025-09-24T04:54:52.401Z"))
|
|
577
577
|
.transform(v => v.toISOString()),
|
|
578
578
|
}).transform((v) => {
|
|
579
579
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
245
245
|
.optional(),
|
|
246
246
|
updated: z.string().datetime({ offset: true }).default(
|
|
247
|
-
"2025-09-
|
|
247
|
+
"2025-09-24T04:54:52.401Z",
|
|
248
248
|
).transform(v => new Date(v)),
|
|
249
249
|
}).transform((v) => {
|
|
250
250
|
return remap$(v, {
|
|
@@ -282,7 +282,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
282
282
|
tags: z.array(z.string()).optional(),
|
|
283
283
|
metadata: z.record(z.any()).optional(),
|
|
284
284
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
285
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
285
|
+
updated: z.date().default(() => new Date("2025-09-24T04:54:52.401Z"))
|
|
286
286
|
.transform(v => v.toISOString()),
|
|
287
287
|
}).transform((v) => {
|
|
288
288
|
return remap$(v, {
|
|
@@ -6018,7 +6018,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
6018
6018
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
6019
6019
|
.optional(),
|
|
6020
6020
|
updated: z.string().datetime({ offset: true }).default(
|
|
6021
|
-
"2025-09-
|
|
6021
|
+
"2025-09-24T04:54:52.401Z",
|
|
6022
6022
|
).transform(v => new Date(v)),
|
|
6023
6023
|
}).transform((v) => {
|
|
6024
6024
|
return remap$(v, {
|
|
@@ -6080,7 +6080,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
6080
6080
|
createdById: z.string().optional(),
|
|
6081
6081
|
updatedById: z.string().optional(),
|
|
6082
6082
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
6083
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
6083
|
+
updated: z.date().default(() => new Date("2025-09-24T04:54:52.401Z"))
|
|
6084
6084
|
.transform(v => v.toISOString()),
|
|
6085
6085
|
}).transform((v) => {
|
|
6086
6086
|
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-09-
|
|
305
|
+
"2025-09-24T04:54:52.401Z",
|
|
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-09-
|
|
350
|
+
updated: z.date().default(() => new Date("2025-09-24T04:54:52.401Z"))
|
|
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("01K5X16BZQNBG0DWTHWFFH63AW"),
|
|
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("01K5X16BZQNBG0DWTHWFFH63AW"),
|
|
292
292
|
displayName: z.string(),
|
|
293
293
|
description: z.string().optional(),
|
|
294
294
|
status: UpdateDatasourceStatus$outboundSchema,
|