@orq-ai/node 4.0.0-rc.8 → 4.0.0-rc.9
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 +209 -209
- package/bin/mcp-server.js.map +35 -35
- 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 +10 -10
- 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/getalltools.js +10 -10
- 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 +10 -10
- 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 +10 -10
- 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/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 +10 -10
- 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/getalltools.ts +10 -10
- 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 +10 -10
- 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 +10 -10
|
@@ -474,7 +474,7 @@ export const ListBudgetsData$inboundSchema: z.ZodType<
|
|
|
474
474
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
475
475
|
.optional(),
|
|
476
476
|
updated: z.string().datetime({ offset: true }).default(
|
|
477
|
-
"2025-11-
|
|
477
|
+
"2025-11-05T11:09:10.517Z",
|
|
478
478
|
).transform(v => new Date(v)),
|
|
479
479
|
}).transform((v) => {
|
|
480
480
|
return remap$(v, {
|
|
@@ -509,7 +509,7 @@ export const ListBudgetsData$outboundSchema: z.ZodType<
|
|
|
509
509
|
isActive: z.boolean(),
|
|
510
510
|
consumption: z.lazy(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
511
511
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
512
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
512
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.517Z"))
|
|
513
513
|
.transform(v => v.toISOString()),
|
|
514
514
|
}).transform((v) => {
|
|
515
515
|
return remap$(v, {
|
|
@@ -355,7 +355,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
|
|
|
355
355
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
356
356
|
.optional(),
|
|
357
357
|
updated: z.string().datetime({ offset: true }).default(
|
|
358
|
-
"2025-11-
|
|
358
|
+
"2025-11-05T11:09:10.226Z",
|
|
359
359
|
).transform(v => new Date(v)),
|
|
360
360
|
metrics: z.lazy(() => ListContactsMetrics$inboundSchema),
|
|
361
361
|
}).transform((v) => {
|
|
@@ -392,7 +392,7 @@ export const Data$outboundSchema: z.ZodType<Data$Outbound, z.ZodTypeDef, Data> =
|
|
|
392
392
|
tags: z.array(z.string()).optional(),
|
|
393
393
|
metadata: z.record(z.any()).optional(),
|
|
394
394
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
395
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
395
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
396
396
|
.transform(v => v.toISOString()),
|
|
397
397
|
metrics: z.lazy(() => ListContactsMetrics$outboundSchema),
|
|
398
398
|
}).transform((v) => {
|
|
@@ -3361,7 +3361,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
|
|
|
3361
3361
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
3362
3362
|
reviewed_by_id: z.string(),
|
|
3363
3363
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3364
|
-
"2025-11-
|
|
3364
|
+
"2025-11-05T11:09:20.932Z",
|
|
3365
3365
|
).transform(v => new Date(v)),
|
|
3366
3366
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
3367
3367
|
values: z.array(z.string()),
|
|
@@ -3397,7 +3397,7 @@ export const ListDatasetDatapointsEvaluations3$outboundSchema: z.ZodType<
|
|
|
3397
3397
|
humanReviewId: z.string(),
|
|
3398
3398
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
3399
3399
|
reviewedById: z.string(),
|
|
3400
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
3400
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.932Z"))
|
|
3401
3401
|
.transform(v => v.toISOString()),
|
|
3402
3402
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
3403
3403
|
values: z.array(z.string()),
|
|
@@ -3535,7 +3535,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
|
|
|
3535
3535
|
.default("orq"),
|
|
3536
3536
|
reviewed_by_id: z.string(),
|
|
3537
3537
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3538
|
-
"2025-11-
|
|
3538
|
+
"2025-11-05T11:09:20.923Z",
|
|
3539
3539
|
).transform(v => new Date(v)),
|
|
3540
3540
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
3541
3541
|
value: z.number(),
|
|
@@ -3573,7 +3573,7 @@ export const ListDatasetDatapointsEvaluations2$outboundSchema: z.ZodType<
|
|
|
3573
3573
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
|
|
3574
3574
|
.default("orq"),
|
|
3575
3575
|
reviewedById: z.string(),
|
|
3576
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
3576
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.923Z"))
|
|
3577
3577
|
.transform(v => v.toISOString()),
|
|
3578
3578
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
3579
3579
|
value: z.number(),
|
|
@@ -3706,7 +3706,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
|
|
|
3706
3706
|
),
|
|
3707
3707
|
reviewed_by_id: z.string(),
|
|
3708
3708
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3709
|
-
"2025-11-
|
|
3709
|
+
"2025-11-05T11:09:20.922Z",
|
|
3710
3710
|
).transform(v => new Date(v)),
|
|
3711
3711
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
3712
3712
|
value: z.string(),
|
|
@@ -3745,7 +3745,7 @@ export const ListDatasetDatapointsEvaluations1$outboundSchema: z.ZodType<
|
|
|
3745
3745
|
"orq",
|
|
3746
3746
|
),
|
|
3747
3747
|
reviewedById: z.string(),
|
|
3748
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
3748
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.922Z"))
|
|
3749
3749
|
.transform(v => v.toISOString()),
|
|
3750
3750
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
3751
3751
|
value: z.string(),
|
|
@@ -3888,7 +3888,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
3888
3888
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3889
3889
|
.optional(),
|
|
3890
3890
|
updated: z.string().datetime({ offset: true }).default(
|
|
3891
|
-
"2025-11-
|
|
3891
|
+
"2025-11-05T11:09:10.226Z",
|
|
3892
3892
|
).transform(v => new Date(v)),
|
|
3893
3893
|
}).transform((v) => {
|
|
3894
3894
|
return remap$(v, {
|
|
@@ -3969,7 +3969,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
3969
3969
|
createdById: z.string().optional(),
|
|
3970
3970
|
updatedById: z.string().optional(),
|
|
3971
3971
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3972
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
3972
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
3973
3973
|
.transform(v => v.toISOString()),
|
|
3974
3974
|
}).transform((v) => {
|
|
3975
3975
|
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-11-
|
|
256
|
+
"2025-11-05T11:09:10.226Z",
|
|
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-11-
|
|
296
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
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("01K99V9YJEXET4WTE1KNHK5A89"),
|
|
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("01K99V9YJEXET4WTE1KNHK5A89"),
|
|
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-11-
|
|
130
|
+
"2025-11-05T11:09:10.226Z",
|
|
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-11-
|
|
168
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
169
169
|
.transform(v => v.toISOString()),
|
|
170
170
|
}).transform((v) => {
|
|
171
171
|
return remap$(v, {
|
|
@@ -3223,7 +3223,7 @@ export const RetrieveDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
3223
3223
|
.default("orq"),
|
|
3224
3224
|
reviewed_by_id: z.string(),
|
|
3225
3225
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3226
|
-
"2025-11-
|
|
3226
|
+
"2025-11-05T11:09:20.943Z",
|
|
3227
3227
|
).transform(v => new Date(v)),
|
|
3228
3228
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
3229
3229
|
values: z.array(z.string()),
|
|
@@ -3261,7 +3261,7 @@ export const RetrieveDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
3261
3261
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
3262
3262
|
.default("orq"),
|
|
3263
3263
|
reviewedById: z.string(),
|
|
3264
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
3264
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.943Z"))
|
|
3265
3265
|
.transform(v => v.toISOString()),
|
|
3266
3266
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
3267
3267
|
values: z.array(z.string()),
|
|
@@ -3391,7 +3391,7 @@ export const RetrieveDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
3391
3391
|
),
|
|
3392
3392
|
reviewed_by_id: z.string(),
|
|
3393
3393
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3394
|
-
"2025-11-
|
|
3394
|
+
"2025-11-05T11:09:20.943Z",
|
|
3395
3395
|
).transform(v => new Date(v)),
|
|
3396
3396
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
3397
3397
|
value: z.number(),
|
|
@@ -3430,7 +3430,7 @@ export const RetrieveDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
3430
3430
|
"orq",
|
|
3431
3431
|
),
|
|
3432
3432
|
reviewedById: z.string(),
|
|
3433
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
3433
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.943Z"))
|
|
3434
3434
|
.transform(v => v.toISOString()),
|
|
3435
3435
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
3436
3436
|
value: z.number(),
|
|
@@ -3554,7 +3554,7 @@ export const RetrieveDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
3554
3554
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
3555
3555
|
reviewed_by_id: z.string(),
|
|
3556
3556
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3557
|
-
"2025-11-
|
|
3557
|
+
"2025-11-05T11:09:20.942Z",
|
|
3558
3558
|
).transform(v => new Date(v)),
|
|
3559
3559
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
3560
3560
|
value: z.string(),
|
|
@@ -3590,7 +3590,7 @@ export const RetrieveDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
3590
3590
|
humanReviewId: z.string(),
|
|
3591
3591
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
3592
3592
|
reviewedById: z.string(),
|
|
3593
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
3593
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.942Z"))
|
|
3594
3594
|
.transform(v => v.toISOString()),
|
|
3595
3595
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
3596
3596
|
value: z.string(),
|
|
@@ -3730,7 +3730,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
3730
3730
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3731
3731
|
.optional(),
|
|
3732
3732
|
updated: z.string().datetime({ offset: true }).default(
|
|
3733
|
-
"2025-11-
|
|
3733
|
+
"2025-11-05T11:09:10.226Z",
|
|
3734
3734
|
).transform(v => new Date(v)),
|
|
3735
3735
|
}).transform((v) => {
|
|
3736
3736
|
return remap$(v, {
|
|
@@ -3805,7 +3805,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
3805
3805
|
createdById: z.string().optional(),
|
|
3806
3806
|
updatedById: z.string().optional(),
|
|
3807
3807
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3808
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
3808
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
3809
3809
|
.transform(v => v.toISOString()),
|
|
3810
3810
|
}).transform((v) => {
|
|
3811
3811
|
return remap$(v, {
|
|
@@ -204,7 +204,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
204
204
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
205
205
|
.optional(),
|
|
206
206
|
updated: z.string().datetime({ offset: true }).default(
|
|
207
|
-
"2025-11-
|
|
207
|
+
"2025-11-05T11:09:10.226Z",
|
|
208
208
|
).transform(v => new Date(v)),
|
|
209
209
|
}).transform((v) => {
|
|
210
210
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const RetrieveDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
244
244
|
createdById: z.string().optional(),
|
|
245
245
|
updatedById: z.string().optional(),
|
|
246
246
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
247
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
247
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
248
248
|
.transform(v => v.toISOString()),
|
|
249
249
|
}).transform((v) => {
|
|
250
250
|
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("01K99V9YJGKR5T7RGZ415GECFD"),
|
|
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("01K99V9YJGKR5T7RGZ415GECFD"),
|
|
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("01K99V9YG50V4EYAC4HVX9P72Q"),
|
|
784
784
|
path: z.string(),
|
|
785
785
|
key: z.string(),
|
|
786
786
|
display_name: z.string().optional(),
|
|
@@ -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("01K99V9YG50V4EYAC4HVX9P72Q"),
|
|
840
840
|
path: z.string(),
|
|
841
841
|
key: z.string(),
|
|
842
842
|
displayName: z.string().optional(),
|
|
@@ -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("01K99V9YG44KRNE0S9HQW2HWG2"),
|
|
1224
1224
|
path: z.string(),
|
|
1225
1225
|
key: z.string(),
|
|
1226
1226
|
display_name: z.string().optional(),
|
|
@@ -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("01K99V9YG44KRNE0S9HQW2HWG2"),
|
|
1278
1278
|
path: z.string(),
|
|
1279
1279
|
key: z.string(),
|
|
1280
1280
|
displayName: z.string().optional(),
|
|
@@ -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("01K99V9YG26WZRKYEMY9B6ZXMN"),
|
|
1704
1704
|
path: z.string(),
|
|
1705
1705
|
key: z.string(),
|
|
1706
1706
|
display_name: z.string().optional(),
|
|
@@ -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("01K99V9YG26WZRKYEMY9B6ZXMN"),
|
|
1758
1758
|
path: z.string(),
|
|
1759
1759
|
key: z.string(),
|
|
1760
1760
|
displayName: z.string().optional(),
|
|
@@ -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("01K99V9YG1A5QRVQATZGWTYT0M"),
|
|
1936
1936
|
path: z.string(),
|
|
1937
1937
|
key: z.string(),
|
|
1938
1938
|
display_name: z.string().optional(),
|
|
@@ -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("01K99V9YG1A5QRVQATZGWTYT0M"),
|
|
1989
1989
|
path: z.string(),
|
|
1990
1990
|
key: z.string(),
|
|
1991
1991
|
displayName: z.string().optional(),
|
|
@@ -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("01K99V9YG0VE0B8K5KHHCD07QA"),
|
|
2161
2161
|
path: z.string(),
|
|
2162
2162
|
key: z.string(),
|
|
2163
2163
|
display_name: z.string().optional(),
|
|
@@ -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("01K99V9YG0VE0B8K5KHHCD07QA"),
|
|
2213
2213
|
path: z.string(),
|
|
2214
2214
|
key: z.string(),
|
|
2215
2215
|
displayName: z.string().optional(),
|
|
@@ -547,7 +547,7 @@ export const UpdateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
547
547
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
548
548
|
.optional(),
|
|
549
549
|
updated: z.string().datetime({ offset: true }).default(
|
|
550
|
-
"2025-11-
|
|
550
|
+
"2025-11-05T11:09:10.517Z",
|
|
551
551
|
).transform(v => new Date(v)),
|
|
552
552
|
}).transform((v) => {
|
|
553
553
|
return remap$(v, {
|
|
@@ -585,7 +585,7 @@ export const UpdateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
585
585
|
isActive: z.boolean(),
|
|
586
586
|
consumption: z.lazy(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
587
587
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
588
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
588
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.517Z"))
|
|
589
589
|
.transform(v => v.toISOString()),
|
|
590
590
|
}).transform((v) => {
|
|
591
591
|
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-11-
|
|
247
|
+
"2025-11-05T11:09:10.226Z",
|
|
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-11-
|
|
285
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
286
286
|
.transform(v => v.toISOString()),
|
|
287
287
|
}).transform((v) => {
|
|
288
288
|
return remap$(v, {
|
|
@@ -6298,7 +6298,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
6298
6298
|
.default("orq"),
|
|
6299
6299
|
reviewed_by_id: z.string(),
|
|
6300
6300
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6301
|
-
"2025-11-
|
|
6301
|
+
"2025-11-05T11:09:20.980Z",
|
|
6302
6302
|
).transform(v => new Date(v)),
|
|
6303
6303
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
6304
6304
|
values: z.array(z.string()),
|
|
@@ -6336,7 +6336,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
6336
6336
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
6337
6337
|
.default("orq"),
|
|
6338
6338
|
reviewedById: z.string(),
|
|
6339
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
6339
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.980Z"))
|
|
6340
6340
|
.transform(v => v.toISOString()),
|
|
6341
6341
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
6342
6342
|
values: z.array(z.string()),
|
|
@@ -6465,7 +6465,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
6465
6465
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
6466
6466
|
reviewed_by_id: z.string(),
|
|
6467
6467
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6468
|
-
"2025-11-
|
|
6468
|
+
"2025-11-05T11:09:20.980Z",
|
|
6469
6469
|
).transform(v => new Date(v)),
|
|
6470
6470
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
6471
6471
|
value: z.number(),
|
|
@@ -6504,7 +6504,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
6504
6504
|
"orq",
|
|
6505
6505
|
),
|
|
6506
6506
|
reviewedById: z.string(),
|
|
6507
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
6507
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.980Z"))
|
|
6508
6508
|
.transform(v => v.toISOString()),
|
|
6509
6509
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
6510
6510
|
value: z.number(),
|
|
@@ -6627,7 +6627,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
6627
6627
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
6628
6628
|
reviewed_by_id: z.string(),
|
|
6629
6629
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6630
|
-
"2025-11-
|
|
6630
|
+
"2025-11-05T11:09:20.980Z",
|
|
6631
6631
|
).transform(v => new Date(v)),
|
|
6632
6632
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
6633
6633
|
value: z.string(),
|
|
@@ -6663,7 +6663,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
6663
6663
|
humanReviewId: z.string(),
|
|
6664
6664
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
6665
6665
|
reviewedById: z.string(),
|
|
6666
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
6666
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.980Z"))
|
|
6667
6667
|
.transform(v => v.toISOString()),
|
|
6668
6668
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
6669
6669
|
value: z.string(),
|
|
@@ -6807,7 +6807,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
6807
6807
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
6808
6808
|
.optional(),
|
|
6809
6809
|
updated: z.string().datetime({ offset: true }).default(
|
|
6810
|
-
"2025-11-
|
|
6810
|
+
"2025-11-05T11:09:10.226Z",
|
|
6811
6811
|
).transform(v => new Date(v)),
|
|
6812
6812
|
}).transform((v) => {
|
|
6813
6813
|
return remap$(v, {
|
|
@@ -6886,7 +6886,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
6886
6886
|
createdById: z.string().optional(),
|
|
6887
6887
|
updatedById: z.string().optional(),
|
|
6888
6888
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
6889
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
6889
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
6890
6890
|
.transform(v => v.toISOString()),
|
|
6891
6891
|
}).transform((v) => {
|
|
6892
6892
|
return remap$(v, {
|
|
@@ -301,7 +301,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
301
301
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
302
302
|
.optional(),
|
|
303
303
|
updated: z.string().datetime({ offset: true }).default(
|
|
304
|
-
"2025-11-
|
|
304
|
+
"2025-11-05T11:09:10.226Z",
|
|
305
305
|
).transform(v => new Date(v)),
|
|
306
306
|
}).transform((v) => {
|
|
307
307
|
return remap$(v, {
|
|
@@ -341,7 +341,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
341
341
|
createdById: z.string().optional(),
|
|
342
342
|
updatedById: z.string().optional(),
|
|
343
343
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
344
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
344
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
345
345
|
.transform(v => v.toISOString()),
|
|
346
346
|
}).transform((v) => {
|
|
347
347
|
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("01K99V9YJKE74W4WB3DQ6VAXRN"),
|
|
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("01K99V9YJKE74W4WB3DQ6VAXRN"),
|
|
292
292
|
displayName: z.string(),
|
|
293
293
|
description: z.string().optional(),
|
|
294
294
|
status: UpdateDatasourceStatus$outboundSchema,
|