@orq-ai/node 4.0.0-rc.38 → 4.0.0-rc.39
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 +237 -247
- package/bin/mcp-server.js.map +44 -44
- 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/createagent.d.ts +0 -5
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +0 -2
- 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 +12 -12
- package/models/operations/duplicateagent.d.ts +0 -5
- package/models/operations/duplicateagent.d.ts.map +1 -1
- package/models/operations/duplicateagent.js +0 -2
- package/models/operations/duplicateagent.js.map +1 -1
- package/models/operations/duplicatetool.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/getagent.d.ts +0 -5
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +0 -2
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.d.ts +0 -5
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +0 -2
- package/models/operations/listagents.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 +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/syncmcptool.js +12 -12
- package/models/operations/updateagent.d.ts +0 -5
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +0 -2
- 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 +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/createagent.ts +0 -7
- 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/duplicateagent.ts +0 -7
- package/src/models/operations/duplicatetool.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/getagent.ts +0 -7
- 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/listagents.ts +0 -7
- 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/syncmcptool.ts +12 -12
- package/src/models/operations/updateagent.ts +0 -7
- 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
|
@@ -2756,8 +2756,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2756
2756
|
> = z.object({
|
|
2757
2757
|
_id: z.string(),
|
|
2758
2758
|
description: z.string(),
|
|
2759
|
-
created: z.string().default("2025-11-
|
|
2760
|
-
updated: z.string().default("2025-11-
|
|
2759
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
2760
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
2761
2761
|
guardrail_config: z.union([
|
|
2762
2762
|
z.lazy(() =>
|
|
2763
2763
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2799,8 +2799,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2799
2799
|
> = z.object({
|
|
2800
2800
|
id: z.string(),
|
|
2801
2801
|
description: z.string(),
|
|
2802
|
-
created: z.string().default("2025-11-
|
|
2803
|
-
updated: z.string().default("2025-11-
|
|
2802
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
2803
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
2804
2804
|
guardrailConfig: z.union([
|
|
2805
2805
|
z.lazy(() =>
|
|
2806
2806
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3081,8 +3081,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3081
3081
|
.object({
|
|
3082
3082
|
_id: z.string(),
|
|
3083
3083
|
description: z.string(),
|
|
3084
|
-
created: z.string().default("2025-11-
|
|
3085
|
-
updated: z.string().default("2025-11-
|
|
3084
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
3086
3086
|
guardrail_config: z.union([
|
|
3087
3087
|
z.lazy(() =>
|
|
3088
3088
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3127,8 +3127,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3127
3127
|
> = z.object({
|
|
3128
3128
|
id: z.string(),
|
|
3129
3129
|
description: z.string(),
|
|
3130
|
-
created: z.string().default("2025-11-
|
|
3131
|
-
updated: z.string().default("2025-11-
|
|
3130
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
3131
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
3132
3132
|
guardrailConfig: z.union([
|
|
3133
3133
|
z.lazy(() =>
|
|
3134
3134
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5416,8 +5416,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5416
5416
|
> = z.object({
|
|
5417
5417
|
_id: z.string(),
|
|
5418
5418
|
description: z.string(),
|
|
5419
|
-
created: z.string().default("2025-11-
|
|
5420
|
-
updated: z.string().default("2025-11-
|
|
5419
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
5420
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
5421
5421
|
guardrail_config: z.union([
|
|
5422
5422
|
z.lazy(() =>
|
|
5423
5423
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5530,8 +5530,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5530
5530
|
> = z.object({
|
|
5531
5531
|
id: z.string(),
|
|
5532
5532
|
description: z.string(),
|
|
5533
|
-
created: z.string().default("2025-11-
|
|
5534
|
-
updated: z.string().default("2025-11-
|
|
5533
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
5534
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
5535
5535
|
guardrailConfig: z.union([
|
|
5536
5536
|
z.lazy(() =>
|
|
5537
5537
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5848,8 +5848,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5848
5848
|
> = z.object({
|
|
5849
5849
|
_id: z.string(),
|
|
5850
5850
|
description: z.string(),
|
|
5851
|
-
created: z.string().default("2025-11-
|
|
5852
|
-
updated: z.string().default("2025-11-
|
|
5851
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
5852
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
5853
5853
|
guardrail_config: z.union([
|
|
5854
5854
|
z.lazy(() =>
|
|
5855
5855
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5890,8 +5890,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5890
5890
|
> = z.object({
|
|
5891
5891
|
id: z.string(),
|
|
5892
5892
|
description: z.string(),
|
|
5893
|
-
created: z.string().default("2025-11-
|
|
5894
|
-
updated: z.string().default("2025-11-
|
|
5893
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
5894
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
5895
5895
|
guardrailConfig: z.union([
|
|
5896
5896
|
z.lazy(() =>
|
|
5897
5897
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6171,8 +6171,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6171
6171
|
> = z.object({
|
|
6172
6172
|
_id: z.string(),
|
|
6173
6173
|
description: z.string(),
|
|
6174
|
-
created: z.string().default("2025-11-
|
|
6175
|
-
updated: z.string().default("2025-11-
|
|
6174
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6175
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6176
6176
|
guardrail_config: z.union([
|
|
6177
6177
|
z.lazy(() =>
|
|
6178
6178
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6219,8 +6219,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6219
6219
|
> = z.object({
|
|
6220
6220
|
id: z.string(),
|
|
6221
6221
|
description: z.string(),
|
|
6222
|
-
created: z.string().default("2025-11-
|
|
6223
|
-
updated: z.string().default("2025-11-
|
|
6222
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6223
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6224
6224
|
guardrailConfig: z.union([
|
|
6225
6225
|
z.lazy(() =>
|
|
6226
6226
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6476,8 +6476,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6476
6476
|
> = z.object({
|
|
6477
6477
|
_id: z.string(),
|
|
6478
6478
|
description: z.string(),
|
|
6479
|
-
created: z.string().default("2025-11-
|
|
6480
|
-
updated: z.string().default("2025-11-
|
|
6479
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6480
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6481
6481
|
guardrail_config: z.union([
|
|
6482
6482
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6483
6483
|
z.lazy(() =>
|
|
@@ -6516,8 +6516,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6516
6516
|
> = z.object({
|
|
6517
6517
|
id: z.string(),
|
|
6518
6518
|
description: z.string(),
|
|
6519
|
-
created: z.string().default("2025-11-
|
|
6520
|
-
updated: z.string().default("2025-11-
|
|
6519
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6521
6521
|
guardrailConfig: z.union([
|
|
6522
6522
|
z.lazy(() =>
|
|
6523
6523
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6755,8 +6755,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6755
6755
|
> = z.object({
|
|
6756
6756
|
_id: z.string(),
|
|
6757
6757
|
description: z.string(),
|
|
6758
|
-
created: z.string().default("2025-11-
|
|
6759
|
-
updated: z.string().default("2025-11-
|
|
6758
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6759
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6760
6760
|
guardrail_config: z.union([
|
|
6761
6761
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6762
6762
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6795,8 +6795,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6795
6795
|
> = z.object({
|
|
6796
6796
|
id: z.string(),
|
|
6797
6797
|
description: z.string(),
|
|
6798
|
-
created: z.string().default("2025-11-
|
|
6799
|
-
updated: z.string().default("2025-11-
|
|
6798
|
+
created: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6799
|
+
updated: z.string().default("2025-11-17T09:11:41.816Z"),
|
|
6800
6800
|
guardrailConfig: z.union([
|
|
6801
6801
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6802
6802
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2571,7 +2571,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2571
2571
|
z.ZodTypeDef,
|
|
2572
2572
|
unknown
|
|
2573
2573
|
> = z.object({
|
|
2574
|
-
_id: z.string().default("
|
|
2574
|
+
_id: z.string().default("tool_01KA8HBD7VJV0G4W8D4Z1ZPCWG"),
|
|
2575
2575
|
path: z.string(),
|
|
2576
2576
|
key: z.string(),
|
|
2577
2577
|
display_name: z.string().optional(),
|
|
@@ -2625,7 +2625,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2625
2625
|
z.ZodTypeDef,
|
|
2626
2626
|
ResponseBody5
|
|
2627
2627
|
> = z.object({
|
|
2628
|
-
id: z.string().default("
|
|
2628
|
+
id: z.string().default("tool_01KA8HBD7VJV0G4W8D4Z1ZPCWG"),
|
|
2629
2629
|
path: z.string(),
|
|
2630
2630
|
key: z.string(),
|
|
2631
2631
|
displayName: z.string().optional(),
|
|
@@ -2795,7 +2795,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2795
2795
|
z.ZodTypeDef,
|
|
2796
2796
|
unknown
|
|
2797
2797
|
> = z.object({
|
|
2798
|
-
id: z.string().default("
|
|
2798
|
+
id: z.string().default("01KA8HBD7R3209AH8MYHK750DG"),
|
|
2799
2799
|
name: z.string(),
|
|
2800
2800
|
description: z.string().optional(),
|
|
2801
2801
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2814,7 +2814,7 @@ export const ResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2814
2814
|
z.ZodTypeDef,
|
|
2815
2815
|
ResponseBodyTools
|
|
2816
2816
|
> = z.object({
|
|
2817
|
-
id: z.string().default("
|
|
2817
|
+
id: z.string().default("01KA8HBD7R3209AH8MYHK750DG"),
|
|
2818
2818
|
name: z.string(),
|
|
2819
2819
|
description: z.string().optional(),
|
|
2820
2820
|
schema: z.lazy(() => CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -2909,7 +2909,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2909
2909
|
z.ZodTypeDef,
|
|
2910
2910
|
unknown
|
|
2911
2911
|
> = z.object({
|
|
2912
|
-
_id: z.string().default("
|
|
2912
|
+
_id: z.string().default("tool_01KA8HBD7PSF1SCKPWCK9V6WTV"),
|
|
2913
2913
|
path: z.string(),
|
|
2914
2914
|
key: z.string(),
|
|
2915
2915
|
display_name: z.string().optional(),
|
|
@@ -2962,7 +2962,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2962
2962
|
z.ZodTypeDef,
|
|
2963
2963
|
ResponseBody4
|
|
2964
2964
|
> = z.object({
|
|
2965
|
-
id: z.string().default("
|
|
2965
|
+
id: z.string().default("tool_01KA8HBD7PSF1SCKPWCK9V6WTV"),
|
|
2966
2966
|
path: z.string(),
|
|
2967
2967
|
key: z.string(),
|
|
2968
2968
|
displayName: z.string().optional(),
|
|
@@ -3318,7 +3318,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
3318
3318
|
z.ZodTypeDef,
|
|
3319
3319
|
unknown
|
|
3320
3320
|
> = z.object({
|
|
3321
|
-
_id: z.string().default("
|
|
3321
|
+
_id: z.string().default("tool_01KA8HBD7KB75J1VD15M8Q0YGD"),
|
|
3322
3322
|
path: z.string(),
|
|
3323
3323
|
key: z.string(),
|
|
3324
3324
|
display_name: z.string().optional(),
|
|
@@ -3369,7 +3369,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
3369
3369
|
z.ZodTypeDef,
|
|
3370
3370
|
ResponseBody3
|
|
3371
3371
|
> = z.object({
|
|
3372
|
-
id: z.string().default("
|
|
3372
|
+
id: z.string().default("tool_01KA8HBD7KB75J1VD15M8Q0YGD"),
|
|
3373
3373
|
path: z.string(),
|
|
3374
3374
|
key: z.string(),
|
|
3375
3375
|
displayName: z.string().optional(),
|
|
@@ -3539,7 +3539,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
3539
3539
|
z.ZodTypeDef,
|
|
3540
3540
|
unknown
|
|
3541
3541
|
> = z.object({
|
|
3542
|
-
_id: z.string().default("
|
|
3542
|
+
_id: z.string().default("tool_01KA8HBD7HRJQV1NRKR8NQA757"),
|
|
3543
3543
|
path: z.string(),
|
|
3544
3544
|
key: z.string(),
|
|
3545
3545
|
display_name: z.string().optional(),
|
|
@@ -3591,7 +3591,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
3591
3591
|
z.ZodTypeDef,
|
|
3592
3592
|
ResponseBody2
|
|
3593
3593
|
> = z.object({
|
|
3594
|
-
id: z.string().default("
|
|
3594
|
+
id: z.string().default("tool_01KA8HBD7HRJQV1NRKR8NQA757"),
|
|
3595
3595
|
path: z.string(),
|
|
3596
3596
|
key: z.string(),
|
|
3597
3597
|
displayName: z.string().optional(),
|
|
@@ -3777,7 +3777,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3777
3777
|
z.ZodTypeDef,
|
|
3778
3778
|
unknown
|
|
3779
3779
|
> = z.object({
|
|
3780
|
-
_id: z.string().default("
|
|
3780
|
+
_id: z.string().default("tool_01KA8HBD7FWGVSPR1ED9G283ZF"),
|
|
3781
3781
|
path: z.string(),
|
|
3782
3782
|
key: z.string(),
|
|
3783
3783
|
display_name: z.string().optional(),
|
|
@@ -3828,7 +3828,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3828
3828
|
z.ZodTypeDef,
|
|
3829
3829
|
ResponseBody1
|
|
3830
3830
|
> = z.object({
|
|
3831
|
-
id: z.string().default("
|
|
3831
|
+
id: z.string().default("tool_01KA8HBD7FWGVSPR1ED9G283ZF"),
|
|
3832
3832
|
path: z.string(),
|
|
3833
3833
|
key: z.string(),
|
|
3834
3834
|
displayName: z.string().optional(),
|
|
@@ -77,10 +77,6 @@ export type DuplicateAgentTools = {
|
|
|
77
77
|
description?: string | undefined;
|
|
78
78
|
requiresApproval?: boolean | undefined;
|
|
79
79
|
conditions?: Array<DuplicateAgentConditions> | undefined;
|
|
80
|
-
/**
|
|
81
|
-
* Optional MCP server reference for tools from MCP servers
|
|
82
|
-
*/
|
|
83
|
-
mcpServer?: string | undefined;
|
|
84
80
|
/**
|
|
85
81
|
* Tool execution timeout in seconds (default: 2 minutes, max: 10 minutes)
|
|
86
82
|
*/
|
|
@@ -1057,7 +1053,6 @@ export const DuplicateAgentTools$inboundSchema: z.ZodType<
|
|
|
1057
1053
|
requires_approval: z.boolean().default(false),
|
|
1058
1054
|
conditions: z.array(z.lazy(() => DuplicateAgentConditions$inboundSchema))
|
|
1059
1055
|
.optional(),
|
|
1060
|
-
mcpServer: z.string().optional(),
|
|
1061
1056
|
timeout: z.number().default(120),
|
|
1062
1057
|
}).transform((v) => {
|
|
1063
1058
|
return remap$(v, {
|
|
@@ -1075,7 +1070,6 @@ export type DuplicateAgentTools$Outbound = {
|
|
|
1075
1070
|
description?: string | undefined;
|
|
1076
1071
|
requires_approval: boolean;
|
|
1077
1072
|
conditions?: Array<DuplicateAgentConditions$Outbound> | undefined;
|
|
1078
|
-
mcpServer?: string | undefined;
|
|
1079
1073
|
timeout: number;
|
|
1080
1074
|
};
|
|
1081
1075
|
|
|
@@ -1093,7 +1087,6 @@ export const DuplicateAgentTools$outboundSchema: z.ZodType<
|
|
|
1093
1087
|
requiresApproval: z.boolean().default(false),
|
|
1094
1088
|
conditions: z.array(z.lazy(() => DuplicateAgentConditions$outboundSchema))
|
|
1095
1089
|
.optional(),
|
|
1096
|
-
mcpServer: z.string().optional(),
|
|
1097
1090
|
timeout: z.number().default(120),
|
|
1098
1091
|
}).transform((v) => {
|
|
1099
1092
|
return remap$(v, {
|
|
@@ -970,7 +970,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
970
970
|
z.ZodTypeDef,
|
|
971
971
|
unknown
|
|
972
972
|
> = z.object({
|
|
973
|
-
_id: z.string().default("
|
|
973
|
+
_id: z.string().default("tool_01KA8HBD909ANYQSGXTQ21GJRS"),
|
|
974
974
|
path: z.string(),
|
|
975
975
|
key: z.string(),
|
|
976
976
|
display_name: z.string().optional(),
|
|
@@ -1025,7 +1025,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
1025
1025
|
z.ZodTypeDef,
|
|
1026
1026
|
DuplicateToolResponseBody5
|
|
1027
1027
|
> = z.object({
|
|
1028
|
-
id: z.string().default("
|
|
1028
|
+
id: z.string().default("tool_01KA8HBD909ANYQSGXTQ21GJRS"),
|
|
1029
1029
|
path: z.string(),
|
|
1030
1030
|
key: z.string(),
|
|
1031
1031
|
displayName: z.string().optional(),
|
|
@@ -1205,7 +1205,7 @@ export const DuplicateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1205
1205
|
z.ZodTypeDef,
|
|
1206
1206
|
unknown
|
|
1207
1207
|
> = z.object({
|
|
1208
|
-
id: z.string().default("
|
|
1208
|
+
id: z.string().default("01KA8HBD9019SC3WP9MNE8YSWX"),
|
|
1209
1209
|
name: z.string(),
|
|
1210
1210
|
description: z.string().optional(),
|
|
1211
1211
|
schema: z.lazy(() => DuplicateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -1224,7 +1224,7 @@ export const DuplicateToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1224
1224
|
z.ZodTypeDef,
|
|
1225
1225
|
DuplicateToolResponseBodyTools
|
|
1226
1226
|
> = z.object({
|
|
1227
|
-
id: z.string().default("
|
|
1227
|
+
id: z.string().default("01KA8HBD9019SC3WP9MNE8YSWX"),
|
|
1228
1228
|
name: z.string(),
|
|
1229
1229
|
description: z.string().optional(),
|
|
1230
1230
|
schema: z.lazy(() => DuplicateToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1330,7 +1330,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1330
1330
|
z.ZodTypeDef,
|
|
1331
1331
|
unknown
|
|
1332
1332
|
> = z.object({
|
|
1333
|
-
_id: z.string().default("
|
|
1333
|
+
_id: z.string().default("tool_01KA8HBD8ZJBR402A36GXF2Y1K"),
|
|
1334
1334
|
path: z.string(),
|
|
1335
1335
|
key: z.string(),
|
|
1336
1336
|
display_name: z.string().optional(),
|
|
@@ -1383,7 +1383,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1383
1383
|
z.ZodTypeDef,
|
|
1384
1384
|
DuplicateToolResponseBody4
|
|
1385
1385
|
> = z.object({
|
|
1386
|
-
id: z.string().default("
|
|
1386
|
+
id: z.string().default("tool_01KA8HBD8ZJBR402A36GXF2Y1K"),
|
|
1387
1387
|
path: z.string(),
|
|
1388
1388
|
key: z.string(),
|
|
1389
1389
|
displayName: z.string().optional(),
|
|
@@ -1764,7 +1764,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1764
1764
|
z.ZodTypeDef,
|
|
1765
1765
|
unknown
|
|
1766
1766
|
> = z.object({
|
|
1767
|
-
_id: z.string().default("
|
|
1767
|
+
_id: z.string().default("tool_01KA8HBD8XSVXAM5PDKSKFDTT9"),
|
|
1768
1768
|
path: z.string(),
|
|
1769
1769
|
key: z.string(),
|
|
1770
1770
|
display_name: z.string().optional(),
|
|
@@ -1817,7 +1817,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1817
1817
|
z.ZodTypeDef,
|
|
1818
1818
|
DuplicateToolResponseBody3
|
|
1819
1819
|
> = z.object({
|
|
1820
|
-
id: z.string().default("
|
|
1820
|
+
id: z.string().default("tool_01KA8HBD8XSVXAM5PDKSKFDTT9"),
|
|
1821
1821
|
path: z.string(),
|
|
1822
1822
|
key: z.string(),
|
|
1823
1823
|
displayName: z.string().optional(),
|
|
@@ -1999,7 +1999,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1999
1999
|
z.ZodTypeDef,
|
|
2000
2000
|
unknown
|
|
2001
2001
|
> = z.object({
|
|
2002
|
-
_id: z.string().default("
|
|
2002
|
+
_id: z.string().default("tool_01KA8HBD8WRP0MJQ84Z62ANS92"),
|
|
2003
2003
|
path: z.string(),
|
|
2004
2004
|
key: z.string(),
|
|
2005
2005
|
display_name: z.string().optional(),
|
|
@@ -2051,7 +2051,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
2051
2051
|
z.ZodTypeDef,
|
|
2052
2052
|
DuplicateToolResponseBody2
|
|
2053
2053
|
> = z.object({
|
|
2054
|
-
id: z.string().default("
|
|
2054
|
+
id: z.string().default("tool_01KA8HBD8WRP0MJQ84Z62ANS92"),
|
|
2055
2055
|
path: z.string(),
|
|
2056
2056
|
key: z.string(),
|
|
2057
2057
|
displayName: z.string().optional(),
|
|
@@ -2249,7 +2249,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2249
2249
|
z.ZodTypeDef,
|
|
2250
2250
|
unknown
|
|
2251
2251
|
> = z.object({
|
|
2252
|
-
_id: z.string().default("
|
|
2252
|
+
_id: z.string().default("tool_01KA8HBD8TRS52AYEBB5D6NN6W"),
|
|
2253
2253
|
path: z.string(),
|
|
2254
2254
|
key: z.string(),
|
|
2255
2255
|
display_name: z.string().optional(),
|
|
@@ -2300,7 +2300,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2300
2300
|
z.ZodTypeDef,
|
|
2301
2301
|
DuplicateToolResponseBody1
|
|
2302
2302
|
> = z.object({
|
|
2303
|
-
id: z.string().default("
|
|
2303
|
+
id: z.string().default("tool_01KA8HBD8TRS52AYEBB5D6NN6W"),
|
|
2304
2304
|
path: z.string(),
|
|
2305
2305
|
key: z.string(),
|
|
2306
2306
|
displayName: z.string().optional(),
|
|
@@ -119,7 +119,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
119
119
|
file_name: z.string(),
|
|
120
120
|
workspace_id: z.string(),
|
|
121
121
|
created: z.string().datetime({ offset: true }).default(
|
|
122
|
-
"2025-11-
|
|
122
|
+
"2025-11-17T09:11:42.760Z",
|
|
123
123
|
).transform(v => new Date(v)),
|
|
124
124
|
}).transform((v) => {
|
|
125
125
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
152
152
|
bytes: z.number(),
|
|
153
153
|
fileName: z.string(),
|
|
154
154
|
workspaceId: z.string(),
|
|
155
|
-
created: z.date().default(() => new Date("2025-11-
|
|
155
|
+
created: z.date().default(() => new Date("2025-11-17T09:11:42.760Z"))
|
|
156
156
|
.transform(v => v.toISOString()),
|
|
157
157
|
}).transform((v) => {
|
|
158
158
|
return remap$(v, {
|
|
@@ -157,7 +157,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
157
157
|
file_name: z.string(),
|
|
158
158
|
workspace_id: z.string(),
|
|
159
159
|
created: z.string().datetime({ offset: true }).default(
|
|
160
|
-
"2025-11-
|
|
160
|
+
"2025-11-17T09:11:42.760Z",
|
|
161
161
|
).transform(v => new Date(v)),
|
|
162
162
|
}).transform((v) => {
|
|
163
163
|
return remap$(v, {
|
|
@@ -190,7 +190,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
190
190
|
bytes: z.number(),
|
|
191
191
|
fileName: z.string(),
|
|
192
192
|
workspaceId: z.string(),
|
|
193
|
-
created: z.date().default(() => new Date("2025-11-
|
|
193
|
+
created: z.date().default(() => new Date("2025-11-17T09:11:42.760Z"))
|
|
194
194
|
.transform(v => v.toISOString()),
|
|
195
195
|
}).transform((v) => {
|
|
196
196
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-11-
|
|
199
|
+
"2025-11-17T09:11:42.760Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -229,7 +229,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
229
229
|
bytes: z.number(),
|
|
230
230
|
fileName: z.string(),
|
|
231
231
|
workspaceId: z.string(),
|
|
232
|
-
created: z.date().default(() => new Date("2025-11-
|
|
232
|
+
created: z.date().default(() => new Date("2025-11-17T09:11:42.760Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -77,10 +77,6 @@ export type GetAgentTools = {
|
|
|
77
77
|
description?: string | undefined;
|
|
78
78
|
requiresApproval?: boolean | undefined;
|
|
79
79
|
conditions?: Array<GetAgentConditions> | undefined;
|
|
80
|
-
/**
|
|
81
|
-
* Optional MCP server reference for tools from MCP servers
|
|
82
|
-
*/
|
|
83
|
-
mcpServer?: string | undefined;
|
|
84
80
|
/**
|
|
85
81
|
* Tool execution timeout in seconds (default: 2 minutes, max: 10 minutes)
|
|
86
82
|
*/
|
|
@@ -1044,7 +1040,6 @@ export const GetAgentTools$inboundSchema: z.ZodType<
|
|
|
1044
1040
|
requires_approval: z.boolean().default(false),
|
|
1045
1041
|
conditions: z.array(z.lazy(() => GetAgentConditions$inboundSchema))
|
|
1046
1042
|
.optional(),
|
|
1047
|
-
mcpServer: z.string().optional(),
|
|
1048
1043
|
timeout: z.number().default(120),
|
|
1049
1044
|
}).transform((v) => {
|
|
1050
1045
|
return remap$(v, {
|
|
@@ -1062,7 +1057,6 @@ export type GetAgentTools$Outbound = {
|
|
|
1062
1057
|
description?: string | undefined;
|
|
1063
1058
|
requires_approval: boolean;
|
|
1064
1059
|
conditions?: Array<GetAgentConditions$Outbound> | undefined;
|
|
1065
|
-
mcpServer?: string | undefined;
|
|
1066
1060
|
timeout: number;
|
|
1067
1061
|
};
|
|
1068
1062
|
|
|
@@ -1080,7 +1074,6 @@ export const GetAgentTools$outboundSchema: z.ZodType<
|
|
|
1080
1074
|
requiresApproval: z.boolean().default(false),
|
|
1081
1075
|
conditions: z.array(z.lazy(() => GetAgentConditions$outboundSchema))
|
|
1082
1076
|
.optional(),
|
|
1083
|
-
mcpServer: z.string().optional(),
|
|
1084
1077
|
timeout: z.number().default(120),
|
|
1085
1078
|
}).transform((v) => {
|
|
1086
1079
|
return remap$(v, {
|
|
@@ -876,7 +876,7 @@ export function dataCodeToolFromJSON(
|
|
|
876
876
|
/** @internal */
|
|
877
877
|
export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
|
|
878
878
|
.object({
|
|
879
|
-
_id: z.string().default("
|
|
879
|
+
_id: z.string().default("tool_01KA8HBD70KGK5T22T26H2Y3Z5"),
|
|
880
880
|
path: z.string(),
|
|
881
881
|
key: z.string(),
|
|
882
882
|
display_name: z.string().optional(),
|
|
@@ -928,7 +928,7 @@ export const Data5$outboundSchema: z.ZodType<
|
|
|
928
928
|
z.ZodTypeDef,
|
|
929
929
|
Data5
|
|
930
930
|
> = z.object({
|
|
931
|
-
id: z.string().default("
|
|
931
|
+
id: z.string().default("tool_01KA8HBD70KGK5T22T26H2Y3Z5"),
|
|
932
932
|
path: z.string(),
|
|
933
933
|
key: z.string(),
|
|
934
934
|
displayName: z.string().optional(),
|
|
@@ -1092,7 +1092,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
1092
1092
|
z.ZodTypeDef,
|
|
1093
1093
|
unknown
|
|
1094
1094
|
> = z.object({
|
|
1095
|
-
id: z.string().default("
|
|
1095
|
+
id: z.string().default("01KA8HBD6ZPXZ8HQCM2ZTQ09FA"),
|
|
1096
1096
|
name: z.string(),
|
|
1097
1097
|
description: z.string().optional(),
|
|
1098
1098
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -1111,7 +1111,7 @@ export const DataTools$outboundSchema: z.ZodType<
|
|
|
1111
1111
|
z.ZodTypeDef,
|
|
1112
1112
|
DataTools
|
|
1113
1113
|
> = z.object({
|
|
1114
|
-
id: z.string().default("
|
|
1114
|
+
id: z.string().default("01KA8HBD6ZPXZ8HQCM2ZTQ09FA"),
|
|
1115
1115
|
name: z.string(),
|
|
1116
1116
|
description: z.string().optional(),
|
|
1117
1117
|
schema: z.lazy(() => GetAllToolsDataSchema$outboundSchema),
|
|
@@ -1193,7 +1193,7 @@ export function dataMcpFromJSON(
|
|
|
1193
1193
|
/** @internal */
|
|
1194
1194
|
export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
|
|
1195
1195
|
.object({
|
|
1196
|
-
_id: z.string().default("
|
|
1196
|
+
_id: z.string().default("tool_01KA8HBD6XVPS8QD24QVGM3PCB"),
|
|
1197
1197
|
path: z.string(),
|
|
1198
1198
|
key: z.string(),
|
|
1199
1199
|
display_name: z.string().optional(),
|
|
@@ -1244,7 +1244,7 @@ export const Data4$outboundSchema: z.ZodType<
|
|
|
1244
1244
|
z.ZodTypeDef,
|
|
1245
1245
|
Data4
|
|
1246
1246
|
> = z.object({
|
|
1247
|
-
id: z.string().default("
|
|
1247
|
+
id: z.string().default("tool_01KA8HBD6XVPS8QD24QVGM3PCB"),
|
|
1248
1248
|
path: z.string(),
|
|
1249
1249
|
key: z.string(),
|
|
1250
1250
|
displayName: z.string().optional(),
|
|
@@ -1584,7 +1584,7 @@ export function getAllToolsDataHttpFromJSON(
|
|
|
1584
1584
|
/** @internal */
|
|
1585
1585
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
1586
1586
|
.object({
|
|
1587
|
-
_id: z.string().default("
|
|
1587
|
+
_id: z.string().default("tool_01KA8HBD6TKC087TH4BDDDR0FM"),
|
|
1588
1588
|
path: z.string(),
|
|
1589
1589
|
key: z.string(),
|
|
1590
1590
|
display_name: z.string().optional(),
|
|
@@ -1635,7 +1635,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
1635
1635
|
z.ZodTypeDef,
|
|
1636
1636
|
Data3
|
|
1637
1637
|
> = z.object({
|
|
1638
|
-
id: z.string().default("
|
|
1638
|
+
id: z.string().default("tool_01KA8HBD6TKC087TH4BDDDR0FM"),
|
|
1639
1639
|
path: z.string(),
|
|
1640
1640
|
key: z.string(),
|
|
1641
1641
|
displayName: z.string().optional(),
|
|
@@ -1794,7 +1794,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
1794
1794
|
/** @internal */
|
|
1795
1795
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
1796
1796
|
.object({
|
|
1797
|
-
_id: z.string().default("
|
|
1797
|
+
_id: z.string().default("tool_01KA8HBD6S09VJ37T3Z7FZGDGY"),
|
|
1798
1798
|
path: z.string(),
|
|
1799
1799
|
key: z.string(),
|
|
1800
1800
|
display_name: z.string().optional(),
|
|
@@ -1846,7 +1846,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
1846
1846
|
z.ZodTypeDef,
|
|
1847
1847
|
Data2
|
|
1848
1848
|
> = z.object({
|
|
1849
|
-
id: z.string().default("
|
|
1849
|
+
id: z.string().default("tool_01KA8HBD6S09VJ37T3Z7FZGDGY"),
|
|
1850
1850
|
path: z.string(),
|
|
1851
1851
|
key: z.string(),
|
|
1852
1852
|
displayName: z.string().optional(),
|
|
@@ -2024,7 +2024,7 @@ export function getAllToolsDataFunctionFromJSON(
|
|
|
2024
2024
|
/** @internal */
|
|
2025
2025
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
2026
2026
|
.object({
|
|
2027
|
-
_id: z.string().default("
|
|
2027
|
+
_id: z.string().default("tool_01KA8HBD6QTZAPF8ENW1KRCBCK"),
|
|
2028
2028
|
path: z.string(),
|
|
2029
2029
|
key: z.string(),
|
|
2030
2030
|
display_name: z.string().optional(),
|
|
@@ -2075,7 +2075,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
2075
2075
|
z.ZodTypeDef,
|
|
2076
2076
|
Data1
|
|
2077
2077
|
> = z.object({
|
|
2078
|
-
id: z.string().default("
|
|
2078
|
+
id: z.string().default("tool_01KA8HBD6QTZAPF8ENW1KRCBCK"),
|
|
2079
2079
|
path: z.string(),
|
|
2080
2080
|
key: z.string(),
|
|
2081
2081
|
displayName: z.string().optional(),
|
|
@@ -291,7 +291,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
291
291
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
292
292
|
.optional(),
|
|
293
293
|
updated: z.string().datetime({ offset: true }).default(
|
|
294
|
-
"2025-11-
|
|
294
|
+
"2025-11-17T09:11:40.171Z",
|
|
295
295
|
).transform(v => new Date(v)),
|
|
296
296
|
}).transform((v) => {
|
|
297
297
|
return remap$(v, {
|
|
@@ -328,7 +328,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
328
328
|
isActive: z.boolean(),
|
|
329
329
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
330
330
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
331
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
331
|
+
updated: z.date().default(() => new Date("2025-11-17T09:11:40.171Z"))
|
|
332
332
|
.transform(v => v.toISOString()),
|
|
333
333
|
}).transform((v) => {
|
|
334
334
|
return remap$(v, {
|