@orq-ai/node 4.0.0-rc.48 → 4.0.0-rc.49
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 -237
- package/bin/mcp-server.js.map +38 -38
- 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 +12 -12
- package/models/operations/duplicatetool.js +12 -12
- 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 +12 -12
- 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 +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/syncmcptool.js +12 -12
- 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 +14 -14
- 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/createtool.ts +12 -12
- package/src/models/operations/duplicatetool.ts +12 -12
- 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 +12 -12
- 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 +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/syncmcptool.ts +12 -12
- 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 +14 -14
|
@@ -489,14 +489,14 @@ function updateToolRequestBodyToolsSchemaFromJSON(jsonString) {
|
|
|
489
489
|
}
|
|
490
490
|
/** @internal */
|
|
491
491
|
exports.RequestBodyTools$inboundSchema = z.object({
|
|
492
|
-
id: z.string().default("
|
|
492
|
+
id: z.string().default("01KADVBBN6B0HCMYMPWYM52MNH"),
|
|
493
493
|
name: z.string(),
|
|
494
494
|
description: z.string().optional(),
|
|
495
495
|
schema: z.lazy(() => exports.UpdateToolRequestBodyToolsSchema$inboundSchema),
|
|
496
496
|
});
|
|
497
497
|
/** @internal */
|
|
498
498
|
exports.RequestBodyTools$outboundSchema = z.object({
|
|
499
|
-
id: z.string().default("
|
|
499
|
+
id: z.string().default("01KADVBBN6B0HCMYMPWYM52MNH"),
|
|
500
500
|
name: z.string(),
|
|
501
501
|
description: z.string().optional(),
|
|
502
502
|
schema: z.lazy(() => exports.UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -1042,7 +1042,7 @@ function updateToolResponseBodyCodeToolFromJSON(jsonString) {
|
|
|
1042
1042
|
}
|
|
1043
1043
|
/** @internal */
|
|
1044
1044
|
exports.UpdateToolResponseBody5$inboundSchema = z.object({
|
|
1045
|
-
_id: z.string().default("
|
|
1045
|
+
_id: z.string().default("tool_01KADVBBMH7XNQ16DNGCHXKJAG"),
|
|
1046
1046
|
path: z.string(),
|
|
1047
1047
|
key: z.string(),
|
|
1048
1048
|
display_name: z.string().optional(),
|
|
@@ -1072,7 +1072,7 @@ exports.UpdateToolResponseBody5$inboundSchema = z.object({
|
|
|
1072
1072
|
});
|
|
1073
1073
|
/** @internal */
|
|
1074
1074
|
exports.UpdateToolResponseBody5$outboundSchema = z.object({
|
|
1075
|
-
id: z.string().default("
|
|
1075
|
+
id: z.string().default("tool_01KADVBBMH7XNQ16DNGCHXKJAG"),
|
|
1076
1076
|
path: z.string(),
|
|
1077
1077
|
key: z.string(),
|
|
1078
1078
|
displayName: z.string().optional(),
|
|
@@ -1156,14 +1156,14 @@ function updateToolResponseBodyToolsSchemaFromJSON(jsonString) {
|
|
|
1156
1156
|
}
|
|
1157
1157
|
/** @internal */
|
|
1158
1158
|
exports.UpdateToolResponseBodyTools$inboundSchema = z.object({
|
|
1159
|
-
id: z.string().default("
|
|
1159
|
+
id: z.string().default("01KADVBBMF2XX08429D772QV0F"),
|
|
1160
1160
|
name: z.string(),
|
|
1161
1161
|
description: z.string().optional(),
|
|
1162
1162
|
schema: z.lazy(() => exports.UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
1163
1163
|
});
|
|
1164
1164
|
/** @internal */
|
|
1165
1165
|
exports.UpdateToolResponseBodyTools$outboundSchema = z.object({
|
|
1166
|
-
id: z.string().default("
|
|
1166
|
+
id: z.string().default("01KADVBBMF2XX08429D772QV0F"),
|
|
1167
1167
|
name: z.string(),
|
|
1168
1168
|
description: z.string().optional(),
|
|
1169
1169
|
schema: z.lazy(() => exports.UpdateToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1212,7 +1212,7 @@ function updateToolResponseBodyMcpFromJSON(jsonString) {
|
|
|
1212
1212
|
}
|
|
1213
1213
|
/** @internal */
|
|
1214
1214
|
exports.UpdateToolResponseBody4$inboundSchema = z.object({
|
|
1215
|
-
_id: z.string().default("
|
|
1215
|
+
_id: z.string().default("tool_01KADVBBMDG6WVC6QT2JZP2ZA7"),
|
|
1216
1216
|
path: z.string(),
|
|
1217
1217
|
key: z.string(),
|
|
1218
1218
|
display_name: z.string().optional(),
|
|
@@ -1240,7 +1240,7 @@ exports.UpdateToolResponseBody4$inboundSchema = z.object({
|
|
|
1240
1240
|
});
|
|
1241
1241
|
/** @internal */
|
|
1242
1242
|
exports.UpdateToolResponseBody4$outboundSchema = z.object({
|
|
1243
|
-
id: z.string().default("
|
|
1243
|
+
id: z.string().default("tool_01KADVBBMDG6WVC6QT2JZP2ZA7"),
|
|
1244
1244
|
path: z.string(),
|
|
1245
1245
|
key: z.string(),
|
|
1246
1246
|
displayName: z.string().optional(),
|
|
@@ -1394,7 +1394,7 @@ function updateToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
1394
1394
|
}
|
|
1395
1395
|
/** @internal */
|
|
1396
1396
|
exports.UpdateToolResponseBody3$inboundSchema = z.object({
|
|
1397
|
-
_id: z.string().default("
|
|
1397
|
+
_id: z.string().default("tool_01KADVBBMBXK1RYKKH3QX5EPZ3"),
|
|
1398
1398
|
path: z.string(),
|
|
1399
1399
|
key: z.string(),
|
|
1400
1400
|
display_name: z.string().optional(),
|
|
@@ -1422,7 +1422,7 @@ exports.UpdateToolResponseBody3$inboundSchema = z.object({
|
|
|
1422
1422
|
});
|
|
1423
1423
|
/** @internal */
|
|
1424
1424
|
exports.UpdateToolResponseBody3$outboundSchema = z.object({
|
|
1425
|
-
id: z.string().default("
|
|
1425
|
+
id: z.string().default("tool_01KADVBBMBXK1RYKKH3QX5EPZ3"),
|
|
1426
1426
|
path: z.string(),
|
|
1427
1427
|
key: z.string(),
|
|
1428
1428
|
displayName: z.string().optional(),
|
|
@@ -1510,7 +1510,7 @@ function updateToolResponseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
1510
1510
|
}
|
|
1511
1511
|
/** @internal */
|
|
1512
1512
|
exports.UpdateToolResponseBody2$inboundSchema = z.object({
|
|
1513
|
-
_id: z.string().default("
|
|
1513
|
+
_id: z.string().default("tool_01KADVBBM9V986PKD48SQA6ND8"),
|
|
1514
1514
|
path: z.string(),
|
|
1515
1515
|
key: z.string(),
|
|
1516
1516
|
display_name: z.string().optional(),
|
|
@@ -1539,7 +1539,7 @@ exports.UpdateToolResponseBody2$inboundSchema = z.object({
|
|
|
1539
1539
|
});
|
|
1540
1540
|
/** @internal */
|
|
1541
1541
|
exports.UpdateToolResponseBody2$outboundSchema = z.object({
|
|
1542
|
-
id: z.string().default("
|
|
1542
|
+
id: z.string().default("tool_01KADVBBM9V986PKD48SQA6ND8"),
|
|
1543
1543
|
path: z.string(),
|
|
1544
1544
|
key: z.string(),
|
|
1545
1545
|
displayName: z.string().optional(),
|
|
@@ -1634,7 +1634,7 @@ function updateToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
1634
1634
|
}
|
|
1635
1635
|
/** @internal */
|
|
1636
1636
|
exports.UpdateToolResponseBody1$inboundSchema = z.object({
|
|
1637
|
-
_id: z.string().default("
|
|
1637
|
+
_id: z.string().default("tool_01KADVBBM8FS5HKY46KYNBZW53"),
|
|
1638
1638
|
path: z.string(),
|
|
1639
1639
|
key: z.string(),
|
|
1640
1640
|
display_name: z.string().optional(),
|
|
@@ -1662,7 +1662,7 @@ exports.UpdateToolResponseBody1$inboundSchema = z.object({
|
|
|
1662
1662
|
});
|
|
1663
1663
|
/** @internal */
|
|
1664
1664
|
exports.UpdateToolResponseBody1$outboundSchema = z.object({
|
|
1665
|
-
id: z.string().default("
|
|
1665
|
+
id: z.string().default("tool_01KADVBBM8FS5HKY46KYNBZW53"),
|
|
1666
1666
|
path: z.string(),
|
|
1667
1667
|
key: z.string(),
|
|
1668
1668
|
displayName: z.string().optional(),
|
package/package.json
CHANGED
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: "4.0.0-rc.
|
|
71
|
+
sdkVersion: "4.0.0-rc.49",
|
|
72
72
|
genVersion: "2.755.9",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.49 2.755.9 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-19T10:42:35.789Z",
|
|
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-19T10:42:35.789Z"))
|
|
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-19T10:42:35.387Z",
|
|
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-19T10:42:35.387Z"))
|
|
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-19T10:42:35.387Z",
|
|
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-19T10:42:35.387Z"))
|
|
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-19T10:42:46.806Z",
|
|
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-19T10:42:46.806Z"))
|
|
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-19T10:42:46.805Z",
|
|
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-19T10:42:46.805Z"))
|
|
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-19T10:42:46.805Z",
|
|
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-19T10:42:46.805Z"))
|
|
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-19T10:42:35.387Z",
|
|
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-19T10:42:35.387Z"))
|
|
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("01KADVBBS7CZ4ED9QP03PEXA9H"),
|
|
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("01KADVBBS7CZ4ED9QP03PEXA9H"),
|
|
655
655
|
displayName: z.string(),
|
|
656
656
|
description: z.string().optional(),
|
|
657
657
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2756,8 +2756,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2756
2756
|
> = z.object({
|
|
2757
2757
|
_id: z.string(),
|
|
2758
2758
|
description: z.string(),
|
|
2759
|
-
created: z.string().default("2025-11-
|
|
2760
|
-
updated: z.string().default("2025-11-
|
|
2759
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
2760
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
2761
2761
|
guardrail_config: z.union([
|
|
2762
2762
|
z.lazy(() =>
|
|
2763
2763
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2799,8 +2799,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2799
2799
|
> = z.object({
|
|
2800
2800
|
id: z.string(),
|
|
2801
2801
|
description: z.string(),
|
|
2802
|
-
created: z.string().default("2025-11-
|
|
2803
|
-
updated: z.string().default("2025-11-
|
|
2802
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
2803
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
2804
2804
|
guardrailConfig: z.union([
|
|
2805
2805
|
z.lazy(() =>
|
|
2806
2806
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3081,8 +3081,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3081
3081
|
.object({
|
|
3082
3082
|
_id: z.string(),
|
|
3083
3083
|
description: z.string(),
|
|
3084
|
-
created: z.string().default("2025-11-
|
|
3085
|
-
updated: z.string().default("2025-11-
|
|
3084
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
3085
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
3086
3086
|
guardrail_config: z.union([
|
|
3087
3087
|
z.lazy(() =>
|
|
3088
3088
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3127,8 +3127,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3127
3127
|
> = z.object({
|
|
3128
3128
|
id: z.string(),
|
|
3129
3129
|
description: z.string(),
|
|
3130
|
-
created: z.string().default("2025-11-
|
|
3131
|
-
updated: z.string().default("2025-11-
|
|
3130
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
3131
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
3132
3132
|
guardrailConfig: z.union([
|
|
3133
3133
|
z.lazy(() =>
|
|
3134
3134
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5315,8 +5315,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5315
5315
|
> = z.object({
|
|
5316
5316
|
_id: z.string(),
|
|
5317
5317
|
description: z.string(),
|
|
5318
|
-
created: z.string().default("2025-11-
|
|
5319
|
-
updated: z.string().default("2025-11-
|
|
5318
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5319
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5320
5320
|
guardrail_config: z.union([
|
|
5321
5321
|
z.lazy(() =>
|
|
5322
5322
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5429,8 +5429,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5429
5429
|
> = z.object({
|
|
5430
5430
|
id: z.string(),
|
|
5431
5431
|
description: z.string(),
|
|
5432
|
-
created: z.string().default("2025-11-
|
|
5433
|
-
updated: z.string().default("2025-11-
|
|
5432
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5433
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5434
5434
|
guardrailConfig: z.union([
|
|
5435
5435
|
z.lazy(() =>
|
|
5436
5436
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5747,8 +5747,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5747
5747
|
> = z.object({
|
|
5748
5748
|
_id: z.string(),
|
|
5749
5749
|
description: z.string(),
|
|
5750
|
-
created: z.string().default("2025-11-
|
|
5751
|
-
updated: z.string().default("2025-11-
|
|
5750
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5751
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5752
5752
|
guardrail_config: z.union([
|
|
5753
5753
|
z.lazy(() =>
|
|
5754
5754
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5789,8 +5789,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5789
5789
|
> = z.object({
|
|
5790
5790
|
id: z.string(),
|
|
5791
5791
|
description: z.string(),
|
|
5792
|
-
created: z.string().default("2025-11-
|
|
5793
|
-
updated: z.string().default("2025-11-
|
|
5792
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5793
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5794
5794
|
guardrailConfig: z.union([
|
|
5795
5795
|
z.lazy(() =>
|
|
5796
5796
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6070,8 +6070,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6070
6070
|
> = z.object({
|
|
6071
6071
|
_id: z.string(),
|
|
6072
6072
|
description: z.string(),
|
|
6073
|
-
created: z.string().default("2025-11-
|
|
6074
|
-
updated: z.string().default("2025-11-
|
|
6073
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6074
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6075
6075
|
guardrail_config: z.union([
|
|
6076
6076
|
z.lazy(() =>
|
|
6077
6077
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6118,8 +6118,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6118
6118
|
> = z.object({
|
|
6119
6119
|
id: z.string(),
|
|
6120
6120
|
description: z.string(),
|
|
6121
|
-
created: z.string().default("2025-11-
|
|
6122
|
-
updated: z.string().default("2025-11-
|
|
6121
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6122
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6123
6123
|
guardrailConfig: z.union([
|
|
6124
6124
|
z.lazy(() =>
|
|
6125
6125
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6375,8 +6375,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6375
6375
|
> = z.object({
|
|
6376
6376
|
_id: z.string(),
|
|
6377
6377
|
description: z.string(),
|
|
6378
|
-
created: z.string().default("2025-11-
|
|
6379
|
-
updated: z.string().default("2025-11-
|
|
6378
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6379
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6380
6380
|
guardrail_config: z.union([
|
|
6381
6381
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6382
6382
|
z.lazy(() =>
|
|
@@ -6415,8 +6415,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6415
6415
|
> = z.object({
|
|
6416
6416
|
id: z.string(),
|
|
6417
6417
|
description: z.string(),
|
|
6418
|
-
created: z.string().default("2025-11-
|
|
6419
|
-
updated: z.string().default("2025-11-
|
|
6418
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6419
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6420
6420
|
guardrailConfig: z.union([
|
|
6421
6421
|
z.lazy(() =>
|
|
6422
6422
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6654,8 +6654,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6654
6654
|
> = z.object({
|
|
6655
6655
|
_id: z.string(),
|
|
6656
6656
|
description: z.string(),
|
|
6657
|
-
created: z.string().default("2025-11-
|
|
6658
|
-
updated: z.string().default("2025-11-
|
|
6657
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6658
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6659
6659
|
guardrail_config: z.union([
|
|
6660
6660
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6661
6661
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6694,8 +6694,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6694
6694
|
> = z.object({
|
|
6695
6695
|
id: z.string(),
|
|
6696
6696
|
description: z.string(),
|
|
6697
|
-
created: z.string().default("2025-11-
|
|
6698
|
-
updated: z.string().default("2025-11-
|
|
6697
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6698
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6699
6699
|
guardrailConfig: z.union([
|
|
6700
6700
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6701
6701
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2571,7 +2571,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2571
2571
|
z.ZodTypeDef,
|
|
2572
2572
|
unknown
|
|
2573
2573
|
> = z.object({
|
|
2574
|
-
_id: z.string().default("
|
|
2574
|
+
_id: z.string().default("tool_01KADVBBM09PGGVJP0C4CCZ9BY"),
|
|
2575
2575
|
path: z.string(),
|
|
2576
2576
|
key: z.string(),
|
|
2577
2577
|
display_name: z.string().optional(),
|
|
@@ -2625,7 +2625,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2625
2625
|
z.ZodTypeDef,
|
|
2626
2626
|
ResponseBody5
|
|
2627
2627
|
> = z.object({
|
|
2628
|
-
id: z.string().default("
|
|
2628
|
+
id: z.string().default("tool_01KADVBBM09PGGVJP0C4CCZ9BY"),
|
|
2629
2629
|
path: z.string(),
|
|
2630
2630
|
key: z.string(),
|
|
2631
2631
|
displayName: z.string().optional(),
|
|
@@ -2795,7 +2795,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2795
2795
|
z.ZodTypeDef,
|
|
2796
2796
|
unknown
|
|
2797
2797
|
> = z.object({
|
|
2798
|
-
id: z.string().default("
|
|
2798
|
+
id: z.string().default("01KADVBBKY3MC9JPV9V458DZHR"),
|
|
2799
2799
|
name: z.string(),
|
|
2800
2800
|
description: z.string().optional(),
|
|
2801
2801
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2814,7 +2814,7 @@ export const ResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2814
2814
|
z.ZodTypeDef,
|
|
2815
2815
|
ResponseBodyTools
|
|
2816
2816
|
> = z.object({
|
|
2817
|
-
id: z.string().default("
|
|
2817
|
+
id: z.string().default("01KADVBBKY3MC9JPV9V458DZHR"),
|
|
2818
2818
|
name: z.string(),
|
|
2819
2819
|
description: z.string().optional(),
|
|
2820
2820
|
schema: z.lazy(() => CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -2909,7 +2909,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2909
2909
|
z.ZodTypeDef,
|
|
2910
2910
|
unknown
|
|
2911
2911
|
> = z.object({
|
|
2912
|
-
_id: z.string().default("
|
|
2912
|
+
_id: z.string().default("tool_01KADVBBKX8WPHZ59ASNT3VVAG"),
|
|
2913
2913
|
path: z.string(),
|
|
2914
2914
|
key: z.string(),
|
|
2915
2915
|
display_name: z.string().optional(),
|
|
@@ -2962,7 +2962,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2962
2962
|
z.ZodTypeDef,
|
|
2963
2963
|
ResponseBody4
|
|
2964
2964
|
> = z.object({
|
|
2965
|
-
id: z.string().default("
|
|
2965
|
+
id: z.string().default("tool_01KADVBBKX8WPHZ59ASNT3VVAG"),
|
|
2966
2966
|
path: z.string(),
|
|
2967
2967
|
key: z.string(),
|
|
2968
2968
|
displayName: z.string().optional(),
|
|
@@ -3318,7 +3318,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
3318
3318
|
z.ZodTypeDef,
|
|
3319
3319
|
unknown
|
|
3320
3320
|
> = z.object({
|
|
3321
|
-
_id: z.string().default("
|
|
3321
|
+
_id: z.string().default("tool_01KADVBBKSJE2J2NWBB7QNXRD9"),
|
|
3322
3322
|
path: z.string(),
|
|
3323
3323
|
key: z.string(),
|
|
3324
3324
|
display_name: z.string().optional(),
|
|
@@ -3369,7 +3369,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
3369
3369
|
z.ZodTypeDef,
|
|
3370
3370
|
ResponseBody3
|
|
3371
3371
|
> = z.object({
|
|
3372
|
-
id: z.string().default("
|
|
3372
|
+
id: z.string().default("tool_01KADVBBKSJE2J2NWBB7QNXRD9"),
|
|
3373
3373
|
path: z.string(),
|
|
3374
3374
|
key: z.string(),
|
|
3375
3375
|
displayName: z.string().optional(),
|
|
@@ -3539,7 +3539,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
3539
3539
|
z.ZodTypeDef,
|
|
3540
3540
|
unknown
|
|
3541
3541
|
> = z.object({
|
|
3542
|
-
_id: z.string().default("
|
|
3542
|
+
_id: z.string().default("tool_01KADVBBKQZ7PWT8DGXX9CB4BS"),
|
|
3543
3543
|
path: z.string(),
|
|
3544
3544
|
key: z.string(),
|
|
3545
3545
|
display_name: z.string().optional(),
|
|
@@ -3591,7 +3591,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
3591
3591
|
z.ZodTypeDef,
|
|
3592
3592
|
ResponseBody2
|
|
3593
3593
|
> = z.object({
|
|
3594
|
-
id: z.string().default("
|
|
3594
|
+
id: z.string().default("tool_01KADVBBKQZ7PWT8DGXX9CB4BS"),
|
|
3595
3595
|
path: z.string(),
|
|
3596
3596
|
key: z.string(),
|
|
3597
3597
|
displayName: z.string().optional(),
|
|
@@ -3777,7 +3777,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3777
3777
|
z.ZodTypeDef,
|
|
3778
3778
|
unknown
|
|
3779
3779
|
> = z.object({
|
|
3780
|
-
_id: z.string().default("
|
|
3780
|
+
_id: z.string().default("tool_01KADVBBKMC9E4GXCVRE63Z271"),
|
|
3781
3781
|
path: z.string(),
|
|
3782
3782
|
key: z.string(),
|
|
3783
3783
|
display_name: z.string().optional(),
|
|
@@ -3828,7 +3828,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3828
3828
|
z.ZodTypeDef,
|
|
3829
3829
|
ResponseBody1
|
|
3830
3830
|
> = z.object({
|
|
3831
|
-
id: z.string().default("
|
|
3831
|
+
id: z.string().default("tool_01KADVBBKMC9E4GXCVRE63Z271"),
|
|
3832
3832
|
path: z.string(),
|
|
3833
3833
|
key: z.string(),
|
|
3834
3834
|
displayName: z.string().optional(),
|