@orq-ai/node 4.2.9 → 4.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/config.js.map +1 -1
- package/models/components/conversationresponse.js +1 -1
- package/models/components/conversationwithmessagesresponse.js +1 -1
- package/models/components/partdoneevent.js +1 -1
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createconversation.js +1 -1
- package/models/operations/createconversationresponse.js +2 -2
- 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 +14 -14
- 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/generateconversationname.js +1 -1
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +14 -14
- 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/updateconversation.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 +14 -14
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/routerAudioTranscriptionsCreate.ts +31 -0
- package/packages/orq-rc/src/funcs/routerAudioTranslationsCreate.ts +31 -0
- package/packages/orq-rc/src/funcs/routerImagesEditsCreate.ts +38 -0
- package/packages/orq-rc/src/funcs/routerImagesVariationsCreate.ts +38 -0
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/models/components/conversationresponse.ts +1 -1
- package/packages/orq-rc/src/models/components/conversationwithmessagesresponse.ts +1 -1
- 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/createagentrequest.ts +22 -0
- package/packages/orq-rc/src/models/operations/createchatcompletion.ts +6 -0
- package/packages/orq-rc/src/models/operations/createcompletion.ts +432 -97
- package/packages/orq-rc/src/models/operations/createcontact.ts +1 -1
- package/packages/orq-rc/src/models/operations/createconversation.ts +1 -1
- package/packages/orq-rc/src/models/operations/createconversationresponse.ts +2 -2
- 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/createembedding.ts +383 -53
- package/packages/orq-rc/src/models/operations/createeval.ts +14 -14
- package/packages/orq-rc/src/models/operations/createidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/createimage.ts +382 -45
- package/packages/orq-rc/src/models/operations/createimageedit.ts +406 -73
- package/packages/orq-rc/src/models/operations/createimagevariation.ts +428 -78
- package/packages/orq-rc/src/models/operations/createprompt.ts +11 -0
- package/packages/orq-rc/src/models/operations/creatererank.ts +369 -54
- package/packages/orq-rc/src/models/operations/createspeech.ts +333 -61
- package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
- package/packages/orq-rc/src/models/operations/createtranscription.ts +312 -15
- package/packages/orq-rc/src/models/operations/createtranslation.ts +307 -15
- 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/generateconversationname.ts +1 -1
- package/packages/orq-rc/src/models/operations/getallprompts.ts +5 -0
- package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getevals.ts +14 -14
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +5 -0
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +5 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +10 -0
- 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/listpromptversions.ts +5 -0
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +10 -0
- 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 +13 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +13 -1
- package/packages/orq-rc/src/models/operations/updateagent.ts +22 -0
- package/packages/orq-rc/src/models/operations/updateconversation.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 +14 -14
- package/packages/orq-rc/src/models/operations/updateidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateprompt.ts +11 -0
- package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
- package/src/lib/config.ts +3 -3
- package/src/models/components/conversationresponse.ts +1 -1
- package/src/models/components/conversationwithmessagesresponse.ts +1 -1
- 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/createconversation.ts +1 -1
- package/src/models/operations/createconversationresponse.ts +2 -2
- 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 +14 -14
- 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/generateconversationname.ts +1 -1
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +14 -14
- 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/updateconversation.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 +14 -14
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
|
@@ -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-01-
|
|
1210
|
+
"2026-01-27T08:09:05.014Z",
|
|
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-01-
|
|
1258
|
+
"2026-01-27T08:09:05.013Z",
|
|
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-01-
|
|
1303
|
+
"2026-01-27T08:09:05.013Z",
|
|
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-01-
|
|
1380
|
+
"2026-01-27T08:08:52.242Z",
|
|
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-01-
|
|
129
|
+
"2026-01-27T08:08:52.242Z",
|
|
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("01KFZ7ZH4QV9ZFMG26WTDXD9X1"),
|
|
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-01-
|
|
98
|
+
"2026-01-27T08:08:52.242Z",
|
|
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_01KFZ7ZH1N2QCD2KQQF9B46B4P"),
|
|
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("01KFZ7ZH1M7KW1MJ4ZDNWAQH92"),
|
|
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_01KFZ7ZH1JPEHTQ2ZW0ZVB1BDB"),
|
|
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_01KFZ7ZH1GEAGE785GDNAP862W"),
|
|
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_01KFZ7ZH1EHQNSQBRZ3MYZ40JE"),
|
|
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_01KFZ7ZH1CFZQ02TC9REB699D9"),
|
|
1321
1321
|
path: z.string(),
|
|
1322
1322
|
key: z.string(),
|
|
1323
1323
|
display_name: z.string().optional(),
|
|
@@ -4027,7 +4027,7 @@ export const Tools$outboundSchema: z.ZodType<
|
|
|
4027
4027
|
z.ZodTypeDef,
|
|
4028
4028
|
Tools
|
|
4029
4029
|
> = z.object({
|
|
4030
|
-
id: z.string().default("
|
|
4030
|
+
id: z.string().default("01KFZ7ZGEDH417E2J5VGX9XCH3"),
|
|
4031
4031
|
name: z.string(),
|
|
4032
4032
|
description: z.string().optional(),
|
|
4033
4033
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -4099,7 +4099,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
4099
4099
|
z.ZodTypeDef,
|
|
4100
4100
|
AgentToolInputRunTools
|
|
4101
4101
|
> = z.object({
|
|
4102
|
-
id: z.string().default("
|
|
4102
|
+
id: z.string().default("01KFZ7ZGGXCVW0BV86FTV42BJE"),
|
|
4103
4103
|
name: z.string(),
|
|
4104
4104
|
description: z.string().optional(),
|
|
4105
4105
|
schema: z.lazy(() =>
|
|
@@ -226,7 +226,7 @@ export const UpdateConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
226
226
|
z.ZodTypeDef,
|
|
227
227
|
unknown
|
|
228
228
|
> = z.object({
|
|
229
|
-
_id: z.string().default("
|
|
229
|
+
_id: z.string().default("conv_01kfz7zgjn12rfpcxsya0j9ekh"),
|
|
230
230
|
kind: UpdateConversationKind$inboundSchema,
|
|
231
231
|
displayName: z.string(),
|
|
232
232
|
createdAt: z.number(),
|
|
@@ -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-01-
|
|
2361
|
+
"2026-01-27T08:09:05.060Z",
|
|
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-01-
|
|
2407
|
+
"2026-01-27T08:09:05.059Z",
|
|
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-01-
|
|
2452
|
+
"2026-01-27T08:09:05.059Z",
|
|
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-01-
|
|
2533
|
+
"2026-01-27T08:08:52.242Z",
|
|
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-01-
|
|
185
|
+
"2026-01-27T08:08:52.242Z",
|
|
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("01KFZ7ZH4T71V58G293CT2YAHT"),
|
|
156
156
|
display_name: z.string(),
|
|
157
157
|
description: z.string().optional(),
|
|
158
158
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -1694,8 +1694,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
1694
1694
|
> = z.object({
|
|
1695
1695
|
_id: z.string(),
|
|
1696
1696
|
description: z.string(),
|
|
1697
|
-
created: z.string().default("2026-01-
|
|
1698
|
-
updated: z.string().default("2026-01-
|
|
1697
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1698
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1699
1699
|
guardrail_config: z.union([
|
|
1700
1700
|
z.lazy(() =>
|
|
1701
1701
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -1841,8 +1841,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
1841
1841
|
> = z.object({
|
|
1842
1842
|
_id: z.string(),
|
|
1843
1843
|
description: z.string(),
|
|
1844
|
-
created: z.string().default("2026-01-
|
|
1845
|
-
updated: z.string().default("2026-01-
|
|
1844
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1845
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
1846
1846
|
guardrail_config: z.union([
|
|
1847
1847
|
z.lazy(() =>
|
|
1848
1848
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2655,8 +2655,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
2655
2655
|
> = z.object({
|
|
2656
2656
|
_id: z.string(),
|
|
2657
2657
|
description: z.string(),
|
|
2658
|
-
created: z.string().default("2026-01-
|
|
2659
|
-
updated: z.string().default("2026-01-
|
|
2658
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2659
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2660
2660
|
guardrail_config: z.union([
|
|
2661
2661
|
z.lazy(() =>
|
|
2662
2662
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -2832,8 +2832,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
2832
2832
|
> = z.object({
|
|
2833
2833
|
_id: z.string(),
|
|
2834
2834
|
description: z.string(),
|
|
2835
|
-
created: z.string().default("2026-01-
|
|
2836
|
-
updated: z.string().default("2026-01-
|
|
2835
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2836
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2837
2837
|
guardrail_config: z.union([
|
|
2838
2838
|
z.lazy(() =>
|
|
2839
2839
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -2980,8 +2980,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
2980
2980
|
> = z.object({
|
|
2981
2981
|
_id: z.string(),
|
|
2982
2982
|
description: z.string(),
|
|
2983
|
-
created: z.string().default("2026-01-
|
|
2984
|
-
updated: z.string().default("2026-01-
|
|
2983
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2984
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
2985
2985
|
guardrail_config: z.union([
|
|
2986
2986
|
z.lazy(() =>
|
|
2987
2987
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -3121,8 +3121,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
3121
3121
|
> = z.object({
|
|
3122
3122
|
_id: z.string(),
|
|
3123
3123
|
description: z.string(),
|
|
3124
|
-
created: z.string().default("2026-01-
|
|
3125
|
-
updated: z.string().default("2026-01-
|
|
3124
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
3125
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
3126
3126
|
guardrail_config: z.union([
|
|
3127
3127
|
z.lazy(() =>
|
|
3128
3128
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -3250,8 +3250,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
3250
3250
|
> = z.object({
|
|
3251
3251
|
_id: z.string(),
|
|
3252
3252
|
description: z.string(),
|
|
3253
|
-
created: z.string().default("2026-01-
|
|
3254
|
-
updated: z.string().default("2026-01-
|
|
3253
|
+
created: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
3254
|
+
updated: z.string().default("2026-01-27T08:08:53.872Z"),
|
|
3255
3255
|
guardrail_config: z.union([
|
|
3256
3256
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
3257
3257
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$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-01-
|
|
170
|
+
"2026-01-27T08:08:52.242Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -1402,7 +1402,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1402
1402
|
z.ZodTypeDef,
|
|
1403
1403
|
RequestBodyTools
|
|
1404
1404
|
> = z.object({
|
|
1405
|
-
id: z.string().default("
|
|
1405
|
+
id: z.string().default("01KFZ7ZH0SS4WZA4Y0M0V8XKYX"),
|
|
1406
1406
|
name: z.string(),
|
|
1407
1407
|
description: z.string().optional(),
|
|
1408
1408
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2080,7 +2080,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2080
2080
|
z.ZodTypeDef,
|
|
2081
2081
|
unknown
|
|
2082
2082
|
> = z.object({
|
|
2083
|
-
_id: z.string().default("
|
|
2083
|
+
_id: z.string().default("tool_01KFZ7ZH0N7SCH8MBPT20DCSAZ"),
|
|
2084
2084
|
path: z.string(),
|
|
2085
2085
|
key: z.string(),
|
|
2086
2086
|
display_name: z.string().optional(),
|
|
@@ -2185,7 +2185,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2185
2185
|
z.ZodTypeDef,
|
|
2186
2186
|
unknown
|
|
2187
2187
|
> = z.object({
|
|
2188
|
-
id: z.string().default("
|
|
2188
|
+
id: z.string().default("01KFZ7ZH0M62EWBQWFP5N6ZK96"),
|
|
2189
2189
|
name: z.string(),
|
|
2190
2190
|
description: z.string().optional(),
|
|
2191
2191
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -2241,7 +2241,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2241
2241
|
z.ZodTypeDef,
|
|
2242
2242
|
unknown
|
|
2243
2243
|
> = z.object({
|
|
2244
|
-
_id: z.string().default("
|
|
2244
|
+
_id: z.string().default("tool_01KFZ7ZH0KN958PX77NMYN4ANS"),
|
|
2245
2245
|
path: z.string(),
|
|
2246
2246
|
key: z.string(),
|
|
2247
2247
|
display_name: z.string().optional(),
|
|
@@ -2432,7 +2432,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2432
2432
|
z.ZodTypeDef,
|
|
2433
2433
|
unknown
|
|
2434
2434
|
> = z.object({
|
|
2435
|
-
_id: z.string().default("
|
|
2435
|
+
_id: z.string().default("tool_01KFZ7ZH0JSEFTPWQVBY1V572G"),
|
|
2436
2436
|
path: z.string(),
|
|
2437
2437
|
key: z.string(),
|
|
2438
2438
|
display_name: z.string().optional(),
|
|
@@ -2529,7 +2529,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2529
2529
|
z.ZodTypeDef,
|
|
2530
2530
|
unknown
|
|
2531
2531
|
> = z.object({
|
|
2532
|
-
_id: z.string().default("
|
|
2532
|
+
_id: z.string().default("tool_01KFZ7ZH0GWVV6CY8G50YHX940"),
|
|
2533
2533
|
path: z.string(),
|
|
2534
2534
|
key: z.string(),
|
|
2535
2535
|
display_name: z.string().optional(),
|
|
@@ -2634,7 +2634,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2634
2634
|
z.ZodTypeDef,
|
|
2635
2635
|
unknown
|
|
2636
2636
|
> = z.object({
|
|
2637
|
-
_id: z.string().default("
|
|
2637
|
+
_id: z.string().default("tool_01KFZ7ZH0FRCAG06FM9NGCVVE4"),
|
|
2638
2638
|
path: z.string(),
|
|
2639
2639
|
key: z.string(),
|
|
2640
2640
|
display_name: z.string().optional(),
|