@orq-ai/node 3.13.9 → 3.13.10
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 +201 -201
- package/bin/mcp-server.js.map +39 -39
- 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/lib/config.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/mcp-server.js.map +1 -1
- package/mcp-server/server.js +1 -1
- package/mcp-server/server.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +14 -14
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.js +2 -2
- 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/retrievetool.js +10 -10
- 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 +2 -2
- 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/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 +2 -2
- 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 +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +10 -10
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +13 -13
- 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 +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
- package/src/lib/config.ts +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 +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +14 -14
- package/src/models/operations/duplicatetool.ts +10 -10
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getagent.ts +2 -2
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +2 -2
- 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/retrievetool.ts +10 -10
- 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 +2 -2
- 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
|
@@ -1562,8 +1562,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1562
1562
|
> = z.object({
|
|
1563
1563
|
_id: z.string(),
|
|
1564
1564
|
description: z.string(),
|
|
1565
|
-
created: z.string().default("2025-10-
|
|
1566
|
-
updated: z.string().default("2025-10-
|
|
1565
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
1566
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
1567
1567
|
guardrail_config: z.union([
|
|
1568
1568
|
z.lazy(() =>
|
|
1569
1569
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1606,8 +1606,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1606
1606
|
> = z.object({
|
|
1607
1607
|
id: z.string(),
|
|
1608
1608
|
description: z.string(),
|
|
1609
|
-
created: z.string().default("2025-10-
|
|
1610
|
-
updated: z.string().default("2025-10-
|
|
1609
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
1610
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
1611
1611
|
guardrailConfig: z.union([
|
|
1612
1612
|
z.lazy(() =>
|
|
1613
1613
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -2010,8 +2010,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
2010
2010
|
> = z.object({
|
|
2011
2011
|
_id: z.string(),
|
|
2012
2012
|
description: z.string(),
|
|
2013
|
-
created: z.string().default("2025-10-
|
|
2014
|
-
updated: z.string().default("2025-10-
|
|
2013
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
2014
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
2015
2015
|
guardrail_config: z.union([
|
|
2016
2016
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
2017
2017
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -2053,8 +2053,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
2053
2053
|
> = z.object({
|
|
2054
2054
|
id: z.string(),
|
|
2055
2055
|
description: z.string(),
|
|
2056
|
-
created: z.string().default("2025-10-
|
|
2057
|
-
updated: z.string().default("2025-10-
|
|
2056
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
2057
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
2058
2058
|
guardrailConfig: z.union([
|
|
2059
2059
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
2060
2060
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -5524,8 +5524,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
5524
5524
|
> = z.object({
|
|
5525
5525
|
_id: z.string(),
|
|
5526
5526
|
description: z.string(),
|
|
5527
|
-
created: z.string().default("2025-10-
|
|
5528
|
-
updated: z.string().default("2025-10-
|
|
5527
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
5528
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
5529
5529
|
guardrail_config: z.union([
|
|
5530
5530
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
5531
5531
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -5635,8 +5635,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
5635
5635
|
> = z.object({
|
|
5636
5636
|
id: z.string(),
|
|
5637
5637
|
description: z.string(),
|
|
5638
|
-
created: z.string().default("2025-10-
|
|
5639
|
-
updated: z.string().default("2025-10-
|
|
5638
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
5639
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
5640
5640
|
guardrailConfig: z.union([
|
|
5641
5641
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
5642
5642
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -6018,8 +6018,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
6018
6018
|
> = z.object({
|
|
6019
6019
|
_id: z.string(),
|
|
6020
6020
|
description: z.string(),
|
|
6021
|
-
created: z.string().default("2025-10-
|
|
6022
|
-
updated: z.string().default("2025-10-
|
|
6021
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6022
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6023
6023
|
guardrail_config: z.union([
|
|
6024
6024
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
6025
6025
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -6057,8 +6057,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
6057
6057
|
> = z.object({
|
|
6058
6058
|
id: z.string(),
|
|
6059
6059
|
description: z.string(),
|
|
6060
|
-
created: z.string().default("2025-10-
|
|
6061
|
-
updated: z.string().default("2025-10-
|
|
6060
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6061
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6062
6062
|
guardrailConfig: z.union([
|
|
6063
6063
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
6064
6064
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -6404,8 +6404,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
6404
6404
|
> = z.object({
|
|
6405
6405
|
_id: z.string(),
|
|
6406
6406
|
description: z.string(),
|
|
6407
|
-
created: z.string().default("2025-10-
|
|
6408
|
-
updated: z.string().default("2025-10-
|
|
6407
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6408
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6409
6409
|
guardrail_config: z.union([
|
|
6410
6410
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
6411
6411
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -6449,8 +6449,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
6449
6449
|
> = z.object({
|
|
6450
6450
|
id: z.string(),
|
|
6451
6451
|
description: z.string(),
|
|
6452
|
-
created: z.string().default("2025-10-
|
|
6453
|
-
updated: z.string().default("2025-10-
|
|
6452
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6453
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6454
6454
|
guardrailConfig: z.union([
|
|
6455
6455
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
6456
6456
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -6815,8 +6815,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
6815
6815
|
> = z.object({
|
|
6816
6816
|
_id: z.string(),
|
|
6817
6817
|
description: z.string(),
|
|
6818
|
-
created: z.string().default("2025-10-
|
|
6819
|
-
updated: z.string().default("2025-10-
|
|
6818
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6819
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6820
6820
|
guardrail_config: z.union([
|
|
6821
6821
|
z.lazy(() =>
|
|
6822
6822
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -6858,8 +6858,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
6858
6858
|
> = z.object({
|
|
6859
6859
|
id: z.string(),
|
|
6860
6860
|
description: z.string(),
|
|
6861
|
-
created: z.string().default("2025-10-
|
|
6862
|
-
updated: z.string().default("2025-10-
|
|
6861
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6862
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
6863
6863
|
guardrailConfig: z.union([
|
|
6864
6864
|
z.lazy(() =>
|
|
6865
6865
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -7243,8 +7243,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
7243
7243
|
z.object({
|
|
7244
7244
|
_id: z.string(),
|
|
7245
7245
|
description: z.string(),
|
|
7246
|
-
created: z.string().default("2025-10-
|
|
7247
|
-
updated: z.string().default("2025-10-
|
|
7246
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
7247
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
7248
7248
|
guardrail_config: z.union([
|
|
7249
7249
|
z.lazy(() =>
|
|
7250
7250
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7288,8 +7288,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
7288
7288
|
> = z.object({
|
|
7289
7289
|
id: z.string(),
|
|
7290
7290
|
description: z.string(),
|
|
7291
|
-
created: z.string().default("2025-10-
|
|
7292
|
-
updated: z.string().default("2025-10-
|
|
7291
|
+
created: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
7292
|
+
updated: z.string().default("2025-10-15T16:01:54.754Z"),
|
|
7293
7293
|
guardrailConfig: z.union([
|
|
7294
7294
|
z.lazy(() =>
|
|
7295
7295
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -1076,7 +1076,7 @@ export const ListAgentsKnowledgeBases$inboundSchema: z.ZodType<
|
|
|
1076
1076
|
z.ZodTypeDef,
|
|
1077
1077
|
unknown
|
|
1078
1078
|
> = z.object({
|
|
1079
|
-
id: z.string().default("
|
|
1079
|
+
id: z.string().default("01K7M9PSY2537FRH5QT7JA0RXT"),
|
|
1080
1080
|
knowledge_id: z.string(),
|
|
1081
1081
|
configuration: z.union([
|
|
1082
1082
|
z.lazy(() =>
|
|
@@ -1107,7 +1107,7 @@ export const ListAgentsKnowledgeBases$outboundSchema: z.ZodType<
|
|
|
1107
1107
|
z.ZodTypeDef,
|
|
1108
1108
|
ListAgentsKnowledgeBases
|
|
1109
1109
|
> = z.object({
|
|
1110
|
-
id: z.string().default("
|
|
1110
|
+
id: z.string().default("01K7M9PSY2537FRH5QT7JA0RXT"),
|
|
1111
1111
|
knowledgeId: z.string(),
|
|
1112
1112
|
configuration: z.union([
|
|
1113
1113
|
z.lazy(() =>
|
|
@@ -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-10-
|
|
467
|
+
"2025-10-15T16:01:51.772Z",
|
|
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-10-
|
|
502
|
+
updated: z.date().default(() => new Date("2025-10-15T16:01:51.772Z"))
|
|
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-10-
|
|
355
|
+
"2025-10-15T16:01:51.772Z",
|
|
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-10-
|
|
392
|
+
updated: z.date().default(() => new Date("2025-10-15T16:01:51.772Z"))
|
|
393
393
|
.transform(v => v.toISOString()),
|
|
394
394
|
metrics: z.lazy(() => ListContactsMetrics$outboundSchema),
|
|
395
395
|
}).transform((v) => {
|
|
@@ -3338,7 +3338,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
|
|
|
3338
3338
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
3339
3339
|
reviewed_by_id: z.string(),
|
|
3340
3340
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3341
|
-
"2025-10-
|
|
3341
|
+
"2025-10-15T16:02:02.895Z",
|
|
3342
3342
|
).transform(v => new Date(v)),
|
|
3343
3343
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
3344
3344
|
values: z.array(z.string()),
|
|
@@ -3374,7 +3374,7 @@ export const ListDatasetDatapointsEvaluations3$outboundSchema: z.ZodType<
|
|
|
3374
3374
|
humanReviewId: z.string(),
|
|
3375
3375
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
3376
3376
|
reviewedById: z.string(),
|
|
3377
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3377
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T16:02:02.895Z"))
|
|
3378
3378
|
.transform(v => v.toISOString()),
|
|
3379
3379
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
3380
3380
|
values: z.array(z.string()),
|
|
@@ -3512,7 +3512,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
|
|
|
3512
3512
|
.default("orq"),
|
|
3513
3513
|
reviewed_by_id: z.string(),
|
|
3514
3514
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3515
|
-
"2025-10-
|
|
3515
|
+
"2025-10-15T16:02:02.895Z",
|
|
3516
3516
|
).transform(v => new Date(v)),
|
|
3517
3517
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
3518
3518
|
value: z.number(),
|
|
@@ -3550,7 +3550,7 @@ export const ListDatasetDatapointsEvaluations2$outboundSchema: z.ZodType<
|
|
|
3550
3550
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
|
|
3551
3551
|
.default("orq"),
|
|
3552
3552
|
reviewedById: z.string(),
|
|
3553
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3553
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T16:02:02.895Z"))
|
|
3554
3554
|
.transform(v => v.toISOString()),
|
|
3555
3555
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
3556
3556
|
value: z.number(),
|
|
@@ -3683,7 +3683,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
|
|
|
3683
3683
|
),
|
|
3684
3684
|
reviewed_by_id: z.string(),
|
|
3685
3685
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3686
|
-
"2025-10-
|
|
3686
|
+
"2025-10-15T16:02:02.894Z",
|
|
3687
3687
|
).transform(v => new Date(v)),
|
|
3688
3688
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
3689
3689
|
value: z.string(),
|
|
@@ -3722,7 +3722,7 @@ export const ListDatasetDatapointsEvaluations1$outboundSchema: z.ZodType<
|
|
|
3722
3722
|
"orq",
|
|
3723
3723
|
),
|
|
3724
3724
|
reviewedById: z.string(),
|
|
3725
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3725
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T16:02:02.894Z"))
|
|
3726
3726
|
.transform(v => v.toISOString()),
|
|
3727
3727
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
3728
3728
|
value: z.string(),
|
|
@@ -3865,7 +3865,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
3865
3865
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3866
3866
|
.optional(),
|
|
3867
3867
|
updated: z.string().datetime({ offset: true }).default(
|
|
3868
|
-
"2025-10-
|
|
3868
|
+
"2025-10-15T16:01:51.772Z",
|
|
3869
3869
|
).transform(v => new Date(v)),
|
|
3870
3870
|
}).transform((v) => {
|
|
3871
3871
|
return remap$(v, {
|
|
@@ -3946,7 +3946,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
3946
3946
|
createdById: z.string().optional(),
|
|
3947
3947
|
updatedById: z.string().optional(),
|
|
3948
3948
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3949
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
3949
|
+
updated: z.date().default(() => new Date("2025-10-15T16:01:51.772Z"))
|
|
3950
3950
|
.transform(v => v.toISOString()),
|
|
3951
3951
|
}).transform((v) => {
|
|
3952
3952
|
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-10-
|
|
256
|
+
"2025-10-15T16:01:51.772Z",
|
|
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
|
createdById: z.string().optional(),
|
|
294
294
|
updatedById: z.string().optional(),
|
|
295
295
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
296
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
296
|
+
updated: z.date().default(() => new Date("2025-10-15T16:01:51.772Z"))
|
|
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("01K7M9PT2D6KB4C185W8GCTH0X"),
|
|
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("01K7M9PT2D6KB4C185W8GCTH0X"),
|
|
333
333
|
displayName: z.string(),
|
|
334
334
|
description: z.string().optional(),
|
|
335
335
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -127,7 +127,7 @@ export const RetrieveContactResponseBody$inboundSchema: z.ZodType<
|
|
|
127
127
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
128
128
|
.optional(),
|
|
129
129
|
updated: z.string().datetime({ offset: true }).default(
|
|
130
|
-
"2025-10-
|
|
130
|
+
"2025-10-15T16:01:51.772Z",
|
|
131
131
|
).transform(v => new Date(v)),
|
|
132
132
|
}).transform((v) => {
|
|
133
133
|
return remap$(v, {
|
|
@@ -165,7 +165,7 @@ export const RetrieveContactResponseBody$outboundSchema: z.ZodType<
|
|
|
165
165
|
tags: z.array(z.string()).optional(),
|
|
166
166
|
metadata: z.record(z.any()).optional(),
|
|
167
167
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
168
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
168
|
+
updated: z.date().default(() => new Date("2025-10-15T16:01:51.772Z"))
|
|
169
169
|
.transform(v => v.toISOString()),
|
|
170
170
|
}).transform((v) => {
|
|
171
171
|
return remap$(v, {
|
|
@@ -3197,7 +3197,7 @@ export const RetrieveDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
3197
3197
|
.default("orq"),
|
|
3198
3198
|
reviewed_by_id: z.string(),
|
|
3199
3199
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3200
|
-
"2025-10-
|
|
3200
|
+
"2025-10-15T16:02:02.904Z",
|
|
3201
3201
|
).transform(v => new Date(v)),
|
|
3202
3202
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
3203
3203
|
values: z.array(z.string()),
|
|
@@ -3235,7 +3235,7 @@ export const RetrieveDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
3235
3235
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
3236
3236
|
.default("orq"),
|
|
3237
3237
|
reviewedById: z.string(),
|
|
3238
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3238
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T16:02:02.904Z"))
|
|
3239
3239
|
.transform(v => v.toISOString()),
|
|
3240
3240
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
3241
3241
|
values: z.array(z.string()),
|
|
@@ -3365,7 +3365,7 @@ export const RetrieveDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
3365
3365
|
),
|
|
3366
3366
|
reviewed_by_id: z.string(),
|
|
3367
3367
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3368
|
-
"2025-10-
|
|
3368
|
+
"2025-10-15T16:02:02.904Z",
|
|
3369
3369
|
).transform(v => new Date(v)),
|
|
3370
3370
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
3371
3371
|
value: z.number(),
|
|
@@ -3404,7 +3404,7 @@ export const RetrieveDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
3404
3404
|
"orq",
|
|
3405
3405
|
),
|
|
3406
3406
|
reviewedById: z.string(),
|
|
3407
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3407
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T16:02:02.904Z"))
|
|
3408
3408
|
.transform(v => v.toISOString()),
|
|
3409
3409
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
3410
3410
|
value: z.number(),
|
|
@@ -3528,7 +3528,7 @@ export const RetrieveDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
3528
3528
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
3529
3529
|
reviewed_by_id: z.string(),
|
|
3530
3530
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3531
|
-
"2025-10-
|
|
3531
|
+
"2025-10-15T16:02:02.903Z",
|
|
3532
3532
|
).transform(v => new Date(v)),
|
|
3533
3533
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
3534
3534
|
value: z.string(),
|
|
@@ -3564,7 +3564,7 @@ export const RetrieveDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
3564
3564
|
humanReviewId: z.string(),
|
|
3565
3565
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
3566
3566
|
reviewedById: z.string(),
|
|
3567
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3567
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T16:02:02.903Z"))
|
|
3568
3568
|
.transform(v => v.toISOString()),
|
|
3569
3569
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
3570
3570
|
value: z.string(),
|
|
@@ -3704,7 +3704,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
3704
3704
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3705
3705
|
.optional(),
|
|
3706
3706
|
updated: z.string().datetime({ offset: true }).default(
|
|
3707
|
-
"2025-10-
|
|
3707
|
+
"2025-10-15T16:01:51.772Z",
|
|
3708
3708
|
).transform(v => new Date(v)),
|
|
3709
3709
|
}).transform((v) => {
|
|
3710
3710
|
return remap$(v, {
|
|
@@ -3779,7 +3779,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
3779
3779
|
createdById: z.string().optional(),
|
|
3780
3780
|
updatedById: z.string().optional(),
|
|
3781
3781
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3782
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
3782
|
+
updated: z.date().default(() => new Date("2025-10-15T16:01:51.772Z"))
|
|
3783
3783
|
.transform(v => v.toISOString()),
|
|
3784
3784
|
}).transform((v) => {
|
|
3785
3785
|
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-10-
|
|
204
|
+
"2025-10-15T16:01:51.772Z",
|
|
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
|
createdById: z.string().optional(),
|
|
242
242
|
updatedById: z.string().optional(),
|
|
243
243
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
244
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
244
|
+
updated: z.date().default(() => new Date("2025-10-15T16:01:51.772Z"))
|
|
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("01K7M9PT2EFST1VB54ZM30ZDPG"),
|
|
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("01K7M9PT2EFST1VB54ZM30ZDPG"),
|
|
220
220
|
displayName: z.string(),
|
|
221
221
|
description: z.string().optional(),
|
|
222
222
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -780,7 +780,7 @@ export const RetrieveToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
780
780
|
z.ZodTypeDef,
|
|
781
781
|
unknown
|
|
782
782
|
> = z.object({
|
|
783
|
-
_id: z.string().default("
|
|
783
|
+
_id: z.string().default("01K7M9PT6ETKVJDF2BG6MQ35XY"),
|
|
784
784
|
path: z.string(),
|
|
785
785
|
key: z.string(),
|
|
786
786
|
display_name: z.string(),
|
|
@@ -836,7 +836,7 @@ export const RetrieveToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
836
836
|
z.ZodTypeDef,
|
|
837
837
|
RetrieveToolResponseBody5
|
|
838
838
|
> = z.object({
|
|
839
|
-
id: z.string().default("
|
|
839
|
+
id: z.string().default("01K7M9PT6ETKVJDF2BG6MQ35XY"),
|
|
840
840
|
path: z.string(),
|
|
841
841
|
key: z.string(),
|
|
842
842
|
displayName: z.string(),
|
|
@@ -1220,7 +1220,7 @@ export const RetrieveToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1220
1220
|
z.ZodTypeDef,
|
|
1221
1221
|
unknown
|
|
1222
1222
|
> = z.object({
|
|
1223
|
-
_id: z.string().default("
|
|
1223
|
+
_id: z.string().default("01K7M9PT6EK9JRD0436TNAFPMS"),
|
|
1224
1224
|
path: z.string(),
|
|
1225
1225
|
key: z.string(),
|
|
1226
1226
|
display_name: z.string(),
|
|
@@ -1274,7 +1274,7 @@ export const RetrieveToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1274
1274
|
z.ZodTypeDef,
|
|
1275
1275
|
RetrieveToolResponseBody4
|
|
1276
1276
|
> = z.object({
|
|
1277
|
-
id: z.string().default("
|
|
1277
|
+
id: z.string().default("01K7M9PT6EK9JRD0436TNAFPMS"),
|
|
1278
1278
|
path: z.string(),
|
|
1279
1279
|
key: z.string(),
|
|
1280
1280
|
displayName: z.string(),
|
|
@@ -1700,7 +1700,7 @@ export const RetrieveToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1700
1700
|
z.ZodTypeDef,
|
|
1701
1701
|
unknown
|
|
1702
1702
|
> = z.object({
|
|
1703
|
-
_id: z.string().default("
|
|
1703
|
+
_id: z.string().default("01K7M9PT6DSDB4ZCXQ3HKNPS1E"),
|
|
1704
1704
|
path: z.string(),
|
|
1705
1705
|
key: z.string(),
|
|
1706
1706
|
display_name: z.string(),
|
|
@@ -1754,7 +1754,7 @@ export const RetrieveToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1754
1754
|
z.ZodTypeDef,
|
|
1755
1755
|
RetrieveToolResponseBody3
|
|
1756
1756
|
> = z.object({
|
|
1757
|
-
id: z.string().default("
|
|
1757
|
+
id: z.string().default("01K7M9PT6DSDB4ZCXQ3HKNPS1E"),
|
|
1758
1758
|
path: z.string(),
|
|
1759
1759
|
key: z.string(),
|
|
1760
1760
|
displayName: z.string(),
|
|
@@ -1932,7 +1932,7 @@ export const RetrieveToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1932
1932
|
z.ZodTypeDef,
|
|
1933
1933
|
unknown
|
|
1934
1934
|
> = z.object({
|
|
1935
|
-
_id: z.string().default("
|
|
1935
|
+
_id: z.string().default("01K7M9PT6DP2FH6FVWJJ079PDC"),
|
|
1936
1936
|
path: z.string(),
|
|
1937
1937
|
key: z.string(),
|
|
1938
1938
|
display_name: z.string(),
|
|
@@ -1985,7 +1985,7 @@ export const RetrieveToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1985
1985
|
z.ZodTypeDef,
|
|
1986
1986
|
RetrieveToolResponseBody2
|
|
1987
1987
|
> = z.object({
|
|
1988
|
-
id: z.string().default("
|
|
1988
|
+
id: z.string().default("01K7M9PT6DP2FH6FVWJJ079PDC"),
|
|
1989
1989
|
path: z.string(),
|
|
1990
1990
|
key: z.string(),
|
|
1991
1991
|
displayName: z.string(),
|
|
@@ -2157,7 +2157,7 @@ export const RetrieveToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2157
2157
|
z.ZodTypeDef,
|
|
2158
2158
|
unknown
|
|
2159
2159
|
> = z.object({
|
|
2160
|
-
_id: z.string().default("
|
|
2160
|
+
_id: z.string().default("01K7M9PT6CA8D97Q58P797P7NA"),
|
|
2161
2161
|
path: z.string(),
|
|
2162
2162
|
key: z.string(),
|
|
2163
2163
|
display_name: z.string(),
|
|
@@ -2209,7 +2209,7 @@ export const RetrieveToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2209
2209
|
z.ZodTypeDef,
|
|
2210
2210
|
RetrieveToolResponseBody1
|
|
2211
2211
|
> = z.object({
|
|
2212
|
-
id: z.string().default("
|
|
2212
|
+
id: z.string().default("01K7M9PT6CA8D97Q58P797P7NA"),
|
|
2213
2213
|
path: z.string(),
|
|
2214
2214
|
key: z.string(),
|
|
2215
2215
|
displayName: z.string(),
|
|
@@ -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-10-
|
|
541
|
+
"2025-10-15T16:01:51.772Z",
|
|
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-10-
|
|
576
|
+
updated: z.date().default(() => new Date("2025-10-15T16:01:51.772Z"))
|
|
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-10-
|
|
247
|
+
"2025-10-15T16:01:51.772Z",
|
|
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-10-
|
|
285
|
+
updated: z.date().default(() => new Date("2025-10-15T16:01:51.772Z"))
|
|
286
286
|
.transform(v => v.toISOString()),
|
|
287
287
|
}).transform((v) => {
|
|
288
288
|
return remap$(v, {
|
|
@@ -6252,7 +6252,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
6252
6252
|
.default("orq"),
|
|
6253
6253
|
reviewed_by_id: z.string(),
|
|
6254
6254
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6255
|
-
"2025-10-
|
|
6255
|
+
"2025-10-15T16:02:02.922Z",
|
|
6256
6256
|
).transform(v => new Date(v)),
|
|
6257
6257
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
6258
6258
|
values: z.array(z.string()),
|
|
@@ -6290,7 +6290,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
6290
6290
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
6291
6291
|
.default("orq"),
|
|
6292
6292
|
reviewedById: z.string(),
|
|
6293
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
6293
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T16:02:02.922Z"))
|
|
6294
6294
|
.transform(v => v.toISOString()),
|
|
6295
6295
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
6296
6296
|
values: z.array(z.string()),
|
|
@@ -6419,7 +6419,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
6419
6419
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
6420
6420
|
reviewed_by_id: z.string(),
|
|
6421
6421
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6422
|
-
"2025-10-
|
|
6422
|
+
"2025-10-15T16:02:02.922Z",
|
|
6423
6423
|
).transform(v => new Date(v)),
|
|
6424
6424
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
6425
6425
|
value: z.number(),
|
|
@@ -6458,7 +6458,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
6458
6458
|
"orq",
|
|
6459
6459
|
),
|
|
6460
6460
|
reviewedById: z.string(),
|
|
6461
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
6461
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T16:02:02.922Z"))
|
|
6462
6462
|
.transform(v => v.toISOString()),
|
|
6463
6463
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
6464
6464
|
value: z.number(),
|
|
@@ -6581,7 +6581,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
6581
6581
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
6582
6582
|
reviewed_by_id: z.string(),
|
|
6583
6583
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6584
|
-
"2025-10-
|
|
6584
|
+
"2025-10-15T16:02:02.921Z",
|
|
6585
6585
|
).transform(v => new Date(v)),
|
|
6586
6586
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
6587
6587
|
value: z.string(),
|
|
@@ -6617,7 +6617,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
6617
6617
|
humanReviewId: z.string(),
|
|
6618
6618
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
6619
6619
|
reviewedById: z.string(),
|
|
6620
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
6620
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T16:02:02.921Z"))
|
|
6621
6621
|
.transform(v => v.toISOString()),
|
|
6622
6622
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
6623
6623
|
value: z.string(),
|
|
@@ -6761,7 +6761,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
6761
6761
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
6762
6762
|
.optional(),
|
|
6763
6763
|
updated: z.string().datetime({ offset: true }).default(
|
|
6764
|
-
"2025-10-
|
|
6764
|
+
"2025-10-15T16:01:51.772Z",
|
|
6765
6765
|
).transform(v => new Date(v)),
|
|
6766
6766
|
}).transform((v) => {
|
|
6767
6767
|
return remap$(v, {
|
|
@@ -6840,7 +6840,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
6840
6840
|
createdById: z.string().optional(),
|
|
6841
6841
|
updatedById: z.string().optional(),
|
|
6842
6842
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
6843
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
6843
|
+
updated: z.date().default(() => new Date("2025-10-15T16:01:51.772Z"))
|
|
6844
6844
|
.transform(v => v.toISOString()),
|
|
6845
6845
|
}).transform((v) => {
|
|
6846
6846
|
return remap$(v, {
|