@orq-ai/node 4.0.0-rc.37 → 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 +245 -239
- package/bin/mcp-server.js.map +39 -39
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +12 -12
- package/models/operations/duplicatetool.d.ts +11 -1
- package/models/operations/duplicatetool.d.ts.map +1 -1
- package/models/operations/duplicatetool.js +16 -12
- 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/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/syncmcptool.js +12 -12
- 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 +5 -0
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +16 -14
- package/models/operations/updatetool.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/duplicatetool.ts +27 -13
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/syncmcptool.ts +12 -12
- 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 +21 -14
|
@@ -2990,8 +2990,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2990
2990
|
> = z.object({
|
|
2991
2991
|
_id: z.string(),
|
|
2992
2992
|
description: z.string(),
|
|
2993
|
-
created: z.string().default("2025-11-
|
|
2994
|
-
updated: z.string().default("2025-11-
|
|
2993
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
2994
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
2995
2995
|
guardrail_config: z.union([
|
|
2996
2996
|
z.lazy(() =>
|
|
2997
2997
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3033,8 +3033,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3033
3033
|
> = z.object({
|
|
3034
3034
|
id: z.string(),
|
|
3035
3035
|
description: z.string(),
|
|
3036
|
-
created: z.string().default("2025-11-
|
|
3037
|
-
updated: z.string().default("2025-11-
|
|
3036
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
3037
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
3038
3038
|
guardrailConfig: z.union([
|
|
3039
3039
|
z.lazy(() =>
|
|
3040
3040
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3324,8 +3324,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3324
3324
|
> = z.object({
|
|
3325
3325
|
_id: z.string(),
|
|
3326
3326
|
description: z.string(),
|
|
3327
|
-
created: z.string().default("2025-11-
|
|
3328
|
-
updated: z.string().default("2025-11-
|
|
3327
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
3328
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
3329
3329
|
guardrail_config: z.union([
|
|
3330
3330
|
z.lazy(() =>
|
|
3331
3331
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3370,8 +3370,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3370
3370
|
> = z.object({
|
|
3371
3371
|
id: z.string(),
|
|
3372
3372
|
description: z.string(),
|
|
3373
|
-
created: z.string().default("2025-11-
|
|
3374
|
-
updated: z.string().default("2025-11-
|
|
3373
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
3374
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
3375
3375
|
guardrailConfig: z.union([
|
|
3376
3376
|
z.lazy(() =>
|
|
3377
3377
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5709,8 +5709,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5709
5709
|
> = z.object({
|
|
5710
5710
|
_id: z.string(),
|
|
5711
5711
|
description: z.string(),
|
|
5712
|
-
created: z.string().default("2025-11-
|
|
5713
|
-
updated: z.string().default("2025-11-
|
|
5712
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
5713
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
5714
5714
|
guardrail_config: z.union([
|
|
5715
5715
|
z.lazy(() =>
|
|
5716
5716
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5823,8 +5823,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5823
5823
|
> = z.object({
|
|
5824
5824
|
id: z.string(),
|
|
5825
5825
|
description: z.string(),
|
|
5826
|
-
created: z.string().default("2025-11-
|
|
5827
|
-
updated: z.string().default("2025-11-
|
|
5826
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
5827
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
5828
5828
|
guardrailConfig: z.union([
|
|
5829
5829
|
z.lazy(() =>
|
|
5830
5830
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -6140,8 +6140,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
6140
6140
|
> = z.object({
|
|
6141
6141
|
_id: z.string(),
|
|
6142
6142
|
description: z.string(),
|
|
6143
|
-
created: z.string().default("2025-11-
|
|
6144
|
-
updated: z.string().default("2025-11-
|
|
6143
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6144
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6145
6145
|
guardrail_config: z.union([
|
|
6146
6146
|
z.lazy(() =>
|
|
6147
6147
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -6182,8 +6182,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
6182
6182
|
> = z.object({
|
|
6183
6183
|
id: z.string(),
|
|
6184
6184
|
description: z.string(),
|
|
6185
|
-
created: z.string().default("2025-11-
|
|
6186
|
-
updated: z.string().default("2025-11-
|
|
6185
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6186
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6187
6187
|
guardrailConfig: z.union([
|
|
6188
6188
|
z.lazy(() =>
|
|
6189
6189
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6468,8 +6468,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6468
6468
|
> = z.object({
|
|
6469
6469
|
_id: z.string(),
|
|
6470
6470
|
description: z.string(),
|
|
6471
|
-
created: z.string().default("2025-11-
|
|
6472
|
-
updated: z.string().default("2025-11-
|
|
6471
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6472
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6473
6473
|
guardrail_config: z.union([
|
|
6474
6474
|
z.lazy(() =>
|
|
6475
6475
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6516,8 +6516,8 @@ export const UpdateEvalResponseBodyHTTP$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
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6786,8 +6786,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6786
6786
|
> = z.object({
|
|
6787
6787
|
_id: z.string(),
|
|
6788
6788
|
description: z.string(),
|
|
6789
|
-
created: z.string().default("2025-11-
|
|
6790
|
-
updated: z.string().default("2025-11-
|
|
6789
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6790
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6791
6791
|
guardrail_config: z.union([
|
|
6792
6792
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6793
6793
|
z.lazy(() =>
|
|
@@ -6826,8 +6826,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6826
6826
|
> = z.object({
|
|
6827
6827
|
id: z.string(),
|
|
6828
6828
|
description: z.string(),
|
|
6829
|
-
created: z.string().default("2025-11-
|
|
6830
|
-
updated: z.string().default("2025-11-
|
|
6829
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6830
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
6831
6831
|
guardrailConfig: z.union([
|
|
6832
6832
|
z.lazy(() =>
|
|
6833
6833
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -7066,8 +7066,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
7066
7066
|
> = z.object({
|
|
7067
7067
|
_id: z.string(),
|
|
7068
7068
|
description: z.string(),
|
|
7069
|
-
created: z.string().default("2025-11-
|
|
7070
|
-
updated: z.string().default("2025-11-
|
|
7069
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
7070
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
7071
7071
|
guardrail_config: z.union([
|
|
7072
7072
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
7073
7073
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -7106,8 +7106,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
7106
7106
|
> = z.object({
|
|
7107
7107
|
id: z.string(),
|
|
7108
7108
|
description: z.string(),
|
|
7109
|
-
created: z.string().default("2025-11-
|
|
7110
|
-
updated: z.string().default("2025-11-
|
|
7109
|
+
created: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
7110
|
+
updated: z.string().default("2025-11-17T07:33:21.657Z"),
|
|
7111
7111
|
guardrailConfig: z.union([
|
|
7112
7112
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7113
7113
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -100,6 +100,10 @@ export type UpdateCodeExecutionTool = {
|
|
|
100
100
|
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
101
101
|
*/
|
|
102
102
|
path?: string | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* Unique key of the tool as it will be displayed in the UI
|
|
105
|
+
*/
|
|
106
|
+
key?: string | undefined;
|
|
103
107
|
/**
|
|
104
108
|
* 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.
|
|
105
109
|
*/
|
|
@@ -1407,6 +1411,7 @@ export const UpdateCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1407
1411
|
unknown
|
|
1408
1412
|
> = z.object({
|
|
1409
1413
|
path: z.string().optional(),
|
|
1414
|
+
key: z.string().optional(),
|
|
1410
1415
|
display_name: z.string().optional(),
|
|
1411
1416
|
description: z.string().optional(),
|
|
1412
1417
|
status: UpdateToolRequestBodyToolsRequest5Status$inboundSchema.default(
|
|
@@ -1424,6 +1429,7 @@ export const UpdateCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1424
1429
|
/** @internal */
|
|
1425
1430
|
export type UpdateCodeExecutionTool$Outbound = {
|
|
1426
1431
|
path?: string | undefined;
|
|
1432
|
+
key?: string | undefined;
|
|
1427
1433
|
display_name?: string | undefined;
|
|
1428
1434
|
description?: string | undefined;
|
|
1429
1435
|
status: string;
|
|
@@ -1438,6 +1444,7 @@ export const UpdateCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
1438
1444
|
UpdateCodeExecutionTool
|
|
1439
1445
|
> = z.object({
|
|
1440
1446
|
path: z.string().optional(),
|
|
1447
|
+
key: z.string().optional(),
|
|
1441
1448
|
displayName: z.string().optional(),
|
|
1442
1449
|
description: z.string().optional(),
|
|
1443
1450
|
status: UpdateToolRequestBodyToolsRequest5Status$outboundSchema.default(
|
|
@@ -1595,7 +1602,7 @@ export const RequestBodyTools$inboundSchema: z.ZodType<
|
|
|
1595
1602
|
z.ZodTypeDef,
|
|
1596
1603
|
unknown
|
|
1597
1604
|
> = z.object({
|
|
1598
|
-
id: z.string().default("
|
|
1605
|
+
id: z.string().default("01KA8BQBC3GV8SQQ4HVPEFN10A"),
|
|
1599
1606
|
name: z.string(),
|
|
1600
1607
|
description: z.string().optional(),
|
|
1601
1608
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$inboundSchema),
|
|
@@ -1614,7 +1621,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1614
1621
|
z.ZodTypeDef,
|
|
1615
1622
|
RequestBodyTools
|
|
1616
1623
|
> = z.object({
|
|
1617
|
-
id: z.string().default("
|
|
1624
|
+
id: z.string().default("01KA8BQBC3GV8SQQ4HVPEFN10A"),
|
|
1618
1625
|
name: z.string(),
|
|
1619
1626
|
description: z.string().optional(),
|
|
1620
1627
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2835,7 +2842,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
2835
2842
|
z.ZodTypeDef,
|
|
2836
2843
|
unknown
|
|
2837
2844
|
> = z.object({
|
|
2838
|
-
_id: z.string().default("
|
|
2845
|
+
_id: z.string().default("tool_01KA8BQBBT8DJ8VJK6H2TA1C41"),
|
|
2839
2846
|
path: z.string(),
|
|
2840
2847
|
key: z.string(),
|
|
2841
2848
|
display_name: z.string().optional(),
|
|
@@ -2889,7 +2896,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
2889
2896
|
z.ZodTypeDef,
|
|
2890
2897
|
UpdateToolResponseBody5
|
|
2891
2898
|
> = z.object({
|
|
2892
|
-
id: z.string().default("
|
|
2899
|
+
id: z.string().default("tool_01KA8BQBBT8DJ8VJK6H2TA1C41"),
|
|
2893
2900
|
path: z.string(),
|
|
2894
2901
|
key: z.string(),
|
|
2895
2902
|
displayName: z.string().optional(),
|
|
@@ -3065,7 +3072,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
3065
3072
|
z.ZodTypeDef,
|
|
3066
3073
|
unknown
|
|
3067
3074
|
> = z.object({
|
|
3068
|
-
id: z.string().default("
|
|
3075
|
+
id: z.string().default("01KA8BQBBSTFCHF79QPY7E4V0T"),
|
|
3069
3076
|
name: z.string(),
|
|
3070
3077
|
description: z.string().optional(),
|
|
3071
3078
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -3084,7 +3091,7 @@ export const UpdateToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
3084
3091
|
z.ZodTypeDef,
|
|
3085
3092
|
UpdateToolResponseBodyTools
|
|
3086
3093
|
> = z.object({
|
|
3087
|
-
id: z.string().default("
|
|
3094
|
+
id: z.string().default("01KA8BQBBSTFCHF79QPY7E4V0T"),
|
|
3088
3095
|
name: z.string(),
|
|
3089
3096
|
description: z.string().optional(),
|
|
3090
3097
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -3185,7 +3192,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
3185
3192
|
z.ZodTypeDef,
|
|
3186
3193
|
unknown
|
|
3187
3194
|
> = z.object({
|
|
3188
|
-
_id: z.string().default("
|
|
3195
|
+
_id: z.string().default("tool_01KA8BQBBR2QGS0PVGME58F31R"),
|
|
3189
3196
|
path: z.string(),
|
|
3190
3197
|
key: z.string(),
|
|
3191
3198
|
display_name: z.string().optional(),
|
|
@@ -3238,7 +3245,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
3238
3245
|
z.ZodTypeDef,
|
|
3239
3246
|
UpdateToolResponseBody4
|
|
3240
3247
|
> = z.object({
|
|
3241
|
-
id: z.string().default("
|
|
3248
|
+
id: z.string().default("tool_01KA8BQBBR2QGS0PVGME58F31R"),
|
|
3242
3249
|
path: z.string(),
|
|
3243
3250
|
key: z.string(),
|
|
3244
3251
|
displayName: z.string().optional(),
|
|
@@ -3613,7 +3620,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
3613
3620
|
z.ZodTypeDef,
|
|
3614
3621
|
unknown
|
|
3615
3622
|
> = z.object({
|
|
3616
|
-
_id: z.string().default("
|
|
3623
|
+
_id: z.string().default("tool_01KA8BQBBPEGMX9NEV8DEEWTW0"),
|
|
3617
3624
|
path: z.string(),
|
|
3618
3625
|
key: z.string(),
|
|
3619
3626
|
display_name: z.string().optional(),
|
|
@@ -3666,7 +3673,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
3666
3673
|
z.ZodTypeDef,
|
|
3667
3674
|
UpdateToolResponseBody3
|
|
3668
3675
|
> = z.object({
|
|
3669
|
-
id: z.string().default("
|
|
3676
|
+
id: z.string().default("tool_01KA8BQBBPEGMX9NEV8DEEWTW0"),
|
|
3670
3677
|
path: z.string(),
|
|
3671
3678
|
key: z.string(),
|
|
3672
3679
|
displayName: z.string().optional(),
|
|
@@ -3846,7 +3853,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
3846
3853
|
z.ZodTypeDef,
|
|
3847
3854
|
unknown
|
|
3848
3855
|
> = z.object({
|
|
3849
|
-
_id: z.string().default("
|
|
3856
|
+
_id: z.string().default("tool_01KA8BQBBN46BDDP9THCNVB2NS"),
|
|
3850
3857
|
path: z.string(),
|
|
3851
3858
|
key: z.string(),
|
|
3852
3859
|
display_name: z.string().optional(),
|
|
@@ -3898,7 +3905,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
3898
3905
|
z.ZodTypeDef,
|
|
3899
3906
|
UpdateToolResponseBody2
|
|
3900
3907
|
> = z.object({
|
|
3901
|
-
id: z.string().default("
|
|
3908
|
+
id: z.string().default("tool_01KA8BQBBN46BDDP9THCNVB2NS"),
|
|
3902
3909
|
path: z.string(),
|
|
3903
3910
|
key: z.string(),
|
|
3904
3911
|
displayName: z.string().optional(),
|
|
@@ -4092,7 +4099,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
4092
4099
|
z.ZodTypeDef,
|
|
4093
4100
|
unknown
|
|
4094
4101
|
> = z.object({
|
|
4095
|
-
_id: z.string().default("
|
|
4102
|
+
_id: z.string().default("tool_01KA8BQBBKR63J31241PDKQA7V"),
|
|
4096
4103
|
path: z.string(),
|
|
4097
4104
|
key: z.string(),
|
|
4098
4105
|
display_name: z.string().optional(),
|
|
@@ -4143,7 +4150,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
4143
4150
|
z.ZodTypeDef,
|
|
4144
4151
|
UpdateToolResponseBody1
|
|
4145
4152
|
> = z.object({
|
|
4146
|
-
id: z.string().default("
|
|
4153
|
+
id: z.string().default("tool_01KA8BQBBKR63J31241PDKQA7V"),
|
|
4147
4154
|
path: z.string(),
|
|
4148
4155
|
key: z.string(),
|
|
4149
4156
|
displayName: z.string().optional(),
|