@orq-ai/node 4.1.0-rc.42 → 4.1.0-rc.43
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 +227 -227
- package/bin/mcp-server.js.map +43 -43
- 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/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.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/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/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/retrieveconversation.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/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/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/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.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/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/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/retrieveconversation.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/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/updatetool.ts +14 -14
|
@@ -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_01KCHGGRZ6P2VZ4C9MW17209BG"),
|
|
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_01KCHGGRZ6P2VZ4C9MW17209BG"),
|
|
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("01KCHGGRZ52W0H1FMZYZG9TBFD"),
|
|
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("01KCHGGRZ52W0H1FMZYZG9TBFD"),
|
|
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_01KCHGGRZ4ZTCRAGHJJ5G1XVKE"),
|
|
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_01KCHGGRZ4ZTCRAGHJJ5G1XVKE"),
|
|
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_01KCHGGRZ249SHG94KDQ22AWM6"),
|
|
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_01KCHGGRZ249SHG94KDQ22AWM6"),
|
|
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_01KCHGGRZ0MS4839K4B8JFXHBN"),
|
|
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_01KCHGGRZ0MS4839K4B8JFXHBN"),
|
|
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_01KCHGGRYZK4B66E9Z3RD9E9MT"),
|
|
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_01KCHGGRYZK4B66E9Z3RD9E9MT"),
|
|
868
868
|
path: z.string(),
|
|
869
869
|
key: z.string(),
|
|
870
870
|
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-12-
|
|
152
|
+
updated: z.string().datetime({ offset: true }).default("2025-12-15T17:21:37.883Z").transform(v => new Date(v)),
|
|
153
153
|
}).transform((v) => {
|
|
154
154
|
return (0, primitives_js_1.remap)(v, {
|
|
155
155
|
"_id": "id",
|
|
@@ -170,7 +170,7 @@ exports.GetBudgetResponseBody$outboundSchema = z.object({
|
|
|
170
170
|
isActive: z.boolean(),
|
|
171
171
|
consumption: z.lazy(() => exports.GetBudgetConsumption$outboundSchema).optional(),
|
|
172
172
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
173
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
173
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.883Z"))
|
|
174
174
|
.transform(v => v.toISOString()),
|
|
175
175
|
}).transform((v) => {
|
|
176
176
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -348,8 +348,8 @@ function getEvalsDataEvalsResponse200ApplicationJSONGuardrailConfigFromJSON(json
|
|
|
348
348
|
exports.DataTypescript$inboundSchema = z.object({
|
|
349
349
|
_id: z.string(),
|
|
350
350
|
description: z.string(),
|
|
351
|
-
created: z.string().default("2025-12-
|
|
352
|
-
updated: z.string().default("2025-12-
|
|
351
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
352
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
353
353
|
guardrail_config: z.union([
|
|
354
354
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
355
355
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
@@ -367,8 +367,8 @@ exports.DataTypescript$inboundSchema = z.object({
|
|
|
367
367
|
exports.DataTypescript$outboundSchema = z.object({
|
|
368
368
|
id: z.string(),
|
|
369
369
|
description: z.string(),
|
|
370
|
-
created: z.string().default("2025-12-
|
|
371
|
-
updated: z.string().default("2025-12-
|
|
370
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
371
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
372
372
|
guardrailConfig: z.union([
|
|
373
373
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
374
374
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
@@ -455,8 +455,8 @@ exports.DataRagasMetric$outboundSchema = exports.DataRagasMetric$inboundSchema;
|
|
|
455
455
|
exports.DataRagas$inboundSchema = z.object({
|
|
456
456
|
_id: z.string(),
|
|
457
457
|
description: z.string(),
|
|
458
|
-
created: z.string().default("2025-12-
|
|
459
|
-
updated: z.string().default("2025-12-
|
|
458
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
459
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
460
460
|
guardrail_config: z.union([
|
|
461
461
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
462
462
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -476,8 +476,8 @@ exports.DataRagas$inboundSchema = z.object({
|
|
|
476
476
|
exports.DataRagas$outboundSchema = z.object({
|
|
477
477
|
id: z.string(),
|
|
478
478
|
description: z.string(),
|
|
479
|
-
created: z.string().default("2025-12-
|
|
480
|
-
updated: z.string().default("2025-12-
|
|
479
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
480
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
481
481
|
guardrailConfig: z.union([
|
|
482
482
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
483
483
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
@@ -1110,8 +1110,8 @@ function dataFunctionParamsFromJSON(jsonString) {
|
|
|
1110
1110
|
exports.DataFunction$inboundSchema = z.object({
|
|
1111
1111
|
_id: z.string(),
|
|
1112
1112
|
description: z.string(),
|
|
1113
|
-
created: z.string().default("2025-12-
|
|
1114
|
-
updated: z.string().default("2025-12-
|
|
1113
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1114
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1115
1115
|
guardrail_config: z.union([
|
|
1116
1116
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1117
1117
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -1163,8 +1163,8 @@ exports.DataFunction$inboundSchema = z.object({
|
|
|
1163
1163
|
exports.DataFunction$outboundSchema = z.object({
|
|
1164
1164
|
id: z.string(),
|
|
1165
1165
|
description: z.string(),
|
|
1166
|
-
created: z.string().default("2025-12-
|
|
1167
|
-
updated: z.string().default("2025-12-
|
|
1166
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1167
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1168
1168
|
guardrailConfig: z.union([
|
|
1169
1169
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
1170
1170
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -1280,8 +1280,8 @@ function getEvalsDataEvalsGuardrailConfigFromJSON(jsonString) {
|
|
|
1280
1280
|
exports.DataPython$inboundSchema = z.object({
|
|
1281
1281
|
_id: z.string(),
|
|
1282
1282
|
description: z.string(),
|
|
1283
|
-
created: z.string().default("2025-12-
|
|
1284
|
-
updated: z.string().default("2025-12-
|
|
1283
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1284
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1285
1285
|
guardrail_config: z.union([
|
|
1286
1286
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
1287
1287
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -1299,8 +1299,8 @@ exports.DataPython$inboundSchema = z.object({
|
|
|
1299
1299
|
exports.DataPython$outboundSchema = z.object({
|
|
1300
1300
|
id: z.string(),
|
|
1301
1301
|
description: z.string(),
|
|
1302
|
-
created: z.string().default("2025-12-
|
|
1303
|
-
updated: z.string().default("2025-12-
|
|
1302
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1303
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1304
1304
|
guardrailConfig: z.union([
|
|
1305
1305
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
1306
1306
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
@@ -1387,8 +1387,8 @@ exports.DataMethod$outboundSchema = exports.DataMethod$inboundSchema;
|
|
|
1387
1387
|
exports.DataHTTP$inboundSchema = z.object({
|
|
1388
1388
|
_id: z.string(),
|
|
1389
1389
|
description: z.string(),
|
|
1390
|
-
created: z.string().default("2025-12-
|
|
1391
|
-
updated: z.string().default("2025-12-
|
|
1390
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1391
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1392
1392
|
guardrail_config: z.union([
|
|
1393
1393
|
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
1394
1394
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
@@ -1409,8 +1409,8 @@ exports.DataHTTP$inboundSchema = z.object({
|
|
|
1409
1409
|
exports.DataHTTP$outboundSchema = z.object({
|
|
1410
1410
|
id: z.string(),
|
|
1411
1411
|
description: z.string(),
|
|
1412
|
-
created: z.string().default("2025-12-
|
|
1413
|
-
updated: z.string().default("2025-12-
|
|
1412
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1413
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1414
1414
|
guardrailConfig: z.union([
|
|
1415
1415
|
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
1416
1416
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
@@ -1499,8 +1499,8 @@ function dataGuardrailConfigFromJSON(jsonString) {
|
|
|
1499
1499
|
exports.DataJSON$inboundSchema = z.object({
|
|
1500
1500
|
_id: z.string(),
|
|
1501
1501
|
description: z.string(),
|
|
1502
|
-
created: z.string().default("2025-12-
|
|
1503
|
-
updated: z.string().default("2025-12-
|
|
1502
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1503
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1504
1504
|
guardrail_config: z.union([
|
|
1505
1505
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
1506
1506
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
@@ -1518,8 +1518,8 @@ exports.DataJSON$inboundSchema = z.object({
|
|
|
1518
1518
|
exports.DataJSON$outboundSchema = z.object({
|
|
1519
1519
|
id: z.string(),
|
|
1520
1520
|
description: z.string(),
|
|
1521
|
-
created: z.string().default("2025-12-
|
|
1522
|
-
updated: z.string().default("2025-12-
|
|
1521
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1522
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1523
1523
|
guardrailConfig: z.union([
|
|
1524
1524
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
1525
1525
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
@@ -1607,8 +1607,8 @@ function getEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailConfigF
|
|
|
1607
1607
|
exports.DataLLM$inboundSchema = z.object({
|
|
1608
1608
|
_id: z.string(),
|
|
1609
1609
|
description: z.string(),
|
|
1610
|
-
created: z.string().default("2025-12-
|
|
1611
|
-
updated: z.string().default("2025-12-
|
|
1610
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1611
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1612
1612
|
guardrail_config: z.union([
|
|
1613
1613
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
1614
1614
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
@@ -1627,8 +1627,8 @@ exports.DataLLM$inboundSchema = z.object({
|
|
|
1627
1627
|
exports.DataLLM$outboundSchema = z.object({
|
|
1628
1628
|
id: z.string(),
|
|
1629
1629
|
description: z.string(),
|
|
1630
|
-
created: z.string().default("2025-12-
|
|
1631
|
-
updated: z.string().default("2025-12-
|
|
1630
|
+
created: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1631
|
+
updated: z.string().default("2025-12-15T17:21:39.625Z"),
|
|
1632
1632
|
guardrailConfig: z.union([
|
|
1633
1633
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
1634
1634
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$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-12-
|
|
195
|
+
updated: z.string().datetime({ offset: true }).default("2025-12-15T17:21:37.883Z").transform(v => new Date(v)),
|
|
196
196
|
}).transform((v) => {
|
|
197
197
|
return (0, primitives_js_1.remap)(v, {
|
|
198
198
|
"_id": "id",
|
|
@@ -211,7 +211,7 @@ exports.ListBudgetsData$outboundSchema = z.object({
|
|
|
211
211
|
isActive: z.boolean(),
|
|
212
212
|
consumption: z.lazy(() => exports.ListBudgetsConsumption$outboundSchema).optional(),
|
|
213
213
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
214
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
214
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.883Z"))
|
|
215
215
|
.transform(v => v.toISOString()),
|
|
216
216
|
}).transform((v) => {
|
|
217
217
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -156,7 +156,7 @@ exports.Data$inboundSchema = z
|
|
|
156
156
|
metadata: z.record(z.any()).optional(),
|
|
157
157
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
158
158
|
.optional(),
|
|
159
|
-
updated: z.string().datetime({ offset: true }).default("2025-12-
|
|
159
|
+
updated: z.string().datetime({ offset: true }).default("2025-12-15T17:21:37.487Z").transform(v => new Date(v)),
|
|
160
160
|
metrics: z.lazy(() => exports.ListContactsMetrics$inboundSchema),
|
|
161
161
|
}).transform((v) => {
|
|
162
162
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -176,7 +176,7 @@ exports.Data$outboundSchema = z.object({
|
|
|
176
176
|
tags: z.array(z.string()).optional(),
|
|
177
177
|
metadata: z.record(z.any()).optional(),
|
|
178
178
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
179
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
179
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.487Z"))
|
|
180
180
|
.transform(v => v.toISOString()),
|
|
181
181
|
metrics: z.lazy(() => exports.ListContactsMetrics$outboundSchema),
|
|
182
182
|
}).transform((v) => {
|
|
@@ -708,7 +708,7 @@ exports.ListDatasetDatapointsEvaluations3$inboundSchema = z.object({
|
|
|
708
708
|
human_review_id: z.string(),
|
|
709
709
|
source: exports.ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
710
710
|
reviewed_by_id: z.string(),
|
|
711
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-
|
|
711
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-15T17:21:51.336Z").transform(v => new Date(v)),
|
|
712
712
|
type: z.literal("string_array"),
|
|
713
713
|
values: z.array(z.string()),
|
|
714
714
|
}).transform((v) => {
|
|
@@ -726,7 +726,7 @@ exports.ListDatasetDatapointsEvaluations3$outboundSchema = z.object({
|
|
|
726
726
|
humanReviewId: z.string(),
|
|
727
727
|
source: exports.ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
728
728
|
reviewedById: z.string(),
|
|
729
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
729
|
+
reviewedAt: z.date().default(() => new Date("2025-12-15T17:21:51.336Z"))
|
|
730
730
|
.transform(v => v.toISOString()),
|
|
731
731
|
type: z.literal("string_array"),
|
|
732
732
|
values: z.array(z.string()),
|
|
@@ -760,7 +760,7 @@ exports.ListDatasetDatapointsEvaluations2$inboundSchema = z.object({
|
|
|
760
760
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema
|
|
761
761
|
.default("orq"),
|
|
762
762
|
reviewed_by_id: z.string(),
|
|
763
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-
|
|
763
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-15T17:21:51.336Z").transform(v => new Date(v)),
|
|
764
764
|
type: z.literal("number"),
|
|
765
765
|
value: z.number(),
|
|
766
766
|
}).transform((v) => {
|
|
@@ -779,7 +779,7 @@ exports.ListDatasetDatapointsEvaluations2$outboundSchema = z.object({
|
|
|
779
779
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
|
|
780
780
|
.default("orq"),
|
|
781
781
|
reviewedById: z.string(),
|
|
782
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
782
|
+
reviewedAt: z.date().default(() => new Date("2025-12-15T17:21:51.336Z"))
|
|
783
783
|
.transform(v => v.toISOString()),
|
|
784
784
|
type: z.literal("number"),
|
|
785
785
|
value: z.number(),
|
|
@@ -813,7 +813,7 @@ exports.ListDatasetDatapointsEvaluations1$inboundSchema = z.object({
|
|
|
813
813
|
human_review_id: z.string(),
|
|
814
814
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
815
815
|
reviewed_by_id: z.string(),
|
|
816
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-
|
|
816
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-15T17:21:51.335Z").transform(v => new Date(v)),
|
|
817
817
|
type: z.literal("string"),
|
|
818
818
|
value: z.string(),
|
|
819
819
|
}).transform((v) => {
|
|
@@ -831,7 +831,7 @@ exports.ListDatasetDatapointsEvaluations1$outboundSchema = z.object({
|
|
|
831
831
|
humanReviewId: z.string(),
|
|
832
832
|
source: exports.ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
833
833
|
reviewedById: z.string(),
|
|
834
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
834
|
+
reviewedAt: z.date().default(() => new Date("2025-12-15T17:21:51.335Z"))
|
|
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("2025-12-
|
|
894
|
+
updated: z.string().datetime({ offset: true }).default("2025-12-15T17:21:37.487Z").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("2025-12-
|
|
929
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.487Z"))
|
|
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("2025-12-
|
|
123
|
+
updated: z.string().datetime({ offset: true }).default("2025-12-15T17:21:37.487Z").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-12-
|
|
144
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.487Z"))
|
|
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("01KCHGGS58WPBRHH3QBDEWQ0C7"),
|
|
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("01KCHGGS58WPBRHH3QBDEWQ0C7"),
|
|
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-12-
|
|
72
|
+
updated: z.string().datetime({ offset: true }).default("2025-12-15T17:21:37.487Z").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-12-
|
|
91
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.487Z"))
|
|
92
92
|
.transform(v => v.toISOString()),
|
|
93
93
|
}).transform((v) => {
|
|
94
94
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -96,7 +96,7 @@ function retrieveConversationMetadataFromJSON(jsonString) {
|
|
|
96
96
|
}
|
|
97
97
|
/** @internal */
|
|
98
98
|
exports.RetrieveConversationResponseBody$inboundSchema = z.object({
|
|
99
|
-
_id: z.string().default("
|
|
99
|
+
_id: z.string().default("conv_01kchggrrkrk0fh7ytnf231n0q"),
|
|
100
100
|
entityId: z.string(),
|
|
101
101
|
kind: exports.RetrieveConversationKind$inboundSchema,
|
|
102
102
|
displayName: z.string(),
|
|
@@ -112,7 +112,7 @@ exports.RetrieveConversationResponseBody$inboundSchema = z.object({
|
|
|
112
112
|
});
|
|
113
113
|
/** @internal */
|
|
114
114
|
exports.RetrieveConversationResponseBody$outboundSchema = z.object({
|
|
115
|
-
id: z.string().default("
|
|
115
|
+
id: z.string().default("conv_01kchggrrkrk0fh7ytnf231n0q"),
|
|
116
116
|
entityId: z.string(),
|
|
117
117
|
kind: exports.RetrieveConversationKind$outboundSchema,
|
|
118
118
|
displayName: z.string(),
|
|
@@ -692,7 +692,7 @@ exports.RetrieveDatapointEvaluations3$inboundSchema = z.object({
|
|
|
692
692
|
source: exports.RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema
|
|
693
693
|
.default("orq"),
|
|
694
694
|
reviewed_by_id: z.string(),
|
|
695
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-
|
|
695
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-15T17:21:51.351Z").transform(v => new Date(v)),
|
|
696
696
|
type: z.literal("string_array"),
|
|
697
697
|
values: z.array(z.string()),
|
|
698
698
|
}).transform((v) => {
|
|
@@ -711,7 +711,7 @@ exports.RetrieveDatapointEvaluations3$outboundSchema = z.object({
|
|
|
711
711
|
source: exports.RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
712
712
|
.default("orq"),
|
|
713
713
|
reviewedById: z.string(),
|
|
714
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
714
|
+
reviewedAt: z.date().default(() => new Date("2025-12-15T17:21:51.351Z"))
|
|
715
715
|
.transform(v => v.toISOString()),
|
|
716
716
|
type: z.literal("string_array"),
|
|
717
717
|
values: z.array(z.string()),
|
|
@@ -746,7 +746,7 @@ exports.RetrieveDatapointEvaluations2$inboundSchema = z.object({
|
|
|
746
746
|
human_review_id: z.string(),
|
|
747
747
|
source: exports.RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
748
748
|
reviewed_by_id: z.string(),
|
|
749
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-
|
|
749
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-15T17:21:51.350Z").transform(v => new Date(v)),
|
|
750
750
|
type: z.literal("number"),
|
|
751
751
|
value: z.number(),
|
|
752
752
|
}).transform((v) => {
|
|
@@ -764,7 +764,7 @@ exports.RetrieveDatapointEvaluations2$outboundSchema = z.object({
|
|
|
764
764
|
humanReviewId: z.string(),
|
|
765
765
|
source: exports.RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
766
766
|
reviewedById: z.string(),
|
|
767
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
767
|
+
reviewedAt: z.date().default(() => new Date("2025-12-15T17:21:51.350Z"))
|
|
768
768
|
.transform(v => v.toISOString()),
|
|
769
769
|
type: z.literal("number"),
|
|
770
770
|
value: z.number(),
|
|
@@ -798,7 +798,7 @@ exports.RetrieveDatapointEvaluations1$inboundSchema = z.object({
|
|
|
798
798
|
human_review_id: z.string(),
|
|
799
799
|
source: exports.RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
800
800
|
reviewed_by_id: z.string(),
|
|
801
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-
|
|
801
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2025-12-15T17:21:51.343Z").transform(v => new Date(v)),
|
|
802
802
|
type: z.literal("string"),
|
|
803
803
|
value: z.string(),
|
|
804
804
|
}).transform((v) => {
|
|
@@ -816,7 +816,7 @@ exports.RetrieveDatapointEvaluations1$outboundSchema = z.object({
|
|
|
816
816
|
humanReviewId: z.string(),
|
|
817
817
|
source: exports.RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
818
818
|
reviewedById: z.string(),
|
|
819
|
-
reviewedAt: z.date().default(() => new Date("2025-12-
|
|
819
|
+
reviewedAt: z.date().default(() => new Date("2025-12-15T17:21:51.343Z"))
|
|
820
820
|
.transform(v => v.toISOString()),
|
|
821
821
|
type: z.literal("string"),
|
|
822
822
|
value: z.string(),
|
|
@@ -876,7 +876,7 @@ exports.RetrieveDatapointResponseBody$inboundSchema = z.object({
|
|
|
876
876
|
updated_by_id: z.string().optional(),
|
|
877
877
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
878
878
|
.optional(),
|
|
879
|
-
updated: z.string().datetime({ offset: true }).default("2025-12-
|
|
879
|
+
updated: z.string().datetime({ offset: true }).default("2025-12-15T17:21:37.487Z").transform(v => new Date(v)),
|
|
880
880
|
}).transform((v) => {
|
|
881
881
|
return (0, primitives_js_1.remap)(v, {
|
|
882
882
|
"_id": "id",
|
|
@@ -911,7 +911,7 @@ exports.RetrieveDatapointResponseBody$outboundSchema = z.object({
|
|
|
911
911
|
createdById: z.string().optional(),
|
|
912
912
|
updatedById: z.string().optional(),
|
|
913
913
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
914
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
914
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.487Z"))
|
|
915
915
|
.transform(v => v.toISOString()),
|
|
916
916
|
}).transform((v) => {
|
|
917
917
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -105,7 +105,7 @@ exports.RetrieveDatasetResponseBody$inboundSchema = z.object({
|
|
|
105
105
|
updated_by_id: z.string().optional(),
|
|
106
106
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
107
107
|
.optional(),
|
|
108
|
-
updated: z.string().datetime({ offset: true }).default("2025-12-
|
|
108
|
+
updated: z.string().datetime({ offset: true }).default("2025-12-15T17:21:37.487Z").transform(v => new Date(v)),
|
|
109
109
|
}).transform((v) => {
|
|
110
110
|
return (0, primitives_js_1.remap)(v, {
|
|
111
111
|
"_id": "id",
|
|
@@ -126,7 +126,7 @@ exports.RetrieveDatasetResponseBody$outboundSchema = z.object({
|
|
|
126
126
|
createdById: z.string().optional(),
|
|
127
127
|
updatedById: z.string().optional(),
|
|
128
128
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
129
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
129
|
+
updated: z.date().default(() => new Date("2025-12-15T17:21:37.487Z"))
|
|
130
130
|
.transform(v => v.toISOString()),
|
|
131
131
|
}).transform((v) => {
|
|
132
132
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -83,7 +83,7 @@ exports.RetrieveDatasourceStatus$inboundSchema = z.nativeEnum(exports.RetrieveDa
|
|
|
83
83
|
exports.RetrieveDatasourceStatus$outboundSchema = exports.RetrieveDatasourceStatus$inboundSchema;
|
|
84
84
|
/** @internal */
|
|
85
85
|
exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
86
|
-
_id: z.string().default("
|
|
86
|
+
_id: z.string().default("01KCHGGS5AWH4H2FFSQ991D63R"),
|
|
87
87
|
display_name: z.string(),
|
|
88
88
|
description: z.string().optional(),
|
|
89
89
|
status: exports.RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -107,7 +107,7 @@ exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
|
107
107
|
});
|
|
108
108
|
/** @internal */
|
|
109
109
|
exports.RetrieveDatasourceResponseBody$outboundSchema = z.object({
|
|
110
|
-
id: z.string().default("
|
|
110
|
+
id: z.string().default("01KCHGGS5AWH4H2FFSQ991D63R"),
|
|
111
111
|
displayName: z.string(),
|
|
112
112
|
description: z.string().optional(),
|
|
113
113
|
status: exports.RetrieveDatasourceStatus$outboundSchema,
|