@orq-ai/node 4.0.0-rc.36 → 4.0.0-rc.38
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 +256 -222
- 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 +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 +5 -0
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +2 -0
- 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.d.ts +2 -0
- package/models/operations/createtool.d.ts.map +1 -1
- package/models/operations/createtool.js +12 -10
- package/models/operations/createtool.js.map +1 -1
- package/models/operations/duplicateagent.d.ts +5 -0
- package/models/operations/duplicateagent.d.ts.map +1 -1
- package/models/operations/duplicateagent.js +2 -0
- package/models/operations/duplicateagent.js.map +1 -1
- package/models/operations/duplicatetool.d.ts +13 -1
- package/models/operations/duplicatetool.d.ts.map +1 -1
- package/models/operations/duplicatetool.js +16 -10
- package/models/operations/duplicatetool.js.map +1 -1
- 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 +5 -0
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +2 -0
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getalltools.d.ts +2 -0
- package/models/operations/getalltools.d.ts.map +1 -1
- package/models/operations/getalltools.js +12 -10
- package/models/operations/getalltools.js.map +1 -1
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.d.ts +5 -0
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +2 -0
- 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.d.ts +2 -0
- package/models/operations/retrievetool.d.ts.map +1 -1
- package/models/operations/retrievetool.js +12 -10
- package/models/operations/retrievetool.js.map +1 -1
- package/models/operations/runagent.d.ts +2 -0
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +2 -0
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +2 -0
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +2 -0
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/syncmcptool.d.ts +2 -0
- package/models/operations/syncmcptool.d.ts.map +1 -1
- package/models/operations/syncmcptool.js +12 -10
- package/models/operations/syncmcptool.js.map +1 -1
- package/models/operations/updateagent.d.ts +5 -0
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +2 -0
- 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.d.ts +9 -0
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +16 -10
- package/models/operations/updatetool.js.map +1 -1
- package/package.json +1 -1
- 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 +7 -0
- 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 +14 -10
- package/src/models/operations/duplicateagent.ts +7 -0
- package/src/models/operations/duplicatetool.ts +29 -11
- 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 +7 -0
- package/src/models/operations/getalltools.ts +14 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +7 -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 +14 -10
- package/src/models/operations/runagent.ts +4 -0
- package/src/models/operations/streamrunagent.ts +4 -0
- package/src/models/operations/syncmcptool.ts +14 -10
- package/src/models/operations/updateagent.ts +7 -0
- 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 +25 -10
|
@@ -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-17T07:33:21.657Z"),
|
|
2760
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
2803
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
3131
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
5420
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
5534
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
5852
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
5894
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6175
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6223
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6480
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6759
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
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-17T07:33:21.657Z"),
|
|
6799
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6800
6800
|
guardrailConfig: z.union([
|
|
6801
6801
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6802
6802
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -728,6 +728,7 @@ export type CreateToolResponseBodySchema = {
|
|
|
728
728
|
};
|
|
729
729
|
|
|
730
730
|
export type ResponseBodyTools = {
|
|
731
|
+
id?: string | undefined;
|
|
731
732
|
name: string;
|
|
732
733
|
description?: string | undefined;
|
|
733
734
|
schema: CreateToolResponseBodySchema;
|
|
@@ -2570,7 +2571,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2570
2571
|
z.ZodTypeDef,
|
|
2571
2572
|
unknown
|
|
2572
2573
|
> = z.object({
|
|
2573
|
-
_id: z.string().default("
|
|
2574
|
+
_id: z.string().default("tool_01KA8BQBBDBEZGA4RG88QHAGA1"),
|
|
2574
2575
|
path: z.string(),
|
|
2575
2576
|
key: z.string(),
|
|
2576
2577
|
display_name: z.string().optional(),
|
|
@@ -2624,7 +2625,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2624
2625
|
z.ZodTypeDef,
|
|
2625
2626
|
ResponseBody5
|
|
2626
2627
|
> = z.object({
|
|
2627
|
-
id: z.string().default("
|
|
2628
|
+
id: z.string().default("tool_01KA8BQBBDBEZGA4RG88QHAGA1"),
|
|
2628
2629
|
path: z.string(),
|
|
2629
2630
|
key: z.string(),
|
|
2630
2631
|
displayName: z.string().optional(),
|
|
@@ -2794,12 +2795,14 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2794
2795
|
z.ZodTypeDef,
|
|
2795
2796
|
unknown
|
|
2796
2797
|
> = z.object({
|
|
2798
|
+
id: z.string().default("01KA8BQBBCMB33S5B0XQ3NVRT4"),
|
|
2797
2799
|
name: z.string(),
|
|
2798
2800
|
description: z.string().optional(),
|
|
2799
2801
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
2800
2802
|
});
|
|
2801
2803
|
/** @internal */
|
|
2802
2804
|
export type ResponseBodyTools$Outbound = {
|
|
2805
|
+
id: string;
|
|
2803
2806
|
name: string;
|
|
2804
2807
|
description?: string | undefined;
|
|
2805
2808
|
schema: CreateToolResponseBodySchema$Outbound;
|
|
@@ -2811,6 +2814,7 @@ export const ResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2811
2814
|
z.ZodTypeDef,
|
|
2812
2815
|
ResponseBodyTools
|
|
2813
2816
|
> = z.object({
|
|
2817
|
+
id: z.string().default("01KA8BQBBCMB33S5B0XQ3NVRT4"),
|
|
2814
2818
|
name: z.string(),
|
|
2815
2819
|
description: z.string().optional(),
|
|
2816
2820
|
schema: z.lazy(() => CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -2905,7 +2909,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2905
2909
|
z.ZodTypeDef,
|
|
2906
2910
|
unknown
|
|
2907
2911
|
> = z.object({
|
|
2908
|
-
_id: z.string().default("
|
|
2912
|
+
_id: z.string().default("tool_01KA8BQBB9AAX8K57J5K8D14N3"),
|
|
2909
2913
|
path: z.string(),
|
|
2910
2914
|
key: z.string(),
|
|
2911
2915
|
display_name: z.string().optional(),
|
|
@@ -2958,7 +2962,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2958
2962
|
z.ZodTypeDef,
|
|
2959
2963
|
ResponseBody4
|
|
2960
2964
|
> = z.object({
|
|
2961
|
-
id: z.string().default("
|
|
2965
|
+
id: z.string().default("tool_01KA8BQBB9AAX8K57J5K8D14N3"),
|
|
2962
2966
|
path: z.string(),
|
|
2963
2967
|
key: z.string(),
|
|
2964
2968
|
displayName: z.string().optional(),
|
|
@@ -3314,7 +3318,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
3314
3318
|
z.ZodTypeDef,
|
|
3315
3319
|
unknown
|
|
3316
3320
|
> = z.object({
|
|
3317
|
-
_id: z.string().default("
|
|
3321
|
+
_id: z.string().default("tool_01KA8BQBB6NXCCC22XD1HNC2X0"),
|
|
3318
3322
|
path: z.string(),
|
|
3319
3323
|
key: z.string(),
|
|
3320
3324
|
display_name: z.string().optional(),
|
|
@@ -3365,7 +3369,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
3365
3369
|
z.ZodTypeDef,
|
|
3366
3370
|
ResponseBody3
|
|
3367
3371
|
> = z.object({
|
|
3368
|
-
id: z.string().default("
|
|
3372
|
+
id: z.string().default("tool_01KA8BQBB6NXCCC22XD1HNC2X0"),
|
|
3369
3373
|
path: z.string(),
|
|
3370
3374
|
key: z.string(),
|
|
3371
3375
|
displayName: z.string().optional(),
|
|
@@ -3535,7 +3539,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
3535
3539
|
z.ZodTypeDef,
|
|
3536
3540
|
unknown
|
|
3537
3541
|
> = z.object({
|
|
3538
|
-
_id: z.string().default("
|
|
3542
|
+
_id: z.string().default("tool_01KA8BQBB3VTH2BNKT75M2237T"),
|
|
3539
3543
|
path: z.string(),
|
|
3540
3544
|
key: z.string(),
|
|
3541
3545
|
display_name: z.string().optional(),
|
|
@@ -3587,7 +3591,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
3587
3591
|
z.ZodTypeDef,
|
|
3588
3592
|
ResponseBody2
|
|
3589
3593
|
> = z.object({
|
|
3590
|
-
id: z.string().default("
|
|
3594
|
+
id: z.string().default("tool_01KA8BQBB3VTH2BNKT75M2237T"),
|
|
3591
3595
|
path: z.string(),
|
|
3592
3596
|
key: z.string(),
|
|
3593
3597
|
displayName: z.string().optional(),
|
|
@@ -3773,7 +3777,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3773
3777
|
z.ZodTypeDef,
|
|
3774
3778
|
unknown
|
|
3775
3779
|
> = z.object({
|
|
3776
|
-
_id: z.string().default("
|
|
3780
|
+
_id: z.string().default("tool_01KA8BQBB1R37YQMCR7XEX3KCT"),
|
|
3777
3781
|
path: z.string(),
|
|
3778
3782
|
key: z.string(),
|
|
3779
3783
|
display_name: z.string().optional(),
|
|
@@ -3824,7 +3828,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3824
3828
|
z.ZodTypeDef,
|
|
3825
3829
|
ResponseBody1
|
|
3826
3830
|
> = z.object({
|
|
3827
|
-
id: z.string().default("
|
|
3831
|
+
id: z.string().default("tool_01KA8BQBB1R37YQMCR7XEX3KCT"),
|
|
3828
3832
|
path: z.string(),
|
|
3829
3833
|
key: z.string(),
|
|
3830
3834
|
displayName: z.string().optional(),
|
|
@@ -71,6 +71,10 @@ export type DuplicateAgentTools = {
|
|
|
71
71
|
key?: string | undefined;
|
|
72
72
|
actionType: string;
|
|
73
73
|
displayName?: string | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* Optional tool description
|
|
76
|
+
*/
|
|
77
|
+
description?: string | undefined;
|
|
74
78
|
requiresApproval?: boolean | undefined;
|
|
75
79
|
conditions?: Array<DuplicateAgentConditions> | undefined;
|
|
76
80
|
/**
|
|
@@ -1049,6 +1053,7 @@ export const DuplicateAgentTools$inboundSchema: z.ZodType<
|
|
|
1049
1053
|
key: z.string().optional(),
|
|
1050
1054
|
action_type: z.string(),
|
|
1051
1055
|
display_name: z.string().optional(),
|
|
1056
|
+
description: z.string().optional(),
|
|
1052
1057
|
requires_approval: z.boolean().default(false),
|
|
1053
1058
|
conditions: z.array(z.lazy(() => DuplicateAgentConditions$inboundSchema))
|
|
1054
1059
|
.optional(),
|
|
@@ -1067,6 +1072,7 @@ export type DuplicateAgentTools$Outbound = {
|
|
|
1067
1072
|
key?: string | undefined;
|
|
1068
1073
|
action_type: string;
|
|
1069
1074
|
display_name?: string | undefined;
|
|
1075
|
+
description?: string | undefined;
|
|
1070
1076
|
requires_approval: boolean;
|
|
1071
1077
|
conditions?: Array<DuplicateAgentConditions$Outbound> | undefined;
|
|
1072
1078
|
mcpServer?: string | undefined;
|
|
@@ -1083,6 +1089,7 @@ export const DuplicateAgentTools$outboundSchema: z.ZodType<
|
|
|
1083
1089
|
key: z.string().optional(),
|
|
1084
1090
|
actionType: z.string(),
|
|
1085
1091
|
displayName: z.string().optional(),
|
|
1092
|
+
description: z.string().optional(),
|
|
1086
1093
|
requiresApproval: z.boolean().default(false),
|
|
1087
1094
|
conditions: z.array(z.lazy(() => DuplicateAgentConditions$outboundSchema))
|
|
1088
1095
|
.optional(),
|
|
@@ -14,9 +14,17 @@ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
|
14
14
|
|
|
15
15
|
export type DuplicateToolRequestBody = {
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Unique key of the tool as it will be displayed in the UI
|
|
18
|
+
*/
|
|
19
|
+
key: string;
|
|
20
|
+
/**
|
|
21
|
+
* The name of the tool as it will be displayed in the UI. This is optional and if not provided, the `key` will be used.
|
|
18
22
|
*/
|
|
19
23
|
displayName?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* A description of the tool, used by the model to choose when and how to call the tool. We do recommend using the `description` field as accurate as possible to give enough context to the model to make the right decision.
|
|
26
|
+
*/
|
|
27
|
+
description: string;
|
|
20
28
|
};
|
|
21
29
|
|
|
22
30
|
export type DuplicateToolRequest = {
|
|
@@ -194,6 +202,7 @@ export type DuplicateToolResponseBodyToolsSchema = {
|
|
|
194
202
|
};
|
|
195
203
|
|
|
196
204
|
export type DuplicateToolResponseBodyTools = {
|
|
205
|
+
id?: string | undefined;
|
|
197
206
|
name: string;
|
|
198
207
|
description?: string | undefined;
|
|
199
208
|
schema: DuplicateToolResponseBodyToolsSchema;
|
|
@@ -685,7 +694,9 @@ export const DuplicateToolRequestBody$inboundSchema: z.ZodType<
|
|
|
685
694
|
z.ZodTypeDef,
|
|
686
695
|
unknown
|
|
687
696
|
> = z.object({
|
|
697
|
+
key: z.string(),
|
|
688
698
|
display_name: z.string().optional(),
|
|
699
|
+
description: z.string(),
|
|
689
700
|
}).transform((v) => {
|
|
690
701
|
return remap$(v, {
|
|
691
702
|
"display_name": "displayName",
|
|
@@ -693,7 +704,9 @@ export const DuplicateToolRequestBody$inboundSchema: z.ZodType<
|
|
|
693
704
|
});
|
|
694
705
|
/** @internal */
|
|
695
706
|
export type DuplicateToolRequestBody$Outbound = {
|
|
707
|
+
key: string;
|
|
696
708
|
display_name?: string | undefined;
|
|
709
|
+
description: string;
|
|
697
710
|
};
|
|
698
711
|
|
|
699
712
|
/** @internal */
|
|
@@ -702,7 +715,9 @@ export const DuplicateToolRequestBody$outboundSchema: z.ZodType<
|
|
|
702
715
|
z.ZodTypeDef,
|
|
703
716
|
DuplicateToolRequestBody
|
|
704
717
|
> = z.object({
|
|
718
|
+
key: z.string(),
|
|
705
719
|
displayName: z.string().optional(),
|
|
720
|
+
description: z.string(),
|
|
706
721
|
}).transform((v) => {
|
|
707
722
|
return remap$(v, {
|
|
708
723
|
displayName: "display_name",
|
|
@@ -955,7 +970,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
955
970
|
z.ZodTypeDef,
|
|
956
971
|
unknown
|
|
957
972
|
> = z.object({
|
|
958
|
-
_id: z.string().default("
|
|
973
|
+
_id: z.string().default("tool_01KA8BQBCKF8P4D3MX1FT7VNFJ"),
|
|
959
974
|
path: z.string(),
|
|
960
975
|
key: z.string(),
|
|
961
976
|
display_name: z.string().optional(),
|
|
@@ -1010,7 +1025,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
1010
1025
|
z.ZodTypeDef,
|
|
1011
1026
|
DuplicateToolResponseBody5
|
|
1012
1027
|
> = z.object({
|
|
1013
|
-
id: z.string().default("
|
|
1028
|
+
id: z.string().default("tool_01KA8BQBCKF8P4D3MX1FT7VNFJ"),
|
|
1014
1029
|
path: z.string(),
|
|
1015
1030
|
key: z.string(),
|
|
1016
1031
|
displayName: z.string().optional(),
|
|
@@ -1190,12 +1205,14 @@ export const DuplicateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1190
1205
|
z.ZodTypeDef,
|
|
1191
1206
|
unknown
|
|
1192
1207
|
> = z.object({
|
|
1208
|
+
id: z.string().default("01KA8BQBCJQ4WVFS83ZASQX625"),
|
|
1193
1209
|
name: z.string(),
|
|
1194
1210
|
description: z.string().optional(),
|
|
1195
1211
|
schema: z.lazy(() => DuplicateToolResponseBodyToolsSchema$inboundSchema),
|
|
1196
1212
|
});
|
|
1197
1213
|
/** @internal */
|
|
1198
1214
|
export type DuplicateToolResponseBodyTools$Outbound = {
|
|
1215
|
+
id: string;
|
|
1199
1216
|
name: string;
|
|
1200
1217
|
description?: string | undefined;
|
|
1201
1218
|
schema: DuplicateToolResponseBodyToolsSchema$Outbound;
|
|
@@ -1207,6 +1224,7 @@ export const DuplicateToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1207
1224
|
z.ZodTypeDef,
|
|
1208
1225
|
DuplicateToolResponseBodyTools
|
|
1209
1226
|
> = z.object({
|
|
1227
|
+
id: z.string().default("01KA8BQBCJQ4WVFS83ZASQX625"),
|
|
1210
1228
|
name: z.string(),
|
|
1211
1229
|
description: z.string().optional(),
|
|
1212
1230
|
schema: z.lazy(() => DuplicateToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1312,7 +1330,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1312
1330
|
z.ZodTypeDef,
|
|
1313
1331
|
unknown
|
|
1314
1332
|
> = z.object({
|
|
1315
|
-
_id: z.string().default("
|
|
1333
|
+
_id: z.string().default("tool_01KA8BQBCH7P4YBDS533QRQVH7"),
|
|
1316
1334
|
path: z.string(),
|
|
1317
1335
|
key: z.string(),
|
|
1318
1336
|
display_name: z.string().optional(),
|
|
@@ -1365,7 +1383,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1365
1383
|
z.ZodTypeDef,
|
|
1366
1384
|
DuplicateToolResponseBody4
|
|
1367
1385
|
> = z.object({
|
|
1368
|
-
id: z.string().default("
|
|
1386
|
+
id: z.string().default("tool_01KA8BQBCH7P4YBDS533QRQVH7"),
|
|
1369
1387
|
path: z.string(),
|
|
1370
1388
|
key: z.string(),
|
|
1371
1389
|
displayName: z.string().optional(),
|
|
@@ -1746,7 +1764,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1746
1764
|
z.ZodTypeDef,
|
|
1747
1765
|
unknown
|
|
1748
1766
|
> = z.object({
|
|
1749
|
-
_id: z.string().default("
|
|
1767
|
+
_id: z.string().default("tool_01KA8BQBCFVE3HDN8WPJ78CTXE"),
|
|
1750
1768
|
path: z.string(),
|
|
1751
1769
|
key: z.string(),
|
|
1752
1770
|
display_name: z.string().optional(),
|
|
@@ -1799,7 +1817,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1799
1817
|
z.ZodTypeDef,
|
|
1800
1818
|
DuplicateToolResponseBody3
|
|
1801
1819
|
> = z.object({
|
|
1802
|
-
id: z.string().default("
|
|
1820
|
+
id: z.string().default("tool_01KA8BQBCFVE3HDN8WPJ78CTXE"),
|
|
1803
1821
|
path: z.string(),
|
|
1804
1822
|
key: z.string(),
|
|
1805
1823
|
displayName: z.string().optional(),
|
|
@@ -1981,7 +1999,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1981
1999
|
z.ZodTypeDef,
|
|
1982
2000
|
unknown
|
|
1983
2001
|
> = z.object({
|
|
1984
|
-
_id: z.string().default("
|
|
2002
|
+
_id: z.string().default("tool_01KA8BQBC7H16S2JM228ZQ831N"),
|
|
1985
2003
|
path: z.string(),
|
|
1986
2004
|
key: z.string(),
|
|
1987
2005
|
display_name: z.string().optional(),
|
|
@@ -2033,7 +2051,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
2033
2051
|
z.ZodTypeDef,
|
|
2034
2052
|
DuplicateToolResponseBody2
|
|
2035
2053
|
> = z.object({
|
|
2036
|
-
id: z.string().default("
|
|
2054
|
+
id: z.string().default("tool_01KA8BQBC7H16S2JM228ZQ831N"),
|
|
2037
2055
|
path: z.string(),
|
|
2038
2056
|
key: z.string(),
|
|
2039
2057
|
displayName: z.string().optional(),
|
|
@@ -2231,7 +2249,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2231
2249
|
z.ZodTypeDef,
|
|
2232
2250
|
unknown
|
|
2233
2251
|
> = z.object({
|
|
2234
|
-
_id: z.string().default("
|
|
2252
|
+
_id: z.string().default("tool_01KA8BQBC6R8F23R7QP4SE0WZS"),
|
|
2235
2253
|
path: z.string(),
|
|
2236
2254
|
key: z.string(),
|
|
2237
2255
|
display_name: z.string().optional(),
|
|
@@ -2282,7 +2300,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2282
2300
|
z.ZodTypeDef,
|
|
2283
2301
|
DuplicateToolResponseBody1
|
|
2284
2302
|
> = z.object({
|
|
2285
|
-
id: z.string().default("
|
|
2303
|
+
id: z.string().default("tool_01KA8BQBC6R8F23R7QP4SE0WZS"),
|
|
2286
2304
|
path: z.string(),
|
|
2287
2305
|
key: z.string(),
|
|
2288
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-17T07:33:22.581Z",
|
|
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-17T07:33:22.581Z"))
|
|
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-17T07:33:22.581Z",
|
|
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-17T07:33:22.581Z"))
|
|
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-17T07:33:22.581Z",
|
|
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-17T07:33:22.581Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -71,6 +71,10 @@ export type GetAgentTools = {
|
|
|
71
71
|
key?: string | undefined;
|
|
72
72
|
actionType: string;
|
|
73
73
|
displayName?: string | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* Optional tool description
|
|
76
|
+
*/
|
|
77
|
+
description?: string | undefined;
|
|
74
78
|
requiresApproval?: boolean | undefined;
|
|
75
79
|
conditions?: Array<GetAgentConditions> | undefined;
|
|
76
80
|
/**
|
|
@@ -1036,6 +1040,7 @@ export const GetAgentTools$inboundSchema: z.ZodType<
|
|
|
1036
1040
|
key: z.string().optional(),
|
|
1037
1041
|
action_type: z.string(),
|
|
1038
1042
|
display_name: z.string().optional(),
|
|
1043
|
+
description: z.string().optional(),
|
|
1039
1044
|
requires_approval: z.boolean().default(false),
|
|
1040
1045
|
conditions: z.array(z.lazy(() => GetAgentConditions$inboundSchema))
|
|
1041
1046
|
.optional(),
|
|
@@ -1054,6 +1059,7 @@ export type GetAgentTools$Outbound = {
|
|
|
1054
1059
|
key?: string | undefined;
|
|
1055
1060
|
action_type: string;
|
|
1056
1061
|
display_name?: string | undefined;
|
|
1062
|
+
description?: string | undefined;
|
|
1057
1063
|
requires_approval: boolean;
|
|
1058
1064
|
conditions?: Array<GetAgentConditions$Outbound> | undefined;
|
|
1059
1065
|
mcpServer?: string | undefined;
|
|
@@ -1070,6 +1076,7 @@ export const GetAgentTools$outboundSchema: z.ZodType<
|
|
|
1070
1076
|
key: z.string().optional(),
|
|
1071
1077
|
actionType: z.string(),
|
|
1072
1078
|
displayName: z.string().optional(),
|
|
1079
|
+
description: z.string().optional(),
|
|
1073
1080
|
requiresApproval: z.boolean().default(false),
|
|
1074
1081
|
conditions: z.array(z.lazy(() => GetAgentConditions$outboundSchema))
|
|
1075
1082
|
.optional(),
|
|
@@ -193,6 +193,7 @@ export type GetAllToolsDataSchema = {
|
|
|
193
193
|
};
|
|
194
194
|
|
|
195
195
|
export type DataTools = {
|
|
196
|
+
id?: string | undefined;
|
|
196
197
|
name: string;
|
|
197
198
|
description?: string | undefined;
|
|
198
199
|
schema: GetAllToolsDataSchema;
|
|
@@ -875,7 +876,7 @@ export function dataCodeToolFromJSON(
|
|
|
875
876
|
/** @internal */
|
|
876
877
|
export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
|
|
877
878
|
.object({
|
|
878
|
-
_id: z.string().default("
|
|
879
|
+
_id: z.string().default("tool_01KA8BQBACJMHVECJJP1GKNFSZ"),
|
|
879
880
|
path: z.string(),
|
|
880
881
|
key: z.string(),
|
|
881
882
|
display_name: z.string().optional(),
|
|
@@ -927,7 +928,7 @@ export const Data5$outboundSchema: z.ZodType<
|
|
|
927
928
|
z.ZodTypeDef,
|
|
928
929
|
Data5
|
|
929
930
|
> = z.object({
|
|
930
|
-
id: z.string().default("
|
|
931
|
+
id: z.string().default("tool_01KA8BQBACJMHVECJJP1GKNFSZ"),
|
|
931
932
|
path: z.string(),
|
|
932
933
|
key: z.string(),
|
|
933
934
|
displayName: z.string().optional(),
|
|
@@ -1091,12 +1092,14 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
1091
1092
|
z.ZodTypeDef,
|
|
1092
1093
|
unknown
|
|
1093
1094
|
> = z.object({
|
|
1095
|
+
id: z.string().default("01KA8BQBABJ802WGCWKKQ5SDFY"),
|
|
1094
1096
|
name: z.string(),
|
|
1095
1097
|
description: z.string().optional(),
|
|
1096
1098
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
1097
1099
|
});
|
|
1098
1100
|
/** @internal */
|
|
1099
1101
|
export type DataTools$Outbound = {
|
|
1102
|
+
id: string;
|
|
1100
1103
|
name: string;
|
|
1101
1104
|
description?: string | undefined;
|
|
1102
1105
|
schema: GetAllToolsDataSchema$Outbound;
|
|
@@ -1108,6 +1111,7 @@ export const DataTools$outboundSchema: z.ZodType<
|
|
|
1108
1111
|
z.ZodTypeDef,
|
|
1109
1112
|
DataTools
|
|
1110
1113
|
> = z.object({
|
|
1114
|
+
id: z.string().default("01KA8BQBABJ802WGCWKKQ5SDFY"),
|
|
1111
1115
|
name: z.string(),
|
|
1112
1116
|
description: z.string().optional(),
|
|
1113
1117
|
schema: z.lazy(() => GetAllToolsDataSchema$outboundSchema),
|
|
@@ -1189,7 +1193,7 @@ export function dataMcpFromJSON(
|
|
|
1189
1193
|
/** @internal */
|
|
1190
1194
|
export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
|
|
1191
1195
|
.object({
|
|
1192
|
-
_id: z.string().default("
|
|
1196
|
+
_id: z.string().default("tool_01KA8BQBA9SY19ZYAHAJ7Z9YME"),
|
|
1193
1197
|
path: z.string(),
|
|
1194
1198
|
key: z.string(),
|
|
1195
1199
|
display_name: z.string().optional(),
|
|
@@ -1240,7 +1244,7 @@ export const Data4$outboundSchema: z.ZodType<
|
|
|
1240
1244
|
z.ZodTypeDef,
|
|
1241
1245
|
Data4
|
|
1242
1246
|
> = z.object({
|
|
1243
|
-
id: z.string().default("
|
|
1247
|
+
id: z.string().default("tool_01KA8BQBA9SY19ZYAHAJ7Z9YME"),
|
|
1244
1248
|
path: z.string(),
|
|
1245
1249
|
key: z.string(),
|
|
1246
1250
|
displayName: z.string().optional(),
|
|
@@ -1580,7 +1584,7 @@ export function getAllToolsDataHttpFromJSON(
|
|
|
1580
1584
|
/** @internal */
|
|
1581
1585
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
1582
1586
|
.object({
|
|
1583
|
-
_id: z.string().default("
|
|
1587
|
+
_id: z.string().default("tool_01KA8BQBA6R58WTZGFRD6JTN93"),
|
|
1584
1588
|
path: z.string(),
|
|
1585
1589
|
key: z.string(),
|
|
1586
1590
|
display_name: z.string().optional(),
|
|
@@ -1631,7 +1635,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
1631
1635
|
z.ZodTypeDef,
|
|
1632
1636
|
Data3
|
|
1633
1637
|
> = z.object({
|
|
1634
|
-
id: z.string().default("
|
|
1638
|
+
id: z.string().default("tool_01KA8BQBA6R58WTZGFRD6JTN93"),
|
|
1635
1639
|
path: z.string(),
|
|
1636
1640
|
key: z.string(),
|
|
1637
1641
|
displayName: z.string().optional(),
|
|
@@ -1790,7 +1794,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
1790
1794
|
/** @internal */
|
|
1791
1795
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
1792
1796
|
.object({
|
|
1793
|
-
_id: z.string().default("
|
|
1797
|
+
_id: z.string().default("tool_01KA8BQBA4TVH147YWMTT8KB3J"),
|
|
1794
1798
|
path: z.string(),
|
|
1795
1799
|
key: z.string(),
|
|
1796
1800
|
display_name: z.string().optional(),
|
|
@@ -1842,7 +1846,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
1842
1846
|
z.ZodTypeDef,
|
|
1843
1847
|
Data2
|
|
1844
1848
|
> = z.object({
|
|
1845
|
-
id: z.string().default("
|
|
1849
|
+
id: z.string().default("tool_01KA8BQBA4TVH147YWMTT8KB3J"),
|
|
1846
1850
|
path: z.string(),
|
|
1847
1851
|
key: z.string(),
|
|
1848
1852
|
displayName: z.string().optional(),
|
|
@@ -2020,7 +2024,7 @@ export function getAllToolsDataFunctionFromJSON(
|
|
|
2020
2024
|
/** @internal */
|
|
2021
2025
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
2022
2026
|
.object({
|
|
2023
|
-
_id: z.string().default("
|
|
2027
|
+
_id: z.string().default("tool_01KA8BQBA2ERYX7TG8NMSV2YAF"),
|
|
2024
2028
|
path: z.string(),
|
|
2025
2029
|
key: z.string(),
|
|
2026
2030
|
display_name: z.string().optional(),
|
|
@@ -2071,7 +2075,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
2071
2075
|
z.ZodTypeDef,
|
|
2072
2076
|
Data1
|
|
2073
2077
|
> = z.object({
|
|
2074
|
-
id: z.string().default("
|
|
2078
|
+
id: z.string().default("tool_01KA8BQBA2ERYX7TG8NMSV2YAF"),
|
|
2075
2079
|
path: z.string(),
|
|
2076
2080
|
key: z.string(),
|
|
2077
2081
|
displayName: z.string().optional(),
|