@orq-ai/node 4.0.0-rc.29 → 4.0.0-rc.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +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
|
@@ -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-13T11:08:19.837Z"),
|
|
2760
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
2803
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
3131
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
5420
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
5534
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
5852
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
5894
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
6175
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
6223
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
6480
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
6759
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
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-13T11:08:19.837Z"),
|
|
6799
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
6800
6800
|
guardrailConfig: z.union([
|
|
6801
6801
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6802
6802
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2177,7 +2177,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2177
2177
|
z.ZodTypeDef,
|
|
2178
2178
|
unknown
|
|
2179
2179
|
> = z.object({
|
|
2180
|
-
_id: z.string().default("
|
|
2180
|
+
_id: z.string().default("01K9YEE400GDQ03P1C2F8KZ9XC"),
|
|
2181
2181
|
path: z.string(),
|
|
2182
2182
|
key: z.string(),
|
|
2183
2183
|
display_name: z.string().optional(),
|
|
@@ -2231,7 +2231,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2231
2231
|
z.ZodTypeDef,
|
|
2232
2232
|
ResponseBody5
|
|
2233
2233
|
> = z.object({
|
|
2234
|
-
id: z.string().default("
|
|
2234
|
+
id: z.string().default("01K9YEE400GDQ03P1C2F8KZ9XC"),
|
|
2235
2235
|
path: z.string(),
|
|
2236
2236
|
key: z.string(),
|
|
2237
2237
|
displayName: z.string().optional(),
|
|
@@ -2477,7 +2477,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2477
2477
|
z.ZodTypeDef,
|
|
2478
2478
|
unknown
|
|
2479
2479
|
> = z.object({
|
|
2480
|
-
_id: z.string().default("
|
|
2480
|
+
_id: z.string().default("01K9YEE3ZYNFF8KDXCDA4NEC4S"),
|
|
2481
2481
|
path: z.string(),
|
|
2482
2482
|
key: z.string(),
|
|
2483
2483
|
display_name: z.string().optional(),
|
|
@@ -2530,7 +2530,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2530
2530
|
z.ZodTypeDef,
|
|
2531
2531
|
ResponseBody4
|
|
2532
2532
|
> = z.object({
|
|
2533
|
-
id: z.string().default("
|
|
2533
|
+
id: z.string().default("01K9YEE3ZYNFF8KDXCDA4NEC4S"),
|
|
2534
2534
|
path: z.string(),
|
|
2535
2535
|
key: z.string(),
|
|
2536
2536
|
displayName: z.string().optional(),
|
|
@@ -2847,7 +2847,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
2847
2847
|
z.ZodTypeDef,
|
|
2848
2848
|
unknown
|
|
2849
2849
|
> = z.object({
|
|
2850
|
-
_id: z.string().default("
|
|
2850
|
+
_id: z.string().default("01K9YEE3ZW0FT7Y2S7PF621PVX"),
|
|
2851
2851
|
path: z.string(),
|
|
2852
2852
|
key: z.string(),
|
|
2853
2853
|
display_name: z.string().optional(),
|
|
@@ -2898,7 +2898,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
2898
2898
|
z.ZodTypeDef,
|
|
2899
2899
|
ResponseBody3
|
|
2900
2900
|
> = z.object({
|
|
2901
|
-
id: z.string().default("
|
|
2901
|
+
id: z.string().default("01K9YEE3ZW0FT7Y2S7PF621PVX"),
|
|
2902
2902
|
path: z.string(),
|
|
2903
2903
|
key: z.string(),
|
|
2904
2904
|
displayName: z.string().optional(),
|
|
@@ -3010,7 +3010,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
3010
3010
|
z.ZodTypeDef,
|
|
3011
3011
|
unknown
|
|
3012
3012
|
> = z.object({
|
|
3013
|
-
_id: z.string().default("
|
|
3013
|
+
_id: z.string().default("01K9YEE3ZV8AZZ1N2M02W6EE2M"),
|
|
3014
3014
|
path: z.string(),
|
|
3015
3015
|
key: z.string(),
|
|
3016
3016
|
display_name: z.string().optional(),
|
|
@@ -3062,7 +3062,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
3062
3062
|
z.ZodTypeDef,
|
|
3063
3063
|
ResponseBody2
|
|
3064
3064
|
> = z.object({
|
|
3065
|
-
id: z.string().default("
|
|
3065
|
+
id: z.string().default("01K9YEE3ZV8AZZ1N2M02W6EE2M"),
|
|
3066
3066
|
path: z.string(),
|
|
3067
3067
|
key: z.string(),
|
|
3068
3068
|
displayName: z.string().optional(),
|
|
@@ -3177,7 +3177,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3177
3177
|
z.ZodTypeDef,
|
|
3178
3178
|
unknown
|
|
3179
3179
|
> = z.object({
|
|
3180
|
-
_id: z.string().default("
|
|
3180
|
+
_id: z.string().default("01K9YEE3ZS015ZR9BPJ9X0K240"),
|
|
3181
3181
|
path: z.string(),
|
|
3182
3182
|
key: z.string(),
|
|
3183
3183
|
display_name: z.string().optional(),
|
|
@@ -3228,7 +3228,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3228
3228
|
z.ZodTypeDef,
|
|
3229
3229
|
ResponseBody1
|
|
3230
3230
|
> = z.object({
|
|
3231
|
-
id: z.string().default("
|
|
3231
|
+
id: z.string().default("01K9YEE3ZS015ZR9BPJ9X0K240"),
|
|
3232
3232
|
path: z.string(),
|
|
3233
3233
|
key: z.string(),
|
|
3234
3234
|
displayName: z.string().optional(),
|
|
@@ -781,7 +781,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
781
781
|
z.ZodTypeDef,
|
|
782
782
|
unknown
|
|
783
783
|
> = z.object({
|
|
784
|
-
_id: z.string().default("
|
|
784
|
+
_id: z.string().default("01K9YEE412KGDTJVMYCZKVFWQG"),
|
|
785
785
|
path: z.string(),
|
|
786
786
|
key: z.string(),
|
|
787
787
|
display_name: z.string().optional(),
|
|
@@ -836,7 +836,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
836
836
|
z.ZodTypeDef,
|
|
837
837
|
DuplicateToolResponseBody5
|
|
838
838
|
> = z.object({
|
|
839
|
-
id: z.string().default("
|
|
839
|
+
id: z.string().default("01K9YEE412KGDTJVMYCZKVFWQG"),
|
|
840
840
|
path: z.string(),
|
|
841
841
|
key: z.string(),
|
|
842
842
|
displayName: z.string().optional(),
|
|
@@ -1107,7 +1107,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1107
1107
|
z.ZodTypeDef,
|
|
1108
1108
|
unknown
|
|
1109
1109
|
> = z.object({
|
|
1110
|
-
_id: z.string().default("
|
|
1110
|
+
_id: z.string().default("01K9YEE40ZD6F3Z50P3MRQZ403"),
|
|
1111
1111
|
path: z.string(),
|
|
1112
1112
|
key: z.string(),
|
|
1113
1113
|
display_name: z.string().optional(),
|
|
@@ -1160,7 +1160,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1160
1160
|
z.ZodTypeDef,
|
|
1161
1161
|
DuplicateToolResponseBody4
|
|
1162
1162
|
> = z.object({
|
|
1163
|
-
id: z.string().default("
|
|
1163
|
+
id: z.string().default("01K9YEE40ZD6F3Z50P3MRQZ403"),
|
|
1164
1164
|
path: z.string(),
|
|
1165
1165
|
key: z.string(),
|
|
1166
1166
|
displayName: z.string().optional(),
|
|
@@ -1506,7 +1506,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1506
1506
|
z.ZodTypeDef,
|
|
1507
1507
|
unknown
|
|
1508
1508
|
> = z.object({
|
|
1509
|
-
_id: z.string().default("
|
|
1509
|
+
_id: z.string().default("01K9YEE40X4525MYV8FTNNKRNN"),
|
|
1510
1510
|
path: z.string(),
|
|
1511
1511
|
key: z.string(),
|
|
1512
1512
|
display_name: z.string().optional(),
|
|
@@ -1559,7 +1559,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1559
1559
|
z.ZodTypeDef,
|
|
1560
1560
|
DuplicateToolResponseBody3
|
|
1561
1561
|
> = z.object({
|
|
1562
|
-
id: z.string().default("
|
|
1562
|
+
id: z.string().default("01K9YEE40X4525MYV8FTNNKRNN"),
|
|
1563
1563
|
path: z.string(),
|
|
1564
1564
|
key: z.string(),
|
|
1565
1565
|
displayName: z.string().optional(),
|
|
@@ -1681,7 +1681,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1681
1681
|
z.ZodTypeDef,
|
|
1682
1682
|
unknown
|
|
1683
1683
|
> = z.object({
|
|
1684
|
-
_id: z.string().default("
|
|
1684
|
+
_id: z.string().default("01K9YEE40MGZNHZHJSKXEZ7PE8"),
|
|
1685
1685
|
path: z.string(),
|
|
1686
1686
|
key: z.string(),
|
|
1687
1687
|
display_name: z.string().optional(),
|
|
@@ -1733,7 +1733,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1733
1733
|
z.ZodTypeDef,
|
|
1734
1734
|
DuplicateToolResponseBody2
|
|
1735
1735
|
> = z.object({
|
|
1736
|
-
id: z.string().default("
|
|
1736
|
+
id: z.string().default("01K9YEE40MGZNHZHJSKXEZ7PE8"),
|
|
1737
1737
|
path: z.string(),
|
|
1738
1738
|
key: z.string(),
|
|
1739
1739
|
displayName: z.string().optional(),
|
|
@@ -1852,7 +1852,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
1852
1852
|
z.ZodTypeDef,
|
|
1853
1853
|
unknown
|
|
1854
1854
|
> = z.object({
|
|
1855
|
-
_id: z.string().default("
|
|
1855
|
+
_id: z.string().default("01K9YEE40KZYMJ7FPXHZT5TKFN"),
|
|
1856
1856
|
path: z.string(),
|
|
1857
1857
|
key: z.string(),
|
|
1858
1858
|
display_name: z.string().optional(),
|
|
@@ -1903,7 +1903,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
1903
1903
|
z.ZodTypeDef,
|
|
1904
1904
|
DuplicateToolResponseBody1
|
|
1905
1905
|
> = z.object({
|
|
1906
|
-
id: z.string().default("
|
|
1906
|
+
id: z.string().default("01K9YEE40KZYMJ7FPXHZT5TKFN"),
|
|
1907
1907
|
path: z.string(),
|
|
1908
1908
|
key: z.string(),
|
|
1909
1909
|
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-13T11:08:21.023Z",
|
|
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-13T11:08:21.023Z"))
|
|
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-13T11:08:21.023Z",
|
|
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-13T11:08:21.023Z"))
|
|
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-13T11:08:21.023Z",
|
|
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-13T11:08:21.023Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -716,7 +716,7 @@ export function dataCodeToolFromJSON(
|
|
|
716
716
|
/** @internal */
|
|
717
717
|
export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
|
|
718
718
|
.object({
|
|
719
|
-
_id: z.string().default("
|
|
719
|
+
_id: z.string().default("01K9YEE3ZA6FHW41G4Y51H5T6T"),
|
|
720
720
|
path: z.string(),
|
|
721
721
|
key: z.string(),
|
|
722
722
|
display_name: z.string().optional(),
|
|
@@ -768,7 +768,7 @@ export const Data5$outboundSchema: z.ZodType<
|
|
|
768
768
|
z.ZodTypeDef,
|
|
769
769
|
Data5
|
|
770
770
|
> = z.object({
|
|
771
|
-
id: z.string().default("
|
|
771
|
+
id: z.string().default("01K9YEE3ZA6FHW41G4Y51H5T6T"),
|
|
772
772
|
path: z.string(),
|
|
773
773
|
key: z.string(),
|
|
774
774
|
displayName: z.string().optional(),
|
|
@@ -999,7 +999,7 @@ export function dataMcpFromJSON(
|
|
|
999
999
|
/** @internal */
|
|
1000
1000
|
export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
|
|
1001
1001
|
.object({
|
|
1002
|
-
_id: z.string().default("
|
|
1002
|
+
_id: z.string().default("01K9YEE3Z10A676WTP4XM1PND0"),
|
|
1003
1003
|
path: z.string(),
|
|
1004
1004
|
key: z.string(),
|
|
1005
1005
|
display_name: z.string().optional(),
|
|
@@ -1050,7 +1050,7 @@ export const Data4$outboundSchema: z.ZodType<
|
|
|
1050
1050
|
z.ZodTypeDef,
|
|
1051
1051
|
Data4
|
|
1052
1052
|
> = z.object({
|
|
1053
|
-
id: z.string().default("
|
|
1053
|
+
id: z.string().default("01K9YEE3Z10A676WTP4XM1PND0"),
|
|
1054
1054
|
path: z.string(),
|
|
1055
1055
|
key: z.string(),
|
|
1056
1056
|
displayName: z.string().optional(),
|
|
@@ -1353,7 +1353,7 @@ export function getAllToolsDataHttpFromJSON(
|
|
|
1353
1353
|
/** @internal */
|
|
1354
1354
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
1355
1355
|
.object({
|
|
1356
|
-
_id: z.string().default("
|
|
1356
|
+
_id: z.string().default("01K9YEE3YZ5KN6SE9BY8PQ7CWM"),
|
|
1357
1357
|
path: z.string(),
|
|
1358
1358
|
key: z.string(),
|
|
1359
1359
|
display_name: z.string().optional(),
|
|
@@ -1404,7 +1404,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
1404
1404
|
z.ZodTypeDef,
|
|
1405
1405
|
Data3
|
|
1406
1406
|
> = z.object({
|
|
1407
|
-
id: z.string().default("
|
|
1407
|
+
id: z.string().default("01K9YEE3YZ5KN6SE9BY8PQ7CWM"),
|
|
1408
1408
|
path: z.string(),
|
|
1409
1409
|
key: z.string(),
|
|
1410
1410
|
displayName: z.string().optional(),
|
|
@@ -1509,7 +1509,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
1509
1509
|
/** @internal */
|
|
1510
1510
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
1511
1511
|
.object({
|
|
1512
|
-
_id: z.string().default("
|
|
1512
|
+
_id: z.string().default("01K9YEE3YYTDGV390K92565CWK"),
|
|
1513
1513
|
path: z.string(),
|
|
1514
1514
|
key: z.string(),
|
|
1515
1515
|
display_name: z.string().optional(),
|
|
@@ -1561,7 +1561,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
1561
1561
|
z.ZodTypeDef,
|
|
1562
1562
|
Data2
|
|
1563
1563
|
> = z.object({
|
|
1564
|
-
id: z.string().default("
|
|
1564
|
+
id: z.string().default("01K9YEE3YYTDGV390K92565CWK"),
|
|
1565
1565
|
path: z.string(),
|
|
1566
1566
|
key: z.string(),
|
|
1567
1567
|
displayName: z.string().optional(),
|
|
@@ -1669,7 +1669,7 @@ export function getAllToolsDataFunctionFromJSON(
|
|
|
1669
1669
|
/** @internal */
|
|
1670
1670
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
1671
1671
|
.object({
|
|
1672
|
-
_id: z.string().default("
|
|
1672
|
+
_id: z.string().default("01K9YEE3YWQ90C8JTM5EWNF0DS"),
|
|
1673
1673
|
path: z.string(),
|
|
1674
1674
|
key: z.string(),
|
|
1675
1675
|
display_name: z.string().optional(),
|
|
@@ -1720,7 +1720,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
1720
1720
|
z.ZodTypeDef,
|
|
1721
1721
|
Data1
|
|
1722
1722
|
> = z.object({
|
|
1723
|
-
id: z.string().default("
|
|
1723
|
+
id: z.string().default("01K9YEE3YWQ90C8JTM5EWNF0DS"),
|
|
1724
1724
|
path: z.string(),
|
|
1725
1725
|
key: z.string(),
|
|
1726
1726
|
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-13T11:08:17.585Z",
|
|
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-13T11:08:17.585Z"))
|
|
332
332
|
.transform(v => v.toISOString()),
|
|
333
333
|
}).transform((v) => {
|
|
334
334
|
return remap$(v, {
|
|
@@ -1417,8 +1417,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1417
1417
|
> = z.object({
|
|
1418
1418
|
_id: z.string(),
|
|
1419
1419
|
description: z.string(),
|
|
1420
|
-
created: z.string().default("2025-11-
|
|
1421
|
-
updated: z.string().default("2025-11-
|
|
1420
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
1421
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
1422
1422
|
guardrail_config: z.union([
|
|
1423
1423
|
z.lazy(() =>
|
|
1424
1424
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1459,8 +1459,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1459
1459
|
> = z.object({
|
|
1460
1460
|
id: z.string(),
|
|
1461
1461
|
description: z.string(),
|
|
1462
|
-
created: z.string().default("2025-11-
|
|
1463
|
-
updated: z.string().default("2025-11-
|
|
1462
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
1463
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
1464
1464
|
guardrailConfig: z.union([
|
|
1465
1465
|
z.lazy(() =>
|
|
1466
1466
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -1726,8 +1726,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1726
1726
|
> = z.object({
|
|
1727
1727
|
_id: z.string(),
|
|
1728
1728
|
description: z.string(),
|
|
1729
|
-
created: z.string().default("2025-11-
|
|
1730
|
-
updated: z.string().default("2025-11-
|
|
1729
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
1730
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
1731
1731
|
guardrail_config: z.union([
|
|
1732
1732
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1733
1733
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -1767,8 +1767,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
1767
1767
|
> = z.object({
|
|
1768
1768
|
id: z.string(),
|
|
1769
1769
|
description: z.string(),
|
|
1770
|
-
created: z.string().default("2025-11-
|
|
1771
|
-
updated: z.string().default("2025-11-
|
|
1770
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
1771
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
1772
1772
|
guardrailConfig: z.union([
|
|
1773
1773
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
1774
1774
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -4090,8 +4090,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
4090
4090
|
> = z.object({
|
|
4091
4091
|
_id: z.string(),
|
|
4092
4092
|
description: z.string(),
|
|
4093
|
-
created: z.string().default("2025-11-
|
|
4094
|
-
updated: z.string().default("2025-11-
|
|
4093
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4094
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4095
4095
|
guardrail_config: z.union([
|
|
4096
4096
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
4097
4097
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -4200,8 +4200,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
4200
4200
|
> = z.object({
|
|
4201
4201
|
id: z.string(),
|
|
4202
4202
|
description: z.string(),
|
|
4203
|
-
created: z.string().default("2025-11-
|
|
4204
|
-
updated: z.string().default("2025-11-
|
|
4203
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4204
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4205
4205
|
guardrailConfig: z.union([
|
|
4206
4206
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
4207
4207
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -4467,8 +4467,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
4467
4467
|
> = z.object({
|
|
4468
4468
|
_id: z.string(),
|
|
4469
4469
|
description: z.string(),
|
|
4470
|
-
created: z.string().default("2025-11-
|
|
4471
|
-
updated: z.string().default("2025-11-
|
|
4470
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4471
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4472
4472
|
guardrail_config: z.union([
|
|
4473
4473
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
4474
4474
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -4505,8 +4505,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
4505
4505
|
> = z.object({
|
|
4506
4506
|
id: z.string(),
|
|
4507
4507
|
description: z.string(),
|
|
4508
|
-
created: z.string().default("2025-11-
|
|
4509
|
-
updated: z.string().default("2025-11-
|
|
4508
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4509
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4510
4510
|
guardrailConfig: z.union([
|
|
4511
4511
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
4512
4512
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -4729,8 +4729,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
4729
4729
|
> = z.object({
|
|
4730
4730
|
_id: z.string(),
|
|
4731
4731
|
description: z.string(),
|
|
4732
|
-
created: z.string().default("2025-11-
|
|
4733
|
-
updated: z.string().default("2025-11-
|
|
4732
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4733
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4734
4734
|
guardrail_config: z.union([
|
|
4735
4735
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
4736
4736
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -4773,8 +4773,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
4773
4773
|
> = z.object({
|
|
4774
4774
|
id: z.string(),
|
|
4775
4775
|
description: z.string(),
|
|
4776
|
-
created: z.string().default("2025-11-
|
|
4777
|
-
updated: z.string().default("2025-11-
|
|
4776
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4777
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
4778
4778
|
guardrailConfig: z.union([
|
|
4779
4779
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
4780
4780
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -5020,8 +5020,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
5020
5020
|
> = z.object({
|
|
5021
5021
|
_id: z.string(),
|
|
5022
5022
|
description: z.string(),
|
|
5023
|
-
created: z.string().default("2025-11-
|
|
5024
|
-
updated: z.string().default("2025-11-
|
|
5023
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
5024
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
5025
5025
|
guardrail_config: z.union([
|
|
5026
5026
|
z.lazy(() =>
|
|
5027
5027
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -5062,8 +5062,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
5062
5062
|
> = z.object({
|
|
5063
5063
|
id: z.string(),
|
|
5064
5064
|
description: z.string(),
|
|
5065
|
-
created: z.string().default("2025-11-
|
|
5066
|
-
updated: z.string().default("2025-11-
|
|
5065
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
5066
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
5067
5067
|
guardrailConfig: z.union([
|
|
5068
5068
|
z.lazy(() =>
|
|
5069
5069
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -5329,8 +5329,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
5329
5329
|
z.object({
|
|
5330
5330
|
_id: z.string(),
|
|
5331
5331
|
description: z.string(),
|
|
5332
|
-
created: z.string().default("2025-11-
|
|
5333
|
-
updated: z.string().default("2025-11-
|
|
5332
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
5333
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
5334
5334
|
guardrail_config: z.union([
|
|
5335
5335
|
z.lazy(() =>
|
|
5336
5336
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5374,8 +5374,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
5374
5374
|
> = z.object({
|
|
5375
5375
|
id: z.string(),
|
|
5376
5376
|
description: z.string(),
|
|
5377
|
-
created: z.string().default("2025-11-
|
|
5378
|
-
updated: z.string().default("2025-11-
|
|
5377
|
+
created: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
5378
|
+
updated: z.string().default("2025-11-13T11:08:19.837Z"),
|
|
5379
5379
|
guardrailConfig: z.union([
|
|
5380
5380
|
z.lazy(() =>
|
|
5381
5381
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -381,7 +381,7 @@ export const ListBudgetsData$inboundSchema: z.ZodType<
|
|
|
381
381
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
382
382
|
.optional(),
|
|
383
383
|
updated: z.string().datetime({ offset: true }).default(
|
|
384
|
-
"2025-11-
|
|
384
|
+
"2025-11-13T11:08:17.585Z",
|
|
385
385
|
).transform(v => new Date(v)),
|
|
386
386
|
}).transform((v) => {
|
|
387
387
|
return remap$(v, {
|
|
@@ -415,7 +415,7 @@ export const ListBudgetsData$outboundSchema: z.ZodType<
|
|
|
415
415
|
isActive: z.boolean(),
|
|
416
416
|
consumption: z.lazy(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
417
417
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
418
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
418
|
+
updated: z.date().default(() => new Date("2025-11-13T11:08:17.585Z"))
|
|
419
419
|
.transform(v => v.toISOString()),
|
|
420
420
|
}).transform((v) => {
|
|
421
421
|
return remap$(v, {
|