@orq-ai/node 3.8.0-rc.16 → 3.8.0-rc.18
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 +104 -104
- package/bin/mcp-server.js.map +26 -26
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/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 +3 -3
- 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
|
@@ -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-06-
|
|
177
|
+
updated: z.string().datetime({ offset: true }).default("2025-06-12T06:00:45.033Z").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-06-
|
|
201
|
+
updated: z.date().default(() => new Date("2025-06-12T06:00:45.033Z"))
|
|
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("01JXHBM5XGZX847HPYNE44TCG6"),
|
|
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("01JXHBM5XGZX847HPYNE44TCG6"),
|
|
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-06-
|
|
1306
|
-
updated: z.string().default("2025-06-
|
|
1305
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1306
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1307
1307
|
guardrail_config: z.union([
|
|
1308
1308
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
1309
1309
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$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-06-
|
|
1325
|
-
updated: z.string().default("2025-06-
|
|
1324
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1325
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1326
1326
|
guardrailConfig: z.union([
|
|
1327
1327
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
1328
1328
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$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-06-
|
|
1528
|
-
updated: z.string().default("2025-06-
|
|
1527
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1528
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1529
1529
|
guardrail_config: z.union([
|
|
1530
1530
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
1531
1531
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$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-06-
|
|
1550
|
-
updated: z.string().default("2025-06-
|
|
1549
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1550
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1551
1551
|
guardrailConfig: z.union([
|
|
1552
1552
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
1553
1553
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$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-06-
|
|
1737
|
-
updated: z.string().default("2025-06-
|
|
1736
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1737
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1738
1738
|
guardrail_config: z.union([
|
|
1739
1739
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
1740
1740
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Number$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-06-
|
|
1756
|
-
updated: z.string().default("2025-06-
|
|
1755
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1756
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1757
1757
|
guardrailConfig: z.union([
|
|
1758
1758
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
1759
1759
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Number$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-06-
|
|
1942
|
-
updated: z.string().default("2025-06-
|
|
1941
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1942
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1943
1943
|
guardrail_config: z.union([
|
|
1944
1944
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1945
1945
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseNumber$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-06-
|
|
1962
|
-
updated: z.string().default("2025-06-
|
|
1961
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1962
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1963
1963
|
guardrailConfig: z.union([
|
|
1964
1964
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
1965
1965
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseNumber$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.8.0-rc.
|
|
72
|
-
genVersion: "2.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.8.0-rc.
|
|
71
|
+
sdkVersion: "3.8.0-rc.18",
|
|
72
|
+
genVersion: "2.628.0",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.8.0-rc.18 2.628.0 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-06-
|
|
185
|
+
"2025-06-12T06:00:45.033Z",
|
|
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-06-
|
|
226
|
+
updated: z.date().default(() => new Date("2025-06-12T06:00:45.033Z"))
|
|
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-06-
|
|
214
|
+
"2025-06-12T06:00:45.033Z",
|
|
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-06-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-06-12T06:00:45.033Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -5111,7 +5111,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5111
5111
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5112
5112
|
.optional(),
|
|
5113
5113
|
updated: z.string().datetime({ offset: true }).default(
|
|
5114
|
-
"2025-06-
|
|
5114
|
+
"2025-06-12T06:00:45.033Z",
|
|
5115
5115
|
).transform(v => new Date(v)),
|
|
5116
5116
|
}).transform((v) => {
|
|
5117
5117
|
return remap$(v, {
|
|
@@ -5175,7 +5175,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5175
5175
|
createdById: z.string().optional(),
|
|
5176
5176
|
updatedById: z.string().optional(),
|
|
5177
5177
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5178
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
5178
|
+
updated: z.date().default(() => new Date("2025-06-12T06:00:45.033Z"))
|
|
5179
5179
|
.transform(v => v.toISOString()),
|
|
5180
5180
|
}).transform((v) => {
|
|
5181
5181
|
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("01JXHBM5XF5K3R5DEAPK18P43Q"),
|
|
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("01JXHBM5XF5K3R5DEAPK18P43Q"),
|
|
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-06-
|
|
2403
|
-
updated: z.string().default("2025-06-
|
|
2402
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
2403
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
2404
2404
|
guardrail_config: z.union([
|
|
2405
2405
|
z.lazy(() =>
|
|
2406
2406
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$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-06-
|
|
2446
|
-
updated: z.string().default("2025-06-
|
|
2445
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
2446
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
2447
2447
|
guardrailConfig: z.union([
|
|
2448
2448
|
z.lazy(() =>
|
|
2449
2449
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$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-06-
|
|
2860
|
-
updated: z.string().default("2025-06-
|
|
2859
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
2860
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
2861
2861
|
guardrail_config: z.union([
|
|
2862
2862
|
z.lazy(() =>
|
|
2863
2863
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$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-06-
|
|
2909
|
-
updated: z.string().default("2025-06-
|
|
2908
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
2909
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
2910
2910
|
guardrailConfig: z.union([
|
|
2911
2911
|
z.lazy(() =>
|
|
2912
2912
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$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-06-
|
|
3287
|
-
updated: z.string().default("2025-06-
|
|
3286
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
3287
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
3288
3288
|
guardrail_config: z.union([
|
|
3289
3289
|
z.lazy(() =>
|
|
3290
3290
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -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-06-
|
|
3328
|
-
updated: z.string().default("2025-06-
|
|
3327
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
3328
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
3329
3329
|
guardrailConfig: z.union([
|
|
3330
3330
|
z.lazy(() =>
|
|
3331
3331
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$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-06-
|
|
3684
|
-
updated: z.string().default("2025-06-
|
|
3683
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
3684
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
3685
3685
|
guardrail_config: z.union([
|
|
3686
3686
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
3687
3687
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$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-06-
|
|
3725
|
-
updated: z.string().default("2025-06-
|
|
3724
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
3725
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
3726
3726
|
guardrailConfig: z.union([
|
|
3727
3727
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
3728
3728
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$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-06-
|
|
149
|
+
"2025-06-12T06:00:47.947Z",
|
|
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-06-
|
|
183
|
+
created: z.date().default(() => new Date("2025-06-12T06:00:47.947Z"))
|
|
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-06-
|
|
199
|
+
"2025-06-12T06:00:47.947Z",
|
|
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-06-
|
|
233
|
+
created: z.date().default(() => new Date("2025-06-12T06:00:47.947Z"))
|
|
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-06-
|
|
253
|
+
"2025-06-12T06:00:47.947Z",
|
|
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-06-
|
|
287
|
+
created: z.date().default(() => new Date("2025-06-12T06:00:47.947Z"))
|
|
288
288
|
.transform(v => v.toISOString()),
|
|
289
289
|
}).transform((v) => {
|
|
290
290
|
return remap$(v, {
|
|
@@ -1372,8 +1372,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
1372
1372
|
> = z.object({
|
|
1373
1373
|
_id: z.string(),
|
|
1374
1374
|
description: z.string(),
|
|
1375
|
-
created: z.string().default("2025-06-
|
|
1376
|
-
updated: z.string().default("2025-06-
|
|
1375
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1376
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1377
1377
|
guardrail_config: z.union([
|
|
1378
1378
|
z.lazy(() =>
|
|
1379
1379
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -1416,8 +1416,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
1416
1416
|
> = z.object({
|
|
1417
1417
|
id: z.string(),
|
|
1418
1418
|
description: z.string(),
|
|
1419
|
-
created: z.string().default("2025-06-
|
|
1420
|
-
updated: z.string().default("2025-06-
|
|
1419
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1420
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1421
1421
|
guardrailConfig: z.union([
|
|
1422
1422
|
z.lazy(() =>
|
|
1423
1423
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -1813,8 +1813,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
1813
1813
|
.object({
|
|
1814
1814
|
_id: z.string(),
|
|
1815
1815
|
description: z.string(),
|
|
1816
|
-
created: z.string().default("2025-06-
|
|
1817
|
-
updated: z.string().default("2025-06-
|
|
1816
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1817
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1818
1818
|
guardrail_config: z.union([
|
|
1819
1819
|
z.lazy(() =>
|
|
1820
1820
|
GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -1857,8 +1857,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
1857
1857
|
> = z.object({
|
|
1858
1858
|
id: z.string(),
|
|
1859
1859
|
description: z.string(),
|
|
1860
|
-
created: z.string().default("2025-06-
|
|
1861
|
-
updated: z.string().default("2025-06-
|
|
1860
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1861
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
1862
1862
|
guardrailConfig: z.union([
|
|
1863
1863
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
1864
1864
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
@@ -4246,8 +4246,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
4246
4246
|
> = z.object({
|
|
4247
4247
|
_id: z.string(),
|
|
4248
4248
|
description: z.string(),
|
|
4249
|
-
created: z.string().default("2025-06-
|
|
4250
|
-
updated: z.string().default("2025-06-
|
|
4249
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
4250
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
4251
4251
|
guardrail_config: z.union([
|
|
4252
4252
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
4253
4253
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -4335,8 +4335,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
4335
4335
|
> = z.object({
|
|
4336
4336
|
id: z.string(),
|
|
4337
4337
|
description: z.string(),
|
|
4338
|
-
created: z.string().default("2025-06-
|
|
4339
|
-
updated: z.string().default("2025-06-
|
|
4338
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
4339
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
4340
4340
|
guardrailConfig: z.union([
|
|
4341
4341
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
4342
4342
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -4707,8 +4707,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
4707
4707
|
> = z.object({
|
|
4708
4708
|
_id: z.string(),
|
|
4709
4709
|
description: z.string(),
|
|
4710
|
-
created: z.string().default("2025-06-
|
|
4711
|
-
updated: z.string().default("2025-06-
|
|
4710
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
4711
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
4712
4712
|
guardrail_config: z.union([
|
|
4713
4713
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
4714
4714
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -4746,8 +4746,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
4746
4746
|
> = z.object({
|
|
4747
4747
|
id: z.string(),
|
|
4748
4748
|
description: z.string(),
|
|
4749
|
-
created: z.string().default("2025-06-
|
|
4750
|
-
updated: z.string().default("2025-06-
|
|
4749
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
4750
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
4751
4751
|
guardrailConfig: z.union([
|
|
4752
4752
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
4753
4753
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
@@ -5093,8 +5093,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
5093
5093
|
> = z.object({
|
|
5094
5094
|
_id: z.string(),
|
|
5095
5095
|
description: z.string(),
|
|
5096
|
-
created: z.string().default("2025-06-
|
|
5097
|
-
updated: z.string().default("2025-06-
|
|
5096
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5097
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5098
5098
|
guardrail_config: z.union([
|
|
5099
5099
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
5100
5100
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
@@ -5138,8 +5138,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
5138
5138
|
> = z.object({
|
|
5139
5139
|
id: z.string(),
|
|
5140
5140
|
description: z.string(),
|
|
5141
|
-
created: z.string().default("2025-06-
|
|
5142
|
-
updated: z.string().default("2025-06-
|
|
5141
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5142
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5143
5143
|
guardrailConfig: z.union([
|
|
5144
5144
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
5145
5145
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
@@ -5504,8 +5504,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
5504
5504
|
> = z.object({
|
|
5505
5505
|
_id: z.string(),
|
|
5506
5506
|
description: z.string(),
|
|
5507
|
-
created: z.string().default("2025-06-
|
|
5508
|
-
updated: z.string().default("2025-06-
|
|
5507
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5508
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5509
5509
|
guardrail_config: z.union([
|
|
5510
5510
|
z.lazy(() =>
|
|
5511
5511
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
|
|
@@ -5547,8 +5547,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
5547
5547
|
> = z.object({
|
|
5548
5548
|
id: z.string(),
|
|
5549
5549
|
description: z.string(),
|
|
5550
|
-
created: z.string().default("2025-06-
|
|
5551
|
-
updated: z.string().default("2025-06-
|
|
5550
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5551
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5552
5552
|
guardrailConfig: z.union([
|
|
5553
5553
|
z.lazy(() =>
|
|
5554
5554
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema
|
|
@@ -5930,8 +5930,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
5930
5930
|
z.object({
|
|
5931
5931
|
_id: z.string(),
|
|
5932
5932
|
description: z.string(),
|
|
5933
|
-
created: z.string().default("2025-06-
|
|
5934
|
-
updated: z.string().default("2025-06-
|
|
5933
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5934
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5935
5935
|
guardrail_config: z.union([
|
|
5936
5936
|
z.lazy(() =>
|
|
5937
5937
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -5975,8 +5975,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
5975
5975
|
> = z.object({
|
|
5976
5976
|
id: z.string(),
|
|
5977
5977
|
description: z.string(),
|
|
5978
|
-
created: z.string().default("2025-06-
|
|
5979
|
-
updated: z.string().default("2025-06-
|
|
5978
|
+
created: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5979
|
+
updated: z.string().default("2025-06-12T06:00:47.211Z"),
|
|
5980
5980
|
guardrailConfig: z.union([
|
|
5981
5981
|
z.lazy(() =>
|
|
5982
5982
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$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-06-
|
|
348
|
+
"2025-06-12T06:00:45.033Z",
|
|
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-06-
|
|
385
|
+
updated: z.date().default(() => new Date("2025-06-12T06:00:45.033Z"))
|
|
386
386
|
.transform(v => v.toISOString()),
|
|
387
387
|
metrics: z.lazy(() => Metrics$outboundSchema),
|
|
388
388
|
}).transform((v) => {
|
|
@@ -2602,7 +2602,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
2602
2602
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2603
2603
|
.optional(),
|
|
2604
2604
|
updated: z.string().datetime({ offset: true }).default(
|
|
2605
|
-
"2025-06-
|
|
2605
|
+
"2025-06-12T06:00:45.033Z",
|
|
2606
2606
|
).transform(v => new Date(v)),
|
|
2607
2607
|
}).transform((v) => {
|
|
2608
2608
|
return remap$(v, {
|
|
@@ -2664,7 +2664,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
2664
2664
|
createdById: z.string().optional(),
|
|
2665
2665
|
updatedById: z.string().optional(),
|
|
2666
2666
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
2667
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
2667
|
+
updated: z.date().default(() => new Date("2025-06-12T06:00:45.033Z"))
|
|
2668
2668
|
.transform(v => v.toISOString()),
|
|
2669
2669
|
}).transform((v) => {
|
|
2670
2670
|
return remap$(v, {
|
|
@@ -253,7 +253,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
|
|
|
253
253
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
254
254
|
.optional(),
|
|
255
255
|
updated: z.string().datetime({ offset: true }).default(
|
|
256
|
-
"2025-06-
|
|
256
|
+
"2025-06-12T06:00:45.033Z",
|
|
257
257
|
).transform(v => new Date(v)),
|
|
258
258
|
}).transform((v) => {
|
|
259
259
|
return remap$(v, {
|
|
@@ -293,7 +293,7 @@ export const ListDatasetsData$outboundSchema: z.ZodType<
|
|
|
293
293
|
updatedById: z.string().optional(),
|
|
294
294
|
metadata: z.lazy(() => ListDatasetsMetadata$outboundSchema),
|
|
295
295
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
296
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
296
|
+
updated: z.date().default(() => new Date("2025-06-12T06:00:45.033Z"))
|
|
297
297
|
.transform(v => v.toISOString()),
|
|
298
298
|
}).transform((v) => {
|
|
299
299
|
return remap$(v, {
|
|
@@ -278,7 +278,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
278
278
|
z.ZodTypeDef,
|
|
279
279
|
unknown
|
|
280
280
|
> = z.object({
|
|
281
|
-
_id: z.string().default("
|
|
281
|
+
_id: z.string().default("01JXHBM5XEM26M05K382S5S6TV"),
|
|
282
282
|
display_name: z.string(),
|
|
283
283
|
description: z.string().optional(),
|
|
284
284
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -322,7 +322,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
|
|
|
322
322
|
z.ZodTypeDef,
|
|
323
323
|
ListDatasourcesData
|
|
324
324
|
> = z.object({
|
|
325
|
-
id: z.string().default("
|
|
325
|
+
id: z.string().default("01JXHBM5XEM26M05K382S5S6TV"),
|
|
326
326
|
displayName: z.string(),
|
|
327
327
|
description: z.string().optional(),
|
|
328
328
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -127,7 +127,7 @@ export const RetrieveContactResponseBody$inboundSchema: z.ZodType<
|
|
|
127
127
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
128
128
|
.optional(),
|
|
129
129
|
updated: z.string().datetime({ offset: true }).default(
|
|
130
|
-
"2025-06-
|
|
130
|
+
"2025-06-12T06:00:45.033Z",
|
|
131
131
|
).transform(v => new Date(v)),
|
|
132
132
|
}).transform((v) => {
|
|
133
133
|
return remap$(v, {
|
|
@@ -165,7 +165,7 @@ export const RetrieveContactResponseBody$outboundSchema: z.ZodType<
|
|
|
165
165
|
tags: z.array(z.string()).optional(),
|
|
166
166
|
metadata: z.record(z.any()).optional(),
|
|
167
167
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
168
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
168
|
+
updated: z.date().default(() => new Date("2025-06-12T06:00:45.033Z"))
|
|
169
169
|
.transform(v => v.toISOString()),
|
|
170
170
|
}).transform((v) => {
|
|
171
171
|
return remap$(v, {
|