@orq-ai/node 4.0.0-rc.35 → 4.0.0-rc.36
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 +220 -220
- package/bin/mcp-server.js.map +36 -36
- 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/syncmcptool.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/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/syncmcptool.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-15T09:09:09.938Z",
|
|
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-15T09:09:09.938Z"))
|
|
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-15T09:09:09.937Z",
|
|
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-15T09:09:09.937Z"))
|
|
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-15T09:09:09.936Z",
|
|
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-15T09:09:09.936Z"))
|
|
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-15T09:08:58.855Z",
|
|
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-15T09:08:58.855Z"))
|
|
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("01KA3CD2J8TZKJXCHXYQQPWQ4H"),
|
|
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("01KA3CD2J8TZKJXCHXYQQPWQ4H"),
|
|
655
655
|
displayName: z.string(),
|
|
656
656
|
description: z.string().optional(),
|
|
657
657
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2756,8 +2756,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2756
2756
|
> = z.object({
|
|
2757
2757
|
_id: z.string(),
|
|
2758
2758
|
description: z.string(),
|
|
2759
|
-
created: z.string().default("2025-11-
|
|
2760
|
-
updated: z.string().default("2025-11-
|
|
2759
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
2760
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
2761
2761
|
guardrail_config: z.union([
|
|
2762
2762
|
z.lazy(() =>
|
|
2763
2763
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2799,8 +2799,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2799
2799
|
> = z.object({
|
|
2800
2800
|
id: z.string(),
|
|
2801
2801
|
description: z.string(),
|
|
2802
|
-
created: z.string().default("2025-11-
|
|
2803
|
-
updated: z.string().default("2025-11-
|
|
2802
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
2803
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
2804
2804
|
guardrailConfig: z.union([
|
|
2805
2805
|
z.lazy(() =>
|
|
2806
2806
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3081,8 +3081,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3081
3081
|
.object({
|
|
3082
3082
|
_id: z.string(),
|
|
3083
3083
|
description: z.string(),
|
|
3084
|
-
created: z.string().default("2025-11-
|
|
3085
|
-
updated: z.string().default("2025-11-
|
|
3084
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3086
3086
|
guardrail_config: z.union([
|
|
3087
3087
|
z.lazy(() =>
|
|
3088
3088
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3127,8 +3127,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3127
3127
|
> = z.object({
|
|
3128
3128
|
id: z.string(),
|
|
3129
3129
|
description: z.string(),
|
|
3130
|
-
created: z.string().default("2025-11-
|
|
3131
|
-
updated: z.string().default("2025-11-
|
|
3130
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3131
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3132
3132
|
guardrailConfig: z.union([
|
|
3133
3133
|
z.lazy(() =>
|
|
3134
3134
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5416,8 +5416,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5416
5416
|
> = z.object({
|
|
5417
5417
|
_id: z.string(),
|
|
5418
5418
|
description: z.string(),
|
|
5419
|
-
created: z.string().default("2025-11-
|
|
5420
|
-
updated: z.string().default("2025-11-
|
|
5419
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5420
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5421
5421
|
guardrail_config: z.union([
|
|
5422
5422
|
z.lazy(() =>
|
|
5423
5423
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5530,8 +5530,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5530
5530
|
> = z.object({
|
|
5531
5531
|
id: z.string(),
|
|
5532
5532
|
description: z.string(),
|
|
5533
|
-
created: z.string().default("2025-11-
|
|
5534
|
-
updated: z.string().default("2025-11-
|
|
5533
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5534
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5535
5535
|
guardrailConfig: z.union([
|
|
5536
5536
|
z.lazy(() =>
|
|
5537
5537
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5848,8 +5848,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5848
5848
|
> = z.object({
|
|
5849
5849
|
_id: z.string(),
|
|
5850
5850
|
description: z.string(),
|
|
5851
|
-
created: z.string().default("2025-11-
|
|
5852
|
-
updated: z.string().default("2025-11-
|
|
5851
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5852
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5853
5853
|
guardrail_config: z.union([
|
|
5854
5854
|
z.lazy(() =>
|
|
5855
5855
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5890,8 +5890,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5890
5890
|
> = z.object({
|
|
5891
5891
|
id: z.string(),
|
|
5892
5892
|
description: z.string(),
|
|
5893
|
-
created: z.string().default("2025-11-
|
|
5894
|
-
updated: z.string().default("2025-11-
|
|
5893
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5894
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5895
5895
|
guardrailConfig: z.union([
|
|
5896
5896
|
z.lazy(() =>
|
|
5897
5897
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6171,8 +6171,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6171
6171
|
> = z.object({
|
|
6172
6172
|
_id: z.string(),
|
|
6173
6173
|
description: z.string(),
|
|
6174
|
-
created: z.string().default("2025-11-
|
|
6175
|
-
updated: z.string().default("2025-11-
|
|
6174
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6175
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6176
6176
|
guardrail_config: z.union([
|
|
6177
6177
|
z.lazy(() =>
|
|
6178
6178
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6219,8 +6219,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6219
6219
|
> = z.object({
|
|
6220
6220
|
id: z.string(),
|
|
6221
6221
|
description: z.string(),
|
|
6222
|
-
created: z.string().default("2025-11-
|
|
6223
|
-
updated: z.string().default("2025-11-
|
|
6222
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6223
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6224
6224
|
guardrailConfig: z.union([
|
|
6225
6225
|
z.lazy(() =>
|
|
6226
6226
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6476,8 +6476,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6476
6476
|
> = z.object({
|
|
6477
6477
|
_id: z.string(),
|
|
6478
6478
|
description: z.string(),
|
|
6479
|
-
created: z.string().default("2025-11-
|
|
6480
|
-
updated: z.string().default("2025-11-
|
|
6479
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6480
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6481
6481
|
guardrail_config: z.union([
|
|
6482
6482
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6483
6483
|
z.lazy(() =>
|
|
@@ -6516,8 +6516,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6516
6516
|
> = z.object({
|
|
6517
6517
|
id: z.string(),
|
|
6518
6518
|
description: z.string(),
|
|
6519
|
-
created: z.string().default("2025-11-
|
|
6520
|
-
updated: z.string().default("2025-11-
|
|
6519
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6521
6521
|
guardrailConfig: z.union([
|
|
6522
6522
|
z.lazy(() =>
|
|
6523
6523
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6755,8 +6755,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6755
6755
|
> = z.object({
|
|
6756
6756
|
_id: z.string(),
|
|
6757
6757
|
description: z.string(),
|
|
6758
|
-
created: z.string().default("2025-11-
|
|
6759
|
-
updated: z.string().default("2025-11-
|
|
6758
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6759
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6760
6760
|
guardrail_config: z.union([
|
|
6761
6761
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6762
6762
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6795,8 +6795,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6795
6795
|
> = z.object({
|
|
6796
6796
|
id: z.string(),
|
|
6797
6797
|
description: z.string(),
|
|
6798
|
-
created: z.string().default("2025-11-
|
|
6799
|
-
updated: z.string().default("2025-11-
|
|
6798
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6799
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6800
6800
|
guardrailConfig: z.union([
|
|
6801
6801
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6802
6802
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2570,7 +2570,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2570
2570
|
z.ZodTypeDef,
|
|
2571
2571
|
unknown
|
|
2572
2572
|
> = z.object({
|
|
2573
|
-
_id: z.string().default("
|
|
2573
|
+
_id: z.string().default("tool_01KA3CD2D4EHTTZ41FFPHKW53Z"),
|
|
2574
2574
|
path: z.string(),
|
|
2575
2575
|
key: z.string(),
|
|
2576
2576
|
display_name: z.string().optional(),
|
|
@@ -2624,7 +2624,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2624
2624
|
z.ZodTypeDef,
|
|
2625
2625
|
ResponseBody5
|
|
2626
2626
|
> = z.object({
|
|
2627
|
-
id: z.string().default("
|
|
2627
|
+
id: z.string().default("tool_01KA3CD2D4EHTTZ41FFPHKW53Z"),
|
|
2628
2628
|
path: z.string(),
|
|
2629
2629
|
key: z.string(),
|
|
2630
2630
|
displayName: z.string().optional(),
|
|
@@ -2905,7 +2905,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2905
2905
|
z.ZodTypeDef,
|
|
2906
2906
|
unknown
|
|
2907
2907
|
> = z.object({
|
|
2908
|
-
_id: z.string().default("
|
|
2908
|
+
_id: z.string().default("tool_01KA3CD2D13RYNNXTW8M46D2AE"),
|
|
2909
2909
|
path: z.string(),
|
|
2910
2910
|
key: z.string(),
|
|
2911
2911
|
display_name: z.string().optional(),
|
|
@@ -2958,7 +2958,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2958
2958
|
z.ZodTypeDef,
|
|
2959
2959
|
ResponseBody4
|
|
2960
2960
|
> = z.object({
|
|
2961
|
-
id: z.string().default("
|
|
2961
|
+
id: z.string().default("tool_01KA3CD2D13RYNNXTW8M46D2AE"),
|
|
2962
2962
|
path: z.string(),
|
|
2963
2963
|
key: z.string(),
|
|
2964
2964
|
displayName: z.string().optional(),
|
|
@@ -3314,7 +3314,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
3314
3314
|
z.ZodTypeDef,
|
|
3315
3315
|
unknown
|
|
3316
3316
|
> = z.object({
|
|
3317
|
-
_id: z.string().default("
|
|
3317
|
+
_id: z.string().default("tool_01KA3CD2CYGVP6M69CTQ2RY5GS"),
|
|
3318
3318
|
path: z.string(),
|
|
3319
3319
|
key: z.string(),
|
|
3320
3320
|
display_name: z.string().optional(),
|
|
@@ -3365,7 +3365,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
3365
3365
|
z.ZodTypeDef,
|
|
3366
3366
|
ResponseBody3
|
|
3367
3367
|
> = z.object({
|
|
3368
|
-
id: z.string().default("
|
|
3368
|
+
id: z.string().default("tool_01KA3CD2CYGVP6M69CTQ2RY5GS"),
|
|
3369
3369
|
path: z.string(),
|
|
3370
3370
|
key: z.string(),
|
|
3371
3371
|
displayName: z.string().optional(),
|
|
@@ -3535,7 +3535,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
3535
3535
|
z.ZodTypeDef,
|
|
3536
3536
|
unknown
|
|
3537
3537
|
> = z.object({
|
|
3538
|
-
_id: z.string().default("
|
|
3538
|
+
_id: z.string().default("tool_01KA3CD2CVZCA9F8EGSHSG18BD"),
|
|
3539
3539
|
path: z.string(),
|
|
3540
3540
|
key: z.string(),
|
|
3541
3541
|
display_name: z.string().optional(),
|
|
@@ -3587,7 +3587,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
3587
3587
|
z.ZodTypeDef,
|
|
3588
3588
|
ResponseBody2
|
|
3589
3589
|
> = z.object({
|
|
3590
|
-
id: z.string().default("
|
|
3590
|
+
id: z.string().default("tool_01KA3CD2CVZCA9F8EGSHSG18BD"),
|
|
3591
3591
|
path: z.string(),
|
|
3592
3592
|
key: z.string(),
|
|
3593
3593
|
displayName: z.string().optional(),
|
|
@@ -3773,7 +3773,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3773
3773
|
z.ZodTypeDef,
|
|
3774
3774
|
unknown
|
|
3775
3775
|
> = z.object({
|
|
3776
|
-
_id: z.string().default("
|
|
3776
|
+
_id: z.string().default("tool_01KA3CD2CS3SJ7VPBXHNBGAK4J"),
|
|
3777
3777
|
path: z.string(),
|
|
3778
3778
|
key: z.string(),
|
|
3779
3779
|
display_name: z.string().optional(),
|
|
@@ -3824,7 +3824,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3824
3824
|
z.ZodTypeDef,
|
|
3825
3825
|
ResponseBody1
|
|
3826
3826
|
> = z.object({
|
|
3827
|
-
id: z.string().default("
|
|
3827
|
+
id: z.string().default("tool_01KA3CD2CS3SJ7VPBXHNBGAK4J"),
|
|
3828
3828
|
path: z.string(),
|
|
3829
3829
|
key: z.string(),
|
|
3830
3830
|
displayName: z.string().optional(),
|
|
@@ -955,7 +955,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
955
955
|
z.ZodTypeDef,
|
|
956
956
|
unknown
|
|
957
957
|
> = z.object({
|
|
958
|
-
_id: z.string().default("
|
|
958
|
+
_id: z.string().default("tool_01KA3CD2E5HXG99KXB4A8TJHXV"),
|
|
959
959
|
path: z.string(),
|
|
960
960
|
key: z.string(),
|
|
961
961
|
display_name: z.string().optional(),
|
|
@@ -1010,7 +1010,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
1010
1010
|
z.ZodTypeDef,
|
|
1011
1011
|
DuplicateToolResponseBody5
|
|
1012
1012
|
> = z.object({
|
|
1013
|
-
id: z.string().default("
|
|
1013
|
+
id: z.string().default("tool_01KA3CD2E5HXG99KXB4A8TJHXV"),
|
|
1014
1014
|
path: z.string(),
|
|
1015
1015
|
key: z.string(),
|
|
1016
1016
|
displayName: z.string().optional(),
|
|
@@ -1312,7 +1312,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1312
1312
|
z.ZodTypeDef,
|
|
1313
1313
|
unknown
|
|
1314
1314
|
> = z.object({
|
|
1315
|
-
_id: z.string().default("
|
|
1315
|
+
_id: z.string().default("tool_01KA3CD2E3GGY3E9T4KN9RQKJ6"),
|
|
1316
1316
|
path: z.string(),
|
|
1317
1317
|
key: z.string(),
|
|
1318
1318
|
display_name: z.string().optional(),
|
|
@@ -1365,7 +1365,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1365
1365
|
z.ZodTypeDef,
|
|
1366
1366
|
DuplicateToolResponseBody4
|
|
1367
1367
|
> = z.object({
|
|
1368
|
-
id: z.string().default("
|
|
1368
|
+
id: z.string().default("tool_01KA3CD2E3GGY3E9T4KN9RQKJ6"),
|
|
1369
1369
|
path: z.string(),
|
|
1370
1370
|
key: z.string(),
|
|
1371
1371
|
displayName: z.string().optional(),
|
|
@@ -1746,7 +1746,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1746
1746
|
z.ZodTypeDef,
|
|
1747
1747
|
unknown
|
|
1748
1748
|
> = z.object({
|
|
1749
|
-
_id: z.string().default("
|
|
1749
|
+
_id: z.string().default("tool_01KA3CD2E1EEQDX0QGZS8SJPBS"),
|
|
1750
1750
|
path: z.string(),
|
|
1751
1751
|
key: z.string(),
|
|
1752
1752
|
display_name: z.string().optional(),
|
|
@@ -1799,7 +1799,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1799
1799
|
z.ZodTypeDef,
|
|
1800
1800
|
DuplicateToolResponseBody3
|
|
1801
1801
|
> = z.object({
|
|
1802
|
-
id: z.string().default("
|
|
1802
|
+
id: z.string().default("tool_01KA3CD2E1EEQDX0QGZS8SJPBS"),
|
|
1803
1803
|
path: z.string(),
|
|
1804
1804
|
key: z.string(),
|
|
1805
1805
|
displayName: z.string().optional(),
|
|
@@ -1981,7 +1981,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1981
1981
|
z.ZodTypeDef,
|
|
1982
1982
|
unknown
|
|
1983
1983
|
> = z.object({
|
|
1984
|
-
_id: z.string().default("
|
|
1984
|
+
_id: z.string().default("tool_01KA3CD2DZ8R4NT2E471H1DWYC"),
|
|
1985
1985
|
path: z.string(),
|
|
1986
1986
|
key: z.string(),
|
|
1987
1987
|
display_name: z.string().optional(),
|
|
@@ -2033,7 +2033,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
2033
2033
|
z.ZodTypeDef,
|
|
2034
2034
|
DuplicateToolResponseBody2
|
|
2035
2035
|
> = z.object({
|
|
2036
|
-
id: z.string().default("
|
|
2036
|
+
id: z.string().default("tool_01KA3CD2DZ8R4NT2E471H1DWYC"),
|
|
2037
2037
|
path: z.string(),
|
|
2038
2038
|
key: z.string(),
|
|
2039
2039
|
displayName: z.string().optional(),
|
|
@@ -2231,7 +2231,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2231
2231
|
z.ZodTypeDef,
|
|
2232
2232
|
unknown
|
|
2233
2233
|
> = z.object({
|
|
2234
|
-
_id: z.string().default("
|
|
2234
|
+
_id: z.string().default("tool_01KA3CD2DXKK4FVMADGC46XMB5"),
|
|
2235
2235
|
path: z.string(),
|
|
2236
2236
|
key: z.string(),
|
|
2237
2237
|
display_name: z.string().optional(),
|
|
@@ -2282,7 +2282,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2282
2282
|
z.ZodTypeDef,
|
|
2283
2283
|
DuplicateToolResponseBody1
|
|
2284
2284
|
> = z.object({
|
|
2285
|
-
id: z.string().default("
|
|
2285
|
+
id: z.string().default("tool_01KA3CD2DXKK4FVMADGC46XMB5"),
|
|
2286
2286
|
path: z.string(),
|
|
2287
2287
|
key: z.string(),
|
|
2288
2288
|
displayName: z.string().optional(),
|
|
@@ -119,7 +119,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
119
119
|
file_name: z.string(),
|
|
120
120
|
workspace_id: z.string(),
|
|
121
121
|
created: z.string().datetime({ offset: true }).default(
|
|
122
|
-
"2025-11-
|
|
122
|
+
"2025-11-15T09:09:01.853Z",
|
|
123
123
|
).transform(v => new Date(v)),
|
|
124
124
|
}).transform((v) => {
|
|
125
125
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
152
152
|
bytes: z.number(),
|
|
153
153
|
fileName: z.string(),
|
|
154
154
|
workspaceId: z.string(),
|
|
155
|
-
created: z.date().default(() => new Date("2025-11-
|
|
155
|
+
created: z.date().default(() => new Date("2025-11-15T09:09:01.853Z"))
|
|
156
156
|
.transform(v => v.toISOString()),
|
|
157
157
|
}).transform((v) => {
|
|
158
158
|
return remap$(v, {
|
|
@@ -157,7 +157,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
157
157
|
file_name: z.string(),
|
|
158
158
|
workspace_id: z.string(),
|
|
159
159
|
created: z.string().datetime({ offset: true }).default(
|
|
160
|
-
"2025-11-
|
|
160
|
+
"2025-11-15T09:09:01.853Z",
|
|
161
161
|
).transform(v => new Date(v)),
|
|
162
162
|
}).transform((v) => {
|
|
163
163
|
return remap$(v, {
|
|
@@ -190,7 +190,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
190
190
|
bytes: z.number(),
|
|
191
191
|
fileName: z.string(),
|
|
192
192
|
workspaceId: z.string(),
|
|
193
|
-
created: z.date().default(() => new Date("2025-11-
|
|
193
|
+
created: z.date().default(() => new Date("2025-11-15T09:09:01.853Z"))
|
|
194
194
|
.transform(v => v.toISOString()),
|
|
195
195
|
}).transform((v) => {
|
|
196
196
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-11-
|
|
199
|
+
"2025-11-15T09:09:01.853Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -229,7 +229,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
229
229
|
bytes: z.number(),
|
|
230
230
|
fileName: z.string(),
|
|
231
231
|
workspaceId: z.string(),
|
|
232
|
-
created: z.date().default(() => new Date("2025-11-
|
|
232
|
+
created: z.date().default(() => new Date("2025-11-15T09:09:01.853Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -875,7 +875,7 @@ export function dataCodeToolFromJSON(
|
|
|
875
875
|
/** @internal */
|
|
876
876
|
export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
|
|
877
877
|
.object({
|
|
878
|
-
_id: z.string().default("
|
|
878
|
+
_id: z.string().default("tool_01KA3CD2C3AN94KEFE1PQ8NJV9"),
|
|
879
879
|
path: z.string(),
|
|
880
880
|
key: z.string(),
|
|
881
881
|
display_name: z.string().optional(),
|
|
@@ -927,7 +927,7 @@ export const Data5$outboundSchema: z.ZodType<
|
|
|
927
927
|
z.ZodTypeDef,
|
|
928
928
|
Data5
|
|
929
929
|
> = z.object({
|
|
930
|
-
id: z.string().default("
|
|
930
|
+
id: z.string().default("tool_01KA3CD2C3AN94KEFE1PQ8NJV9"),
|
|
931
931
|
path: z.string(),
|
|
932
932
|
key: z.string(),
|
|
933
933
|
displayName: z.string().optional(),
|
|
@@ -1189,7 +1189,7 @@ export function dataMcpFromJSON(
|
|
|
1189
1189
|
/** @internal */
|
|
1190
1190
|
export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
|
|
1191
1191
|
.object({
|
|
1192
|
-
_id: z.string().default("
|
|
1192
|
+
_id: z.string().default("tool_01KA3CD2C0MYRZJDEB1GQ1ZDF9"),
|
|
1193
1193
|
path: z.string(),
|
|
1194
1194
|
key: z.string(),
|
|
1195
1195
|
display_name: z.string().optional(),
|
|
@@ -1240,7 +1240,7 @@ export const Data4$outboundSchema: z.ZodType<
|
|
|
1240
1240
|
z.ZodTypeDef,
|
|
1241
1241
|
Data4
|
|
1242
1242
|
> = z.object({
|
|
1243
|
-
id: z.string().default("
|
|
1243
|
+
id: z.string().default("tool_01KA3CD2C0MYRZJDEB1GQ1ZDF9"),
|
|
1244
1244
|
path: z.string(),
|
|
1245
1245
|
key: z.string(),
|
|
1246
1246
|
displayName: z.string().optional(),
|
|
@@ -1580,7 +1580,7 @@ export function getAllToolsDataHttpFromJSON(
|
|
|
1580
1580
|
/** @internal */
|
|
1581
1581
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
1582
1582
|
.object({
|
|
1583
|
-
_id: z.string().default("
|
|
1583
|
+
_id: z.string().default("tool_01KA3CD2BV7P4V0J4YB5ER29VK"),
|
|
1584
1584
|
path: z.string(),
|
|
1585
1585
|
key: z.string(),
|
|
1586
1586
|
display_name: z.string().optional(),
|
|
@@ -1631,7 +1631,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
1631
1631
|
z.ZodTypeDef,
|
|
1632
1632
|
Data3
|
|
1633
1633
|
> = z.object({
|
|
1634
|
-
id: z.string().default("
|
|
1634
|
+
id: z.string().default("tool_01KA3CD2BV7P4V0J4YB5ER29VK"),
|
|
1635
1635
|
path: z.string(),
|
|
1636
1636
|
key: z.string(),
|
|
1637
1637
|
displayName: z.string().optional(),
|
|
@@ -1790,7 +1790,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
1790
1790
|
/** @internal */
|
|
1791
1791
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
1792
1792
|
.object({
|
|
1793
|
-
_id: z.string().default("
|
|
1793
|
+
_id: z.string().default("tool_01KA3CD2BSG12XB7XYGJ1C5QN9"),
|
|
1794
1794
|
path: z.string(),
|
|
1795
1795
|
key: z.string(),
|
|
1796
1796
|
display_name: z.string().optional(),
|
|
@@ -1842,7 +1842,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
1842
1842
|
z.ZodTypeDef,
|
|
1843
1843
|
Data2
|
|
1844
1844
|
> = z.object({
|
|
1845
|
-
id: z.string().default("
|
|
1845
|
+
id: z.string().default("tool_01KA3CD2BSG12XB7XYGJ1C5QN9"),
|
|
1846
1846
|
path: z.string(),
|
|
1847
1847
|
key: z.string(),
|
|
1848
1848
|
displayName: z.string().optional(),
|
|
@@ -2020,7 +2020,7 @@ export function getAllToolsDataFunctionFromJSON(
|
|
|
2020
2020
|
/** @internal */
|
|
2021
2021
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
2022
2022
|
.object({
|
|
2023
|
-
_id: z.string().default("
|
|
2023
|
+
_id: z.string().default("tool_01KA3CD2BRGR6YTZBZAYQ05CGA"),
|
|
2024
2024
|
path: z.string(),
|
|
2025
2025
|
key: z.string(),
|
|
2026
2026
|
display_name: z.string().optional(),
|
|
@@ -2071,7 +2071,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
2071
2071
|
z.ZodTypeDef,
|
|
2072
2072
|
Data1
|
|
2073
2073
|
> = z.object({
|
|
2074
|
-
id: z.string().default("
|
|
2074
|
+
id: z.string().default("tool_01KA3CD2BRGR6YTZBZAYQ05CGA"),
|
|
2075
2075
|
path: z.string(),
|
|
2076
2076
|
key: z.string(),
|
|
2077
2077
|
displayName: z.string().optional(),
|
|
@@ -291,7 +291,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
291
291
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
292
292
|
.optional(),
|
|
293
293
|
updated: z.string().datetime({ offset: true }).default(
|
|
294
|
-
"2025-11-
|
|
294
|
+
"2025-11-15T09:08:59.189Z",
|
|
295
295
|
).transform(v => new Date(v)),
|
|
296
296
|
}).transform((v) => {
|
|
297
297
|
return remap$(v, {
|
|
@@ -328,7 +328,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
328
328
|
isActive: z.boolean(),
|
|
329
329
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
330
330
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
331
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
331
|
+
updated: z.date().default(() => new Date("2025-11-15T09:08:59.189Z"))
|
|
332
332
|
.transform(v => v.toISOString()),
|
|
333
333
|
}).transform((v) => {
|
|
334
334
|
return remap$(v, {
|