@orq-ai/node 4.2.0-rc.2 → 4.2.0-rc.4
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 +219 -219
- 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/components/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.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/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- 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/retrieveconversation.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/updatecontact.js +2 -2
- package/models/operations/updateconversation.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 +14 -14
- 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/components/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.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/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- 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/retrieveconversation.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/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.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 +14 -14
|
@@ -3598,7 +3598,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
3598
3598
|
.default("orq"),
|
|
3599
3599
|
reviewed_by_id: z.string(),
|
|
3600
3600
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3601
|
-
"
|
|
3601
|
+
"2026-01-01T05:32:31.931Z",
|
|
3602
3602
|
).transform(v => new Date(v)),
|
|
3603
3603
|
type: z.literal("string_array"),
|
|
3604
3604
|
values: z.array(z.string()),
|
|
@@ -3635,7 +3635,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
3635
3635
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
3636
3636
|
.default("orq"),
|
|
3637
3637
|
reviewedById: z.string(),
|
|
3638
|
-
reviewedAt: z.date().default(() => new Date("
|
|
3638
|
+
reviewedAt: z.date().default(() => new Date("2026-01-01T05:32:31.931Z"))
|
|
3639
3639
|
.transform(v => v.toISOString()),
|
|
3640
3640
|
type: z.literal("string_array"),
|
|
3641
3641
|
values: z.array(z.string()),
|
|
@@ -3698,7 +3698,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
3698
3698
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
3699
3699
|
reviewed_by_id: z.string(),
|
|
3700
3700
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3701
|
-
"
|
|
3701
|
+
"2026-01-01T05:32:31.930Z",
|
|
3702
3702
|
).transform(v => new Date(v)),
|
|
3703
3703
|
type: z.literal("number"),
|
|
3704
3704
|
value: z.number(),
|
|
@@ -3736,7 +3736,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
3736
3736
|
"orq",
|
|
3737
3737
|
),
|
|
3738
3738
|
reviewedById: z.string(),
|
|
3739
|
-
reviewedAt: z.date().default(() => new Date("
|
|
3739
|
+
reviewedAt: z.date().default(() => new Date("2026-01-01T05:32:31.930Z"))
|
|
3740
3740
|
.transform(v => v.toISOString()),
|
|
3741
3741
|
type: z.literal("number"),
|
|
3742
3742
|
value: z.number(),
|
|
@@ -3798,7 +3798,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
3798
3798
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
3799
3799
|
reviewed_by_id: z.string(),
|
|
3800
3800
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3801
|
-
"
|
|
3801
|
+
"2026-01-01T05:32:31.929Z",
|
|
3802
3802
|
).transform(v => new Date(v)),
|
|
3803
3803
|
type: z.literal("string"),
|
|
3804
3804
|
value: z.string(),
|
|
@@ -3833,7 +3833,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
3833
3833
|
humanReviewId: z.string(),
|
|
3834
3834
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
3835
3835
|
reviewedById: z.string(),
|
|
3836
|
-
reviewedAt: z.date().default(() => new Date("
|
|
3836
|
+
reviewedAt: z.date().default(() => new Date("2026-01-01T05:32:31.929Z"))
|
|
3837
3837
|
.transform(v => v.toISOString()),
|
|
3838
3838
|
type: z.literal("string"),
|
|
3839
3839
|
value: z.string(),
|
|
@@ -3946,7 +3946,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
3946
3946
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3947
3947
|
.optional(),
|
|
3948
3948
|
updated: z.string().datetime({ offset: true }).default(
|
|
3949
|
-
"
|
|
3949
|
+
"2026-01-01T05:32:17.721Z",
|
|
3950
3950
|
).transform(v => new Date(v)),
|
|
3951
3951
|
}).transform((v) => {
|
|
3952
3952
|
return remap$(v, {
|
|
@@ -4024,7 +4024,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
4024
4024
|
createdById: z.string().optional(),
|
|
4025
4025
|
updatedById: z.string().optional(),
|
|
4026
4026
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
4027
|
-
updated: z.date().default(() => new Date("
|
|
4027
|
+
updated: z.date().default(() => new Date("2026-01-01T05:32:17.721Z"))
|
|
4028
4028
|
.transform(v => v.toISOString()),
|
|
4029
4029
|
}).transform((v) => {
|
|
4030
4030
|
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
|
-
"
|
|
259
|
+
"2026-01-01T05:32:17.721Z",
|
|
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("
|
|
298
|
+
updated: z.date().default(() => new Date("2026-01-01T05:32:17.721Z"))
|
|
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("01KDW0P64418ZGBZ8TAX3R6V1X"),
|
|
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("01KDW0P64418ZGBZ8TAX3R6V1X"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2345,8 +2345,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2345
2345
|
> = z.object({
|
|
2346
2346
|
_id: z.string(),
|
|
2347
2347
|
description: z.string(),
|
|
2348
|
-
created: z.string().default("
|
|
2349
|
-
updated: z.string().default("
|
|
2348
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
2349
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
2350
2350
|
guardrail_config: z.union([
|
|
2351
2351
|
z.lazy(() =>
|
|
2352
2352
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2387,8 +2387,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
2387
2387
|
> = z.object({
|
|
2388
2388
|
id: z.string(),
|
|
2389
2389
|
description: z.string(),
|
|
2390
|
-
created: z.string().default("
|
|
2391
|
-
updated: z.string().default("
|
|
2390
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
2391
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
2392
2392
|
guardrailConfig: z.union([
|
|
2393
2393
|
z.lazy(() =>
|
|
2394
2394
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2656,8 +2656,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
2656
2656
|
> = z.object({
|
|
2657
2657
|
_id: z.string(),
|
|
2658
2658
|
description: z.string(),
|
|
2659
|
-
created: z.string().default("
|
|
2660
|
-
updated: z.string().default("
|
|
2659
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
2660
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
2661
2661
|
guardrail_config: z.union([
|
|
2662
2662
|
z.lazy(() =>
|
|
2663
2663
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2701,8 +2701,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
2701
2701
|
> = z.object({
|
|
2702
2702
|
id: z.string(),
|
|
2703
2703
|
description: z.string(),
|
|
2704
|
-
created: z.string().default("
|
|
2705
|
-
updated: z.string().default("
|
|
2704
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
2705
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
2706
2706
|
guardrailConfig: z.union([
|
|
2707
2707
|
z.lazy(() =>
|
|
2708
2708
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -4360,8 +4360,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
4360
4360
|
> = z.object({
|
|
4361
4361
|
_id: z.string(),
|
|
4362
4362
|
description: z.string(),
|
|
4363
|
-
created: z.string().default("
|
|
4364
|
-
updated: z.string().default("
|
|
4363
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
4364
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
4365
4365
|
guardrail_config: z.union([
|
|
4366
4366
|
z.lazy(() =>
|
|
4367
4367
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -4468,8 +4468,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
4468
4468
|
> = z.object({
|
|
4469
4469
|
id: z.string(),
|
|
4470
4470
|
description: z.string(),
|
|
4471
|
-
created: z.string().default("
|
|
4472
|
-
updated: z.string().default("
|
|
4471
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
4472
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
4473
4473
|
guardrailConfig: z.union([
|
|
4474
4474
|
z.lazy(() =>
|
|
4475
4475
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4762,8 +4762,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4762
4762
|
> = z.object({
|
|
4763
4763
|
_id: z.string(),
|
|
4764
4764
|
description: z.string(),
|
|
4765
|
-
created: z.string().default("
|
|
4766
|
-
updated: z.string().default("
|
|
4765
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
4766
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
4767
4767
|
guardrail_config: z.union([
|
|
4768
4768
|
z.lazy(() =>
|
|
4769
4769
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4804,8 +4804,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4804
4804
|
> = z.object({
|
|
4805
4805
|
id: z.string(),
|
|
4806
4806
|
description: z.string(),
|
|
4807
|
-
created: z.string().default("
|
|
4808
|
-
updated: z.string().default("
|
|
4807
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
4808
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
4809
4809
|
guardrailConfig: z.union([
|
|
4810
4810
|
z.lazy(() =>
|
|
4811
4811
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -5071,8 +5071,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
5071
5071
|
> = z.object({
|
|
5072
5072
|
_id: z.string(),
|
|
5073
5073
|
description: z.string(),
|
|
5074
|
-
created: z.string().default("
|
|
5075
|
-
updated: z.string().default("
|
|
5074
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5075
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5076
5076
|
guardrail_config: z.union([
|
|
5077
5077
|
z.lazy(() =>
|
|
5078
5078
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -5119,8 +5119,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
5119
5119
|
> = z.object({
|
|
5120
5120
|
id: z.string(),
|
|
5121
5121
|
description: z.string(),
|
|
5122
|
-
created: z.string().default("
|
|
5123
|
-
updated: z.string().default("
|
|
5122
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5123
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5124
5124
|
guardrailConfig: z.union([
|
|
5125
5125
|
z.lazy(() =>
|
|
5126
5126
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -5370,8 +5370,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
5370
5370
|
> = z.object({
|
|
5371
5371
|
_id: z.string(),
|
|
5372
5372
|
description: z.string(),
|
|
5373
|
-
created: z.string().default("
|
|
5374
|
-
updated: z.string().default("
|
|
5373
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5374
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5375
5375
|
guardrail_config: z.union([
|
|
5376
5376
|
z.lazy(() =>
|
|
5377
5377
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -5410,8 +5410,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
5410
5410
|
> = z.object({
|
|
5411
5411
|
id: z.string(),
|
|
5412
5412
|
description: z.string(),
|
|
5413
|
-
created: z.string().default("
|
|
5414
|
-
updated: z.string().default("
|
|
5413
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5414
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5415
5415
|
guardrailConfig: z.union([
|
|
5416
5416
|
z.lazy(() =>
|
|
5417
5417
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5645,8 +5645,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5645
5645
|
> = z.object({
|
|
5646
5646
|
_id: z.string(),
|
|
5647
5647
|
description: z.string(),
|
|
5648
|
-
created: z.string().default("
|
|
5649
|
-
updated: z.string().default("
|
|
5648
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5649
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5650
5650
|
guardrail_config: z.union([
|
|
5651
5651
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5652
5652
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5685,8 +5685,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5685
5685
|
> = z.object({
|
|
5686
5686
|
id: z.string(),
|
|
5687
5687
|
description: z.string(),
|
|
5688
|
-
created: z.string().default("
|
|
5689
|
-
updated: z.string().default("
|
|
5688
|
+
created: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5689
|
+
updated: z.string().default("2026-01-01T05:32:20.510Z"),
|
|
5690
5690
|
guardrailConfig: z.union([
|
|
5691
5691
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5692
5692
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -1528,7 +1528,7 @@ export const RequestBodyTools$inboundSchema: z.ZodType<
|
|
|
1528
1528
|
z.ZodTypeDef,
|
|
1529
1529
|
unknown
|
|
1530
1530
|
> = z.object({
|
|
1531
|
-
id: z.string().default("
|
|
1531
|
+
id: z.string().default("01KDW0P5ZPBFGQ4EGSK9WZT8B3"),
|
|
1532
1532
|
name: z.string(),
|
|
1533
1533
|
description: z.string().optional(),
|
|
1534
1534
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$inboundSchema),
|
|
@@ -1547,7 +1547,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1547
1547
|
z.ZodTypeDef,
|
|
1548
1548
|
RequestBodyTools
|
|
1549
1549
|
> = z.object({
|
|
1550
|
-
id: z.string().default("
|
|
1550
|
+
id: z.string().default("01KDW0P5ZPBFGQ4EGSK9WZT8B3"),
|
|
1551
1551
|
name: z.string(),
|
|
1552
1552
|
description: z.string().optional(),
|
|
1553
1553
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2729,7 +2729,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2729
2729
|
z.ZodTypeDef,
|
|
2730
2730
|
unknown
|
|
2731
2731
|
> = z.object({
|
|
2732
|
-
_id: z.string().default("
|
|
2732
|
+
_id: z.string().default("tool_01KDW0P5Z74MKQDH9XS758CQHV"),
|
|
2733
2733
|
path: z.string(),
|
|
2734
2734
|
key: z.string(),
|
|
2735
2735
|
display_name: z.string().optional(),
|
|
@@ -2783,7 +2783,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
2783
2783
|
z.ZodTypeDef,
|
|
2784
2784
|
UpdateToolResponseBodyCodeExecutionTool
|
|
2785
2785
|
> = z.object({
|
|
2786
|
-
id: z.string().default("
|
|
2786
|
+
id: z.string().default("tool_01KDW0P5Z74MKQDH9XS758CQHV"),
|
|
2787
2787
|
path: z.string(),
|
|
2788
2788
|
key: z.string(),
|
|
2789
2789
|
displayName: z.string().optional(),
|
|
@@ -2958,7 +2958,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2958
2958
|
z.ZodTypeDef,
|
|
2959
2959
|
unknown
|
|
2960
2960
|
> = z.object({
|
|
2961
|
-
id: z.string().default("
|
|
2961
|
+
id: z.string().default("01KDW0P5Z62MCCXT59YDMSM5AQ"),
|
|
2962
2962
|
name: z.string(),
|
|
2963
2963
|
description: z.string().optional(),
|
|
2964
2964
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -2977,7 +2977,7 @@ export const UpdateToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2977
2977
|
z.ZodTypeDef,
|
|
2978
2978
|
UpdateToolResponseBodyTools
|
|
2979
2979
|
> = z.object({
|
|
2980
|
-
id: z.string().default("
|
|
2980
|
+
id: z.string().default("01KDW0P5Z62MCCXT59YDMSM5AQ"),
|
|
2981
2981
|
name: z.string(),
|
|
2982
2982
|
description: z.string().optional(),
|
|
2983
2983
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -3078,7 +3078,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
3078
3078
|
z.ZodTypeDef,
|
|
3079
3079
|
unknown
|
|
3080
3080
|
> = z.object({
|
|
3081
|
-
_id: z.string().default("
|
|
3081
|
+
_id: z.string().default("tool_01KDW0P5Z5XVNJZV5F5QFN21MH"),
|
|
3082
3082
|
path: z.string(),
|
|
3083
3083
|
key: z.string(),
|
|
3084
3084
|
display_name: z.string().optional(),
|
|
@@ -3131,7 +3131,7 @@ export const UpdateToolResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
3131
3131
|
z.ZodTypeDef,
|
|
3132
3132
|
UpdateToolResponseBodyMCPTool
|
|
3133
3133
|
> = z.object({
|
|
3134
|
-
id: z.string().default("
|
|
3134
|
+
id: z.string().default("tool_01KDW0P5Z5XVNJZV5F5QFN21MH"),
|
|
3135
3135
|
path: z.string(),
|
|
3136
3136
|
key: z.string(),
|
|
3137
3137
|
displayName: z.string().optional(),
|
|
@@ -3499,7 +3499,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
3499
3499
|
z.ZodTypeDef,
|
|
3500
3500
|
unknown
|
|
3501
3501
|
> = z.object({
|
|
3502
|
-
_id: z.string().default("
|
|
3502
|
+
_id: z.string().default("tool_01KDW0P5Z3VWBBREFZ0KPXTPT4"),
|
|
3503
3503
|
path: z.string(),
|
|
3504
3504
|
key: z.string(),
|
|
3505
3505
|
display_name: z.string().optional(),
|
|
@@ -3552,7 +3552,7 @@ export const UpdateToolResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
3552
3552
|
z.ZodTypeDef,
|
|
3553
3553
|
UpdateToolResponseBodyHTTPTool
|
|
3554
3554
|
> = z.object({
|
|
3555
|
-
id: z.string().default("
|
|
3555
|
+
id: z.string().default("tool_01KDW0P5Z3VWBBREFZ0KPXTPT4"),
|
|
3556
3556
|
path: z.string(),
|
|
3557
3557
|
key: z.string(),
|
|
3558
3558
|
displayName: z.string().optional(),
|
|
@@ -3725,7 +3725,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
3725
3725
|
z.ZodTypeDef,
|
|
3726
3726
|
unknown
|
|
3727
3727
|
> = z.object({
|
|
3728
|
-
_id: z.string().default("
|
|
3728
|
+
_id: z.string().default("tool_01KDW0P5Z025MCQQW8TJ5G2JAA"),
|
|
3729
3729
|
path: z.string(),
|
|
3730
3730
|
key: z.string(),
|
|
3731
3731
|
display_name: z.string().optional(),
|
|
@@ -3777,7 +3777,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
3777
3777
|
z.ZodTypeDef,
|
|
3778
3778
|
UpdateToolResponseBodyJSONSchemaTool
|
|
3779
3779
|
> = z.object({
|
|
3780
|
-
id: z.string().default("
|
|
3780
|
+
id: z.string().default("tool_01KDW0P5Z025MCQQW8TJ5G2JAA"),
|
|
3781
3781
|
path: z.string(),
|
|
3782
3782
|
key: z.string(),
|
|
3783
3783
|
displayName: z.string().optional(),
|
|
@@ -3965,7 +3965,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
3965
3965
|
z.ZodTypeDef,
|
|
3966
3966
|
unknown
|
|
3967
3967
|
> = z.object({
|
|
3968
|
-
_id: z.string().default("
|
|
3968
|
+
_id: z.string().default("tool_01KDW0P5YYXQW8GM1FAQ6V8P28"),
|
|
3969
3969
|
path: z.string(),
|
|
3970
3970
|
key: z.string(),
|
|
3971
3971
|
display_name: z.string().optional(),
|
|
@@ -4016,7 +4016,7 @@ export const UpdateToolResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
4016
4016
|
z.ZodTypeDef,
|
|
4017
4017
|
UpdateToolResponseBodyFunctionTool
|
|
4018
4018
|
> = z.object({
|
|
4019
|
-
id: z.string().default("
|
|
4019
|
+
id: z.string().default("tool_01KDW0P5YYXQW8GM1FAQ6V8P28"),
|
|
4020
4020
|
path: z.string(),
|
|
4021
4021
|
key: z.string(),
|
|
4022
4022
|
displayName: z.string().optional(),
|