@orq-ai/node 4.0.0-rc.18 → 4.0.0-rc.20
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 +314 -242
- package/bin/mcp-server.js.map +38 -38
- 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.d.ts +42 -12
- package/models/operations/createtool.d.ts.map +1 -1
- package/models/operations/createtool.js +70 -28
- package/models/operations/createtool.js.map +1 -1
- package/models/operations/duplicatetool.d.ts +17 -2
- package/models/operations/duplicatetool.d.ts.map +1 -1
- package/models/operations/duplicatetool.js +32 -14
- 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.d.ts +17 -2
- package/models/operations/getalltools.d.ts.map +1 -1
- package/models/operations/getalltools.js +33 -13
- 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/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 +17 -2
- package/models/operations/retrievetool.d.ts.map +1 -1
- package/models/operations/retrievetool.js +32 -14
- package/models/operations/retrievetool.js.map +1 -1
- package/models/operations/runagent.d.ts +17 -2
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +23 -5
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +17 -2
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +25 -5
- package/models/operations/streamrunagent.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 +42 -12
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +66 -28
- 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 +149 -38
- package/src/models/operations/duplicatetool.ts +70 -14
- 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 +63 -14
- 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 +70 -14
- package/src/models/operations/runagent.ts +44 -4
- package/src/models/operations/streamrunagent.ts +53 -4
- 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 +151 -36
|
@@ -4893,7 +4893,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
4893
4893
|
.default("orq"),
|
|
4894
4894
|
reviewed_by_id: z.string(),
|
|
4895
4895
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4896
|
-
"2025-11-
|
|
4896
|
+
"2025-11-10T12:21:13.132Z",
|
|
4897
4897
|
).transform(v => new Date(v)),
|
|
4898
4898
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
4899
4899
|
values: z.array(z.string()),
|
|
@@ -4930,7 +4930,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
4930
4930
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
4931
4931
|
.default("orq"),
|
|
4932
4932
|
reviewedById: z.string(),
|
|
4933
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4933
|
+
reviewedAt: z.date().default(() => new Date("2025-11-10T12:21:13.132Z"))
|
|
4934
4934
|
.transform(v => v.toISOString()),
|
|
4935
4935
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
4936
4936
|
values: z.array(z.string()),
|
|
@@ -5003,7 +5003,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
5003
5003
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
5004
5004
|
reviewed_by_id: z.string(),
|
|
5005
5005
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5006
|
-
"2025-11-
|
|
5006
|
+
"2025-11-10T12:21:13.132Z",
|
|
5007
5007
|
).transform(v => new Date(v)),
|
|
5008
5008
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
5009
5009
|
value: z.number(),
|
|
@@ -5041,7 +5041,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
5041
5041
|
"orq",
|
|
5042
5042
|
),
|
|
5043
5043
|
reviewedById: z.string(),
|
|
5044
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5044
|
+
reviewedAt: z.date().default(() => new Date("2025-11-10T12:21:13.132Z"))
|
|
5045
5045
|
.transform(v => v.toISOString()),
|
|
5046
5046
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
5047
5047
|
value: z.number(),
|
|
@@ -5112,7 +5112,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
5112
5112
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
5113
5113
|
reviewed_by_id: z.string(),
|
|
5114
5114
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5115
|
-
"2025-11-
|
|
5115
|
+
"2025-11-10T12:21:13.131Z",
|
|
5116
5116
|
).transform(v => new Date(v)),
|
|
5117
5117
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
5118
5118
|
value: z.string(),
|
|
@@ -5147,7 +5147,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
5147
5147
|
humanReviewId: z.string(),
|
|
5148
5148
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
5149
5149
|
reviewedById: z.string(),
|
|
5150
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5150
|
+
reviewedAt: z.date().default(() => new Date("2025-11-10T12:21:13.131Z"))
|
|
5151
5151
|
.transform(v => v.toISOString()),
|
|
5152
5152
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
5153
5153
|
value: z.string(),
|
|
@@ -5262,7 +5262,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
5262
5262
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5263
5263
|
.optional(),
|
|
5264
5264
|
updated: z.string().datetime({ offset: true }).default(
|
|
5265
|
-
"2025-11-
|
|
5265
|
+
"2025-11-10T12:21:01.167Z",
|
|
5266
5266
|
).transform(v => new Date(v)),
|
|
5267
5267
|
}).transform((v) => {
|
|
5268
5268
|
return remap$(v, {
|
|
@@ -5340,7 +5340,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
5340
5340
|
createdById: z.string().optional(),
|
|
5341
5341
|
updatedById: z.string().optional(),
|
|
5342
5342
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5343
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5343
|
+
updated: z.date().default(() => new Date("2025-11-10T12:21:01.167Z"))
|
|
5344
5344
|
.transform(v => v.toISOString()),
|
|
5345
5345
|
}).transform((v) => {
|
|
5346
5346
|
return remap$(v, {
|
|
@@ -256,7 +256,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
256
256
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
257
257
|
.optional(),
|
|
258
258
|
updated: z.string().datetime({ offset: true }).default(
|
|
259
|
-
"2025-11-
|
|
259
|
+
"2025-11-10T12:21:01.167Z",
|
|
260
260
|
).transform(v => new Date(v)),
|
|
261
261
|
}).transform((v) => {
|
|
262
262
|
return remap$(v, {
|
|
@@ -295,7 +295,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
295
295
|
createdById: z.string().optional(),
|
|
296
296
|
updatedById: z.string().optional(),
|
|
297
297
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
298
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
298
|
+
updated: z.date().default(() => new Date("2025-11-10T12:21:01.167Z"))
|
|
299
299
|
.transform(v => v.toISOString()),
|
|
300
300
|
}).transform((v) => {
|
|
301
301
|
return remap$(v, {
|
|
@@ -202,7 +202,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
202
202
|
z.ZodTypeDef,
|
|
203
203
|
unknown
|
|
204
204
|
> = z.object({
|
|
205
|
-
_id: z.string().default("
|
|
205
|
+
_id: z.string().default("01K9PVD4N9WVGH3QDBFZKAWCMN"),
|
|
206
206
|
display_name: z.string(),
|
|
207
207
|
description: z.string().optional(),
|
|
208
208
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -245,7 +245,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
245
245
|
z.ZodTypeDef,
|
|
246
246
|
UpdateDatasourceResponseBody
|
|
247
247
|
> = z.object({
|
|
248
|
-
id: z.string().default("
|
|
248
|
+
id: z.string().default("01K9PVD4N9WVGH3QDBFZKAWCMN"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2988,8 +2988,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2988
2988
|
> = z.object({
|
|
2989
2989
|
_id: z.string(),
|
|
2990
2990
|
description: z.string(),
|
|
2991
|
-
created: z.string().default("2025-11-
|
|
2992
|
-
updated: z.string().default("2025-11-
|
|
2991
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
2992
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
2993
2993
|
guardrail_config: z.union([
|
|
2994
2994
|
z.lazy(() =>
|
|
2995
2995
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3031,8 +3031,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3031
3031
|
> = z.object({
|
|
3032
3032
|
id: z.string(),
|
|
3033
3033
|
description: z.string(),
|
|
3034
|
-
created: z.string().default("2025-11-
|
|
3035
|
-
updated: z.string().default("2025-11-
|
|
3034
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
3035
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
3036
3036
|
guardrailConfig: z.union([
|
|
3037
3037
|
z.lazy(() =>
|
|
3038
3038
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3322,8 +3322,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3322
3322
|
> = z.object({
|
|
3323
3323
|
_id: z.string(),
|
|
3324
3324
|
description: z.string(),
|
|
3325
|
-
created: z.string().default("2025-11-
|
|
3326
|
-
updated: z.string().default("2025-11-
|
|
3325
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
3326
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
3327
3327
|
guardrail_config: z.union([
|
|
3328
3328
|
z.lazy(() =>
|
|
3329
3329
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3368,8 +3368,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3368
3368
|
> = z.object({
|
|
3369
3369
|
id: z.string(),
|
|
3370
3370
|
description: z.string(),
|
|
3371
|
-
created: z.string().default("2025-11-
|
|
3372
|
-
updated: z.string().default("2025-11-
|
|
3371
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
3372
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
3373
3373
|
guardrailConfig: z.union([
|
|
3374
3374
|
z.lazy(() =>
|
|
3375
3375
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5707,8 +5707,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5707
5707
|
> = z.object({
|
|
5708
5708
|
_id: z.string(),
|
|
5709
5709
|
description: z.string(),
|
|
5710
|
-
created: z.string().default("2025-11-
|
|
5711
|
-
updated: z.string().default("2025-11-
|
|
5710
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5711
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5712
5712
|
guardrail_config: z.union([
|
|
5713
5713
|
z.lazy(() =>
|
|
5714
5714
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5821,8 +5821,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5821
5821
|
> = z.object({
|
|
5822
5822
|
id: z.string(),
|
|
5823
5823
|
description: z.string(),
|
|
5824
|
-
created: z.string().default("2025-11-
|
|
5825
|
-
updated: z.string().default("2025-11-
|
|
5824
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5825
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5826
5826
|
guardrailConfig: z.union([
|
|
5827
5827
|
z.lazy(() =>
|
|
5828
5828
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -6138,8 +6138,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
6138
6138
|
> = z.object({
|
|
6139
6139
|
_id: z.string(),
|
|
6140
6140
|
description: z.string(),
|
|
6141
|
-
created: z.string().default("2025-11-
|
|
6142
|
-
updated: z.string().default("2025-11-
|
|
6141
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6142
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6143
6143
|
guardrail_config: z.union([
|
|
6144
6144
|
z.lazy(() =>
|
|
6145
6145
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -6180,8 +6180,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
6180
6180
|
> = z.object({
|
|
6181
6181
|
id: z.string(),
|
|
6182
6182
|
description: z.string(),
|
|
6183
|
-
created: z.string().default("2025-11-
|
|
6184
|
-
updated: z.string().default("2025-11-
|
|
6183
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6184
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6185
6185
|
guardrailConfig: z.union([
|
|
6186
6186
|
z.lazy(() =>
|
|
6187
6187
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6466,8 +6466,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6466
6466
|
> = z.object({
|
|
6467
6467
|
_id: z.string(),
|
|
6468
6468
|
description: z.string(),
|
|
6469
|
-
created: z.string().default("2025-11-
|
|
6470
|
-
updated: z.string().default("2025-11-
|
|
6469
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6470
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6471
6471
|
guardrail_config: z.union([
|
|
6472
6472
|
z.lazy(() =>
|
|
6473
6473
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6514,8 +6514,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6514
6514
|
> = z.object({
|
|
6515
6515
|
id: z.string(),
|
|
6516
6516
|
description: z.string(),
|
|
6517
|
-
created: z.string().default("2025-11-
|
|
6518
|
-
updated: z.string().default("2025-11-
|
|
6517
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6518
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6519
6519
|
guardrailConfig: z.union([
|
|
6520
6520
|
z.lazy(() =>
|
|
6521
6521
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6784,8 +6784,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6784
6784
|
> = z.object({
|
|
6785
6785
|
_id: z.string(),
|
|
6786
6786
|
description: z.string(),
|
|
6787
|
-
created: z.string().default("2025-11-
|
|
6788
|
-
updated: z.string().default("2025-11-
|
|
6787
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6788
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6789
6789
|
guardrail_config: z.union([
|
|
6790
6790
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6791
6791
|
z.lazy(() =>
|
|
@@ -6824,8 +6824,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6824
6824
|
> = z.object({
|
|
6825
6825
|
id: z.string(),
|
|
6826
6826
|
description: z.string(),
|
|
6827
|
-
created: z.string().default("2025-11-
|
|
6828
|
-
updated: z.string().default("2025-11-
|
|
6827
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6828
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
6829
6829
|
guardrailConfig: z.union([
|
|
6830
6830
|
z.lazy(() =>
|
|
6831
6831
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -7064,8 +7064,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
7064
7064
|
> = z.object({
|
|
7065
7065
|
_id: z.string(),
|
|
7066
7066
|
description: z.string(),
|
|
7067
|
-
created: z.string().default("2025-11-
|
|
7068
|
-
updated: z.string().default("2025-11-
|
|
7067
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
7068
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
7069
7069
|
guardrail_config: z.union([
|
|
7070
7070
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
7071
7071
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -7104,8 +7104,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
7104
7104
|
> = z.object({
|
|
7105
7105
|
id: z.string(),
|
|
7106
7106
|
description: z.string(),
|
|
7107
|
-
created: z.string().default("2025-11-
|
|
7108
|
-
updated: z.string().default("2025-11-
|
|
7107
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
7108
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
7109
7109
|
guardrailConfig: z.union([
|
|
7110
7110
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7111
7111
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -104,7 +104,7 @@ export type UpdateToolRequestBodyToolsRequest4Type = ClosedEnum<
|
|
|
104
104
|
typeof UpdateToolRequestBodyToolsRequest4Type
|
|
105
105
|
>;
|
|
106
106
|
|
|
107
|
-
export type
|
|
107
|
+
export type UpdateToolRequestBodyHeaders = {
|
|
108
108
|
value: string;
|
|
109
109
|
encrypted?: boolean | undefined;
|
|
110
110
|
};
|
|
@@ -155,7 +155,7 @@ export type RequestBodyMcp = {
|
|
|
155
155
|
/**
|
|
156
156
|
* HTTP headers for MCP server requests (encrypted format)
|
|
157
157
|
*/
|
|
158
|
-
headers?: { [k: string]:
|
|
158
|
+
headers?: { [k: string]: UpdateToolRequestBodyHeaders } | undefined;
|
|
159
159
|
/**
|
|
160
160
|
* The original MCP tool input schema for LLM conversion
|
|
161
161
|
*/
|
|
@@ -239,6 +239,11 @@ export type UpdateToolRequestBodyMethod = ClosedEnum<
|
|
|
239
239
|
typeof UpdateToolRequestBodyMethod
|
|
240
240
|
>;
|
|
241
241
|
|
|
242
|
+
export type UpdateToolRequestBodyToolsHeaders = {
|
|
243
|
+
value: string;
|
|
244
|
+
encrypted?: boolean | undefined;
|
|
245
|
+
};
|
|
246
|
+
|
|
242
247
|
/**
|
|
243
248
|
* The blueprint for the HTTP request. The `arguments` field will be used to replace the placeholders in the `url`, `headers`, `body`, and `arguments` fields.
|
|
244
249
|
*/
|
|
@@ -254,7 +259,7 @@ export type UpdateToolRequestBodyBlueprint = {
|
|
|
254
259
|
/**
|
|
255
260
|
* The headers to send with the request.
|
|
256
261
|
*/
|
|
257
|
-
headers?: { [k: string]:
|
|
262
|
+
headers?: { [k: string]: UpdateToolRequestBodyToolsHeaders } | undefined;
|
|
258
263
|
/**
|
|
259
264
|
* The body to send with the request.
|
|
260
265
|
*/
|
|
@@ -778,6 +783,11 @@ export type UpdateToolResponseBodyMethod = ClosedEnum<
|
|
|
778
783
|
typeof UpdateToolResponseBodyMethod
|
|
779
784
|
>;
|
|
780
785
|
|
|
786
|
+
export type UpdateToolResponseBodyToolsHeaders = {
|
|
787
|
+
value: string;
|
|
788
|
+
encrypted?: boolean | undefined;
|
|
789
|
+
};
|
|
790
|
+
|
|
781
791
|
/**
|
|
782
792
|
* The blueprint for the HTTP request. The `arguments` field will be used to replace the placeholders in the `url`, `headers`, `body`, and `arguments` fields.
|
|
783
793
|
*/
|
|
@@ -793,7 +803,7 @@ export type UpdateToolResponseBodyBlueprint = {
|
|
|
793
803
|
/**
|
|
794
804
|
* The headers to send with the request.
|
|
795
805
|
*/
|
|
796
|
-
headers?: { [k: string]:
|
|
806
|
+
headers?: { [k: string]: UpdateToolResponseBodyToolsHeaders } | undefined;
|
|
797
807
|
/**
|
|
798
808
|
* The body to send with the request.
|
|
799
809
|
*/
|
|
@@ -1243,8 +1253,8 @@ export const UpdateToolRequestBodyToolsRequest4Type$outboundSchema:
|
|
|
1243
1253
|
UpdateToolRequestBodyToolsRequest4Type$inboundSchema;
|
|
1244
1254
|
|
|
1245
1255
|
/** @internal */
|
|
1246
|
-
export const
|
|
1247
|
-
|
|
1256
|
+
export const UpdateToolRequestBodyHeaders$inboundSchema: z.ZodType<
|
|
1257
|
+
UpdateToolRequestBodyHeaders,
|
|
1248
1258
|
z.ZodTypeDef,
|
|
1249
1259
|
unknown
|
|
1250
1260
|
> = z.object({
|
|
@@ -1252,35 +1262,37 @@ export const RequestBodyHeaders$inboundSchema: z.ZodType<
|
|
|
1252
1262
|
encrypted: z.boolean().default(false),
|
|
1253
1263
|
});
|
|
1254
1264
|
/** @internal */
|
|
1255
|
-
export type
|
|
1265
|
+
export type UpdateToolRequestBodyHeaders$Outbound = {
|
|
1256
1266
|
value: string;
|
|
1257
1267
|
encrypted: boolean;
|
|
1258
1268
|
};
|
|
1259
1269
|
|
|
1260
1270
|
/** @internal */
|
|
1261
|
-
export const
|
|
1262
|
-
|
|
1271
|
+
export const UpdateToolRequestBodyHeaders$outboundSchema: z.ZodType<
|
|
1272
|
+
UpdateToolRequestBodyHeaders$Outbound,
|
|
1263
1273
|
z.ZodTypeDef,
|
|
1264
|
-
|
|
1274
|
+
UpdateToolRequestBodyHeaders
|
|
1265
1275
|
> = z.object({
|
|
1266
1276
|
value: z.string(),
|
|
1267
1277
|
encrypted: z.boolean().default(false),
|
|
1268
1278
|
});
|
|
1269
1279
|
|
|
1270
|
-
export function
|
|
1271
|
-
|
|
1280
|
+
export function updateToolRequestBodyHeadersToJSON(
|
|
1281
|
+
updateToolRequestBodyHeaders: UpdateToolRequestBodyHeaders,
|
|
1272
1282
|
): string {
|
|
1273
1283
|
return JSON.stringify(
|
|
1274
|
-
|
|
1284
|
+
UpdateToolRequestBodyHeaders$outboundSchema.parse(
|
|
1285
|
+
updateToolRequestBodyHeaders,
|
|
1286
|
+
),
|
|
1275
1287
|
);
|
|
1276
1288
|
}
|
|
1277
|
-
export function
|
|
1289
|
+
export function updateToolRequestBodyHeadersFromJSON(
|
|
1278
1290
|
jsonString: string,
|
|
1279
|
-
): SafeParseResult<
|
|
1291
|
+
): SafeParseResult<UpdateToolRequestBodyHeaders, SDKValidationError> {
|
|
1280
1292
|
return safeParse(
|
|
1281
1293
|
jsonString,
|
|
1282
|
-
(x) =>
|
|
1283
|
-
`Failed to parse '
|
|
1294
|
+
(x) => UpdateToolRequestBodyHeaders$inboundSchema.parse(JSON.parse(x)),
|
|
1295
|
+
`Failed to parse 'UpdateToolRequestBodyHeaders' from JSON`,
|
|
1284
1296
|
);
|
|
1285
1297
|
}
|
|
1286
1298
|
|
|
@@ -1356,7 +1368,8 @@ export const RequestBodyMcp$inboundSchema: z.ZodType<
|
|
|
1356
1368
|
server_id: z.string(),
|
|
1357
1369
|
tool_name: z.string(),
|
|
1358
1370
|
server_url: z.string(),
|
|
1359
|
-
headers: z.record(z.lazy(() =>
|
|
1371
|
+
headers: z.record(z.lazy(() => UpdateToolRequestBodyHeaders$inboundSchema))
|
|
1372
|
+
.optional(),
|
|
1360
1373
|
input_schema: z.lazy(() => RequestBodyInputSchema$inboundSchema),
|
|
1361
1374
|
connection_type: RequestBodyConnectionType$inboundSchema,
|
|
1362
1375
|
}).transform((v) => {
|
|
@@ -1373,7 +1386,7 @@ export type RequestBodyMcp$Outbound = {
|
|
|
1373
1386
|
server_id: string;
|
|
1374
1387
|
tool_name: string;
|
|
1375
1388
|
server_url: string;
|
|
1376
|
-
headers?: { [k: string]:
|
|
1389
|
+
headers?: { [k: string]: UpdateToolRequestBodyHeaders$Outbound } | undefined;
|
|
1377
1390
|
input_schema: RequestBodyInputSchema$Outbound;
|
|
1378
1391
|
connection_type: string;
|
|
1379
1392
|
};
|
|
@@ -1387,7 +1400,8 @@ export const RequestBodyMcp$outboundSchema: z.ZodType<
|
|
|
1387
1400
|
serverId: z.string(),
|
|
1388
1401
|
toolName: z.string(),
|
|
1389
1402
|
serverUrl: z.string(),
|
|
1390
|
-
headers: z.record(z.lazy(() =>
|
|
1403
|
+
headers: z.record(z.lazy(() => UpdateToolRequestBodyHeaders$outboundSchema))
|
|
1404
|
+
.optional(),
|
|
1391
1405
|
inputSchema: z.lazy(() => RequestBodyInputSchema$outboundSchema),
|
|
1392
1406
|
connectionType: RequestBodyConnectionType$outboundSchema,
|
|
1393
1407
|
}).transform((v) => {
|
|
@@ -1506,6 +1520,50 @@ export const UpdateToolRequestBodyMethod$outboundSchema: z.ZodNativeEnum<
|
|
|
1506
1520
|
typeof UpdateToolRequestBodyMethod
|
|
1507
1521
|
> = UpdateToolRequestBodyMethod$inboundSchema;
|
|
1508
1522
|
|
|
1523
|
+
/** @internal */
|
|
1524
|
+
export const UpdateToolRequestBodyToolsHeaders$inboundSchema: z.ZodType<
|
|
1525
|
+
UpdateToolRequestBodyToolsHeaders,
|
|
1526
|
+
z.ZodTypeDef,
|
|
1527
|
+
unknown
|
|
1528
|
+
> = z.object({
|
|
1529
|
+
value: z.string(),
|
|
1530
|
+
encrypted: z.boolean().default(false),
|
|
1531
|
+
});
|
|
1532
|
+
/** @internal */
|
|
1533
|
+
export type UpdateToolRequestBodyToolsHeaders$Outbound = {
|
|
1534
|
+
value: string;
|
|
1535
|
+
encrypted: boolean;
|
|
1536
|
+
};
|
|
1537
|
+
|
|
1538
|
+
/** @internal */
|
|
1539
|
+
export const UpdateToolRequestBodyToolsHeaders$outboundSchema: z.ZodType<
|
|
1540
|
+
UpdateToolRequestBodyToolsHeaders$Outbound,
|
|
1541
|
+
z.ZodTypeDef,
|
|
1542
|
+
UpdateToolRequestBodyToolsHeaders
|
|
1543
|
+
> = z.object({
|
|
1544
|
+
value: z.string(),
|
|
1545
|
+
encrypted: z.boolean().default(false),
|
|
1546
|
+
});
|
|
1547
|
+
|
|
1548
|
+
export function updateToolRequestBodyToolsHeadersToJSON(
|
|
1549
|
+
updateToolRequestBodyToolsHeaders: UpdateToolRequestBodyToolsHeaders,
|
|
1550
|
+
): string {
|
|
1551
|
+
return JSON.stringify(
|
|
1552
|
+
UpdateToolRequestBodyToolsHeaders$outboundSchema.parse(
|
|
1553
|
+
updateToolRequestBodyToolsHeaders,
|
|
1554
|
+
),
|
|
1555
|
+
);
|
|
1556
|
+
}
|
|
1557
|
+
export function updateToolRequestBodyToolsHeadersFromJSON(
|
|
1558
|
+
jsonString: string,
|
|
1559
|
+
): SafeParseResult<UpdateToolRequestBodyToolsHeaders, SDKValidationError> {
|
|
1560
|
+
return safeParse(
|
|
1561
|
+
jsonString,
|
|
1562
|
+
(x) => UpdateToolRequestBodyToolsHeaders$inboundSchema.parse(JSON.parse(x)),
|
|
1563
|
+
`Failed to parse 'UpdateToolRequestBodyToolsHeaders' from JSON`,
|
|
1564
|
+
);
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1509
1567
|
/** @internal */
|
|
1510
1568
|
export const UpdateToolRequestBodyBlueprint$inboundSchema: z.ZodType<
|
|
1511
1569
|
UpdateToolRequestBodyBlueprint,
|
|
@@ -1514,14 +1572,18 @@ export const UpdateToolRequestBodyBlueprint$inboundSchema: z.ZodType<
|
|
|
1514
1572
|
> = z.object({
|
|
1515
1573
|
url: z.string(),
|
|
1516
1574
|
method: UpdateToolRequestBodyMethod$inboundSchema,
|
|
1517
|
-
headers: z.record(
|
|
1575
|
+
headers: z.record(
|
|
1576
|
+
z.lazy(() => UpdateToolRequestBodyToolsHeaders$inboundSchema),
|
|
1577
|
+
).optional(),
|
|
1518
1578
|
body: z.record(z.any()).optional(),
|
|
1519
1579
|
});
|
|
1520
1580
|
/** @internal */
|
|
1521
1581
|
export type UpdateToolRequestBodyBlueprint$Outbound = {
|
|
1522
1582
|
url: string;
|
|
1523
1583
|
method: string;
|
|
1524
|
-
headers?:
|
|
1584
|
+
headers?:
|
|
1585
|
+
| { [k: string]: UpdateToolRequestBodyToolsHeaders$Outbound }
|
|
1586
|
+
| undefined;
|
|
1525
1587
|
body?: { [k: string]: any } | undefined;
|
|
1526
1588
|
};
|
|
1527
1589
|
|
|
@@ -1533,7 +1595,9 @@ export const UpdateToolRequestBodyBlueprint$outboundSchema: z.ZodType<
|
|
|
1533
1595
|
> = z.object({
|
|
1534
1596
|
url: z.string(),
|
|
1535
1597
|
method: UpdateToolRequestBodyMethod$outboundSchema,
|
|
1536
|
-
headers: z.record(
|
|
1598
|
+
headers: z.record(
|
|
1599
|
+
z.lazy(() => UpdateToolRequestBodyToolsHeaders$outboundSchema),
|
|
1600
|
+
).optional(),
|
|
1537
1601
|
body: z.record(z.any()).optional(),
|
|
1538
1602
|
});
|
|
1539
1603
|
|
|
@@ -2251,7 +2315,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
2251
2315
|
z.ZodTypeDef,
|
|
2252
2316
|
unknown
|
|
2253
2317
|
> = z.object({
|
|
2254
|
-
_id: z.string().default("
|
|
2318
|
+
_id: z.string().default("01K9PVD4HDXM7KBZE9GQAK0ZB2"),
|
|
2255
2319
|
path: z.string(),
|
|
2256
2320
|
key: z.string(),
|
|
2257
2321
|
display_name: z.string().optional(),
|
|
@@ -2305,7 +2369,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
2305
2369
|
z.ZodTypeDef,
|
|
2306
2370
|
UpdateToolResponseBody5
|
|
2307
2371
|
> = z.object({
|
|
2308
|
-
id: z.string().default("
|
|
2372
|
+
id: z.string().default("01K9PVD4HDXM7KBZE9GQAK0ZB2"),
|
|
2309
2373
|
path: z.string(),
|
|
2310
2374
|
key: z.string(),
|
|
2311
2375
|
displayName: z.string().optional(),
|
|
@@ -2563,7 +2627,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
2563
2627
|
z.ZodTypeDef,
|
|
2564
2628
|
unknown
|
|
2565
2629
|
> = z.object({
|
|
2566
|
-
_id: z.string().default("
|
|
2630
|
+
_id: z.string().default("01K9PVD4HCYHBXQ3JP7MRGR916"),
|
|
2567
2631
|
path: z.string(),
|
|
2568
2632
|
key: z.string(),
|
|
2569
2633
|
display_name: z.string().optional(),
|
|
@@ -2616,7 +2680,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
2616
2680
|
z.ZodTypeDef,
|
|
2617
2681
|
UpdateToolResponseBody4
|
|
2618
2682
|
> = z.object({
|
|
2619
|
-
id: z.string().default("
|
|
2683
|
+
id: z.string().default("01K9PVD4HCYHBXQ3JP7MRGR916"),
|
|
2620
2684
|
path: z.string(),
|
|
2621
2685
|
key: z.string(),
|
|
2622
2686
|
displayName: z.string().optional(),
|
|
@@ -2689,6 +2753,51 @@ export const UpdateToolResponseBodyMethod$outboundSchema: z.ZodNativeEnum<
|
|
|
2689
2753
|
typeof UpdateToolResponseBodyMethod
|
|
2690
2754
|
> = UpdateToolResponseBodyMethod$inboundSchema;
|
|
2691
2755
|
|
|
2756
|
+
/** @internal */
|
|
2757
|
+
export const UpdateToolResponseBodyToolsHeaders$inboundSchema: z.ZodType<
|
|
2758
|
+
UpdateToolResponseBodyToolsHeaders,
|
|
2759
|
+
z.ZodTypeDef,
|
|
2760
|
+
unknown
|
|
2761
|
+
> = z.object({
|
|
2762
|
+
value: z.string(),
|
|
2763
|
+
encrypted: z.boolean().default(false),
|
|
2764
|
+
});
|
|
2765
|
+
/** @internal */
|
|
2766
|
+
export type UpdateToolResponseBodyToolsHeaders$Outbound = {
|
|
2767
|
+
value: string;
|
|
2768
|
+
encrypted: boolean;
|
|
2769
|
+
};
|
|
2770
|
+
|
|
2771
|
+
/** @internal */
|
|
2772
|
+
export const UpdateToolResponseBodyToolsHeaders$outboundSchema: z.ZodType<
|
|
2773
|
+
UpdateToolResponseBodyToolsHeaders$Outbound,
|
|
2774
|
+
z.ZodTypeDef,
|
|
2775
|
+
UpdateToolResponseBodyToolsHeaders
|
|
2776
|
+
> = z.object({
|
|
2777
|
+
value: z.string(),
|
|
2778
|
+
encrypted: z.boolean().default(false),
|
|
2779
|
+
});
|
|
2780
|
+
|
|
2781
|
+
export function updateToolResponseBodyToolsHeadersToJSON(
|
|
2782
|
+
updateToolResponseBodyToolsHeaders: UpdateToolResponseBodyToolsHeaders,
|
|
2783
|
+
): string {
|
|
2784
|
+
return JSON.stringify(
|
|
2785
|
+
UpdateToolResponseBodyToolsHeaders$outboundSchema.parse(
|
|
2786
|
+
updateToolResponseBodyToolsHeaders,
|
|
2787
|
+
),
|
|
2788
|
+
);
|
|
2789
|
+
}
|
|
2790
|
+
export function updateToolResponseBodyToolsHeadersFromJSON(
|
|
2791
|
+
jsonString: string,
|
|
2792
|
+
): SafeParseResult<UpdateToolResponseBodyToolsHeaders, SDKValidationError> {
|
|
2793
|
+
return safeParse(
|
|
2794
|
+
jsonString,
|
|
2795
|
+
(x) =>
|
|
2796
|
+
UpdateToolResponseBodyToolsHeaders$inboundSchema.parse(JSON.parse(x)),
|
|
2797
|
+
`Failed to parse 'UpdateToolResponseBodyToolsHeaders' from JSON`,
|
|
2798
|
+
);
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2692
2801
|
/** @internal */
|
|
2693
2802
|
export const UpdateToolResponseBodyBlueprint$inboundSchema: z.ZodType<
|
|
2694
2803
|
UpdateToolResponseBodyBlueprint,
|
|
@@ -2697,14 +2806,18 @@ export const UpdateToolResponseBodyBlueprint$inboundSchema: z.ZodType<
|
|
|
2697
2806
|
> = z.object({
|
|
2698
2807
|
url: z.string(),
|
|
2699
2808
|
method: UpdateToolResponseBodyMethod$inboundSchema,
|
|
2700
|
-
headers: z.record(
|
|
2809
|
+
headers: z.record(
|
|
2810
|
+
z.lazy(() => UpdateToolResponseBodyToolsHeaders$inboundSchema),
|
|
2811
|
+
).optional(),
|
|
2701
2812
|
body: z.record(z.any()).optional(),
|
|
2702
2813
|
});
|
|
2703
2814
|
/** @internal */
|
|
2704
2815
|
export type UpdateToolResponseBodyBlueprint$Outbound = {
|
|
2705
2816
|
url: string;
|
|
2706
2817
|
method: string;
|
|
2707
|
-
headers?:
|
|
2818
|
+
headers?:
|
|
2819
|
+
| { [k: string]: UpdateToolResponseBodyToolsHeaders$Outbound }
|
|
2820
|
+
| undefined;
|
|
2708
2821
|
body?: { [k: string]: any } | undefined;
|
|
2709
2822
|
};
|
|
2710
2823
|
|
|
@@ -2716,7 +2829,9 @@ export const UpdateToolResponseBodyBlueprint$outboundSchema: z.ZodType<
|
|
|
2716
2829
|
> = z.object({
|
|
2717
2830
|
url: z.string(),
|
|
2718
2831
|
method: UpdateToolResponseBodyMethod$outboundSchema,
|
|
2719
|
-
headers: z.record(
|
|
2832
|
+
headers: z.record(
|
|
2833
|
+
z.lazy(() => UpdateToolResponseBodyToolsHeaders$outboundSchema),
|
|
2834
|
+
).optional(),
|
|
2720
2835
|
body: z.record(z.any()).optional(),
|
|
2721
2836
|
});
|
|
2722
2837
|
|
|
@@ -2905,7 +3020,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
2905
3020
|
z.ZodTypeDef,
|
|
2906
3021
|
unknown
|
|
2907
3022
|
> = z.object({
|
|
2908
|
-
_id: z.string().default("
|
|
3023
|
+
_id: z.string().default("01K9PVD4H8X3NTMBDZB4JM7PMP"),
|
|
2909
3024
|
path: z.string(),
|
|
2910
3025
|
key: z.string(),
|
|
2911
3026
|
display_name: z.string().optional(),
|
|
@@ -2958,7 +3073,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
2958
3073
|
z.ZodTypeDef,
|
|
2959
3074
|
UpdateToolResponseBody3
|
|
2960
3075
|
> = z.object({
|
|
2961
|
-
id: z.string().default("
|
|
3076
|
+
id: z.string().default("01K9PVD4H8X3NTMBDZB4JM7PMP"),
|
|
2962
3077
|
path: z.string(),
|
|
2963
3078
|
key: z.string(),
|
|
2964
3079
|
displayName: z.string().optional(),
|
|
@@ -3078,7 +3193,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
3078
3193
|
z.ZodTypeDef,
|
|
3079
3194
|
unknown
|
|
3080
3195
|
> = z.object({
|
|
3081
|
-
_id: z.string().default("
|
|
3196
|
+
_id: z.string().default("01K9PVD4H6K0K70MJNWQ742PKE"),
|
|
3082
3197
|
path: z.string(),
|
|
3083
3198
|
key: z.string(),
|
|
3084
3199
|
display_name: z.string().optional(),
|
|
@@ -3130,7 +3245,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
3130
3245
|
z.ZodTypeDef,
|
|
3131
3246
|
UpdateToolResponseBody2
|
|
3132
3247
|
> = z.object({
|
|
3133
|
-
id: z.string().default("
|
|
3248
|
+
id: z.string().default("01K9PVD4H6K0K70MJNWQ742PKE"),
|
|
3134
3249
|
path: z.string(),
|
|
3135
3250
|
key: z.string(),
|
|
3136
3251
|
displayName: z.string().optional(),
|
|
@@ -3249,7 +3364,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
3249
3364
|
z.ZodTypeDef,
|
|
3250
3365
|
unknown
|
|
3251
3366
|
> = z.object({
|
|
3252
|
-
_id: z.string().default("
|
|
3367
|
+
_id: z.string().default("01K9PVD4H4YSAZT3HGGK6KVZ4E"),
|
|
3253
3368
|
path: z.string(),
|
|
3254
3369
|
key: z.string(),
|
|
3255
3370
|
display_name: z.string().optional(),
|
|
@@ -3300,7 +3415,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
3300
3415
|
z.ZodTypeDef,
|
|
3301
3416
|
UpdateToolResponseBody1
|
|
3302
3417
|
> = z.object({
|
|
3303
|
-
id: z.string().default("
|
|
3418
|
+
id: z.string().default("01K9PVD4H4YSAZT3HGGK6KVZ4E"),
|
|
3304
3419
|
path: z.string(),
|
|
3305
3420
|
key: z.string(),
|
|
3306
3421
|
displayName: z.string().optional(),
|