@orq-ai/node 3.14.30 → 3.14.31
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 +210 -210
- 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 +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +10 -10
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/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/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +10 -10
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +10 -10
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
- package/packages/orq-rc/src/types/enums.ts +55 -6
- package/packages/orq-rc/src/types/index.ts +0 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +10 -10
- package/src/models/operations/duplicatetool.ts +10 -10
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/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
- package/src/types/enums.ts +55 -6
- package/src/types/index.ts +0 -1
- package/types/enums.d.ts +10 -6
- package/types/enums.d.ts.map +1 -1
- package/types/enums.js +76 -2
- package/types/enums.js.map +1 -1
- package/types/index.d.ts +0 -1
- package/types/index.d.ts.map +1 -1
- package/types/index.js +1 -3
- package/types/index.js.map +1 -1
|
@@ -2988,8 +2988,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2988
2988
|
> = z.object({
|
|
2989
2989
|
_id: z.string(),
|
|
2990
2990
|
description: z.string(),
|
|
2991
|
-
created: z.string().default("2025-11-
|
|
2992
|
-
updated: z.string().default("2025-11-
|
|
2991
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
2992
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
2993
2993
|
guardrail_config: z.union([
|
|
2994
2994
|
z.lazy(() =>
|
|
2995
2995
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3031,8 +3031,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3031
3031
|
> = z.object({
|
|
3032
3032
|
id: z.string(),
|
|
3033
3033
|
description: z.string(),
|
|
3034
|
-
created: z.string().default("2025-11-
|
|
3035
|
-
updated: z.string().default("2025-11-
|
|
3034
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
3035
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
3036
3036
|
guardrailConfig: z.union([
|
|
3037
3037
|
z.lazy(() =>
|
|
3038
3038
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3322,8 +3322,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3322
3322
|
> = z.object({
|
|
3323
3323
|
_id: z.string(),
|
|
3324
3324
|
description: z.string(),
|
|
3325
|
-
created: z.string().default("2025-11-
|
|
3326
|
-
updated: z.string().default("2025-11-
|
|
3325
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
3326
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
3327
3327
|
guardrail_config: z.union([
|
|
3328
3328
|
z.lazy(() =>
|
|
3329
3329
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3368,8 +3368,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3368
3368
|
> = z.object({
|
|
3369
3369
|
id: z.string(),
|
|
3370
3370
|
description: z.string(),
|
|
3371
|
-
created: z.string().default("2025-11-
|
|
3372
|
-
updated: z.string().default("2025-11-
|
|
3371
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
3372
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
3373
3373
|
guardrailConfig: z.union([
|
|
3374
3374
|
z.lazy(() =>
|
|
3375
3375
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5707,8 +5707,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5707
5707
|
> = z.object({
|
|
5708
5708
|
_id: z.string(),
|
|
5709
5709
|
description: z.string(),
|
|
5710
|
-
created: z.string().default("2025-11-
|
|
5711
|
-
updated: z.string().default("2025-11-
|
|
5710
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
5711
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
5712
5712
|
guardrail_config: z.union([
|
|
5713
5713
|
z.lazy(() =>
|
|
5714
5714
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5821,8 +5821,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5821
5821
|
> = z.object({
|
|
5822
5822
|
id: z.string(),
|
|
5823
5823
|
description: z.string(),
|
|
5824
|
-
created: z.string().default("2025-11-
|
|
5825
|
-
updated: z.string().default("2025-11-
|
|
5824
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
5825
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
5826
5826
|
guardrailConfig: z.union([
|
|
5827
5827
|
z.lazy(() =>
|
|
5828
5828
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -6138,8 +6138,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
6138
6138
|
> = z.object({
|
|
6139
6139
|
_id: z.string(),
|
|
6140
6140
|
description: z.string(),
|
|
6141
|
-
created: z.string().default("2025-11-
|
|
6142
|
-
updated: z.string().default("2025-11-
|
|
6141
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6142
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6143
6143
|
guardrail_config: z.union([
|
|
6144
6144
|
z.lazy(() =>
|
|
6145
6145
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -6180,8 +6180,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
6180
6180
|
> = z.object({
|
|
6181
6181
|
id: z.string(),
|
|
6182
6182
|
description: z.string(),
|
|
6183
|
-
created: z.string().default("2025-11-
|
|
6184
|
-
updated: z.string().default("2025-11-
|
|
6183
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6184
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6185
6185
|
guardrailConfig: z.union([
|
|
6186
6186
|
z.lazy(() =>
|
|
6187
6187
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6466,8 +6466,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6466
6466
|
> = z.object({
|
|
6467
6467
|
_id: z.string(),
|
|
6468
6468
|
description: z.string(),
|
|
6469
|
-
created: z.string().default("2025-11-
|
|
6470
|
-
updated: z.string().default("2025-11-
|
|
6469
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6470
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6471
6471
|
guardrail_config: z.union([
|
|
6472
6472
|
z.lazy(() =>
|
|
6473
6473
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6514,8 +6514,8 @@ export const UpdateEvalResponseBodyHTTP$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-12T05:37:50.547Z"),
|
|
6518
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6519
6519
|
guardrailConfig: z.union([
|
|
6520
6520
|
z.lazy(() =>
|
|
6521
6521
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6784,8 +6784,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6784
6784
|
> = z.object({
|
|
6785
6785
|
_id: z.string(),
|
|
6786
6786
|
description: z.string(),
|
|
6787
|
-
created: z.string().default("2025-11-
|
|
6788
|
-
updated: z.string().default("2025-11-
|
|
6787
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6788
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6789
6789
|
guardrail_config: z.union([
|
|
6790
6790
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6791
6791
|
z.lazy(() =>
|
|
@@ -6824,8 +6824,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6824
6824
|
> = z.object({
|
|
6825
6825
|
id: z.string(),
|
|
6826
6826
|
description: z.string(),
|
|
6827
|
-
created: z.string().default("2025-11-
|
|
6828
|
-
updated: z.string().default("2025-11-
|
|
6827
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6828
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
6829
6829
|
guardrailConfig: z.union([
|
|
6830
6830
|
z.lazy(() =>
|
|
6831
6831
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -7064,8 +7064,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
7064
7064
|
> = z.object({
|
|
7065
7065
|
_id: z.string(),
|
|
7066
7066
|
description: z.string(),
|
|
7067
|
-
created: z.string().default("2025-11-
|
|
7068
|
-
updated: z.string().default("2025-11-
|
|
7067
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
7068
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
7069
7069
|
guardrail_config: z.union([
|
|
7070
7070
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
7071
7071
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -7104,8 +7104,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
7104
7104
|
> = z.object({
|
|
7105
7105
|
id: z.string(),
|
|
7106
7106
|
description: z.string(),
|
|
7107
|
-
created: z.string().default("2025-11-
|
|
7108
|
-
updated: z.string().default("2025-11-
|
|
7107
|
+
created: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
7108
|
+
updated: z.string().default("2025-11-12T05:37:50.547Z"),
|
|
7109
7109
|
guardrailConfig: z.union([
|
|
7110
7110
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7111
7111
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2315,7 +2315,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
2315
2315
|
z.ZodTypeDef,
|
|
2316
2316
|
unknown
|
|
2317
2317
|
> = z.object({
|
|
2318
|
-
_id: z.string().default("
|
|
2318
|
+
_id: z.string().default("01K9V9487E6KRMC3FAXNQ3RRK4"),
|
|
2319
2319
|
path: z.string(),
|
|
2320
2320
|
key: z.string(),
|
|
2321
2321
|
display_name: z.string().optional(),
|
|
@@ -2369,7 +2369,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
2369
2369
|
z.ZodTypeDef,
|
|
2370
2370
|
UpdateToolResponseBody5
|
|
2371
2371
|
> = z.object({
|
|
2372
|
-
id: z.string().default("
|
|
2372
|
+
id: z.string().default("01K9V9487E6KRMC3FAXNQ3RRK4"),
|
|
2373
2373
|
path: z.string(),
|
|
2374
2374
|
key: z.string(),
|
|
2375
2375
|
displayName: z.string().optional(),
|
|
@@ -2627,7 +2627,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
2627
2627
|
z.ZodTypeDef,
|
|
2628
2628
|
unknown
|
|
2629
2629
|
> = z.object({
|
|
2630
|
-
_id: z.string().default("
|
|
2630
|
+
_id: z.string().default("01K9V9487DERKPEEJBPQKE8DJZ"),
|
|
2631
2631
|
path: z.string(),
|
|
2632
2632
|
key: z.string(),
|
|
2633
2633
|
display_name: z.string().optional(),
|
|
@@ -2680,7 +2680,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
2680
2680
|
z.ZodTypeDef,
|
|
2681
2681
|
UpdateToolResponseBody4
|
|
2682
2682
|
> = z.object({
|
|
2683
|
-
id: z.string().default("
|
|
2683
|
+
id: z.string().default("01K9V9487DERKPEEJBPQKE8DJZ"),
|
|
2684
2684
|
path: z.string(),
|
|
2685
2685
|
key: z.string(),
|
|
2686
2686
|
displayName: z.string().optional(),
|
|
@@ -3020,7 +3020,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
3020
3020
|
z.ZodTypeDef,
|
|
3021
3021
|
unknown
|
|
3022
3022
|
> = z.object({
|
|
3023
|
-
_id: z.string().default("
|
|
3023
|
+
_id: z.string().default("01K9V9487BP40S2W094SD1MAY0"),
|
|
3024
3024
|
path: z.string(),
|
|
3025
3025
|
key: z.string(),
|
|
3026
3026
|
display_name: z.string().optional(),
|
|
@@ -3073,7 +3073,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
3073
3073
|
z.ZodTypeDef,
|
|
3074
3074
|
UpdateToolResponseBody3
|
|
3075
3075
|
> = z.object({
|
|
3076
|
-
id: z.string().default("
|
|
3076
|
+
id: z.string().default("01K9V9487BP40S2W094SD1MAY0"),
|
|
3077
3077
|
path: z.string(),
|
|
3078
3078
|
key: z.string(),
|
|
3079
3079
|
displayName: z.string().optional(),
|
|
@@ -3193,7 +3193,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
3193
3193
|
z.ZodTypeDef,
|
|
3194
3194
|
unknown
|
|
3195
3195
|
> = z.object({
|
|
3196
|
-
_id: z.string().default("
|
|
3196
|
+
_id: z.string().default("01K9V9487AYVC8ZZGQMB55FH49"),
|
|
3197
3197
|
path: z.string(),
|
|
3198
3198
|
key: z.string(),
|
|
3199
3199
|
display_name: z.string().optional(),
|
|
@@ -3245,7 +3245,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
3245
3245
|
z.ZodTypeDef,
|
|
3246
3246
|
UpdateToolResponseBody2
|
|
3247
3247
|
> = z.object({
|
|
3248
|
-
id: z.string().default("
|
|
3248
|
+
id: z.string().default("01K9V9487AYVC8ZZGQMB55FH49"),
|
|
3249
3249
|
path: z.string(),
|
|
3250
3250
|
key: z.string(),
|
|
3251
3251
|
displayName: z.string().optional(),
|
|
@@ -3364,7 +3364,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
3364
3364
|
z.ZodTypeDef,
|
|
3365
3365
|
unknown
|
|
3366
3366
|
> = z.object({
|
|
3367
|
-
_id: z.string().default("
|
|
3367
|
+
_id: z.string().default("01K9V94879CCJ3CA4MANK9PK4N"),
|
|
3368
3368
|
path: z.string(),
|
|
3369
3369
|
key: z.string(),
|
|
3370
3370
|
display_name: z.string().optional(),
|
|
@@ -3415,7 +3415,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
3415
3415
|
z.ZodTypeDef,
|
|
3416
3416
|
UpdateToolResponseBody1
|
|
3417
3417
|
> = z.object({
|
|
3418
|
-
id: z.string().default("
|
|
3418
|
+
id: z.string().default("01K9V94879CCJ3CA4MANK9PK4N"),
|
|
3419
3419
|
path: z.string(),
|
|
3420
3420
|
key: z.string(),
|
|
3421
3421
|
displayName: z.string().optional(),
|
|
@@ -2,15 +2,64 @@
|
|
|
2
2
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
|
|
5
7
|
declare const __brand: unique symbol;
|
|
6
8
|
export type Unrecognized<T> = T & { [__brand]: "unrecognized" };
|
|
9
|
+
export type ClosedEnum<T extends Readonly<Record<string, string | number>>> =
|
|
10
|
+
T[keyof T];
|
|
11
|
+
export type OpenEnum<T extends Readonly<Record<string, string | number>>> =
|
|
12
|
+
| T[keyof T]
|
|
13
|
+
| Unrecognized<T[keyof T] extends number ? number : string>;
|
|
7
14
|
|
|
8
|
-
|
|
15
|
+
function unrecognized<T>(value: T): Unrecognized<T> {
|
|
16
|
+
unrecognizedCount++;
|
|
9
17
|
return value as Unrecognized<T>;
|
|
10
18
|
}
|
|
11
19
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
|
|
20
|
+
let unrecognizedCount = 0;
|
|
21
|
+
let refCount = 0;
|
|
22
|
+
export function unrecognizedCounter() {
|
|
23
|
+
refCount++;
|
|
24
|
+
const start = unrecognizedCount;
|
|
25
|
+
return {
|
|
26
|
+
count: () => {
|
|
27
|
+
const count = unrecognizedCount - start;
|
|
28
|
+
if (--refCount === 0) unrecognizedCount = 0;
|
|
29
|
+
return count;
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export function inboundSchema<T extends Record<string, string>>(
|
|
35
|
+
enumObj: T,
|
|
36
|
+
): z.ZodType<OpenEnum<T>, z.ZodTypeDef, unknown> {
|
|
37
|
+
const options = Object.values(enumObj);
|
|
38
|
+
return z.union([
|
|
39
|
+
...options.map(x => z.literal(x)),
|
|
40
|
+
z.string().transform(x => unrecognized(x)),
|
|
41
|
+
] as any);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export function inboundSchemaInt<T extends Record<string, number | string>>(
|
|
45
|
+
enumObj: T,
|
|
46
|
+
): z.ZodType<OpenEnum<T>, z.ZodTypeDef, unknown> {
|
|
47
|
+
// For numeric enums, Object.values returns both numbers and string keys
|
|
48
|
+
const options = Object.values(enumObj).filter(v => typeof v === "number");
|
|
49
|
+
return z.union([
|
|
50
|
+
...options.map(x => z.literal(x)),
|
|
51
|
+
z.number().int().transform(x => unrecognized(x)),
|
|
52
|
+
] as any);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export function outboundSchema<T extends Record<string, string>>(
|
|
56
|
+
_: T,
|
|
57
|
+
): z.ZodType<string, z.ZodTypeDef, OpenEnum<T>> {
|
|
58
|
+
return z.string() as any;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export function outboundSchemaInt<T extends Record<string, number | string>>(
|
|
62
|
+
_: T,
|
|
63
|
+
): z.ZodType<number, z.ZodTypeDef, OpenEnum<T>> {
|
|
64
|
+
return z.number().int() as any;
|
|
65
|
+
}
|
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
export { blobLikeSchema, isBlobLike } from "./blobs.js";
|
|
6
|
-
export { catchUnrecognizedEnum } from "./enums.js";
|
|
7
6
|
export type { ClosedEnum, OpenEnum, Unrecognized } from "./enums.js";
|
|
8
7
|
export type { Result } from "./fp.js";
|
|
9
8
|
export type { PageIterator, Paginator } from "./operations.js";
|
package/src/lib/config.ts
CHANGED
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "3.14.
|
|
72
|
-
genVersion: "2.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.14.
|
|
71
|
+
sdkVersion: "3.14.31",
|
|
72
|
+
genVersion: "2.750.0",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.14.31 2.750.0 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -516,7 +516,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
516
516
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
517
517
|
.optional(),
|
|
518
518
|
updated: z.string().datetime({ offset: true }).default(
|
|
519
|
-
"2025-11-
|
|
519
|
+
"2025-11-12T13:11:25.244Z",
|
|
520
520
|
).transform(v => new Date(v)),
|
|
521
521
|
}).transform((v) => {
|
|
522
522
|
return remap$(v, {
|
|
@@ -553,7 +553,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
553
553
|
isActive: z.boolean(),
|
|
554
554
|
consumption: z.lazy(() => Consumption$outboundSchema).optional(),
|
|
555
555
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
556
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
556
|
+
updated: z.date().default(() => new Date("2025-11-12T13:11:25.244Z"))
|
|
557
557
|
.transform(v => v.toISOString()),
|
|
558
558
|
}).transform((v) => {
|
|
559
559
|
return remap$(v, {
|
|
@@ -167,7 +167,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2025-11-
|
|
170
|
+
"2025-11-12T13:11:24.878Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -207,7 +207,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
207
207
|
tags: z.array(z.string()).optional(),
|
|
208
208
|
metadata: z.record(z.any()).optional(),
|
|
209
209
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
210
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
210
|
+
updated: z.date().default(() => new Date("2025-11-12T13:11:24.878Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -187,7 +187,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
187
187
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
188
188
|
.optional(),
|
|
189
189
|
updated: z.string().datetime({ offset: true }).default(
|
|
190
|
-
"2025-11-
|
|
190
|
+
"2025-11-12T13:11:24.878Z",
|
|
191
191
|
).transform(v => new Date(v)),
|
|
192
192
|
}).transform((v) => {
|
|
193
193
|
return remap$(v, {
|
|
@@ -226,7 +226,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
226
226
|
createdById: z.string().optional(),
|
|
227
227
|
updatedById: z.string().optional(),
|
|
228
228
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
229
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
229
|
+
updated: z.date().default(() => new Date("2025-11-12T13:11:24.878Z"))
|
|
230
230
|
.transform(v => v.toISOString()),
|
|
231
231
|
}).transform((v) => {
|
|
232
232
|
return remap$(v, {
|
|
@@ -4929,7 +4929,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
4929
4929
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
4930
4930
|
reviewed_by_id: z.string(),
|
|
4931
4931
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4932
|
-
"2025-11-
|
|
4932
|
+
"2025-11-12T13:11:36.415Z",
|
|
4933
4933
|
).transform(v => new Date(v)),
|
|
4934
4934
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
4935
4935
|
values: z.array(z.string()),
|
|
@@ -4964,7 +4964,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
4964
4964
|
humanReviewId: z.string(),
|
|
4965
4965
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
4966
4966
|
reviewedById: z.string(),
|
|
4967
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4967
|
+
reviewedAt: z.date().default(() => new Date("2025-11-12T13:11:36.415Z"))
|
|
4968
4968
|
.transform(v => v.toISOString()),
|
|
4969
4969
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
4970
4970
|
values: z.array(z.string()),
|
|
@@ -5029,7 +5029,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
5029
5029
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
5030
5030
|
reviewed_by_id: z.string(),
|
|
5031
5031
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5032
|
-
"2025-11-
|
|
5032
|
+
"2025-11-12T13:11:36.414Z",
|
|
5033
5033
|
).transform(v => new Date(v)),
|
|
5034
5034
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
5035
5035
|
value: z.number(),
|
|
@@ -5064,7 +5064,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
5064
5064
|
humanReviewId: z.string(),
|
|
5065
5065
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
5066
5066
|
reviewedById: z.string(),
|
|
5067
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5067
|
+
reviewedAt: z.date().default(() => new Date("2025-11-12T13:11:36.414Z"))
|
|
5068
5068
|
.transform(v => v.toISOString()),
|
|
5069
5069
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
5070
5070
|
value: z.number(),
|
|
@@ -5127,7 +5127,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
5127
5127
|
source: Source$inboundSchema.default("orq"),
|
|
5128
5128
|
reviewed_by_id: z.string(),
|
|
5129
5129
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5130
|
-
"2025-11-
|
|
5130
|
+
"2025-11-12T13:11:36.414Z",
|
|
5131
5131
|
).transform(v => new Date(v)),
|
|
5132
5132
|
type: EvaluationsType$inboundSchema,
|
|
5133
5133
|
value: z.string(),
|
|
@@ -5162,7 +5162,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
5162
5162
|
humanReviewId: z.string(),
|
|
5163
5163
|
source: Source$outboundSchema.default("orq"),
|
|
5164
5164
|
reviewedById: z.string(),
|
|
5165
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5165
|
+
reviewedAt: z.date().default(() => new Date("2025-11-12T13:11:36.414Z"))
|
|
5166
5166
|
.transform(v => v.toISOString()),
|
|
5167
5167
|
type: EvaluationsType$outboundSchema,
|
|
5168
5168
|
value: z.string(),
|
|
@@ -5267,7 +5267,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5267
5267
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5268
5268
|
.optional(),
|
|
5269
5269
|
updated: z.string().datetime({ offset: true }).default(
|
|
5270
|
-
"2025-11-
|
|
5270
|
+
"2025-11-12T13:11:24.878Z",
|
|
5271
5271
|
).transform(v => new Date(v)),
|
|
5272
5272
|
}).transform((v) => {
|
|
5273
5273
|
return remap$(v, {
|
|
@@ -5345,7 +5345,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5345
5345
|
createdById: z.string().optional(),
|
|
5346
5346
|
updatedById: z.string().optional(),
|
|
5347
5347
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5348
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5348
|
+
updated: z.date().default(() => new Date("2025-11-12T13:11:24.878Z"))
|
|
5349
5349
|
.transform(v => v.toISOString()),
|
|
5350
5350
|
}).transform((v) => {
|
|
5351
5351
|
return remap$(v, {
|
|
@@ -608,7 +608,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
608
608
|
z.ZodTypeDef,
|
|
609
609
|
unknown
|
|
610
610
|
> = z.object({
|
|
611
|
-
_id: z.string().default("
|
|
611
|
+
_id: z.string().default("01K9W32V1V57B6JH5HD7YXHKTW"),
|
|
612
612
|
display_name: z.string(),
|
|
613
613
|
description: z.string().optional(),
|
|
614
614
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -651,7 +651,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
651
651
|
z.ZodTypeDef,
|
|
652
652
|
CreateDatasourceResponseBody
|
|
653
653
|
> = z.object({
|
|
654
|
-
id: z.string().default("
|
|
654
|
+
id: z.string().default("01K9W32V1V57B6JH5HD7YXHKTW"),
|
|
655
655
|
displayName: z.string(),
|
|
656
656
|
description: z.string().optional(),
|
|
657
657
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -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-12T13:11:27.466Z"),
|
|
2758
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
2801
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
3083
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
3129
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
5418
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
5532
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
5850
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
5892
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
6173
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
6221
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
6478
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
6518
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
6757
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
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-12T13:11:27.466Z"),
|
|
6797
|
+
updated: z.string().default("2025-11-12T13:11:27.466Z"),
|
|
6798
6798
|
guardrailConfig: z.union([
|
|
6799
6799
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6800
6800
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|