@orq-ai/node 4.2.0-rc.61 → 4.2.0-rc.63
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 +2 -2
- package/lib/config.js +2 -2
- 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/listcontacts.js +1 -1
- 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/retrievecontact.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/updatecontact.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/src/lib/config.ts +2 -2
- 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/listcontacts.ts +1 -1
- 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/retrievecontact.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/updatecontact.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
|
@@ -94,7 +94,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
94
94
|
file_name: z.string(),
|
|
95
95
|
workspace_id: z.string(),
|
|
96
96
|
created: z.string().datetime({ offset: true }).default(
|
|
97
|
-
"2026-01-
|
|
97
|
+
"2026-01-22T13:36:21.569Z",
|
|
98
98
|
).transform(v => new Date(v)),
|
|
99
99
|
}).transform((v) => {
|
|
100
100
|
return remap$(v, {
|
|
@@ -125,7 +125,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
125
125
|
file_name: z.string(),
|
|
126
126
|
workspace_id: z.string(),
|
|
127
127
|
created: z.string().datetime({ offset: true }).default(
|
|
128
|
-
"2026-01-
|
|
128
|
+
"2026-01-22T13:36:21.569Z",
|
|
129
129
|
).transform(v => new Date(v)),
|
|
130
130
|
}).transform((v) => {
|
|
131
131
|
return remap$(v, {
|
|
@@ -148,7 +148,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
148
148
|
file_name: z.string(),
|
|
149
149
|
workspace_id: z.string(),
|
|
150
150
|
created: z.string().datetime({ offset: true }).default(
|
|
151
|
-
"2026-01-
|
|
151
|
+
"2026-01-22T13:36:21.569Z",
|
|
152
152
|
).transform(v => new Date(v)),
|
|
153
153
|
}).transform((v) => {
|
|
154
154
|
return remap$(v, {
|
|
@@ -180,7 +180,7 @@ export const GenerateConversationNameResponseBody$inboundSchema: z.ZodType<
|
|
|
180
180
|
z.ZodTypeDef,
|
|
181
181
|
unknown
|
|
182
182
|
> = z.object({
|
|
183
|
-
_id: z.string().default("
|
|
183
|
+
_id: z.string().default("conv_01kfjyqga50wrsqqwj340gkqc5"),
|
|
184
184
|
kind: GenerateConversationNameKind$inboundSchema,
|
|
185
185
|
displayName: z.string(),
|
|
186
186
|
createdAt: z.number(),
|
|
@@ -768,7 +768,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
768
768
|
z.ZodTypeDef,
|
|
769
769
|
unknown
|
|
770
770
|
> = z.object({
|
|
771
|
-
_id: z.string().default("
|
|
771
|
+
_id: z.string().default("tool_01KFJYQGJCSN1Z58EYHYT6D0NZ"),
|
|
772
772
|
path: z.string(),
|
|
773
773
|
key: z.string(),
|
|
774
774
|
display_name: z.string().optional(),
|
|
@@ -867,7 +867,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
867
867
|
z.ZodTypeDef,
|
|
868
868
|
unknown
|
|
869
869
|
> = z.object({
|
|
870
|
-
id: z.string().default("
|
|
870
|
+
id: z.string().default("01KFJYQGJC589SRS903426Q3MA"),
|
|
871
871
|
name: z.string(),
|
|
872
872
|
description: z.string().optional(),
|
|
873
873
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -918,7 +918,7 @@ export const DataMCPTool$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_01KFJYQGJBFXT14NF0QKQFHBBV"),
|
|
922
922
|
path: z.string(),
|
|
923
923
|
key: z.string(),
|
|
924
924
|
display_name: z.string().optional(),
|
|
@@ -1105,7 +1105,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1105
1105
|
z.ZodTypeDef,
|
|
1106
1106
|
unknown
|
|
1107
1107
|
> = z.object({
|
|
1108
|
-
_id: z.string().default("
|
|
1108
|
+
_id: z.string().default("tool_01KFJYQGJ9W7K3F8NRJ2H1EJM9"),
|
|
1109
1109
|
path: z.string(),
|
|
1110
1110
|
key: z.string(),
|
|
1111
1111
|
display_name: z.string().optional(),
|
|
@@ -1200,7 +1200,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1200
1200
|
z.ZodTypeDef,
|
|
1201
1201
|
unknown
|
|
1202
1202
|
> = z.object({
|
|
1203
|
-
_id: z.string().default("
|
|
1203
|
+
_id: z.string().default("tool_01KFJYQGJ8JVFRN67CXF86ZY51"),
|
|
1204
1204
|
path: z.string(),
|
|
1205
1205
|
key: z.string(),
|
|
1206
1206
|
display_name: z.string().optional(),
|
|
@@ -1304,7 +1304,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1304
1304
|
z.ZodTypeDef,
|
|
1305
1305
|
unknown
|
|
1306
1306
|
> = z.object({
|
|
1307
|
-
_id: z.string().default("
|
|
1307
|
+
_id: z.string().default("tool_01KFJYQGJ7EDZQ9J750J3J2EJQ"),
|
|
1308
1308
|
path: z.string(),
|
|
1309
1309
|
key: z.string(),
|
|
1310
1310
|
display_name: z.string().optional(),
|
|
@@ -760,8 +760,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
760
760
|
> = z.object({
|
|
761
761
|
_id: z.string(),
|
|
762
762
|
description: z.string(),
|
|
763
|
-
created: z.string().default("2026-01-
|
|
764
|
-
updated: z.string().default("2026-01-
|
|
763
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
764
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
765
765
|
guardrail_config: z.union([
|
|
766
766
|
z.lazy(() =>
|
|
767
767
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -902,8 +902,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
902
902
|
> = z.object({
|
|
903
903
|
_id: z.string(),
|
|
904
904
|
description: z.string(),
|
|
905
|
-
created: z.string().default("2026-01-
|
|
906
|
-
updated: z.string().default("2026-01-
|
|
905
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
906
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
907
907
|
guardrail_config: z.union([
|
|
908
908
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
909
909
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -1703,8 +1703,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
1703
1703
|
> = z.object({
|
|
1704
1704
|
_id: z.string(),
|
|
1705
1705
|
description: z.string(),
|
|
1706
|
-
created: z.string().default("2026-01-
|
|
1707
|
-
updated: z.string().default("2026-01-
|
|
1706
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1707
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1708
1708
|
guardrail_config: z.union([
|
|
1709
1709
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1710
1710
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -1852,8 +1852,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
1852
1852
|
> = z.object({
|
|
1853
1853
|
_id: z.string(),
|
|
1854
1854
|
description: z.string(),
|
|
1855
|
-
created: z.string().default("2026-01-
|
|
1856
|
-
updated: z.string().default("2026-01-
|
|
1855
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1856
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1857
1857
|
guardrail_config: z.union([
|
|
1858
1858
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
1859
1859
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -1968,8 +1968,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
1968
1968
|
> = z.object({
|
|
1969
1969
|
_id: z.string(),
|
|
1970
1970
|
description: z.string(),
|
|
1971
|
-
created: z.string().default("2026-01-
|
|
1972
|
-
updated: z.string().default("2026-01-
|
|
1971
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1972
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
1973
1973
|
guardrail_config: z.union([
|
|
1974
1974
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
1975
1975
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
@@ -2103,8 +2103,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
2103
2103
|
> = z.object({
|
|
2104
2104
|
_id: z.string(),
|
|
2105
2105
|
description: z.string(),
|
|
2106
|
-
created: z.string().default("2026-01-
|
|
2107
|
-
updated: z.string().default("2026-01-
|
|
2106
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
2107
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
2108
2108
|
guardrail_config: z.union([
|
|
2109
2109
|
z.lazy(() =>
|
|
2110
2110
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
|
|
@@ -2242,8 +2242,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
2242
2242
|
z.object({
|
|
2243
2243
|
_id: z.string(),
|
|
2244
2244
|
description: z.string(),
|
|
2245
|
-
created: z.string().default("2026-01-
|
|
2246
|
-
updated: z.string().default("2026-01-
|
|
2245
|
+
created: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
2246
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
2247
2247
|
guardrail_config: z.union([
|
|
2248
2248
|
z.lazy(() =>
|
|
2249
2249
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -226,7 +226,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
|
|
|
226
226
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
227
227
|
.optional(),
|
|
228
228
|
updated: z.string().datetime({ offset: true }).default(
|
|
229
|
-
"2026-01-
|
|
229
|
+
"2026-01-22T13:36:18.119Z",
|
|
230
230
|
).transform(v => new Date(v)),
|
|
231
231
|
metrics: z.lazy(() => ListContactsMetrics$inboundSchema),
|
|
232
232
|
}).transform((v) => {
|
|
@@ -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-01-
|
|
1273
|
+
"2026-01-22T13:36:32.073Z",
|
|
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-01-
|
|
1323
|
+
"2026-01-22T13:36:32.073Z",
|
|
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-01-
|
|
1372
|
+
"2026-01-22T13:36:32.072Z",
|
|
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-01-
|
|
1451
|
+
"2026-01-22T13:36:18.119Z",
|
|
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-01-
|
|
159
|
+
"2026-01-22T13:36:18.119Z",
|
|
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("01KFJYQGRA1W6A4ZSVM42XVSJP"),
|
|
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-01-
|
|
230
|
+
"2026-01-22T13:36:18.119Z",
|
|
231
231
|
).transform(v => new Date(v)),
|
|
232
232
|
metrics: z.lazy(() => ListIdentitiesMetrics$inboundSchema),
|
|
233
233
|
}).transform((v) => {
|
|
@@ -95,7 +95,7 @@ export const RetrieveContactResponseBody$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-22T13:36:18.119Z",
|
|
99
99
|
).transform(v => new Date(v)),
|
|
100
100
|
}).transform((v) => {
|
|
101
101
|
return remap$(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-01-
|
|
1210
|
+
"2026-01-22T13:36:32.080Z",
|
|
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-22T13:36:32.080Z",
|
|
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-22T13:36:32.079Z",
|
|
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-22T13:36:18.119Z",
|
|
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-22T13:36:18.119Z",
|
|
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("01KFJYQGRC7R19CC12YK27BCZN"),
|
|
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-22T13:36:18.119Z",
|
|
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_01KFJYQGMDC1FNV77ZS3ZJ0PFZ"),
|
|
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("01KFJYQGMCQYTT6X1F53ENNNVB"),
|
|
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_01KFJYQGMBG0JPP0TNZQQ5AKNN"),
|
|
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_01KFJYQGM9WJQKQ7Q555P420QF"),
|
|
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_01KFJYQGM8A4FB3SQ26ZEHNEHV"),
|
|
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_01KFJYQGKZN2H5ZASXWPZRY6S1"),
|
|
1321
1321
|
path: z.string(),
|
|
1322
1322
|
key: z.string(),
|
|
1323
1323
|
display_name: z.string().optional(),
|
|
@@ -3955,7 +3955,7 @@ export const Tools$outboundSchema: z.ZodType<
|
|
|
3955
3955
|
z.ZodTypeDef,
|
|
3956
3956
|
Tools
|
|
3957
3957
|
> = z.object({
|
|
3958
|
-
id: z.string().default("
|
|
3958
|
+
id: z.string().default("01KFJYQG6JN3DK6NJGQ05VTSC5"),
|
|
3959
3959
|
name: z.string(),
|
|
3960
3960
|
description: z.string().optional(),
|
|
3961
3961
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -4022,7 +4022,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
4022
4022
|
z.ZodTypeDef,
|
|
4023
4023
|
AgentToolInputRunTools
|
|
4024
4024
|
> = z.object({
|
|
4025
|
-
id: z.string().default("
|
|
4025
|
+
id: z.string().default("01KFJYQG8SEBC963WGPHDB9BZ7"),
|
|
4026
4026
|
name: z.string(),
|
|
4027
4027
|
description: z.string().optional(),
|
|
4028
4028
|
schema: z.lazy(() =>
|
|
@@ -166,7 +166,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
166
166
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
167
167
|
.optional(),
|
|
168
168
|
updated: z.string().datetime({ offset: true }).default(
|
|
169
|
-
"2026-01-
|
|
169
|
+
"2026-01-22T13:36:18.119Z",
|
|
170
170
|
).transform(v => new Date(v)),
|
|
171
171
|
}).transform((v) => {
|
|
172
172
|
return remap$(v, {
|
|
@@ -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_01kfjyqgaaadahpgt846veq75m"),
|
|
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-22T13:36:32.127Z",
|
|
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-22T13:36:32.126Z",
|
|
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-22T13:36:32.126Z",
|
|
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-22T13:36:18.119Z",
|
|
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-22T13:36:18.119Z",
|
|
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("01KFJYQGRJXPFXY227CQJ3F8QR"),
|
|
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-22T13:36:20.558Z"),
|
|
1698
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
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-22T13:36:20.558Z"),
|
|
1845
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
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-22T13:36:20.558Z"),
|
|
2659
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
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-22T13:36:20.558Z"),
|
|
2836
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
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-22T13:36:20.558Z"),
|
|
2984
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
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-22T13:36:20.558Z"),
|
|
3125
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
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-22T13:36:20.558Z"),
|
|
3254
|
+
updated: z.string().default("2026-01-22T13:36:20.558Z"),
|
|
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-22T13:36:18.119Z",
|
|
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("01KFJYQGKJPRJWE4BEZ8CSDF57"),
|
|
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_01KFJYQGKDZ991F1PA1PMX6HB8"),
|
|
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("01KFJYQGKD8S9K3R77HAEWZN5K"),
|
|
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_01KFJYQGKCJD16C9PB3T93C04R"),
|
|
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_01KFJYQGKAGGTRZX988DCEV6F3"),
|
|
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_01KFJYQGK9N54SHSMG4R6552SJ"),
|
|
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_01KFJYQGK84EV5B68AZX2Z9Q4H"),
|
|
2638
2638
|
path: z.string(),
|
|
2639
2639
|
key: z.string(),
|
|
2640
2640
|
display_name: z.string().optional(),
|