@orq-ai/node 3.14.25 → 3.14.28
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 +302 -300
- package/bin/mcp-server.js.map +41 -41
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +11 -11
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +22 -22
- package/models/operations/createagent.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 +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/listagenttasks.d.ts +6 -0
- package/models/operations/listagenttasks.d.ts.map +1 -1
- package/models/operations/listagenttasks.js +2 -0
- package/models/operations/listagenttasks.js.map +1 -1
- 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/runagent.d.ts +11 -11
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +22 -22
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +11 -11
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +22 -22
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +11 -11
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +22 -22
- package/models/operations/updateagent.js.map +1 -1
- 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/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/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/createagent.ts +33 -33
- 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/getalltools.ts +10 -10
- 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/listagenttasks.ts +4 -0
- 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/runagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +33 -33
- package/packages/orq-rc/src/models/operations/updateagent.ts +33 -33
- 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 +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createagent.ts +33 -33
- 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/listagenttasks.ts +4 -0
- 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/runagent.ts +33 -33
- package/src/models/operations/streamrunagent.ts +33 -33
- package/src/models/operations/updateagent.ts +33 -33
- 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
|
@@ -231,7 +231,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
231
231
|
z.ZodTypeDef,
|
|
232
232
|
unknown
|
|
233
233
|
> = z.object({
|
|
234
|
-
_id: z.string().default("
|
|
234
|
+
_id: z.string().default("01K9HC1ZDXDQ3AW0GWR1R9FTJZ"),
|
|
235
235
|
display_name: z.string(),
|
|
236
236
|
description: z.string().optional(),
|
|
237
237
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -274,7 +274,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
|
|
|
274
274
|
z.ZodTypeDef,
|
|
275
275
|
ListDatasourcesData
|
|
276
276
|
> = z.object({
|
|
277
|
-
id: z.string().default("
|
|
277
|
+
id: z.string().default("01K9HC1ZDXDQ3AW0GWR1R9FTJZ"),
|
|
278
278
|
displayName: z.string(),
|
|
279
279
|
description: z.string().optional(),
|
|
280
280
|
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-08T09:16:35.289Z",
|
|
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-08T09:16:35.289Z"))
|
|
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-08T09:16:46.536Z",
|
|
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-08T09:16:46.536Z"))
|
|
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-08T09:16:46.533Z",
|
|
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-08T09:16:46.533Z"))
|
|
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-08T09:16:46.532Z",
|
|
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-08T09:16:46.532Z"))
|
|
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-08T09:16:35.289Z",
|
|
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-08T09:16:35.289Z"))
|
|
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-08T09:16:35.289Z",
|
|
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-08T09:16:35.289Z"))
|
|
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("01K9HC1ZDYKYTNPDKXX1X8KK9P"),
|
|
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("01K9HC1ZDYKYTNPDKXX1X8KK9P"),
|
|
192
192
|
displayName: z.string(),
|
|
193
193
|
description: z.string().optional(),
|
|
194
194
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -710,7 +710,7 @@ export const RetrieveToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
710
710
|
z.ZodTypeDef,
|
|
711
711
|
unknown
|
|
712
712
|
> = z.object({
|
|
713
|
-
_id: z.string().default("
|
|
713
|
+
_id: z.string().default("01K9HC1ZBCZH6C9YMYYD75EWG2"),
|
|
714
714
|
path: z.string(),
|
|
715
715
|
key: z.string(),
|
|
716
716
|
display_name: z.string().optional(),
|
|
@@ -765,7 +765,7 @@ export const RetrieveToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
765
765
|
z.ZodTypeDef,
|
|
766
766
|
RetrieveToolResponseBody5
|
|
767
767
|
> = z.object({
|
|
768
|
-
id: z.string().default("
|
|
768
|
+
id: z.string().default("01K9HC1ZBCZH6C9YMYYD75EWG2"),
|
|
769
769
|
path: z.string(),
|
|
770
770
|
key: z.string(),
|
|
771
771
|
displayName: z.string().optional(),
|
|
@@ -1032,7 +1032,7 @@ export const RetrieveToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1032
1032
|
z.ZodTypeDef,
|
|
1033
1033
|
unknown
|
|
1034
1034
|
> = z.object({
|
|
1035
|
-
_id: z.string().default("
|
|
1035
|
+
_id: z.string().default("01K9HC1ZBAZ8Y3T8S0GJAQTMG5"),
|
|
1036
1036
|
path: z.string(),
|
|
1037
1037
|
key: z.string(),
|
|
1038
1038
|
display_name: z.string().optional(),
|
|
@@ -1085,7 +1085,7 @@ export const RetrieveToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1085
1085
|
z.ZodTypeDef,
|
|
1086
1086
|
RetrieveToolResponseBody4
|
|
1087
1087
|
> = z.object({
|
|
1088
|
-
id: z.string().default("
|
|
1088
|
+
id: z.string().default("01K9HC1ZBAZ8Y3T8S0GJAQTMG5"),
|
|
1089
1089
|
path: z.string(),
|
|
1090
1090
|
key: z.string(),
|
|
1091
1091
|
displayName: z.string().optional(),
|
|
@@ -1379,7 +1379,7 @@ export const RetrieveToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1379
1379
|
z.ZodTypeDef,
|
|
1380
1380
|
unknown
|
|
1381
1381
|
> = z.object({
|
|
1382
|
-
_id: z.string().default("
|
|
1382
|
+
_id: z.string().default("01K9HC1ZB9Z99CCSRQJT8PE2W5"),
|
|
1383
1383
|
path: z.string(),
|
|
1384
1384
|
key: z.string(),
|
|
1385
1385
|
display_name: z.string().optional(),
|
|
@@ -1432,7 +1432,7 @@ export const RetrieveToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1432
1432
|
z.ZodTypeDef,
|
|
1433
1433
|
RetrieveToolResponseBody3
|
|
1434
1434
|
> = z.object({
|
|
1435
|
-
id: z.string().default("
|
|
1435
|
+
id: z.string().default("01K9HC1ZB9Z99CCSRQJT8PE2W5"),
|
|
1436
1436
|
path: z.string(),
|
|
1437
1437
|
key: z.string(),
|
|
1438
1438
|
displayName: z.string().optional(),
|
|
@@ -1553,7 +1553,7 @@ export const RetrieveToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1553
1553
|
z.ZodTypeDef,
|
|
1554
1554
|
unknown
|
|
1555
1555
|
> = z.object({
|
|
1556
|
-
_id: z.string().default("
|
|
1556
|
+
_id: z.string().default("01K9HC1ZB7N5YGF3558Q1CAFFA"),
|
|
1557
1557
|
path: z.string(),
|
|
1558
1558
|
key: z.string(),
|
|
1559
1559
|
display_name: z.string().optional(),
|
|
@@ -1605,7 +1605,7 @@ export const RetrieveToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1605
1605
|
z.ZodTypeDef,
|
|
1606
1606
|
RetrieveToolResponseBody2
|
|
1607
1607
|
> = z.object({
|
|
1608
|
-
id: z.string().default("
|
|
1608
|
+
id: z.string().default("01K9HC1ZB7N5YGF3558Q1CAFFA"),
|
|
1609
1609
|
path: z.string(),
|
|
1610
1610
|
key: z.string(),
|
|
1611
1611
|
displayName: z.string().optional(),
|
|
@@ -1724,7 +1724,7 @@ export const RetrieveToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
1724
1724
|
z.ZodTypeDef,
|
|
1725
1725
|
unknown
|
|
1726
1726
|
> = z.object({
|
|
1727
|
-
_id: z.string().default("
|
|
1727
|
+
_id: z.string().default("01K9HC1ZB6EJFS0G8JKNQSTACV"),
|
|
1728
1728
|
path: z.string(),
|
|
1729
1729
|
key: z.string(),
|
|
1730
1730
|
display_name: z.string().optional(),
|
|
@@ -1775,7 +1775,7 @@ export const RetrieveToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
1775
1775
|
z.ZodTypeDef,
|
|
1776
1776
|
RetrieveToolResponseBody1
|
|
1777
1777
|
> = z.object({
|
|
1778
|
-
id: z.string().default("
|
|
1778
|
+
id: z.string().default("01K9HC1ZB6EJFS0G8JKNQSTACV"),
|
|
1779
1779
|
path: z.string(),
|
|
1780
1780
|
key: z.string(),
|
|
1781
1781
|
displayName: z.string().optional(),
|
|
@@ -4698,7 +4698,7 @@ export const AgentToolInputRunCurrentDateTool$inboundSchema: z.ZodType<
|
|
|
4698
4698
|
> = z.object({
|
|
4699
4699
|
type:
|
|
4700
4700
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema,
|
|
4701
|
-
requires_approval: z.boolean().
|
|
4701
|
+
requires_approval: z.boolean().optional(),
|
|
4702
4702
|
}).transform((v) => {
|
|
4703
4703
|
return remap$(v, {
|
|
4704
4704
|
"requires_approval": "requiresApproval",
|
|
@@ -4707,7 +4707,7 @@ export const AgentToolInputRunCurrentDateTool$inboundSchema: z.ZodType<
|
|
|
4707
4707
|
/** @internal */
|
|
4708
4708
|
export type AgentToolInputRunCurrentDateTool$Outbound = {
|
|
4709
4709
|
type: string;
|
|
4710
|
-
requires_approval
|
|
4710
|
+
requires_approval?: boolean | undefined;
|
|
4711
4711
|
};
|
|
4712
4712
|
|
|
4713
4713
|
/** @internal */
|
|
@@ -4718,7 +4718,7 @@ export const AgentToolInputRunCurrentDateTool$outboundSchema: z.ZodType<
|
|
|
4718
4718
|
> = z.object({
|
|
4719
4719
|
type:
|
|
4720
4720
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
4721
|
-
requiresApproval: z.boolean().
|
|
4721
|
+
requiresApproval: z.boolean().optional(),
|
|
4722
4722
|
}).transform((v) => {
|
|
4723
4723
|
return remap$(v, {
|
|
4724
4724
|
requiresApproval: "requires_approval",
|
|
@@ -4766,7 +4766,7 @@ export const AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema: z.ZodType<
|
|
|
4766
4766
|
> = z.object({
|
|
4767
4767
|
type:
|
|
4768
4768
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema,
|
|
4769
|
-
requires_approval: z.boolean().
|
|
4769
|
+
requires_approval: z.boolean().optional(),
|
|
4770
4770
|
}).transform((v) => {
|
|
4771
4771
|
return remap$(v, {
|
|
4772
4772
|
"requires_approval": "requiresApproval",
|
|
@@ -4775,7 +4775,7 @@ export const AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema: z.ZodType<
|
|
|
4775
4775
|
/** @internal */
|
|
4776
4776
|
export type AgentToolInputRunQueryKnowledgeBaseTool$Outbound = {
|
|
4777
4777
|
type: string;
|
|
4778
|
-
requires_approval
|
|
4778
|
+
requires_approval?: boolean | undefined;
|
|
4779
4779
|
};
|
|
4780
4780
|
|
|
4781
4781
|
/** @internal */
|
|
@@ -4786,7 +4786,7 @@ export const AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema: z.ZodType<
|
|
|
4786
4786
|
> = z.object({
|
|
4787
4787
|
type:
|
|
4788
4788
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
4789
|
-
requiresApproval: z.boolean().
|
|
4789
|
+
requiresApproval: z.boolean().optional(),
|
|
4790
4790
|
}).transform((v) => {
|
|
4791
4791
|
return remap$(v, {
|
|
4792
4792
|
requiresApproval: "requires_approval",
|
|
@@ -4842,7 +4842,7 @@ export const AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema:
|
|
|
4842
4842
|
> = z.object({
|
|
4843
4843
|
type:
|
|
4844
4844
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema,
|
|
4845
|
-
requires_approval: z.boolean().
|
|
4845
|
+
requires_approval: z.boolean().optional(),
|
|
4846
4846
|
}).transform((v) => {
|
|
4847
4847
|
return remap$(v, {
|
|
4848
4848
|
"requires_approval": "requiresApproval",
|
|
@@ -4851,7 +4851,7 @@ export const AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema:
|
|
|
4851
4851
|
/** @internal */
|
|
4852
4852
|
export type AgentToolInputRunRetrieveKnowledgeBasesTool$Outbound = {
|
|
4853
4853
|
type: string;
|
|
4854
|
-
requires_approval
|
|
4854
|
+
requires_approval?: boolean | undefined;
|
|
4855
4855
|
};
|
|
4856
4856
|
|
|
4857
4857
|
/** @internal */
|
|
@@ -4863,7 +4863,7 @@ export const AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema:
|
|
|
4863
4863
|
> = z.object({
|
|
4864
4864
|
type:
|
|
4865
4865
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
4866
|
-
requiresApproval: z.boolean().
|
|
4866
|
+
requiresApproval: z.boolean().optional(),
|
|
4867
4867
|
}).transform((v) => {
|
|
4868
4868
|
return remap$(v, {
|
|
4869
4869
|
requiresApproval: "requires_approval",
|
|
@@ -4918,7 +4918,7 @@ export const AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema: z.ZodType<
|
|
|
4918
4918
|
> = z.object({
|
|
4919
4919
|
type:
|
|
4920
4920
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema,
|
|
4921
|
-
requires_approval: z.boolean().
|
|
4921
|
+
requires_approval: z.boolean().optional(),
|
|
4922
4922
|
}).transform((v) => {
|
|
4923
4923
|
return remap$(v, {
|
|
4924
4924
|
"requires_approval": "requiresApproval",
|
|
@@ -4927,7 +4927,7 @@ export const AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema: z.ZodType<
|
|
|
4927
4927
|
/** @internal */
|
|
4928
4928
|
export type AgentToolInputRunDeleteMemoryDocumentTool$Outbound = {
|
|
4929
4929
|
type: string;
|
|
4930
|
-
requires_approval
|
|
4930
|
+
requires_approval?: boolean | undefined;
|
|
4931
4931
|
};
|
|
4932
4932
|
|
|
4933
4933
|
/** @internal */
|
|
@@ -4939,7 +4939,7 @@ export const AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema:
|
|
|
4939
4939
|
> = z.object({
|
|
4940
4940
|
type:
|
|
4941
4941
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
4942
|
-
requiresApproval: z.boolean().
|
|
4942
|
+
requiresApproval: z.boolean().optional(),
|
|
4943
4943
|
}).transform((v) => {
|
|
4944
4944
|
return remap$(v, {
|
|
4945
4945
|
requiresApproval: "requires_approval",
|
|
@@ -4994,7 +4994,7 @@ export const AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema: z.ZodType<
|
|
|
4994
4994
|
> = z.object({
|
|
4995
4995
|
type:
|
|
4996
4996
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema,
|
|
4997
|
-
requires_approval: z.boolean().
|
|
4997
|
+
requires_approval: z.boolean().optional(),
|
|
4998
4998
|
}).transform((v) => {
|
|
4999
4999
|
return remap$(v, {
|
|
5000
5000
|
"requires_approval": "requiresApproval",
|
|
@@ -5003,7 +5003,7 @@ export const AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema: z.ZodType<
|
|
|
5003
5003
|
/** @internal */
|
|
5004
5004
|
export type AgentToolInputRunRetrieveMemoryStoresTool$Outbound = {
|
|
5005
5005
|
type: string;
|
|
5006
|
-
requires_approval
|
|
5006
|
+
requires_approval?: boolean | undefined;
|
|
5007
5007
|
};
|
|
5008
5008
|
|
|
5009
5009
|
/** @internal */
|
|
@@ -5015,7 +5015,7 @@ export const AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema:
|
|
|
5015
5015
|
> = z.object({
|
|
5016
5016
|
type:
|
|
5017
5017
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
5018
|
-
requiresApproval: z.boolean().
|
|
5018
|
+
requiresApproval: z.boolean().optional(),
|
|
5019
5019
|
}).transform((v) => {
|
|
5020
5020
|
return remap$(v, {
|
|
5021
5021
|
requiresApproval: "requires_approval",
|
|
@@ -5070,7 +5070,7 @@ export const AgentToolInputRunWriteMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
5070
5070
|
> = z.object({
|
|
5071
5071
|
type:
|
|
5072
5072
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema,
|
|
5073
|
-
requires_approval: z.boolean().
|
|
5073
|
+
requires_approval: z.boolean().optional(),
|
|
5074
5074
|
}).transform((v) => {
|
|
5075
5075
|
return remap$(v, {
|
|
5076
5076
|
"requires_approval": "requiresApproval",
|
|
@@ -5079,7 +5079,7 @@ export const AgentToolInputRunWriteMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
5079
5079
|
/** @internal */
|
|
5080
5080
|
export type AgentToolInputRunWriteMemoryStoreTool$Outbound = {
|
|
5081
5081
|
type: string;
|
|
5082
|
-
requires_approval
|
|
5082
|
+
requires_approval?: boolean | undefined;
|
|
5083
5083
|
};
|
|
5084
5084
|
|
|
5085
5085
|
/** @internal */
|
|
@@ -5090,7 +5090,7 @@ export const AgentToolInputRunWriteMemoryStoreTool$outboundSchema: z.ZodType<
|
|
|
5090
5090
|
> = z.object({
|
|
5091
5091
|
type:
|
|
5092
5092
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
5093
|
-
requiresApproval: z.boolean().
|
|
5093
|
+
requiresApproval: z.boolean().optional(),
|
|
5094
5094
|
}).transform((v) => {
|
|
5095
5095
|
return remap$(v, {
|
|
5096
5096
|
requiresApproval: "requires_approval",
|
|
@@ -5135,7 +5135,7 @@ export const AgentToolInputRunQueryMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
5135
5135
|
unknown
|
|
5136
5136
|
> = z.object({
|
|
5137
5137
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema,
|
|
5138
|
-
requires_approval: z.boolean().
|
|
5138
|
+
requires_approval: z.boolean().optional(),
|
|
5139
5139
|
}).transform((v) => {
|
|
5140
5140
|
return remap$(v, {
|
|
5141
5141
|
"requires_approval": "requiresApproval",
|
|
@@ -5144,7 +5144,7 @@ export const AgentToolInputRunQueryMemoryStoreTool$inboundSchema: z.ZodType<
|
|
|
5144
5144
|
/** @internal */
|
|
5145
5145
|
export type AgentToolInputRunQueryMemoryStoreTool$Outbound = {
|
|
5146
5146
|
type: string;
|
|
5147
|
-
requires_approval
|
|
5147
|
+
requires_approval?: boolean | undefined;
|
|
5148
5148
|
};
|
|
5149
5149
|
|
|
5150
5150
|
/** @internal */
|
|
@@ -5154,7 +5154,7 @@ export const AgentToolInputRunQueryMemoryStoreTool$outboundSchema: z.ZodType<
|
|
|
5154
5154
|
AgentToolInputRunQueryMemoryStoreTool
|
|
5155
5155
|
> = z.object({
|
|
5156
5156
|
type: RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema,
|
|
5157
|
-
requiresApproval: z.boolean().
|
|
5157
|
+
requiresApproval: z.boolean().optional(),
|
|
5158
5158
|
}).transform((v) => {
|
|
5159
5159
|
return remap$(v, {
|
|
5160
5160
|
requiresApproval: "requires_approval",
|
|
@@ -5197,7 +5197,7 @@ export const AgentToolInputRunRetrieveAgentsTool$inboundSchema: z.ZodType<
|
|
|
5197
5197
|
unknown
|
|
5198
5198
|
> = z.object({
|
|
5199
5199
|
type: RunAgentAgentToolInputRunAgentsRequestType$inboundSchema,
|
|
5200
|
-
requires_approval: z.boolean().
|
|
5200
|
+
requires_approval: z.boolean().optional(),
|
|
5201
5201
|
}).transform((v) => {
|
|
5202
5202
|
return remap$(v, {
|
|
5203
5203
|
"requires_approval": "requiresApproval",
|
|
@@ -5206,7 +5206,7 @@ export const AgentToolInputRunRetrieveAgentsTool$inboundSchema: z.ZodType<
|
|
|
5206
5206
|
/** @internal */
|
|
5207
5207
|
export type AgentToolInputRunRetrieveAgentsTool$Outbound = {
|
|
5208
5208
|
type: string;
|
|
5209
|
-
requires_approval
|
|
5209
|
+
requires_approval?: boolean | undefined;
|
|
5210
5210
|
};
|
|
5211
5211
|
|
|
5212
5212
|
/** @internal */
|
|
@@ -5216,7 +5216,7 @@ export const AgentToolInputRunRetrieveAgentsTool$outboundSchema: z.ZodType<
|
|
|
5216
5216
|
AgentToolInputRunRetrieveAgentsTool
|
|
5217
5217
|
> = z.object({
|
|
5218
5218
|
type: RunAgentAgentToolInputRunAgentsRequestType$outboundSchema,
|
|
5219
|
-
requiresApproval: z.boolean().
|
|
5219
|
+
requiresApproval: z.boolean().optional(),
|
|
5220
5220
|
}).transform((v) => {
|
|
5221
5221
|
return remap$(v, {
|
|
5222
5222
|
requiresApproval: "requires_approval",
|
|
@@ -5259,7 +5259,7 @@ export const AgentToolInputRunCallSubAgentTool$inboundSchema: z.ZodType<
|
|
|
5259
5259
|
unknown
|
|
5260
5260
|
> = z.object({
|
|
5261
5261
|
type: RunAgentAgentToolInputRunAgentsType$inboundSchema,
|
|
5262
|
-
requires_approval: z.boolean().
|
|
5262
|
+
requires_approval: z.boolean().optional(),
|
|
5263
5263
|
}).transform((v) => {
|
|
5264
5264
|
return remap$(v, {
|
|
5265
5265
|
"requires_approval": "requiresApproval",
|
|
@@ -5268,7 +5268,7 @@ export const AgentToolInputRunCallSubAgentTool$inboundSchema: z.ZodType<
|
|
|
5268
5268
|
/** @internal */
|
|
5269
5269
|
export type AgentToolInputRunCallSubAgentTool$Outbound = {
|
|
5270
5270
|
type: string;
|
|
5271
|
-
requires_approval
|
|
5271
|
+
requires_approval?: boolean | undefined;
|
|
5272
5272
|
};
|
|
5273
5273
|
|
|
5274
5274
|
/** @internal */
|
|
@@ -5278,7 +5278,7 @@ export const AgentToolInputRunCallSubAgentTool$outboundSchema: z.ZodType<
|
|
|
5278
5278
|
AgentToolInputRunCallSubAgentTool
|
|
5279
5279
|
> = z.object({
|
|
5280
5280
|
type: RunAgentAgentToolInputRunAgentsType$outboundSchema,
|
|
5281
|
-
requiresApproval: z.boolean().
|
|
5281
|
+
requiresApproval: z.boolean().optional(),
|
|
5282
5282
|
}).transform((v) => {
|
|
5283
5283
|
return remap$(v, {
|
|
5284
5284
|
requiresApproval: "requires_approval",
|
|
@@ -5320,7 +5320,7 @@ export const AgentToolInputRunWebScraperTool$inboundSchema: z.ZodType<
|
|
|
5320
5320
|
unknown
|
|
5321
5321
|
> = z.object({
|
|
5322
5322
|
type: RunAgentAgentToolInputRunType$inboundSchema,
|
|
5323
|
-
requires_approval: z.boolean().
|
|
5323
|
+
requires_approval: z.boolean().optional(),
|
|
5324
5324
|
}).transform((v) => {
|
|
5325
5325
|
return remap$(v, {
|
|
5326
5326
|
"requires_approval": "requiresApproval",
|
|
@@ -5329,7 +5329,7 @@ export const AgentToolInputRunWebScraperTool$inboundSchema: z.ZodType<
|
|
|
5329
5329
|
/** @internal */
|
|
5330
5330
|
export type AgentToolInputRunWebScraperTool$Outbound = {
|
|
5331
5331
|
type: string;
|
|
5332
|
-
requires_approval
|
|
5332
|
+
requires_approval?: boolean | undefined;
|
|
5333
5333
|
};
|
|
5334
5334
|
|
|
5335
5335
|
/** @internal */
|
|
@@ -5339,7 +5339,7 @@ export const AgentToolInputRunWebScraperTool$outboundSchema: z.ZodType<
|
|
|
5339
5339
|
AgentToolInputRunWebScraperTool
|
|
5340
5340
|
> = z.object({
|
|
5341
5341
|
type: RunAgentAgentToolInputRunType$outboundSchema,
|
|
5342
|
-
requiresApproval: z.boolean().
|
|
5342
|
+
requiresApproval: z.boolean().optional(),
|
|
5343
5343
|
}).transform((v) => {
|
|
5344
5344
|
return remap$(v, {
|
|
5345
5345
|
requiresApproval: "requires_approval",
|
|
@@ -5381,7 +5381,7 @@ export const AgentToolInputRunGoogleSearchTool$inboundSchema: z.ZodType<
|
|
|
5381
5381
|
unknown
|
|
5382
5382
|
> = z.object({
|
|
5383
5383
|
type: AgentToolInputRunType$inboundSchema,
|
|
5384
|
-
requires_approval: z.boolean().
|
|
5384
|
+
requires_approval: z.boolean().optional(),
|
|
5385
5385
|
}).transform((v) => {
|
|
5386
5386
|
return remap$(v, {
|
|
5387
5387
|
"requires_approval": "requiresApproval",
|
|
@@ -5390,7 +5390,7 @@ export const AgentToolInputRunGoogleSearchTool$inboundSchema: z.ZodType<
|
|
|
5390
5390
|
/** @internal */
|
|
5391
5391
|
export type AgentToolInputRunGoogleSearchTool$Outbound = {
|
|
5392
5392
|
type: string;
|
|
5393
|
-
requires_approval
|
|
5393
|
+
requires_approval?: boolean | undefined;
|
|
5394
5394
|
};
|
|
5395
5395
|
|
|
5396
5396
|
/** @internal */
|
|
@@ -5400,7 +5400,7 @@ export const AgentToolInputRunGoogleSearchTool$outboundSchema: z.ZodType<
|
|
|
5400
5400
|
AgentToolInputRunGoogleSearchTool
|
|
5401
5401
|
> = z.object({
|
|
5402
5402
|
type: AgentToolInputRunType$outboundSchema,
|
|
5403
|
-
requiresApproval: z.boolean().
|
|
5403
|
+
requiresApproval: z.boolean().optional(),
|
|
5404
5404
|
}).transform((v) => {
|
|
5405
5405
|
return remap$(v, {
|
|
5406
5406
|
requiresApproval: "requires_approval",
|