@orq-ai/node 4.2.0-rc.41 → 4.2.0-rc.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +239 -235
- package/bin/mcp-server.js.map +46 -46
- 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/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/agentinactivestreamingevent.d.ts +2 -0
- package/models/components/agentinactivestreamingevent.d.ts.map +1 -1
- package/models/components/agentinactivestreamingevent.js +4 -0
- package/models/components/agentinactivestreamingevent.js.map +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/conversationwithmessagesresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createconversationresponse.js +4 -4
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createidentity.js +2 -2
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/listidentities.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrieveidentity.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updateidentity.js +2 -2
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/agentinactivestreamingevent.ts +6 -0
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/conversationwithmessagesresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createconversationresponse.ts +4 -4
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createidentity.ts +2 -2
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/listidentities.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrieveidentity.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updateidentity.ts +2 -2
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -92,7 +92,7 @@ exports.CreateIdentityResponseBody$inboundSchema = z.object({
|
|
|
92
92
|
metadata: z.record(z.any()).optional(),
|
|
93
93
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
94
94
|
.optional(),
|
|
95
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
95
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-19T14:53:40.441Z").transform(v => new Date(v)),
|
|
96
96
|
}).transform((v) => {
|
|
97
97
|
return (0, primitives_js_1.remap)(v, {
|
|
98
98
|
"_id": "id",
|
|
@@ -113,7 +113,7 @@ exports.CreateIdentityResponseBody$outboundSchema = z.object({
|
|
|
113
113
|
tags: z.array(z.string()).optional(),
|
|
114
114
|
metadata: z.record(z.any()).optional(),
|
|
115
115
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
116
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
116
|
+
updated: z.date().default(() => new Date("2026-01-19T14:53:40.441Z"))
|
|
117
117
|
.transform(v => v.toISOString()),
|
|
118
118
|
}).transform((v) => {
|
|
119
119
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -888,7 +888,7 @@ function responseBodyCodeToolFromJSON(jsonString) {
|
|
|
888
888
|
}
|
|
889
889
|
/** @internal */
|
|
890
890
|
exports.ResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
891
|
-
_id: z.string().default("
|
|
891
|
+
_id: z.string().default("tool_01KFBBZ0FBWDBDHCCP4C5X2PBD"),
|
|
892
892
|
path: z.string(),
|
|
893
893
|
key: z.string(),
|
|
894
894
|
display_name: z.string().optional(),
|
|
@@ -917,7 +917,7 @@ exports.ResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
|
917
917
|
});
|
|
918
918
|
/** @internal */
|
|
919
919
|
exports.ResponseBodyCodeExecutionTool$outboundSchema = z.object({
|
|
920
|
-
id: z.string().default("
|
|
920
|
+
id: z.string().default("tool_01KFBBZ0FBWDBDHCCP4C5X2PBD"),
|
|
921
921
|
path: z.string(),
|
|
922
922
|
key: z.string(),
|
|
923
923
|
displayName: z.string().optional(),
|
|
@@ -995,14 +995,14 @@ function createToolResponseBodySchemaFromJSON(jsonString) {
|
|
|
995
995
|
}
|
|
996
996
|
/** @internal */
|
|
997
997
|
exports.ResponseBodyTools$inboundSchema = z.object({
|
|
998
|
-
id: z.string().default("
|
|
998
|
+
id: z.string().default("01KFBBZ0FADYC4VE9T0Z0T0K6B"),
|
|
999
999
|
name: z.string(),
|
|
1000
1000
|
description: z.string().optional(),
|
|
1001
1001
|
schema: z.lazy(() => exports.CreateToolResponseBodySchema$inboundSchema),
|
|
1002
1002
|
});
|
|
1003
1003
|
/** @internal */
|
|
1004
1004
|
exports.ResponseBodyTools$outboundSchema = z.object({
|
|
1005
|
-
id: z.string().default("
|
|
1005
|
+
id: z.string().default("01KFBBZ0FADYC4VE9T0Z0T0K6B"),
|
|
1006
1006
|
name: z.string(),
|
|
1007
1007
|
description: z.string().optional(),
|
|
1008
1008
|
schema: z.lazy(() => exports.CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -1050,7 +1050,7 @@ function responseBodyMcpFromJSON(jsonString) {
|
|
|
1050
1050
|
}
|
|
1051
1051
|
/** @internal */
|
|
1052
1052
|
exports.ResponseBodyMCPTool$inboundSchema = z.object({
|
|
1053
|
-
_id: z.string().default("
|
|
1053
|
+
_id: z.string().default("tool_01KFBBZ0F6WP0YYCZK1A4QS2GF"),
|
|
1054
1054
|
path: z.string(),
|
|
1055
1055
|
key: z.string(),
|
|
1056
1056
|
display_name: z.string().optional(),
|
|
@@ -1078,7 +1078,7 @@ exports.ResponseBodyMCPTool$inboundSchema = z.object({
|
|
|
1078
1078
|
});
|
|
1079
1079
|
/** @internal */
|
|
1080
1080
|
exports.ResponseBodyMCPTool$outboundSchema = z.object({
|
|
1081
|
-
id: z.string().default("
|
|
1081
|
+
id: z.string().default("tool_01KFBBZ0F6WP0YYCZK1A4QS2GF"),
|
|
1082
1082
|
path: z.string(),
|
|
1083
1083
|
key: z.string(),
|
|
1084
1084
|
displayName: z.string().optional(),
|
|
@@ -1228,7 +1228,7 @@ function createToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
1228
1228
|
}
|
|
1229
1229
|
/** @internal */
|
|
1230
1230
|
exports.ResponseBodyHTTPTool$inboundSchema = z.object({
|
|
1231
|
-
_id: z.string().default("
|
|
1231
|
+
_id: z.string().default("tool_01KFBBZ0F3J2NN1PT7G7Z6463G"),
|
|
1232
1232
|
path: z.string(),
|
|
1233
1233
|
key: z.string(),
|
|
1234
1234
|
display_name: z.string().optional(),
|
|
@@ -1256,7 +1256,7 @@ exports.ResponseBodyHTTPTool$inboundSchema = z.object({
|
|
|
1256
1256
|
});
|
|
1257
1257
|
/** @internal */
|
|
1258
1258
|
exports.ResponseBodyHTTPTool$outboundSchema = z.object({
|
|
1259
|
-
id: z.string().default("
|
|
1259
|
+
id: z.string().default("tool_01KFBBZ0F3J2NN1PT7G7Z6463G"),
|
|
1260
1260
|
path: z.string(),
|
|
1261
1261
|
key: z.string(),
|
|
1262
1262
|
displayName: z.string().optional(),
|
|
@@ -1340,7 +1340,7 @@ function responseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
1340
1340
|
}
|
|
1341
1341
|
/** @internal */
|
|
1342
1342
|
exports.ResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
1343
|
-
_id: z.string().default("
|
|
1343
|
+
_id: z.string().default("tool_01KFBBZ0F2CWDJG11W0KGASNCQ"),
|
|
1344
1344
|
path: z.string(),
|
|
1345
1345
|
key: z.string(),
|
|
1346
1346
|
display_name: z.string().optional(),
|
|
@@ -1369,7 +1369,7 @@ exports.ResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
|
1369
1369
|
});
|
|
1370
1370
|
/** @internal */
|
|
1371
1371
|
exports.ResponseBodyJSONSchemaTool$outboundSchema = z.object({
|
|
1372
|
-
id: z.string().default("
|
|
1372
|
+
id: z.string().default("tool_01KFBBZ0F2CWDJG11W0KGASNCQ"),
|
|
1373
1373
|
path: z.string(),
|
|
1374
1374
|
key: z.string(),
|
|
1375
1375
|
displayName: z.string().optional(),
|
|
@@ -1458,7 +1458,7 @@ function createToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
1458
1458
|
}
|
|
1459
1459
|
/** @internal */
|
|
1460
1460
|
exports.ResponseBodyFunctionTool$inboundSchema = z.object({
|
|
1461
|
-
_id: z.string().default("
|
|
1461
|
+
_id: z.string().default("tool_01KFBBZ0F0HMYCP47TGCVD7PG7"),
|
|
1462
1462
|
path: z.string(),
|
|
1463
1463
|
key: z.string(),
|
|
1464
1464
|
display_name: z.string().optional(),
|
|
@@ -1486,7 +1486,7 @@ exports.ResponseBodyFunctionTool$inboundSchema = z.object({
|
|
|
1486
1486
|
});
|
|
1487
1487
|
/** @internal */
|
|
1488
1488
|
exports.ResponseBodyFunctionTool$outboundSchema = z.object({
|
|
1489
|
-
id: z.string().default("
|
|
1489
|
+
id: z.string().default("tool_01KFBBZ0F0HMYCP47TGCVD7PG7"),
|
|
1490
1490
|
path: z.string(),
|
|
1491
1491
|
key: z.string(),
|
|
1492
1492
|
displayName: z.string().optional(),
|
|
@@ -86,7 +86,7 @@ exports.FileGetResponseBody$inboundSchema = z.object({
|
|
|
86
86
|
bytes: z.number(),
|
|
87
87
|
file_name: z.string(),
|
|
88
88
|
workspace_id: z.string(),
|
|
89
|
-
created: z.string().datetime({ offset: true }).default("2026-01-
|
|
89
|
+
created: z.string().datetime({ offset: true }).default("2026-01-19T14:53:43.921Z").transform(v => new Date(v)),
|
|
90
90
|
}).transform((v) => {
|
|
91
91
|
return (0, primitives_js_1.remap)(v, {
|
|
92
92
|
"_id": "id",
|
|
@@ -103,7 +103,7 @@ exports.FileGetResponseBody$outboundSchema = z.object({
|
|
|
103
103
|
bytes: z.number(),
|
|
104
104
|
fileName: z.string(),
|
|
105
105
|
workspaceId: z.string(),
|
|
106
|
-
created: z.date().default(() => new Date("2026-01-
|
|
106
|
+
created: z.date().default(() => new Date("2026-01-19T14:53:43.921Z"))
|
|
107
107
|
.transform(v => v.toISOString()),
|
|
108
108
|
}).transform((v) => {
|
|
109
109
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -101,7 +101,7 @@ exports.FileListData$inboundSchema = z.object({
|
|
|
101
101
|
bytes: z.number(),
|
|
102
102
|
file_name: z.string(),
|
|
103
103
|
workspace_id: z.string(),
|
|
104
|
-
created: z.string().datetime({ offset: true }).default("2026-01-
|
|
104
|
+
created: z.string().datetime({ offset: true }).default("2026-01-19T14:53:43.921Z").transform(v => new Date(v)),
|
|
105
105
|
}).transform((v) => {
|
|
106
106
|
return (0, primitives_js_1.remap)(v, {
|
|
107
107
|
"_id": "id",
|
|
@@ -118,7 +118,7 @@ exports.FileListData$outboundSchema = z.object({
|
|
|
118
118
|
bytes: z.number(),
|
|
119
119
|
fileName: z.string(),
|
|
120
120
|
workspaceId: z.string(),
|
|
121
|
-
created: z.date().default(() => new Date("2026-01-
|
|
121
|
+
created: z.date().default(() => new Date("2026-01-19T14:53:43.921Z"))
|
|
122
122
|
.transform(v => v.toISOString()),
|
|
123
123
|
}).transform((v) => {
|
|
124
124
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -122,7 +122,7 @@ exports.FileUploadResponseBody$inboundSchema = z.object({
|
|
|
122
122
|
bytes: z.number(),
|
|
123
123
|
file_name: z.string(),
|
|
124
124
|
workspace_id: z.string(),
|
|
125
|
-
created: z.string().datetime({ offset: true }).default("2026-01-
|
|
125
|
+
created: z.string().datetime({ offset: true }).default("2026-01-19T14:53:43.921Z").transform(v => new Date(v)),
|
|
126
126
|
}).transform((v) => {
|
|
127
127
|
return (0, primitives_js_1.remap)(v, {
|
|
128
128
|
"_id": "id",
|
|
@@ -139,7 +139,7 @@ exports.FileUploadResponseBody$outboundSchema = z.object({
|
|
|
139
139
|
bytes: z.number(),
|
|
140
140
|
fileName: z.string(),
|
|
141
141
|
workspaceId: z.string(),
|
|
142
|
-
created: z.date().default(() => new Date("2026-01-
|
|
142
|
+
created: z.date().default(() => new Date("2026-01-19T14:53:43.921Z"))
|
|
143
143
|
.transform(v => v.toISOString()),
|
|
144
144
|
}).transform((v) => {
|
|
145
145
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -118,7 +118,7 @@ function generateConversationNameMetadataFromJSON(jsonString) {
|
|
|
118
118
|
}
|
|
119
119
|
/** @internal */
|
|
120
120
|
exports.GenerateConversationNameResponseBody$inboundSchema = z.object({
|
|
121
|
-
_id: z.string().default("
|
|
121
|
+
_id: z.string().default("conv_01kfbbz05qeaq2jt4aq9cwqs2n"),
|
|
122
122
|
kind: exports.GenerateConversationNameKind$inboundSchema,
|
|
123
123
|
displayName: z.string(),
|
|
124
124
|
createdAt: z.number(),
|
|
@@ -134,7 +134,7 @@ exports.GenerateConversationNameResponseBody$inboundSchema = z.object({
|
|
|
134
134
|
});
|
|
135
135
|
/** @internal */
|
|
136
136
|
exports.GenerateConversationNameResponseBody$outboundSchema = z.object({
|
|
137
|
-
id: z.string().default("
|
|
137
|
+
id: z.string().default("conv_01kfbbz05qeaq2jt4aq9cwqs2n"),
|
|
138
138
|
kind: exports.GenerateConversationNameKind$outboundSchema,
|
|
139
139
|
displayName: z.string(),
|
|
140
140
|
createdAt: z.number(),
|
|
@@ -269,7 +269,7 @@ function dataCodeToolFromJSON(jsonString) {
|
|
|
269
269
|
}
|
|
270
270
|
/** @internal */
|
|
271
271
|
exports.DataCodeExecutionTool$inboundSchema = z.object({
|
|
272
|
-
_id: z.string().default("
|
|
272
|
+
_id: z.string().default("tool_01KFBBZ0ECWRWD3Z6BKJ0HHPD7"),
|
|
273
273
|
path: z.string(),
|
|
274
274
|
key: z.string(),
|
|
275
275
|
display_name: z.string().optional(),
|
|
@@ -298,7 +298,7 @@ exports.DataCodeExecutionTool$inboundSchema = z.object({
|
|
|
298
298
|
});
|
|
299
299
|
/** @internal */
|
|
300
300
|
exports.DataCodeExecutionTool$outboundSchema = z.object({
|
|
301
|
-
id: z.string().default("
|
|
301
|
+
id: z.string().default("tool_01KFBBZ0ECWRWD3Z6BKJ0HHPD7"),
|
|
302
302
|
path: z.string(),
|
|
303
303
|
key: z.string(),
|
|
304
304
|
displayName: z.string().optional(),
|
|
@@ -375,14 +375,14 @@ function getAllToolsDataSchemaFromJSON(jsonString) {
|
|
|
375
375
|
}
|
|
376
376
|
/** @internal */
|
|
377
377
|
exports.DataTools$inboundSchema = z.object({
|
|
378
|
-
id: z.string().default("
|
|
378
|
+
id: z.string().default("01KFBBZ0EBYVRH0Y95YTX8RY8E"),
|
|
379
379
|
name: z.string(),
|
|
380
380
|
description: z.string().optional(),
|
|
381
381
|
schema: z.lazy(() => exports.GetAllToolsDataSchema$inboundSchema),
|
|
382
382
|
});
|
|
383
383
|
/** @internal */
|
|
384
384
|
exports.DataTools$outboundSchema = z.object({
|
|
385
|
-
id: z.string().default("
|
|
385
|
+
id: z.string().default("01KFBBZ0EBYVRH0Y95YTX8RY8E"),
|
|
386
386
|
name: z.string(),
|
|
387
387
|
description: z.string().optional(),
|
|
388
388
|
schema: z.lazy(() => exports.GetAllToolsDataSchema$outboundSchema),
|
|
@@ -429,7 +429,7 @@ function dataMcpFromJSON(jsonString) {
|
|
|
429
429
|
}
|
|
430
430
|
/** @internal */
|
|
431
431
|
exports.DataMCPTool$inboundSchema = z.object({
|
|
432
|
-
_id: z.string().default("
|
|
432
|
+
_id: z.string().default("tool_01KFBBZ0E92D5SREB1MMT7QM6B"),
|
|
433
433
|
path: z.string(),
|
|
434
434
|
key: z.string(),
|
|
435
435
|
display_name: z.string().optional(),
|
|
@@ -457,7 +457,7 @@ exports.DataMCPTool$inboundSchema = z.object({
|
|
|
457
457
|
});
|
|
458
458
|
/** @internal */
|
|
459
459
|
exports.DataMCPTool$outboundSchema = z.object({
|
|
460
|
-
id: z.string().default("
|
|
460
|
+
id: z.string().default("tool_01KFBBZ0E92D5SREB1MMT7QM6B"),
|
|
461
461
|
path: z.string(),
|
|
462
462
|
key: z.string(),
|
|
463
463
|
displayName: z.string().optional(),
|
|
@@ -605,7 +605,7 @@ function getAllToolsDataHttpFromJSON(jsonString) {
|
|
|
605
605
|
}
|
|
606
606
|
/** @internal */
|
|
607
607
|
exports.DataHTTPTool$inboundSchema = z.object({
|
|
608
|
-
_id: z.string().default("
|
|
608
|
+
_id: z.string().default("tool_01KFBBZ0E5M16HF6GS3Q9B8NXG"),
|
|
609
609
|
path: z.string(),
|
|
610
610
|
key: z.string(),
|
|
611
611
|
display_name: z.string().optional(),
|
|
@@ -633,7 +633,7 @@ exports.DataHTTPTool$inboundSchema = z.object({
|
|
|
633
633
|
});
|
|
634
634
|
/** @internal */
|
|
635
635
|
exports.DataHTTPTool$outboundSchema = z.object({
|
|
636
|
-
id: z.string().default("
|
|
636
|
+
id: z.string().default("tool_01KFBBZ0E5M16HF6GS3Q9B8NXG"),
|
|
637
637
|
path: z.string(),
|
|
638
638
|
key: z.string(),
|
|
639
639
|
displayName: z.string().optional(),
|
|
@@ -717,7 +717,7 @@ function dataJsonSchemaFromJSON(jsonString) {
|
|
|
717
717
|
}
|
|
718
718
|
/** @internal */
|
|
719
719
|
exports.DataJSONSchemaTool$inboundSchema = z.object({
|
|
720
|
-
_id: z.string().default("
|
|
720
|
+
_id: z.string().default("tool_01KFBBZ0E364M72GQBYDR8D6HT"),
|
|
721
721
|
path: z.string(),
|
|
722
722
|
key: z.string(),
|
|
723
723
|
display_name: z.string().optional(),
|
|
@@ -746,7 +746,7 @@ exports.DataJSONSchemaTool$inboundSchema = z.object({
|
|
|
746
746
|
});
|
|
747
747
|
/** @internal */
|
|
748
748
|
exports.DataJSONSchemaTool$outboundSchema = z.object({
|
|
749
|
-
id: z.string().default("
|
|
749
|
+
id: z.string().default("tool_01KFBBZ0E364M72GQBYDR8D6HT"),
|
|
750
750
|
path: z.string(),
|
|
751
751
|
key: z.string(),
|
|
752
752
|
displayName: z.string().optional(),
|
|
@@ -836,7 +836,7 @@ function getAllToolsDataFunctionFromJSON(jsonString) {
|
|
|
836
836
|
}
|
|
837
837
|
/** @internal */
|
|
838
838
|
exports.DataFunctionTool$inboundSchema = z.object({
|
|
839
|
-
_id: z.string().default("
|
|
839
|
+
_id: z.string().default("tool_01KFBBZ0E13ENK9EEXQQK2E9J8"),
|
|
840
840
|
path: z.string(),
|
|
841
841
|
key: z.string(),
|
|
842
842
|
display_name: z.string().optional(),
|
|
@@ -864,7 +864,7 @@ exports.DataFunctionTool$inboundSchema = z.object({
|
|
|
864
864
|
});
|
|
865
865
|
/** @internal */
|
|
866
866
|
exports.DataFunctionTool$outboundSchema = z.object({
|
|
867
|
-
id: z.string().default("
|
|
867
|
+
id: z.string().default("tool_01KFBBZ0E13ENK9EEXQQK2E9J8"),
|
|
868
868
|
path: z.string(),
|
|
869
869
|
key: z.string(),
|
|
870
870
|
displayName: z.string().optional(),
|
|
@@ -368,8 +368,8 @@ function getEvalsDataEvalsResponse200ApplicationJSONGuardrailConfigFromJSON(json
|
|
|
368
368
|
exports.DataTypescript$inboundSchema = z.object({
|
|
369
369
|
_id: z.string(),
|
|
370
370
|
description: z.string(),
|
|
371
|
-
created: z.string().default("2026-01-
|
|
372
|
-
updated: z.string().default("2026-01-
|
|
371
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
372
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
373
373
|
guardrail_config: z.union([
|
|
374
374
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
375
375
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
@@ -387,8 +387,8 @@ exports.DataTypescript$inboundSchema = z.object({
|
|
|
387
387
|
exports.DataTypescript$outboundSchema = z.object({
|
|
388
388
|
id: z.string(),
|
|
389
389
|
description: z.string(),
|
|
390
|
-
created: z.string().default("2026-01-
|
|
391
|
-
updated: z.string().default("2026-01-
|
|
390
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
391
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
392
392
|
guardrailConfig: z.union([
|
|
393
393
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
394
394
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
@@ -495,8 +495,8 @@ exports.DataRagasMetric$outboundSchema = exports.DataRagasMetric$inboundSchema;
|
|
|
495
495
|
exports.DataRagas$inboundSchema = z.object({
|
|
496
496
|
_id: z.string(),
|
|
497
497
|
description: z.string(),
|
|
498
|
-
created: z.string().default("2026-01-
|
|
499
|
-
updated: z.string().default("2026-01-
|
|
498
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
499
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
500
500
|
guardrail_config: z.union([
|
|
501
501
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
502
502
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -516,8 +516,8 @@ exports.DataRagas$inboundSchema = z.object({
|
|
|
516
516
|
exports.DataRagas$outboundSchema = z.object({
|
|
517
517
|
id: z.string(),
|
|
518
518
|
description: z.string(),
|
|
519
|
-
created: z.string().default("2026-01-
|
|
520
|
-
updated: z.string().default("2026-01-
|
|
519
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
520
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
521
521
|
guardrailConfig: z.union([
|
|
522
522
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
523
523
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
@@ -1170,8 +1170,8 @@ function dataFunctionParamsFromJSON(jsonString) {
|
|
|
1170
1170
|
exports.DataFunction$inboundSchema = z.object({
|
|
1171
1171
|
_id: z.string(),
|
|
1172
1172
|
description: z.string(),
|
|
1173
|
-
created: z.string().default("2026-01-
|
|
1174
|
-
updated: z.string().default("2026-01-
|
|
1173
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1174
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1175
1175
|
guardrail_config: z.union([
|
|
1176
1176
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1177
1177
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -1223,8 +1223,8 @@ exports.DataFunction$inboundSchema = z.object({
|
|
|
1223
1223
|
exports.DataFunction$outboundSchema = z.object({
|
|
1224
1224
|
id: z.string(),
|
|
1225
1225
|
description: z.string(),
|
|
1226
|
-
created: z.string().default("2026-01-
|
|
1227
|
-
updated: z.string().default("2026-01-
|
|
1226
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1227
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1228
1228
|
guardrailConfig: z.union([
|
|
1229
1229
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
1230
1230
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -1360,8 +1360,8 @@ function getEvalsDataEvalsGuardrailConfigFromJSON(jsonString) {
|
|
|
1360
1360
|
exports.DataPython$inboundSchema = z.object({
|
|
1361
1361
|
_id: z.string(),
|
|
1362
1362
|
description: z.string(),
|
|
1363
|
-
created: z.string().default("2026-01-
|
|
1364
|
-
updated: z.string().default("2026-01-
|
|
1363
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1364
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1365
1365
|
guardrail_config: z.union([
|
|
1366
1366
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
1367
1367
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -1379,8 +1379,8 @@ exports.DataPython$inboundSchema = z.object({
|
|
|
1379
1379
|
exports.DataPython$outboundSchema = z.object({
|
|
1380
1380
|
id: z.string(),
|
|
1381
1381
|
description: z.string(),
|
|
1382
|
-
created: z.string().default("2026-01-
|
|
1383
|
-
updated: z.string().default("2026-01-
|
|
1382
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1383
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1384
1384
|
guardrailConfig: z.union([
|
|
1385
1385
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
1386
1386
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
@@ -1487,8 +1487,8 @@ exports.DataMethod$outboundSchema = exports.DataMethod$inboundSchema;
|
|
|
1487
1487
|
exports.DataHTTP$inboundSchema = z.object({
|
|
1488
1488
|
_id: z.string(),
|
|
1489
1489
|
description: z.string(),
|
|
1490
|
-
created: z.string().default("2026-01-
|
|
1491
|
-
updated: z.string().default("2026-01-
|
|
1490
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1491
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1492
1492
|
guardrail_config: z.union([
|
|
1493
1493
|
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
1494
1494
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
@@ -1509,8 +1509,8 @@ exports.DataHTTP$inboundSchema = z.object({
|
|
|
1509
1509
|
exports.DataHTTP$outboundSchema = z.object({
|
|
1510
1510
|
id: z.string(),
|
|
1511
1511
|
description: z.string(),
|
|
1512
|
-
created: z.string().default("2026-01-
|
|
1513
|
-
updated: z.string().default("2026-01-
|
|
1512
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1513
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1514
1514
|
guardrailConfig: z.union([
|
|
1515
1515
|
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
1516
1516
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
@@ -1619,8 +1619,8 @@ function dataGuardrailConfigFromJSON(jsonString) {
|
|
|
1619
1619
|
exports.DataJSON$inboundSchema = z.object({
|
|
1620
1620
|
_id: z.string(),
|
|
1621
1621
|
description: z.string(),
|
|
1622
|
-
created: z.string().default("2026-01-
|
|
1623
|
-
updated: z.string().default("2026-01-
|
|
1622
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1623
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1624
1624
|
guardrail_config: z.union([
|
|
1625
1625
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
1626
1626
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
@@ -1638,8 +1638,8 @@ exports.DataJSON$inboundSchema = z.object({
|
|
|
1638
1638
|
exports.DataJSON$outboundSchema = z.object({
|
|
1639
1639
|
id: z.string(),
|
|
1640
1640
|
description: z.string(),
|
|
1641
|
-
created: z.string().default("2026-01-
|
|
1642
|
-
updated: z.string().default("2026-01-
|
|
1641
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1642
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1643
1643
|
guardrailConfig: z.union([
|
|
1644
1644
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
1645
1645
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
@@ -1747,8 +1747,8 @@ function getEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailConfigF
|
|
|
1747
1747
|
exports.DataLLM$inboundSchema = z.object({
|
|
1748
1748
|
_id: z.string(),
|
|
1749
1749
|
description: z.string(),
|
|
1750
|
-
created: z.string().default("2026-01-
|
|
1751
|
-
updated: z.string().default("2026-01-
|
|
1750
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1751
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1752
1752
|
guardrail_config: z.union([
|
|
1753
1753
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
1754
1754
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
@@ -1767,8 +1767,8 @@ exports.DataLLM$inboundSchema = z.object({
|
|
|
1767
1767
|
exports.DataLLM$outboundSchema = z.object({
|
|
1768
1768
|
id: z.string(),
|
|
1769
1769
|
description: z.string(),
|
|
1770
|
-
created: z.string().default("2026-01-
|
|
1771
|
-
updated: z.string().default("2026-01-
|
|
1770
|
+
created: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1771
|
+
updated: z.string().default("2026-01-19T14:53:42.894Z"),
|
|
1772
1772
|
guardrailConfig: z.union([
|
|
1773
1773
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
1774
1774
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
@@ -158,7 +158,7 @@ exports.Data$inboundSchema = z
|
|
|
158
158
|
metadata: z.record(z.any()).optional(),
|
|
159
159
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
160
160
|
.optional(),
|
|
161
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
161
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-19T14:53:40.441Z").transform(v => new Date(v)),
|
|
162
162
|
metrics: z.lazy(() => exports.ListContactsMetrics$inboundSchema),
|
|
163
163
|
}).transform((v) => {
|
|
164
164
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -178,7 +178,7 @@ exports.Data$outboundSchema = z.object({
|
|
|
178
178
|
tags: z.array(z.string()).optional(),
|
|
179
179
|
metadata: z.record(z.any()).optional(),
|
|
180
180
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
181
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
181
|
+
updated: z.date().default(() => new Date("2026-01-19T14:53:40.441Z"))
|
|
182
182
|
.transform(v => v.toISOString()),
|
|
183
183
|
metrics: z.lazy(() => exports.ListContactsMetrics$outboundSchema),
|
|
184
184
|
}).transform((v) => {
|
|
@@ -709,7 +709,7 @@ exports.ListDatasetDatapointsEvaluations3$inboundSchema = z.object({
|
|
|
709
709
|
human_review_id: z.string(),
|
|
710
710
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
711
711
|
reviewed_by_id: z.string(),
|
|
712
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-
|
|
712
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-19T14:53:53.793Z").transform(v => new Date(v)),
|
|
713
713
|
type: z.literal("string_array"),
|
|
714
714
|
values: z.array(z.string()),
|
|
715
715
|
}).transform((v) => {
|
|
@@ -727,7 +727,7 @@ exports.ListDatasetDatapointsEvaluations3$outboundSchema = z.object({
|
|
|
727
727
|
humanReviewId: z.string(),
|
|
728
728
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
729
729
|
reviewedById: z.string(),
|
|
730
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
730
|
+
reviewedAt: z.date().default(() => new Date("2026-01-19T14:53:53.793Z"))
|
|
731
731
|
.transform(v => v.toISOString()),
|
|
732
732
|
type: z.literal("string_array"),
|
|
733
733
|
values: z.array(z.string()),
|
|
@@ -760,7 +760,7 @@ exports.ListDatasetDatapointsEvaluations2$inboundSchema = z.object({
|
|
|
760
760
|
human_review_id: z.string(),
|
|
761
761
|
source: exports.ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
762
762
|
reviewed_by_id: z.string(),
|
|
763
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-
|
|
763
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-19T14:53:53.792Z").transform(v => new Date(v)),
|
|
764
764
|
type: z.literal("number"),
|
|
765
765
|
value: z.number(),
|
|
766
766
|
}).transform((v) => {
|
|
@@ -778,7 +778,7 @@ exports.ListDatasetDatapointsEvaluations2$outboundSchema = z.object({
|
|
|
778
778
|
humanReviewId: z.string(),
|
|
779
779
|
source: exports.ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
780
780
|
reviewedById: z.string(),
|
|
781
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
781
|
+
reviewedAt: z.date().default(() => new Date("2026-01-19T14:53:53.792Z"))
|
|
782
782
|
.transform(v => v.toISOString()),
|
|
783
783
|
type: z.literal("number"),
|
|
784
784
|
value: z.number(),
|
|
@@ -812,7 +812,7 @@ exports.ListDatasetDatapointsEvaluations1$inboundSchema = z.object({
|
|
|
812
812
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema
|
|
813
813
|
.default("orq"),
|
|
814
814
|
reviewed_by_id: z.string(),
|
|
815
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-
|
|
815
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-19T14:53:53.791Z").transform(v => new Date(v)),
|
|
816
816
|
type: z.literal("string"),
|
|
817
817
|
value: z.string(),
|
|
818
818
|
}).transform((v) => {
|
|
@@ -831,7 +831,7 @@ exports.ListDatasetDatapointsEvaluations1$outboundSchema = z.object({
|
|
|
831
831
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
|
|
832
832
|
.default("orq"),
|
|
833
833
|
reviewedById: z.string(),
|
|
834
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
834
|
+
reviewedAt: z.date().default(() => new Date("2026-01-19T14:53:53.791Z"))
|
|
835
835
|
.transform(v => v.toISOString()),
|
|
836
836
|
type: z.literal("string"),
|
|
837
837
|
value: z.string(),
|
|
@@ -891,7 +891,7 @@ exports.ListDatasetDatapointsData$inboundSchema = z.object({
|
|
|
891
891
|
updated_by_id: z.string().optional(),
|
|
892
892
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
893
893
|
.optional(),
|
|
894
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
894
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-19T14:53:40.441Z").transform(v => new Date(v)),
|
|
895
895
|
}).transform((v) => {
|
|
896
896
|
return (0, primitives_js_1.remap)(v, {
|
|
897
897
|
"_id": "id",
|
|
@@ -926,7 +926,7 @@ exports.ListDatasetDatapointsData$outboundSchema = z.object({
|
|
|
926
926
|
createdById: z.string().optional(),
|
|
927
927
|
updatedById: z.string().optional(),
|
|
928
928
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
929
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
929
|
+
updated: z.date().default(() => new Date("2026-01-19T14:53:40.441Z"))
|
|
930
930
|
.transform(v => v.toISOString()),
|
|
931
931
|
}).transform((v) => {
|
|
932
932
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -120,7 +120,7 @@ exports.ListDatasetsData$inboundSchema = z.object({
|
|
|
120
120
|
updated_by_id: z.string().optional(),
|
|
121
121
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
122
122
|
.optional(),
|
|
123
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
123
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-19T14:53:40.441Z").transform(v => new Date(v)),
|
|
124
124
|
}).transform((v) => {
|
|
125
125
|
return (0, primitives_js_1.remap)(v, {
|
|
126
126
|
"_id": "id",
|
|
@@ -141,7 +141,7 @@ exports.ListDatasetsData$outboundSchema = z.object({
|
|
|
141
141
|
createdById: z.string().optional(),
|
|
142
142
|
updatedById: z.string().optional(),
|
|
143
143
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
144
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
144
|
+
updated: z.date().default(() => new Date("2026-01-19T14:53:40.441Z"))
|
|
145
145
|
.transform(v => v.toISOString()),
|
|
146
146
|
}).transform((v) => {
|
|
147
147
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -115,7 +115,7 @@ exports.ListDatasourcesStatus$inboundSchema = z.nativeEnum(exports.ListDatasourc
|
|
|
115
115
|
exports.ListDatasourcesStatus$outboundSchema = exports.ListDatasourcesStatus$inboundSchema;
|
|
116
116
|
/** @internal */
|
|
117
117
|
exports.ListDatasourcesData$inboundSchema = z.object({
|
|
118
|
-
_id: z.string().default("
|
|
118
|
+
_id: z.string().default("01KFBBZ0N9R80JRAG45H3545SZ"),
|
|
119
119
|
display_name: z.string(),
|
|
120
120
|
description: z.string().optional(),
|
|
121
121
|
status: exports.ListDatasourcesStatus$inboundSchema,
|
|
@@ -139,7 +139,7 @@ exports.ListDatasourcesData$inboundSchema = z.object({
|
|
|
139
139
|
});
|
|
140
140
|
/** @internal */
|
|
141
141
|
exports.ListDatasourcesData$outboundSchema = z.object({
|
|
142
|
-
id: z.string().default("
|
|
142
|
+
id: z.string().default("01KFBBZ0N9R80JRAG45H3545SZ"),
|
|
143
143
|
displayName: z.string(),
|
|
144
144
|
description: z.string().optional(),
|
|
145
145
|
status: exports.ListDatasourcesStatus$outboundSchema,
|
|
@@ -154,7 +154,7 @@ exports.ListIdentitiesData$inboundSchema = z.object({
|
|
|
154
154
|
metadata: z.record(z.any()).optional(),
|
|
155
155
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
156
156
|
.optional(),
|
|
157
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
157
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-19T14:53:40.441Z").transform(v => new Date(v)),
|
|
158
158
|
metrics: z.lazy(() => exports.ListIdentitiesMetrics$inboundSchema),
|
|
159
159
|
}).transform((v) => {
|
|
160
160
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -174,7 +174,7 @@ exports.ListIdentitiesData$outboundSchema = z.object({
|
|
|
174
174
|
tags: z.array(z.string()).optional(),
|
|
175
175
|
metadata: z.record(z.any()).optional(),
|
|
176
176
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
177
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
177
|
+
updated: z.date().default(() => new Date("2026-01-19T14:53:40.441Z"))
|
|
178
178
|
.transform(v => v.toISOString()),
|
|
179
179
|
metrics: z.lazy(() => exports.ListIdentitiesMetrics$outboundSchema),
|
|
180
180
|
}).transform((v) => {
|
|
@@ -69,7 +69,7 @@ exports.RetrieveContactResponseBody$inboundSchema = z.object({
|
|
|
69
69
|
metadata: z.record(z.any()).optional(),
|
|
70
70
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
71
71
|
.optional(),
|
|
72
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
72
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-19T14:53:40.441Z").transform(v => new Date(v)),
|
|
73
73
|
}).transform((v) => {
|
|
74
74
|
return (0, primitives_js_1.remap)(v, {
|
|
75
75
|
"_id": "id",
|
|
@@ -88,7 +88,7 @@ exports.RetrieveContactResponseBody$outboundSchema = z.object({
|
|
|
88
88
|
tags: z.array(z.string()).optional(),
|
|
89
89
|
metadata: z.record(z.any()).optional(),
|
|
90
90
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
91
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
91
|
+
updated: z.date().default(() => new Date("2026-01-19T14:53:40.441Z"))
|
|
92
92
|
.transform(v => v.toISOString()),
|
|
93
93
|
}).transform((v) => {
|
|
94
94
|
return (0, primitives_js_1.remap)(v, {
|