@orq-ai/node 3.14.31 → 3.14.33
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/docs/sdks/agents/README.md +2 -2
- 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/funcs/toolsDuplicate.ts +3 -2
- 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/createagent.ts +403 -17
- 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 +30 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +10 -10
- package/packages/orq-rc/src/models/operations/duplicateagent.ts +206 -0
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +70 -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/getagent.ts +204 -0
- 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/listagents.ts +204 -0
- 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/runagent.ts +202 -0
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +204 -0
- package/packages/orq-rc/src/models/operations/updateagent.ts +415 -0
- 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 +30 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
- 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
|
@@ -136,6 +136,7 @@ export type UpdateEvalRequestBodyEvalsRequestGuardrailConfig =
|
|
|
136
136
|
*/
|
|
137
137
|
export const UpdateEvalRequestBodyEvalsRequestOutputType = {
|
|
138
138
|
Boolean: "boolean",
|
|
139
|
+
Categorical: "categorical",
|
|
139
140
|
Number: "number",
|
|
140
141
|
String: "string",
|
|
141
142
|
} as const;
|
|
@@ -314,6 +315,7 @@ export type UpdateEvalRequestBodyGuardrailConfig =
|
|
|
314
315
|
*/
|
|
315
316
|
export const UpdateEvalRequestBodyOutputType = {
|
|
316
317
|
Boolean: "boolean",
|
|
318
|
+
Categorical: "categorical",
|
|
317
319
|
Number: "number",
|
|
318
320
|
String: "string",
|
|
319
321
|
} as const;
|
|
@@ -2988,8 +2990,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2988
2990
|
> = z.object({
|
|
2989
2991
|
_id: z.string(),
|
|
2990
2992
|
description: z.string(),
|
|
2991
|
-
created: z.string().default("2025-11-
|
|
2992
|
-
updated: z.string().default("2025-11-
|
|
2993
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
2994
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
2993
2995
|
guardrail_config: z.union([
|
|
2994
2996
|
z.lazy(() =>
|
|
2995
2997
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3031,8 +3033,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3031
3033
|
> = z.object({
|
|
3032
3034
|
id: z.string(),
|
|
3033
3035
|
description: z.string(),
|
|
3034
|
-
created: z.string().default("2025-11-
|
|
3035
|
-
updated: z.string().default("2025-11-
|
|
3036
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
3037
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
3036
3038
|
guardrailConfig: z.union([
|
|
3037
3039
|
z.lazy(() =>
|
|
3038
3040
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3322,8 +3324,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3322
3324
|
> = z.object({
|
|
3323
3325
|
_id: z.string(),
|
|
3324
3326
|
description: z.string(),
|
|
3325
|
-
created: z.string().default("2025-11-
|
|
3326
|
-
updated: z.string().default("2025-11-
|
|
3327
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
3328
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
3327
3329
|
guardrail_config: z.union([
|
|
3328
3330
|
z.lazy(() =>
|
|
3329
3331
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3368,8 +3370,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3368
3370
|
> = z.object({
|
|
3369
3371
|
id: z.string(),
|
|
3370
3372
|
description: z.string(),
|
|
3371
|
-
created: z.string().default("2025-11-
|
|
3372
|
-
updated: z.string().default("2025-11-
|
|
3373
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
3374
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
3373
3375
|
guardrailConfig: z.union([
|
|
3374
3376
|
z.lazy(() =>
|
|
3375
3377
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5707,8 +5709,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5707
5709
|
> = z.object({
|
|
5708
5710
|
_id: z.string(),
|
|
5709
5711
|
description: z.string(),
|
|
5710
|
-
created: z.string().default("2025-11-
|
|
5711
|
-
updated: z.string().default("2025-11-
|
|
5712
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
5713
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
5712
5714
|
guardrail_config: z.union([
|
|
5713
5715
|
z.lazy(() =>
|
|
5714
5716
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5821,8 +5823,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5821
5823
|
> = z.object({
|
|
5822
5824
|
id: z.string(),
|
|
5823
5825
|
description: z.string(),
|
|
5824
|
-
created: z.string().default("2025-11-
|
|
5825
|
-
updated: z.string().default("2025-11-
|
|
5826
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
5827
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
5826
5828
|
guardrailConfig: z.union([
|
|
5827
5829
|
z.lazy(() =>
|
|
5828
5830
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -6138,8 +6140,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
6138
6140
|
> = z.object({
|
|
6139
6141
|
_id: z.string(),
|
|
6140
6142
|
description: z.string(),
|
|
6141
|
-
created: z.string().default("2025-11-
|
|
6142
|
-
updated: z.string().default("2025-11-
|
|
6143
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6144
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6143
6145
|
guardrail_config: z.union([
|
|
6144
6146
|
z.lazy(() =>
|
|
6145
6147
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -6180,8 +6182,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
6180
6182
|
> = z.object({
|
|
6181
6183
|
id: z.string(),
|
|
6182
6184
|
description: z.string(),
|
|
6183
|
-
created: z.string().default("2025-11-
|
|
6184
|
-
updated: z.string().default("2025-11-
|
|
6185
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6186
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6185
6187
|
guardrailConfig: z.union([
|
|
6186
6188
|
z.lazy(() =>
|
|
6187
6189
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6466,8 +6468,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6466
6468
|
> = z.object({
|
|
6467
6469
|
_id: z.string(),
|
|
6468
6470
|
description: z.string(),
|
|
6469
|
-
created: z.string().default("2025-11-
|
|
6470
|
-
updated: z.string().default("2025-11-
|
|
6471
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6472
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6471
6473
|
guardrail_config: z.union([
|
|
6472
6474
|
z.lazy(() =>
|
|
6473
6475
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6514,8 +6516,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6514
6516
|
> = z.object({
|
|
6515
6517
|
id: z.string(),
|
|
6516
6518
|
description: z.string(),
|
|
6517
|
-
created: z.string().default("2025-11-
|
|
6518
|
-
updated: z.string().default("2025-11-
|
|
6519
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6519
6521
|
guardrailConfig: z.union([
|
|
6520
6522
|
z.lazy(() =>
|
|
6521
6523
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6784,8 +6786,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6784
6786
|
> = z.object({
|
|
6785
6787
|
_id: z.string(),
|
|
6786
6788
|
description: z.string(),
|
|
6787
|
-
created: z.string().default("2025-11-
|
|
6788
|
-
updated: z.string().default("2025-11-
|
|
6789
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6790
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6789
6791
|
guardrail_config: z.union([
|
|
6790
6792
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6791
6793
|
z.lazy(() =>
|
|
@@ -6824,8 +6826,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6824
6826
|
> = z.object({
|
|
6825
6827
|
id: z.string(),
|
|
6826
6828
|
description: z.string(),
|
|
6827
|
-
created: z.string().default("2025-11-
|
|
6828
|
-
updated: z.string().default("2025-11-
|
|
6829
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6830
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
6829
6831
|
guardrailConfig: z.union([
|
|
6830
6832
|
z.lazy(() =>
|
|
6831
6833
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -7064,8 +7066,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
7064
7066
|
> = z.object({
|
|
7065
7067
|
_id: z.string(),
|
|
7066
7068
|
description: z.string(),
|
|
7067
|
-
created: z.string().default("2025-11-
|
|
7068
|
-
updated: z.string().default("2025-11-
|
|
7069
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
7070
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
7069
7071
|
guardrail_config: z.union([
|
|
7070
7072
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
7071
7073
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -7104,8 +7106,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
7104
7106
|
> = z.object({
|
|
7105
7107
|
id: z.string(),
|
|
7106
7108
|
description: z.string(),
|
|
7107
|
-
created: z.string().default("2025-11-
|
|
7108
|
-
updated: z.string().default("2025-11-
|
|
7109
|
+
created: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
7110
|
+
updated: z.string().default("2025-11-13T09:21:08.239Z"),
|
|
7109
7111
|
guardrailConfig: z.union([
|
|
7110
7112
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7111
7113
|
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("01K9Y89TCEYX1S3DWVMVAF11RF"),
|
|
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("01K9Y89TCEYX1S3DWVMVAF11RF"),
|
|
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("01K9Y89TCDHHYY1WKCGYXHJBB0"),
|
|
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("01K9Y89TCDHHYY1WKCGYXHJBB0"),
|
|
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("01K9Y89TCBXD7YFM1XQP4P822T"),
|
|
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("01K9Y89TCBXD7YFM1XQP4P822T"),
|
|
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("01K9Y89TCA1VGQQAFQZ6X0NFY5"),
|
|
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("01K9Y89TCA1VGQQAFQZ6X0NFY5"),
|
|
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("01K9Y89TC9KYK2NMREWMZNR3B0"),
|
|
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("01K9Y89TC9KYK2NMREWMZNR3B0"),
|
|
3419
3419
|
path: z.string(),
|
|
3420
3420
|
key: z.string(),
|
|
3421
3421
|
displayName: z.string().optional(),
|
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.33",
|
|
72
|
+
genVersion: "2.753.1",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.14.33 2.753.1 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-13T09:53:49.721Z",
|
|
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-13T09:53:49.721Z"))
|
|
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-13T09:53:49.400Z",
|
|
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-13T09:53:49.400Z"))
|
|
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-13T09:53:49.400Z",
|
|
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-13T09:53:49.400Z"))
|
|
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-13T09:54:00.734Z",
|
|
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-13T09:54:00.734Z"))
|
|
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-13T09:54:00.734Z",
|
|
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-13T09:54:00.734Z"))
|
|
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-13T09:54:00.733Z",
|
|
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-13T09:54:00.733Z"))
|
|
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-13T09:53:49.400Z",
|
|
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-13T09:53:49.400Z"))
|
|
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("01K9YA5R9B60A73GFZM4J4F29S"),
|
|
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("01K9YA5R9B60A73GFZM4J4F29S"),
|
|
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-13T09:53:51.962Z"),
|
|
2758
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
2801
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
3083
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
3129
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
5418
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
5532
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
5850
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
5892
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
6173
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
6221
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
6478
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
6518
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
6757
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
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-13T09:53:51.962Z"),
|
|
6797
|
+
updated: z.string().default("2025-11-13T09:53:51.962Z"),
|
|
6798
6798
|
guardrailConfig: z.union([
|
|
6799
6799
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6800
6800
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|