@orq-ai/node 4.0.0-rc.24 → 4.0.0-rc.25
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 +237 -209
- package/bin/mcp-server.js.map +42 -42
- 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/createprompt.d.ts +2 -0
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +4 -0
- package/models/operations/createprompt.js.map +1 -1
- 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/getallprompts.d.ts +2 -0
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +4 -0
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +2 -0
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +4 -0
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +2 -0
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +4 -0
- package/models/operations/getpromptversion.js.map +1 -1
- 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/listpromptversions.d.ts +2 -0
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +4 -0
- package/models/operations/listpromptversions.js.map +1 -1
- 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/updateprompt.d.ts +4 -0
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +8 -0
- package/models/operations/updateprompt.js.map +1 -1
- package/models/operations/updatetool.js +10 -10
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createprompt.ts +6 -0
- 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/getallprompts.ts +6 -0
- 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/getoneprompt.ts +6 -0
- package/src/models/operations/getpromptversion.ts +6 -0
- 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/listpromptversions.ts +6 -0
- 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/updateprompt.ts +12 -0
- package/src/models/operations/updatetool.ts +10 -10
|
@@ -715,7 +715,7 @@ export const RetrieveToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
715
715
|
z.ZodTypeDef,
|
|
716
716
|
unknown
|
|
717
717
|
> = z.object({
|
|
718
|
-
_id: z.string().default("
|
|
718
|
+
_id: z.string().default("01K9W3QER4T0BQPMQXHTH8AC9N"),
|
|
719
719
|
path: z.string(),
|
|
720
720
|
key: z.string(),
|
|
721
721
|
display_name: z.string().optional(),
|
|
@@ -770,7 +770,7 @@ export const RetrieveToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
770
770
|
z.ZodTypeDef,
|
|
771
771
|
RetrieveToolResponseBody5
|
|
772
772
|
> = z.object({
|
|
773
|
-
id: z.string().default("
|
|
773
|
+
id: z.string().default("01K9W3QER4T0BQPMQXHTH8AC9N"),
|
|
774
774
|
path: z.string(),
|
|
775
775
|
key: z.string(),
|
|
776
776
|
displayName: z.string().optional(),
|
|
@@ -1037,7 +1037,7 @@ export const RetrieveToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1037
1037
|
z.ZodTypeDef,
|
|
1038
1038
|
unknown
|
|
1039
1039
|
> = z.object({
|
|
1040
|
-
_id: z.string().default("
|
|
1040
|
+
_id: z.string().default("01K9W3QER1RHF5VV2JRXAWV7A5"),
|
|
1041
1041
|
path: z.string(),
|
|
1042
1042
|
key: z.string(),
|
|
1043
1043
|
display_name: z.string().optional(),
|
|
@@ -1090,7 +1090,7 @@ export const RetrieveToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1090
1090
|
z.ZodTypeDef,
|
|
1091
1091
|
RetrieveToolResponseBody4
|
|
1092
1092
|
> = z.object({
|
|
1093
|
-
id: z.string().default("
|
|
1093
|
+
id: z.string().default("01K9W3QER1RHF5VV2JRXAWV7A5"),
|
|
1094
1094
|
path: z.string(),
|
|
1095
1095
|
key: z.string(),
|
|
1096
1096
|
displayName: z.string().optional(),
|
|
@@ -1435,7 +1435,7 @@ export const RetrieveToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1435
1435
|
z.ZodTypeDef,
|
|
1436
1436
|
unknown
|
|
1437
1437
|
> = z.object({
|
|
1438
|
-
_id: z.string().default("
|
|
1438
|
+
_id: z.string().default("01K9W3QEQY8XD7W91WC7HTX5EX"),
|
|
1439
1439
|
path: z.string(),
|
|
1440
1440
|
key: z.string(),
|
|
1441
1441
|
display_name: z.string().optional(),
|
|
@@ -1488,7 +1488,7 @@ export const RetrieveToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1488
1488
|
z.ZodTypeDef,
|
|
1489
1489
|
RetrieveToolResponseBody3
|
|
1490
1490
|
> = z.object({
|
|
1491
|
-
id: z.string().default("
|
|
1491
|
+
id: z.string().default("01K9W3QEQY8XD7W91WC7HTX5EX"),
|
|
1492
1492
|
path: z.string(),
|
|
1493
1493
|
key: z.string(),
|
|
1494
1494
|
displayName: z.string().optional(),
|
|
@@ -1609,7 +1609,7 @@ export const RetrieveToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1609
1609
|
z.ZodTypeDef,
|
|
1610
1610
|
unknown
|
|
1611
1611
|
> = z.object({
|
|
1612
|
-
_id: z.string().default("
|
|
1612
|
+
_id: z.string().default("01K9W3QEQW5GJB8ZNHWRQ73V1R"),
|
|
1613
1613
|
path: z.string(),
|
|
1614
1614
|
key: z.string(),
|
|
1615
1615
|
display_name: z.string().optional(),
|
|
@@ -1661,7 +1661,7 @@ export const RetrieveToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1661
1661
|
z.ZodTypeDef,
|
|
1662
1662
|
RetrieveToolResponseBody2
|
|
1663
1663
|
> = z.object({
|
|
1664
|
-
id: z.string().default("
|
|
1664
|
+
id: z.string().default("01K9W3QEQW5GJB8ZNHWRQ73V1R"),
|
|
1665
1665
|
path: z.string(),
|
|
1666
1666
|
key: z.string(),
|
|
1667
1667
|
displayName: z.string().optional(),
|
|
@@ -1780,7 +1780,7 @@ export const RetrieveToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
1780
1780
|
z.ZodTypeDef,
|
|
1781
1781
|
unknown
|
|
1782
1782
|
> = z.object({
|
|
1783
|
-
_id: z.string().default("
|
|
1783
|
+
_id: z.string().default("01K9W3QEQT1Q7NQGB408NZGPWZ"),
|
|
1784
1784
|
path: z.string(),
|
|
1785
1785
|
key: z.string(),
|
|
1786
1786
|
display_name: z.string().optional(),
|
|
@@ -1831,7 +1831,7 @@ export const RetrieveToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
1831
1831
|
z.ZodTypeDef,
|
|
1832
1832
|
RetrieveToolResponseBody1
|
|
1833
1833
|
> = z.object({
|
|
1834
|
-
id: z.string().default("
|
|
1834
|
+
id: z.string().default("01K9W3QEQT1Q7NQGB408NZGPWZ"),
|
|
1835
1835
|
path: z.string(),
|
|
1836
1836
|
key: z.string(),
|
|
1837
1837
|
displayName: z.string().optional(),
|
|
@@ -436,7 +436,7 @@ export const UpdateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
436
436
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
437
437
|
.optional(),
|
|
438
438
|
updated: z.string().datetime({ offset: true }).default(
|
|
439
|
-
"2025-11-
|
|
439
|
+
"2025-11-12T13:22:38.059Z",
|
|
440
440
|
).transform(v => new Date(v)),
|
|
441
441
|
}).transform((v) => {
|
|
442
442
|
return remap$(v, {
|
|
@@ -473,7 +473,7 @@ export const UpdateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
473
473
|
isActive: z.boolean(),
|
|
474
474
|
consumption: z.lazy(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
475
475
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
476
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
476
|
+
updated: z.date().default(() => new Date("2025-11-12T13:22:38.059Z"))
|
|
477
477
|
.transform(v => v.toISOString()),
|
|
478
478
|
}).transform((v) => {
|
|
479
479
|
return remap$(v, {
|
|
@@ -214,7 +214,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
214
214
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
215
215
|
.optional(),
|
|
216
216
|
updated: z.string().datetime({ offset: true }).default(
|
|
217
|
-
"2025-11-
|
|
217
|
+
"2025-11-12T13:22:37.672Z",
|
|
218
218
|
).transform(v => new Date(v)),
|
|
219
219
|
}).transform((v) => {
|
|
220
220
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
tags: z.array(z.string()).optional(),
|
|
252
252
|
metadata: z.record(z.any()).optional(),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-11-12T13:22:37.672Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -4893,7 +4893,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
4893
4893
|
.default("orq"),
|
|
4894
4894
|
reviewed_by_id: z.string(),
|
|
4895
4895
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4896
|
-
"2025-11-
|
|
4896
|
+
"2025-11-12T13:22:52.008Z",
|
|
4897
4897
|
).transform(v => new Date(v)),
|
|
4898
4898
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
4899
4899
|
values: z.array(z.string()),
|
|
@@ -4930,7 +4930,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
4930
4930
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
4931
4931
|
.default("orq"),
|
|
4932
4932
|
reviewedById: z.string(),
|
|
4933
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4933
|
+
reviewedAt: z.date().default(() => new Date("2025-11-12T13:22:52.008Z"))
|
|
4934
4934
|
.transform(v => v.toISOString()),
|
|
4935
4935
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
4936
4936
|
values: z.array(z.string()),
|
|
@@ -5003,7 +5003,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
5003
5003
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
5004
5004
|
reviewed_by_id: z.string(),
|
|
5005
5005
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5006
|
-
"2025-11-
|
|
5006
|
+
"2025-11-12T13:22:52.007Z",
|
|
5007
5007
|
).transform(v => new Date(v)),
|
|
5008
5008
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
5009
5009
|
value: z.number(),
|
|
@@ -5041,7 +5041,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
5041
5041
|
"orq",
|
|
5042
5042
|
),
|
|
5043
5043
|
reviewedById: z.string(),
|
|
5044
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5044
|
+
reviewedAt: z.date().default(() => new Date("2025-11-12T13:22:52.007Z"))
|
|
5045
5045
|
.transform(v => v.toISOString()),
|
|
5046
5046
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
5047
5047
|
value: z.number(),
|
|
@@ -5112,7 +5112,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
5112
5112
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
5113
5113
|
reviewed_by_id: z.string(),
|
|
5114
5114
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5115
|
-
"2025-11-
|
|
5115
|
+
"2025-11-12T13:22:52.007Z",
|
|
5116
5116
|
).transform(v => new Date(v)),
|
|
5117
5117
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
5118
5118
|
value: z.string(),
|
|
@@ -5147,7 +5147,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
5147
5147
|
humanReviewId: z.string(),
|
|
5148
5148
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
5149
5149
|
reviewedById: z.string(),
|
|
5150
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5150
|
+
reviewedAt: z.date().default(() => new Date("2025-11-12T13:22:52.007Z"))
|
|
5151
5151
|
.transform(v => v.toISOString()),
|
|
5152
5152
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
5153
5153
|
value: z.string(),
|
|
@@ -5262,7 +5262,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
5262
5262
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5263
5263
|
.optional(),
|
|
5264
5264
|
updated: z.string().datetime({ offset: true }).default(
|
|
5265
|
-
"2025-11-
|
|
5265
|
+
"2025-11-12T13:22:37.672Z",
|
|
5266
5266
|
).transform(v => new Date(v)),
|
|
5267
5267
|
}).transform((v) => {
|
|
5268
5268
|
return remap$(v, {
|
|
@@ -5340,7 +5340,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
5340
5340
|
createdById: z.string().optional(),
|
|
5341
5341
|
updatedById: z.string().optional(),
|
|
5342
5342
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5343
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5343
|
+
updated: z.date().default(() => new Date("2025-11-12T13:22:37.672Z"))
|
|
5344
5344
|
.transform(v => v.toISOString()),
|
|
5345
5345
|
}).transform((v) => {
|
|
5346
5346
|
return remap$(v, {
|
|
@@ -256,7 +256,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
256
256
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
257
257
|
.optional(),
|
|
258
258
|
updated: z.string().datetime({ offset: true }).default(
|
|
259
|
-
"2025-11-
|
|
259
|
+
"2025-11-12T13:22:37.672Z",
|
|
260
260
|
).transform(v => new Date(v)),
|
|
261
261
|
}).transform((v) => {
|
|
262
262
|
return remap$(v, {
|
|
@@ -295,7 +295,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
295
295
|
createdById: z.string().optional(),
|
|
296
296
|
updatedById: z.string().optional(),
|
|
297
297
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
298
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
298
|
+
updated: z.date().default(() => new Date("2025-11-12T13:22:37.672Z"))
|
|
299
299
|
.transform(v => v.toISOString()),
|
|
300
300
|
}).transform((v) => {
|
|
301
301
|
return remap$(v, {
|
|
@@ -202,7 +202,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
202
202
|
z.ZodTypeDef,
|
|
203
203
|
unknown
|
|
204
204
|
> = z.object({
|
|
205
|
-
_id: z.string().default("
|
|
205
|
+
_id: z.string().default("01K9W3QETXNCF444490QQPB62D"),
|
|
206
206
|
display_name: z.string(),
|
|
207
207
|
description: z.string().optional(),
|
|
208
208
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -245,7 +245,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
245
245
|
z.ZodTypeDef,
|
|
246
246
|
UpdateDatasourceResponseBody
|
|
247
247
|
> = z.object({
|
|
248
|
-
id: z.string().default("
|
|
248
|
+
id: z.string().default("01K9W3QETXNCF444490QQPB62D"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2988,8 +2988,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2988
2988
|
> = z.object({
|
|
2989
2989
|
_id: z.string(),
|
|
2990
2990
|
description: z.string(),
|
|
2991
|
-
created: z.string().default("2025-11-
|
|
2992
|
-
updated: z.string().default("2025-11-
|
|
2991
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
2992
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
2993
2993
|
guardrail_config: z.union([
|
|
2994
2994
|
z.lazy(() =>
|
|
2995
2995
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3031,8 +3031,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3031
3031
|
> = z.object({
|
|
3032
3032
|
id: z.string(),
|
|
3033
3033
|
description: z.string(),
|
|
3034
|
-
created: z.string().default("2025-11-
|
|
3035
|
-
updated: z.string().default("2025-11-
|
|
3034
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
3035
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
3036
3036
|
guardrailConfig: z.union([
|
|
3037
3037
|
z.lazy(() =>
|
|
3038
3038
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3322,8 +3322,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3322
3322
|
> = z.object({
|
|
3323
3323
|
_id: z.string(),
|
|
3324
3324
|
description: z.string(),
|
|
3325
|
-
created: z.string().default("2025-11-
|
|
3326
|
-
updated: z.string().default("2025-11-
|
|
3325
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
3326
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
3327
3327
|
guardrail_config: z.union([
|
|
3328
3328
|
z.lazy(() =>
|
|
3329
3329
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3368,8 +3368,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3368
3368
|
> = z.object({
|
|
3369
3369
|
id: z.string(),
|
|
3370
3370
|
description: z.string(),
|
|
3371
|
-
created: z.string().default("2025-11-
|
|
3372
|
-
updated: z.string().default("2025-11-
|
|
3371
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
3372
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
3373
3373
|
guardrailConfig: z.union([
|
|
3374
3374
|
z.lazy(() =>
|
|
3375
3375
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5707,8 +5707,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5707
5707
|
> = z.object({
|
|
5708
5708
|
_id: z.string(),
|
|
5709
5709
|
description: z.string(),
|
|
5710
|
-
created: z.string().default("2025-11-
|
|
5711
|
-
updated: z.string().default("2025-11-
|
|
5710
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
5711
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
5712
5712
|
guardrail_config: z.union([
|
|
5713
5713
|
z.lazy(() =>
|
|
5714
5714
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5821,8 +5821,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5821
5821
|
> = z.object({
|
|
5822
5822
|
id: z.string(),
|
|
5823
5823
|
description: z.string(),
|
|
5824
|
-
created: z.string().default("2025-11-
|
|
5825
|
-
updated: z.string().default("2025-11-
|
|
5824
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
5825
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
5826
5826
|
guardrailConfig: z.union([
|
|
5827
5827
|
z.lazy(() =>
|
|
5828
5828
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -6138,8 +6138,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
6138
6138
|
> = z.object({
|
|
6139
6139
|
_id: z.string(),
|
|
6140
6140
|
description: z.string(),
|
|
6141
|
-
created: z.string().default("2025-11-
|
|
6142
|
-
updated: z.string().default("2025-11-
|
|
6141
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6142
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6143
6143
|
guardrail_config: z.union([
|
|
6144
6144
|
z.lazy(() =>
|
|
6145
6145
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -6180,8 +6180,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
6180
6180
|
> = z.object({
|
|
6181
6181
|
id: z.string(),
|
|
6182
6182
|
description: z.string(),
|
|
6183
|
-
created: z.string().default("2025-11-
|
|
6184
|
-
updated: z.string().default("2025-11-
|
|
6183
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6184
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6185
6185
|
guardrailConfig: z.union([
|
|
6186
6186
|
z.lazy(() =>
|
|
6187
6187
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6466,8 +6466,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6466
6466
|
> = z.object({
|
|
6467
6467
|
_id: z.string(),
|
|
6468
6468
|
description: z.string(),
|
|
6469
|
-
created: z.string().default("2025-11-
|
|
6470
|
-
updated: z.string().default("2025-11-
|
|
6469
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6470
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6471
6471
|
guardrail_config: z.union([
|
|
6472
6472
|
z.lazy(() =>
|
|
6473
6473
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6514,8 +6514,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6514
6514
|
> = z.object({
|
|
6515
6515
|
id: z.string(),
|
|
6516
6516
|
description: z.string(),
|
|
6517
|
-
created: z.string().default("2025-11-
|
|
6518
|
-
updated: z.string().default("2025-11-
|
|
6517
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6518
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6519
6519
|
guardrailConfig: z.union([
|
|
6520
6520
|
z.lazy(() =>
|
|
6521
6521
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6784,8 +6784,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6784
6784
|
> = z.object({
|
|
6785
6785
|
_id: z.string(),
|
|
6786
6786
|
description: z.string(),
|
|
6787
|
-
created: z.string().default("2025-11-
|
|
6788
|
-
updated: z.string().default("2025-11-
|
|
6787
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6788
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6789
6789
|
guardrail_config: z.union([
|
|
6790
6790
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6791
6791
|
z.lazy(() =>
|
|
@@ -6824,8 +6824,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6824
6824
|
> = z.object({
|
|
6825
6825
|
id: z.string(),
|
|
6826
6826
|
description: z.string(),
|
|
6827
|
-
created: z.string().default("2025-11-
|
|
6828
|
-
updated: z.string().default("2025-11-
|
|
6827
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6828
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
6829
6829
|
guardrailConfig: z.union([
|
|
6830
6830
|
z.lazy(() =>
|
|
6831
6831
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -7064,8 +7064,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
7064
7064
|
> = z.object({
|
|
7065
7065
|
_id: z.string(),
|
|
7066
7066
|
description: z.string(),
|
|
7067
|
-
created: z.string().default("2025-11-
|
|
7068
|
-
updated: z.string().default("2025-11-
|
|
7067
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
7068
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
7069
7069
|
guardrail_config: z.union([
|
|
7070
7070
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
7071
7071
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -7104,8 +7104,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
7104
7104
|
> = z.object({
|
|
7105
7105
|
id: z.string(),
|
|
7106
7106
|
description: z.string(),
|
|
7107
|
-
created: z.string().default("2025-11-
|
|
7108
|
-
updated: z.string().default("2025-11-
|
|
7107
|
+
created: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
7108
|
+
updated: z.string().default("2025-11-12T13:22:40.387Z"),
|
|
7109
7109
|
guardrailConfig: z.union([
|
|
7110
7110
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7111
7111
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -462,6 +462,7 @@ export type ModelType = ClosedEnum<typeof ModelType>;
|
|
|
462
462
|
export type PromptConfig = {
|
|
463
463
|
stream?: boolean | undefined;
|
|
464
464
|
model?: string | undefined;
|
|
465
|
+
displayName?: string | undefined;
|
|
465
466
|
/**
|
|
466
467
|
* Model Parameters: Not all parameters apply to every model
|
|
467
468
|
*/
|
|
@@ -1637,6 +1638,7 @@ export type UpdatePromptPromptsResponseMessages = {
|
|
|
1637
1638
|
export type UpdatePromptPromptConfig = {
|
|
1638
1639
|
stream?: boolean | undefined;
|
|
1639
1640
|
model?: string | undefined;
|
|
1641
|
+
displayName?: string | undefined;
|
|
1640
1642
|
/**
|
|
1641
1643
|
* The id of the resource
|
|
1642
1644
|
*/
|
|
@@ -2767,6 +2769,7 @@ export const PromptConfig$inboundSchema: z.ZodType<
|
|
|
2767
2769
|
> = z.object({
|
|
2768
2770
|
stream: z.boolean().optional(),
|
|
2769
2771
|
model: z.string().optional(),
|
|
2772
|
+
display_name: z.string().optional(),
|
|
2770
2773
|
model_parameters: z.lazy(() => UpdatePromptModelParameters$inboundSchema)
|
|
2771
2774
|
.optional(),
|
|
2772
2775
|
provider: Provider$inboundSchema.optional(),
|
|
@@ -2777,6 +2780,7 @@ export const PromptConfig$inboundSchema: z.ZodType<
|
|
|
2777
2780
|
is_private: z.boolean().default(false),
|
|
2778
2781
|
}).transform((v) => {
|
|
2779
2782
|
return remap$(v, {
|
|
2783
|
+
"display_name": "displayName",
|
|
2780
2784
|
"model_parameters": "modelParameters",
|
|
2781
2785
|
"model_db_id": "modelDbId",
|
|
2782
2786
|
"model_type": "modelType",
|
|
@@ -2787,6 +2791,7 @@ export const PromptConfig$inboundSchema: z.ZodType<
|
|
|
2787
2791
|
export type PromptConfig$Outbound = {
|
|
2788
2792
|
stream?: boolean | undefined;
|
|
2789
2793
|
model?: string | undefined;
|
|
2794
|
+
display_name?: string | undefined;
|
|
2790
2795
|
model_parameters?: UpdatePromptModelParameters$Outbound | undefined;
|
|
2791
2796
|
provider?: string | undefined;
|
|
2792
2797
|
version?: string | undefined;
|
|
@@ -2804,6 +2809,7 @@ export const PromptConfig$outboundSchema: z.ZodType<
|
|
|
2804
2809
|
> = z.object({
|
|
2805
2810
|
stream: z.boolean().optional(),
|
|
2806
2811
|
model: z.string().optional(),
|
|
2812
|
+
displayName: z.string().optional(),
|
|
2807
2813
|
modelParameters: z.lazy(() => UpdatePromptModelParameters$outboundSchema)
|
|
2808
2814
|
.optional(),
|
|
2809
2815
|
provider: Provider$outboundSchema.optional(),
|
|
@@ -2814,6 +2820,7 @@ export const PromptConfig$outboundSchema: z.ZodType<
|
|
|
2814
2820
|
isPrivate: z.boolean().default(false),
|
|
2815
2821
|
}).transform((v) => {
|
|
2816
2822
|
return remap$(v, {
|
|
2823
|
+
displayName: "display_name",
|
|
2817
2824
|
modelParameters: "model_parameters",
|
|
2818
2825
|
modelDbId: "model_db_id",
|
|
2819
2826
|
modelType: "model_type",
|
|
@@ -6110,6 +6117,7 @@ export const UpdatePromptPromptConfig$inboundSchema: z.ZodType<
|
|
|
6110
6117
|
> = z.object({
|
|
6111
6118
|
stream: z.boolean().optional(),
|
|
6112
6119
|
model: z.string().optional(),
|
|
6120
|
+
display_name: z.string().optional(),
|
|
6113
6121
|
model_db_id: z.nullable(z.string()).optional(),
|
|
6114
6122
|
model_type: z.nullable(UpdatePromptModelType$inboundSchema).optional(),
|
|
6115
6123
|
model_parameters: z.lazy(() =>
|
|
@@ -6123,6 +6131,7 @@ export const UpdatePromptPromptConfig$inboundSchema: z.ZodType<
|
|
|
6123
6131
|
),
|
|
6124
6132
|
}).transform((v) => {
|
|
6125
6133
|
return remap$(v, {
|
|
6134
|
+
"display_name": "displayName",
|
|
6126
6135
|
"model_db_id": "modelDbId",
|
|
6127
6136
|
"model_type": "modelType",
|
|
6128
6137
|
"model_parameters": "modelParameters",
|
|
@@ -6133,6 +6142,7 @@ export const UpdatePromptPromptConfig$inboundSchema: z.ZodType<
|
|
|
6133
6142
|
export type UpdatePromptPromptConfig$Outbound = {
|
|
6134
6143
|
stream?: boolean | undefined;
|
|
6135
6144
|
model?: string | undefined;
|
|
6145
|
+
display_name?: string | undefined;
|
|
6136
6146
|
model_db_id?: string | null | undefined;
|
|
6137
6147
|
model_type?: string | null | undefined;
|
|
6138
6148
|
model_parameters?: UpdatePromptPromptsModelParameters$Outbound | undefined;
|
|
@@ -6150,6 +6160,7 @@ export const UpdatePromptPromptConfig$outboundSchema: z.ZodType<
|
|
|
6150
6160
|
> = z.object({
|
|
6151
6161
|
stream: z.boolean().optional(),
|
|
6152
6162
|
model: z.string().optional(),
|
|
6163
|
+
displayName: z.string().optional(),
|
|
6153
6164
|
modelDbId: z.nullable(z.string()).optional(),
|
|
6154
6165
|
modelType: z.nullable(UpdatePromptModelType$outboundSchema).optional(),
|
|
6155
6166
|
modelParameters: z.lazy(() =>
|
|
@@ -6163,6 +6174,7 @@ export const UpdatePromptPromptConfig$outboundSchema: z.ZodType<
|
|
|
6163
6174
|
),
|
|
6164
6175
|
}).transform((v) => {
|
|
6165
6176
|
return remap$(v, {
|
|
6177
|
+
displayName: "display_name",
|
|
6166
6178
|
modelDbId: "model_db_id",
|
|
6167
6179
|
modelType: "model_type",
|
|
6168
6180
|
modelParameters: "model_parameters",
|
|
@@ -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("01K9W3QEQ4YAWNMSJFY3F3XNKP"),
|
|
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("01K9W3QEQ4YAWNMSJFY3F3XNKP"),
|
|
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("01K9W3QEQ37P3ED6DA1V2CCDCD"),
|
|
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("01K9W3QEQ37P3ED6DA1V2CCDCD"),
|
|
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("01K9W3QEQ1V2VVPE3S1KS7BF2H"),
|
|
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("01K9W3QEQ1V2VVPE3S1KS7BF2H"),
|
|
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("01K9W3QEQ0MAA4RHK02BK2TJ57"),
|
|
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("01K9W3QEQ0MAA4RHK02BK2TJ57"),
|
|
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("01K9W3QEPYS22YQT8PXVXN575H"),
|
|
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("01K9W3QEPYS22YQT8PXVXN575H"),
|
|
3419
3419
|
path: z.string(),
|
|
3420
3420
|
key: z.string(),
|
|
3421
3421
|
displayName: z.string().optional(),
|