@orq-ai/node 4.0.0-rc.35 → 4.0.0-rc.37
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 +248 -220
- 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 +2 -0
- package/models/operations/duplicatetool.d.ts.map +1 -1
- package/models/operations/duplicatetool.js +12 -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 +4 -0
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +14 -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 +14 -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/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 +18 -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-17T04:24:08.995Z"),
|
|
2760
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
2803
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
3131
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
5420
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
5534
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
5852
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
5894
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
6175
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
6223
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
6480
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
6759
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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-17T04:24:08.995Z"),
|
|
6799
|
+
updated: z.string().default("2025-11-17T04:24:08.995Z"),
|
|
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_01KA80WWPSRZCJ08FG24938RDR"),
|
|
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_01KA80WWPSRZCJ08FG24938RDR"),
|
|
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("01KA80WWPRG794GHD9AJAC1C84"),
|
|
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("01KA80WWPRG794GHD9AJAC1C84"),
|
|
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_01KA80WWPPFXN1C2N45N3CJXQR"),
|
|
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_01KA80WWPPFXN1C2N45N3CJXQR"),
|
|
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_01KA80WWPKFYZHHSYJV3WXSP4J"),
|
|
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_01KA80WWPKFYZHHSYJV3WXSP4J"),
|
|
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_01KA80WWPHSCDJQB4PRYP1WF1A"),
|
|
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_01KA80WWPHSCDJQB4PRYP1WF1A"),
|
|
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_01KA80WWPE6QV8N8VFAQQ24C9T"),
|
|
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_01KA80WWPE6QV8N8VFAQQ24C9T"),
|
|
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(),
|
|
@@ -194,6 +194,7 @@ export type DuplicateToolResponseBodyToolsSchema = {
|
|
|
194
194
|
};
|
|
195
195
|
|
|
196
196
|
export type DuplicateToolResponseBodyTools = {
|
|
197
|
+
id?: string | undefined;
|
|
197
198
|
name: string;
|
|
198
199
|
description?: string | undefined;
|
|
199
200
|
schema: DuplicateToolResponseBodyToolsSchema;
|
|
@@ -955,7 +956,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
955
956
|
z.ZodTypeDef,
|
|
956
957
|
unknown
|
|
957
958
|
> = z.object({
|
|
958
|
-
_id: z.string().default("
|
|
959
|
+
_id: z.string().default("tool_01KA80WWR0CJYVVVFVJB27C4M0"),
|
|
959
960
|
path: z.string(),
|
|
960
961
|
key: z.string(),
|
|
961
962
|
display_name: z.string().optional(),
|
|
@@ -1010,7 +1011,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
1010
1011
|
z.ZodTypeDef,
|
|
1011
1012
|
DuplicateToolResponseBody5
|
|
1012
1013
|
> = z.object({
|
|
1013
|
-
id: z.string().default("
|
|
1014
|
+
id: z.string().default("tool_01KA80WWR0CJYVVVFVJB27C4M0"),
|
|
1014
1015
|
path: z.string(),
|
|
1015
1016
|
key: z.string(),
|
|
1016
1017
|
displayName: z.string().optional(),
|
|
@@ -1190,12 +1191,14 @@ export const DuplicateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1190
1191
|
z.ZodTypeDef,
|
|
1191
1192
|
unknown
|
|
1192
1193
|
> = z.object({
|
|
1194
|
+
id: z.string().default("01KA80WWQS5DCH63XAE44DS2HX"),
|
|
1193
1195
|
name: z.string(),
|
|
1194
1196
|
description: z.string().optional(),
|
|
1195
1197
|
schema: z.lazy(() => DuplicateToolResponseBodyToolsSchema$inboundSchema),
|
|
1196
1198
|
});
|
|
1197
1199
|
/** @internal */
|
|
1198
1200
|
export type DuplicateToolResponseBodyTools$Outbound = {
|
|
1201
|
+
id: string;
|
|
1199
1202
|
name: string;
|
|
1200
1203
|
description?: string | undefined;
|
|
1201
1204
|
schema: DuplicateToolResponseBodyToolsSchema$Outbound;
|
|
@@ -1207,6 +1210,7 @@ export const DuplicateToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1207
1210
|
z.ZodTypeDef,
|
|
1208
1211
|
DuplicateToolResponseBodyTools
|
|
1209
1212
|
> = z.object({
|
|
1213
|
+
id: z.string().default("01KA80WWQS5DCH63XAE44DS2HX"),
|
|
1210
1214
|
name: z.string(),
|
|
1211
1215
|
description: z.string().optional(),
|
|
1212
1216
|
schema: z.lazy(() => DuplicateToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1312,7 +1316,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1312
1316
|
z.ZodTypeDef,
|
|
1313
1317
|
unknown
|
|
1314
1318
|
> = z.object({
|
|
1315
|
-
_id: z.string().default("
|
|
1319
|
+
_id: z.string().default("tool_01KA80WWQRSHNCS0MASEG5ZAJV"),
|
|
1316
1320
|
path: z.string(),
|
|
1317
1321
|
key: z.string(),
|
|
1318
1322
|
display_name: z.string().optional(),
|
|
@@ -1365,7 +1369,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1365
1369
|
z.ZodTypeDef,
|
|
1366
1370
|
DuplicateToolResponseBody4
|
|
1367
1371
|
> = z.object({
|
|
1368
|
-
id: z.string().default("
|
|
1372
|
+
id: z.string().default("tool_01KA80WWQRSHNCS0MASEG5ZAJV"),
|
|
1369
1373
|
path: z.string(),
|
|
1370
1374
|
key: z.string(),
|
|
1371
1375
|
displayName: z.string().optional(),
|
|
@@ -1746,7 +1750,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1746
1750
|
z.ZodTypeDef,
|
|
1747
1751
|
unknown
|
|
1748
1752
|
> = z.object({
|
|
1749
|
-
_id: z.string().default("
|
|
1753
|
+
_id: z.string().default("tool_01KA80WWQPQF6AGBKFQ021TBW8"),
|
|
1750
1754
|
path: z.string(),
|
|
1751
1755
|
key: z.string(),
|
|
1752
1756
|
display_name: z.string().optional(),
|
|
@@ -1799,7 +1803,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1799
1803
|
z.ZodTypeDef,
|
|
1800
1804
|
DuplicateToolResponseBody3
|
|
1801
1805
|
> = z.object({
|
|
1802
|
-
id: z.string().default("
|
|
1806
|
+
id: z.string().default("tool_01KA80WWQPQF6AGBKFQ021TBW8"),
|
|
1803
1807
|
path: z.string(),
|
|
1804
1808
|
key: z.string(),
|
|
1805
1809
|
displayName: z.string().optional(),
|
|
@@ -1981,7 +1985,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1981
1985
|
z.ZodTypeDef,
|
|
1982
1986
|
unknown
|
|
1983
1987
|
> = z.object({
|
|
1984
|
-
_id: z.string().default("
|
|
1988
|
+
_id: z.string().default("tool_01KA80WWQMAR93VRDZ8CCN4RAR"),
|
|
1985
1989
|
path: z.string(),
|
|
1986
1990
|
key: z.string(),
|
|
1987
1991
|
display_name: z.string().optional(),
|
|
@@ -2033,7 +2037,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
2033
2037
|
z.ZodTypeDef,
|
|
2034
2038
|
DuplicateToolResponseBody2
|
|
2035
2039
|
> = z.object({
|
|
2036
|
-
id: z.string().default("
|
|
2040
|
+
id: z.string().default("tool_01KA80WWQMAR93VRDZ8CCN4RAR"),
|
|
2037
2041
|
path: z.string(),
|
|
2038
2042
|
key: z.string(),
|
|
2039
2043
|
displayName: z.string().optional(),
|
|
@@ -2231,7 +2235,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2231
2235
|
z.ZodTypeDef,
|
|
2232
2236
|
unknown
|
|
2233
2237
|
> = z.object({
|
|
2234
|
-
_id: z.string().default("
|
|
2238
|
+
_id: z.string().default("tool_01KA80WWQKRMJ7ZDEB4WCYBZHE"),
|
|
2235
2239
|
path: z.string(),
|
|
2236
2240
|
key: z.string(),
|
|
2237
2241
|
display_name: z.string().optional(),
|
|
@@ -2282,7 +2286,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2282
2286
|
z.ZodTypeDef,
|
|
2283
2287
|
DuplicateToolResponseBody1
|
|
2284
2288
|
> = z.object({
|
|
2285
|
-
id: z.string().default("
|
|
2289
|
+
id: z.string().default("tool_01KA80WWQKRMJ7ZDEB4WCYBZHE"),
|
|
2286
2290
|
path: z.string(),
|
|
2287
2291
|
key: z.string(),
|
|
2288
2292
|
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-17T04:24:09.936Z",
|
|
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-17T04:24:09.936Z"))
|
|
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-17T04:24:09.936Z",
|
|
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-17T04:24:09.936Z"))
|
|
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-17T04:24:09.936Z",
|
|
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-17T04:24:09.936Z"))
|
|
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_01KA80WWNRBAXQ80TSBQYGN0Q2"),
|
|
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_01KA80WWNRBAXQ80TSBQYGN0Q2"),
|
|
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("01KA80WWNQXM0T94301HRWZASZ"),
|
|
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("01KA80WWNQXM0T94301HRWZASZ"),
|
|
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_01KA80WWNNSHXNAT6QRNAJ01FZ"),
|
|
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_01KA80WWNNSHXNAT6QRNAJ01FZ"),
|
|
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_01KA80WWNHRQDF9GKQ5HN30CMX"),
|
|
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_01KA80WWNHRQDF9GKQ5HN30CMX"),
|
|
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_01KA80WWNF99C87CMJJN33MR2P"),
|
|
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_01KA80WWNF99C87CMJJN33MR2P"),
|
|
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_01KA80WWNENJ8N9QGRHVY067Q8"),
|
|
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_01KA80WWNENJ8N9QGRHVY067Q8"),
|
|
2075
2079
|
path: z.string(),
|
|
2076
2080
|
key: z.string(),
|
|
2077
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-17T04:24:07.429Z",
|
|
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-17T04:24:07.429Z"))
|
|
332
332
|
.transform(v => v.toISOString()),
|
|
333
333
|
}).transform((v) => {
|
|
334
334
|
return remap$(v, {
|