@orq-ai/node 4.2.0-rc.3 → 4.2.0-rc.5
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 +219 -219
- package/bin/mcp-server.js.map +39 -39
- 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/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/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/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/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/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/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/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/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_01KDWQH4PC6YCDB2RGB8DSYFKK"),
|
|
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_01KDWQH4PC6YCDB2RGB8DSYFKK"),
|
|
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("01KDWQH4PBSP377Y8VERJH03MS"),
|
|
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("01KDWQH4PBSP377Y8VERJH03MS"),
|
|
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_01KDWQH4P9V1TJ0TNSAZPPPWK4"),
|
|
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_01KDWQH4P9V1TJ0TNSAZPPPWK4"),
|
|
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_01KDWQH4P7AXGTYMDYGRW38N4G"),
|
|
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_01KDWQH4P7AXGTYMDYGRW38N4G"),
|
|
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_01KDWQH4P5AVGPBE7NB7NJBHM4"),
|
|
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_01KDWQH4P5AVGPBE7NB7NJBHM4"),
|
|
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_01KDWQH4NXDNAKK17CG23EB3B6"),
|
|
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_01KDWQH4NXDNAKK17CG23EB3B6"),
|
|
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("
|
|
372
|
-
updated: z.string().default("
|
|
371
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
372
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
391
|
-
updated: z.string().default("
|
|
390
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
391
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
499
|
-
updated: z.string().default("
|
|
498
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
499
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
520
|
-
updated: z.string().default("
|
|
519
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
520
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
1174
|
-
updated: z.string().default("
|
|
1173
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1174
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
1227
|
-
updated: z.string().default("
|
|
1226
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1227
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
1364
|
-
updated: z.string().default("
|
|
1363
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1364
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
1383
|
-
updated: z.string().default("
|
|
1382
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1383
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
1491
|
-
updated: z.string().default("
|
|
1490
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1491
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
1513
|
-
updated: z.string().default("
|
|
1512
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1513
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
1623
|
-
updated: z.string().default("
|
|
1622
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1623
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
1642
|
-
updated: z.string().default("
|
|
1641
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1642
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
1751
|
-
updated: z.string().default("
|
|
1750
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1751
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
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("
|
|
1771
|
-
updated: z.string().default("
|
|
1770
|
+
created: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1771
|
+
updated: z.string().default("2026-01-01T12:11:33.601Z"),
|
|
1772
1772
|
guardrailConfig: z.union([
|
|
1773
1773
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
1774
1774
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
@@ -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("
|
|
159
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-01T12:11:30.915Z").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("
|
|
179
|
+
updated: z.date().default(() => new Date("2026-01-01T12:11:30.915Z"))
|
|
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("
|
|
711
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-01T12:11:44.008Z").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("
|
|
729
|
+
reviewedAt: z.date().default(() => new Date("2026-01-01T12:11:44.008Z"))
|
|
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("
|
|
763
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-01T12:11:44.007Z").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("
|
|
782
|
+
reviewedAt: z.date().default(() => new Date("2026-01-01T12:11:44.007Z"))
|
|
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("
|
|
816
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-01T12:11:44.006Z").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("
|
|
834
|
+
reviewedAt: z.date().default(() => new Date("2026-01-01T12:11:44.006Z"))
|
|
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("
|
|
894
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-01T12:11:30.915Z").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("
|
|
929
|
+
updated: z.date().default(() => new Date("2026-01-01T12:11:30.915Z"))
|
|
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("
|
|
123
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-01T12:11:30.915Z").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("
|
|
144
|
+
updated: z.date().default(() => new Date("2026-01-01T12:11:30.915Z"))
|
|
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("01KDWQH4XB4NA9GF1KV09E5J88"),
|
|
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("01KDWQH4XB4NA9GF1KV09E5J88"),
|
|
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("
|
|
72
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-01T12:11:30.915Z").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("
|
|
91
|
+
updated: z.date().default(() => new Date("2026-01-01T12:11:30.915Z"))
|
|
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_01kdwqh4ezn99bj6wzwz9sq0t3"),
|
|
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_01kdwqh4ezn99bj6wzwz9sq0t3"),
|
|
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("
|
|
695
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-01T12:11:44.021Z").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("
|
|
714
|
+
reviewedAt: z.date().default(() => new Date("2026-01-01T12:11:44.021Z"))
|
|
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("
|
|
749
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-01T12:11:44.021Z").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("
|
|
767
|
+
reviewedAt: z.date().default(() => new Date("2026-01-01T12:11:44.021Z"))
|
|
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("
|
|
801
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-01T12:11:44.020Z").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("
|
|
819
|
+
reviewedAt: z.date().default(() => new Date("2026-01-01T12:11:44.020Z"))
|
|
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("
|
|
879
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-01T12:11:30.915Z").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("
|
|
914
|
+
updated: z.date().default(() => new Date("2026-01-01T12:11:30.915Z"))
|
|
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("
|
|
108
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-01T12:11:30.915Z").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("
|
|
129
|
+
updated: z.date().default(() => new Date("2026-01-01T12:11:30.915Z"))
|
|
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("01KDWQH4XE6W8C2QBYXFB43FFV"),
|
|
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("01KDWQH4XE6W8C2QBYXFB43FFV"),
|
|
111
111
|
displayName: z.string(),
|
|
112
112
|
description: z.string().optional(),
|
|
113
113
|
status: exports.RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -254,7 +254,7 @@ function retrieveToolResponseBodyCodeToolFromJSON(jsonString) {
|
|
|
254
254
|
}
|
|
255
255
|
/** @internal */
|
|
256
256
|
exports.RetrieveToolResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
257
|
-
_id: z.string().default("
|
|
257
|
+
_id: z.string().default("tool_01KDWQH4SBX7J92V62E03MJQFK"),
|
|
258
258
|
path: z.string(),
|
|
259
259
|
key: z.string(),
|
|
260
260
|
display_name: z.string().optional(),
|
|
@@ -284,7 +284,7 @@ exports.RetrieveToolResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
|
284
284
|
});
|
|
285
285
|
/** @internal */
|
|
286
286
|
exports.RetrieveToolResponseBodyCodeExecutionTool$outboundSchema = z.object({
|
|
287
|
-
id: z.string().default("
|
|
287
|
+
id: z.string().default("tool_01KDWQH4SBX7J92V62E03MJQFK"),
|
|
288
288
|
path: z.string(),
|
|
289
289
|
key: z.string(),
|
|
290
290
|
displayName: z.string().optional(),
|
|
@@ -363,14 +363,14 @@ function retrieveToolResponseBodyToolsSchemaFromJSON(jsonString) {
|
|
|
363
363
|
}
|
|
364
364
|
/** @internal */
|
|
365
365
|
exports.RetrieveToolResponseBodyTools$inboundSchema = z.object({
|
|
366
|
-
id: z.string().default("
|
|
366
|
+
id: z.string().default("01KDWQH4SATDKX2R40SX0MVW38"),
|
|
367
367
|
name: z.string(),
|
|
368
368
|
description: z.string().optional(),
|
|
369
369
|
schema: z.lazy(() => exports.RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
370
370
|
});
|
|
371
371
|
/** @internal */
|
|
372
372
|
exports.RetrieveToolResponseBodyTools$outboundSchema = z.object({
|
|
373
|
-
id: z.string().default("
|
|
373
|
+
id: z.string().default("01KDWQH4SATDKX2R40SX0MVW38"),
|
|
374
374
|
name: z.string(),
|
|
375
375
|
description: z.string().optional(),
|
|
376
376
|
schema: z.lazy(() => exports.RetrieveToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -418,7 +418,7 @@ function retrieveToolResponseBodyMcpFromJSON(jsonString) {
|
|
|
418
418
|
}
|
|
419
419
|
/** @internal */
|
|
420
420
|
exports.RetrieveToolResponseBodyMCPTool$inboundSchema = z.object({
|
|
421
|
-
_id: z.string().default("
|
|
421
|
+
_id: z.string().default("tool_01KDWQH4S9KDTH087AXPE1EYRD"),
|
|
422
422
|
path: z.string(),
|
|
423
423
|
key: z.string(),
|
|
424
424
|
display_name: z.string().optional(),
|
|
@@ -446,7 +446,7 @@ exports.RetrieveToolResponseBodyMCPTool$inboundSchema = z.object({
|
|
|
446
446
|
});
|
|
447
447
|
/** @internal */
|
|
448
448
|
exports.RetrieveToolResponseBodyMCPTool$outboundSchema = z.object({
|
|
449
|
-
id: z.string().default("
|
|
449
|
+
id: z.string().default("tool_01KDWQH4S9KDTH087AXPE1EYRD"),
|
|
450
450
|
path: z.string(),
|
|
451
451
|
key: z.string(),
|
|
452
452
|
displayName: z.string().optional(),
|
|
@@ -595,7 +595,7 @@ function retrieveToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
595
595
|
}
|
|
596
596
|
/** @internal */
|
|
597
597
|
exports.RetrieveToolResponseBodyHTTPTool$inboundSchema = z.object({
|
|
598
|
-
_id: z.string().default("
|
|
598
|
+
_id: z.string().default("tool_01KDWQH4S8Y55Q47DZSX27BD6H"),
|
|
599
599
|
path: z.string(),
|
|
600
600
|
key: z.string(),
|
|
601
601
|
display_name: z.string().optional(),
|
|
@@ -623,7 +623,7 @@ exports.RetrieveToolResponseBodyHTTPTool$inboundSchema = z.object({
|
|
|
623
623
|
});
|
|
624
624
|
/** @internal */
|
|
625
625
|
exports.RetrieveToolResponseBodyHTTPTool$outboundSchema = z.object({
|
|
626
|
-
id: z.string().default("
|
|
626
|
+
id: z.string().default("tool_01KDWQH4S8Y55Q47DZSX27BD6H"),
|
|
627
627
|
path: z.string(),
|
|
628
628
|
key: z.string(),
|
|
629
629
|
displayName: z.string().optional(),
|
|
@@ -707,7 +707,7 @@ function retrieveToolResponseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
707
707
|
}
|
|
708
708
|
/** @internal */
|
|
709
709
|
exports.RetrieveToolResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
710
|
-
_id: z.string().default("
|
|
710
|
+
_id: z.string().default("tool_01KDWQH4S6GYKFKA8A5A4DBEJG"),
|
|
711
711
|
path: z.string(),
|
|
712
712
|
key: z.string(),
|
|
713
713
|
display_name: z.string().optional(),
|
|
@@ -736,7 +736,7 @@ exports.RetrieveToolResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
|
736
736
|
});
|
|
737
737
|
/** @internal */
|
|
738
738
|
exports.RetrieveToolResponseBodyJSONSchemaTool$outboundSchema = z.object({
|
|
739
|
-
id: z.string().default("
|
|
739
|
+
id: z.string().default("tool_01KDWQH4S6GYKFKA8A5A4DBEJG"),
|
|
740
740
|
path: z.string(),
|
|
741
741
|
key: z.string(),
|
|
742
742
|
displayName: z.string().optional(),
|
|
@@ -827,7 +827,7 @@ function retrieveToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
827
827
|
}
|
|
828
828
|
/** @internal */
|
|
829
829
|
exports.RetrieveToolResponseBodyFunctionTool$inboundSchema = z.object({
|
|
830
|
-
_id: z.string().default("
|
|
830
|
+
_id: z.string().default("tool_01KDWQH4S54Y4QZRCRM22P0MZ6"),
|
|
831
831
|
path: z.string(),
|
|
832
832
|
key: z.string(),
|
|
833
833
|
display_name: z.string().optional(),
|
|
@@ -855,7 +855,7 @@ exports.RetrieveToolResponseBodyFunctionTool$inboundSchema = z.object({
|
|
|
855
855
|
});
|
|
856
856
|
/** @internal */
|
|
857
857
|
exports.RetrieveToolResponseBodyFunctionTool$outboundSchema = z.object({
|
|
858
|
-
id: z.string().default("
|
|
858
|
+
id: z.string().default("tool_01KDWQH4S54Y4QZRCRM22P0MZ6"),
|
|
859
859
|
path: z.string(),
|
|
860
860
|
key: z.string(),
|
|
861
861
|
displayName: z.string().optional(),
|