@orq-ai/node 4.4.14 → 4.4.16
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/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/partdoneevent.js +1 -1
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/fileget.js +1 -1
- package/models/operations/filelist.js +1 -1
- package/models/operations/fileupload.js +1 -1
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/models/components/partdoneevent.ts +1 -1
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/operations/createcontact.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
- package/packages/orq-rc/src/models/operations/createidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
- package/packages/orq-rc/src/models/operations/fileget.ts +1 -1
- package/packages/orq-rc/src/models/operations/filelist.ts +1 -1
- package/packages/orq-rc/src/models/operations/fileupload.ts +1 -1
- package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getevals.ts +16 -16
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/listidentities.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrieveidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
- package/packages/orq-rc/src/models/operations/runagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateeval.ts +97 -16
- package/packages/orq-rc/src/models/operations/updateidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatetool.ts +74 -49
- package/src/lib/config.ts +3 -3
- package/src/models/components/partdoneevent.ts +1 -1
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/fileget.ts +1 -1
- package/src/models/operations/filelist.ts +1 -1
- package/src/models/operations/fileupload.ts +1 -1
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
|
@@ -906,8 +906,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
906
906
|
> = z.object({
|
|
907
907
|
_id: z.string(),
|
|
908
908
|
description: z.string(),
|
|
909
|
-
created: z.string().default("2026-03-
|
|
910
|
-
updated: z.string().default("2026-03-
|
|
909
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
910
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
911
911
|
guardrail_config: z.union([
|
|
912
912
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
913
913
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -1045,8 +1045,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1045
1045
|
> = z.object({
|
|
1046
1046
|
_id: z.string(),
|
|
1047
1047
|
description: z.string(),
|
|
1048
|
-
created: z.string().default("2026-03-
|
|
1049
|
-
updated: z.string().default("2026-03-
|
|
1048
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
1049
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
1050
1050
|
guardrail_config: z.union([
|
|
1051
1051
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1052
1052
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -1837,8 +1837,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
1837
1837
|
> = z.object({
|
|
1838
1838
|
_id: z.string(),
|
|
1839
1839
|
description: z.string(),
|
|
1840
|
-
created: z.string().default("2026-03-
|
|
1841
|
-
updated: z.string().default("2026-03-
|
|
1840
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
1841
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
1842
1842
|
guardrail_config: z.union([
|
|
1843
1843
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
1844
1844
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -1988,8 +1988,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
1988
1988
|
> = z.object({
|
|
1989
1989
|
_id: z.string(),
|
|
1990
1990
|
description: z.string(),
|
|
1991
|
-
created: z.string().default("2026-03-
|
|
1992
|
-
updated: z.string().default("2026-03-
|
|
1991
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
1992
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
1993
1993
|
guardrail_config: z.union([
|
|
1994
1994
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
1995
1995
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
@@ -2128,8 +2128,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
2128
2128
|
> = z.object({
|
|
2129
2129
|
_id: z.string(),
|
|
2130
2130
|
description: z.string(),
|
|
2131
|
-
created: z.string().default("2026-03-
|
|
2132
|
-
updated: z.string().default("2026-03-
|
|
2131
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2132
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2133
2133
|
guardrail_config: z.union([
|
|
2134
2134
|
z.lazy(() =>
|
|
2135
2135
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -2278,8 +2278,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
2278
2278
|
> = z.object({
|
|
2279
2279
|
_id: z.string(),
|
|
2280
2280
|
description: z.string(),
|
|
2281
|
-
created: z.string().default("2026-03-
|
|
2282
|
-
updated: z.string().default("2026-03-
|
|
2281
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2282
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2283
2283
|
guardrail_config: z.union([
|
|
2284
2284
|
z.lazy(() =>
|
|
2285
2285
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -2584,8 +2584,8 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
|
|
|
2584
2584
|
> = z.object({
|
|
2585
2585
|
_id: z.string(),
|
|
2586
2586
|
description: z.string(),
|
|
2587
|
-
created: z.string().default("2026-03-
|
|
2588
|
-
updated: z.string().default("2026-03-
|
|
2587
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2588
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2589
2589
|
guardrail_config: z.union([
|
|
2590
2590
|
z.lazy(() =>
|
|
2591
2591
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyData1Boolean$inboundSchema
|
|
@@ -2728,8 +2728,8 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
|
|
|
2728
2728
|
> = z.object({
|
|
2729
2729
|
_id: z.string(),
|
|
2730
2730
|
description: z.string(),
|
|
2731
|
-
created: z.string().default("2026-03-
|
|
2732
|
-
updated: z.string().default("2026-03-
|
|
2731
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2732
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2733
2733
|
guardrail_config: z.union([
|
|
2734
2734
|
z.lazy(() =>
|
|
2735
2735
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
|
|
@@ -1270,7 +1270,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
|
|
|
1270
1270
|
),
|
|
1271
1271
|
reviewed_by_id: z.string(),
|
|
1272
1272
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1273
|
-
"2026-03-
|
|
1273
|
+
"2026-03-06T09:14:25.062Z",
|
|
1274
1274
|
).transform(v => new Date(v)),
|
|
1275
1275
|
type: z.literal("string_array"),
|
|
1276
1276
|
values: z.array(z.string()),
|
|
@@ -1320,7 +1320,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
|
|
|
1320
1320
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
1321
1321
|
reviewed_by_id: z.string(),
|
|
1322
1322
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1323
|
-
"2026-03-
|
|
1323
|
+
"2026-03-06T09:14:25.061Z",
|
|
1324
1324
|
).transform(v => new Date(v)),
|
|
1325
1325
|
type: z.literal("number"),
|
|
1326
1326
|
value: z.number(),
|
|
@@ -1369,7 +1369,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
|
|
|
1369
1369
|
.default("orq"),
|
|
1370
1370
|
reviewed_by_id: z.string(),
|
|
1371
1371
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1372
|
-
"2026-03-
|
|
1372
|
+
"2026-03-06T09:14:25.061Z",
|
|
1373
1373
|
).transform(v => new Date(v)),
|
|
1374
1374
|
type: z.literal("string"),
|
|
1375
1375
|
value: z.string(),
|
|
@@ -1448,7 +1448,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
1448
1448
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1449
1449
|
.optional(),
|
|
1450
1450
|
updated: z.string().datetime({ offset: true }).default(
|
|
1451
|
-
"2026-03-
|
|
1451
|
+
"2026-03-06T09:14:08.503Z",
|
|
1452
1452
|
).transform(v => new Date(v)),
|
|
1453
1453
|
}).transform((v) => {
|
|
1454
1454
|
return remap$(v, {
|
|
@@ -156,7 +156,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
|
|
|
156
156
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
157
157
|
.optional(),
|
|
158
158
|
updated: z.string().datetime({ offset: true }).default(
|
|
159
|
-
"2026-03-
|
|
159
|
+
"2026-03-06T09:14:08.503Z",
|
|
160
160
|
).transform(v => new Date(v)),
|
|
161
161
|
}).transform((v) => {
|
|
162
162
|
return remap$(v, {
|
|
@@ -176,7 +176,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
176
176
|
z.ZodTypeDef,
|
|
177
177
|
unknown
|
|
178
178
|
> = z.object({
|
|
179
|
-
_id: z.string().default("
|
|
179
|
+
_id: z.string().default("01KK16TFASN6YHRVZK4YBPT69M"),
|
|
180
180
|
display_name: z.string(),
|
|
181
181
|
description: z.string().optional(),
|
|
182
182
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -227,7 +227,7 @@ export const ListIdentitiesData$inboundSchema: z.ZodType<
|
|
|
227
227
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
228
228
|
.optional(),
|
|
229
229
|
updated: z.string().datetime({ offset: true }).default(
|
|
230
|
-
"2026-03-
|
|
230
|
+
"2026-03-06T09:14:08.503Z",
|
|
231
231
|
).transform(v => new Date(v)),
|
|
232
232
|
metrics: z.lazy(() => ListIdentitiesMetrics$inboundSchema),
|
|
233
233
|
}).transform((v) => {
|
|
@@ -1207,7 +1207,7 @@ export const RetrieveDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
1207
1207
|
.default("orq"),
|
|
1208
1208
|
reviewed_by_id: z.string(),
|
|
1209
1209
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1210
|
-
"2026-03-
|
|
1210
|
+
"2026-03-06T09:14:25.083Z",
|
|
1211
1211
|
).transform(v => new Date(v)),
|
|
1212
1212
|
type: z.literal("string_array"),
|
|
1213
1213
|
values: z.array(z.string()),
|
|
@@ -1255,7 +1255,7 @@ export const RetrieveDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
1255
1255
|
),
|
|
1256
1256
|
reviewed_by_id: z.string(),
|
|
1257
1257
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1258
|
-
"2026-03-
|
|
1258
|
+
"2026-03-06T09:14:25.083Z",
|
|
1259
1259
|
).transform(v => new Date(v)),
|
|
1260
1260
|
type: z.literal("number"),
|
|
1261
1261
|
value: z.number(),
|
|
@@ -1300,7 +1300,7 @@ export const RetrieveDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
1300
1300
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
1301
1301
|
reviewed_by_id: z.string(),
|
|
1302
1302
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1303
|
-
"2026-03-
|
|
1303
|
+
"2026-03-06T09:14:25.082Z",
|
|
1304
1304
|
).transform(v => new Date(v)),
|
|
1305
1305
|
type: z.literal("string"),
|
|
1306
1306
|
value: z.string(),
|
|
@@ -1377,7 +1377,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
1377
1377
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1378
1378
|
.optional(),
|
|
1379
1379
|
updated: z.string().datetime({ offset: true }).default(
|
|
1380
|
-
"2026-03-
|
|
1380
|
+
"2026-03-06T09:14:08.503Z",
|
|
1381
1381
|
).transform(v => new Date(v)),
|
|
1382
1382
|
}).transform((v) => {
|
|
1383
1383
|
return remap$(v, {
|
|
@@ -126,7 +126,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
126
126
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
127
127
|
.optional(),
|
|
128
128
|
updated: z.string().datetime({ offset: true }).default(
|
|
129
|
-
"2026-03-
|
|
129
|
+
"2026-03-06T09:14:08.503Z",
|
|
130
130
|
).transform(v => new Date(v)),
|
|
131
131
|
}).transform((v) => {
|
|
132
132
|
return remap$(v, {
|
|
@@ -118,7 +118,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
118
118
|
z.ZodTypeDef,
|
|
119
119
|
unknown
|
|
120
120
|
> = z.object({
|
|
121
|
-
_id: z.string().default("
|
|
121
|
+
_id: z.string().default("01KK16TFAWXBHRJPRKNDPMTJWP"),
|
|
122
122
|
display_name: z.string(),
|
|
123
123
|
description: z.string().optional(),
|
|
124
124
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -95,7 +95,7 @@ export const RetrieveIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
95
95
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
96
96
|
.optional(),
|
|
97
97
|
updated: z.string().datetime({ offset: true }).default(
|
|
98
|
-
"2026-03-
|
|
98
|
+
"2026-03-06T09:14:08.503Z",
|
|
99
99
|
).transform(v => new Date(v)),
|
|
100
100
|
}).transform((v) => {
|
|
101
101
|
return remap$(v, {
|
|
@@ -754,7 +754,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
754
754
|
z.ZodTypeDef,
|
|
755
755
|
unknown
|
|
756
756
|
> = z.object({
|
|
757
|
-
_id: z.string().default("
|
|
757
|
+
_id: z.string().default("tool_01KK16TF82YFXJRRR99CKBSM4E"),
|
|
758
758
|
path: z.string(),
|
|
759
759
|
key: z.string(),
|
|
760
760
|
display_name: z.string().optional(),
|
|
@@ -862,7 +862,7 @@ export const RetrieveToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
862
862
|
z.ZodTypeDef,
|
|
863
863
|
unknown
|
|
864
864
|
> = z.object({
|
|
865
|
-
id: z.string().default("
|
|
865
|
+
id: z.string().default("01KK16TF7R4R7JBPJPZ3KYMWZE"),
|
|
866
866
|
name: z.string(),
|
|
867
867
|
description: z.string().optional(),
|
|
868
868
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -918,7 +918,7 @@ export const RetrieveToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
918
918
|
z.ZodTypeDef,
|
|
919
919
|
unknown
|
|
920
920
|
> = z.object({
|
|
921
|
-
_id: z.string().default("
|
|
921
|
+
_id: z.string().default("tool_01KK16TF7Q6GR9HQF53FDHGE20"),
|
|
922
922
|
path: z.string(),
|
|
923
923
|
key: z.string(),
|
|
924
924
|
display_name: z.string().optional(),
|
|
@@ -1111,7 +1111,7 @@ export const RetrieveToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
1111
1111
|
z.ZodTypeDef,
|
|
1112
1112
|
unknown
|
|
1113
1113
|
> = z.object({
|
|
1114
|
-
_id: z.string().default("
|
|
1114
|
+
_id: z.string().default("tool_01KK16TF7NG0EN8FADQ1KNXXT2"),
|
|
1115
1115
|
path: z.string(),
|
|
1116
1116
|
key: z.string(),
|
|
1117
1117
|
display_name: z.string().optional(),
|
|
@@ -1209,7 +1209,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1209
1209
|
z.ZodTypeDef,
|
|
1210
1210
|
unknown
|
|
1211
1211
|
> = z.object({
|
|
1212
|
-
_id: z.string().default("
|
|
1212
|
+
_id: z.string().default("tool_01KK16TF7K2M85KH9VBSK222DM"),
|
|
1213
1213
|
path: z.string(),
|
|
1214
1214
|
key: z.string(),
|
|
1215
1215
|
display_name: z.string().optional(),
|
|
@@ -1317,7 +1317,7 @@ export const RetrieveToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
1317
1317
|
z.ZodTypeDef,
|
|
1318
1318
|
unknown
|
|
1319
1319
|
> = z.object({
|
|
1320
|
-
_id: z.string().default("
|
|
1320
|
+
_id: z.string().default("tool_01KK16TF7H233TDVV5B1JNNNSP"),
|
|
1321
1321
|
path: z.string(),
|
|
1322
1322
|
key: z.string(),
|
|
1323
1323
|
display_name: z.string().optional(),
|
|
@@ -3599,7 +3599,7 @@ export const Tools$outboundSchema: z.ZodType<
|
|
|
3599
3599
|
z.ZodTypeDef,
|
|
3600
3600
|
Tools
|
|
3601
3601
|
> = z.object({
|
|
3602
|
-
id: z.string().default("
|
|
3602
|
+
id: z.string().default("01KK16TERVKDSJ68RKEZ97T7X6"),
|
|
3603
3603
|
name: z.string(),
|
|
3604
3604
|
description: z.string().optional(),
|
|
3605
3605
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -3646,7 +3646,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
3646
3646
|
z.ZodTypeDef,
|
|
3647
3647
|
AgentToolInputRunTools
|
|
3648
3648
|
> = z.object({
|
|
3649
|
-
id: z.string().default("
|
|
3649
|
+
id: z.string().default("01KK16TEVCSB8JRKMX6S4MDV5X"),
|
|
3650
3650
|
name: z.string(),
|
|
3651
3651
|
description: z.string().optional(),
|
|
3652
3652
|
schema: z.lazy(() =>
|
|
@@ -2358,7 +2358,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
2358
2358
|
.default("orq"),
|
|
2359
2359
|
reviewed_by_id: z.string(),
|
|
2360
2360
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2361
|
-
"2026-03-
|
|
2361
|
+
"2026-03-06T09:14:25.135Z",
|
|
2362
2362
|
).transform(v => new Date(v)),
|
|
2363
2363
|
type: z.literal("string_array"),
|
|
2364
2364
|
values: z.array(z.string()),
|
|
@@ -2404,7 +2404,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
2404
2404
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
2405
2405
|
reviewed_by_id: z.string(),
|
|
2406
2406
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2407
|
-
"2026-03-
|
|
2407
|
+
"2026-03-06T09:14:25.134Z",
|
|
2408
2408
|
).transform(v => new Date(v)),
|
|
2409
2409
|
type: z.literal("number"),
|
|
2410
2410
|
value: z.number(),
|
|
@@ -2449,7 +2449,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
2449
2449
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
2450
2450
|
reviewed_by_id: z.string(),
|
|
2451
2451
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2452
|
-
"2026-03-
|
|
2452
|
+
"2026-03-06T09:14:25.133Z",
|
|
2453
2453
|
).transform(v => new Date(v)),
|
|
2454
2454
|
type: z.literal("string"),
|
|
2455
2455
|
value: z.string(),
|
|
@@ -2530,7 +2530,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
2530
2530
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2531
2531
|
.optional(),
|
|
2532
2532
|
updated: z.string().datetime({ offset: true }).default(
|
|
2533
|
-
"2026-03-
|
|
2533
|
+
"2026-03-06T09:14:08.503Z",
|
|
2534
2534
|
).transform(v => new Date(v)),
|
|
2535
2535
|
}).transform((v) => {
|
|
2536
2536
|
return remap$(v, {
|
|
@@ -182,7 +182,7 @@ export const UpdateDatasetResponseBody$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
|
-
"2026-03-
|
|
185
|
+
"2026-03-06T09:14:08.503Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
152
152
|
z.ZodTypeDef,
|
|
153
153
|
unknown
|
|
154
154
|
> = z.object({
|
|
155
|
-
_id: z.string().default("
|
|
155
|
+
_id: z.string().default("01KK16TFB0Q205RVC8RG32X7E8"),
|
|
156
156
|
display_name: z.string(),
|
|
157
157
|
description: z.string().optional(),
|
|
158
158
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -47,6 +47,15 @@ export type UpdateEvalRequestBodyEvalsRequest4OutputType = ClosedEnum<
|
|
|
47
47
|
typeof UpdateEvalRequestBodyEvalsRequest4OutputType
|
|
48
48
|
>;
|
|
49
49
|
|
|
50
|
+
export const UpdateEvalRequestBodyEvalsVersionIncrement = {
|
|
51
|
+
Major: "major",
|
|
52
|
+
Minor: "minor",
|
|
53
|
+
Patch: "patch",
|
|
54
|
+
} as const;
|
|
55
|
+
export type UpdateEvalRequestBodyEvalsVersionIncrement = ClosedEnum<
|
|
56
|
+
typeof UpdateEvalRequestBodyEvalsVersionIncrement
|
|
57
|
+
>;
|
|
58
|
+
|
|
50
59
|
export type RequestBodyPython = {
|
|
51
60
|
guardrailConfig?:
|
|
52
61
|
| UpdateEvalGuardrailConfigEvalsRequestRequestBodyBoolean
|
|
@@ -67,6 +76,8 @@ export type RequestBodyPython = {
|
|
|
67
76
|
path: string;
|
|
68
77
|
description?: string | undefined;
|
|
69
78
|
key?: string | undefined;
|
|
79
|
+
versionIncrement?: UpdateEvalRequestBodyEvalsVersionIncrement | undefined;
|
|
80
|
+
versionDescription?: string | undefined;
|
|
70
81
|
};
|
|
71
82
|
|
|
72
83
|
export const UpdateEvalGuardrailConfigEvalsRequestOperator = {
|
|
@@ -122,6 +133,15 @@ export const RequestBodyMethod = {
|
|
|
122
133
|
} as const;
|
|
123
134
|
export type RequestBodyMethod = ClosedEnum<typeof RequestBodyMethod>;
|
|
124
135
|
|
|
136
|
+
export const UpdateEvalRequestBodyVersionIncrement = {
|
|
137
|
+
Major: "major",
|
|
138
|
+
Minor: "minor",
|
|
139
|
+
Patch: "patch",
|
|
140
|
+
} as const;
|
|
141
|
+
export type UpdateEvalRequestBodyVersionIncrement = ClosedEnum<
|
|
142
|
+
typeof UpdateEvalRequestBodyVersionIncrement
|
|
143
|
+
>;
|
|
144
|
+
|
|
125
145
|
export type RequestBodyHTTP = {
|
|
126
146
|
guardrailConfig?:
|
|
127
147
|
| UpdateEvalGuardrailConfigEvalsRequestBoolean
|
|
@@ -148,6 +168,8 @@ export type RequestBodyHTTP = {
|
|
|
148
168
|
path: string;
|
|
149
169
|
description?: string | undefined;
|
|
150
170
|
key?: string | undefined;
|
|
171
|
+
versionIncrement?: UpdateEvalRequestBodyVersionIncrement | undefined;
|
|
172
|
+
versionDescription?: string | undefined;
|
|
151
173
|
};
|
|
152
174
|
|
|
153
175
|
export const UpdateEvalGuardrailConfigEvalsOperator = {
|
|
@@ -188,6 +210,15 @@ export type UpdateEvalRequestBodyEvalsOutputType = ClosedEnum<
|
|
|
188
210
|
typeof UpdateEvalRequestBodyEvalsOutputType
|
|
189
211
|
>;
|
|
190
212
|
|
|
213
|
+
export const RequestBodyVersionIncrement = {
|
|
214
|
+
Major: "major",
|
|
215
|
+
Minor: "minor",
|
|
216
|
+
Patch: "patch",
|
|
217
|
+
} as const;
|
|
218
|
+
export type RequestBodyVersionIncrement = ClosedEnum<
|
|
219
|
+
typeof RequestBodyVersionIncrement
|
|
220
|
+
>;
|
|
221
|
+
|
|
191
222
|
export type RequestBodyJSON = {
|
|
192
223
|
guardrailConfig?:
|
|
193
224
|
| UpdateEvalGuardrailConfigEvalsBoolean
|
|
@@ -208,6 +239,8 @@ export type RequestBodyJSON = {
|
|
|
208
239
|
path: string;
|
|
209
240
|
description?: string | undefined;
|
|
210
241
|
key?: string | undefined;
|
|
242
|
+
versionIncrement?: RequestBodyVersionIncrement | undefined;
|
|
243
|
+
versionDescription?: string | undefined;
|
|
211
244
|
};
|
|
212
245
|
|
|
213
246
|
export const UpdateEvalGuardrailConfigOperator = {
|
|
@@ -305,6 +338,13 @@ export type Jury = {
|
|
|
305
338
|
tieValue?: TieValue | undefined;
|
|
306
339
|
};
|
|
307
340
|
|
|
341
|
+
export const VersionIncrement = {
|
|
342
|
+
Major: "major",
|
|
343
|
+
Minor: "minor",
|
|
344
|
+
Patch: "patch",
|
|
345
|
+
} as const;
|
|
346
|
+
export type VersionIncrement = ClosedEnum<typeof VersionIncrement>;
|
|
347
|
+
|
|
308
348
|
export type RequestBodyLLM = {
|
|
309
349
|
guardrailConfig?:
|
|
310
350
|
| UpdateEvalGuardrailConfigBoolean
|
|
@@ -332,6 +372,8 @@ export type RequestBodyLLM = {
|
|
|
332
372
|
model?: string | undefined;
|
|
333
373
|
jury?: Jury | undefined;
|
|
334
374
|
key?: string | undefined;
|
|
375
|
+
versionIncrement?: VersionIncrement | undefined;
|
|
376
|
+
versionDescription?: string | undefined;
|
|
335
377
|
};
|
|
336
378
|
|
|
337
379
|
export type UpdateEvalRequestBody =
|
|
@@ -1202,6 +1244,11 @@ export const UpdateEvalRequestBodyEvalsRequest4OutputType$outboundSchema:
|
|
|
1202
1244
|
z.ZodNativeEnum<typeof UpdateEvalRequestBodyEvalsRequest4OutputType> = z
|
|
1203
1245
|
.nativeEnum(UpdateEvalRequestBodyEvalsRequest4OutputType);
|
|
1204
1246
|
|
|
1247
|
+
/** @internal */
|
|
1248
|
+
export const UpdateEvalRequestBodyEvalsVersionIncrement$outboundSchema:
|
|
1249
|
+
z.ZodNativeEnum<typeof UpdateEvalRequestBodyEvalsVersionIncrement> = z
|
|
1250
|
+
.nativeEnum(UpdateEvalRequestBodyEvalsVersionIncrement);
|
|
1251
|
+
|
|
1205
1252
|
/** @internal */
|
|
1206
1253
|
export type RequestBodyPython$Outbound = {
|
|
1207
1254
|
guardrail_config?:
|
|
@@ -1214,6 +1261,8 @@ export type RequestBodyPython$Outbound = {
|
|
|
1214
1261
|
path: string;
|
|
1215
1262
|
description?: string | undefined;
|
|
1216
1263
|
key?: string | undefined;
|
|
1264
|
+
versionIncrement?: string | undefined;
|
|
1265
|
+
versionDescription?: string | undefined;
|
|
1217
1266
|
};
|
|
1218
1267
|
|
|
1219
1268
|
/** @internal */
|
|
@@ -1237,6 +1286,9 @@ export const RequestBodyPython$outboundSchema: z.ZodType<
|
|
|
1237
1286
|
path: z.string(),
|
|
1238
1287
|
description: z.string().optional(),
|
|
1239
1288
|
key: z.string().optional(),
|
|
1289
|
+
versionIncrement: UpdateEvalRequestBodyEvalsVersionIncrement$outboundSchema
|
|
1290
|
+
.optional(),
|
|
1291
|
+
versionDescription: z.string().optional(),
|
|
1240
1292
|
}).transform((v) => {
|
|
1241
1293
|
return remap$(v, {
|
|
1242
1294
|
guardrailConfig: "guardrail_config",
|
|
@@ -1368,6 +1420,12 @@ export const RequestBodyMethod$outboundSchema: z.ZodNativeEnum<
|
|
|
1368
1420
|
typeof RequestBodyMethod
|
|
1369
1421
|
> = z.nativeEnum(RequestBodyMethod);
|
|
1370
1422
|
|
|
1423
|
+
/** @internal */
|
|
1424
|
+
export const UpdateEvalRequestBodyVersionIncrement$outboundSchema:
|
|
1425
|
+
z.ZodNativeEnum<typeof UpdateEvalRequestBodyVersionIncrement> = z.nativeEnum(
|
|
1426
|
+
UpdateEvalRequestBodyVersionIncrement,
|
|
1427
|
+
);
|
|
1428
|
+
|
|
1371
1429
|
/** @internal */
|
|
1372
1430
|
export type RequestBodyHTTP$Outbound = {
|
|
1373
1431
|
guardrail_config?:
|
|
@@ -1383,6 +1441,8 @@ export type RequestBodyHTTP$Outbound = {
|
|
|
1383
1441
|
path: string;
|
|
1384
1442
|
description?: string | undefined;
|
|
1385
1443
|
key?: string | undefined;
|
|
1444
|
+
versionIncrement?: string | undefined;
|
|
1445
|
+
versionDescription?: string | undefined;
|
|
1386
1446
|
};
|
|
1387
1447
|
|
|
1388
1448
|
/** @internal */
|
|
@@ -1405,6 +1465,9 @@ export const RequestBodyHTTP$outboundSchema: z.ZodType<
|
|
|
1405
1465
|
path: z.string(),
|
|
1406
1466
|
description: z.string().optional(),
|
|
1407
1467
|
key: z.string().optional(),
|
|
1468
|
+
versionIncrement: UpdateEvalRequestBodyVersionIncrement$outboundSchema
|
|
1469
|
+
.optional(),
|
|
1470
|
+
versionDescription: z.string().optional(),
|
|
1408
1471
|
}).transform((v) => {
|
|
1409
1472
|
return remap$(v, {
|
|
1410
1473
|
guardrailConfig: "guardrail_config",
|
|
@@ -1527,6 +1590,11 @@ export const UpdateEvalRequestBodyEvalsOutputType$outboundSchema:
|
|
|
1527
1590
|
UpdateEvalRequestBodyEvalsOutputType,
|
|
1528
1591
|
);
|
|
1529
1592
|
|
|
1593
|
+
/** @internal */
|
|
1594
|
+
export const RequestBodyVersionIncrement$outboundSchema: z.ZodNativeEnum<
|
|
1595
|
+
typeof RequestBodyVersionIncrement
|
|
1596
|
+
> = z.nativeEnum(RequestBodyVersionIncrement);
|
|
1597
|
+
|
|
1530
1598
|
/** @internal */
|
|
1531
1599
|
export type RequestBodyJSON$Outbound = {
|
|
1532
1600
|
guardrail_config?:
|
|
@@ -1539,6 +1607,8 @@ export type RequestBodyJSON$Outbound = {
|
|
|
1539
1607
|
path: string;
|
|
1540
1608
|
description?: string | undefined;
|
|
1541
1609
|
key?: string | undefined;
|
|
1610
|
+
versionIncrement?: string | undefined;
|
|
1611
|
+
versionDescription?: string | undefined;
|
|
1542
1612
|
};
|
|
1543
1613
|
|
|
1544
1614
|
/** @internal */
|
|
@@ -1557,6 +1627,8 @@ export const RequestBodyJSON$outboundSchema: z.ZodType<
|
|
|
1557
1627
|
path: z.string(),
|
|
1558
1628
|
description: z.string().optional(),
|
|
1559
1629
|
key: z.string().optional(),
|
|
1630
|
+
versionIncrement: RequestBodyVersionIncrement$outboundSchema.optional(),
|
|
1631
|
+
versionDescription: z.string().optional(),
|
|
1560
1632
|
}).transform((v) => {
|
|
1561
1633
|
return remap$(v, {
|
|
1562
1634
|
guardrailConfig: "guardrail_config",
|
|
@@ -1865,6 +1937,11 @@ export function juryToJSON(jury: Jury): string {
|
|
|
1865
1937
|
return JSON.stringify(Jury$outboundSchema.parse(jury));
|
|
1866
1938
|
}
|
|
1867
1939
|
|
|
1940
|
+
/** @internal */
|
|
1941
|
+
export const VersionIncrement$outboundSchema: z.ZodNativeEnum<
|
|
1942
|
+
typeof VersionIncrement
|
|
1943
|
+
> = z.nativeEnum(VersionIncrement);
|
|
1944
|
+
|
|
1868
1945
|
/** @internal */
|
|
1869
1946
|
export type RequestBodyLLM$Outbound = {
|
|
1870
1947
|
guardrail_config?:
|
|
@@ -1881,6 +1958,8 @@ export type RequestBodyLLM$Outbound = {
|
|
|
1881
1958
|
model?: string | undefined;
|
|
1882
1959
|
jury?: Jury$Outbound | undefined;
|
|
1883
1960
|
key?: string | undefined;
|
|
1961
|
+
versionIncrement?: string | undefined;
|
|
1962
|
+
versionDescription?: string | undefined;
|
|
1884
1963
|
};
|
|
1885
1964
|
|
|
1886
1965
|
/** @internal */
|
|
@@ -1903,6 +1982,8 @@ export const RequestBodyLLM$outboundSchema: z.ZodType<
|
|
|
1903
1982
|
model: z.string().optional(),
|
|
1904
1983
|
jury: z.lazy(() => Jury$outboundSchema).optional(),
|
|
1905
1984
|
key: z.string().optional(),
|
|
1985
|
+
versionIncrement: VersionIncrement$outboundSchema.optional(),
|
|
1986
|
+
versionDescription: z.string().optional(),
|
|
1906
1987
|
}).transform((v) => {
|
|
1907
1988
|
return remap$(v, {
|
|
1908
1989
|
guardrailConfig: "guardrail_config",
|
|
@@ -2097,8 +2178,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2097
2178
|
> = z.object({
|
|
2098
2179
|
_id: z.string(),
|
|
2099
2180
|
description: z.string(),
|
|
2100
|
-
created: z.string().default("2026-03-
|
|
2101
|
-
updated: z.string().default("2026-03-
|
|
2181
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2182
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2102
2183
|
guardrail_config: z.union([
|
|
2103
2184
|
z.lazy(() =>
|
|
2104
2185
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2251,8 +2332,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
2251
2332
|
> = z.object({
|
|
2252
2333
|
_id: z.string(),
|
|
2253
2334
|
description: z.string(),
|
|
2254
|
-
created: z.string().default("2026-03-
|
|
2255
|
-
updated: z.string().default("2026-03-
|
|
2335
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2336
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
2256
2337
|
guardrail_config: z.union([
|
|
2257
2338
|
z.lazy(() =>
|
|
2258
2339
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -3071,8 +3152,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3071
3152
|
> = z.object({
|
|
3072
3153
|
_id: z.string(),
|
|
3073
3154
|
description: z.string(),
|
|
3074
|
-
created: z.string().default("2026-03-
|
|
3075
|
-
updated: z.string().default("2026-03-
|
|
3155
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3156
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3076
3157
|
guardrail_config: z.union([
|
|
3077
3158
|
z.lazy(() =>
|
|
3078
3159
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -3253,8 +3334,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
3253
3334
|
> = z.object({
|
|
3254
3335
|
_id: z.string(),
|
|
3255
3336
|
description: z.string(),
|
|
3256
|
-
created: z.string().default("2026-03-
|
|
3257
|
-
updated: z.string().default("2026-03-
|
|
3337
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3338
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3258
3339
|
guardrail_config: z.union([
|
|
3259
3340
|
z.lazy(() =>
|
|
3260
3341
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -3401,8 +3482,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
3401
3482
|
> = z.object({
|
|
3402
3483
|
_id: z.string(),
|
|
3403
3484
|
description: z.string(),
|
|
3404
|
-
created: z.string().default("2026-03-
|
|
3405
|
-
updated: z.string().default("2026-03-
|
|
3485
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3486
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3406
3487
|
guardrail_config: z.union([
|
|
3407
3488
|
z.lazy(() =>
|
|
3408
3489
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -3538,8 +3619,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
3538
3619
|
> = z.object({
|
|
3539
3620
|
_id: z.string(),
|
|
3540
3621
|
description: z.string(),
|
|
3541
|
-
created: z.string().default("2026-03-
|
|
3542
|
-
updated: z.string().default("2026-03-
|
|
3622
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3623
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3543
3624
|
guardrail_config: z.union([
|
|
3544
3625
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
3545
3626
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -3840,8 +3921,8 @@ export const UpdateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
3840
3921
|
> = z.object({
|
|
3841
3922
|
_id: z.string(),
|
|
3842
3923
|
description: z.string(),
|
|
3843
|
-
created: z.string().default("2026-03-
|
|
3844
|
-
updated: z.string().default("2026-03-
|
|
3924
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3925
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3845
3926
|
guardrail_config: z.union([
|
|
3846
3927
|
z.lazy(() =>
|
|
3847
3928
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1LLMBoolean$inboundSchema
|
|
@@ -3984,8 +4065,8 @@ export const UpdateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
3984
4065
|
> = z.object({
|
|
3985
4066
|
_id: z.string(),
|
|
3986
4067
|
description: z.string(),
|
|
3987
|
-
created: z.string().default("2026-03-
|
|
3988
|
-
updated: z.string().default("2026-03-
|
|
4068
|
+
created: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
4069
|
+
updated: z.string().default("2026-03-06T09:14:09.882Z"),
|
|
3989
4070
|
guardrail_config: z.union([
|
|
3990
4071
|
z.lazy(() =>
|
|
3991
4072
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1Boolean$inboundSchema
|
|
@@ -167,7 +167,7 @@ export const UpdateIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2026-03-
|
|
170
|
+
"2026-03-06T09:14:08.503Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|