@orq-ai/node 3.8.0-rc.20 → 3.8.0-rc.22
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 +131 -131
- package/bin/mcp-server.js.map +36 -36
- 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/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/createfeedback.d.ts +8 -8
- package/models/operations/createfeedback.d.ts.map +1 -1
- package/models/operations/createfeedback.js +8 -8
- package/models/operations/createfeedback.js.map +1 -1
- package/models/operations/createprompt.d.ts +4 -4
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +4 -4
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +2 -2
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +2 -2
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deployments.d.ts +2 -2
- package/models/operations/deployments.d.ts.map +1 -1
- package/models/operations/deployments.js +2 -2
- package/models/operations/deployments.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getallprompts.d.ts +2 -2
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +2 -2
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +2 -2
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +2 -2
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +2 -2
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +2 -2
- package/models/operations/getpromptversion.js.map +1 -1
- 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/listpromptversions.d.ts +2 -2
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +2 -2
- package/models/operations/listpromptversions.js.map +1 -1
- 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/models/operations/updateprompt.d.ts +4 -4
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +4 -4
- package/models/operations/updateprompt.js.map +1 -1
- 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/createfeedback.ts +16 -16
- package/src/models/operations/createprompt.ts +8 -8
- package/src/models/operations/deploymentgetconfig.ts +4 -4
- package/src/models/operations/deployments.ts +4 -4
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getallprompts.ts +4 -4
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/getoneprompt.ts +4 -4
- package/src/models/operations/getpromptversion.ts +4 -4
- 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/listpromptversions.ts +4 -4
- 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
- package/src/models/operations/updateprompt.ts +8 -8
|
@@ -74,7 +74,7 @@ export type GetOnePromptResponseFormatType = ClosedEnum<
|
|
|
74
74
|
|
|
75
75
|
export type GetOnePromptResponseFormatJsonSchema = {
|
|
76
76
|
name: string;
|
|
77
|
-
strict
|
|
77
|
+
strict?: boolean | undefined;
|
|
78
78
|
schema: { [k: string]: any };
|
|
79
79
|
};
|
|
80
80
|
|
|
@@ -721,14 +721,14 @@ export const GetOnePromptResponseFormatJsonSchema$inboundSchema: z.ZodType<
|
|
|
721
721
|
unknown
|
|
722
722
|
> = z.object({
|
|
723
723
|
name: z.string(),
|
|
724
|
-
strict: z.boolean(),
|
|
724
|
+
strict: z.boolean().optional(),
|
|
725
725
|
schema: z.record(z.any()),
|
|
726
726
|
});
|
|
727
727
|
|
|
728
728
|
/** @internal */
|
|
729
729
|
export type GetOnePromptResponseFormatJsonSchema$Outbound = {
|
|
730
730
|
name: string;
|
|
731
|
-
strict
|
|
731
|
+
strict?: boolean | undefined;
|
|
732
732
|
schema: { [k: string]: any };
|
|
733
733
|
};
|
|
734
734
|
|
|
@@ -739,7 +739,7 @@ export const GetOnePromptResponseFormatJsonSchema$outboundSchema: z.ZodType<
|
|
|
739
739
|
GetOnePromptResponseFormatJsonSchema
|
|
740
740
|
> = z.object({
|
|
741
741
|
name: z.string(),
|
|
742
|
-
strict: z.boolean(),
|
|
742
|
+
strict: z.boolean().optional(),
|
|
743
743
|
schema: z.record(z.any()),
|
|
744
744
|
});
|
|
745
745
|
|
|
@@ -75,7 +75,7 @@ export type GetPromptVersionResponseFormatType = ClosedEnum<
|
|
|
75
75
|
|
|
76
76
|
export type GetPromptVersionResponseFormatJsonSchema = {
|
|
77
77
|
name: string;
|
|
78
|
-
strict
|
|
78
|
+
strict?: boolean | undefined;
|
|
79
79
|
schema: { [k: string]: any };
|
|
80
80
|
};
|
|
81
81
|
|
|
@@ -712,14 +712,14 @@ export const GetPromptVersionResponseFormatJsonSchema$inboundSchema: z.ZodType<
|
|
|
712
712
|
unknown
|
|
713
713
|
> = z.object({
|
|
714
714
|
name: z.string(),
|
|
715
|
-
strict: z.boolean(),
|
|
715
|
+
strict: z.boolean().optional(),
|
|
716
716
|
schema: z.record(z.any()),
|
|
717
717
|
});
|
|
718
718
|
|
|
719
719
|
/** @internal */
|
|
720
720
|
export type GetPromptVersionResponseFormatJsonSchema$Outbound = {
|
|
721
721
|
name: string;
|
|
722
|
-
strict
|
|
722
|
+
strict?: boolean | undefined;
|
|
723
723
|
schema: { [k: string]: any };
|
|
724
724
|
};
|
|
725
725
|
|
|
@@ -730,7 +730,7 @@ export const GetPromptVersionResponseFormatJsonSchema$outboundSchema: z.ZodType<
|
|
|
730
730
|
GetPromptVersionResponseFormatJsonSchema
|
|
731
731
|
> = z.object({
|
|
732
732
|
name: z.string(),
|
|
733
|
-
strict: z.boolean(),
|
|
733
|
+
strict: z.boolean().optional(),
|
|
734
734
|
schema: z.record(z.any()),
|
|
735
735
|
});
|
|
736
736
|
|
|
@@ -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-12T21:43:40.411Z",
|
|
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-12T21:43:40.411Z"))
|
|
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-12T21:43:40.411Z",
|
|
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-12T21:43:40.411Z"))
|
|
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-12T21:43:40.411Z",
|
|
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-12T21:43:40.411Z"))
|
|
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("01JXK1JQAYZFTKM9C3N1BY1ATH"),
|
|
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("01JXK1JQAYZFTKM9C3N1BY1ATH"),
|
|
326
326
|
displayName: z.string(),
|
|
327
327
|
description: z.string().optional(),
|
|
328
328
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -89,7 +89,7 @@ export type ListPromptVersionsResponseFormatType = ClosedEnum<
|
|
|
89
89
|
|
|
90
90
|
export type ListPromptVersionsResponseFormatJsonSchema = {
|
|
91
91
|
name: string;
|
|
92
|
-
strict
|
|
92
|
+
strict?: boolean | undefined;
|
|
93
93
|
schema: { [k: string]: any };
|
|
94
94
|
};
|
|
95
95
|
|
|
@@ -764,14 +764,14 @@ export const ListPromptVersionsResponseFormatJsonSchema$inboundSchema:
|
|
|
764
764
|
z.ZodType<ListPromptVersionsResponseFormatJsonSchema, z.ZodTypeDef, unknown> =
|
|
765
765
|
z.object({
|
|
766
766
|
name: z.string(),
|
|
767
|
-
strict: z.boolean(),
|
|
767
|
+
strict: z.boolean().optional(),
|
|
768
768
|
schema: z.record(z.any()),
|
|
769
769
|
});
|
|
770
770
|
|
|
771
771
|
/** @internal */
|
|
772
772
|
export type ListPromptVersionsResponseFormatJsonSchema$Outbound = {
|
|
773
773
|
name: string;
|
|
774
|
-
strict
|
|
774
|
+
strict?: boolean | undefined;
|
|
775
775
|
schema: { [k: string]: any };
|
|
776
776
|
};
|
|
777
777
|
|
|
@@ -783,7 +783,7 @@ export const ListPromptVersionsResponseFormatJsonSchema$outboundSchema:
|
|
|
783
783
|
ListPromptVersionsResponseFormatJsonSchema
|
|
784
784
|
> = z.object({
|
|
785
785
|
name: z.string(),
|
|
786
|
-
strict: z.boolean(),
|
|
786
|
+
strict: z.boolean().optional(),
|
|
787
787
|
schema: z.record(z.any()),
|
|
788
788
|
});
|
|
789
789
|
|
|
@@ -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-12T21:43:40.411Z",
|
|
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-12T21:43:40.411Z"))
|
|
169
169
|
.transform(v => v.toISOString()),
|
|
170
170
|
}).transform((v) => {
|
|
171
171
|
return remap$(v, {
|
|
@@ -2481,7 +2481,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
2481
2481
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2482
2482
|
.optional(),
|
|
2483
2483
|
updated: z.string().datetime({ offset: true }).default(
|
|
2484
|
-
"2025-06-
|
|
2484
|
+
"2025-06-12T21:43:40.411Z",
|
|
2485
2485
|
).transform(v => new Date(v)),
|
|
2486
2486
|
}).transform((v) => {
|
|
2487
2487
|
return remap$(v, {
|
|
@@ -2539,7 +2539,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
2539
2539
|
createdById: z.string().optional(),
|
|
2540
2540
|
updatedById: z.string().optional(),
|
|
2541
2541
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
2542
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
2542
|
+
updated: z.date().default(() => new Date("2025-06-12T21:43:40.411Z"))
|
|
2543
2543
|
.transform(v => v.toISOString()),
|
|
2544
2544
|
}).transform((v) => {
|
|
2545
2545
|
return remap$(v, {
|
|
@@ -201,7 +201,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
201
201
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
202
202
|
.optional(),
|
|
203
203
|
updated: z.string().datetime({ offset: true }).default(
|
|
204
|
-
"2025-06-
|
|
204
|
+
"2025-06-12T21:43:40.411Z",
|
|
205
205
|
).transform(v => new Date(v)),
|
|
206
206
|
}).transform((v) => {
|
|
207
207
|
return remap$(v, {
|
|
@@ -241,7 +241,7 @@ export const RetrieveDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
241
241
|
updatedById: z.string().optional(),
|
|
242
242
|
metadata: z.lazy(() => RetrieveDatasetMetadata$outboundSchema),
|
|
243
243
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
244
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
244
|
+
updated: z.date().default(() => new Date("2025-06-12T21:43:40.411Z"))
|
|
245
245
|
.transform(v => v.toISOString()),
|
|
246
246
|
}).transform((v) => {
|
|
247
247
|
return remap$(v, {
|
|
@@ -172,7 +172,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
172
172
|
z.ZodTypeDef,
|
|
173
173
|
unknown
|
|
174
174
|
> = z.object({
|
|
175
|
-
_id: z.string().default("
|
|
175
|
+
_id: z.string().default("01JXK1JQAZY4VP5EFXS1N20YQB"),
|
|
176
176
|
display_name: z.string(),
|
|
177
177
|
description: z.string().optional(),
|
|
178
178
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -216,7 +216,7 @@ export const RetrieveDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
216
216
|
z.ZodTypeDef,
|
|
217
217
|
RetrieveDatasourceResponseBody
|
|
218
218
|
> = z.object({
|
|
219
|
-
id: z.string().default("
|
|
219
|
+
id: z.string().default("01JXK1JQAZY4VP5EFXS1N20YQB"),
|
|
220
220
|
displayName: z.string(),
|
|
221
221
|
description: z.string().optional(),
|
|
222
222
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -244,7 +244,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
245
245
|
.optional(),
|
|
246
246
|
updated: z.string().datetime({ offset: true }).default(
|
|
247
|
-
"2025-06-
|
|
247
|
+
"2025-06-12T21:43:40.411Z",
|
|
248
248
|
).transform(v => new Date(v)),
|
|
249
249
|
}).transform((v) => {
|
|
250
250
|
return remap$(v, {
|
|
@@ -282,7 +282,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
282
282
|
tags: z.array(z.string()).optional(),
|
|
283
283
|
metadata: z.record(z.any()).optional(),
|
|
284
284
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
285
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
285
|
+
updated: z.date().default(() => new Date("2025-06-12T21:43:40.411Z"))
|
|
286
286
|
.transform(v => v.toISOString()),
|
|
287
287
|
}).transform((v) => {
|
|
288
288
|
return remap$(v, {
|
|
@@ -5044,7 +5044,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
5044
5044
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5045
5045
|
.optional(),
|
|
5046
5046
|
updated: z.string().datetime({ offset: true }).default(
|
|
5047
|
-
"2025-06-
|
|
5047
|
+
"2025-06-12T21:43:40.411Z",
|
|
5048
5048
|
).transform(v => new Date(v)),
|
|
5049
5049
|
}).transform((v) => {
|
|
5050
5050
|
return remap$(v, {
|
|
@@ -5106,7 +5106,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
5106
5106
|
createdById: z.string().optional(),
|
|
5107
5107
|
updatedById: z.string().optional(),
|
|
5108
5108
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5109
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
5109
|
+
updated: z.date().default(() => new Date("2025-06-12T21:43:40.411Z"))
|
|
5110
5110
|
.transform(v => v.toISOString()),
|
|
5111
5111
|
}).transform((v) => {
|
|
5112
5112
|
return remap$(v, {
|
|
@@ -302,7 +302,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
302
302
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
303
303
|
.optional(),
|
|
304
304
|
updated: z.string().datetime({ offset: true }).default(
|
|
305
|
-
"2025-06-
|
|
305
|
+
"2025-06-12T21:43:40.411Z",
|
|
306
306
|
).transform(v => new Date(v)),
|
|
307
307
|
}).transform((v) => {
|
|
308
308
|
return remap$(v, {
|
|
@@ -347,7 +347,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
347
347
|
parentId: z.string().optional(),
|
|
348
348
|
version: z.string().optional(),
|
|
349
349
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
350
|
-
updated: z.date().default(() => new Date("2025-06-
|
|
350
|
+
updated: z.date().default(() => new Date("2025-06-12T21:43:40.411Z"))
|
|
351
351
|
.transform(v => v.toISOString()),
|
|
352
352
|
}).transform((v) => {
|
|
353
353
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
z.ZodTypeDef,
|
|
245
245
|
unknown
|
|
246
246
|
> = z.object({
|
|
247
|
-
_id: z.string().default("
|
|
247
|
+
_id: z.string().default("01JXK1JQB0C7CZCSDFBNKSSHKA"),
|
|
248
248
|
display_name: z.string(),
|
|
249
249
|
description: z.string().optional(),
|
|
250
250
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -288,7 +288,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
288
288
|
z.ZodTypeDef,
|
|
289
289
|
UpdateDatasourceResponseBody
|
|
290
290
|
> = z.object({
|
|
291
|
-
id: z.string().default("
|
|
291
|
+
id: z.string().default("01JXK1JQB0C7CZCSDFBNKSSHKA"),
|
|
292
292
|
displayName: z.string(),
|
|
293
293
|
description: z.string().optional(),
|
|
294
294
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2674,8 +2674,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
2674
2674
|
> = z.object({
|
|
2675
2675
|
_id: z.string(),
|
|
2676
2676
|
description: z.string(),
|
|
2677
|
-
created: z.string().default("2025-06-
|
|
2678
|
-
updated: z.string().default("2025-06-
|
|
2677
|
+
created: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
2678
|
+
updated: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
2679
2679
|
guardrail_config: z.union([
|
|
2680
2680
|
z.lazy(() =>
|
|
2681
2681
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -2717,8 +2717,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
2717
2717
|
> = z.object({
|
|
2718
2718
|
id: z.string(),
|
|
2719
2719
|
description: z.string(),
|
|
2720
|
-
created: z.string().default("2025-06-
|
|
2721
|
-
updated: z.string().default("2025-06-
|
|
2720
|
+
created: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
2721
|
+
updated: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
2722
2722
|
guardrailConfig: z.union([
|
|
2723
2723
|
z.lazy(() =>
|
|
2724
2724
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -3139,8 +3139,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
3139
3139
|
> = z.object({
|
|
3140
3140
|
_id: z.string(),
|
|
3141
3141
|
description: z.string(),
|
|
3142
|
-
created: z.string().default("2025-06-
|
|
3143
|
-
updated: z.string().default("2025-06-
|
|
3142
|
+
created: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
3143
|
+
updated: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
3144
3144
|
guardrail_config: z.union([
|
|
3145
3145
|
z.lazy(() =>
|
|
3146
3146
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -3188,8 +3188,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
3188
3188
|
> = z.object({
|
|
3189
3189
|
id: z.string(),
|
|
3190
3190
|
description: z.string(),
|
|
3191
|
-
created: z.string().default("2025-06-
|
|
3192
|
-
updated: z.string().default("2025-06-
|
|
3191
|
+
created: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
3192
|
+
updated: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
3193
3193
|
guardrailConfig: z.union([
|
|
3194
3194
|
z.lazy(() =>
|
|
3195
3195
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -3579,8 +3579,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
3579
3579
|
> = z.object({
|
|
3580
3580
|
_id: z.string(),
|
|
3581
3581
|
description: z.string(),
|
|
3582
|
-
created: z.string().default("2025-06-
|
|
3583
|
-
updated: z.string().default("2025-06-
|
|
3582
|
+
created: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
3583
|
+
updated: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
3584
3584
|
guardrail_config: z.union([
|
|
3585
3585
|
z.lazy(() =>
|
|
3586
3586
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -3620,8 +3620,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
3620
3620
|
> = z.object({
|
|
3621
3621
|
id: z.string(),
|
|
3622
3622
|
description: z.string(),
|
|
3623
|
-
created: z.string().default("2025-06-
|
|
3624
|
-
updated: z.string().default("2025-06-
|
|
3623
|
+
created: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
3624
|
+
updated: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
3625
3625
|
guardrailConfig: z.union([
|
|
3626
3626
|
z.lazy(() =>
|
|
3627
3627
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -3979,8 +3979,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
3979
3979
|
> = z.object({
|
|
3980
3980
|
_id: z.string(),
|
|
3981
3981
|
description: z.string(),
|
|
3982
|
-
created: z.string().default("2025-06-
|
|
3983
|
-
updated: z.string().default("2025-06-
|
|
3982
|
+
created: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
3983
|
+
updated: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
3984
3984
|
guardrail_config: z.union([
|
|
3985
3985
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
3986
3986
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -4020,8 +4020,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
4020
4020
|
> = z.object({
|
|
4021
4021
|
id: z.string(),
|
|
4022
4022
|
description: z.string(),
|
|
4023
|
-
created: z.string().default("2025-06-
|
|
4024
|
-
updated: z.string().default("2025-06-
|
|
4023
|
+
created: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
4024
|
+
updated: z.string().default("2025-06-12T21:43:42.613Z"),
|
|
4025
4025
|
guardrailConfig: z.union([
|
|
4026
4026
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
4027
4027
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -62,7 +62,7 @@ export type UpdatePromptResponseFormatType = ClosedEnum<
|
|
|
62
62
|
|
|
63
63
|
export type ResponseFormatJsonSchema = {
|
|
64
64
|
name: string;
|
|
65
|
-
strict
|
|
65
|
+
strict?: boolean | undefined;
|
|
66
66
|
schema: { [k: string]: any };
|
|
67
67
|
};
|
|
68
68
|
|
|
@@ -541,7 +541,7 @@ export type UpdatePromptResponseFormatPromptsResponseType = ClosedEnum<
|
|
|
541
541
|
|
|
542
542
|
export type UpdatePromptResponseFormatJsonSchema = {
|
|
543
543
|
name: string;
|
|
544
|
-
strict
|
|
544
|
+
strict?: boolean | undefined;
|
|
545
545
|
schema: { [k: string]: any };
|
|
546
546
|
};
|
|
547
547
|
|
|
@@ -1129,14 +1129,14 @@ export const ResponseFormatJsonSchema$inboundSchema: z.ZodType<
|
|
|
1129
1129
|
unknown
|
|
1130
1130
|
> = z.object({
|
|
1131
1131
|
name: z.string(),
|
|
1132
|
-
strict: z.boolean(),
|
|
1132
|
+
strict: z.boolean().optional(),
|
|
1133
1133
|
schema: z.record(z.any()),
|
|
1134
1134
|
});
|
|
1135
1135
|
|
|
1136
1136
|
/** @internal */
|
|
1137
1137
|
export type ResponseFormatJsonSchema$Outbound = {
|
|
1138
1138
|
name: string;
|
|
1139
|
-
strict
|
|
1139
|
+
strict?: boolean | undefined;
|
|
1140
1140
|
schema: { [k: string]: any };
|
|
1141
1141
|
};
|
|
1142
1142
|
|
|
@@ -1147,7 +1147,7 @@ export const ResponseFormatJsonSchema$outboundSchema: z.ZodType<
|
|
|
1147
1147
|
ResponseFormatJsonSchema
|
|
1148
1148
|
> = z.object({
|
|
1149
1149
|
name: z.string(),
|
|
1150
|
-
strict: z.boolean(),
|
|
1150
|
+
strict: z.boolean().optional(),
|
|
1151
1151
|
schema: z.record(z.any()),
|
|
1152
1152
|
});
|
|
1153
1153
|
|
|
@@ -2781,14 +2781,14 @@ export const UpdatePromptResponseFormatJsonSchema$inboundSchema: z.ZodType<
|
|
|
2781
2781
|
unknown
|
|
2782
2782
|
> = z.object({
|
|
2783
2783
|
name: z.string(),
|
|
2784
|
-
strict: z.boolean(),
|
|
2784
|
+
strict: z.boolean().optional(),
|
|
2785
2785
|
schema: z.record(z.any()),
|
|
2786
2786
|
});
|
|
2787
2787
|
|
|
2788
2788
|
/** @internal */
|
|
2789
2789
|
export type UpdatePromptResponseFormatJsonSchema$Outbound = {
|
|
2790
2790
|
name: string;
|
|
2791
|
-
strict
|
|
2791
|
+
strict?: boolean | undefined;
|
|
2792
2792
|
schema: { [k: string]: any };
|
|
2793
2793
|
};
|
|
2794
2794
|
|
|
@@ -2799,7 +2799,7 @@ export const UpdatePromptResponseFormatJsonSchema$outboundSchema: z.ZodType<
|
|
|
2799
2799
|
UpdatePromptResponseFormatJsonSchema
|
|
2800
2800
|
> = z.object({
|
|
2801
2801
|
name: z.string(),
|
|
2802
|
-
strict: z.boolean(),
|
|
2802
|
+
strict: z.boolean().optional(),
|
|
2803
2803
|
schema: z.record(z.any()),
|
|
2804
2804
|
});
|
|
2805
2805
|
|