@orq-ai/node 4.0.0-rc.21 → 4.0.0-rc.22
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
|
@@ -2754,8 +2754,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2754
2754
|
> = z.object({
|
|
2755
2755
|
_id: z.string(),
|
|
2756
2756
|
description: z.string(),
|
|
2757
|
-
created: z.string().default("2025-11-
|
|
2758
|
-
updated: z.string().default("2025-11-
|
|
2757
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
2758
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
2759
2759
|
guardrail_config: z.union([
|
|
2760
2760
|
z.lazy(() =>
|
|
2761
2761
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2797,8 +2797,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2797
2797
|
> = z.object({
|
|
2798
2798
|
id: z.string(),
|
|
2799
2799
|
description: z.string(),
|
|
2800
|
-
created: z.string().default("2025-11-
|
|
2801
|
-
updated: z.string().default("2025-11-
|
|
2800
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
2801
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
2802
2802
|
guardrailConfig: z.union([
|
|
2803
2803
|
z.lazy(() =>
|
|
2804
2804
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3079,8 +3079,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3079
3079
|
.object({
|
|
3080
3080
|
_id: z.string(),
|
|
3081
3081
|
description: z.string(),
|
|
3082
|
-
created: z.string().default("2025-11-
|
|
3083
|
-
updated: z.string().default("2025-11-
|
|
3082
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
3083
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
3084
3084
|
guardrail_config: z.union([
|
|
3085
3085
|
z.lazy(() =>
|
|
3086
3086
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3125,8 +3125,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3125
3125
|
> = z.object({
|
|
3126
3126
|
id: z.string(),
|
|
3127
3127
|
description: z.string(),
|
|
3128
|
-
created: z.string().default("2025-11-
|
|
3129
|
-
updated: z.string().default("2025-11-
|
|
3128
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
3129
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
3130
3130
|
guardrailConfig: z.union([
|
|
3131
3131
|
z.lazy(() =>
|
|
3132
3132
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5414,8 +5414,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5414
5414
|
> = z.object({
|
|
5415
5415
|
_id: z.string(),
|
|
5416
5416
|
description: z.string(),
|
|
5417
|
-
created: z.string().default("2025-11-
|
|
5418
|
-
updated: z.string().default("2025-11-
|
|
5417
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
5418
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
5419
5419
|
guardrail_config: z.union([
|
|
5420
5420
|
z.lazy(() =>
|
|
5421
5421
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5528,8 +5528,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5528
5528
|
> = z.object({
|
|
5529
5529
|
id: z.string(),
|
|
5530
5530
|
description: z.string(),
|
|
5531
|
-
created: z.string().default("2025-11-
|
|
5532
|
-
updated: z.string().default("2025-11-
|
|
5531
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
5532
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
5533
5533
|
guardrailConfig: z.union([
|
|
5534
5534
|
z.lazy(() =>
|
|
5535
5535
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5846,8 +5846,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5846
5846
|
> = z.object({
|
|
5847
5847
|
_id: z.string(),
|
|
5848
5848
|
description: z.string(),
|
|
5849
|
-
created: z.string().default("2025-11-
|
|
5850
|
-
updated: z.string().default("2025-11-
|
|
5849
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
5850
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
5851
5851
|
guardrail_config: z.union([
|
|
5852
5852
|
z.lazy(() =>
|
|
5853
5853
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5888,8 +5888,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5888
5888
|
> = z.object({
|
|
5889
5889
|
id: z.string(),
|
|
5890
5890
|
description: z.string(),
|
|
5891
|
-
created: z.string().default("2025-11-
|
|
5892
|
-
updated: z.string().default("2025-11-
|
|
5891
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
5892
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
5893
5893
|
guardrailConfig: z.union([
|
|
5894
5894
|
z.lazy(() =>
|
|
5895
5895
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6169,8 +6169,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6169
6169
|
> = z.object({
|
|
6170
6170
|
_id: z.string(),
|
|
6171
6171
|
description: z.string(),
|
|
6172
|
-
created: z.string().default("2025-11-
|
|
6173
|
-
updated: z.string().default("2025-11-
|
|
6172
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6173
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6174
6174
|
guardrail_config: z.union([
|
|
6175
6175
|
z.lazy(() =>
|
|
6176
6176
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6217,8 +6217,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6217
6217
|
> = z.object({
|
|
6218
6218
|
id: z.string(),
|
|
6219
6219
|
description: z.string(),
|
|
6220
|
-
created: z.string().default("2025-11-
|
|
6221
|
-
updated: z.string().default("2025-11-
|
|
6220
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6221
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6222
6222
|
guardrailConfig: z.union([
|
|
6223
6223
|
z.lazy(() =>
|
|
6224
6224
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6474,8 +6474,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6474
6474
|
> = z.object({
|
|
6475
6475
|
_id: z.string(),
|
|
6476
6476
|
description: z.string(),
|
|
6477
|
-
created: z.string().default("2025-11-
|
|
6478
|
-
updated: z.string().default("2025-11-
|
|
6477
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6478
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6479
6479
|
guardrail_config: z.union([
|
|
6480
6480
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6481
6481
|
z.lazy(() =>
|
|
@@ -6514,8 +6514,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6514
6514
|
> = z.object({
|
|
6515
6515
|
id: z.string(),
|
|
6516
6516
|
description: z.string(),
|
|
6517
|
-
created: z.string().default("2025-11-
|
|
6518
|
-
updated: z.string().default("2025-11-
|
|
6517
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6518
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6519
6519
|
guardrailConfig: z.union([
|
|
6520
6520
|
z.lazy(() =>
|
|
6521
6521
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6753,8 +6753,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6753
6753
|
> = z.object({
|
|
6754
6754
|
_id: z.string(),
|
|
6755
6755
|
description: z.string(),
|
|
6756
|
-
created: z.string().default("2025-11-
|
|
6757
|
-
updated: z.string().default("2025-11-
|
|
6756
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6757
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6758
6758
|
guardrail_config: z.union([
|
|
6759
6759
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6760
6760
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6793,8 +6793,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6793
6793
|
> = z.object({
|
|
6794
6794
|
id: z.string(),
|
|
6795
6795
|
description: z.string(),
|
|
6796
|
-
created: z.string().default("2025-11-
|
|
6797
|
-
updated: z.string().default("2025-11-
|
|
6796
|
+
created: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6797
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
6798
6798
|
guardrailConfig: z.union([
|
|
6799
6799
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6800
6800
|
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("01K9RWC0Q5VWEQ85666B3HF7B6"),
|
|
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("01K9RWC0Q5VWEQ85666B3HF7B6"),
|
|
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("01K9RWC0Q05JNRMGG1MVR4B71D"),
|
|
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("01K9RWC0Q05JNRMGG1MVR4B71D"),
|
|
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("01K9RWC0P5YEPME43CMFQ0NWDV"),
|
|
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("01K9RWC0P5YEPME43CMFQ0NWDV"),
|
|
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("01K9RWC0NY5X0ZVKVPEA93NPVZ"),
|
|
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("01K9RWC0NY5X0ZVKVPEA93NPVZ"),
|
|
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("01K9RWC0NSXKZDYHS9J1Z7Q7ZB"),
|
|
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("01K9RWC0NSXKZDYHS9J1Z7Q7ZB"),
|
|
3232
3232
|
path: z.string(),
|
|
3233
3233
|
key: z.string(),
|
|
3234
3234
|
displayName: z.string().optional(),
|
|
@@ -721,7 +721,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
721
721
|
z.ZodTypeDef,
|
|
722
722
|
unknown
|
|
723
723
|
> = z.object({
|
|
724
|
-
_id: z.string().default("
|
|
724
|
+
_id: z.string().default("01K9RWC0S29ZXRYXMJ4EJ596Y9"),
|
|
725
725
|
path: z.string(),
|
|
726
726
|
key: z.string(),
|
|
727
727
|
display_name: z.string().optional(),
|
|
@@ -776,7 +776,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
776
776
|
z.ZodTypeDef,
|
|
777
777
|
DuplicateToolResponseBody5
|
|
778
778
|
> = z.object({
|
|
779
|
-
id: z.string().default("
|
|
779
|
+
id: z.string().default("01K9RWC0S29ZXRYXMJ4EJ596Y9"),
|
|
780
780
|
path: z.string(),
|
|
781
781
|
key: z.string(),
|
|
782
782
|
displayName: z.string().optional(),
|
|
@@ -1047,7 +1047,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1047
1047
|
z.ZodTypeDef,
|
|
1048
1048
|
unknown
|
|
1049
1049
|
> = z.object({
|
|
1050
|
-
_id: z.string().default("
|
|
1050
|
+
_id: z.string().default("01K9RWC0RX4X5ED68XCMSJQ5TJ"),
|
|
1051
1051
|
path: z.string(),
|
|
1052
1052
|
key: z.string(),
|
|
1053
1053
|
display_name: z.string().optional(),
|
|
@@ -1100,7 +1100,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1100
1100
|
z.ZodTypeDef,
|
|
1101
1101
|
DuplicateToolResponseBody4
|
|
1102
1102
|
> = z.object({
|
|
1103
|
-
id: z.string().default("
|
|
1103
|
+
id: z.string().default("01K9RWC0RX4X5ED68XCMSJQ5TJ"),
|
|
1104
1104
|
path: z.string(),
|
|
1105
1105
|
key: z.string(),
|
|
1106
1106
|
displayName: z.string().optional(),
|
|
@@ -1446,7 +1446,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1446
1446
|
z.ZodTypeDef,
|
|
1447
1447
|
unknown
|
|
1448
1448
|
> = z.object({
|
|
1449
|
-
_id: z.string().default("
|
|
1449
|
+
_id: z.string().default("01K9RWC0RP1KD0X3JQBYGFJCDQ"),
|
|
1450
1450
|
path: z.string(),
|
|
1451
1451
|
key: z.string(),
|
|
1452
1452
|
display_name: z.string().optional(),
|
|
@@ -1499,7 +1499,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1499
1499
|
z.ZodTypeDef,
|
|
1500
1500
|
DuplicateToolResponseBody3
|
|
1501
1501
|
> = z.object({
|
|
1502
|
-
id: z.string().default("
|
|
1502
|
+
id: z.string().default("01K9RWC0RP1KD0X3JQBYGFJCDQ"),
|
|
1503
1503
|
path: z.string(),
|
|
1504
1504
|
key: z.string(),
|
|
1505
1505
|
displayName: z.string().optional(),
|
|
@@ -1621,7 +1621,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1621
1621
|
z.ZodTypeDef,
|
|
1622
1622
|
unknown
|
|
1623
1623
|
> = z.object({
|
|
1624
|
-
_id: z.string().default("
|
|
1624
|
+
_id: z.string().default("01K9RWC0RGS6YJPFYW0VAHQ4EJ"),
|
|
1625
1625
|
path: z.string(),
|
|
1626
1626
|
key: z.string(),
|
|
1627
1627
|
display_name: z.string().optional(),
|
|
@@ -1673,7 +1673,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1673
1673
|
z.ZodTypeDef,
|
|
1674
1674
|
DuplicateToolResponseBody2
|
|
1675
1675
|
> = z.object({
|
|
1676
|
-
id: z.string().default("
|
|
1676
|
+
id: z.string().default("01K9RWC0RGS6YJPFYW0VAHQ4EJ"),
|
|
1677
1677
|
path: z.string(),
|
|
1678
1678
|
key: z.string(),
|
|
1679
1679
|
displayName: z.string().optional(),
|
|
@@ -1792,7 +1792,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
1792
1792
|
z.ZodTypeDef,
|
|
1793
1793
|
unknown
|
|
1794
1794
|
> = z.object({
|
|
1795
|
-
_id: z.string().default("
|
|
1795
|
+
_id: z.string().default("01K9RWC0RE9M75BB4XHSDH8H9Z"),
|
|
1796
1796
|
path: z.string(),
|
|
1797
1797
|
key: z.string(),
|
|
1798
1798
|
display_name: z.string().optional(),
|
|
@@ -1843,7 +1843,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
1843
1843
|
z.ZodTypeDef,
|
|
1844
1844
|
DuplicateToolResponseBody1
|
|
1845
1845
|
> = z.object({
|
|
1846
|
-
id: z.string().default("
|
|
1846
|
+
id: z.string().default("01K9RWC0RE9M75BB4XHSDH8H9Z"),
|
|
1847
1847
|
path: z.string(),
|
|
1848
1848
|
key: z.string(),
|
|
1849
1849
|
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-11T07:16:23.304Z",
|
|
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-11T07:16:23.304Z"))
|
|
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-11T07:16:23.304Z",
|
|
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-11T07:16:23.304Z"))
|
|
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-11T07:16:23.304Z",
|
|
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-11T07:16:23.304Z"))
|
|
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("01K9RWC0M97X577H8N5HXKJSK8"),
|
|
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("01K9RWC0M97X577H8N5HXKJSK8"),
|
|
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("01K9RWC0M2Q0QBMJYN8GY0YD4J"),
|
|
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("01K9RWC0M2Q0QBMJYN8GY0YD4J"),
|
|
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("01K9RWC0KVCG0CYQFWV3VXMY7S"),
|
|
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("01K9RWC0KVCG0CYQFWV3VXMY7S"),
|
|
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("01K9RWC0KC5ZQT8GZ945PX79C1"),
|
|
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("01K9RWC0KC5ZQT8GZ945PX79C1"),
|
|
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("01K9RWC0K4KX84ARNQYKXEMTP7"),
|
|
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("01K9RWC0K4KX84ARNQYKXEMTP7"),
|
|
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-11T07:16:19.899Z",
|
|
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-11T07:16:19.899Z"))
|
|
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-11T07:16:22.268Z"),
|
|
1421
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
1463
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
1730
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
1771
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
4094
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
4204
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
4471
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
4509
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
4733
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
4777
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
5024
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
5066
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
5333
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
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-11T07:16:22.268Z"),
|
|
5378
|
+
updated: z.string().default("2025-11-11T07:16:22.268Z"),
|
|
5379
5379
|
guardrailConfig: z.union([
|
|
5380
5380
|
z.lazy(() =>
|
|
5381
5381
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|