@orq-ai/node 3.14.13 → 3.14.14
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/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 +2 -2
- 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/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
|
@@ -3674,8 +3674,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
3674
3674
|
> = z.object({
|
|
3675
3675
|
_id: z.string(),
|
|
3676
3676
|
description: z.string(),
|
|
3677
|
-
created: z.string().default("2025-11-
|
|
3678
|
-
updated: z.string().default("2025-11-
|
|
3677
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
3678
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
3679
3679
|
guardrail_config: z.union([
|
|
3680
3680
|
z.lazy(() =>
|
|
3681
3681
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3718,8 +3718,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3718
3718
|
> = z.object({
|
|
3719
3719
|
id: z.string(),
|
|
3720
3720
|
description: z.string(),
|
|
3721
|
-
created: z.string().default("2025-11-
|
|
3722
|
-
updated: z.string().default("2025-11-
|
|
3721
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
3722
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
3723
3723
|
guardrailConfig: z.union([
|
|
3724
3724
|
z.lazy(() =>
|
|
3725
3725
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -4145,8 +4145,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
4145
4145
|
> = z.object({
|
|
4146
4146
|
_id: z.string(),
|
|
4147
4147
|
description: z.string(),
|
|
4148
|
-
created: z.string().default("2025-11-
|
|
4149
|
-
updated: z.string().default("2025-11-
|
|
4148
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
4149
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
4150
4150
|
guardrail_config: z.union([
|
|
4151
4151
|
z.lazy(() =>
|
|
4152
4152
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -4192,8 +4192,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
4192
4192
|
> = z.object({
|
|
4193
4193
|
id: z.string(),
|
|
4194
4194
|
description: z.string(),
|
|
4195
|
-
created: z.string().default("2025-11-
|
|
4196
|
-
updated: z.string().default("2025-11-
|
|
4195
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
4196
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
4197
4197
|
guardrailConfig: z.union([
|
|
4198
4198
|
z.lazy(() =>
|
|
4199
4199
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -7682,8 +7682,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7682
7682
|
> = z.object({
|
|
7683
7683
|
_id: z.string(),
|
|
7684
7684
|
description: z.string(),
|
|
7685
|
-
created: z.string().default("2025-11-
|
|
7686
|
-
updated: z.string().default("2025-11-
|
|
7685
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
7686
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
7687
7687
|
guardrail_config: z.union([
|
|
7688
7688
|
z.lazy(() =>
|
|
7689
7689
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -7797,8 +7797,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7797
7797
|
> = z.object({
|
|
7798
7798
|
id: z.string(),
|
|
7799
7799
|
description: z.string(),
|
|
7800
|
-
created: z.string().default("2025-11-
|
|
7801
|
-
updated: z.string().default("2025-11-
|
|
7800
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
7801
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
7802
7802
|
guardrailConfig: z.union([
|
|
7803
7803
|
z.lazy(() =>
|
|
7804
7804
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -8238,8 +8238,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
8238
8238
|
> = z.object({
|
|
8239
8239
|
_id: z.string(),
|
|
8240
8240
|
description: z.string(),
|
|
8241
|
-
created: z.string().default("2025-11-
|
|
8242
|
-
updated: z.string().default("2025-11-
|
|
8241
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
8242
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
8243
8243
|
guardrail_config: z.union([
|
|
8244
8244
|
z.lazy(() =>
|
|
8245
8245
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -8281,8 +8281,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
8281
8281
|
> = z.object({
|
|
8282
8282
|
id: z.string(),
|
|
8283
8283
|
description: z.string(),
|
|
8284
|
-
created: z.string().default("2025-11-
|
|
8285
|
-
updated: z.string().default("2025-11-
|
|
8284
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
8285
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
8286
8286
|
guardrailConfig: z.union([
|
|
8287
8287
|
z.lazy(() =>
|
|
8288
8288
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -8703,8 +8703,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8703
8703
|
> = z.object({
|
|
8704
8704
|
_id: z.string(),
|
|
8705
8705
|
description: z.string(),
|
|
8706
|
-
created: z.string().default("2025-11-
|
|
8707
|
-
updated: z.string().default("2025-11-
|
|
8706
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
8707
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
8708
8708
|
guardrail_config: z.union([
|
|
8709
8709
|
z.lazy(() =>
|
|
8710
8710
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -8752,8 +8752,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8752
8752
|
> = z.object({
|
|
8753
8753
|
id: z.string(),
|
|
8754
8754
|
description: z.string(),
|
|
8755
|
-
created: z.string().default("2025-11-
|
|
8756
|
-
updated: z.string().default("2025-11-
|
|
8755
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
8756
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
8757
8757
|
guardrailConfig: z.union([
|
|
8758
8758
|
z.lazy(() =>
|
|
8759
8759
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -9143,8 +9143,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
9143
9143
|
> = z.object({
|
|
9144
9144
|
_id: z.string(),
|
|
9145
9145
|
description: z.string(),
|
|
9146
|
-
created: z.string().default("2025-11-
|
|
9147
|
-
updated: z.string().default("2025-11-
|
|
9146
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
9147
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
9148
9148
|
guardrail_config: z.union([
|
|
9149
9149
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
9150
9150
|
z.lazy(() =>
|
|
@@ -9184,8 +9184,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
9184
9184
|
> = z.object({
|
|
9185
9185
|
id: z.string(),
|
|
9186
9186
|
description: z.string(),
|
|
9187
|
-
created: z.string().default("2025-11-
|
|
9188
|
-
updated: z.string().default("2025-11-
|
|
9187
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
9188
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
9189
9189
|
guardrailConfig: z.union([
|
|
9190
9190
|
z.lazy(() =>
|
|
9191
9191
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -9543,8 +9543,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
9543
9543
|
> = z.object({
|
|
9544
9544
|
_id: z.string(),
|
|
9545
9545
|
description: z.string(),
|
|
9546
|
-
created: z.string().default("2025-11-
|
|
9547
|
-
updated: z.string().default("2025-11-
|
|
9546
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
9547
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
9548
9548
|
guardrail_config: z.union([
|
|
9549
9549
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
9550
9550
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -9584,8 +9584,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
9584
9584
|
> = z.object({
|
|
9585
9585
|
id: z.string(),
|
|
9586
9586
|
description: z.string(),
|
|
9587
|
-
created: z.string().default("2025-11-
|
|
9588
|
-
updated: z.string().default("2025-11-
|
|
9587
|
+
created: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
9588
|
+
updated: z.string().default("2025-11-04T10:15:11.175Z"),
|
|
9589
9589
|
guardrailConfig: z.union([
|
|
9590
9590
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
9591
9591
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2758,7 +2758,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
2758
2758
|
z.ZodTypeDef,
|
|
2759
2759
|
unknown
|
|
2760
2760
|
> = z.object({
|
|
2761
|
-
_id: z.string().default("
|
|
2761
|
+
_id: z.string().default("01K975TASA1E92RZA8GAB3773E"),
|
|
2762
2762
|
path: z.string(),
|
|
2763
2763
|
key: z.string(),
|
|
2764
2764
|
display_name: z.string().optional(),
|
|
@@ -2813,7 +2813,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
2813
2813
|
z.ZodTypeDef,
|
|
2814
2814
|
UpdateToolResponseBody5
|
|
2815
2815
|
> = z.object({
|
|
2816
|
-
id: z.string().default("
|
|
2816
|
+
id: z.string().default("01K975TASA1E92RZA8GAB3773E"),
|
|
2817
2817
|
path: z.string(),
|
|
2818
2818
|
key: z.string(),
|
|
2819
2819
|
displayName: z.string().optional(),
|
|
@@ -3187,7 +3187,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
3187
3187
|
z.ZodTypeDef,
|
|
3188
3188
|
unknown
|
|
3189
3189
|
> = z.object({
|
|
3190
|
-
_id: z.string().default("
|
|
3190
|
+
_id: z.string().default("01K975TAS7TGQAM4X81H2VJ2KJ"),
|
|
3191
3191
|
path: z.string(),
|
|
3192
3192
|
key: z.string(),
|
|
3193
3193
|
display_name: z.string().optional(),
|
|
@@ -3241,7 +3241,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
3241
3241
|
z.ZodTypeDef,
|
|
3242
3242
|
UpdateToolResponseBody4
|
|
3243
3243
|
> = z.object({
|
|
3244
|
-
id: z.string().default("
|
|
3244
|
+
id: z.string().default("01K975TAS7TGQAM4X81H2VJ2KJ"),
|
|
3245
3245
|
path: z.string(),
|
|
3246
3246
|
key: z.string(),
|
|
3247
3247
|
displayName: z.string().optional(),
|
|
@@ -3659,7 +3659,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
3659
3659
|
z.ZodTypeDef,
|
|
3660
3660
|
unknown
|
|
3661
3661
|
> = z.object({
|
|
3662
|
-
_id: z.string().default("
|
|
3662
|
+
_id: z.string().default("01K975TAS4SM93Q0HPDC6QSHYQ"),
|
|
3663
3663
|
path: z.string(),
|
|
3664
3664
|
key: z.string(),
|
|
3665
3665
|
display_name: z.string().optional(),
|
|
@@ -3713,7 +3713,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
3713
3713
|
z.ZodTypeDef,
|
|
3714
3714
|
UpdateToolResponseBody3
|
|
3715
3715
|
> = z.object({
|
|
3716
|
-
id: z.string().default("
|
|
3716
|
+
id: z.string().default("01K975TAS4SM93Q0HPDC6QSHYQ"),
|
|
3717
3717
|
path: z.string(),
|
|
3718
3718
|
key: z.string(),
|
|
3719
3719
|
displayName: z.string().optional(),
|
|
@@ -3887,7 +3887,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
3887
3887
|
z.ZodTypeDef,
|
|
3888
3888
|
unknown
|
|
3889
3889
|
> = z.object({
|
|
3890
|
-
_id: z.string().default("
|
|
3890
|
+
_id: z.string().default("01K975TAS2BPJZQM83Y1F926R0"),
|
|
3891
3891
|
path: z.string(),
|
|
3892
3892
|
key: z.string(),
|
|
3893
3893
|
display_name: z.string().optional(),
|
|
@@ -3940,7 +3940,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
3940
3940
|
z.ZodTypeDef,
|
|
3941
3941
|
UpdateToolResponseBody2
|
|
3942
3942
|
> = z.object({
|
|
3943
|
-
id: z.string().default("
|
|
3943
|
+
id: z.string().default("01K975TAS2BPJZQM83Y1F926R0"),
|
|
3944
3944
|
path: z.string(),
|
|
3945
3945
|
key: z.string(),
|
|
3946
3946
|
displayName: z.string().optional(),
|
|
@@ -4112,7 +4112,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
4112
4112
|
z.ZodTypeDef,
|
|
4113
4113
|
unknown
|
|
4114
4114
|
> = z.object({
|
|
4115
|
-
_id: z.string().default("
|
|
4115
|
+
_id: z.string().default("01K975TAS0BDDT6S9W15FZPRE1"),
|
|
4116
4116
|
path: z.string(),
|
|
4117
4117
|
key: z.string(),
|
|
4118
4118
|
display_name: z.string().optional(),
|
|
@@ -4164,7 +4164,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
4164
4164
|
z.ZodTypeDef,
|
|
4165
4165
|
UpdateToolResponseBody1
|
|
4166
4166
|
> = z.object({
|
|
4167
|
-
id: z.string().default("
|
|
4167
|
+
id: z.string().default("01K975TAS0BDDT6S9W15FZPRE1"),
|
|
4168
4168
|
path: z.string(),
|
|
4169
4169
|
key: z.string(),
|
|
4170
4170
|
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.
|
|
71
|
+
sdkVersion: "3.14.14",
|
|
72
72
|
genVersion: "2.737.0",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.14.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.14.14 2.737.0 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -664,7 +664,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
664
664
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
665
665
|
.optional(),
|
|
666
666
|
updated: z.string().datetime({ offset: true }).default(
|
|
667
|
-
"2025-11-
|
|
667
|
+
"2025-11-04T10:51:59.563Z",
|
|
668
668
|
).transform(v => new Date(v)),
|
|
669
669
|
}).transform((v) => {
|
|
670
670
|
return remap$(v, {
|
|
@@ -702,7 +702,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
702
702
|
isActive: z.boolean(),
|
|
703
703
|
consumption: z.lazy(() => Consumption$outboundSchema).optional(),
|
|
704
704
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
705
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
705
|
+
updated: z.date().default(() => new Date("2025-11-04T10:51:59.563Z"))
|
|
706
706
|
.transform(v => v.toISOString()),
|
|
707
707
|
}).transform((v) => {
|
|
708
708
|
return remap$(v, {
|
|
@@ -182,7 +182,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
182
182
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
183
183
|
.optional(),
|
|
184
184
|
updated: z.string().datetime({ offset: true }).default(
|
|
185
|
-
"2025-11-
|
|
185
|
+
"2025-11-04T10:51:59.252Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -223,7 +223,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
223
223
|
tags: z.array(z.string()).optional(),
|
|
224
224
|
metadata: z.record(z.any()).optional(),
|
|
225
225
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
226
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
226
|
+
updated: z.date().default(() => new Date("2025-11-04T10:51:59.252Z"))
|
|
227
227
|
.transform(v => v.toISOString()),
|
|
228
228
|
}).transform((v) => {
|
|
229
229
|
return remap$(v, {
|
|
@@ -217,7 +217,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
217
217
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
218
218
|
.optional(),
|
|
219
219
|
updated: z.string().datetime({ offset: true }).default(
|
|
220
|
-
"2025-11-
|
|
220
|
+
"2025-11-04T10:51:59.252Z",
|
|
221
221
|
).transform(v => new Date(v)),
|
|
222
222
|
}).transform((v) => {
|
|
223
223
|
return remap$(v, {
|
|
@@ -257,7 +257,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
257
257
|
createdById: z.string().optional(),
|
|
258
258
|
updatedById: z.string().optional(),
|
|
259
259
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
260
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
260
|
+
updated: z.date().default(() => new Date("2025-11-04T10:51:59.252Z"))
|
|
261
261
|
.transform(v => v.toISOString()),
|
|
262
262
|
}).transform((v) => {
|
|
263
263
|
return remap$(v, {
|
|
@@ -6346,7 +6346,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
6346
6346
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
6347
6347
|
reviewed_by_id: z.string(),
|
|
6348
6348
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6349
|
-
"2025-11-
|
|
6349
|
+
"2025-11-04T10:52:10.143Z",
|
|
6350
6350
|
).transform(v => new Date(v)),
|
|
6351
6351
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
6352
6352
|
values: z.array(z.string()),
|
|
@@ -6382,7 +6382,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
6382
6382
|
humanReviewId: z.string(),
|
|
6383
6383
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
6384
6384
|
reviewedById: z.string(),
|
|
6385
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
6385
|
+
reviewedAt: z.date().default(() => new Date("2025-11-04T10:52:10.143Z"))
|
|
6386
6386
|
.transform(v => v.toISOString()),
|
|
6387
6387
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
6388
6388
|
values: z.array(z.string()),
|
|
@@ -6497,7 +6497,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
6497
6497
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
6498
6498
|
reviewed_by_id: z.string(),
|
|
6499
6499
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6500
|
-
"2025-11-
|
|
6500
|
+
"2025-11-04T10:52:10.143Z",
|
|
6501
6501
|
).transform(v => new Date(v)),
|
|
6502
6502
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
6503
6503
|
value: z.number(),
|
|
@@ -6533,7 +6533,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
6533
6533
|
humanReviewId: z.string(),
|
|
6534
6534
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
6535
6535
|
reviewedById: z.string(),
|
|
6536
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
6536
|
+
reviewedAt: z.date().default(() => new Date("2025-11-04T10:52:10.143Z"))
|
|
6537
6537
|
.transform(v => v.toISOString()),
|
|
6538
6538
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
6539
6539
|
value: z.number(),
|
|
@@ -6646,7 +6646,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
6646
6646
|
source: Source$inboundSchema.default("orq"),
|
|
6647
6647
|
reviewed_by_id: z.string(),
|
|
6648
6648
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6649
|
-
"2025-11-
|
|
6649
|
+
"2025-11-04T10:52:10.142Z",
|
|
6650
6650
|
).transform(v => new Date(v)),
|
|
6651
6651
|
type: EvaluationsType$inboundSchema,
|
|
6652
6652
|
value: z.string(),
|
|
@@ -6682,7 +6682,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
6682
6682
|
humanReviewId: z.string(),
|
|
6683
6683
|
source: Source$outboundSchema.default("orq"),
|
|
6684
6684
|
reviewedById: z.string(),
|
|
6685
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
6685
|
+
reviewedAt: z.date().default(() => new Date("2025-11-04T10:52:10.142Z"))
|
|
6686
6686
|
.transform(v => v.toISOString()),
|
|
6687
6687
|
type: EvaluationsType$outboundSchema,
|
|
6688
6688
|
value: z.string(),
|
|
@@ -6816,7 +6816,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
6816
6816
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
6817
6817
|
.optional(),
|
|
6818
6818
|
updated: z.string().datetime({ offset: true }).default(
|
|
6819
|
-
"2025-11-
|
|
6819
|
+
"2025-11-04T10:51:59.252Z",
|
|
6820
6820
|
).transform(v => new Date(v)),
|
|
6821
6821
|
}).transform((v) => {
|
|
6822
6822
|
return remap$(v, {
|
|
@@ -6895,7 +6895,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
6895
6895
|
createdById: z.string().optional(),
|
|
6896
6896
|
updatedById: z.string().optional(),
|
|
6897
6897
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
6898
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
6898
|
+
updated: z.date().default(() => new Date("2025-11-04T10:51:59.252Z"))
|
|
6899
6899
|
.transform(v => v.toISOString()),
|
|
6900
6900
|
}).transform((v) => {
|
|
6901
6901
|
return remap$(v, {
|
|
@@ -751,7 +751,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
751
751
|
z.ZodTypeDef,
|
|
752
752
|
unknown
|
|
753
753
|
> = z.object({
|
|
754
|
-
_id: z.string().default("
|
|
754
|
+
_id: z.string().default("01K977XRXTSDR9MW0K6HASVT49"),
|
|
755
755
|
display_name: z.string(),
|
|
756
756
|
description: z.string().optional(),
|
|
757
757
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -795,7 +795,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
795
795
|
z.ZodTypeDef,
|
|
796
796
|
CreateDatasourceResponseBody
|
|
797
797
|
> = z.object({
|
|
798
|
-
id: z.string().default("
|
|
798
|
+
id: z.string().default("01K977XRXTSDR9MW0K6HASVT49"),
|
|
799
799
|
displayName: z.string(),
|
|
800
800
|
description: z.string().optional(),
|
|
801
801
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -3397,8 +3397,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
3397
3397
|
> = z.object({
|
|
3398
3398
|
_id: z.string(),
|
|
3399
3399
|
description: z.string(),
|
|
3400
|
-
created: z.string().default("2025-11-
|
|
3401
|
-
updated: z.string().default("2025-11-
|
|
3400
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
3401
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
3402
3402
|
guardrail_config: z.union([
|
|
3403
3403
|
z.lazy(() =>
|
|
3404
3404
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3441,8 +3441,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
3441
3441
|
> = z.object({
|
|
3442
3442
|
id: z.string(),
|
|
3443
3443
|
description: z.string(),
|
|
3444
|
-
created: z.string().default("2025-11-
|
|
3445
|
-
updated: z.string().default("2025-11-
|
|
3444
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
3445
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
3446
3446
|
guardrailConfig: z.union([
|
|
3447
3447
|
z.lazy(() =>
|
|
3448
3448
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3859,8 +3859,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3859
3859
|
.object({
|
|
3860
3860
|
_id: z.string(),
|
|
3861
3861
|
description: z.string(),
|
|
3862
|
-
created: z.string().default("2025-11-
|
|
3863
|
-
updated: z.string().default("2025-11-
|
|
3862
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
3863
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
3864
3864
|
guardrail_config: z.union([
|
|
3865
3865
|
z.lazy(() =>
|
|
3866
3866
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3906,8 +3906,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3906
3906
|
> = z.object({
|
|
3907
3907
|
id: z.string(),
|
|
3908
3908
|
description: z.string(),
|
|
3909
|
-
created: z.string().default("2025-11-
|
|
3910
|
-
updated: z.string().default("2025-11-
|
|
3909
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
3910
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
3911
3911
|
guardrailConfig: z.union([
|
|
3912
3912
|
z.lazy(() =>
|
|
3913
3913
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -7344,8 +7344,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7344
7344
|
> = z.object({
|
|
7345
7345
|
_id: z.string(),
|
|
7346
7346
|
description: z.string(),
|
|
7347
|
-
created: z.string().default("2025-11-
|
|
7348
|
-
updated: z.string().default("2025-11-
|
|
7347
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
7348
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
7349
7349
|
guardrail_config: z.union([
|
|
7350
7350
|
z.lazy(() =>
|
|
7351
7351
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -7459,8 +7459,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7459
7459
|
> = z.object({
|
|
7460
7460
|
id: z.string(),
|
|
7461
7461
|
description: z.string(),
|
|
7462
|
-
created: z.string().default("2025-11-
|
|
7463
|
-
updated: z.string().default("2025-11-
|
|
7462
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
7463
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
7464
7464
|
guardrailConfig: z.union([
|
|
7465
7465
|
z.lazy(() =>
|
|
7466
7466
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -7901,8 +7901,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
7901
7901
|
> = z.object({
|
|
7902
7902
|
_id: z.string(),
|
|
7903
7903
|
description: z.string(),
|
|
7904
|
-
created: z.string().default("2025-11-
|
|
7905
|
-
updated: z.string().default("2025-11-
|
|
7904
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
7905
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
7906
7906
|
guardrail_config: z.union([
|
|
7907
7907
|
z.lazy(() =>
|
|
7908
7908
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7944,8 +7944,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
7944
7944
|
> = z.object({
|
|
7945
7945
|
id: z.string(),
|
|
7946
7946
|
description: z.string(),
|
|
7947
|
-
created: z.string().default("2025-11-
|
|
7948
|
-
updated: z.string().default("2025-11-
|
|
7947
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
7948
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
7949
7949
|
guardrailConfig: z.union([
|
|
7950
7950
|
z.lazy(() =>
|
|
7951
7951
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -8358,8 +8358,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8358
8358
|
> = z.object({
|
|
8359
8359
|
_id: z.string(),
|
|
8360
8360
|
description: z.string(),
|
|
8361
|
-
created: z.string().default("2025-11-
|
|
8362
|
-
updated: z.string().default("2025-11-
|
|
8361
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
8362
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
8363
8363
|
guardrail_config: z.union([
|
|
8364
8364
|
z.lazy(() =>
|
|
8365
8365
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -8407,8 +8407,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8407
8407
|
> = z.object({
|
|
8408
8408
|
id: z.string(),
|
|
8409
8409
|
description: z.string(),
|
|
8410
|
-
created: z.string().default("2025-11-
|
|
8411
|
-
updated: z.string().default("2025-11-
|
|
8410
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
8411
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
8412
8412
|
guardrailConfig: z.union([
|
|
8413
8413
|
z.lazy(() =>
|
|
8414
8414
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -8785,8 +8785,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
8785
8785
|
> = z.object({
|
|
8786
8786
|
_id: z.string(),
|
|
8787
8787
|
description: z.string(),
|
|
8788
|
-
created: z.string().default("2025-11-
|
|
8789
|
-
updated: z.string().default("2025-11-
|
|
8788
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
8789
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
8790
8790
|
guardrail_config: z.union([
|
|
8791
8791
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
8792
8792
|
z.lazy(() =>
|
|
@@ -8826,8 +8826,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
8826
8826
|
> = z.object({
|
|
8827
8827
|
id: z.string(),
|
|
8828
8828
|
description: z.string(),
|
|
8829
|
-
created: z.string().default("2025-11-
|
|
8830
|
-
updated: z.string().default("2025-11-
|
|
8829
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
8830
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
8831
8831
|
guardrailConfig: z.union([
|
|
8832
8832
|
z.lazy(() =>
|
|
8833
8833
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -9182,8 +9182,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
9182
9182
|
> = z.object({
|
|
9183
9183
|
_id: z.string(),
|
|
9184
9184
|
description: z.string(),
|
|
9185
|
-
created: z.string().default("2025-11-
|
|
9186
|
-
updated: z.string().default("2025-11-
|
|
9185
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
9186
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
9187
9187
|
guardrail_config: z.union([
|
|
9188
9188
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
9189
9189
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -9223,8 +9223,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
9223
9223
|
> = z.object({
|
|
9224
9224
|
id: z.string(),
|
|
9225
9225
|
description: z.string(),
|
|
9226
|
-
created: z.string().default("2025-11-
|
|
9227
|
-
updated: z.string().default("2025-11-
|
|
9226
|
+
created: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
9227
|
+
updated: z.string().default("2025-11-04T10:52:01.735Z"),
|
|
9228
9228
|
guardrailConfig: z.union([
|
|
9229
9229
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
9230
9230
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|