@orq-ai/node 3.14.37 → 3.14.38
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 -0
- package/packages/orq-rc/examples/package-lock.json +2 -10
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +3 -27
- package/packages/orq-rc/package.json +3 -6
- 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 +138 -3
- 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/duplicateagent.ts +71 -0
- 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/getagent.ts +67 -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 +69 -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 +75 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +77 -1
- package/packages/orq-rc/src/models/operations/syncmcptool.ts +10 -10
- package/packages/orq-rc/src/models/operations/updateagent.ts +145 -3
- 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 +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
|
@@ -2990,8 +2990,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2990
2990
|
> = z.object({
|
|
2991
2991
|
_id: z.string(),
|
|
2992
2992
|
description: z.string(),
|
|
2993
|
-
created: z.string().default("2025-11-
|
|
2994
|
-
updated: z.string().default("2025-11-
|
|
2993
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
2994
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
2995
2995
|
guardrail_config: z.union([
|
|
2996
2996
|
z.lazy(() =>
|
|
2997
2997
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3033,8 +3033,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3033
3033
|
> = z.object({
|
|
3034
3034
|
id: z.string(),
|
|
3035
3035
|
description: z.string(),
|
|
3036
|
-
created: z.string().default("2025-11-
|
|
3037
|
-
updated: z.string().default("2025-11-
|
|
3036
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3037
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3038
3038
|
guardrailConfig: z.union([
|
|
3039
3039
|
z.lazy(() =>
|
|
3040
3040
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3324,8 +3324,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3324
3324
|
> = z.object({
|
|
3325
3325
|
_id: z.string(),
|
|
3326
3326
|
description: z.string(),
|
|
3327
|
-
created: z.string().default("2025-11-
|
|
3328
|
-
updated: z.string().default("2025-11-
|
|
3327
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3328
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3329
3329
|
guardrail_config: z.union([
|
|
3330
3330
|
z.lazy(() =>
|
|
3331
3331
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3370,8 +3370,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3370
3370
|
> = z.object({
|
|
3371
3371
|
id: z.string(),
|
|
3372
3372
|
description: z.string(),
|
|
3373
|
-
created: z.string().default("2025-11-
|
|
3374
|
-
updated: z.string().default("2025-11-
|
|
3373
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3374
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
3375
3375
|
guardrailConfig: z.union([
|
|
3376
3376
|
z.lazy(() =>
|
|
3377
3377
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5709,8 +5709,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5709
5709
|
> = z.object({
|
|
5710
5710
|
_id: z.string(),
|
|
5711
5711
|
description: z.string(),
|
|
5712
|
-
created: z.string().default("2025-11-
|
|
5713
|
-
updated: z.string().default("2025-11-
|
|
5712
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5713
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5714
5714
|
guardrail_config: z.union([
|
|
5715
5715
|
z.lazy(() =>
|
|
5716
5716
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5823,8 +5823,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5823
5823
|
> = z.object({
|
|
5824
5824
|
id: z.string(),
|
|
5825
5825
|
description: z.string(),
|
|
5826
|
-
created: z.string().default("2025-11-
|
|
5827
|
-
updated: z.string().default("2025-11-
|
|
5826
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5827
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
5828
5828
|
guardrailConfig: z.union([
|
|
5829
5829
|
z.lazy(() =>
|
|
5830
5830
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -6140,8 +6140,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
6140
6140
|
> = z.object({
|
|
6141
6141
|
_id: z.string(),
|
|
6142
6142
|
description: z.string(),
|
|
6143
|
-
created: z.string().default("2025-11-
|
|
6144
|
-
updated: z.string().default("2025-11-
|
|
6143
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6144
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6145
6145
|
guardrail_config: z.union([
|
|
6146
6146
|
z.lazy(() =>
|
|
6147
6147
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -6182,8 +6182,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
6182
6182
|
> = z.object({
|
|
6183
6183
|
id: z.string(),
|
|
6184
6184
|
description: z.string(),
|
|
6185
|
-
created: z.string().default("2025-11-
|
|
6186
|
-
updated: z.string().default("2025-11-
|
|
6185
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6186
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6187
6187
|
guardrailConfig: z.union([
|
|
6188
6188
|
z.lazy(() =>
|
|
6189
6189
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6468,8 +6468,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6468
6468
|
> = z.object({
|
|
6469
6469
|
_id: z.string(),
|
|
6470
6470
|
description: z.string(),
|
|
6471
|
-
created: z.string().default("2025-11-
|
|
6472
|
-
updated: z.string().default("2025-11-
|
|
6471
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6472
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6473
6473
|
guardrail_config: z.union([
|
|
6474
6474
|
z.lazy(() =>
|
|
6475
6475
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6516,8 +6516,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6516
6516
|
> = z.object({
|
|
6517
6517
|
id: z.string(),
|
|
6518
6518
|
description: z.string(),
|
|
6519
|
-
created: z.string().default("2025-11-
|
|
6520
|
-
updated: z.string().default("2025-11-
|
|
6519
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6521
6521
|
guardrailConfig: z.union([
|
|
6522
6522
|
z.lazy(() =>
|
|
6523
6523
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6786,8 +6786,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6786
6786
|
> = z.object({
|
|
6787
6787
|
_id: z.string(),
|
|
6788
6788
|
description: z.string(),
|
|
6789
|
-
created: z.string().default("2025-11-
|
|
6790
|
-
updated: z.string().default("2025-11-
|
|
6789
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6790
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6791
6791
|
guardrail_config: z.union([
|
|
6792
6792
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6793
6793
|
z.lazy(() =>
|
|
@@ -6826,8 +6826,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6826
6826
|
> = z.object({
|
|
6827
6827
|
id: z.string(),
|
|
6828
6828
|
description: z.string(),
|
|
6829
|
-
created: z.string().default("2025-11-
|
|
6830
|
-
updated: z.string().default("2025-11-
|
|
6829
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6830
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
6831
6831
|
guardrailConfig: z.union([
|
|
6832
6832
|
z.lazy(() =>
|
|
6833
6833
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -7066,8 +7066,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
7066
7066
|
> = z.object({
|
|
7067
7067
|
_id: z.string(),
|
|
7068
7068
|
description: z.string(),
|
|
7069
|
-
created: z.string().default("2025-11-
|
|
7070
|
-
updated: z.string().default("2025-11-
|
|
7069
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
7070
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
7071
7071
|
guardrail_config: z.union([
|
|
7072
7072
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
7073
7073
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -7106,8 +7106,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
7106
7106
|
> = z.object({
|
|
7107
7107
|
id: z.string(),
|
|
7108
7108
|
description: z.string(),
|
|
7109
|
-
created: z.string().default("2025-11-
|
|
7110
|
-
updated: z.string().default("2025-11-
|
|
7109
|
+
created: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
7110
|
+
updated: z.string().default("2025-11-15T09:09:00.897Z"),
|
|
7111
7111
|
guardrailConfig: z.union([
|
|
7112
7112
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7113
7113
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2830,7 +2830,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
2830
2830
|
z.ZodTypeDef,
|
|
2831
2831
|
unknown
|
|
2832
2832
|
> = z.object({
|
|
2833
|
-
_id: z.string().default("
|
|
2833
|
+
_id: z.string().default("tool_01KA3CD2DJZQD3PTRVT5MYKWDP"),
|
|
2834
2834
|
path: z.string(),
|
|
2835
2835
|
key: z.string(),
|
|
2836
2836
|
display_name: z.string().optional(),
|
|
@@ -2884,7 +2884,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
2884
2884
|
z.ZodTypeDef,
|
|
2885
2885
|
UpdateToolResponseBody5
|
|
2886
2886
|
> = z.object({
|
|
2887
|
-
id: z.string().default("
|
|
2887
|
+
id: z.string().default("tool_01KA3CD2DJZQD3PTRVT5MYKWDP"),
|
|
2888
2888
|
path: z.string(),
|
|
2889
2889
|
key: z.string(),
|
|
2890
2890
|
displayName: z.string().optional(),
|
|
@@ -3177,7 +3177,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
3177
3177
|
z.ZodTypeDef,
|
|
3178
3178
|
unknown
|
|
3179
3179
|
> = z.object({
|
|
3180
|
-
_id: z.string().default("
|
|
3180
|
+
_id: z.string().default("tool_01KA3CD2DG95EV2NF9T9HCPZS4"),
|
|
3181
3181
|
path: z.string(),
|
|
3182
3182
|
key: z.string(),
|
|
3183
3183
|
display_name: z.string().optional(),
|
|
@@ -3230,7 +3230,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
3230
3230
|
z.ZodTypeDef,
|
|
3231
3231
|
UpdateToolResponseBody4
|
|
3232
3232
|
> = z.object({
|
|
3233
|
-
id: z.string().default("
|
|
3233
|
+
id: z.string().default("tool_01KA3CD2DG95EV2NF9T9HCPZS4"),
|
|
3234
3234
|
path: z.string(),
|
|
3235
3235
|
key: z.string(),
|
|
3236
3236
|
displayName: z.string().optional(),
|
|
@@ -3605,7 +3605,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
3605
3605
|
z.ZodTypeDef,
|
|
3606
3606
|
unknown
|
|
3607
3607
|
> = z.object({
|
|
3608
|
-
_id: z.string().default("
|
|
3608
|
+
_id: z.string().default("tool_01KA3CD2DDEWH62CQZT25SEXJA"),
|
|
3609
3609
|
path: z.string(),
|
|
3610
3610
|
key: z.string(),
|
|
3611
3611
|
display_name: z.string().optional(),
|
|
@@ -3658,7 +3658,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
3658
3658
|
z.ZodTypeDef,
|
|
3659
3659
|
UpdateToolResponseBody3
|
|
3660
3660
|
> = z.object({
|
|
3661
|
-
id: z.string().default("
|
|
3661
|
+
id: z.string().default("tool_01KA3CD2DDEWH62CQZT25SEXJA"),
|
|
3662
3662
|
path: z.string(),
|
|
3663
3663
|
key: z.string(),
|
|
3664
3664
|
displayName: z.string().optional(),
|
|
@@ -3838,7 +3838,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
3838
3838
|
z.ZodTypeDef,
|
|
3839
3839
|
unknown
|
|
3840
3840
|
> = z.object({
|
|
3841
|
-
_id: z.string().default("
|
|
3841
|
+
_id: z.string().default("tool_01KA3CD2DCKCX8NMGEYSTMM9RD"),
|
|
3842
3842
|
path: z.string(),
|
|
3843
3843
|
key: z.string(),
|
|
3844
3844
|
display_name: z.string().optional(),
|
|
@@ -3890,7 +3890,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
3890
3890
|
z.ZodTypeDef,
|
|
3891
3891
|
UpdateToolResponseBody2
|
|
3892
3892
|
> = z.object({
|
|
3893
|
-
id: z.string().default("
|
|
3893
|
+
id: z.string().default("tool_01KA3CD2DCKCX8NMGEYSTMM9RD"),
|
|
3894
3894
|
path: z.string(),
|
|
3895
3895
|
key: z.string(),
|
|
3896
3896
|
displayName: z.string().optional(),
|
|
@@ -4084,7 +4084,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
4084
4084
|
z.ZodTypeDef,
|
|
4085
4085
|
unknown
|
|
4086
4086
|
> = z.object({
|
|
4087
|
-
_id: z.string().default("
|
|
4087
|
+
_id: z.string().default("tool_01KA3CD2DB72DDH2RNAV2F0306"),
|
|
4088
4088
|
path: z.string(),
|
|
4089
4089
|
key: z.string(),
|
|
4090
4090
|
display_name: z.string().optional(),
|
|
@@ -4135,7 +4135,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
4135
4135
|
z.ZodTypeDef,
|
|
4136
4136
|
UpdateToolResponseBody1
|
|
4137
4137
|
> = z.object({
|
|
4138
|
-
id: z.string().default("
|
|
4138
|
+
id: z.string().default("tool_01KA3CD2DB72DDH2RNAV2F0306"),
|
|
4139
4139
|
path: z.string(),
|
|
4140
4140
|
key: z.string(),
|
|
4141
4141
|
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.38",
|
|
72
|
+
genVersion: "2.755.6",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.14.38 2.755.6 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-15T20:01:38.833Z",
|
|
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-15T20:01:38.833Z"))
|
|
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-15T20:01:38.507Z",
|
|
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-15T20:01:38.507Z"))
|
|
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-15T20:01:38.507Z",
|
|
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-15T20:01:38.507Z"))
|
|
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-15T20:01:50.193Z",
|
|
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-15T20:01:50.193Z"))
|
|
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-15T20:01:50.193Z",
|
|
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-15T20:01:50.193Z"))
|
|
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-15T20:01:50.193Z",
|
|
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-15T20:01:50.193Z"))
|
|
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-15T20:01:38.507Z",
|
|
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-15T20:01:38.507Z"))
|
|
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("01KA4HR4ZH3MTXBHBW91B216WR"),
|
|
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("01KA4HR4ZH3MTXBHBW91B216WR"),
|
|
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-15T20:01:41.143Z"),
|
|
2758
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
2801
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
3083
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
3129
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
5418
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
5532
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
5850
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
5892
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
6173
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
6221
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
6478
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
6518
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
6757
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
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-15T20:01:41.143Z"),
|
|
6797
|
+
updated: z.string().default("2025-11-15T20:01:41.143Z"),
|
|
6798
6798
|
guardrailConfig: z.union([
|
|
6799
6799
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6800
6800
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|