@orq-ai/node 4.0.0-rc.54 → 4.0.0-rc.55
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/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
|
@@ -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-20T09:28:37.823Z",
|
|
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-20T09:28:37.823Z"))
|
|
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-20T09:28:37.823Z",
|
|
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-20T09:28:37.823Z"))
|
|
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-20T09:28:37.814Z",
|
|
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-20T09:28:37.814Z"))
|
|
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-20T09:28:25.441Z",
|
|
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-20T09:28:25.441Z"))
|
|
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-20T09:28:25.441Z",
|
|
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-20T09:28:25.441Z"))
|
|
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("01KAG9GA3MV43K93RSM90RH5JH"),
|
|
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("01KAG9GA3MV43K93RSM90RH5JH"),
|
|
271
271
|
displayName: z.string(),
|
|
272
272
|
description: z.string().optional(),
|
|
273
273
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -112,7 +112,7 @@ export const RetrieveContactResponseBody$inboundSchema: z.ZodType<
|
|
|
112
112
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
113
113
|
.optional(),
|
|
114
114
|
updated: z.string().datetime({ offset: true }).default(
|
|
115
|
-
"2025-11-
|
|
115
|
+
"2025-11-20T09:28:25.441Z",
|
|
116
116
|
).transform(v => new Date(v)),
|
|
117
117
|
}).transform((v) => {
|
|
118
118
|
return remap$(v, {
|
|
@@ -149,7 +149,7 @@ export const RetrieveContactResponseBody$outboundSchema: z.ZodType<
|
|
|
149
149
|
tags: z.array(z.string()).optional(),
|
|
150
150
|
metadata: z.record(z.any()).optional(),
|
|
151
151
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
152
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
152
|
+
updated: z.date().default(() => new Date("2025-11-20T09:28:25.441Z"))
|
|
153
153
|
.transform(v => v.toISOString()),
|
|
154
154
|
}).transform((v) => {
|
|
155
155
|
return remap$(v, {
|
|
@@ -2511,7 +2511,7 @@ export const RetrieveDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
2511
2511
|
.default("orq"),
|
|
2512
2512
|
reviewed_by_id: z.string(),
|
|
2513
2513
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2514
|
-
"2025-11-
|
|
2514
|
+
"2025-11-20T09:28:37.830Z",
|
|
2515
2515
|
).transform(v => new Date(v)),
|
|
2516
2516
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
2517
2517
|
values: z.array(z.string()),
|
|
@@ -2548,7 +2548,7 @@ export const RetrieveDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
2548
2548
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
2549
2549
|
.default("orq"),
|
|
2550
2550
|
reviewedById: z.string(),
|
|
2551
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
2551
|
+
reviewedAt: z.date().default(() => new Date("2025-11-20T09:28:37.830Z"))
|
|
2552
2552
|
.transform(v => v.toISOString()),
|
|
2553
2553
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
2554
2554
|
values: z.array(z.string()),
|
|
@@ -2622,7 +2622,7 @@ export const RetrieveDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
2622
2622
|
),
|
|
2623
2623
|
reviewed_by_id: z.string(),
|
|
2624
2624
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2625
|
-
"2025-11-
|
|
2625
|
+
"2025-11-20T09:28:37.830Z",
|
|
2626
2626
|
).transform(v => new Date(v)),
|
|
2627
2627
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
2628
2628
|
value: z.number(),
|
|
@@ -2660,7 +2660,7 @@ export const RetrieveDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
2660
2660
|
"orq",
|
|
2661
2661
|
),
|
|
2662
2662
|
reviewedById: z.string(),
|
|
2663
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
2663
|
+
reviewedAt: z.date().default(() => new Date("2025-11-20T09:28:37.830Z"))
|
|
2664
2664
|
.transform(v => v.toISOString()),
|
|
2665
2665
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
2666
2666
|
value: z.number(),
|
|
@@ -2731,7 +2731,7 @@ export const RetrieveDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
2731
2731
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
2732
2732
|
reviewed_by_id: z.string(),
|
|
2733
2733
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2734
|
-
"2025-11-
|
|
2734
|
+
"2025-11-20T09:28:37.829Z",
|
|
2735
2735
|
).transform(v => new Date(v)),
|
|
2736
2736
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
2737
2737
|
value: z.string(),
|
|
@@ -2766,7 +2766,7 @@ export const RetrieveDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
2766
2766
|
humanReviewId: z.string(),
|
|
2767
2767
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
2768
2768
|
reviewedById: z.string(),
|
|
2769
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
2769
|
+
reviewedAt: z.date().default(() => new Date("2025-11-20T09:28:37.829Z"))
|
|
2770
2770
|
.transform(v => v.toISOString()),
|
|
2771
2771
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
2772
2772
|
value: z.string(),
|
|
@@ -2877,7 +2877,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
2877
2877
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2878
2878
|
.optional(),
|
|
2879
2879
|
updated: z.string().datetime({ offset: true }).default(
|
|
2880
|
-
"2025-11-
|
|
2880
|
+
"2025-11-20T09:28:25.441Z",
|
|
2881
2881
|
).transform(v => new Date(v)),
|
|
2882
2882
|
}).transform((v) => {
|
|
2883
2883
|
return remap$(v, {
|
|
@@ -2951,7 +2951,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
2951
2951
|
createdById: z.string().optional(),
|
|
2952
2952
|
updatedById: z.string().optional(),
|
|
2953
2953
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
2954
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
2954
|
+
updated: z.date().default(() => new Date("2025-11-20T09:28:25.441Z"))
|
|
2955
2955
|
.transform(v => v.toISOString()),
|
|
2956
2956
|
}).transform((v) => {
|
|
2957
2957
|
return remap$(v, {
|
|
@@ -174,7 +174,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
174
174
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
175
175
|
.optional(),
|
|
176
176
|
updated: z.string().datetime({ offset: true }).default(
|
|
177
|
-
"2025-11-
|
|
177
|
+
"2025-11-20T09:28:25.441Z",
|
|
178
178
|
).transform(v => new Date(v)),
|
|
179
179
|
}).transform((v) => {
|
|
180
180
|
return remap$(v, {
|
|
@@ -213,7 +213,7 @@ export const RetrieveDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
213
213
|
createdById: z.string().optional(),
|
|
214
214
|
updatedById: z.string().optional(),
|
|
215
215
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
216
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
216
|
+
updated: z.date().default(() => new Date("2025-11-20T09:28:25.441Z"))
|
|
217
217
|
.transform(v => v.toISOString()),
|
|
218
218
|
}).transform((v) => {
|
|
219
219
|
return remap$(v, {
|
|
@@ -145,7 +145,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
145
145
|
z.ZodTypeDef,
|
|
146
146
|
unknown
|
|
147
147
|
> = z.object({
|
|
148
|
-
_id: z.string().default("
|
|
148
|
+
_id: z.string().default("01KAG9GA3PG33X08X02KQCABCF"),
|
|
149
149
|
display_name: z.string(),
|
|
150
150
|
description: z.string().optional(),
|
|
151
151
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -188,7 +188,7 @@ export const RetrieveDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
188
188
|
z.ZodTypeDef,
|
|
189
189
|
RetrieveDatasourceResponseBody
|
|
190
190
|
> = z.object({
|
|
191
|
-
id: z.string().default("
|
|
191
|
+
id: z.string().default("01KAG9GA3PG33X08X02KQCABCF"),
|
|
192
192
|
displayName: z.string(),
|
|
193
193
|
description: z.string().optional(),
|
|
194
194
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -890,7 +890,7 @@ export const RetrieveToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
890
890
|
z.ZodTypeDef,
|
|
891
891
|
unknown
|
|
892
892
|
> = z.object({
|
|
893
|
-
_id: z.string().default("
|
|
893
|
+
_id: z.string().default("tool_01KAG9G9ZWBC97QGBTMF2B4T63"),
|
|
894
894
|
path: z.string(),
|
|
895
895
|
key: z.string(),
|
|
896
896
|
display_name: z.string().optional(),
|
|
@@ -945,7 +945,7 @@ export const RetrieveToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
945
945
|
z.ZodTypeDef,
|
|
946
946
|
RetrieveToolResponseBody5
|
|
947
947
|
> = z.object({
|
|
948
|
-
id: z.string().default("
|
|
948
|
+
id: z.string().default("tool_01KAG9G9ZWBC97QGBTMF2B4T63"),
|
|
949
949
|
path: z.string(),
|
|
950
950
|
key: z.string(),
|
|
951
951
|
displayName: z.string().optional(),
|
|
@@ -1125,7 +1125,7 @@ export const RetrieveToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1125
1125
|
z.ZodTypeDef,
|
|
1126
1126
|
unknown
|
|
1127
1127
|
> = z.object({
|
|
1128
|
-
id: z.string().default("
|
|
1128
|
+
id: z.string().default("01KAG9G9ZVQE93FJK5J8WC79HG"),
|
|
1129
1129
|
name: z.string(),
|
|
1130
1130
|
description: z.string().optional(),
|
|
1131
1131
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -1144,7 +1144,7 @@ export const RetrieveToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1144
1144
|
z.ZodTypeDef,
|
|
1145
1145
|
RetrieveToolResponseBodyTools
|
|
1146
1146
|
> = z.object({
|
|
1147
|
-
id: z.string().default("
|
|
1147
|
+
id: z.string().default("01KAG9G9ZVQE93FJK5J8WC79HG"),
|
|
1148
1148
|
name: z.string(),
|
|
1149
1149
|
description: z.string().optional(),
|
|
1150
1150
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1250,7 +1250,7 @@ export const RetrieveToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1250
1250
|
z.ZodTypeDef,
|
|
1251
1251
|
unknown
|
|
1252
1252
|
> = z.object({
|
|
1253
|
-
_id: z.string().default("
|
|
1253
|
+
_id: z.string().default("tool_01KAG9G9ZSAZ53WENHZFADQM1N"),
|
|
1254
1254
|
path: z.string(),
|
|
1255
1255
|
key: z.string(),
|
|
1256
1256
|
display_name: z.string().optional(),
|
|
@@ -1303,7 +1303,7 @@ export const RetrieveToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1303
1303
|
z.ZodTypeDef,
|
|
1304
1304
|
RetrieveToolResponseBody4
|
|
1305
1305
|
> = z.object({
|
|
1306
|
-
id: z.string().default("
|
|
1306
|
+
id: z.string().default("tool_01KAG9G9ZSAZ53WENHZFADQM1N"),
|
|
1307
1307
|
path: z.string(),
|
|
1308
1308
|
key: z.string(),
|
|
1309
1309
|
displayName: z.string().optional(),
|
|
@@ -1681,7 +1681,7 @@ export const RetrieveToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1681
1681
|
z.ZodTypeDef,
|
|
1682
1682
|
unknown
|
|
1683
1683
|
> = z.object({
|
|
1684
|
-
_id: z.string().default("
|
|
1684
|
+
_id: z.string().default("tool_01KAG9G9ZPCHVFEN1H96J22J7A"),
|
|
1685
1685
|
path: z.string(),
|
|
1686
1686
|
key: z.string(),
|
|
1687
1687
|
display_name: z.string().optional(),
|
|
@@ -1734,7 +1734,7 @@ export const RetrieveToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1734
1734
|
z.ZodTypeDef,
|
|
1735
1735
|
RetrieveToolResponseBody3
|
|
1736
1736
|
> = z.object({
|
|
1737
|
-
id: z.string().default("
|
|
1737
|
+
id: z.string().default("tool_01KAG9G9ZPCHVFEN1H96J22J7A"),
|
|
1738
1738
|
path: z.string(),
|
|
1739
1739
|
key: z.string(),
|
|
1740
1740
|
displayName: z.string().optional(),
|
|
@@ -1915,7 +1915,7 @@ export const RetrieveToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1915
1915
|
z.ZodTypeDef,
|
|
1916
1916
|
unknown
|
|
1917
1917
|
> = z.object({
|
|
1918
|
-
_id: z.string().default("
|
|
1918
|
+
_id: z.string().default("tool_01KAG9G9ZN7X3Z6D5NDG453W5V"),
|
|
1919
1919
|
path: z.string(),
|
|
1920
1920
|
key: z.string(),
|
|
1921
1921
|
display_name: z.string().optional(),
|
|
@@ -1967,7 +1967,7 @@ export const RetrieveToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1967
1967
|
z.ZodTypeDef,
|
|
1968
1968
|
RetrieveToolResponseBody2
|
|
1969
1969
|
> = z.object({
|
|
1970
|
-
id: z.string().default("
|
|
1970
|
+
id: z.string().default("tool_01KAG9G9ZN7X3Z6D5NDG453W5V"),
|
|
1971
1971
|
path: z.string(),
|
|
1972
1972
|
key: z.string(),
|
|
1973
1973
|
displayName: z.string().optional(),
|
|
@@ -2165,7 +2165,7 @@ export const RetrieveToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2165
2165
|
z.ZodTypeDef,
|
|
2166
2166
|
unknown
|
|
2167
2167
|
> = z.object({
|
|
2168
|
-
_id: z.string().default("
|
|
2168
|
+
_id: z.string().default("tool_01KAG9G9ZKRFG7S5JN48ZS1RN7"),
|
|
2169
2169
|
path: z.string(),
|
|
2170
2170
|
key: z.string(),
|
|
2171
2171
|
display_name: z.string().optional(),
|
|
@@ -2216,7 +2216,7 @@ export const RetrieveToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2216
2216
|
z.ZodTypeDef,
|
|
2217
2217
|
RetrieveToolResponseBody1
|
|
2218
2218
|
> = z.object({
|
|
2219
|
-
id: z.string().default("
|
|
2219
|
+
id: z.string().default("tool_01KAG9G9ZKRFG7S5JN48ZS1RN7"),
|
|
2220
2220
|
path: z.string(),
|
|
2221
2221
|
key: z.string(),
|
|
2222
2222
|
displayName: z.string().optional(),
|
|
@@ -4775,7 +4775,7 @@ export function schemaFromJSON(
|
|
|
4775
4775
|
/** @internal */
|
|
4776
4776
|
export const Tools$inboundSchema: z.ZodType<Tools, z.ZodTypeDef, unknown> = z
|
|
4777
4777
|
.object({
|
|
4778
|
-
id: z.string().default("
|
|
4778
|
+
id: z.string().default("01KAG9G9M6YTJDDBP4JTTKCYGC"),
|
|
4779
4779
|
name: z.string(),
|
|
4780
4780
|
description: z.string().optional(),
|
|
4781
4781
|
schema: z.lazy(() => Schema$inboundSchema),
|
|
@@ -4794,7 +4794,7 @@ export const Tools$outboundSchema: z.ZodType<
|
|
|
4794
4794
|
z.ZodTypeDef,
|
|
4795
4795
|
Tools
|
|
4796
4796
|
> = z.object({
|
|
4797
|
-
id: z.string().default("
|
|
4797
|
+
id: z.string().default("01KAG9G9M6YTJDDBP4JTTKCYGC"),
|
|
4798
4798
|
name: z.string(),
|
|
4799
4799
|
description: z.string().optional(),
|
|
4800
4800
|
schema: z.lazy(() => Schema$outboundSchema),
|
|
@@ -6299,7 +6299,7 @@ export const AgentToolInputRunTools$inboundSchema: z.ZodType<
|
|
|
6299
6299
|
z.ZodTypeDef,
|
|
6300
6300
|
unknown
|
|
6301
6301
|
> = z.object({
|
|
6302
|
-
id: z.string().default("
|
|
6302
|
+
id: z.string().default("01KAG9G9NPYPQEVXWW8J4VZYMK"),
|
|
6303
6303
|
name: z.string(),
|
|
6304
6304
|
description: z.string().optional(),
|
|
6305
6305
|
schema: z.lazy(() => AgentToolInputRunSchema$inboundSchema),
|
|
@@ -6318,7 +6318,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
6318
6318
|
z.ZodTypeDef,
|
|
6319
6319
|
AgentToolInputRunTools
|
|
6320
6320
|
> = z.object({
|
|
6321
|
-
id: z.string().default("
|
|
6321
|
+
id: z.string().default("01KAG9G9NPYPQEVXWW8J4VZYMK"),
|
|
6322
6322
|
name: z.string(),
|
|
6323
6323
|
description: z.string().optional(),
|
|
6324
6324
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -436,7 +436,7 @@ export const UpdateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
436
436
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
437
437
|
.optional(),
|
|
438
438
|
updated: z.string().datetime({ offset: true }).default(
|
|
439
|
-
"2025-11-
|
|
439
|
+
"2025-11-20T09:28:26.115Z",
|
|
440
440
|
).transform(v => new Date(v)),
|
|
441
441
|
}).transform((v) => {
|
|
442
442
|
return remap$(v, {
|
|
@@ -473,7 +473,7 @@ export const UpdateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
473
473
|
isActive: z.boolean(),
|
|
474
474
|
consumption: z.lazy(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
475
475
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
476
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
476
|
+
updated: z.date().default(() => new Date("2025-11-20T09:28:26.115Z"))
|
|
477
477
|
.transform(v => v.toISOString()),
|
|
478
478
|
}).transform((v) => {
|
|
479
479
|
return remap$(v, {
|
|
@@ -214,7 +214,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
214
214
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
215
215
|
.optional(),
|
|
216
216
|
updated: z.string().datetime({ offset: true }).default(
|
|
217
|
-
"2025-11-
|
|
217
|
+
"2025-11-20T09:28:25.441Z",
|
|
218
218
|
).transform(v => new Date(v)),
|
|
219
219
|
}).transform((v) => {
|
|
220
220
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
tags: z.array(z.string()).optional(),
|
|
252
252
|
metadata: z.record(z.any()).optional(),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-11-20T09:28:25.441Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -4893,7 +4893,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
4893
4893
|
.default("orq"),
|
|
4894
4894
|
reviewed_by_id: z.string(),
|
|
4895
4895
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4896
|
-
"2025-11-
|
|
4896
|
+
"2025-11-20T09:28:37.872Z",
|
|
4897
4897
|
).transform(v => new Date(v)),
|
|
4898
4898
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
4899
4899
|
values: z.array(z.string()),
|
|
@@ -4930,7 +4930,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
4930
4930
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
4931
4931
|
.default("orq"),
|
|
4932
4932
|
reviewedById: z.string(),
|
|
4933
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4933
|
+
reviewedAt: z.date().default(() => new Date("2025-11-20T09:28:37.872Z"))
|
|
4934
4934
|
.transform(v => v.toISOString()),
|
|
4935
4935
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
4936
4936
|
values: z.array(z.string()),
|
|
@@ -5003,7 +5003,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
5003
5003
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
5004
5004
|
reviewed_by_id: z.string(),
|
|
5005
5005
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5006
|
-
"2025-11-
|
|
5006
|
+
"2025-11-20T09:28:37.872Z",
|
|
5007
5007
|
).transform(v => new Date(v)),
|
|
5008
5008
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
5009
5009
|
value: z.number(),
|
|
@@ -5041,7 +5041,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
5041
5041
|
"orq",
|
|
5042
5042
|
),
|
|
5043
5043
|
reviewedById: z.string(),
|
|
5044
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5044
|
+
reviewedAt: z.date().default(() => new Date("2025-11-20T09:28:37.872Z"))
|
|
5045
5045
|
.transform(v => v.toISOString()),
|
|
5046
5046
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
5047
5047
|
value: z.number(),
|
|
@@ -5112,7 +5112,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
5112
5112
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
5113
5113
|
reviewed_by_id: z.string(),
|
|
5114
5114
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5115
|
-
"2025-11-
|
|
5115
|
+
"2025-11-20T09:28:37.871Z",
|
|
5116
5116
|
).transform(v => new Date(v)),
|
|
5117
5117
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
5118
5118
|
value: z.string(),
|
|
@@ -5147,7 +5147,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
5147
5147
|
humanReviewId: z.string(),
|
|
5148
5148
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
5149
5149
|
reviewedById: z.string(),
|
|
5150
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5150
|
+
reviewedAt: z.date().default(() => new Date("2025-11-20T09:28:37.871Z"))
|
|
5151
5151
|
.transform(v => v.toISOString()),
|
|
5152
5152
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
5153
5153
|
value: z.string(),
|
|
@@ -5262,7 +5262,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
5262
5262
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5263
5263
|
.optional(),
|
|
5264
5264
|
updated: z.string().datetime({ offset: true }).default(
|
|
5265
|
-
"2025-11-
|
|
5265
|
+
"2025-11-20T09:28:25.441Z",
|
|
5266
5266
|
).transform(v => new Date(v)),
|
|
5267
5267
|
}).transform((v) => {
|
|
5268
5268
|
return remap$(v, {
|
|
@@ -5340,7 +5340,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
5340
5340
|
createdById: z.string().optional(),
|
|
5341
5341
|
updatedById: z.string().optional(),
|
|
5342
5342
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5343
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5343
|
+
updated: z.date().default(() => new Date("2025-11-20T09:28:25.441Z"))
|
|
5344
5344
|
.transform(v => v.toISOString()),
|
|
5345
5345
|
}).transform((v) => {
|
|
5346
5346
|
return remap$(v, {
|
|
@@ -256,7 +256,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
256
256
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
257
257
|
.optional(),
|
|
258
258
|
updated: z.string().datetime({ offset: true }).default(
|
|
259
|
-
"2025-11-
|
|
259
|
+
"2025-11-20T09:28:25.441Z",
|
|
260
260
|
).transform(v => new Date(v)),
|
|
261
261
|
}).transform((v) => {
|
|
262
262
|
return remap$(v, {
|
|
@@ -295,7 +295,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
295
295
|
createdById: z.string().optional(),
|
|
296
296
|
updatedById: z.string().optional(),
|
|
297
297
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
298
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
298
|
+
updated: z.date().default(() => new Date("2025-11-20T09:28:25.441Z"))
|
|
299
299
|
.transform(v => v.toISOString()),
|
|
300
300
|
}).transform((v) => {
|
|
301
301
|
return remap$(v, {
|
|
@@ -202,7 +202,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
202
202
|
z.ZodTypeDef,
|
|
203
203
|
unknown
|
|
204
204
|
> = z.object({
|
|
205
|
-
_id: z.string().default("
|
|
205
|
+
_id: z.string().default("01KAG9GA3SBX7M5K632F2R0A8A"),
|
|
206
206
|
display_name: z.string(),
|
|
207
207
|
description: z.string().optional(),
|
|
208
208
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -245,7 +245,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
245
245
|
z.ZodTypeDef,
|
|
246
246
|
UpdateDatasourceResponseBody
|
|
247
247
|
> = z.object({
|
|
248
|
-
id: z.string().default("
|
|
248
|
+
id: z.string().default("01KAG9GA3SBX7M5K632F2R0A8A"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|