@orq-ai/node 3.11.9 → 3.11.11
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 +103 -103
- package/bin/mcp-server.js.map +26 -26
- 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/lib/config.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/mcp-server.js.map +1 -1
- package/mcp-server/server.js +1 -1
- package/mcp-server/server.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- 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 +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- 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/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- 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/getevals.ts +28 -28
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- 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 +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
|
@@ -105,7 +105,7 @@ var RetrieveDatasourceStatus$;
|
|
|
105
105
|
})(RetrieveDatasourceStatus$ || (exports.RetrieveDatasourceStatus$ = RetrieveDatasourceStatus$ = {}));
|
|
106
106
|
/** @internal */
|
|
107
107
|
exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
108
|
-
_id: z.string().default("
|
|
108
|
+
_id: z.string().default("01K412RVMH7F1SAN5YFC15M34Q"),
|
|
109
109
|
display_name: z.string(),
|
|
110
110
|
description: z.string().optional(),
|
|
111
111
|
status: exports.RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -129,7 +129,7 @@ exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
|
129
129
|
});
|
|
130
130
|
/** @internal */
|
|
131
131
|
exports.RetrieveDatasourceResponseBody$outboundSchema = z.object({
|
|
132
|
-
id: z.string().default("
|
|
132
|
+
id: z.string().default("01K412RVMH7F1SAN5YFC15M34Q"),
|
|
133
133
|
displayName: z.string(),
|
|
134
134
|
description: z.string().optional(),
|
|
135
135
|
status: exports.RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -135,7 +135,7 @@ exports.UpdateContactResponseBody$inboundSchema = z.object({
|
|
|
135
135
|
metadata: z.record(z.any()).optional(),
|
|
136
136
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
137
137
|
.optional(),
|
|
138
|
-
updated: z.string().datetime({ offset: true }).default("2025-08-
|
|
138
|
+
updated: z.string().datetime({ offset: true }).default("2025-08-31T22:08:02.137Z").transform(v => new Date(v)),
|
|
139
139
|
}).transform((v) => {
|
|
140
140
|
return (0, primitives_js_1.remap)(v, {
|
|
141
141
|
"_id": "id",
|
|
@@ -154,7 +154,7 @@ exports.UpdateContactResponseBody$outboundSchema = z.object({
|
|
|
154
154
|
tags: z.array(z.string()).optional(),
|
|
155
155
|
metadata: z.record(z.any()).optional(),
|
|
156
156
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
157
|
-
updated: z.date().default(() => new Date("2025-08-
|
|
157
|
+
updated: z.date().default(() => new Date("2025-08-31T22:08:02.137Z"))
|
|
158
158
|
.transform(v => v.toISOString()),
|
|
159
159
|
}).transform((v) => {
|
|
160
160
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -2308,7 +2308,7 @@ exports.UpdateDatapointResponseBody$inboundSchema = z.object({
|
|
|
2308
2308
|
updated_by_id: z.string().optional(),
|
|
2309
2309
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2310
2310
|
.optional(),
|
|
2311
|
-
updated: z.string().datetime({ offset: true }).default("2025-08-
|
|
2311
|
+
updated: z.string().datetime({ offset: true }).default("2025-08-31T22:08:02.137Z").transform(v => new Date(v)),
|
|
2312
2312
|
}).transform((v) => {
|
|
2313
2313
|
return (0, primitives_js_1.remap)(v, {
|
|
2314
2314
|
"_id": "id",
|
|
@@ -2336,7 +2336,7 @@ exports.UpdateDatapointResponseBody$outboundSchema = z.object({
|
|
|
2336
2336
|
createdById: z.string().optional(),
|
|
2337
2337
|
updatedById: z.string().optional(),
|
|
2338
2338
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
2339
|
-
updated: z.date().default(() => new Date("2025-08-
|
|
2339
|
+
updated: z.date().default(() => new Date("2025-08-31T22:08:02.137Z"))
|
|
2340
2340
|
.transform(v => v.toISOString()),
|
|
2341
2341
|
}).transform((v) => {
|
|
2342
2342
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -174,7 +174,7 @@ exports.UpdateDatasetResponseBody$inboundSchema = z.object({
|
|
|
174
174
|
version: z.string().optional(),
|
|
175
175
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
176
176
|
.optional(),
|
|
177
|
-
updated: z.string().datetime({ offset: true }).default("2025-08-
|
|
177
|
+
updated: z.string().datetime({ offset: true }).default("2025-08-31T22:08:02.137Z").transform(v => new Date(v)),
|
|
178
178
|
}).transform((v) => {
|
|
179
179
|
return (0, primitives_js_1.remap)(v, {
|
|
180
180
|
"_id": "id",
|
|
@@ -198,7 +198,7 @@ exports.UpdateDatasetResponseBody$outboundSchema = z.object({
|
|
|
198
198
|
parentId: z.string().optional(),
|
|
199
199
|
version: z.string().optional(),
|
|
200
200
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
201
|
-
updated: z.date().default(() => new Date("2025-08-
|
|
201
|
+
updated: z.date().default(() => new Date("2025-08-31T22:08:02.137Z"))
|
|
202
202
|
.transform(v => v.toISOString()),
|
|
203
203
|
}).transform((v) => {
|
|
204
204
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -144,7 +144,7 @@ var UpdateDatasourceStatus$;
|
|
|
144
144
|
})(UpdateDatasourceStatus$ || (exports.UpdateDatasourceStatus$ = UpdateDatasourceStatus$ = {}));
|
|
145
145
|
/** @internal */
|
|
146
146
|
exports.UpdateDatasourceResponseBody$inboundSchema = z.object({
|
|
147
|
-
_id: z.string().default("
|
|
147
|
+
_id: z.string().default("01K412RVMJC39PWJYPDWVKQMJ2"),
|
|
148
148
|
display_name: z.string(),
|
|
149
149
|
description: z.string().optional(),
|
|
150
150
|
status: exports.UpdateDatasourceStatus$inboundSchema,
|
|
@@ -168,7 +168,7 @@ exports.UpdateDatasourceResponseBody$inboundSchema = z.object({
|
|
|
168
168
|
});
|
|
169
169
|
/** @internal */
|
|
170
170
|
exports.UpdateDatasourceResponseBody$outboundSchema = z.object({
|
|
171
|
-
id: z.string().default("
|
|
171
|
+
id: z.string().default("01K412RVMJC39PWJYPDWVKQMJ2"),
|
|
172
172
|
displayName: z.string(),
|
|
173
173
|
description: z.string().optional(),
|
|
174
174
|
status: exports.UpdateDatasourceStatus$outboundSchema,
|
|
@@ -1302,8 +1302,8 @@ var UpdateEvalResponseBodyEvalsResponse200Type$;
|
|
|
1302
1302
|
exports.UpdateEvalResponseBodyPython$inboundSchema = z.object({
|
|
1303
1303
|
_id: z.string(),
|
|
1304
1304
|
description: z.string(),
|
|
1305
|
-
created: z.string().default("2025-08-
|
|
1306
|
-
updated: z.string().default("2025-08-
|
|
1305
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1306
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1307
1307
|
guardrail_config: z.union([
|
|
1308
1308
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
1309
1309
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
@@ -1321,8 +1321,8 @@ exports.UpdateEvalResponseBodyPython$inboundSchema = z.object({
|
|
|
1321
1321
|
exports.UpdateEvalResponseBodyPython$outboundSchema = z.object({
|
|
1322
1322
|
id: z.string(),
|
|
1323
1323
|
description: z.string(),
|
|
1324
|
-
created: z.string().default("2025-08-
|
|
1325
|
-
updated: z.string().default("2025-08-
|
|
1324
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1325
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1326
1326
|
guardrailConfig: z.union([
|
|
1327
1327
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
1328
1328
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
@@ -1524,8 +1524,8 @@ var UpdateEvalResponseBodyMethod$;
|
|
|
1524
1524
|
exports.UpdateEvalResponseBodyHTTP$inboundSchema = z.object({
|
|
1525
1525
|
_id: z.string(),
|
|
1526
1526
|
description: z.string(),
|
|
1527
|
-
created: z.string().default("2025-08-
|
|
1528
|
-
updated: z.string().default("2025-08-
|
|
1527
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1528
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1529
1529
|
guardrail_config: z.union([
|
|
1530
1530
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
1531
1531
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
@@ -1546,8 +1546,8 @@ exports.UpdateEvalResponseBodyHTTP$inboundSchema = z.object({
|
|
|
1546
1546
|
exports.UpdateEvalResponseBodyHTTP$outboundSchema = z.object({
|
|
1547
1547
|
id: z.string(),
|
|
1548
1548
|
description: z.string(),
|
|
1549
|
-
created: z.string().default("2025-08-
|
|
1550
|
-
updated: z.string().default("2025-08-
|
|
1549
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1550
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1551
1551
|
guardrailConfig: z.union([
|
|
1552
1552
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
1553
1553
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
@@ -1733,8 +1733,8 @@ var UpdateEvalResponseBodyEvalsType$;
|
|
|
1733
1733
|
exports.UpdateEvalResponseBodyJSON$inboundSchema = z.object({
|
|
1734
1734
|
_id: z.string(),
|
|
1735
1735
|
description: z.string(),
|
|
1736
|
-
created: z.string().default("2025-08-
|
|
1737
|
-
updated: z.string().default("2025-08-
|
|
1736
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1737
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1738
1738
|
guardrail_config: z.union([
|
|
1739
1739
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1740
1740
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -1752,8 +1752,8 @@ exports.UpdateEvalResponseBodyJSON$inboundSchema = z.object({
|
|
|
1752
1752
|
exports.UpdateEvalResponseBodyJSON$outboundSchema = z.object({
|
|
1753
1753
|
id: z.string(),
|
|
1754
1754
|
description: z.string(),
|
|
1755
|
-
created: z.string().default("2025-08-
|
|
1756
|
-
updated: z.string().default("2025-08-
|
|
1755
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1756
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1757
1757
|
guardrailConfig: z.union([
|
|
1758
1758
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
1759
1759
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -1938,8 +1938,8 @@ var UpdateEvalResponseBodyType$;
|
|
|
1938
1938
|
exports.UpdateEvalResponseBodyLLM$inboundSchema = z.object({
|
|
1939
1939
|
_id: z.string(),
|
|
1940
1940
|
description: z.string(),
|
|
1941
|
-
created: z.string().default("2025-08-
|
|
1942
|
-
updated: z.string().default("2025-08-
|
|
1941
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1942
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1943
1943
|
guardrail_config: z.union([
|
|
1944
1944
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
1945
1945
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -1958,8 +1958,8 @@ exports.UpdateEvalResponseBodyLLM$inboundSchema = z.object({
|
|
|
1958
1958
|
exports.UpdateEvalResponseBodyLLM$outboundSchema = z.object({
|
|
1959
1959
|
id: z.string(),
|
|
1960
1960
|
description: z.string(),
|
|
1961
|
-
created: z.string().default("2025-08-
|
|
1962
|
-
updated: z.string().default("2025-08-
|
|
1961
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1962
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1963
1963
|
guardrailConfig: z.union([
|
|
1964
1964
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
1965
1965
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
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: "3.11.
|
|
71
|
+
sdkVersion: "3.11.11",
|
|
72
72
|
genVersion: "2.687.13",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.11.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.11.11 2.687.13 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -182,7 +182,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
182
182
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
183
183
|
.optional(),
|
|
184
184
|
updated: z.string().datetime({ offset: true }).default(
|
|
185
|
-
"2025-08-
|
|
185
|
+
"2025-08-31T22:08:02.137Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -223,7 +223,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
223
223
|
tags: z.array(z.string()).optional(),
|
|
224
224
|
metadata: z.record(z.any()).optional(),
|
|
225
225
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
226
|
-
updated: z.date().default(() => new Date("2025-08-
|
|
226
|
+
updated: z.date().default(() => new Date("2025-08-31T22:08:02.137Z"))
|
|
227
227
|
.transform(v => v.toISOString()),
|
|
228
228
|
}).transform((v) => {
|
|
229
229
|
return remap$(v, {
|
|
@@ -211,7 +211,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
211
211
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
212
212
|
.optional(),
|
|
213
213
|
updated: z.string().datetime({ offset: true }).default(
|
|
214
|
-
"2025-08-
|
|
214
|
+
"2025-08-31T22:08:02.137Z",
|
|
215
215
|
).transform(v => new Date(v)),
|
|
216
216
|
}).transform((v) => {
|
|
217
217
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
updatedById: z.string().optional(),
|
|
252
252
|
metadata: z.lazy(() => CreateDatasetMetadata$outboundSchema),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-08-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-08-31T22:08:02.137Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -5100,7 +5100,7 @@ export const ResponseBody$inboundSchema: z.ZodType<
|
|
|
5100
5100
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5101
5101
|
.optional(),
|
|
5102
5102
|
updated: z.string().datetime({ offset: true }).default(
|
|
5103
|
-
"2025-08-
|
|
5103
|
+
"2025-08-31T22:08:02.137Z",
|
|
5104
5104
|
).transform(v => new Date(v)),
|
|
5105
5105
|
}).transform((v) => {
|
|
5106
5106
|
return remap$(v, {
|
|
@@ -5164,7 +5164,7 @@ export const ResponseBody$outboundSchema: z.ZodType<
|
|
|
5164
5164
|
createdById: z.string().optional(),
|
|
5165
5165
|
updatedById: z.string().optional(),
|
|
5166
5166
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5167
|
-
updated: z.date().default(() => new Date("2025-08-
|
|
5167
|
+
updated: z.date().default(() => new Date("2025-08-31T22:08:02.137Z"))
|
|
5168
5168
|
.transform(v => v.toISOString()),
|
|
5169
5169
|
}).transform((v) => {
|
|
5170
5170
|
return remap$(v, {
|
|
@@ -751,7 +751,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
751
751
|
z.ZodTypeDef,
|
|
752
752
|
unknown
|
|
753
753
|
> = z.object({
|
|
754
|
-
_id: z.string().default("
|
|
754
|
+
_id: z.string().default("01K412RVMH066EC8P3801CGV2C"),
|
|
755
755
|
display_name: z.string(),
|
|
756
756
|
description: z.string().optional(),
|
|
757
757
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -795,7 +795,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
795
795
|
z.ZodTypeDef,
|
|
796
796
|
CreateDatasourceResponseBody
|
|
797
797
|
> = z.object({
|
|
798
|
-
id: z.string().default("
|
|
798
|
+
id: z.string().default("01K412RVMH066EC8P3801CGV2C"),
|
|
799
799
|
displayName: z.string(),
|
|
800
800
|
description: z.string().optional(),
|
|
801
801
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2399,8 +2399,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
2399
2399
|
> = z.object({
|
|
2400
2400
|
_id: z.string(),
|
|
2401
2401
|
description: z.string(),
|
|
2402
|
-
created: z.string().default("2025-08-
|
|
2403
|
-
updated: z.string().default("2025-08-
|
|
2402
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
2403
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
2404
2404
|
guardrail_config: z.union([
|
|
2405
2405
|
z.lazy(() =>
|
|
2406
2406
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -2442,8 +2442,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
2442
2442
|
> = z.object({
|
|
2443
2443
|
id: z.string(),
|
|
2444
2444
|
description: z.string(),
|
|
2445
|
-
created: z.string().default("2025-08-
|
|
2446
|
-
updated: z.string().default("2025-08-
|
|
2445
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
2446
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
2447
2447
|
guardrailConfig: z.union([
|
|
2448
2448
|
z.lazy(() =>
|
|
2449
2449
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -2856,8 +2856,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
2856
2856
|
> = z.object({
|
|
2857
2857
|
_id: z.string(),
|
|
2858
2858
|
description: z.string(),
|
|
2859
|
-
created: z.string().default("2025-08-
|
|
2860
|
-
updated: z.string().default("2025-08-
|
|
2859
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
2860
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
2861
2861
|
guardrail_config: z.union([
|
|
2862
2862
|
z.lazy(() =>
|
|
2863
2863
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -2905,8 +2905,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
2905
2905
|
> = z.object({
|
|
2906
2906
|
id: z.string(),
|
|
2907
2907
|
description: z.string(),
|
|
2908
|
-
created: z.string().default("2025-08-
|
|
2909
|
-
updated: z.string().default("2025-08-
|
|
2908
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
2909
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
2910
2910
|
guardrailConfig: z.union([
|
|
2911
2911
|
z.lazy(() =>
|
|
2912
2912
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -3283,8 +3283,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
3283
3283
|
> = z.object({
|
|
3284
3284
|
_id: z.string(),
|
|
3285
3285
|
description: z.string(),
|
|
3286
|
-
created: z.string().default("2025-08-
|
|
3287
|
-
updated: z.string().default("2025-08-
|
|
3286
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
3287
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
3288
3288
|
guardrail_config: z.union([
|
|
3289
3289
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
3290
3290
|
z.lazy(() =>
|
|
@@ -3324,8 +3324,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
3324
3324
|
> = z.object({
|
|
3325
3325
|
id: z.string(),
|
|
3326
3326
|
description: z.string(),
|
|
3327
|
-
created: z.string().default("2025-08-
|
|
3328
|
-
updated: z.string().default("2025-08-
|
|
3327
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
3328
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
3329
3329
|
guardrailConfig: z.union([
|
|
3330
3330
|
z.lazy(() =>
|
|
3331
3331
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -3680,8 +3680,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
3680
3680
|
> = z.object({
|
|
3681
3681
|
_id: z.string(),
|
|
3682
3682
|
description: z.string(),
|
|
3683
|
-
created: z.string().default("2025-08-
|
|
3684
|
-
updated: z.string().default("2025-08-
|
|
3683
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
3684
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
3685
3685
|
guardrail_config: z.union([
|
|
3686
3686
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
3687
3687
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -3721,8 +3721,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
3721
3721
|
> = z.object({
|
|
3722
3722
|
id: z.string(),
|
|
3723
3723
|
description: z.string(),
|
|
3724
|
-
created: z.string().default("2025-08-
|
|
3725
|
-
updated: z.string().default("2025-08-
|
|
3724
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
3725
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
3726
3726
|
guardrailConfig: z.union([
|
|
3727
3727
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
3728
3728
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -146,7 +146,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
146
146
|
file_name: z.string(),
|
|
147
147
|
workspace_id: z.string(),
|
|
148
148
|
created: z.string().datetime({ offset: true }).default(
|
|
149
|
-
"2025-08-
|
|
149
|
+
"2025-08-31T22:08:05.472Z",
|
|
150
150
|
).transform(v => new Date(v)),
|
|
151
151
|
}).transform((v) => {
|
|
152
152
|
return remap$(v, {
|
|
@@ -180,7 +180,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
180
180
|
bytes: z.number(),
|
|
181
181
|
fileName: z.string(),
|
|
182
182
|
workspaceId: z.string(),
|
|
183
|
-
created: z.date().default(() => new Date("2025-08-
|
|
183
|
+
created: z.date().default(() => new Date("2025-08-31T22:08:05.472Z"))
|
|
184
184
|
.transform(v => v.toISOString()),
|
|
185
185
|
}).transform((v) => {
|
|
186
186
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-08-
|
|
199
|
+
"2025-08-31T22:08:05.472Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -230,7 +230,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
230
230
|
bytes: z.number(),
|
|
231
231
|
fileName: z.string(),
|
|
232
232
|
workspaceId: z.string(),
|
|
233
|
-
created: z.date().default(() => new Date("2025-08-
|
|
233
|
+
created: z.date().default(() => new Date("2025-08-31T22:08:05.472Z"))
|
|
234
234
|
.transform(v => v.toISOString()),
|
|
235
235
|
}).transform((v) => {
|
|
236
236
|
return remap$(v, {
|
|
@@ -250,7 +250,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
250
250
|
file_name: z.string(),
|
|
251
251
|
workspace_id: z.string(),
|
|
252
252
|
created: z.string().datetime({ offset: true }).default(
|
|
253
|
-
"2025-08-
|
|
253
|
+
"2025-08-31T22:08:05.472Z",
|
|
254
254
|
).transform(v => new Date(v)),
|
|
255
255
|
}).transform((v) => {
|
|
256
256
|
return remap$(v, {
|
|
@@ -284,7 +284,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
284
284
|
bytes: z.number(),
|
|
285
285
|
fileName: z.string(),
|
|
286
286
|
workspaceId: z.string(),
|
|
287
|
-
created: z.date().default(() => new Date("2025-08-
|
|
287
|
+
created: z.date().default(() => new Date("2025-08-31T22:08:05.472Z"))
|
|
288
288
|
.transform(v => v.toISOString()),
|
|
289
289
|
}).transform((v) => {
|
|
290
290
|
return remap$(v, {
|
|
@@ -1551,8 +1551,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
1551
1551
|
> = z.object({
|
|
1552
1552
|
_id: z.string(),
|
|
1553
1553
|
description: z.string(),
|
|
1554
|
-
created: z.string().default("2025-08-
|
|
1555
|
-
updated: z.string().default("2025-08-
|
|
1554
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1555
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1556
1556
|
guardrail_config: z.union([
|
|
1557
1557
|
z.lazy(() =>
|
|
1558
1558
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1595,8 +1595,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
1595
1595
|
> = z.object({
|
|
1596
1596
|
id: z.string(),
|
|
1597
1597
|
description: z.string(),
|
|
1598
|
-
created: z.string().default("2025-08-
|
|
1599
|
-
updated: z.string().default("2025-08-
|
|
1598
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1599
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1600
1600
|
guardrailConfig: z.union([
|
|
1601
1601
|
z.lazy(() =>
|
|
1602
1602
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -1992,8 +1992,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
1992
1992
|
.object({
|
|
1993
1993
|
_id: z.string(),
|
|
1994
1994
|
description: z.string(),
|
|
1995
|
-
created: z.string().default("2025-08-
|
|
1996
|
-
updated: z.string().default("2025-08-
|
|
1995
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1996
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
1997
1997
|
guardrail_config: z.union([
|
|
1998
1998
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1999
1999
|
z.lazy(() =>
|
|
@@ -2036,8 +2036,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
2036
2036
|
> = z.object({
|
|
2037
2037
|
id: z.string(),
|
|
2038
2038
|
description: z.string(),
|
|
2039
|
-
created: z.string().default("2025-08-
|
|
2040
|
-
updated: z.string().default("2025-08-
|
|
2039
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
2040
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
2041
2041
|
guardrailConfig: z.union([
|
|
2042
2042
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
2043
2043
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -5316,8 +5316,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
5316
5316
|
> = z.object({
|
|
5317
5317
|
_id: z.string(),
|
|
5318
5318
|
description: z.string(),
|
|
5319
|
-
created: z.string().default("2025-08-
|
|
5320
|
-
updated: z.string().default("2025-08-
|
|
5319
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
5320
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
5321
5321
|
guardrail_config: z.union([
|
|
5322
5322
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
5323
5323
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -5427,8 +5427,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
5427
5427
|
> = z.object({
|
|
5428
5428
|
id: z.string(),
|
|
5429
5429
|
description: z.string(),
|
|
5430
|
-
created: z.string().default("2025-08-
|
|
5431
|
-
updated: z.string().default("2025-08-
|
|
5430
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
5431
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
5432
5432
|
guardrailConfig: z.union([
|
|
5433
5433
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
5434
5434
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -5810,8 +5810,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
5810
5810
|
> = z.object({
|
|
5811
5811
|
_id: z.string(),
|
|
5812
5812
|
description: z.string(),
|
|
5813
|
-
created: z.string().default("2025-08-
|
|
5814
|
-
updated: z.string().default("2025-08-
|
|
5813
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
5814
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
5815
5815
|
guardrail_config: z.union([
|
|
5816
5816
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
5817
5817
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -5849,8 +5849,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
5849
5849
|
> = z.object({
|
|
5850
5850
|
id: z.string(),
|
|
5851
5851
|
description: z.string(),
|
|
5852
|
-
created: z.string().default("2025-08-
|
|
5853
|
-
updated: z.string().default("2025-08-
|
|
5852
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
5853
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
5854
5854
|
guardrailConfig: z.union([
|
|
5855
5855
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
5856
5856
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -6196,8 +6196,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
6196
6196
|
> = z.object({
|
|
6197
6197
|
_id: z.string(),
|
|
6198
6198
|
description: z.string(),
|
|
6199
|
-
created: z.string().default("2025-08-
|
|
6200
|
-
updated: z.string().default("2025-08-
|
|
6199
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
6200
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
6201
6201
|
guardrail_config: z.union([
|
|
6202
6202
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
6203
6203
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -6241,8 +6241,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
6241
6241
|
> = z.object({
|
|
6242
6242
|
id: z.string(),
|
|
6243
6243
|
description: z.string(),
|
|
6244
|
-
created: z.string().default("2025-08-
|
|
6245
|
-
updated: z.string().default("2025-08-
|
|
6244
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
6245
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
6246
6246
|
guardrailConfig: z.union([
|
|
6247
6247
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
6248
6248
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -6607,8 +6607,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
6607
6607
|
> = z.object({
|
|
6608
6608
|
_id: z.string(),
|
|
6609
6609
|
description: z.string(),
|
|
6610
|
-
created: z.string().default("2025-08-
|
|
6611
|
-
updated: z.string().default("2025-08-
|
|
6610
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
6611
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
6612
6612
|
guardrail_config: z.union([
|
|
6613
6613
|
z.lazy(() =>
|
|
6614
6614
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -6650,8 +6650,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
6650
6650
|
> = z.object({
|
|
6651
6651
|
id: z.string(),
|
|
6652
6652
|
description: z.string(),
|
|
6653
|
-
created: z.string().default("2025-08-
|
|
6654
|
-
updated: z.string().default("2025-08-
|
|
6653
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
6654
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
6655
6655
|
guardrailConfig: z.union([
|
|
6656
6656
|
z.lazy(() =>
|
|
6657
6657
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -7033,8 +7033,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
7033
7033
|
z.object({
|
|
7034
7034
|
_id: z.string(),
|
|
7035
7035
|
description: z.string(),
|
|
7036
|
-
created: z.string().default("2025-08-
|
|
7037
|
-
updated: z.string().default("2025-08-
|
|
7036
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
7037
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
7038
7038
|
guardrail_config: z.union([
|
|
7039
7039
|
z.lazy(() =>
|
|
7040
7040
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7078,8 +7078,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
7078
7078
|
> = z.object({
|
|
7079
7079
|
id: z.string(),
|
|
7080
7080
|
description: z.string(),
|
|
7081
|
-
created: z.string().default("2025-08-
|
|
7082
|
-
updated: z.string().default("2025-08-
|
|
7081
|
+
created: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
7082
|
+
updated: z.string().default("2025-08-31T22:08:04.554Z"),
|
|
7083
7083
|
guardrailConfig: z.union([
|
|
7084
7084
|
z.lazy(() =>
|
|
7085
7085
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -345,7 +345,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
|
|
|
345
345
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
346
346
|
.optional(),
|
|
347
347
|
updated: z.string().datetime({ offset: true }).default(
|
|
348
|
-
"2025-08-
|
|
348
|
+
"2025-08-31T22:08:02.137Z",
|
|
349
349
|
).transform(v => new Date(v)),
|
|
350
350
|
metrics: z.lazy(() => Metrics$inboundSchema),
|
|
351
351
|
}).transform((v) => {
|
|
@@ -382,7 +382,7 @@ export const Data$outboundSchema: z.ZodType<Data$Outbound, z.ZodTypeDef, Data> =
|
|
|
382
382
|
tags: z.array(z.string()).optional(),
|
|
383
383
|
metadata: z.record(z.any()).optional(),
|
|
384
384
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
385
|
-
updated: z.date().default(() => new Date("2025-08-
|
|
385
|
+
updated: z.date().default(() => new Date("2025-08-31T22:08:02.137Z"))
|
|
386
386
|
.transform(v => v.toISOString()),
|
|
387
387
|
metrics: z.lazy(() => Metrics$outboundSchema),
|
|
388
388
|
}).transform((v) => {
|
|
@@ -2604,7 +2604,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
2604
2604
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2605
2605
|
.optional(),
|
|
2606
2606
|
updated: z.string().datetime({ offset: true }).default(
|
|
2607
|
-
"2025-08-
|
|
2607
|
+
"2025-08-31T22:08:02.137Z",
|
|
2608
2608
|
).transform(v => new Date(v)),
|
|
2609
2609
|
}).transform((v) => {
|
|
2610
2610
|
return remap$(v, {
|
|
@@ -2668,7 +2668,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
2668
2668
|
createdById: z.string().optional(),
|
|
2669
2669
|
updatedById: z.string().optional(),
|
|
2670
2670
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
2671
|
-
updated: z.date().default(() => new Date("2025-08-
|
|
2671
|
+
updated: z.date().default(() => new Date("2025-08-31T22:08:02.137Z"))
|
|
2672
2672
|
.transform(v => v.toISOString()),
|
|
2673
2673
|
}).transform((v) => {
|
|
2674
2674
|
return remap$(v, {
|