@orq-ai/node 4.1.0-rc.17 → 4.1.0-rc.19
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 +230 -246
- package/bin/mcp-server.js.map +42 -42
- package/docs/sdks/memorystores/README.md +0 -6
- 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/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- 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/creatememory.d.ts +5 -5
- package/models/operations/creatememory.d.ts.map +1 -1
- package/models/operations/creatememory.js +2 -2
- package/models/operations/creatememory.js.map +1 -1
- package/models/operations/creatememorydocument.d.ts +4 -4
- package/models/operations/creatememorydocument.d.ts.map +1 -1
- package/models/operations/creatememorydocument.js +2 -2
- package/models/operations/creatememorydocument.js.map +1 -1
- 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/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- 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/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/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.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/updatememory.d.ts +5 -5
- package/models/operations/updatememory.d.ts.map +1 -1
- package/models/operations/updatememory.js +2 -2
- package/models/operations/updatememory.js.map +1 -1
- package/models/operations/updatememorydocument.d.ts +4 -4
- package/models/operations/updatememorydocument.d.ts.map +1 -1
- package/models/operations/updatememorydocument.js +2 -2
- package/models/operations/updatememorydocument.js.map +1 -1
- package/models/operations/updatememorystore.d.ts +12 -39
- package/models/operations/updatememorystore.d.ts.map +1 -1
- package/models/operations/updatememorystore.js +15 -41
- package/models/operations/updatememorystore.js.map +1 -1
- 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/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- 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/creatememory.ts +5 -5
- package/src/models/operations/creatememorydocument.ts +4 -4
- 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/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- 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/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/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.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/updatememory.ts +5 -5
- package/src/models/operations/updatememorydocument.ts +4 -4
- package/src/models/operations/updatememorystore.ts +52 -134
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -942,7 +942,7 @@ function responseBodyCodeToolFromJSON(jsonString) {
|
|
|
942
942
|
}
|
|
943
943
|
/** @internal */
|
|
944
944
|
exports.ResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
945
|
-
_id: z.string().default("
|
|
945
|
+
_id: z.string().default("tool_01KB569706EWACCRS7SJMG9W0S"),
|
|
946
946
|
path: z.string(),
|
|
947
947
|
key: z.string(),
|
|
948
948
|
display_name: z.string().optional(),
|
|
@@ -971,7 +971,7 @@ exports.ResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
|
971
971
|
});
|
|
972
972
|
/** @internal */
|
|
973
973
|
exports.ResponseBodyCodeExecutionTool$outboundSchema = z.object({
|
|
974
|
-
id: z.string().default("
|
|
974
|
+
id: z.string().default("tool_01KB569706EWACCRS7SJMG9W0S"),
|
|
975
975
|
path: z.string(),
|
|
976
976
|
key: z.string(),
|
|
977
977
|
displayName: z.string().optional(),
|
|
@@ -1054,14 +1054,14 @@ function createToolResponseBodySchemaFromJSON(jsonString) {
|
|
|
1054
1054
|
}
|
|
1055
1055
|
/** @internal */
|
|
1056
1056
|
exports.ResponseBodyTools$inboundSchema = z.object({
|
|
1057
|
-
id: z.string().default("
|
|
1057
|
+
id: z.string().default("01KB569705H3AXQBP91PR5PTT9"),
|
|
1058
1058
|
name: z.string(),
|
|
1059
1059
|
description: z.string().optional(),
|
|
1060
1060
|
schema: z.lazy(() => exports.CreateToolResponseBodySchema$inboundSchema),
|
|
1061
1061
|
});
|
|
1062
1062
|
/** @internal */
|
|
1063
1063
|
exports.ResponseBodyTools$outboundSchema = z.object({
|
|
1064
|
-
id: z.string().default("
|
|
1064
|
+
id: z.string().default("01KB569705H3AXQBP91PR5PTT9"),
|
|
1065
1065
|
name: z.string(),
|
|
1066
1066
|
description: z.string().optional(),
|
|
1067
1067
|
schema: z.lazy(() => exports.CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -1109,7 +1109,7 @@ function responseBodyMcpFromJSON(jsonString) {
|
|
|
1109
1109
|
}
|
|
1110
1110
|
/** @internal */
|
|
1111
1111
|
exports.ResponseBodyMCPTool$inboundSchema = z.object({
|
|
1112
|
-
_id: z.string().default("
|
|
1112
|
+
_id: z.string().default("tool_01KB5696ZV76P39CW9PKRWCRGN"),
|
|
1113
1113
|
path: z.string(),
|
|
1114
1114
|
key: z.string(),
|
|
1115
1115
|
display_name: z.string().optional(),
|
|
@@ -1137,7 +1137,7 @@ exports.ResponseBodyMCPTool$inboundSchema = z.object({
|
|
|
1137
1137
|
});
|
|
1138
1138
|
/** @internal */
|
|
1139
1139
|
exports.ResponseBodyMCPTool$outboundSchema = z.object({
|
|
1140
|
-
id: z.string().default("
|
|
1140
|
+
id: z.string().default("tool_01KB5696ZV76P39CW9PKRWCRGN"),
|
|
1141
1141
|
path: z.string(),
|
|
1142
1142
|
key: z.string(),
|
|
1143
1143
|
displayName: z.string().optional(),
|
|
@@ -1292,7 +1292,7 @@ function createToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
1292
1292
|
}
|
|
1293
1293
|
/** @internal */
|
|
1294
1294
|
exports.ResponseBodyHTTPTool$inboundSchema = z.object({
|
|
1295
|
-
_id: z.string().default("
|
|
1295
|
+
_id: z.string().default("tool_01KB5696ZRHF90GCGH9KQW4W9M"),
|
|
1296
1296
|
path: z.string(),
|
|
1297
1297
|
key: z.string(),
|
|
1298
1298
|
display_name: z.string().optional(),
|
|
@@ -1320,7 +1320,7 @@ exports.ResponseBodyHTTPTool$inboundSchema = z.object({
|
|
|
1320
1320
|
});
|
|
1321
1321
|
/** @internal */
|
|
1322
1322
|
exports.ResponseBodyHTTPTool$outboundSchema = z.object({
|
|
1323
|
-
id: z.string().default("
|
|
1323
|
+
id: z.string().default("tool_01KB5696ZRHF90GCGH9KQW4W9M"),
|
|
1324
1324
|
path: z.string(),
|
|
1325
1325
|
key: z.string(),
|
|
1326
1326
|
displayName: z.string().optional(),
|
|
@@ -1408,7 +1408,7 @@ function responseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
1408
1408
|
}
|
|
1409
1409
|
/** @internal */
|
|
1410
1410
|
exports.ResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
1411
|
-
_id: z.string().default("
|
|
1411
|
+
_id: z.string().default("tool_01KB5696ZNPCSTEHPG6C6W255D"),
|
|
1412
1412
|
path: z.string(),
|
|
1413
1413
|
key: z.string(),
|
|
1414
1414
|
display_name: z.string().optional(),
|
|
@@ -1437,7 +1437,7 @@ exports.ResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
|
1437
1437
|
});
|
|
1438
1438
|
/** @internal */
|
|
1439
1439
|
exports.ResponseBodyJSONSchemaTool$outboundSchema = z.object({
|
|
1440
|
-
id: z.string().default("
|
|
1440
|
+
id: z.string().default("tool_01KB5696ZNPCSTEHPG6C6W255D"),
|
|
1441
1441
|
path: z.string(),
|
|
1442
1442
|
key: z.string(),
|
|
1443
1443
|
displayName: z.string().optional(),
|
|
@@ -1530,7 +1530,7 @@ function createToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
1530
1530
|
}
|
|
1531
1531
|
/** @internal */
|
|
1532
1532
|
exports.ResponseBodyFunctionTool$inboundSchema = z.object({
|
|
1533
|
-
_id: z.string().default("
|
|
1533
|
+
_id: z.string().default("tool_01KB5696ZK012AB97PXXBJ7R2X"),
|
|
1534
1534
|
path: z.string(),
|
|
1535
1535
|
key: z.string(),
|
|
1536
1536
|
display_name: z.string().optional(),
|
|
@@ -1558,7 +1558,7 @@ exports.ResponseBodyFunctionTool$inboundSchema = z.object({
|
|
|
1558
1558
|
});
|
|
1559
1559
|
/** @internal */
|
|
1560
1560
|
exports.ResponseBodyFunctionTool$outboundSchema = z.object({
|
|
1561
|
-
id: z.string().default("
|
|
1561
|
+
id: z.string().default("tool_01KB5696ZK012AB97PXXBJ7R2X"),
|
|
1562
1562
|
path: z.string(),
|
|
1563
1563
|
key: z.string(),
|
|
1564
1564
|
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("2025-11-
|
|
89
|
+
created: z.string().datetime({ offset: true }).default("2025-11-28T12:16:13.624Z").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("2025-11-
|
|
106
|
+
created: z.date().default(() => new Date("2025-11-28T12:16:13.624Z"))
|
|
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("2025-11-
|
|
104
|
+
created: z.string().datetime({ offset: true }).default("2025-11-28T12:16:13.624Z").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("2025-11-
|
|
121
|
+
created: z.date().default(() => new Date("2025-11-28T12:16:13.624Z"))
|
|
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("2025-11-
|
|
125
|
+
created: z.string().datetime({ offset: true }).default("2025-11-28T12:16:13.624Z").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("2025-11-
|
|
142
|
+
created: z.date().default(() => new Date("2025-11-28T12:16:13.624Z"))
|
|
143
143
|
.transform(v => v.toISOString()),
|
|
144
144
|
}).transform((v) => {
|
|
145
145
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -290,7 +290,7 @@ function dataCodeToolFromJSON(jsonString) {
|
|
|
290
290
|
}
|
|
291
291
|
/** @internal */
|
|
292
292
|
exports.DataCodeExecutionTool$inboundSchema = z.object({
|
|
293
|
-
_id: z.string().default("
|
|
293
|
+
_id: z.string().default("tool_01KB5696Z3TSJXQD5216R6AX29"),
|
|
294
294
|
path: z.string(),
|
|
295
295
|
key: z.string(),
|
|
296
296
|
display_name: z.string().optional(),
|
|
@@ -319,7 +319,7 @@ exports.DataCodeExecutionTool$inboundSchema = z.object({
|
|
|
319
319
|
});
|
|
320
320
|
/** @internal */
|
|
321
321
|
exports.DataCodeExecutionTool$outboundSchema = z.object({
|
|
322
|
-
id: z.string().default("
|
|
322
|
+
id: z.string().default("tool_01KB5696Z3TSJXQD5216R6AX29"),
|
|
323
323
|
path: z.string(),
|
|
324
324
|
key: z.string(),
|
|
325
325
|
displayName: z.string().optional(),
|
|
@@ -400,14 +400,14 @@ function getAllToolsDataSchemaFromJSON(jsonString) {
|
|
|
400
400
|
}
|
|
401
401
|
/** @internal */
|
|
402
402
|
exports.DataTools$inboundSchema = z.object({
|
|
403
|
-
id: z.string().default("
|
|
403
|
+
id: z.string().default("01KB5696Z25E150AKD90TX7QAZ"),
|
|
404
404
|
name: z.string(),
|
|
405
405
|
description: z.string().optional(),
|
|
406
406
|
schema: z.lazy(() => exports.GetAllToolsDataSchema$inboundSchema),
|
|
407
407
|
});
|
|
408
408
|
/** @internal */
|
|
409
409
|
exports.DataTools$outboundSchema = z.object({
|
|
410
|
-
id: z.string().default("
|
|
410
|
+
id: z.string().default("01KB5696Z25E150AKD90TX7QAZ"),
|
|
411
411
|
name: z.string(),
|
|
412
412
|
description: z.string().optional(),
|
|
413
413
|
schema: z.lazy(() => exports.GetAllToolsDataSchema$outboundSchema),
|
|
@@ -454,7 +454,7 @@ function dataMcpFromJSON(jsonString) {
|
|
|
454
454
|
}
|
|
455
455
|
/** @internal */
|
|
456
456
|
exports.DataMCPTool$inboundSchema = z.object({
|
|
457
|
-
_id: z.string().default("
|
|
457
|
+
_id: z.string().default("tool_01KB5696Z13G7ZC6E2NQX414SR"),
|
|
458
458
|
path: z.string(),
|
|
459
459
|
key: z.string(),
|
|
460
460
|
display_name: z.string().optional(),
|
|
@@ -482,7 +482,7 @@ exports.DataMCPTool$inboundSchema = z.object({
|
|
|
482
482
|
});
|
|
483
483
|
/** @internal */
|
|
484
484
|
exports.DataMCPTool$outboundSchema = z.object({
|
|
485
|
-
id: z.string().default("
|
|
485
|
+
id: z.string().default("tool_01KB5696Z13G7ZC6E2NQX414SR"),
|
|
486
486
|
path: z.string(),
|
|
487
487
|
key: z.string(),
|
|
488
488
|
displayName: z.string().optional(),
|
|
@@ -634,7 +634,7 @@ function getAllToolsDataHttpFromJSON(jsonString) {
|
|
|
634
634
|
}
|
|
635
635
|
/** @internal */
|
|
636
636
|
exports.DataHTTPTool$inboundSchema = z.object({
|
|
637
|
-
_id: z.string().default("
|
|
637
|
+
_id: z.string().default("tool_01KB5696YZPG6N7B7J5P8MS89H"),
|
|
638
638
|
path: z.string(),
|
|
639
639
|
key: z.string(),
|
|
640
640
|
display_name: z.string().optional(),
|
|
@@ -662,7 +662,7 @@ exports.DataHTTPTool$inboundSchema = z.object({
|
|
|
662
662
|
});
|
|
663
663
|
/** @internal */
|
|
664
664
|
exports.DataHTTPTool$outboundSchema = z.object({
|
|
665
|
-
id: z.string().default("
|
|
665
|
+
id: z.string().default("tool_01KB5696YZPG6N7B7J5P8MS89H"),
|
|
666
666
|
path: z.string(),
|
|
667
667
|
key: z.string(),
|
|
668
668
|
displayName: z.string().optional(),
|
|
@@ -750,7 +750,7 @@ function dataJsonSchemaFromJSON(jsonString) {
|
|
|
750
750
|
}
|
|
751
751
|
/** @internal */
|
|
752
752
|
exports.DataJSONSchemaTool$inboundSchema = z.object({
|
|
753
|
-
_id: z.string().default("
|
|
753
|
+
_id: z.string().default("tool_01KB5696YXPGVYK0WKRQVF9M7Q"),
|
|
754
754
|
path: z.string(),
|
|
755
755
|
key: z.string(),
|
|
756
756
|
display_name: z.string().optional(),
|
|
@@ -779,7 +779,7 @@ exports.DataJSONSchemaTool$inboundSchema = z.object({
|
|
|
779
779
|
});
|
|
780
780
|
/** @internal */
|
|
781
781
|
exports.DataJSONSchemaTool$outboundSchema = z.object({
|
|
782
|
-
id: z.string().default("
|
|
782
|
+
id: z.string().default("tool_01KB5696YXPGVYK0WKRQVF9M7Q"),
|
|
783
783
|
path: z.string(),
|
|
784
784
|
key: z.string(),
|
|
785
785
|
displayName: z.string().optional(),
|
|
@@ -873,7 +873,7 @@ function getAllToolsDataFunctionFromJSON(jsonString) {
|
|
|
873
873
|
}
|
|
874
874
|
/** @internal */
|
|
875
875
|
exports.DataFunctionTool$inboundSchema = z.object({
|
|
876
|
-
_id: z.string().default("
|
|
876
|
+
_id: z.string().default("tool_01KB5696YWXYXYFX0SEJAKX402"),
|
|
877
877
|
path: z.string(),
|
|
878
878
|
key: z.string(),
|
|
879
879
|
display_name: z.string().optional(),
|
|
@@ -901,7 +901,7 @@ exports.DataFunctionTool$inboundSchema = z.object({
|
|
|
901
901
|
});
|
|
902
902
|
/** @internal */
|
|
903
903
|
exports.DataFunctionTool$outboundSchema = z.object({
|
|
904
|
-
id: z.string().default("
|
|
904
|
+
id: z.string().default("tool_01KB5696YWXYXYFX0SEJAKX402"),
|
|
905
905
|
path: z.string(),
|
|
906
906
|
key: z.string(),
|
|
907
907
|
displayName: z.string().optional(),
|
|
@@ -149,7 +149,7 @@ exports.GetBudgetResponseBody$inboundSchema = z.object({
|
|
|
149
149
|
consumption: z.lazy(() => exports.GetBudgetConsumption$inboundSchema).optional(),
|
|
150
150
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
151
151
|
.optional(),
|
|
152
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
152
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-28T12:16:10.680Z").transform(v => new Date(v)),
|
|
153
153
|
}).transform((v) => {
|
|
154
154
|
return (0, primitives_js_1.remap)(v, {
|
|
155
155
|
"_id": "id",
|
|
@@ -168,7 +168,7 @@ exports.GetBudgetResponseBody$outboundSchema = z.object({
|
|
|
168
168
|
isActive: z.boolean(),
|
|
169
169
|
consumption: z.lazy(() => exports.GetBudgetConsumption$outboundSchema).optional(),
|
|
170
170
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
171
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
171
|
+
updated: z.date().default(() => new Date("2025-11-28T12:16:10.680Z"))
|
|
172
172
|
.transform(v => v.toISOString()),
|
|
173
173
|
}).transform((v) => {
|
|
174
174
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -523,8 +523,8 @@ exports.GetEvalsDataEvalsResponse200ApplicationJSONType$outboundSchema = exports
|
|
|
523
523
|
exports.DataTypescript$inboundSchema = z.object({
|
|
524
524
|
_id: z.string(),
|
|
525
525
|
description: z.string(),
|
|
526
|
-
created: z.string().default("2025-11-
|
|
527
|
-
updated: z.string().default("2025-11-
|
|
526
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
527
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
528
528
|
guardrail_config: z.union([
|
|
529
529
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
530
530
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
@@ -542,8 +542,8 @@ exports.DataTypescript$inboundSchema = z.object({
|
|
|
542
542
|
exports.DataTypescript$outboundSchema = z.object({
|
|
543
543
|
id: z.string(),
|
|
544
544
|
description: z.string(),
|
|
545
|
-
created: z.string().default("2025-11-
|
|
546
|
-
updated: z.string().default("2025-11-
|
|
545
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
546
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
547
547
|
guardrailConfig: z.union([
|
|
548
548
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
549
549
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
@@ -642,8 +642,8 @@ exports.DataRagasMetric$outboundSchema = exports.DataRagasMetric$inboundSchema;
|
|
|
642
642
|
exports.DataRagas$inboundSchema = z.object({
|
|
643
643
|
_id: z.string(),
|
|
644
644
|
description: z.string(),
|
|
645
|
-
created: z.string().default("2025-11-
|
|
646
|
-
updated: z.string().default("2025-11-
|
|
645
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
646
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
647
647
|
guardrail_config: z.union([
|
|
648
648
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
649
649
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -663,8 +663,8 @@ exports.DataRagas$inboundSchema = z.object({
|
|
|
663
663
|
exports.DataRagas$outboundSchema = z.object({
|
|
664
664
|
id: z.string(),
|
|
665
665
|
description: z.string(),
|
|
666
|
-
created: z.string().default("2025-11-
|
|
667
|
-
updated: z.string().default("2025-11-
|
|
666
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
667
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
668
668
|
guardrailConfig: z.union([
|
|
669
669
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
670
670
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -1439,8 +1439,8 @@ function dataFunctionParamsFromJSON(jsonString) {
|
|
|
1439
1439
|
exports.DataFunction$inboundSchema = z.object({
|
|
1440
1440
|
_id: z.string(),
|
|
1441
1441
|
description: z.string(),
|
|
1442
|
-
created: z.string().default("2025-11-
|
|
1443
|
-
updated: z.string().default("2025-11-
|
|
1442
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1443
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1444
1444
|
guardrail_config: z.union([
|
|
1445
1445
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
1446
1446
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -1492,8 +1492,8 @@ exports.DataFunction$inboundSchema = z.object({
|
|
|
1492
1492
|
exports.DataFunction$outboundSchema = z.object({
|
|
1493
1493
|
id: z.string(),
|
|
1494
1494
|
description: z.string(),
|
|
1495
|
-
created: z.string().default("2025-11-
|
|
1496
|
-
updated: z.string().default("2025-11-
|
|
1495
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1496
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1497
1497
|
guardrailConfig: z.union([
|
|
1498
1498
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
1499
1499
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -1621,8 +1621,8 @@ exports.GetEvalsDataEvalsType$outboundSchema = exports.GetEvalsDataEvalsType$inb
|
|
|
1621
1621
|
exports.DataPython$inboundSchema = z.object({
|
|
1622
1622
|
_id: z.string(),
|
|
1623
1623
|
description: z.string(),
|
|
1624
|
-
created: z.string().default("2025-11-
|
|
1625
|
-
updated: z.string().default("2025-11-
|
|
1624
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1625
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1626
1626
|
guardrail_config: z.union([
|
|
1627
1627
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
1628
1628
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -1640,8 +1640,8 @@ exports.DataPython$inboundSchema = z.object({
|
|
|
1640
1640
|
exports.DataPython$outboundSchema = z.object({
|
|
1641
1641
|
id: z.string(),
|
|
1642
1642
|
description: z.string(),
|
|
1643
|
-
created: z.string().default("2025-11-
|
|
1644
|
-
updated: z.string().default("2025-11-
|
|
1643
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1644
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1645
1645
|
guardrailConfig: z.union([
|
|
1646
1646
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
1647
1647
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -1741,8 +1741,8 @@ exports.DataMethod$outboundSchema = exports.DataMethod$inboundSchema;
|
|
|
1741
1741
|
exports.DataHTTP$inboundSchema = z.object({
|
|
1742
1742
|
_id: z.string(),
|
|
1743
1743
|
description: z.string(),
|
|
1744
|
-
created: z.string().default("2025-11-
|
|
1745
|
-
updated: z.string().default("2025-11-
|
|
1744
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1745
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1746
1746
|
guardrail_config: z.union([
|
|
1747
1747
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
1748
1748
|
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -1763,8 +1763,8 @@ exports.DataHTTP$inboundSchema = z.object({
|
|
|
1763
1763
|
exports.DataHTTP$outboundSchema = z.object({
|
|
1764
1764
|
id: z.string(),
|
|
1765
1765
|
description: z.string(),
|
|
1766
|
-
created: z.string().default("2025-11-
|
|
1767
|
-
updated: z.string().default("2025-11-
|
|
1766
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1767
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1768
1768
|
guardrailConfig: z.union([
|
|
1769
1769
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
1770
1770
|
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -1867,8 +1867,8 @@ exports.DataType$outboundSchema = exports.DataType$inboundSchema;
|
|
|
1867
1867
|
exports.DataJSON$inboundSchema = z.object({
|
|
1868
1868
|
_id: z.string(),
|
|
1869
1869
|
description: z.string(),
|
|
1870
|
-
created: z.string().default("2025-11-
|
|
1871
|
-
updated: z.string().default("2025-11-
|
|
1870
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1871
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1872
1872
|
guardrail_config: z.union([
|
|
1873
1873
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
1874
1874
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
@@ -1886,8 +1886,8 @@ exports.DataJSON$inboundSchema = z.object({
|
|
|
1886
1886
|
exports.DataJSON$outboundSchema = z.object({
|
|
1887
1887
|
id: z.string(),
|
|
1888
1888
|
description: z.string(),
|
|
1889
|
-
created: z.string().default("2025-11-
|
|
1890
|
-
updated: z.string().default("2025-11-
|
|
1889
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1890
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1891
1891
|
guardrailConfig: z.union([
|
|
1892
1892
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
1893
1893
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
@@ -1987,8 +1987,8 @@ exports.GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$outboundSche
|
|
|
1987
1987
|
exports.DataLLM$inboundSchema = z.object({
|
|
1988
1988
|
_id: z.string(),
|
|
1989
1989
|
description: z.string(),
|
|
1990
|
-
created: z.string().default("2025-11-
|
|
1991
|
-
updated: z.string().default("2025-11-
|
|
1990
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1991
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
1992
1992
|
guardrail_config: z.union([
|
|
1993
1993
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
1994
1994
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
@@ -2007,8 +2007,8 @@ exports.DataLLM$inboundSchema = z.object({
|
|
|
2007
2007
|
exports.DataLLM$outboundSchema = z.object({
|
|
2008
2008
|
id: z.string(),
|
|
2009
2009
|
description: z.string(),
|
|
2010
|
-
created: z.string().default("2025-11-
|
|
2011
|
-
updated: z.string().default("2025-11-
|
|
2010
|
+
created: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
2011
|
+
updated: z.string().default("2025-11-28T12:16:12.523Z"),
|
|
2012
2012
|
guardrailConfig: z.union([
|
|
2013
2013
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
2014
2014
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
@@ -192,7 +192,7 @@ exports.ListBudgetsData$inboundSchema = z.object({
|
|
|
192
192
|
consumption: z.lazy(() => exports.ListBudgetsConsumption$inboundSchema).optional(),
|
|
193
193
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
194
194
|
.optional(),
|
|
195
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
195
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-28T12:16:10.680Z").transform(v => new Date(v)),
|
|
196
196
|
}).transform((v) => {
|
|
197
197
|
return (0, primitives_js_1.remap)(v, {
|
|
198
198
|
"_id": "id",
|
|
@@ -209,7 +209,7 @@ exports.ListBudgetsData$outboundSchema = z.object({
|
|
|
209
209
|
isActive: z.boolean(),
|
|
210
210
|
consumption: z.lazy(() => exports.ListBudgetsConsumption$outboundSchema).optional(),
|
|
211
211
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
212
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
212
|
+
updated: z.date().default(() => new Date("2025-11-28T12:16:10.680Z"))
|
|
213
213
|
.transform(v => v.toISOString()),
|
|
214
214
|
}).transform((v) => {
|
|
215
215
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -154,7 +154,7 @@ exports.Data$inboundSchema = z
|
|
|
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("2025-11-
|
|
157
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-28T12:16:10.264Z").transform(v => new Date(v)),
|
|
158
158
|
metrics: z.lazy(() => exports.ListContactsMetrics$inboundSchema),
|
|
159
159
|
}).transform((v) => {
|
|
160
160
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -174,7 +174,7 @@ exports.Data$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("2025-11-
|
|
177
|
+
updated: z.date().default(() => new Date("2025-11-28T12:16:10.264Z"))
|
|
178
178
|
.transform(v => v.toISOString()),
|
|
179
179
|
metrics: z.lazy(() => exports.ListContactsMetrics$outboundSchema),
|
|
180
180
|
}).transform((v) => {
|
|
@@ -988,7 +988,7 @@ exports.ListDatasetDatapointsEvaluations3$inboundSchema = z.object({
|
|
|
988
988
|
human_review_id: z.string(),
|
|
989
989
|
source: exports.ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
990
990
|
reviewed_by_id: z.string(),
|
|
991
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
991
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-28T12:16:22.785Z").transform(v => new Date(v)),
|
|
992
992
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
993
993
|
values: z.array(z.string()),
|
|
994
994
|
}).transform((v) => {
|
|
@@ -1006,7 +1006,7 @@ exports.ListDatasetDatapointsEvaluations3$outboundSchema = z.object({
|
|
|
1006
1006
|
humanReviewId: z.string(),
|
|
1007
1007
|
source: exports.ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
1008
1008
|
reviewedById: z.string(),
|
|
1009
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1009
|
+
reviewedAt: z.date().default(() => new Date("2025-11-28T12:16:22.785Z"))
|
|
1010
1010
|
.transform(v => v.toISOString()),
|
|
1011
1011
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
1012
1012
|
values: z.array(z.string()),
|
|
@@ -1044,7 +1044,7 @@ exports.ListDatasetDatapointsEvaluations2$inboundSchema = z.object({
|
|
|
1044
1044
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema
|
|
1045
1045
|
.default("orq"),
|
|
1046
1046
|
reviewed_by_id: z.string(),
|
|
1047
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1047
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-28T12:16:22.784Z").transform(v => new Date(v)),
|
|
1048
1048
|
type: exports.ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
1049
1049
|
value: z.number(),
|
|
1050
1050
|
}).transform((v) => {
|
|
@@ -1063,7 +1063,7 @@ exports.ListDatasetDatapointsEvaluations2$outboundSchema = z.object({
|
|
|
1063
1063
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
|
|
1064
1064
|
.default("orq"),
|
|
1065
1065
|
reviewedById: z.string(),
|
|
1066
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1066
|
+
reviewedAt: z.date().default(() => new Date("2025-11-28T12:16:22.784Z"))
|
|
1067
1067
|
.transform(v => v.toISOString()),
|
|
1068
1068
|
type: exports.ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
1069
1069
|
value: z.number(),
|
|
@@ -1101,7 +1101,7 @@ exports.ListDatasetDatapointsEvaluations1$inboundSchema = z.object({
|
|
|
1101
1101
|
human_review_id: z.string(),
|
|
1102
1102
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
1103
1103
|
reviewed_by_id: z.string(),
|
|
1104
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-
|
|
1104
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-11-28T12:16:22.784Z").transform(v => new Date(v)),
|
|
1105
1105
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
1106
1106
|
value: z.string(),
|
|
1107
1107
|
}).transform((v) => {
|
|
@@ -1119,7 +1119,7 @@ exports.ListDatasetDatapointsEvaluations1$outboundSchema = z.object({
|
|
|
1119
1119
|
humanReviewId: z.string(),
|
|
1120
1120
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
1121
1121
|
reviewedById: z.string(),
|
|
1122
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
1122
|
+
reviewedAt: z.date().default(() => new Date("2025-11-28T12:16:22.784Z"))
|
|
1123
1123
|
.transform(v => v.toISOString()),
|
|
1124
1124
|
type: exports.ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
1125
1125
|
value: z.string(),
|
|
@@ -1179,7 +1179,7 @@ exports.ListDatasetDatapointsData$inboundSchema = z.object({
|
|
|
1179
1179
|
updated_by_id: z.string().optional(),
|
|
1180
1180
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1181
1181
|
.optional(),
|
|
1182
|
-
updated: z.string().datetime({ offset: true }).default("2025-11-
|
|
1182
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-28T12:16:10.264Z").transform(v => new Date(v)),
|
|
1183
1183
|
}).transform((v) => {
|
|
1184
1184
|
return (0, primitives_js_1.remap)(v, {
|
|
1185
1185
|
"_id": "id",
|
|
@@ -1214,7 +1214,7 @@ exports.ListDatasetDatapointsData$outboundSchema = z.object({
|
|
|
1214
1214
|
createdById: z.string().optional(),
|
|
1215
1215
|
updatedById: z.string().optional(),
|
|
1216
1216
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
1217
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
1217
|
+
updated: z.date().default(() => new Date("2025-11-28T12:16:10.264Z"))
|
|
1218
1218
|
.transform(v => v.toISOString()),
|
|
1219
1219
|
}).transform((v) => {
|
|
1220
1220
|
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("2025-11-
|
|
123
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-28T12:16:10.264Z").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("2025-11-
|
|
144
|
+
updated: z.date().default(() => new Date("2025-11-28T12:16:10.264Z"))
|
|
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("01KB56975X3KVDDYSQ9AESZSAM"),
|
|
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("01KB56975X3KVDDYSQ9AESZSAM"),
|
|
143
143
|
displayName: z.string(),
|
|
144
144
|
description: z.string().optional(),
|
|
145
145
|
status: exports.ListDatasourcesStatus$outboundSchema,
|
|
@@ -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("2025-11-
|
|
72
|
+
updated: z.string().datetime({ offset: true }).default("2025-11-28T12:16:10.264Z").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("2025-11-
|
|
91
|
+
updated: z.date().default(() => new Date("2025-11-28T12:16:10.264Z"))
|
|
92
92
|
.transform(v => v.toISOString()),
|
|
93
93
|
}).transform((v) => {
|
|
94
94
|
return (0, primitives_js_1.remap)(v, {
|