@orq-ai/node 3.14.28 → 3.14.30
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 +210 -210
- package/bin/mcp-server.js.map +35 -35
- 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/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 +10 -10
- package/models/operations/duplicatetool.js +10 -10
- 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 +10 -10
- 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 +10 -10
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +10 -10
- package/package.json +1 -1
- package/packages/orq-rc/README.md +25 -21
- package/packages/orq-rc/docs/sdks/agents/README.md +83 -3
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/agentsDuplicate.ts +179 -0
- package/packages/orq-rc/src/funcs/agentsList.ts +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +3 -1
- package/packages/orq-rc/src/mcp-server/tools/agentsDuplicate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/agentsList.ts +1 -1
- package/packages/orq-rc/src/models/errors/duplicateagent.ts +128 -0
- package/packages/orq-rc/src/models/errors/index.ts +1 -0
- package/packages/orq-rc/src/models/operations/createagent.ts +33 -16
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +149 -38
- package/packages/orq-rc/src/models/operations/duplicateagent.ts +3280 -0
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +70 -14
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +29 -17
- package/packages/orq-rc/src/models/operations/getagenttask.ts +750 -8
- package/packages/orq-rc/src/models/operations/getalltools.ts +63 -14
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/index.ts +1 -0
- package/packages/orq-rc/src/models/operations/invokeagent.ts +632 -4
- package/packages/orq-rc/src/models/operations/listagents.ts +32 -21
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +640 -2908
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +70 -14
- package/packages/orq-rc/src/models/operations/runagent.ts +650 -9
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +54 -5
- package/packages/orq-rc/src/models/operations/updateagent.ts +72 -18
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +151 -36
- package/packages/orq-rc/src/sdk/agents.ts +19 -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/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 +10 -10
- package/src/models/operations/duplicatetool.ts +10 -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/getalltools.ts +10 -10
- 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 +10 -10
- 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 +10 -10
|
@@ -4929,7 +4929,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
4929
4929
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
4930
4930
|
reviewed_by_id: z.string(),
|
|
4931
4931
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4932
|
-
"2025-11-
|
|
4932
|
+
"2025-11-11T11:23:27.930Z",
|
|
4933
4933
|
).transform(v => new Date(v)),
|
|
4934
4934
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
4935
4935
|
values: z.array(z.string()),
|
|
@@ -4964,7 +4964,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
4964
4964
|
humanReviewId: z.string(),
|
|
4965
4965
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
4966
4966
|
reviewedById: z.string(),
|
|
4967
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4967
|
+
reviewedAt: z.date().default(() => new Date("2025-11-11T11:23:27.930Z"))
|
|
4968
4968
|
.transform(v => v.toISOString()),
|
|
4969
4969
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
4970
4970
|
values: z.array(z.string()),
|
|
@@ -5029,7 +5029,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
5029
5029
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
5030
5030
|
reviewed_by_id: z.string(),
|
|
5031
5031
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5032
|
-
"2025-11-
|
|
5032
|
+
"2025-11-11T11:23:27.930Z",
|
|
5033
5033
|
).transform(v => new Date(v)),
|
|
5034
5034
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
5035
5035
|
value: z.number(),
|
|
@@ -5064,7 +5064,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
5064
5064
|
humanReviewId: z.string(),
|
|
5065
5065
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
5066
5066
|
reviewedById: z.string(),
|
|
5067
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5067
|
+
reviewedAt: z.date().default(() => new Date("2025-11-11T11:23:27.930Z"))
|
|
5068
5068
|
.transform(v => v.toISOString()),
|
|
5069
5069
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
5070
5070
|
value: z.number(),
|
|
@@ -5127,7 +5127,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
5127
5127
|
source: Source$inboundSchema.default("orq"),
|
|
5128
5128
|
reviewed_by_id: z.string(),
|
|
5129
5129
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5130
|
-
"2025-11-
|
|
5130
|
+
"2025-11-11T11:23:27.929Z",
|
|
5131
5131
|
).transform(v => new Date(v)),
|
|
5132
5132
|
type: EvaluationsType$inboundSchema,
|
|
5133
5133
|
value: z.string(),
|
|
@@ -5162,7 +5162,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
5162
5162
|
humanReviewId: z.string(),
|
|
5163
5163
|
source: Source$outboundSchema.default("orq"),
|
|
5164
5164
|
reviewedById: z.string(),
|
|
5165
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5165
|
+
reviewedAt: z.date().default(() => new Date("2025-11-11T11:23:27.929Z"))
|
|
5166
5166
|
.transform(v => v.toISOString()),
|
|
5167
5167
|
type: EvaluationsType$outboundSchema,
|
|
5168
5168
|
value: z.string(),
|
|
@@ -5267,7 +5267,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5267
5267
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5268
5268
|
.optional(),
|
|
5269
5269
|
updated: z.string().datetime({ offset: true }).default(
|
|
5270
|
-
"2025-11-
|
|
5270
|
+
"2025-11-11T11:23:16.262Z",
|
|
5271
5271
|
).transform(v => new Date(v)),
|
|
5272
5272
|
}).transform((v) => {
|
|
5273
5273
|
return remap$(v, {
|
|
@@ -5345,7 +5345,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5345
5345
|
createdById: z.string().optional(),
|
|
5346
5346
|
updatedById: z.string().optional(),
|
|
5347
5347
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5348
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5348
|
+
updated: z.date().default(() => new Date("2025-11-11T11:23:16.262Z"))
|
|
5349
5349
|
.transform(v => v.toISOString()),
|
|
5350
5350
|
}).transform((v) => {
|
|
5351
5351
|
return remap$(v, {
|
|
@@ -608,7 +608,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
608
608
|
z.ZodTypeDef,
|
|
609
609
|
unknown
|
|
610
610
|
> = z.object({
|
|
611
|
-
_id: z.string().default("
|
|
611
|
+
_id: z.string().default("01K9SAG3P324JNXW7SACC5EQAC"),
|
|
612
612
|
display_name: z.string(),
|
|
613
613
|
description: z.string().optional(),
|
|
614
614
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -651,7 +651,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
651
651
|
z.ZodTypeDef,
|
|
652
652
|
CreateDatasourceResponseBody
|
|
653
653
|
> = z.object({
|
|
654
|
-
id: z.string().default("
|
|
654
|
+
id: z.string().default("01K9SAG3P324JNXW7SACC5EQAC"),
|
|
655
655
|
displayName: z.string(),
|
|
656
656
|
description: z.string().optional(),
|
|
657
657
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2754,8 +2754,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2754
2754
|
> = z.object({
|
|
2755
2755
|
_id: z.string(),
|
|
2756
2756
|
description: z.string(),
|
|
2757
|
-
created: z.string().default("2025-11-
|
|
2758
|
-
updated: z.string().default("2025-11-
|
|
2757
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
2758
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
2759
2759
|
guardrail_config: z.union([
|
|
2760
2760
|
z.lazy(() =>
|
|
2761
2761
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2797,8 +2797,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2797
2797
|
> = z.object({
|
|
2798
2798
|
id: z.string(),
|
|
2799
2799
|
description: z.string(),
|
|
2800
|
-
created: z.string().default("2025-11-
|
|
2801
|
-
updated: z.string().default("2025-11-
|
|
2800
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
2801
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
2802
2802
|
guardrailConfig: z.union([
|
|
2803
2803
|
z.lazy(() =>
|
|
2804
2804
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3079,8 +3079,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3079
3079
|
.object({
|
|
3080
3080
|
_id: z.string(),
|
|
3081
3081
|
description: z.string(),
|
|
3082
|
-
created: z.string().default("2025-11-
|
|
3083
|
-
updated: z.string().default("2025-11-
|
|
3082
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
3083
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
3084
3084
|
guardrail_config: z.union([
|
|
3085
3085
|
z.lazy(() =>
|
|
3086
3086
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3125,8 +3125,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3125
3125
|
> = z.object({
|
|
3126
3126
|
id: z.string(),
|
|
3127
3127
|
description: z.string(),
|
|
3128
|
-
created: z.string().default("2025-11-
|
|
3129
|
-
updated: z.string().default("2025-11-
|
|
3128
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
3129
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
3130
3130
|
guardrailConfig: z.union([
|
|
3131
3131
|
z.lazy(() =>
|
|
3132
3132
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5414,8 +5414,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5414
5414
|
> = z.object({
|
|
5415
5415
|
_id: z.string(),
|
|
5416
5416
|
description: z.string(),
|
|
5417
|
-
created: z.string().default("2025-11-
|
|
5418
|
-
updated: z.string().default("2025-11-
|
|
5417
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
5418
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
5419
5419
|
guardrail_config: z.union([
|
|
5420
5420
|
z.lazy(() =>
|
|
5421
5421
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5528,8 +5528,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5528
5528
|
> = z.object({
|
|
5529
5529
|
id: z.string(),
|
|
5530
5530
|
description: z.string(),
|
|
5531
|
-
created: z.string().default("2025-11-
|
|
5532
|
-
updated: z.string().default("2025-11-
|
|
5531
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
5532
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
5533
5533
|
guardrailConfig: z.union([
|
|
5534
5534
|
z.lazy(() =>
|
|
5535
5535
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5846,8 +5846,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5846
5846
|
> = z.object({
|
|
5847
5847
|
_id: z.string(),
|
|
5848
5848
|
description: z.string(),
|
|
5849
|
-
created: z.string().default("2025-11-
|
|
5850
|
-
updated: z.string().default("2025-11-
|
|
5849
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
5850
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
5851
5851
|
guardrail_config: z.union([
|
|
5852
5852
|
z.lazy(() =>
|
|
5853
5853
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5888,8 +5888,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5888
5888
|
> = z.object({
|
|
5889
5889
|
id: z.string(),
|
|
5890
5890
|
description: z.string(),
|
|
5891
|
-
created: z.string().default("2025-11-
|
|
5892
|
-
updated: z.string().default("2025-11-
|
|
5891
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
5892
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
5893
5893
|
guardrailConfig: z.union([
|
|
5894
5894
|
z.lazy(() =>
|
|
5895
5895
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6169,8 +6169,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6169
6169
|
> = z.object({
|
|
6170
6170
|
_id: z.string(),
|
|
6171
6171
|
description: z.string(),
|
|
6172
|
-
created: z.string().default("2025-11-
|
|
6173
|
-
updated: z.string().default("2025-11-
|
|
6172
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6173
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6174
6174
|
guardrail_config: z.union([
|
|
6175
6175
|
z.lazy(() =>
|
|
6176
6176
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6217,8 +6217,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6217
6217
|
> = z.object({
|
|
6218
6218
|
id: z.string(),
|
|
6219
6219
|
description: z.string(),
|
|
6220
|
-
created: z.string().default("2025-11-
|
|
6221
|
-
updated: z.string().default("2025-11-
|
|
6220
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6221
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6222
6222
|
guardrailConfig: z.union([
|
|
6223
6223
|
z.lazy(() =>
|
|
6224
6224
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6474,8 +6474,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6474
6474
|
> = z.object({
|
|
6475
6475
|
_id: z.string(),
|
|
6476
6476
|
description: z.string(),
|
|
6477
|
-
created: z.string().default("2025-11-
|
|
6478
|
-
updated: z.string().default("2025-11-
|
|
6477
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6478
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6479
6479
|
guardrail_config: z.union([
|
|
6480
6480
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6481
6481
|
z.lazy(() =>
|
|
@@ -6514,8 +6514,8 @@ export const ResponseBodyJSON$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-11T11:23:18.800Z"),
|
|
6518
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6519
6519
|
guardrailConfig: z.union([
|
|
6520
6520
|
z.lazy(() =>
|
|
6521
6521
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6753,8 +6753,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6753
6753
|
> = z.object({
|
|
6754
6754
|
_id: z.string(),
|
|
6755
6755
|
description: z.string(),
|
|
6756
|
-
created: z.string().default("2025-11-
|
|
6757
|
-
updated: z.string().default("2025-11-
|
|
6756
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6757
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6758
6758
|
guardrail_config: z.union([
|
|
6759
6759
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6760
6760
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6793,8 +6793,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6793
6793
|
> = z.object({
|
|
6794
6794
|
id: z.string(),
|
|
6795
6795
|
description: z.string(),
|
|
6796
|
-
created: z.string().default("2025-11-
|
|
6797
|
-
updated: z.string().default("2025-11-
|
|
6796
|
+
created: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6797
|
+
updated: z.string().default("2025-11-11T11:23:18.800Z"),
|
|
6798
6798
|
guardrailConfig: z.union([
|
|
6799
6799
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6800
6800
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -106,7 +106,7 @@ export type CreateToolRequestBodyToolsRequest4Type = ClosedEnum<
|
|
|
106
106
|
typeof CreateToolRequestBodyToolsRequest4Type
|
|
107
107
|
>;
|
|
108
108
|
|
|
109
|
-
export type
|
|
109
|
+
export type RequestBodyHeaders = {
|
|
110
110
|
value: string;
|
|
111
111
|
encrypted?: boolean | undefined;
|
|
112
112
|
};
|
|
@@ -155,7 +155,7 @@ export type Mcp = {
|
|
|
155
155
|
/**
|
|
156
156
|
* HTTP headers for MCP server requests (encrypted format)
|
|
157
157
|
*/
|
|
158
|
-
headers?: { [k: string]:
|
|
158
|
+
headers?: { [k: string]: RequestBodyHeaders } | undefined;
|
|
159
159
|
/**
|
|
160
160
|
* The original MCP tool input schema for LLM conversion
|
|
161
161
|
*/
|
|
@@ -239,6 +239,11 @@ export type CreateToolRequestBodyMethod = ClosedEnum<
|
|
|
239
239
|
typeof CreateToolRequestBodyMethod
|
|
240
240
|
>;
|
|
241
241
|
|
|
242
|
+
export type CreateToolRequestBodyHeaders = {
|
|
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 RequestBodyBlueprint = {
|
|
|
254
259
|
/**
|
|
255
260
|
* The headers to send with the request.
|
|
256
261
|
*/
|
|
257
|
-
headers?: { [k: string]:
|
|
262
|
+
headers?: { [k: string]: CreateToolRequestBodyHeaders } | undefined;
|
|
258
263
|
/**
|
|
259
264
|
* The body to send with the request.
|
|
260
265
|
*/
|
|
@@ -757,6 +762,11 @@ export type CreateToolResponseBodyMethod = ClosedEnum<
|
|
|
757
762
|
typeof CreateToolResponseBodyMethod
|
|
758
763
|
>;
|
|
759
764
|
|
|
765
|
+
export type CreateToolResponseBodyHeaders = {
|
|
766
|
+
value: string;
|
|
767
|
+
encrypted?: boolean | undefined;
|
|
768
|
+
};
|
|
769
|
+
|
|
760
770
|
/**
|
|
761
771
|
* The blueprint for the HTTP request. The `arguments` field will be used to replace the placeholders in the `url`, `headers`, `body`, and `arguments` fields.
|
|
762
772
|
*/
|
|
@@ -772,7 +782,7 @@ export type ResponseBodyBlueprint = {
|
|
|
772
782
|
/**
|
|
773
783
|
* The headers to send with the request.
|
|
774
784
|
*/
|
|
775
|
-
headers?: { [k: string]:
|
|
785
|
+
headers?: { [k: string]: CreateToolResponseBodyHeaders } | undefined;
|
|
776
786
|
/**
|
|
777
787
|
* The body to send with the request.
|
|
778
788
|
*/
|
|
@@ -1221,37 +1231,44 @@ export const CreateToolRequestBodyToolsRequest4Type$outboundSchema:
|
|
|
1221
1231
|
CreateToolRequestBodyToolsRequest4Type$inboundSchema;
|
|
1222
1232
|
|
|
1223
1233
|
/** @internal */
|
|
1224
|
-
export const
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1234
|
+
export const RequestBodyHeaders$inboundSchema: z.ZodType<
|
|
1235
|
+
RequestBodyHeaders,
|
|
1236
|
+
z.ZodTypeDef,
|
|
1237
|
+
unknown
|
|
1238
|
+
> = z.object({
|
|
1239
|
+
value: z.string(),
|
|
1240
|
+
encrypted: z.boolean().default(false),
|
|
1241
|
+
});
|
|
1229
1242
|
/** @internal */
|
|
1230
|
-
export type
|
|
1243
|
+
export type RequestBodyHeaders$Outbound = {
|
|
1231
1244
|
value: string;
|
|
1232
1245
|
encrypted: boolean;
|
|
1233
1246
|
};
|
|
1234
1247
|
|
|
1235
1248
|
/** @internal */
|
|
1236
|
-
export const
|
|
1237
|
-
|
|
1249
|
+
export const RequestBodyHeaders$outboundSchema: z.ZodType<
|
|
1250
|
+
RequestBodyHeaders$Outbound,
|
|
1238
1251
|
z.ZodTypeDef,
|
|
1239
|
-
|
|
1252
|
+
RequestBodyHeaders
|
|
1240
1253
|
> = z.object({
|
|
1241
1254
|
value: z.string(),
|
|
1242
1255
|
encrypted: z.boolean().default(false),
|
|
1243
1256
|
});
|
|
1244
1257
|
|
|
1245
|
-
export function
|
|
1246
|
-
|
|
1258
|
+
export function requestBodyHeadersToJSON(
|
|
1259
|
+
requestBodyHeaders: RequestBodyHeaders,
|
|
1260
|
+
): string {
|
|
1261
|
+
return JSON.stringify(
|
|
1262
|
+
RequestBodyHeaders$outboundSchema.parse(requestBodyHeaders),
|
|
1263
|
+
);
|
|
1247
1264
|
}
|
|
1248
|
-
export function
|
|
1265
|
+
export function requestBodyHeadersFromJSON(
|
|
1249
1266
|
jsonString: string,
|
|
1250
|
-
): SafeParseResult<
|
|
1267
|
+
): SafeParseResult<RequestBodyHeaders, SDKValidationError> {
|
|
1251
1268
|
return safeParse(
|
|
1252
1269
|
jsonString,
|
|
1253
|
-
(x) =>
|
|
1254
|
-
`Failed to parse '
|
|
1270
|
+
(x) => RequestBodyHeaders$inboundSchema.parse(JSON.parse(x)),
|
|
1271
|
+
`Failed to parse 'RequestBodyHeaders' from JSON`,
|
|
1255
1272
|
);
|
|
1256
1273
|
}
|
|
1257
1274
|
|
|
@@ -1320,7 +1337,8 @@ export const Mcp$inboundSchema: z.ZodType<Mcp, z.ZodTypeDef, unknown> = z
|
|
|
1320
1337
|
server_id: z.string(),
|
|
1321
1338
|
tool_name: z.string(),
|
|
1322
1339
|
server_url: z.string(),
|
|
1323
|
-
headers: z.record(z.lazy(() =>
|
|
1340
|
+
headers: z.record(z.lazy(() => RequestBodyHeaders$inboundSchema))
|
|
1341
|
+
.optional(),
|
|
1324
1342
|
input_schema: z.lazy(() => InputSchema$inboundSchema),
|
|
1325
1343
|
connection_type: ConnectionType$inboundSchema,
|
|
1326
1344
|
}).transform((v) => {
|
|
@@ -1337,7 +1355,7 @@ export type Mcp$Outbound = {
|
|
|
1337
1355
|
server_id: string;
|
|
1338
1356
|
tool_name: string;
|
|
1339
1357
|
server_url: string;
|
|
1340
|
-
headers?: { [k: string]:
|
|
1358
|
+
headers?: { [k: string]: RequestBodyHeaders$Outbound } | undefined;
|
|
1341
1359
|
input_schema: InputSchema$Outbound;
|
|
1342
1360
|
connection_type: string;
|
|
1343
1361
|
};
|
|
@@ -1348,7 +1366,8 @@ export const Mcp$outboundSchema: z.ZodType<Mcp$Outbound, z.ZodTypeDef, Mcp> = z
|
|
|
1348
1366
|
serverId: z.string(),
|
|
1349
1367
|
toolName: z.string(),
|
|
1350
1368
|
serverUrl: z.string(),
|
|
1351
|
-
headers: z.record(z.lazy(() =>
|
|
1369
|
+
headers: z.record(z.lazy(() => RequestBodyHeaders$outboundSchema))
|
|
1370
|
+
.optional(),
|
|
1352
1371
|
inputSchema: z.lazy(() => InputSchema$outboundSchema),
|
|
1353
1372
|
connectionType: ConnectionType$outboundSchema,
|
|
1354
1373
|
}).transform((v) => {
|
|
@@ -1464,6 +1483,50 @@ export const CreateToolRequestBodyMethod$outboundSchema: z.ZodNativeEnum<
|
|
|
1464
1483
|
typeof CreateToolRequestBodyMethod
|
|
1465
1484
|
> = CreateToolRequestBodyMethod$inboundSchema;
|
|
1466
1485
|
|
|
1486
|
+
/** @internal */
|
|
1487
|
+
export const CreateToolRequestBodyHeaders$inboundSchema: z.ZodType<
|
|
1488
|
+
CreateToolRequestBodyHeaders,
|
|
1489
|
+
z.ZodTypeDef,
|
|
1490
|
+
unknown
|
|
1491
|
+
> = z.object({
|
|
1492
|
+
value: z.string(),
|
|
1493
|
+
encrypted: z.boolean().default(false),
|
|
1494
|
+
});
|
|
1495
|
+
/** @internal */
|
|
1496
|
+
export type CreateToolRequestBodyHeaders$Outbound = {
|
|
1497
|
+
value: string;
|
|
1498
|
+
encrypted: boolean;
|
|
1499
|
+
};
|
|
1500
|
+
|
|
1501
|
+
/** @internal */
|
|
1502
|
+
export const CreateToolRequestBodyHeaders$outboundSchema: z.ZodType<
|
|
1503
|
+
CreateToolRequestBodyHeaders$Outbound,
|
|
1504
|
+
z.ZodTypeDef,
|
|
1505
|
+
CreateToolRequestBodyHeaders
|
|
1506
|
+
> = z.object({
|
|
1507
|
+
value: z.string(),
|
|
1508
|
+
encrypted: z.boolean().default(false),
|
|
1509
|
+
});
|
|
1510
|
+
|
|
1511
|
+
export function createToolRequestBodyHeadersToJSON(
|
|
1512
|
+
createToolRequestBodyHeaders: CreateToolRequestBodyHeaders,
|
|
1513
|
+
): string {
|
|
1514
|
+
return JSON.stringify(
|
|
1515
|
+
CreateToolRequestBodyHeaders$outboundSchema.parse(
|
|
1516
|
+
createToolRequestBodyHeaders,
|
|
1517
|
+
),
|
|
1518
|
+
);
|
|
1519
|
+
}
|
|
1520
|
+
export function createToolRequestBodyHeadersFromJSON(
|
|
1521
|
+
jsonString: string,
|
|
1522
|
+
): SafeParseResult<CreateToolRequestBodyHeaders, SDKValidationError> {
|
|
1523
|
+
return safeParse(
|
|
1524
|
+
jsonString,
|
|
1525
|
+
(x) => CreateToolRequestBodyHeaders$inboundSchema.parse(JSON.parse(x)),
|
|
1526
|
+
`Failed to parse 'CreateToolRequestBodyHeaders' from JSON`,
|
|
1527
|
+
);
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1467
1530
|
/** @internal */
|
|
1468
1531
|
export const RequestBodyBlueprint$inboundSchema: z.ZodType<
|
|
1469
1532
|
RequestBodyBlueprint,
|
|
@@ -1472,14 +1535,15 @@ export const RequestBodyBlueprint$inboundSchema: z.ZodType<
|
|
|
1472
1535
|
> = z.object({
|
|
1473
1536
|
url: z.string(),
|
|
1474
1537
|
method: CreateToolRequestBodyMethod$inboundSchema,
|
|
1475
|
-
headers: z.record(z.
|
|
1538
|
+
headers: z.record(z.lazy(() => CreateToolRequestBodyHeaders$inboundSchema))
|
|
1539
|
+
.optional(),
|
|
1476
1540
|
body: z.record(z.any()).optional(),
|
|
1477
1541
|
});
|
|
1478
1542
|
/** @internal */
|
|
1479
1543
|
export type RequestBodyBlueprint$Outbound = {
|
|
1480
1544
|
url: string;
|
|
1481
1545
|
method: string;
|
|
1482
|
-
headers?: { [k: string]:
|
|
1546
|
+
headers?: { [k: string]: CreateToolRequestBodyHeaders$Outbound } | undefined;
|
|
1483
1547
|
body?: { [k: string]: any } | undefined;
|
|
1484
1548
|
};
|
|
1485
1549
|
|
|
@@ -1491,7 +1555,8 @@ export const RequestBodyBlueprint$outboundSchema: z.ZodType<
|
|
|
1491
1555
|
> = z.object({
|
|
1492
1556
|
url: z.string(),
|
|
1493
1557
|
method: CreateToolRequestBodyMethod$outboundSchema,
|
|
1494
|
-
headers: z.record(z.
|
|
1558
|
+
headers: z.record(z.lazy(() => CreateToolRequestBodyHeaders$outboundSchema))
|
|
1559
|
+
.optional(),
|
|
1495
1560
|
body: z.record(z.any()).optional(),
|
|
1496
1561
|
});
|
|
1497
1562
|
|
|
@@ -2112,7 +2177,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2112
2177
|
z.ZodTypeDef,
|
|
2113
2178
|
unknown
|
|
2114
2179
|
> = z.object({
|
|
2115
|
-
_id: z.string().default("
|
|
2180
|
+
_id: z.string().default("01K9SAG3HWSM1XKTB46682PSTE"),
|
|
2116
2181
|
path: z.string(),
|
|
2117
2182
|
key: z.string(),
|
|
2118
2183
|
display_name: z.string().optional(),
|
|
@@ -2166,7 +2231,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2166
2231
|
z.ZodTypeDef,
|
|
2167
2232
|
ResponseBody5
|
|
2168
2233
|
> = z.object({
|
|
2169
|
-
id: z.string().default("
|
|
2234
|
+
id: z.string().default("01K9SAG3HWSM1XKTB46682PSTE"),
|
|
2170
2235
|
path: z.string(),
|
|
2171
2236
|
key: z.string(),
|
|
2172
2237
|
displayName: z.string().optional(),
|
|
@@ -2412,7 +2477,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2412
2477
|
z.ZodTypeDef,
|
|
2413
2478
|
unknown
|
|
2414
2479
|
> = z.object({
|
|
2415
|
-
_id: z.string().default("
|
|
2480
|
+
_id: z.string().default("01K9SAG3HT0Y3TV8YJJWW7C0QX"),
|
|
2416
2481
|
path: z.string(),
|
|
2417
2482
|
key: z.string(),
|
|
2418
2483
|
display_name: z.string().optional(),
|
|
@@ -2465,7 +2530,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2465
2530
|
z.ZodTypeDef,
|
|
2466
2531
|
ResponseBody4
|
|
2467
2532
|
> = z.object({
|
|
2468
|
-
id: z.string().default("
|
|
2533
|
+
id: z.string().default("01K9SAG3HT0Y3TV8YJJWW7C0QX"),
|
|
2469
2534
|
path: z.string(),
|
|
2470
2535
|
key: z.string(),
|
|
2471
2536
|
displayName: z.string().optional(),
|
|
@@ -2534,6 +2599,50 @@ export const CreateToolResponseBodyMethod$outboundSchema: z.ZodNativeEnum<
|
|
|
2534
2599
|
typeof CreateToolResponseBodyMethod
|
|
2535
2600
|
> = CreateToolResponseBodyMethod$inboundSchema;
|
|
2536
2601
|
|
|
2602
|
+
/** @internal */
|
|
2603
|
+
export const CreateToolResponseBodyHeaders$inboundSchema: z.ZodType<
|
|
2604
|
+
CreateToolResponseBodyHeaders,
|
|
2605
|
+
z.ZodTypeDef,
|
|
2606
|
+
unknown
|
|
2607
|
+
> = z.object({
|
|
2608
|
+
value: z.string(),
|
|
2609
|
+
encrypted: z.boolean().default(false),
|
|
2610
|
+
});
|
|
2611
|
+
/** @internal */
|
|
2612
|
+
export type CreateToolResponseBodyHeaders$Outbound = {
|
|
2613
|
+
value: string;
|
|
2614
|
+
encrypted: boolean;
|
|
2615
|
+
};
|
|
2616
|
+
|
|
2617
|
+
/** @internal */
|
|
2618
|
+
export const CreateToolResponseBodyHeaders$outboundSchema: z.ZodType<
|
|
2619
|
+
CreateToolResponseBodyHeaders$Outbound,
|
|
2620
|
+
z.ZodTypeDef,
|
|
2621
|
+
CreateToolResponseBodyHeaders
|
|
2622
|
+
> = z.object({
|
|
2623
|
+
value: z.string(),
|
|
2624
|
+
encrypted: z.boolean().default(false),
|
|
2625
|
+
});
|
|
2626
|
+
|
|
2627
|
+
export function createToolResponseBodyHeadersToJSON(
|
|
2628
|
+
createToolResponseBodyHeaders: CreateToolResponseBodyHeaders,
|
|
2629
|
+
): string {
|
|
2630
|
+
return JSON.stringify(
|
|
2631
|
+
CreateToolResponseBodyHeaders$outboundSchema.parse(
|
|
2632
|
+
createToolResponseBodyHeaders,
|
|
2633
|
+
),
|
|
2634
|
+
);
|
|
2635
|
+
}
|
|
2636
|
+
export function createToolResponseBodyHeadersFromJSON(
|
|
2637
|
+
jsonString: string,
|
|
2638
|
+
): SafeParseResult<CreateToolResponseBodyHeaders, SDKValidationError> {
|
|
2639
|
+
return safeParse(
|
|
2640
|
+
jsonString,
|
|
2641
|
+
(x) => CreateToolResponseBodyHeaders$inboundSchema.parse(JSON.parse(x)),
|
|
2642
|
+
`Failed to parse 'CreateToolResponseBodyHeaders' from JSON`,
|
|
2643
|
+
);
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2537
2646
|
/** @internal */
|
|
2538
2647
|
export const ResponseBodyBlueprint$inboundSchema: z.ZodType<
|
|
2539
2648
|
ResponseBodyBlueprint,
|
|
@@ -2542,14 +2651,15 @@ export const ResponseBodyBlueprint$inboundSchema: z.ZodType<
|
|
|
2542
2651
|
> = z.object({
|
|
2543
2652
|
url: z.string(),
|
|
2544
2653
|
method: CreateToolResponseBodyMethod$inboundSchema,
|
|
2545
|
-
headers: z.record(z.
|
|
2654
|
+
headers: z.record(z.lazy(() => CreateToolResponseBodyHeaders$inboundSchema))
|
|
2655
|
+
.optional(),
|
|
2546
2656
|
body: z.record(z.any()).optional(),
|
|
2547
2657
|
});
|
|
2548
2658
|
/** @internal */
|
|
2549
2659
|
export type ResponseBodyBlueprint$Outbound = {
|
|
2550
2660
|
url: string;
|
|
2551
2661
|
method: string;
|
|
2552
|
-
headers?: { [k: string]:
|
|
2662
|
+
headers?: { [k: string]: CreateToolResponseBodyHeaders$Outbound } | undefined;
|
|
2553
2663
|
body?: { [k: string]: any } | undefined;
|
|
2554
2664
|
};
|
|
2555
2665
|
|
|
@@ -2561,7 +2671,8 @@ export const ResponseBodyBlueprint$outboundSchema: z.ZodType<
|
|
|
2561
2671
|
> = z.object({
|
|
2562
2672
|
url: z.string(),
|
|
2563
2673
|
method: CreateToolResponseBodyMethod$outboundSchema,
|
|
2564
|
-
headers: z.record(z.
|
|
2674
|
+
headers: z.record(z.lazy(() => CreateToolResponseBodyHeaders$outboundSchema))
|
|
2675
|
+
.optional(),
|
|
2565
2676
|
body: z.record(z.any()).optional(),
|
|
2566
2677
|
});
|
|
2567
2678
|
|
|
@@ -2736,7 +2847,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
2736
2847
|
z.ZodTypeDef,
|
|
2737
2848
|
unknown
|
|
2738
2849
|
> = z.object({
|
|
2739
|
-
_id: z.string().default("
|
|
2850
|
+
_id: z.string().default("01K9SAG3HGXZG0WBBHFC71X8BX"),
|
|
2740
2851
|
path: z.string(),
|
|
2741
2852
|
key: z.string(),
|
|
2742
2853
|
display_name: z.string().optional(),
|
|
@@ -2787,7 +2898,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
2787
2898
|
z.ZodTypeDef,
|
|
2788
2899
|
ResponseBody3
|
|
2789
2900
|
> = z.object({
|
|
2790
|
-
id: z.string().default("
|
|
2901
|
+
id: z.string().default("01K9SAG3HGXZG0WBBHFC71X8BX"),
|
|
2791
2902
|
path: z.string(),
|
|
2792
2903
|
key: z.string(),
|
|
2793
2904
|
displayName: z.string().optional(),
|
|
@@ -2899,7 +3010,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
2899
3010
|
z.ZodTypeDef,
|
|
2900
3011
|
unknown
|
|
2901
3012
|
> = z.object({
|
|
2902
|
-
_id: z.string().default("
|
|
3013
|
+
_id: z.string().default("01K9SAG3HEZR1HE8RAQCXPRQ5C"),
|
|
2903
3014
|
path: z.string(),
|
|
2904
3015
|
key: z.string(),
|
|
2905
3016
|
display_name: z.string().optional(),
|
|
@@ -2951,7 +3062,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
2951
3062
|
z.ZodTypeDef,
|
|
2952
3063
|
ResponseBody2
|
|
2953
3064
|
> = z.object({
|
|
2954
|
-
id: z.string().default("
|
|
3065
|
+
id: z.string().default("01K9SAG3HEZR1HE8RAQCXPRQ5C"),
|
|
2955
3066
|
path: z.string(),
|
|
2956
3067
|
key: z.string(),
|
|
2957
3068
|
displayName: z.string().optional(),
|
|
@@ -3066,7 +3177,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3066
3177
|
z.ZodTypeDef,
|
|
3067
3178
|
unknown
|
|
3068
3179
|
> = z.object({
|
|
3069
|
-
_id: z.string().default("
|
|
3180
|
+
_id: z.string().default("01K9SAG3HC59STTMQ0GW7YHR08"),
|
|
3070
3181
|
path: z.string(),
|
|
3071
3182
|
key: z.string(),
|
|
3072
3183
|
display_name: z.string().optional(),
|
|
@@ -3117,7 +3228,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3117
3228
|
z.ZodTypeDef,
|
|
3118
3229
|
ResponseBody1
|
|
3119
3230
|
> = z.object({
|
|
3120
|
-
id: z.string().default("
|
|
3231
|
+
id: z.string().default("01K9SAG3HC59STTMQ0GW7YHR08"),
|
|
3121
3232
|
path: z.string(),
|
|
3122
3233
|
key: z.string(),
|
|
3123
3234
|
displayName: z.string().optional(),
|