@orq-ai/node 4.0.0-rc.8 → 4.0.0-rc.9
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 +209 -209
- 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 +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +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/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +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
|
@@ -303,7 +303,7 @@ function dataCodeToolFromJSON(jsonString) {
|
|
|
303
303
|
/** @internal */
|
|
304
304
|
exports.Data5$inboundSchema = z
|
|
305
305
|
.object({
|
|
306
|
-
_id: z.string().default("
|
|
306
|
+
_id: z.string().default("01K99V9YEDM64CR2ENPRA4STEK"),
|
|
307
307
|
path: z.string(),
|
|
308
308
|
key: z.string(),
|
|
309
309
|
display_name: z.string().optional(),
|
|
@@ -332,7 +332,7 @@ exports.Data5$inboundSchema = z
|
|
|
332
332
|
});
|
|
333
333
|
/** @internal */
|
|
334
334
|
exports.Data5$outboundSchema = z.object({
|
|
335
|
-
id: z.string().default("
|
|
335
|
+
id: z.string().default("01K99V9YEDM64CR2ENPRA4STEK"),
|
|
336
336
|
path: z.string(),
|
|
337
337
|
key: z.string(),
|
|
338
338
|
displayName: z.string().optional(),
|
|
@@ -546,7 +546,7 @@ function dataMcpFromJSON(jsonString) {
|
|
|
546
546
|
/** @internal */
|
|
547
547
|
exports.Data4$inboundSchema = z
|
|
548
548
|
.object({
|
|
549
|
-
_id: z.string().default("
|
|
549
|
+
_id: z.string().default("01K99V9YEAFFHXPXPHPE609TVZ"),
|
|
550
550
|
path: z.string(),
|
|
551
551
|
key: z.string(),
|
|
552
552
|
display_name: z.string().optional(),
|
|
@@ -574,7 +574,7 @@ exports.Data4$inboundSchema = z
|
|
|
574
574
|
});
|
|
575
575
|
/** @internal */
|
|
576
576
|
exports.Data4$outboundSchema = z.object({
|
|
577
|
-
id: z.string().default("
|
|
577
|
+
id: z.string().default("01K99V9YEAFFHXPXPHPE609TVZ"),
|
|
578
578
|
path: z.string(),
|
|
579
579
|
key: z.string(),
|
|
580
580
|
displayName: z.string().optional(),
|
|
@@ -800,7 +800,7 @@ function getAllToolsDataHttpFromJSON(jsonString) {
|
|
|
800
800
|
/** @internal */
|
|
801
801
|
exports.Data3$inboundSchema = z
|
|
802
802
|
.object({
|
|
803
|
-
_id: z.string().default("
|
|
803
|
+
_id: z.string().default("01K99V9YE96WPJZJDJCDPZZX1F"),
|
|
804
804
|
path: z.string(),
|
|
805
805
|
key: z.string(),
|
|
806
806
|
display_name: z.string().optional(),
|
|
@@ -828,7 +828,7 @@ exports.Data3$inboundSchema = z
|
|
|
828
828
|
});
|
|
829
829
|
/** @internal */
|
|
830
830
|
exports.Data3$outboundSchema = z.object({
|
|
831
|
-
id: z.string().default("
|
|
831
|
+
id: z.string().default("01K99V9YE96WPJZJDJCDPZZX1F"),
|
|
832
832
|
path: z.string(),
|
|
833
833
|
key: z.string(),
|
|
834
834
|
displayName: z.string().optional(),
|
|
@@ -935,7 +935,7 @@ function dataJsonSchemaFromJSON(jsonString) {
|
|
|
935
935
|
/** @internal */
|
|
936
936
|
exports.Data2$inboundSchema = z
|
|
937
937
|
.object({
|
|
938
|
-
_id: z.string().default("
|
|
938
|
+
_id: z.string().default("01K99V9YE70ZJFQA724R69J5HP"),
|
|
939
939
|
path: z.string(),
|
|
940
940
|
key: z.string(),
|
|
941
941
|
display_name: z.string().optional(),
|
|
@@ -964,7 +964,7 @@ exports.Data2$inboundSchema = z
|
|
|
964
964
|
});
|
|
965
965
|
/** @internal */
|
|
966
966
|
exports.Data2$outboundSchema = z.object({
|
|
967
|
-
id: z.string().default("
|
|
967
|
+
id: z.string().default("01K99V9YE70ZJFQA724R69J5HP"),
|
|
968
968
|
path: z.string(),
|
|
969
969
|
key: z.string(),
|
|
970
970
|
displayName: z.string().optional(),
|
|
@@ -1073,7 +1073,7 @@ function getAllToolsDataFunctionFromJSON(jsonString) {
|
|
|
1073
1073
|
/** @internal */
|
|
1074
1074
|
exports.Data1$inboundSchema = z
|
|
1075
1075
|
.object({
|
|
1076
|
-
_id: z.string().default("
|
|
1076
|
+
_id: z.string().default("01K99V9YE4SRMM8KV9W7VXM7KK"),
|
|
1077
1077
|
path: z.string(),
|
|
1078
1078
|
key: z.string(),
|
|
1079
1079
|
display_name: z.string().optional(),
|
|
@@ -1101,7 +1101,7 @@ exports.Data1$inboundSchema = z
|
|
|
1101
1101
|
});
|
|
1102
1102
|
/** @internal */
|
|
1103
1103
|
exports.Data1$outboundSchema = z.object({
|
|
1104
|
-
id: z.string().default("
|
|
1104
|
+
id: z.string().default("01K99V9YE4SRMM8KV9W7VXM7KK"),
|
|
1105
1105
|
path: z.string(),
|
|
1106
1106
|
key: z.string(),
|
|
1107
1107
|
displayName: z.string().optional(),
|
|
@@ -204,7 +204,7 @@ exports.GetBudgetResponseBody$inboundSchema = z.object({
|
|
|
204
204
|
consumption: z.lazy(() => exports.GetBudgetConsumption$inboundSchema).optional(),
|
|
205
205
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
206
206
|
.optional(),
|
|
207
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
207
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-05T11:09:10.517Z").transform(v => new Date(v)),
|
|
208
208
|
}).transform((v) => {
|
|
209
209
|
return (0, primitives_js_1.remap)(v, {
|
|
210
210
|
"_id": "id",
|
|
@@ -223,7 +223,7 @@ exports.GetBudgetResponseBody$outboundSchema = z.object({
|
|
|
223
223
|
isActive: z.boolean(),
|
|
224
224
|
consumption: z.lazy(() => exports.GetBudgetConsumption$outboundSchema).optional(),
|
|
225
225
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
226
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
226
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.517Z"))
|
|
227
227
|
.transform(v => v.toISOString()),
|
|
228
228
|
}).transform((v) => {
|
|
229
229
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -640,8 +640,8 @@ var GetEvalsDataEvalsResponse200ApplicationJSONType$;
|
|
|
640
640
|
exports.DataTypescript$inboundSchema = z.object({
|
|
641
641
|
_id: z.string(),
|
|
642
642
|
description: z.string(),
|
|
643
|
-
created: z.string().default("2025-11-
|
|
644
|
-
updated: z.string().default("2025-11-
|
|
643
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
644
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
645
645
|
guardrail_config: z.union([
|
|
646
646
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
647
647
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
@@ -659,8 +659,8 @@ exports.DataTypescript$inboundSchema = z.object({
|
|
|
659
659
|
exports.DataTypescript$outboundSchema = z.object({
|
|
660
660
|
id: z.string(),
|
|
661
661
|
description: z.string(),
|
|
662
|
-
created: z.string().default("2025-11-
|
|
663
|
-
updated: z.string().default("2025-11-
|
|
662
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
663
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
664
664
|
guardrailConfig: z.union([
|
|
665
665
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
666
666
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
@@ -858,8 +858,8 @@ var DataRagasMetric$;
|
|
|
858
858
|
exports.DataRagas$inboundSchema = z.object({
|
|
859
859
|
_id: z.string(),
|
|
860
860
|
description: z.string(),
|
|
861
|
-
created: z.string().default("2025-11-
|
|
862
|
-
updated: z.string().default("2025-11-
|
|
861
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
862
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
863
863
|
guardrail_config: z.union([
|
|
864
864
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
865
865
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -879,8 +879,8 @@ exports.DataRagas$inboundSchema = z.object({
|
|
|
879
879
|
exports.DataRagas$outboundSchema = z.object({
|
|
880
880
|
id: z.string(),
|
|
881
881
|
description: z.string(),
|
|
882
|
-
created: z.string().default("2025-11-
|
|
883
|
-
updated: z.string().default("2025-11-
|
|
882
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
883
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
884
884
|
guardrailConfig: z.union([
|
|
885
885
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
886
886
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -2586,8 +2586,8 @@ function dataFunctionParamsFromJSON(jsonString) {
|
|
|
2586
2586
|
exports.DataFunction$inboundSchema = z.object({
|
|
2587
2587
|
_id: z.string(),
|
|
2588
2588
|
description: z.string(),
|
|
2589
|
-
created: z.string().default("2025-11-
|
|
2590
|
-
updated: z.string().default("2025-11-
|
|
2589
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
2590
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
2591
2591
|
guardrail_config: z.union([
|
|
2592
2592
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
2593
2593
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -2642,8 +2642,8 @@ exports.DataFunction$inboundSchema = z.object({
|
|
|
2642
2642
|
exports.DataFunction$outboundSchema = z.object({
|
|
2643
2643
|
id: z.string(),
|
|
2644
2644
|
description: z.string(),
|
|
2645
|
-
created: z.string().default("2025-11-
|
|
2646
|
-
updated: z.string().default("2025-11-
|
|
2645
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
2646
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
2647
2647
|
guardrailConfig: z.union([
|
|
2648
2648
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
2649
2649
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2862,8 +2862,8 @@ var GetEvalsDataEvalsType$;
|
|
|
2862
2862
|
exports.DataPython$inboundSchema = z.object({
|
|
2863
2863
|
_id: z.string(),
|
|
2864
2864
|
description: z.string(),
|
|
2865
|
-
created: z.string().default("2025-11-
|
|
2866
|
-
updated: z.string().default("2025-11-
|
|
2865
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
2866
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
2867
2867
|
guardrail_config: z.union([
|
|
2868
2868
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
2869
2869
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -2881,8 +2881,8 @@ exports.DataPython$inboundSchema = z.object({
|
|
|
2881
2881
|
exports.DataPython$outboundSchema = z.object({
|
|
2882
2882
|
id: z.string(),
|
|
2883
2883
|
description: z.string(),
|
|
2884
|
-
created: z.string().default("2025-11-
|
|
2885
|
-
updated: z.string().default("2025-11-
|
|
2884
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
2885
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
2886
2886
|
guardrailConfig: z.union([
|
|
2887
2887
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
2888
2888
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -3081,8 +3081,8 @@ var DataMethod$;
|
|
|
3081
3081
|
exports.DataHTTP$inboundSchema = z.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-05T11:09:12.675Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3086
3086
|
guardrail_config: z.union([
|
|
3087
3087
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
3088
3088
|
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -3103,8 +3103,8 @@ exports.DataHTTP$inboundSchema = z.object({
|
|
|
3103
3103
|
exports.DataHTTP$outboundSchema = z.object({
|
|
3104
3104
|
id: z.string(),
|
|
3105
3105
|
description: z.string(),
|
|
3106
|
-
created: z.string().default("2025-11-
|
|
3107
|
-
updated: z.string().default("2025-11-
|
|
3106
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3107
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3108
3108
|
guardrailConfig: z.union([
|
|
3109
3109
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
3110
3110
|
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -3295,8 +3295,8 @@ var DataType$;
|
|
|
3295
3295
|
exports.DataJSON$inboundSchema = z.object({
|
|
3296
3296
|
_id: z.string(),
|
|
3297
3297
|
description: z.string(),
|
|
3298
|
-
created: z.string().default("2025-11-
|
|
3299
|
-
updated: z.string().default("2025-11-
|
|
3298
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3299
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3300
3300
|
guardrail_config: z.union([
|
|
3301
3301
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
3302
3302
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
@@ -3314,8 +3314,8 @@ exports.DataJSON$inboundSchema = z.object({
|
|
|
3314
3314
|
exports.DataJSON$outboundSchema = z.object({
|
|
3315
3315
|
id: z.string(),
|
|
3316
3316
|
description: z.string(),
|
|
3317
|
-
created: z.string().default("2025-11-
|
|
3318
|
-
updated: z.string().default("2025-11-
|
|
3317
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3318
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3319
3319
|
guardrailConfig: z.union([
|
|
3320
3320
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
3321
3321
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
@@ -3503,8 +3503,8 @@ var GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$;
|
|
|
3503
3503
|
exports.DataLLM$inboundSchema = z.object({
|
|
3504
3504
|
_id: z.string(),
|
|
3505
3505
|
description: z.string(),
|
|
3506
|
-
created: z.string().default("2025-11-
|
|
3507
|
-
updated: z.string().default("2025-11-
|
|
3506
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3507
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3508
3508
|
guardrail_config: z.union([
|
|
3509
3509
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
3510
3510
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
@@ -3523,8 +3523,8 @@ exports.DataLLM$inboundSchema = z.object({
|
|
|
3523
3523
|
exports.DataLLM$outboundSchema = z.object({
|
|
3524
3524
|
id: z.string(),
|
|
3525
3525
|
description: z.string(),
|
|
3526
|
-
created: z.string().default("2025-11-
|
|
3527
|
-
updated: z.string().default("2025-11-
|
|
3526
|
+
created: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3527
|
+
updated: z.string().default("2025-11-05T11:09:12.675Z"),
|
|
3528
3528
|
guardrailConfig: z.union([
|
|
3529
3529
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
3530
3530
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
@@ -269,7 +269,7 @@ exports.ListBudgetsData$inboundSchema = z.object({
|
|
|
269
269
|
consumption: z.lazy(() => exports.ListBudgetsConsumption$inboundSchema).optional(),
|
|
270
270
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
271
271
|
.optional(),
|
|
272
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
272
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-05T11:09:10.517Z").transform(v => new Date(v)),
|
|
273
273
|
}).transform((v) => {
|
|
274
274
|
return (0, primitives_js_1.remap)(v, {
|
|
275
275
|
"_id": "id",
|
|
@@ -286,7 +286,7 @@ exports.ListBudgetsData$outboundSchema = z.object({
|
|
|
286
286
|
isActive: z.boolean(),
|
|
287
287
|
consumption: z.lazy(() => exports.ListBudgetsConsumption$outboundSchema).optional(),
|
|
288
288
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
289
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
289
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.517Z"))
|
|
290
290
|
.transform(v => v.toISOString()),
|
|
291
291
|
}).transform((v) => {
|
|
292
292
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -198,7 +198,7 @@ exports.Data$inboundSchema = z
|
|
|
198
198
|
metadata: z.record(z.any()).optional(),
|
|
199
199
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
200
200
|
.optional(),
|
|
201
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
201
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-05T11:09:10.226Z").transform(v => new Date(v)),
|
|
202
202
|
metrics: z.lazy(() => exports.ListContactsMetrics$inboundSchema),
|
|
203
203
|
}).transform((v) => {
|
|
204
204
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -218,7 +218,7 @@ exports.Data$outboundSchema = z.object({
|
|
|
218
218
|
tags: z.array(z.string()).optional(),
|
|
219
219
|
metadata: z.record(z.any()).optional(),
|
|
220
220
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
221
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
221
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
222
222
|
.transform(v => v.toISOString()),
|
|
223
223
|
metrics: z.lazy(() => exports.ListContactsMetrics$outboundSchema),
|
|
224
224
|
}).transform((v) => {
|
|
@@ -1529,7 +1529,7 @@ exports.ListDatasetDatapointsEvaluations3$inboundSchema = z.object({
|
|
|
1529
1529
|
human_review_id: z.string(),
|
|
1530
1530
|
source: exports.ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
1531
1531
|
reviewed_by_id: z.string(),
|
|
1532
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1532
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-05T11:09:20.932Z").transform(v => new Date(v)),
|
|
1533
1533
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
1534
1534
|
values: z.array(z.string()),
|
|
1535
1535
|
}).transform((v) => {
|
|
@@ -1547,7 +1547,7 @@ exports.ListDatasetDatapointsEvaluations3$outboundSchema = z.object({
|
|
|
1547
1547
|
humanReviewId: z.string(),
|
|
1548
1548
|
source: exports.ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
1549
1549
|
reviewedById: z.string(),
|
|
1550
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1550
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.932Z"))
|
|
1551
1551
|
.transform(v => v.toISOString()),
|
|
1552
1552
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
1553
1553
|
values: z.array(z.string()),
|
|
@@ -1629,7 +1629,7 @@ exports.ListDatasetDatapointsEvaluations2$inboundSchema = z.object({
|
|
|
1629
1629
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema
|
|
1630
1630
|
.default("orq"),
|
|
1631
1631
|
reviewed_by_id: z.string(),
|
|
1632
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1632
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-05T11:09:20.923Z").transform(v => new Date(v)),
|
|
1633
1633
|
type: exports.ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
1634
1634
|
value: z.number(),
|
|
1635
1635
|
}).transform((v) => {
|
|
@@ -1648,7 +1648,7 @@ exports.ListDatasetDatapointsEvaluations2$outboundSchema = z.object({
|
|
|
1648
1648
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
|
|
1649
1649
|
.default("orq"),
|
|
1650
1650
|
reviewedById: z.string(),
|
|
1651
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1651
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.923Z"))
|
|
1652
1652
|
.transform(v => v.toISOString()),
|
|
1653
1653
|
type: exports.ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
1654
1654
|
value: z.number(),
|
|
@@ -1730,7 +1730,7 @@ exports.ListDatasetDatapointsEvaluations1$inboundSchema = z.object({
|
|
|
1730
1730
|
human_review_id: z.string(),
|
|
1731
1731
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
1732
1732
|
reviewed_by_id: z.string(),
|
|
1733
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1733
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-05T11:09:20.922Z").transform(v => new Date(v)),
|
|
1734
1734
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
1735
1735
|
value: z.string(),
|
|
1736
1736
|
}).transform((v) => {
|
|
@@ -1748,7 +1748,7 @@ exports.ListDatasetDatapointsEvaluations1$outboundSchema = z.object({
|
|
|
1748
1748
|
humanReviewId: z.string(),
|
|
1749
1749
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
1750
1750
|
reviewedById: z.string(),
|
|
1751
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1751
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.922Z"))
|
|
1752
1752
|
.transform(v => v.toISOString()),
|
|
1753
1753
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
1754
1754
|
value: z.string(),
|
|
@@ -1830,7 +1830,7 @@ exports.ListDatasetDatapointsData$inboundSchema = z.object({
|
|
|
1830
1830
|
updated_by_id: z.string().optional(),
|
|
1831
1831
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1832
1832
|
.optional(),
|
|
1833
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
1833
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-05T11:09:10.226Z").transform(v => new Date(v)),
|
|
1834
1834
|
}).transform((v) => {
|
|
1835
1835
|
return (0, primitives_js_1.remap)(v, {
|
|
1836
1836
|
"_id": "id",
|
|
@@ -1865,7 +1865,7 @@ exports.ListDatasetDatapointsData$outboundSchema = z.object({
|
|
|
1865
1865
|
createdById: z.string().optional(),
|
|
1866
1866
|
updatedById: z.string().optional(),
|
|
1867
1867
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
1868
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
1868
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
1869
1869
|
.transform(v => v.toISOString()),
|
|
1870
1870
|
}).transform((v) => {
|
|
1871
1871
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -153,7 +153,7 @@ exports.ListDatasetsData$inboundSchema = z.object({
|
|
|
153
153
|
updated_by_id: z.string().optional(),
|
|
154
154
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
155
155
|
.optional(),
|
|
156
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
156
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-05T11:09:10.226Z").transform(v => new Date(v)),
|
|
157
157
|
}).transform((v) => {
|
|
158
158
|
return (0, primitives_js_1.remap)(v, {
|
|
159
159
|
"_id": "id",
|
|
@@ -174,7 +174,7 @@ exports.ListDatasetsData$outboundSchema = z.object({
|
|
|
174
174
|
createdById: z.string().optional(),
|
|
175
175
|
updatedById: z.string().optional(),
|
|
176
176
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
177
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
177
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
178
178
|
.transform(v => v.toISOString()),
|
|
179
179
|
}).transform((v) => {
|
|
180
180
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -158,7 +158,7 @@ var ListDatasourcesStatus$;
|
|
|
158
158
|
})(ListDatasourcesStatus$ || (exports.ListDatasourcesStatus$ = ListDatasourcesStatus$ = {}));
|
|
159
159
|
/** @internal */
|
|
160
160
|
exports.ListDatasourcesData$inboundSchema = z.object({
|
|
161
|
-
_id: z.string().default("
|
|
161
|
+
_id: z.string().default("01K99V9YJEXET4WTE1KNHK5A89"),
|
|
162
162
|
display_name: z.string(),
|
|
163
163
|
description: z.string().optional(),
|
|
164
164
|
status: exports.ListDatasourcesStatus$inboundSchema,
|
|
@@ -182,7 +182,7 @@ exports.ListDatasourcesData$inboundSchema = z.object({
|
|
|
182
182
|
});
|
|
183
183
|
/** @internal */
|
|
184
184
|
exports.ListDatasourcesData$outboundSchema = z.object({
|
|
185
|
-
id: z.string().default("
|
|
185
|
+
id: z.string().default("01K99V9YJEXET4WTE1KNHK5A89"),
|
|
186
186
|
displayName: z.string(),
|
|
187
187
|
description: z.string().optional(),
|
|
188
188
|
status: exports.ListDatasourcesStatus$outboundSchema,
|
|
@@ -80,7 +80,7 @@ exports.RetrieveContactResponseBody$inboundSchema = z.object({
|
|
|
80
80
|
metadata: z.record(z.any()).optional(),
|
|
81
81
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
82
82
|
.optional(),
|
|
83
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
83
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-05T11:09:10.226Z").transform(v => new Date(v)),
|
|
84
84
|
}).transform((v) => {
|
|
85
85
|
return (0, primitives_js_1.remap)(v, {
|
|
86
86
|
"_id": "id",
|
|
@@ -99,7 +99,7 @@ exports.RetrieveContactResponseBody$outboundSchema = z.object({
|
|
|
99
99
|
tags: z.array(z.string()).optional(),
|
|
100
100
|
metadata: z.record(z.any()).optional(),
|
|
101
101
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
102
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
102
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
103
103
|
.transform(v => v.toISOString()),
|
|
104
104
|
}).transform((v) => {
|
|
105
105
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -1504,7 +1504,7 @@ exports.RetrieveDatapointEvaluations3$inboundSchema = z.object({
|
|
|
1504
1504
|
source: exports.RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema
|
|
1505
1505
|
.default("orq"),
|
|
1506
1506
|
reviewed_by_id: z.string(),
|
|
1507
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1507
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-05T11:09:20.943Z").transform(v => new Date(v)),
|
|
1508
1508
|
type: exports.RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
1509
1509
|
values: z.array(z.string()),
|
|
1510
1510
|
}).transform((v) => {
|
|
@@ -1523,7 +1523,7 @@ exports.RetrieveDatapointEvaluations3$outboundSchema = z.object({
|
|
|
1523
1523
|
source: exports.RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
1524
1524
|
.default("orq"),
|
|
1525
1525
|
reviewedById: z.string(),
|
|
1526
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1526
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.943Z"))
|
|
1527
1527
|
.transform(v => v.toISOString()),
|
|
1528
1528
|
type: exports.RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
1529
1529
|
values: z.array(z.string()),
|
|
@@ -1607,7 +1607,7 @@ exports.RetrieveDatapointEvaluations2$inboundSchema = z.object({
|
|
|
1607
1607
|
human_review_id: z.string(),
|
|
1608
1608
|
source: exports.RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
1609
1609
|
reviewed_by_id: z.string(),
|
|
1610
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1610
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-05T11:09:20.943Z").transform(v => new Date(v)),
|
|
1611
1611
|
type: exports.RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
1612
1612
|
value: z.number(),
|
|
1613
1613
|
}).transform((v) => {
|
|
@@ -1625,7 +1625,7 @@ exports.RetrieveDatapointEvaluations2$outboundSchema = z.object({
|
|
|
1625
1625
|
humanReviewId: z.string(),
|
|
1626
1626
|
source: exports.RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
1627
1627
|
reviewedById: z.string(),
|
|
1628
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1628
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.943Z"))
|
|
1629
1629
|
.transform(v => v.toISOString()),
|
|
1630
1630
|
type: exports.RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
1631
1631
|
value: z.number(),
|
|
@@ -1707,7 +1707,7 @@ exports.RetrieveDatapointEvaluations1$inboundSchema = z.object({
|
|
|
1707
1707
|
human_review_id: z.string(),
|
|
1708
1708
|
source: exports.RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
1709
1709
|
reviewed_by_id: z.string(),
|
|
1710
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1710
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-05T11:09:20.942Z").transform(v => new Date(v)),
|
|
1711
1711
|
type: exports.RetrieveDatapointEvaluationsType$inboundSchema,
|
|
1712
1712
|
value: z.string(),
|
|
1713
1713
|
}).transform((v) => {
|
|
@@ -1725,7 +1725,7 @@ exports.RetrieveDatapointEvaluations1$outboundSchema = z.object({
|
|
|
1725
1725
|
humanReviewId: z.string(),
|
|
1726
1726
|
source: exports.RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
1727
1727
|
reviewedById: z.string(),
|
|
1728
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1728
|
+
reviewedAt: z.date().default(() => new Date("2025-11-05T11:09:20.942Z"))
|
|
1729
1729
|
.transform(v => v.toISOString()),
|
|
1730
1730
|
type: exports.RetrieveDatapointEvaluationsType$outboundSchema,
|
|
1731
1731
|
value: z.string(),
|
|
@@ -1807,7 +1807,7 @@ exports.RetrieveDatapointResponseBody$inboundSchema = z.object({
|
|
|
1807
1807
|
updated_by_id: z.string().optional(),
|
|
1808
1808
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1809
1809
|
.optional(),
|
|
1810
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
1810
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-05T11:09:10.226Z").transform(v => new Date(v)),
|
|
1811
1811
|
}).transform((v) => {
|
|
1812
1812
|
return (0, primitives_js_1.remap)(v, {
|
|
1813
1813
|
"_id": "id",
|
|
@@ -1842,7 +1842,7 @@ exports.RetrieveDatapointResponseBody$outboundSchema = z.object({
|
|
|
1842
1842
|
createdById: z.string().optional(),
|
|
1843
1843
|
updatedById: z.string().optional(),
|
|
1844
1844
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
1845
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
1845
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
1846
1846
|
.transform(v => v.toISOString()),
|
|
1847
1847
|
}).transform((v) => {
|
|
1848
1848
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -127,7 +127,7 @@ exports.RetrieveDatasetResponseBody$inboundSchema = z.object({
|
|
|
127
127
|
updated_by_id: z.string().optional(),
|
|
128
128
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
129
129
|
.optional(),
|
|
130
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
130
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-05T11:09:10.226Z").transform(v => new Date(v)),
|
|
131
131
|
}).transform((v) => {
|
|
132
132
|
return (0, primitives_js_1.remap)(v, {
|
|
133
133
|
"_id": "id",
|
|
@@ -148,7 +148,7 @@ exports.RetrieveDatasetResponseBody$outboundSchema = z.object({
|
|
|
148
148
|
createdById: z.string().optional(),
|
|
149
149
|
updatedById: z.string().optional(),
|
|
150
150
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
151
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
151
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.226Z"))
|
|
152
152
|
.transform(v => v.toISOString()),
|
|
153
153
|
}).transform((v) => {
|
|
154
154
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -105,7 +105,7 @@ var RetrieveDatasourceStatus$;
|
|
|
105
105
|
})(RetrieveDatasourceStatus$ || (exports.RetrieveDatasourceStatus$ = RetrieveDatasourceStatus$ = {}));
|
|
106
106
|
/** @internal */
|
|
107
107
|
exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
108
|
-
_id: z.string().default("
|
|
108
|
+
_id: z.string().default("01K99V9YJGKR5T7RGZ415GECFD"),
|
|
109
109
|
display_name: z.string(),
|
|
110
110
|
description: z.string().optional(),
|
|
111
111
|
status: exports.RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -129,7 +129,7 @@ exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
|
129
129
|
});
|
|
130
130
|
/** @internal */
|
|
131
131
|
exports.RetrieveDatasourceResponseBody$outboundSchema = z.object({
|
|
132
|
-
id: z.string().default("
|
|
132
|
+
id: z.string().default("01K99V9YJGKR5T7RGZ415GECFD"),
|
|
133
133
|
displayName: z.string(),
|
|
134
134
|
description: z.string().optional(),
|
|
135
135
|
status: exports.RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -275,7 +275,7 @@ function retrieveToolResponseBodyCodeToolFromJSON(jsonString) {
|
|
|
275
275
|
}
|
|
276
276
|
/** @internal */
|
|
277
277
|
exports.RetrieveToolResponseBody5$inboundSchema = z.object({
|
|
278
|
-
_id: z.string().default("
|
|
278
|
+
_id: z.string().default("01K99V9YG50V4EYAC4HVX9P72Q"),
|
|
279
279
|
path: z.string(),
|
|
280
280
|
key: z.string(),
|
|
281
281
|
display_name: z.string().optional(),
|
|
@@ -305,7 +305,7 @@ exports.RetrieveToolResponseBody5$inboundSchema = z.object({
|
|
|
305
305
|
});
|
|
306
306
|
/** @internal */
|
|
307
307
|
exports.RetrieveToolResponseBody5$outboundSchema = z.object({
|
|
308
|
-
id: z.string().default("
|
|
308
|
+
id: z.string().default("01K99V9YG50V4EYAC4HVX9P72Q"),
|
|
309
309
|
path: z.string(),
|
|
310
310
|
key: z.string(),
|
|
311
311
|
displayName: z.string().optional(),
|
|
@@ -522,7 +522,7 @@ function retrieveToolResponseBodyMcpFromJSON(jsonString) {
|
|
|
522
522
|
}
|
|
523
523
|
/** @internal */
|
|
524
524
|
exports.RetrieveToolResponseBody4$inboundSchema = z.object({
|
|
525
|
-
_id: z.string().default("
|
|
525
|
+
_id: z.string().default("01K99V9YG44KRNE0S9HQW2HWG2"),
|
|
526
526
|
path: z.string(),
|
|
527
527
|
key: z.string(),
|
|
528
528
|
display_name: z.string().optional(),
|
|
@@ -550,7 +550,7 @@ exports.RetrieveToolResponseBody4$inboundSchema = z.object({
|
|
|
550
550
|
});
|
|
551
551
|
/** @internal */
|
|
552
552
|
exports.RetrieveToolResponseBody4$outboundSchema = z.object({
|
|
553
|
-
id: z.string().default("
|
|
553
|
+
id: z.string().default("01K99V9YG44KRNE0S9HQW2HWG2"),
|
|
554
554
|
path: z.string(),
|
|
555
555
|
key: z.string(),
|
|
556
556
|
displayName: z.string().optional(),
|
|
@@ -777,7 +777,7 @@ function retrieveToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
777
777
|
}
|
|
778
778
|
/** @internal */
|
|
779
779
|
exports.RetrieveToolResponseBody3$inboundSchema = z.object({
|
|
780
|
-
_id: z.string().default("
|
|
780
|
+
_id: z.string().default("01K99V9YG26WZRKYEMY9B6ZXMN"),
|
|
781
781
|
path: z.string(),
|
|
782
782
|
key: z.string(),
|
|
783
783
|
display_name: z.string().optional(),
|
|
@@ -805,7 +805,7 @@ exports.RetrieveToolResponseBody3$inboundSchema = z.object({
|
|
|
805
805
|
});
|
|
806
806
|
/** @internal */
|
|
807
807
|
exports.RetrieveToolResponseBody3$outboundSchema = z.object({
|
|
808
|
-
id: z.string().default("
|
|
808
|
+
id: z.string().default("01K99V9YG26WZRKYEMY9B6ZXMN"),
|
|
809
809
|
path: z.string(),
|
|
810
810
|
key: z.string(),
|
|
811
811
|
displayName: z.string().optional(),
|
|
@@ -911,7 +911,7 @@ function retrieveToolResponseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
911
911
|
}
|
|
912
912
|
/** @internal */
|
|
913
913
|
exports.RetrieveToolResponseBody2$inboundSchema = z.object({
|
|
914
|
-
_id: z.string().default("
|
|
914
|
+
_id: z.string().default("01K99V9YG1A5QRVQATZGWTYT0M"),
|
|
915
915
|
path: z.string(),
|
|
916
916
|
key: z.string(),
|
|
917
917
|
display_name: z.string().optional(),
|
|
@@ -940,7 +940,7 @@ exports.RetrieveToolResponseBody2$inboundSchema = z.object({
|
|
|
940
940
|
});
|
|
941
941
|
/** @internal */
|
|
942
942
|
exports.RetrieveToolResponseBody2$outboundSchema = z.object({
|
|
943
|
-
id: z.string().default("
|
|
943
|
+
id: z.string().default("01K99V9YG1A5QRVQATZGWTYT0M"),
|
|
944
944
|
path: z.string(),
|
|
945
945
|
key: z.string(),
|
|
946
946
|
displayName: z.string().optional(),
|
|
@@ -1047,7 +1047,7 @@ function retrieveToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
1047
1047
|
}
|
|
1048
1048
|
/** @internal */
|
|
1049
1049
|
exports.RetrieveToolResponseBody1$inboundSchema = z.object({
|
|
1050
|
-
_id: z.string().default("
|
|
1050
|
+
_id: z.string().default("01K99V9YG0VE0B8K5KHHCD07QA"),
|
|
1051
1051
|
path: z.string(),
|
|
1052
1052
|
key: z.string(),
|
|
1053
1053
|
display_name: z.string().optional(),
|
|
@@ -1075,7 +1075,7 @@ exports.RetrieveToolResponseBody1$inboundSchema = z.object({
|
|
|
1075
1075
|
});
|
|
1076
1076
|
/** @internal */
|
|
1077
1077
|
exports.RetrieveToolResponseBody1$outboundSchema = z.object({
|
|
1078
|
-
id: z.string().default("
|
|
1078
|
+
id: z.string().default("01K99V9YG0VE0B8K5KHHCD07QA"),
|
|
1079
1079
|
path: z.string(),
|
|
1080
1080
|
key: z.string(),
|
|
1081
1081
|
displayName: z.string().optional(),
|
|
@@ -306,7 +306,7 @@ exports.UpdateBudgetResponseBody$inboundSchema = z.object({
|
|
|
306
306
|
consumption: z.lazy(() => exports.UpdateBudgetConsumption$inboundSchema).optional(),
|
|
307
307
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
308
308
|
.optional(),
|
|
309
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
309
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-05T11:09:10.517Z").transform(v => new Date(v)),
|
|
310
310
|
}).transform((v) => {
|
|
311
311
|
return (0, primitives_js_1.remap)(v, {
|
|
312
312
|
"_id": "id",
|
|
@@ -325,7 +325,7 @@ exports.UpdateBudgetResponseBody$outboundSchema = z.object({
|
|
|
325
325
|
isActive: z.boolean(),
|
|
326
326
|
consumption: z.lazy(() => exports.UpdateBudgetConsumption$outboundSchema).optional(),
|
|
327
327
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
328
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
328
|
+
updated: z.date().default(() => new Date("2025-11-05T11:09:10.517Z"))
|
|
329
329
|
.transform(v => v.toISOString()),
|
|
330
330
|
}).transform((v) => {
|
|
331
331
|
return (0, primitives_js_1.remap)(v, {
|