@orq-ai/node 4.0.4 → 4.0.5
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 +213 -213
- package/bin/mcp-server.js.map +36 -36
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/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 +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +12 -12
- 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 +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 +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- 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 +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/README.md +38 -47
- package/packages/orq-rc/docs/sdks/agents/README.md +230 -529
- package/packages/orq-rc/docs/sdks/responses/README.md +60 -65
- 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/funcs/agentsCreate.ts +16 -14
- package/packages/orq-rc/src/funcs/agentsDelete.ts +10 -6
- package/packages/orq-rc/src/funcs/agentsInvoke.ts +16 -6
- package/packages/orq-rc/src/funcs/agentsList.ts +18 -6
- package/packages/orq-rc/src/funcs/agentsResponsesCreate.ts +23 -12
- package/packages/orq-rc/src/funcs/agentsRetrieve.ts +21 -16
- package/packages/orq-rc/src/funcs/agentsRun.ts +4 -2
- package/packages/orq-rc/src/funcs/agentsStream.ts +16 -6
- package/packages/orq-rc/src/funcs/agentsStreamRun.ts +4 -2
- package/packages/orq-rc/src/funcs/agentsUpdate.ts +14 -6
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -9
- package/packages/orq-rc/src/mcp-server/tools/agentsCreate.ts +3 -3
- package/packages/orq-rc/src/mcp-server/tools/agentsDelete.ts +5 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsInvoke.ts +7 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsList.ts +9 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsResponsesCreate.ts +8 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieve.ts +5 -5
- package/packages/orq-rc/src/mcp-server/tools/agentsRun.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/agentsStream.ts +7 -4
- package/packages/orq-rc/src/mcp-server/tools/agentsStreamRun.ts +2 -2
- package/packages/orq-rc/src/mcp-server/tools/agentsUpdate.ts +8 -4
- package/packages/orq-rc/src/models/errors/createagentrequest.ts +67 -0
- package/packages/orq-rc/src/models/errors/deleteagent.ts +2 -2
- package/packages/orq-rc/src/models/errors/index.ts +2 -3
- package/packages/orq-rc/src/models/errors/{listagenttasks.ts → retrieveagentrequest.ts} +15 -15
- package/packages/orq-rc/src/models/errors/updateagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/{createagent.ts → createagentrequest.ts} +1643 -1485
- package/packages/orq-rc/src/models/operations/{createagentresponse.ts → createagentresponserequest.ts} +141 -127
- 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/createprompt.ts +4 -4
- package/packages/orq-rc/src/models/operations/createtool.ts +12 -12
- 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 +12 -12
- 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/index.ts +3 -7
- package/packages/orq-rc/src/models/operations/invokeagent.ts +153 -190
- package/packages/orq-rc/src/models/operations/listagents.ts +9 -21
- 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/retrieveagentrequest.ts +3741 -0
- 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 +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +53 -57
- package/packages/orq-rc/src/models/operations/streamagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +68 -82
- package/packages/orq-rc/src/models/operations/updateagent.ts +17 -17
- 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/updateprompt.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- package/packages/orq-rc/src/sdk/agents.ts +51 -99
- package/packages/orq-rc/src/sdk/responses.ts +7 -5
- 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/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 +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- 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 +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 +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.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 +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
- package/packages/orq-rc/src/funcs/agentsListActions.ts +0 -169
- package/packages/orq-rc/src/funcs/agentsListTasks.ts +0 -183
- package/packages/orq-rc/src/funcs/agentsRetrieveAction.ts +0 -173
- package/packages/orq-rc/src/funcs/agentsRetrieveTask.ts +0 -179
- package/packages/orq-rc/src/mcp-server/tools/agentsListActions.ts +0 -35
- package/packages/orq-rc/src/mcp-server/tools/agentsListTasks.ts +0 -37
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveAction.ts +0 -35
- package/packages/orq-rc/src/mcp-server/tools/agentsRetrieveTask.ts +0 -37
- package/packages/orq-rc/src/models/errors/createagent.ts +0 -67
- package/packages/orq-rc/src/models/errors/getagent.ts +0 -67
- package/packages/orq-rc/src/models/operations/getagent.ts +0 -3480
- package/packages/orq-rc/src/models/operations/getagenttask.ts +0 -2389
- package/packages/orq-rc/src/models/operations/listactions.ts +0 -427
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +0 -2614
- package/packages/orq-rc/src/models/operations/retrieveaction.ts +0 -354
|
@@ -248,7 +248,7 @@ export type ListAgentsResponseFormatJsonSchema = {
|
|
|
248
248
|
/**
|
|
249
249
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
|
|
250
250
|
*/
|
|
251
|
-
strict?: boolean |
|
|
251
|
+
strict?: boolean | undefined;
|
|
252
252
|
};
|
|
253
253
|
|
|
254
254
|
/**
|
|
@@ -588,7 +588,7 @@ export type ListAgentsResponseFormatAgentsResponseJsonSchema = {
|
|
|
588
588
|
/**
|
|
589
589
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the schema field. Only a subset of JSON Schema is supported when strict is true.
|
|
590
590
|
*/
|
|
591
|
-
strict?: boolean |
|
|
591
|
+
strict?: boolean | undefined;
|
|
592
592
|
};
|
|
593
593
|
|
|
594
594
|
/**
|
|
@@ -930,8 +930,6 @@ export type ListAgentsData = {
|
|
|
930
930
|
id: string;
|
|
931
931
|
key: string;
|
|
932
932
|
displayName: string;
|
|
933
|
-
workspaceId: string;
|
|
934
|
-
projectId: string;
|
|
935
933
|
createdById?: string | null | undefined;
|
|
936
934
|
updatedById?: string | null | undefined;
|
|
937
935
|
created?: string | undefined;
|
|
@@ -977,7 +975,7 @@ export type ListAgentsData = {
|
|
|
977
975
|
};
|
|
978
976
|
|
|
979
977
|
/**
|
|
980
|
-
*
|
|
978
|
+
* Successfully retrieved the list of agents. Returns a paginated response containing agent manifests with complete configurations, including primary and fallback models, tools, knowledge bases, and execution settings.
|
|
981
979
|
*/
|
|
982
980
|
export type ListAgentsResponseBody = {
|
|
983
981
|
object: ListAgentsObject;
|
|
@@ -1467,14 +1465,14 @@ export const ListAgentsResponseFormatJsonSchema$inboundSchema: z.ZodType<
|
|
|
1467
1465
|
description: z.string().optional(),
|
|
1468
1466
|
name: z.string(),
|
|
1469
1467
|
schema: z.any().optional(),
|
|
1470
|
-
strict: z.
|
|
1468
|
+
strict: z.boolean().default(false),
|
|
1471
1469
|
});
|
|
1472
1470
|
/** @internal */
|
|
1473
1471
|
export type ListAgentsResponseFormatJsonSchema$Outbound = {
|
|
1474
1472
|
description?: string | undefined;
|
|
1475
1473
|
name: string;
|
|
1476
1474
|
schema?: any | undefined;
|
|
1477
|
-
strict
|
|
1475
|
+
strict: boolean;
|
|
1478
1476
|
};
|
|
1479
1477
|
|
|
1480
1478
|
/** @internal */
|
|
@@ -1486,7 +1484,7 @@ export const ListAgentsResponseFormatJsonSchema$outboundSchema: z.ZodType<
|
|
|
1486
1484
|
description: z.string().optional(),
|
|
1487
1485
|
name: z.string(),
|
|
1488
1486
|
schema: z.any().optional(),
|
|
1489
|
-
strict: z.
|
|
1487
|
+
strict: z.boolean().default(false),
|
|
1490
1488
|
});
|
|
1491
1489
|
|
|
1492
1490
|
export function listAgentsResponseFormatJsonSchemaToJSON(
|
|
@@ -2308,14 +2306,14 @@ export const ListAgentsResponseFormatAgentsResponseJsonSchema$inboundSchema:
|
|
|
2308
2306
|
description: z.string().optional(),
|
|
2309
2307
|
name: z.string(),
|
|
2310
2308
|
schema: z.any().optional(),
|
|
2311
|
-
strict: z.
|
|
2309
|
+
strict: z.boolean().default(false),
|
|
2312
2310
|
});
|
|
2313
2311
|
/** @internal */
|
|
2314
2312
|
export type ListAgentsResponseFormatAgentsResponseJsonSchema$Outbound = {
|
|
2315
2313
|
description?: string | undefined;
|
|
2316
2314
|
name: string;
|
|
2317
2315
|
schema?: any | undefined;
|
|
2318
|
-
strict
|
|
2316
|
+
strict: boolean;
|
|
2319
2317
|
};
|
|
2320
2318
|
|
|
2321
2319
|
/** @internal */
|
|
@@ -2328,7 +2326,7 @@ export const ListAgentsResponseFormatAgentsResponseJsonSchema$outboundSchema:
|
|
|
2328
2326
|
description: z.string().optional(),
|
|
2329
2327
|
name: z.string(),
|
|
2330
2328
|
schema: z.any().optional(),
|
|
2331
|
-
strict: z.
|
|
2329
|
+
strict: z.boolean().default(false),
|
|
2332
2330
|
});
|
|
2333
2331
|
|
|
2334
2332
|
export function listAgentsResponseFormatAgentsResponseJsonSchemaToJSON(
|
|
@@ -3450,8 +3448,6 @@ export const ListAgentsData$inboundSchema: z.ZodType<
|
|
|
3450
3448
|
_id: z.string(),
|
|
3451
3449
|
key: z.string(),
|
|
3452
3450
|
display_name: z.string(),
|
|
3453
|
-
workspace_id: z.string(),
|
|
3454
|
-
project_id: z.string(),
|
|
3455
3451
|
created_by_id: z.nullable(z.string()).optional(),
|
|
3456
3452
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3457
3453
|
created: z.string().optional(),
|
|
@@ -3475,8 +3471,6 @@ export const ListAgentsData$inboundSchema: z.ZodType<
|
|
|
3475
3471
|
return remap$(v, {
|
|
3476
3472
|
"_id": "id",
|
|
3477
3473
|
"display_name": "displayName",
|
|
3478
|
-
"workspace_id": "workspaceId",
|
|
3479
|
-
"project_id": "projectId",
|
|
3480
3474
|
"created_by_id": "createdById",
|
|
3481
3475
|
"updated_by_id": "updatedById",
|
|
3482
3476
|
"system_prompt": "systemPrompt",
|
|
@@ -3491,8 +3485,6 @@ export type ListAgentsData$Outbound = {
|
|
|
3491
3485
|
_id: string;
|
|
3492
3486
|
key: string;
|
|
3493
3487
|
display_name: string;
|
|
3494
|
-
workspace_id: string;
|
|
3495
|
-
project_id: string;
|
|
3496
3488
|
created_by_id?: string | null | undefined;
|
|
3497
3489
|
updated_by_id?: string | null | undefined;
|
|
3498
3490
|
created?: string | undefined;
|
|
@@ -3522,8 +3514,6 @@ export const ListAgentsData$outboundSchema: z.ZodType<
|
|
|
3522
3514
|
id: z.string(),
|
|
3523
3515
|
key: z.string(),
|
|
3524
3516
|
displayName: z.string(),
|
|
3525
|
-
workspaceId: z.string(),
|
|
3526
|
-
projectId: z.string(),
|
|
3527
3517
|
createdById: z.nullable(z.string()).optional(),
|
|
3528
3518
|
updatedById: z.nullable(z.string()).optional(),
|
|
3529
3519
|
created: z.string().optional(),
|
|
@@ -3547,8 +3537,6 @@ export const ListAgentsData$outboundSchema: z.ZodType<
|
|
|
3547
3537
|
return remap$(v, {
|
|
3548
3538
|
id: "_id",
|
|
3549
3539
|
displayName: "display_name",
|
|
3550
|
-
workspaceId: "workspace_id",
|
|
3551
|
-
projectId: "project_id",
|
|
3552
3540
|
createdById: "created_by_id",
|
|
3553
3541
|
updatedById: "updated_by_id",
|
|
3554
3542
|
systemPrompt: "system_prompt",
|
|
@@ -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-24T07:10:58.421Z",
|
|
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-24T07:10:58.421Z"))
|
|
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-24T07:10:58.070Z",
|
|
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-24T07:10:58.070Z"))
|
|
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-24T07:11:09.588Z",
|
|
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-24T07:11:09.588Z"))
|
|
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-24T07:11:09.588Z",
|
|
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-24T07:11:09.588Z"))
|
|
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-24T07:11:09.587Z",
|
|
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-24T07:11:09.587Z"))
|
|
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-24T07:10:58.070Z",
|
|
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-24T07:10:58.070Z"))
|
|
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-24T07:10:58.070Z",
|
|
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-24T07:10:58.070Z"))
|
|
254
254
|
.transform(v => v.toISOString()),
|
|
255
255
|
}).transform((v) => {
|
|
256
256
|
return remap$(v, {
|
|
@@ -224,7 +224,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
224
224
|
z.ZodTypeDef,
|
|
225
225
|
unknown
|
|
226
226
|
> = z.object({
|
|
227
|
-
_id: z.string().default("
|
|
227
|
+
_id: z.string().default("01KATB7F61B7H5WEQEM6CBVHV7"),
|
|
228
228
|
display_name: z.string(),
|
|
229
229
|
description: z.string().optional(),
|
|
230
230
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -267,7 +267,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
|
|
|
267
267
|
z.ZodTypeDef,
|
|
268
268
|
ListDatasourcesData
|
|
269
269
|
> = z.object({
|
|
270
|
-
id: z.string().default("
|
|
270
|
+
id: z.string().default("01KATB7F61B7H5WEQEM6CBVHV7"),
|
|
271
271
|
displayName: z.string(),
|
|
272
272
|
description: z.string().optional(),
|
|
273
273
|
status: ListDatasourcesStatus$outboundSchema,
|