@nestr/mcp 0.1.100 → 0.1.103
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/build/api/client.d.ts +198 -15
- package/build/api/client.d.ts.map +1 -1
- package/build/api/client.js +126 -1
- package/build/api/client.js.map +1 -1
- package/build/help/topics.d.ts.map +1 -1
- package/build/help/topics.js +72 -4
- package/build/help/topics.js.map +1 -1
- package/build/server.d.ts.map +1 -1
- package/build/server.js +2 -1
- package/build/server.js.map +1 -1
- package/build/skills/doing-work.d.ts.map +1 -1
- package/build/skills/doing-work.js +25 -0
- package/build/skills/doing-work.js.map +1 -1
- package/build/skills/tension-processing.d.ts.map +1 -1
- package/build/skills/tension-processing.js +2 -0
- package/build/skills/tension-processing.js.map +1 -1
- package/build/tools/index.d.ts +1930 -136
- package/build/tools/index.d.ts.map +1 -1
- package/build/tools/index.js +443 -32
- package/build/tools/index.js.map +1 -1
- package/package.json +1 -1
package/build/tools/index.d.ts
CHANGED
|
@@ -303,6 +303,7 @@ export declare const schemas: {
|
|
|
303
303
|
labels: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
|
|
304
304
|
fields: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
305
305
|
users: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
|
|
306
|
+
due: z.ZodOptional<z.ZodString>;
|
|
306
307
|
accountabilities: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
|
|
307
308
|
domains: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
|
|
308
309
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
@@ -314,6 +315,7 @@ export declare const schemas: {
|
|
|
314
315
|
purpose?: string | undefined;
|
|
315
316
|
labels?: string[] | undefined;
|
|
316
317
|
fields?: Record<string, unknown> | undefined;
|
|
318
|
+
due?: string | undefined;
|
|
317
319
|
users?: string[] | undefined;
|
|
318
320
|
accountabilities?: string[] | undefined;
|
|
319
321
|
domains?: string[] | undefined;
|
|
@@ -325,6 +327,7 @@ export declare const schemas: {
|
|
|
325
327
|
purpose?: string | undefined;
|
|
326
328
|
labels?: unknown;
|
|
327
329
|
fields?: unknown;
|
|
330
|
+
due?: string | undefined;
|
|
328
331
|
users?: unknown;
|
|
329
332
|
accountabilities?: unknown;
|
|
330
333
|
domains?: unknown;
|
|
@@ -508,6 +511,7 @@ export declare const schemas: {
|
|
|
508
511
|
listUsers: z.ZodObject<{
|
|
509
512
|
workspaceId: z.ZodString;
|
|
510
513
|
search: z.ZodOptional<z.ZodString>;
|
|
514
|
+
agents: z.ZodOptional<z.ZodEnum<["only", "exclude"]>>;
|
|
511
515
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
512
516
|
page: z.ZodOptional<z.ZodNumber>;
|
|
513
517
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -515,11 +519,13 @@ export declare const schemas: {
|
|
|
515
519
|
search?: string | undefined;
|
|
516
520
|
limit?: number | undefined;
|
|
517
521
|
page?: number | undefined;
|
|
522
|
+
agents?: "only" | "exclude" | undefined;
|
|
518
523
|
}, {
|
|
519
524
|
workspaceId: string;
|
|
520
525
|
search?: string | undefined;
|
|
521
526
|
limit?: number | undefined;
|
|
522
527
|
page?: number | undefined;
|
|
528
|
+
agents?: "only" | "exclude" | undefined;
|
|
523
529
|
}>;
|
|
524
530
|
listLabels: z.ZodObject<{
|
|
525
531
|
workspaceId: z.ZodString;
|
|
@@ -1309,47 +1315,183 @@ export declare const schemas: {
|
|
|
1309
1315
|
}, {
|
|
1310
1316
|
workspaceId: string;
|
|
1311
1317
|
}>;
|
|
1318
|
+
listConnectorTemplates: z.ZodObject<{
|
|
1319
|
+
workspaceId: z.ZodString;
|
|
1320
|
+
}, "strip", z.ZodTypeAny, {
|
|
1321
|
+
workspaceId: string;
|
|
1322
|
+
}, {
|
|
1323
|
+
workspaceId: string;
|
|
1324
|
+
}>;
|
|
1312
1325
|
registerConnector: z.ZodObject<{
|
|
1326
|
+
templateId: z.ZodOptional<z.ZodString>;
|
|
1313
1327
|
workspaceId: z.ZodString;
|
|
1314
|
-
type: z.ZodEnum<["mcp", "cli", "api"]
|
|
1315
|
-
name: z.ZodString
|
|
1328
|
+
type: z.ZodOptional<z.ZodEnum<["mcp", "cli", "api"]>>;
|
|
1329
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1316
1330
|
config: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1317
1331
|
capabilities: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1318
1332
|
exposure: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1319
1333
|
authStrategy: z.ZodOptional<z.ZodEnum<["secret", "oauth2"]>>;
|
|
1320
1334
|
}, "strip", z.ZodTypeAny, {
|
|
1321
1335
|
workspaceId: string;
|
|
1322
|
-
type
|
|
1323
|
-
|
|
1336
|
+
type?: "mcp" | "cli" | "api" | undefined;
|
|
1337
|
+
templateId?: string | undefined;
|
|
1338
|
+
name?: string | undefined;
|
|
1324
1339
|
config?: Record<string, unknown> | undefined;
|
|
1325
1340
|
capabilities?: Record<string, unknown> | undefined;
|
|
1326
1341
|
exposure?: Record<string, unknown> | undefined;
|
|
1327
1342
|
authStrategy?: "secret" | "oauth2" | undefined;
|
|
1328
1343
|
}, {
|
|
1329
1344
|
workspaceId: string;
|
|
1330
|
-
type
|
|
1331
|
-
|
|
1345
|
+
type?: "mcp" | "cli" | "api" | undefined;
|
|
1346
|
+
templateId?: string | undefined;
|
|
1347
|
+
name?: string | undefined;
|
|
1332
1348
|
config?: unknown;
|
|
1333
1349
|
capabilities?: unknown;
|
|
1334
1350
|
exposure?: unknown;
|
|
1335
1351
|
authStrategy?: "secret" | "oauth2" | undefined;
|
|
1336
1352
|
}>;
|
|
1353
|
+
createAgent: z.ZodObject<{
|
|
1354
|
+
workspaceId: z.ZodString;
|
|
1355
|
+
name: z.ZodString;
|
|
1356
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1357
|
+
roleAssignable: z.ZodOptional<z.ZodBoolean>;
|
|
1358
|
+
agentConfig: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1359
|
+
}, "strip", z.ZodTypeAny, {
|
|
1360
|
+
workspaceId: string;
|
|
1361
|
+
name: string;
|
|
1362
|
+
description?: string | undefined;
|
|
1363
|
+
roleAssignable?: boolean | undefined;
|
|
1364
|
+
agentConfig?: Record<string, unknown> | undefined;
|
|
1365
|
+
}, {
|
|
1366
|
+
workspaceId: string;
|
|
1367
|
+
name: string;
|
|
1368
|
+
description?: string | undefined;
|
|
1369
|
+
roleAssignable?: boolean | undefined;
|
|
1370
|
+
agentConfig?: unknown;
|
|
1371
|
+
}>;
|
|
1337
1372
|
bindConnector: z.ZodObject<{
|
|
1338
1373
|
workspaceId: z.ZodString;
|
|
1339
1374
|
connectorId: z.ZodString;
|
|
1340
|
-
ownerType: z.ZodEnum<["
|
|
1375
|
+
ownerType: z.ZodEnum<["role", "role-domain", "workspace", "user", "agent"]>;
|
|
1341
1376
|
ownerId: z.ZodString;
|
|
1342
1377
|
}, "strip", z.ZodTypeAny, {
|
|
1343
1378
|
workspaceId: string;
|
|
1344
1379
|
connectorId: string;
|
|
1345
|
-
ownerType: "user" | "agent" | "workspace" | "role-domain";
|
|
1380
|
+
ownerType: "user" | "agent" | "workspace" | "role-domain" | "role";
|
|
1346
1381
|
ownerId: string;
|
|
1347
1382
|
}, {
|
|
1348
1383
|
workspaceId: string;
|
|
1349
1384
|
connectorId: string;
|
|
1350
|
-
ownerType: "user" | "agent" | "workspace" | "role-domain";
|
|
1385
|
+
ownerType: "user" | "agent" | "workspace" | "role-domain" | "role";
|
|
1351
1386
|
ownerId: string;
|
|
1352
1387
|
}>;
|
|
1388
|
+
updateConnector: z.ZodObject<{
|
|
1389
|
+
workspaceId: z.ZodString;
|
|
1390
|
+
connectorId: z.ZodString;
|
|
1391
|
+
type: z.ZodOptional<z.ZodEnum<["mcp", "cli", "api"]>>;
|
|
1392
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1393
|
+
config: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1394
|
+
capabilities: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1395
|
+
exposure: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1396
|
+
authStrategy: z.ZodOptional<z.ZodEnum<["secret", "oauth2"]>>;
|
|
1397
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1398
|
+
}, "strip", z.ZodTypeAny, {
|
|
1399
|
+
workspaceId: string;
|
|
1400
|
+
connectorId: string;
|
|
1401
|
+
type?: "mcp" | "cli" | "api" | undefined;
|
|
1402
|
+
enabled?: boolean | undefined;
|
|
1403
|
+
name?: string | undefined;
|
|
1404
|
+
config?: Record<string, unknown> | undefined;
|
|
1405
|
+
capabilities?: Record<string, unknown> | undefined;
|
|
1406
|
+
exposure?: Record<string, unknown> | undefined;
|
|
1407
|
+
authStrategy?: "secret" | "oauth2" | undefined;
|
|
1408
|
+
}, {
|
|
1409
|
+
workspaceId: string;
|
|
1410
|
+
connectorId: string;
|
|
1411
|
+
type?: "mcp" | "cli" | "api" | undefined;
|
|
1412
|
+
enabled?: boolean | undefined;
|
|
1413
|
+
name?: string | undefined;
|
|
1414
|
+
config?: unknown;
|
|
1415
|
+
capabilities?: unknown;
|
|
1416
|
+
exposure?: unknown;
|
|
1417
|
+
authStrategy?: "secret" | "oauth2" | undefined;
|
|
1418
|
+
}>;
|
|
1419
|
+
removeConnector: z.ZodObject<{
|
|
1420
|
+
workspaceId: z.ZodString;
|
|
1421
|
+
connectorId: z.ZodString;
|
|
1422
|
+
}, "strip", z.ZodTypeAny, {
|
|
1423
|
+
workspaceId: string;
|
|
1424
|
+
connectorId: string;
|
|
1425
|
+
}, {
|
|
1426
|
+
workspaceId: string;
|
|
1427
|
+
connectorId: string;
|
|
1428
|
+
}>;
|
|
1429
|
+
listConnections: z.ZodObject<{
|
|
1430
|
+
workspaceId: z.ZodString;
|
|
1431
|
+
includeDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
1432
|
+
}, "strip", z.ZodTypeAny, {
|
|
1433
|
+
workspaceId: string;
|
|
1434
|
+
includeDisabled?: boolean | undefined;
|
|
1435
|
+
}, {
|
|
1436
|
+
workspaceId: string;
|
|
1437
|
+
includeDisabled?: boolean | undefined;
|
|
1438
|
+
}>;
|
|
1439
|
+
removeConnection: z.ZodObject<{
|
|
1440
|
+
workspaceId: z.ZodString;
|
|
1441
|
+
connectionId: z.ZodString;
|
|
1442
|
+
}, "strip", z.ZodTypeAny, {
|
|
1443
|
+
workspaceId: string;
|
|
1444
|
+
connectionId: string;
|
|
1445
|
+
}, {
|
|
1446
|
+
workspaceId: string;
|
|
1447
|
+
connectionId: string;
|
|
1448
|
+
}>;
|
|
1449
|
+
getConnectLink: z.ZodObject<{
|
|
1450
|
+
workspaceId: z.ZodString;
|
|
1451
|
+
connectionId: z.ZodString;
|
|
1452
|
+
}, "strip", z.ZodTypeAny, {
|
|
1453
|
+
workspaceId: string;
|
|
1454
|
+
connectionId: string;
|
|
1455
|
+
}, {
|
|
1456
|
+
workspaceId: string;
|
|
1457
|
+
connectionId: string;
|
|
1458
|
+
}>;
|
|
1459
|
+
revokeConnectionCredential: z.ZodObject<{
|
|
1460
|
+
workspaceId: z.ZodString;
|
|
1461
|
+
connectionId: z.ZodString;
|
|
1462
|
+
}, "strip", z.ZodTypeAny, {
|
|
1463
|
+
workspaceId: string;
|
|
1464
|
+
connectionId: string;
|
|
1465
|
+
}, {
|
|
1466
|
+
workspaceId: string;
|
|
1467
|
+
connectionId: string;
|
|
1468
|
+
}>;
|
|
1469
|
+
getAgentConnectorReach: z.ZodObject<{
|
|
1470
|
+
workspaceId: z.ZodString;
|
|
1471
|
+
agentUserId: z.ZodString;
|
|
1472
|
+
}, "strip", z.ZodTypeAny, {
|
|
1473
|
+
workspaceId: string;
|
|
1474
|
+
agentUserId: string;
|
|
1475
|
+
}, {
|
|
1476
|
+
workspaceId: string;
|
|
1477
|
+
agentUserId: string;
|
|
1478
|
+
}>;
|
|
1479
|
+
runAgent: z.ZodObject<{
|
|
1480
|
+
workspaceId: z.ZodString;
|
|
1481
|
+
agentUserId: z.ZodString;
|
|
1482
|
+
nestId: z.ZodString;
|
|
1483
|
+
message: z.ZodOptional<z.ZodString>;
|
|
1484
|
+
}, "strip", z.ZodTypeAny, {
|
|
1485
|
+
workspaceId: string;
|
|
1486
|
+
nestId: string;
|
|
1487
|
+
agentUserId: string;
|
|
1488
|
+
message?: string | undefined;
|
|
1489
|
+
}, {
|
|
1490
|
+
workspaceId: string;
|
|
1491
|
+
nestId: string;
|
|
1492
|
+
agentUserId: string;
|
|
1493
|
+
message?: string | undefined;
|
|
1494
|
+
}>;
|
|
1353
1495
|
getNestFiles: z.ZodObject<{
|
|
1354
1496
|
nestId: z.ZodString;
|
|
1355
1497
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1470,10 +1612,10 @@ export declare const toolDefinitions: ({
|
|
|
1470
1612
|
labels?: undefined;
|
|
1471
1613
|
fields?: undefined;
|
|
1472
1614
|
users?: undefined;
|
|
1615
|
+
due?: undefined;
|
|
1473
1616
|
accountabilities?: undefined;
|
|
1474
1617
|
domains?: undefined;
|
|
1475
1618
|
data?: undefined;
|
|
1476
|
-
due?: undefined;
|
|
1477
1619
|
completed?: undefined;
|
|
1478
1620
|
body?: undefined;
|
|
1479
1621
|
commentId?: undefined;
|
|
@@ -1491,6 +1633,7 @@ export declare const toolDefinitions: ({
|
|
|
1491
1633
|
includeSubCircles?: undefined;
|
|
1492
1634
|
endDate?: undefined;
|
|
1493
1635
|
metricId?: undefined;
|
|
1636
|
+
agents?: undefined;
|
|
1494
1637
|
username?: undefined;
|
|
1495
1638
|
fullName?: undefined;
|
|
1496
1639
|
language?: undefined;
|
|
@@ -1520,14 +1663,22 @@ export declare const toolDefinitions: ({
|
|
|
1520
1663
|
relation?: undefined;
|
|
1521
1664
|
direction?: undefined;
|
|
1522
1665
|
targetId?: undefined;
|
|
1666
|
+
templateId?: undefined;
|
|
1523
1667
|
name?: undefined;
|
|
1524
1668
|
config?: undefined;
|
|
1525
1669
|
capabilities?: undefined;
|
|
1526
1670
|
exposure?: undefined;
|
|
1527
1671
|
authStrategy?: undefined;
|
|
1672
|
+
roleAssignable?: undefined;
|
|
1673
|
+
agentConfig?: undefined;
|
|
1528
1674
|
connectorId?: undefined;
|
|
1529
1675
|
ownerType?: undefined;
|
|
1530
1676
|
ownerId?: undefined;
|
|
1677
|
+
enabled?: undefined;
|
|
1678
|
+
includeDisabled?: undefined;
|
|
1679
|
+
connectionId?: undefined;
|
|
1680
|
+
agentUserId?: undefined;
|
|
1681
|
+
message?: undefined;
|
|
1531
1682
|
fileId?: undefined;
|
|
1532
1683
|
contentType?: undefined;
|
|
1533
1684
|
content?: undefined;
|
|
@@ -1576,10 +1727,10 @@ export declare const toolDefinitions: ({
|
|
|
1576
1727
|
labels?: undefined;
|
|
1577
1728
|
fields?: undefined;
|
|
1578
1729
|
users?: undefined;
|
|
1730
|
+
due?: undefined;
|
|
1579
1731
|
accountabilities?: undefined;
|
|
1580
1732
|
domains?: undefined;
|
|
1581
1733
|
data?: undefined;
|
|
1582
|
-
due?: undefined;
|
|
1583
1734
|
completed?: undefined;
|
|
1584
1735
|
body?: undefined;
|
|
1585
1736
|
commentId?: undefined;
|
|
@@ -1597,6 +1748,7 @@ export declare const toolDefinitions: ({
|
|
|
1597
1748
|
includeSubCircles?: undefined;
|
|
1598
1749
|
endDate?: undefined;
|
|
1599
1750
|
metricId?: undefined;
|
|
1751
|
+
agents?: undefined;
|
|
1600
1752
|
username?: undefined;
|
|
1601
1753
|
fullName?: undefined;
|
|
1602
1754
|
language?: undefined;
|
|
@@ -1626,14 +1778,22 @@ export declare const toolDefinitions: ({
|
|
|
1626
1778
|
relation?: undefined;
|
|
1627
1779
|
direction?: undefined;
|
|
1628
1780
|
targetId?: undefined;
|
|
1781
|
+
templateId?: undefined;
|
|
1629
1782
|
name?: undefined;
|
|
1630
1783
|
config?: undefined;
|
|
1631
1784
|
capabilities?: undefined;
|
|
1632
1785
|
exposure?: undefined;
|
|
1633
1786
|
authStrategy?: undefined;
|
|
1787
|
+
roleAssignable?: undefined;
|
|
1788
|
+
agentConfig?: undefined;
|
|
1634
1789
|
connectorId?: undefined;
|
|
1635
1790
|
ownerType?: undefined;
|
|
1636
1791
|
ownerId?: undefined;
|
|
1792
|
+
enabled?: undefined;
|
|
1793
|
+
includeDisabled?: undefined;
|
|
1794
|
+
connectionId?: undefined;
|
|
1795
|
+
agentUserId?: undefined;
|
|
1796
|
+
message?: undefined;
|
|
1637
1797
|
fileId?: undefined;
|
|
1638
1798
|
contentType?: undefined;
|
|
1639
1799
|
content?: undefined;
|
|
@@ -1697,10 +1857,10 @@ export declare const toolDefinitions: ({
|
|
|
1697
1857
|
labels?: undefined;
|
|
1698
1858
|
fields?: undefined;
|
|
1699
1859
|
users?: undefined;
|
|
1860
|
+
due?: undefined;
|
|
1700
1861
|
accountabilities?: undefined;
|
|
1701
1862
|
domains?: undefined;
|
|
1702
1863
|
data?: undefined;
|
|
1703
|
-
due?: undefined;
|
|
1704
1864
|
completed?: undefined;
|
|
1705
1865
|
body?: undefined;
|
|
1706
1866
|
commentId?: undefined;
|
|
@@ -1718,6 +1878,7 @@ export declare const toolDefinitions: ({
|
|
|
1718
1878
|
includeSubCircles?: undefined;
|
|
1719
1879
|
endDate?: undefined;
|
|
1720
1880
|
metricId?: undefined;
|
|
1881
|
+
agents?: undefined;
|
|
1721
1882
|
username?: undefined;
|
|
1722
1883
|
fullName?: undefined;
|
|
1723
1884
|
language?: undefined;
|
|
@@ -1747,14 +1908,22 @@ export declare const toolDefinitions: ({
|
|
|
1747
1908
|
relation?: undefined;
|
|
1748
1909
|
direction?: undefined;
|
|
1749
1910
|
targetId?: undefined;
|
|
1911
|
+
templateId?: undefined;
|
|
1750
1912
|
name?: undefined;
|
|
1751
1913
|
config?: undefined;
|
|
1752
1914
|
capabilities?: undefined;
|
|
1753
1915
|
exposure?: undefined;
|
|
1754
1916
|
authStrategy?: undefined;
|
|
1917
|
+
roleAssignable?: undefined;
|
|
1918
|
+
agentConfig?: undefined;
|
|
1755
1919
|
connectorId?: undefined;
|
|
1756
1920
|
ownerType?: undefined;
|
|
1757
1921
|
ownerId?: undefined;
|
|
1922
|
+
enabled?: undefined;
|
|
1923
|
+
includeDisabled?: undefined;
|
|
1924
|
+
connectionId?: undefined;
|
|
1925
|
+
agentUserId?: undefined;
|
|
1926
|
+
message?: undefined;
|
|
1758
1927
|
fileId?: undefined;
|
|
1759
1928
|
contentType?: undefined;
|
|
1760
1929
|
content?: undefined;
|
|
@@ -1809,10 +1978,10 @@ export declare const toolDefinitions: ({
|
|
|
1809
1978
|
labels?: undefined;
|
|
1810
1979
|
fields?: undefined;
|
|
1811
1980
|
users?: undefined;
|
|
1981
|
+
due?: undefined;
|
|
1812
1982
|
accountabilities?: undefined;
|
|
1813
1983
|
domains?: undefined;
|
|
1814
1984
|
data?: undefined;
|
|
1815
|
-
due?: undefined;
|
|
1816
1985
|
completed?: undefined;
|
|
1817
1986
|
body?: undefined;
|
|
1818
1987
|
commentId?: undefined;
|
|
@@ -1830,6 +1999,7 @@ export declare const toolDefinitions: ({
|
|
|
1830
1999
|
includeSubCircles?: undefined;
|
|
1831
2000
|
endDate?: undefined;
|
|
1832
2001
|
metricId?: undefined;
|
|
2002
|
+
agents?: undefined;
|
|
1833
2003
|
username?: undefined;
|
|
1834
2004
|
fullName?: undefined;
|
|
1835
2005
|
language?: undefined;
|
|
@@ -1859,14 +2029,22 @@ export declare const toolDefinitions: ({
|
|
|
1859
2029
|
relation?: undefined;
|
|
1860
2030
|
direction?: undefined;
|
|
1861
2031
|
targetId?: undefined;
|
|
2032
|
+
templateId?: undefined;
|
|
1862
2033
|
name?: undefined;
|
|
1863
2034
|
config?: undefined;
|
|
1864
2035
|
capabilities?: undefined;
|
|
1865
2036
|
exposure?: undefined;
|
|
1866
2037
|
authStrategy?: undefined;
|
|
2038
|
+
roleAssignable?: undefined;
|
|
2039
|
+
agentConfig?: undefined;
|
|
1867
2040
|
connectorId?: undefined;
|
|
1868
2041
|
ownerType?: undefined;
|
|
1869
2042
|
ownerId?: undefined;
|
|
2043
|
+
enabled?: undefined;
|
|
2044
|
+
includeDisabled?: undefined;
|
|
2045
|
+
connectionId?: undefined;
|
|
2046
|
+
agentUserId?: undefined;
|
|
2047
|
+
message?: undefined;
|
|
1870
2048
|
fileId?: undefined;
|
|
1871
2049
|
contentType?: undefined;
|
|
1872
2050
|
content?: undefined;
|
|
@@ -1944,10 +2122,10 @@ export declare const toolDefinitions: ({
|
|
|
1944
2122
|
labels?: undefined;
|
|
1945
2123
|
fields?: undefined;
|
|
1946
2124
|
users?: undefined;
|
|
2125
|
+
due?: undefined;
|
|
1947
2126
|
accountabilities?: undefined;
|
|
1948
2127
|
domains?: undefined;
|
|
1949
2128
|
data?: undefined;
|
|
1950
|
-
due?: undefined;
|
|
1951
2129
|
completed?: undefined;
|
|
1952
2130
|
body?: undefined;
|
|
1953
2131
|
commentId?: undefined;
|
|
@@ -1965,6 +2143,7 @@ export declare const toolDefinitions: ({
|
|
|
1965
2143
|
includeSubCircles?: undefined;
|
|
1966
2144
|
endDate?: undefined;
|
|
1967
2145
|
metricId?: undefined;
|
|
2146
|
+
agents?: undefined;
|
|
1968
2147
|
username?: undefined;
|
|
1969
2148
|
fullName?: undefined;
|
|
1970
2149
|
language?: undefined;
|
|
@@ -1994,14 +2173,22 @@ export declare const toolDefinitions: ({
|
|
|
1994
2173
|
relation?: undefined;
|
|
1995
2174
|
direction?: undefined;
|
|
1996
2175
|
targetId?: undefined;
|
|
2176
|
+
templateId?: undefined;
|
|
1997
2177
|
name?: undefined;
|
|
1998
2178
|
config?: undefined;
|
|
1999
2179
|
capabilities?: undefined;
|
|
2000
2180
|
exposure?: undefined;
|
|
2001
2181
|
authStrategy?: undefined;
|
|
2182
|
+
roleAssignable?: undefined;
|
|
2183
|
+
agentConfig?: undefined;
|
|
2002
2184
|
connectorId?: undefined;
|
|
2003
2185
|
ownerType?: undefined;
|
|
2004
2186
|
ownerId?: undefined;
|
|
2187
|
+
enabled?: undefined;
|
|
2188
|
+
includeDisabled?: undefined;
|
|
2189
|
+
connectionId?: undefined;
|
|
2190
|
+
agentUserId?: undefined;
|
|
2191
|
+
message?: undefined;
|
|
2005
2192
|
fileId?: undefined;
|
|
2006
2193
|
contentType?: undefined;
|
|
2007
2194
|
content?: undefined;
|
|
@@ -2071,10 +2258,10 @@ export declare const toolDefinitions: ({
|
|
|
2071
2258
|
labels?: undefined;
|
|
2072
2259
|
fields?: undefined;
|
|
2073
2260
|
users?: undefined;
|
|
2261
|
+
due?: undefined;
|
|
2074
2262
|
accountabilities?: undefined;
|
|
2075
2263
|
domains?: undefined;
|
|
2076
2264
|
data?: undefined;
|
|
2077
|
-
due?: undefined;
|
|
2078
2265
|
completed?: undefined;
|
|
2079
2266
|
body?: undefined;
|
|
2080
2267
|
commentId?: undefined;
|
|
@@ -2092,6 +2279,7 @@ export declare const toolDefinitions: ({
|
|
|
2092
2279
|
includeSubCircles?: undefined;
|
|
2093
2280
|
endDate?: undefined;
|
|
2094
2281
|
metricId?: undefined;
|
|
2282
|
+
agents?: undefined;
|
|
2095
2283
|
username?: undefined;
|
|
2096
2284
|
fullName?: undefined;
|
|
2097
2285
|
language?: undefined;
|
|
@@ -2121,14 +2309,22 @@ export declare const toolDefinitions: ({
|
|
|
2121
2309
|
relation?: undefined;
|
|
2122
2310
|
direction?: undefined;
|
|
2123
2311
|
targetId?: undefined;
|
|
2312
|
+
templateId?: undefined;
|
|
2124
2313
|
name?: undefined;
|
|
2125
2314
|
config?: undefined;
|
|
2126
2315
|
capabilities?: undefined;
|
|
2127
2316
|
exposure?: undefined;
|
|
2128
2317
|
authStrategy?: undefined;
|
|
2318
|
+
roleAssignable?: undefined;
|
|
2319
|
+
agentConfig?: undefined;
|
|
2129
2320
|
connectorId?: undefined;
|
|
2130
2321
|
ownerType?: undefined;
|
|
2131
2322
|
ownerId?: undefined;
|
|
2323
|
+
enabled?: undefined;
|
|
2324
|
+
includeDisabled?: undefined;
|
|
2325
|
+
connectionId?: undefined;
|
|
2326
|
+
agentUserId?: undefined;
|
|
2327
|
+
message?: undefined;
|
|
2132
2328
|
fileId?: undefined;
|
|
2133
2329
|
contentType?: undefined;
|
|
2134
2330
|
content?: undefined;
|
|
@@ -2201,10 +2397,10 @@ export declare const toolDefinitions: ({
|
|
|
2201
2397
|
labels?: undefined;
|
|
2202
2398
|
fields?: undefined;
|
|
2203
2399
|
users?: undefined;
|
|
2400
|
+
due?: undefined;
|
|
2204
2401
|
accountabilities?: undefined;
|
|
2205
2402
|
domains?: undefined;
|
|
2206
2403
|
data?: undefined;
|
|
2207
|
-
due?: undefined;
|
|
2208
2404
|
completed?: undefined;
|
|
2209
2405
|
body?: undefined;
|
|
2210
2406
|
commentId?: undefined;
|
|
@@ -2222,6 +2418,7 @@ export declare const toolDefinitions: ({
|
|
|
2222
2418
|
includeSubCircles?: undefined;
|
|
2223
2419
|
endDate?: undefined;
|
|
2224
2420
|
metricId?: undefined;
|
|
2421
|
+
agents?: undefined;
|
|
2225
2422
|
username?: undefined;
|
|
2226
2423
|
fullName?: undefined;
|
|
2227
2424
|
language?: undefined;
|
|
@@ -2251,14 +2448,22 @@ export declare const toolDefinitions: ({
|
|
|
2251
2448
|
relation?: undefined;
|
|
2252
2449
|
direction?: undefined;
|
|
2253
2450
|
targetId?: undefined;
|
|
2451
|
+
templateId?: undefined;
|
|
2254
2452
|
name?: undefined;
|
|
2255
2453
|
config?: undefined;
|
|
2256
2454
|
capabilities?: undefined;
|
|
2257
2455
|
exposure?: undefined;
|
|
2258
2456
|
authStrategy?: undefined;
|
|
2457
|
+
roleAssignable?: undefined;
|
|
2458
|
+
agentConfig?: undefined;
|
|
2259
2459
|
connectorId?: undefined;
|
|
2260
2460
|
ownerType?: undefined;
|
|
2261
2461
|
ownerId?: undefined;
|
|
2462
|
+
enabled?: undefined;
|
|
2463
|
+
includeDisabled?: undefined;
|
|
2464
|
+
connectionId?: undefined;
|
|
2465
|
+
agentUserId?: undefined;
|
|
2466
|
+
message?: undefined;
|
|
2262
2467
|
fileId?: undefined;
|
|
2263
2468
|
contentType?: undefined;
|
|
2264
2469
|
content?: undefined;
|
|
@@ -2316,10 +2521,10 @@ export declare const toolDefinitions: ({
|
|
|
2316
2521
|
labels?: undefined;
|
|
2317
2522
|
fields?: undefined;
|
|
2318
2523
|
users?: undefined;
|
|
2524
|
+
due?: undefined;
|
|
2319
2525
|
accountabilities?: undefined;
|
|
2320
2526
|
domains?: undefined;
|
|
2321
2527
|
data?: undefined;
|
|
2322
|
-
due?: undefined;
|
|
2323
2528
|
completed?: undefined;
|
|
2324
2529
|
body?: undefined;
|
|
2325
2530
|
commentId?: undefined;
|
|
@@ -2337,6 +2542,7 @@ export declare const toolDefinitions: ({
|
|
|
2337
2542
|
includeSubCircles?: undefined;
|
|
2338
2543
|
endDate?: undefined;
|
|
2339
2544
|
metricId?: undefined;
|
|
2545
|
+
agents?: undefined;
|
|
2340
2546
|
username?: undefined;
|
|
2341
2547
|
fullName?: undefined;
|
|
2342
2548
|
language?: undefined;
|
|
@@ -2366,14 +2572,22 @@ export declare const toolDefinitions: ({
|
|
|
2366
2572
|
relation?: undefined;
|
|
2367
2573
|
direction?: undefined;
|
|
2368
2574
|
targetId?: undefined;
|
|
2575
|
+
templateId?: undefined;
|
|
2369
2576
|
name?: undefined;
|
|
2370
2577
|
config?: undefined;
|
|
2371
2578
|
capabilities?: undefined;
|
|
2372
2579
|
exposure?: undefined;
|
|
2373
2580
|
authStrategy?: undefined;
|
|
2581
|
+
roleAssignable?: undefined;
|
|
2582
|
+
agentConfig?: undefined;
|
|
2374
2583
|
connectorId?: undefined;
|
|
2375
2584
|
ownerType?: undefined;
|
|
2376
2585
|
ownerId?: undefined;
|
|
2586
|
+
enabled?: undefined;
|
|
2587
|
+
includeDisabled?: undefined;
|
|
2588
|
+
connectionId?: undefined;
|
|
2589
|
+
agentUserId?: undefined;
|
|
2590
|
+
message?: undefined;
|
|
2377
2591
|
fileId?: undefined;
|
|
2378
2592
|
contentType?: undefined;
|
|
2379
2593
|
content?: undefined;
|
|
@@ -2443,10 +2657,10 @@ export declare const toolDefinitions: ({
|
|
|
2443
2657
|
labels?: undefined;
|
|
2444
2658
|
fields?: undefined;
|
|
2445
2659
|
users?: undefined;
|
|
2660
|
+
due?: undefined;
|
|
2446
2661
|
accountabilities?: undefined;
|
|
2447
2662
|
domains?: undefined;
|
|
2448
2663
|
data?: undefined;
|
|
2449
|
-
due?: undefined;
|
|
2450
2664
|
completed?: undefined;
|
|
2451
2665
|
body?: undefined;
|
|
2452
2666
|
commentId?: undefined;
|
|
@@ -2464,6 +2678,7 @@ export declare const toolDefinitions: ({
|
|
|
2464
2678
|
includeSubCircles?: undefined;
|
|
2465
2679
|
endDate?: undefined;
|
|
2466
2680
|
metricId?: undefined;
|
|
2681
|
+
agents?: undefined;
|
|
2467
2682
|
username?: undefined;
|
|
2468
2683
|
fullName?: undefined;
|
|
2469
2684
|
language?: undefined;
|
|
@@ -2493,14 +2708,22 @@ export declare const toolDefinitions: ({
|
|
|
2493
2708
|
relation?: undefined;
|
|
2494
2709
|
direction?: undefined;
|
|
2495
2710
|
targetId?: undefined;
|
|
2711
|
+
templateId?: undefined;
|
|
2496
2712
|
name?: undefined;
|
|
2497
2713
|
config?: undefined;
|
|
2498
2714
|
capabilities?: undefined;
|
|
2499
2715
|
exposure?: undefined;
|
|
2500
2716
|
authStrategy?: undefined;
|
|
2717
|
+
roleAssignable?: undefined;
|
|
2718
|
+
agentConfig?: undefined;
|
|
2501
2719
|
connectorId?: undefined;
|
|
2502
2720
|
ownerType?: undefined;
|
|
2503
2721
|
ownerId?: undefined;
|
|
2722
|
+
enabled?: undefined;
|
|
2723
|
+
includeDisabled?: undefined;
|
|
2724
|
+
connectionId?: undefined;
|
|
2725
|
+
agentUserId?: undefined;
|
|
2726
|
+
message?: undefined;
|
|
2504
2727
|
fileId?: undefined;
|
|
2505
2728
|
contentType?: undefined;
|
|
2506
2729
|
content?: undefined;
|
|
@@ -2552,6 +2775,10 @@ export declare const toolDefinitions: ({
|
|
|
2552
2775
|
};
|
|
2553
2776
|
description: string;
|
|
2554
2777
|
};
|
|
2778
|
+
due: {
|
|
2779
|
+
type: string;
|
|
2780
|
+
description: string;
|
|
2781
|
+
};
|
|
2555
2782
|
accountabilities: {
|
|
2556
2783
|
type: string;
|
|
2557
2784
|
items: {
|
|
@@ -2594,7 +2821,6 @@ export declare const toolDefinitions: ({
|
|
|
2594
2821
|
forUser?: undefined;
|
|
2595
2822
|
whoCan?: undefined;
|
|
2596
2823
|
data?: undefined;
|
|
2597
|
-
due?: undefined;
|
|
2598
2824
|
completed?: undefined;
|
|
2599
2825
|
body?: undefined;
|
|
2600
2826
|
commentId?: undefined;
|
|
@@ -2612,6 +2838,7 @@ export declare const toolDefinitions: ({
|
|
|
2612
2838
|
includeSubCircles?: undefined;
|
|
2613
2839
|
endDate?: undefined;
|
|
2614
2840
|
metricId?: undefined;
|
|
2841
|
+
agents?: undefined;
|
|
2615
2842
|
username?: undefined;
|
|
2616
2843
|
fullName?: undefined;
|
|
2617
2844
|
language?: undefined;
|
|
@@ -2641,14 +2868,22 @@ export declare const toolDefinitions: ({
|
|
|
2641
2868
|
relation?: undefined;
|
|
2642
2869
|
direction?: undefined;
|
|
2643
2870
|
targetId?: undefined;
|
|
2871
|
+
templateId?: undefined;
|
|
2644
2872
|
name?: undefined;
|
|
2645
2873
|
config?: undefined;
|
|
2646
2874
|
capabilities?: undefined;
|
|
2647
2875
|
exposure?: undefined;
|
|
2648
2876
|
authStrategy?: undefined;
|
|
2877
|
+
roleAssignable?: undefined;
|
|
2878
|
+
agentConfig?: undefined;
|
|
2649
2879
|
connectorId?: undefined;
|
|
2650
2880
|
ownerType?: undefined;
|
|
2651
2881
|
ownerId?: undefined;
|
|
2882
|
+
enabled?: undefined;
|
|
2883
|
+
includeDisabled?: undefined;
|
|
2884
|
+
connectionId?: undefined;
|
|
2885
|
+
agentUserId?: undefined;
|
|
2886
|
+
message?: undefined;
|
|
2652
2887
|
fileId?: undefined;
|
|
2653
2888
|
contentType?: undefined;
|
|
2654
2889
|
content?: undefined;
|
|
@@ -2772,6 +3007,7 @@ export declare const toolDefinitions: ({
|
|
|
2772
3007
|
includeSubCircles?: undefined;
|
|
2773
3008
|
endDate?: undefined;
|
|
2774
3009
|
metricId?: undefined;
|
|
3010
|
+
agents?: undefined;
|
|
2775
3011
|
username?: undefined;
|
|
2776
3012
|
fullName?: undefined;
|
|
2777
3013
|
language?: undefined;
|
|
@@ -2801,14 +3037,22 @@ export declare const toolDefinitions: ({
|
|
|
2801
3037
|
relation?: undefined;
|
|
2802
3038
|
direction?: undefined;
|
|
2803
3039
|
targetId?: undefined;
|
|
3040
|
+
templateId?: undefined;
|
|
2804
3041
|
name?: undefined;
|
|
2805
3042
|
config?: undefined;
|
|
2806
3043
|
capabilities?: undefined;
|
|
2807
3044
|
exposure?: undefined;
|
|
2808
3045
|
authStrategy?: undefined;
|
|
3046
|
+
roleAssignable?: undefined;
|
|
3047
|
+
agentConfig?: undefined;
|
|
2809
3048
|
connectorId?: undefined;
|
|
2810
3049
|
ownerType?: undefined;
|
|
2811
3050
|
ownerId?: undefined;
|
|
3051
|
+
enabled?: undefined;
|
|
3052
|
+
includeDisabled?: undefined;
|
|
3053
|
+
connectionId?: undefined;
|
|
3054
|
+
agentUserId?: undefined;
|
|
3055
|
+
message?: undefined;
|
|
2812
3056
|
fileId?: undefined;
|
|
2813
3057
|
contentType?: undefined;
|
|
2814
3058
|
content?: undefined;
|
|
@@ -2860,10 +3104,10 @@ export declare const toolDefinitions: ({
|
|
|
2860
3104
|
labels?: undefined;
|
|
2861
3105
|
fields?: undefined;
|
|
2862
3106
|
users?: undefined;
|
|
3107
|
+
due?: undefined;
|
|
2863
3108
|
accountabilities?: undefined;
|
|
2864
3109
|
domains?: undefined;
|
|
2865
3110
|
data?: undefined;
|
|
2866
|
-
due?: undefined;
|
|
2867
3111
|
completed?: undefined;
|
|
2868
3112
|
body?: undefined;
|
|
2869
3113
|
commentId?: undefined;
|
|
@@ -2881,6 +3125,7 @@ export declare const toolDefinitions: ({
|
|
|
2881
3125
|
includeSubCircles?: undefined;
|
|
2882
3126
|
endDate?: undefined;
|
|
2883
3127
|
metricId?: undefined;
|
|
3128
|
+
agents?: undefined;
|
|
2884
3129
|
username?: undefined;
|
|
2885
3130
|
fullName?: undefined;
|
|
2886
3131
|
language?: undefined;
|
|
@@ -2910,14 +3155,22 @@ export declare const toolDefinitions: ({
|
|
|
2910
3155
|
relation?: undefined;
|
|
2911
3156
|
direction?: undefined;
|
|
2912
3157
|
targetId?: undefined;
|
|
3158
|
+
templateId?: undefined;
|
|
2913
3159
|
name?: undefined;
|
|
2914
3160
|
config?: undefined;
|
|
2915
3161
|
capabilities?: undefined;
|
|
2916
3162
|
exposure?: undefined;
|
|
2917
3163
|
authStrategy?: undefined;
|
|
3164
|
+
roleAssignable?: undefined;
|
|
3165
|
+
agentConfig?: undefined;
|
|
2918
3166
|
connectorId?: undefined;
|
|
2919
3167
|
ownerType?: undefined;
|
|
2920
3168
|
ownerId?: undefined;
|
|
3169
|
+
enabled?: undefined;
|
|
3170
|
+
includeDisabled?: undefined;
|
|
3171
|
+
connectionId?: undefined;
|
|
3172
|
+
agentUserId?: undefined;
|
|
3173
|
+
message?: undefined;
|
|
2921
3174
|
fileId?: undefined;
|
|
2922
3175
|
contentType?: undefined;
|
|
2923
3176
|
content?: undefined;
|
|
@@ -2979,10 +3232,10 @@ export declare const toolDefinitions: ({
|
|
|
2979
3232
|
description?: undefined;
|
|
2980
3233
|
fields?: undefined;
|
|
2981
3234
|
users?: undefined;
|
|
3235
|
+
due?: undefined;
|
|
2982
3236
|
accountabilities?: undefined;
|
|
2983
3237
|
domains?: undefined;
|
|
2984
3238
|
data?: undefined;
|
|
2985
|
-
due?: undefined;
|
|
2986
3239
|
completed?: undefined;
|
|
2987
3240
|
commentId?: undefined;
|
|
2988
3241
|
circleId?: undefined;
|
|
@@ -2999,6 +3252,7 @@ export declare const toolDefinitions: ({
|
|
|
2999
3252
|
includeSubCircles?: undefined;
|
|
3000
3253
|
endDate?: undefined;
|
|
3001
3254
|
metricId?: undefined;
|
|
3255
|
+
agents?: undefined;
|
|
3002
3256
|
username?: undefined;
|
|
3003
3257
|
fullName?: undefined;
|
|
3004
3258
|
language?: undefined;
|
|
@@ -3028,14 +3282,22 @@ export declare const toolDefinitions: ({
|
|
|
3028
3282
|
relation?: undefined;
|
|
3029
3283
|
direction?: undefined;
|
|
3030
3284
|
targetId?: undefined;
|
|
3285
|
+
templateId?: undefined;
|
|
3031
3286
|
name?: undefined;
|
|
3032
3287
|
config?: undefined;
|
|
3033
3288
|
capabilities?: undefined;
|
|
3034
3289
|
exposure?: undefined;
|
|
3035
3290
|
authStrategy?: undefined;
|
|
3291
|
+
roleAssignable?: undefined;
|
|
3292
|
+
agentConfig?: undefined;
|
|
3036
3293
|
connectorId?: undefined;
|
|
3037
3294
|
ownerType?: undefined;
|
|
3038
3295
|
ownerId?: undefined;
|
|
3296
|
+
enabled?: undefined;
|
|
3297
|
+
includeDisabled?: undefined;
|
|
3298
|
+
connectionId?: undefined;
|
|
3299
|
+
agentUserId?: undefined;
|
|
3300
|
+
message?: undefined;
|
|
3039
3301
|
fileId?: undefined;
|
|
3040
3302
|
contentType?: undefined;
|
|
3041
3303
|
content?: undefined;
|
|
@@ -3098,10 +3360,10 @@ export declare const toolDefinitions: ({
|
|
|
3098
3360
|
description?: undefined;
|
|
3099
3361
|
fields?: undefined;
|
|
3100
3362
|
users?: undefined;
|
|
3363
|
+
due?: undefined;
|
|
3101
3364
|
accountabilities?: undefined;
|
|
3102
3365
|
domains?: undefined;
|
|
3103
3366
|
data?: undefined;
|
|
3104
|
-
due?: undefined;
|
|
3105
3367
|
completed?: undefined;
|
|
3106
3368
|
circleId?: undefined;
|
|
3107
3369
|
userId?: undefined;
|
|
@@ -3117,6 +3379,7 @@ export declare const toolDefinitions: ({
|
|
|
3117
3379
|
includeSubCircles?: undefined;
|
|
3118
3380
|
endDate?: undefined;
|
|
3119
3381
|
metricId?: undefined;
|
|
3382
|
+
agents?: undefined;
|
|
3120
3383
|
username?: undefined;
|
|
3121
3384
|
fullName?: undefined;
|
|
3122
3385
|
language?: undefined;
|
|
@@ -3146,14 +3409,22 @@ export declare const toolDefinitions: ({
|
|
|
3146
3409
|
relation?: undefined;
|
|
3147
3410
|
direction?: undefined;
|
|
3148
3411
|
targetId?: undefined;
|
|
3412
|
+
templateId?: undefined;
|
|
3149
3413
|
name?: undefined;
|
|
3150
3414
|
config?: undefined;
|
|
3151
3415
|
capabilities?: undefined;
|
|
3152
3416
|
exposure?: undefined;
|
|
3153
3417
|
authStrategy?: undefined;
|
|
3418
|
+
roleAssignable?: undefined;
|
|
3419
|
+
agentConfig?: undefined;
|
|
3154
3420
|
connectorId?: undefined;
|
|
3155
3421
|
ownerType?: undefined;
|
|
3156
3422
|
ownerId?: undefined;
|
|
3423
|
+
enabled?: undefined;
|
|
3424
|
+
includeDisabled?: undefined;
|
|
3425
|
+
connectionId?: undefined;
|
|
3426
|
+
agentUserId?: undefined;
|
|
3427
|
+
message?: undefined;
|
|
3157
3428
|
fileId?: undefined;
|
|
3158
3429
|
contentType?: undefined;
|
|
3159
3430
|
content?: undefined;
|
|
@@ -3206,10 +3477,10 @@ export declare const toolDefinitions: ({
|
|
|
3206
3477
|
labels?: undefined;
|
|
3207
3478
|
fields?: undefined;
|
|
3208
3479
|
users?: undefined;
|
|
3480
|
+
due?: undefined;
|
|
3209
3481
|
accountabilities?: undefined;
|
|
3210
3482
|
domains?: undefined;
|
|
3211
3483
|
data?: undefined;
|
|
3212
|
-
due?: undefined;
|
|
3213
3484
|
completed?: undefined;
|
|
3214
3485
|
body?: undefined;
|
|
3215
3486
|
circleId?: undefined;
|
|
@@ -3226,6 +3497,7 @@ export declare const toolDefinitions: ({
|
|
|
3226
3497
|
includeSubCircles?: undefined;
|
|
3227
3498
|
endDate?: undefined;
|
|
3228
3499
|
metricId?: undefined;
|
|
3500
|
+
agents?: undefined;
|
|
3229
3501
|
username?: undefined;
|
|
3230
3502
|
fullName?: undefined;
|
|
3231
3503
|
language?: undefined;
|
|
@@ -3255,14 +3527,22 @@ export declare const toolDefinitions: ({
|
|
|
3255
3527
|
relation?: undefined;
|
|
3256
3528
|
direction?: undefined;
|
|
3257
3529
|
targetId?: undefined;
|
|
3530
|
+
templateId?: undefined;
|
|
3258
3531
|
name?: undefined;
|
|
3259
3532
|
config?: undefined;
|
|
3260
3533
|
capabilities?: undefined;
|
|
3261
3534
|
exposure?: undefined;
|
|
3262
3535
|
authStrategy?: undefined;
|
|
3536
|
+
roleAssignable?: undefined;
|
|
3537
|
+
agentConfig?: undefined;
|
|
3263
3538
|
connectorId?: undefined;
|
|
3264
3539
|
ownerType?: undefined;
|
|
3265
3540
|
ownerId?: undefined;
|
|
3541
|
+
enabled?: undefined;
|
|
3542
|
+
includeDisabled?: undefined;
|
|
3543
|
+
connectionId?: undefined;
|
|
3544
|
+
agentUserId?: undefined;
|
|
3545
|
+
message?: undefined;
|
|
3266
3546
|
fileId?: undefined;
|
|
3267
3547
|
contentType?: undefined;
|
|
3268
3548
|
content?: undefined;
|
|
@@ -3326,10 +3606,10 @@ export declare const toolDefinitions: ({
|
|
|
3326
3606
|
labels?: undefined;
|
|
3327
3607
|
fields?: undefined;
|
|
3328
3608
|
users?: undefined;
|
|
3609
|
+
due?: undefined;
|
|
3329
3610
|
accountabilities?: undefined;
|
|
3330
3611
|
domains?: undefined;
|
|
3331
3612
|
data?: undefined;
|
|
3332
|
-
due?: undefined;
|
|
3333
3613
|
completed?: undefined;
|
|
3334
3614
|
body?: undefined;
|
|
3335
3615
|
commentId?: undefined;
|
|
@@ -3347,6 +3627,7 @@ export declare const toolDefinitions: ({
|
|
|
3347
3627
|
includeSubCircles?: undefined;
|
|
3348
3628
|
endDate?: undefined;
|
|
3349
3629
|
metricId?: undefined;
|
|
3630
|
+
agents?: undefined;
|
|
3350
3631
|
username?: undefined;
|
|
3351
3632
|
fullName?: undefined;
|
|
3352
3633
|
language?: undefined;
|
|
@@ -3376,14 +3657,22 @@ export declare const toolDefinitions: ({
|
|
|
3376
3657
|
relation?: undefined;
|
|
3377
3658
|
direction?: undefined;
|
|
3378
3659
|
targetId?: undefined;
|
|
3660
|
+
templateId?: undefined;
|
|
3379
3661
|
name?: undefined;
|
|
3380
3662
|
config?: undefined;
|
|
3381
3663
|
capabilities?: undefined;
|
|
3382
3664
|
exposure?: undefined;
|
|
3383
3665
|
authStrategy?: undefined;
|
|
3666
|
+
roleAssignable?: undefined;
|
|
3667
|
+
agentConfig?: undefined;
|
|
3384
3668
|
connectorId?: undefined;
|
|
3385
3669
|
ownerType?: undefined;
|
|
3386
3670
|
ownerId?: undefined;
|
|
3671
|
+
enabled?: undefined;
|
|
3672
|
+
includeDisabled?: undefined;
|
|
3673
|
+
connectionId?: undefined;
|
|
3674
|
+
agentUserId?: undefined;
|
|
3675
|
+
message?: undefined;
|
|
3387
3676
|
fileId?: undefined;
|
|
3388
3677
|
contentType?: undefined;
|
|
3389
3678
|
content?: undefined;
|
|
@@ -3451,10 +3740,10 @@ export declare const toolDefinitions: ({
|
|
|
3451
3740
|
labels?: undefined;
|
|
3452
3741
|
fields?: undefined;
|
|
3453
3742
|
users?: undefined;
|
|
3743
|
+
due?: undefined;
|
|
3454
3744
|
accountabilities?: undefined;
|
|
3455
3745
|
domains?: undefined;
|
|
3456
3746
|
data?: undefined;
|
|
3457
|
-
due?: undefined;
|
|
3458
3747
|
completed?: undefined;
|
|
3459
3748
|
body?: undefined;
|
|
3460
3749
|
commentId?: undefined;
|
|
@@ -3471,6 +3760,7 @@ export declare const toolDefinitions: ({
|
|
|
3471
3760
|
includeSubCircles?: undefined;
|
|
3472
3761
|
endDate?: undefined;
|
|
3473
3762
|
metricId?: undefined;
|
|
3763
|
+
agents?: undefined;
|
|
3474
3764
|
username?: undefined;
|
|
3475
3765
|
fullName?: undefined;
|
|
3476
3766
|
language?: undefined;
|
|
@@ -3500,14 +3790,22 @@ export declare const toolDefinitions: ({
|
|
|
3500
3790
|
relation?: undefined;
|
|
3501
3791
|
direction?: undefined;
|
|
3502
3792
|
targetId?: undefined;
|
|
3793
|
+
templateId?: undefined;
|
|
3503
3794
|
name?: undefined;
|
|
3504
3795
|
config?: undefined;
|
|
3505
3796
|
capabilities?: undefined;
|
|
3506
3797
|
exposure?: undefined;
|
|
3507
3798
|
authStrategy?: undefined;
|
|
3799
|
+
roleAssignable?: undefined;
|
|
3800
|
+
agentConfig?: undefined;
|
|
3508
3801
|
connectorId?: undefined;
|
|
3509
3802
|
ownerType?: undefined;
|
|
3510
3803
|
ownerId?: undefined;
|
|
3804
|
+
enabled?: undefined;
|
|
3805
|
+
includeDisabled?: undefined;
|
|
3806
|
+
connectionId?: undefined;
|
|
3807
|
+
agentUserId?: undefined;
|
|
3808
|
+
message?: undefined;
|
|
3511
3809
|
fileId?: undefined;
|
|
3512
3810
|
contentType?: undefined;
|
|
3513
3811
|
content?: undefined;
|
|
@@ -3563,10 +3861,10 @@ export declare const toolDefinitions: ({
|
|
|
3563
3861
|
labels?: undefined;
|
|
3564
3862
|
fields?: undefined;
|
|
3565
3863
|
users?: undefined;
|
|
3864
|
+
due?: undefined;
|
|
3566
3865
|
accountabilities?: undefined;
|
|
3567
3866
|
domains?: undefined;
|
|
3568
3867
|
data?: undefined;
|
|
3569
|
-
due?: undefined;
|
|
3570
3868
|
completed?: undefined;
|
|
3571
3869
|
body?: undefined;
|
|
3572
3870
|
commentId?: undefined;
|
|
@@ -3583,6 +3881,7 @@ export declare const toolDefinitions: ({
|
|
|
3583
3881
|
includeSubCircles?: undefined;
|
|
3584
3882
|
endDate?: undefined;
|
|
3585
3883
|
metricId?: undefined;
|
|
3884
|
+
agents?: undefined;
|
|
3586
3885
|
username?: undefined;
|
|
3587
3886
|
fullName?: undefined;
|
|
3588
3887
|
language?: undefined;
|
|
@@ -3612,14 +3911,22 @@ export declare const toolDefinitions: ({
|
|
|
3612
3911
|
relation?: undefined;
|
|
3613
3912
|
direction?: undefined;
|
|
3614
3913
|
targetId?: undefined;
|
|
3914
|
+
templateId?: undefined;
|
|
3615
3915
|
name?: undefined;
|
|
3616
3916
|
config?: undefined;
|
|
3617
3917
|
capabilities?: undefined;
|
|
3618
3918
|
exposure?: undefined;
|
|
3619
3919
|
authStrategy?: undefined;
|
|
3920
|
+
roleAssignable?: undefined;
|
|
3921
|
+
agentConfig?: undefined;
|
|
3620
3922
|
connectorId?: undefined;
|
|
3621
3923
|
ownerType?: undefined;
|
|
3622
3924
|
ownerId?: undefined;
|
|
3925
|
+
enabled?: undefined;
|
|
3926
|
+
includeDisabled?: undefined;
|
|
3927
|
+
connectionId?: undefined;
|
|
3928
|
+
agentUserId?: undefined;
|
|
3929
|
+
message?: undefined;
|
|
3623
3930
|
fileId?: undefined;
|
|
3624
3931
|
contentType?: undefined;
|
|
3625
3932
|
content?: undefined;
|
|
@@ -3686,10 +3993,10 @@ export declare const toolDefinitions: ({
|
|
|
3686
3993
|
labels?: undefined;
|
|
3687
3994
|
fields?: undefined;
|
|
3688
3995
|
users?: undefined;
|
|
3996
|
+
due?: undefined;
|
|
3689
3997
|
accountabilities?: undefined;
|
|
3690
3998
|
domains?: undefined;
|
|
3691
3999
|
data?: undefined;
|
|
3692
|
-
due?: undefined;
|
|
3693
4000
|
completed?: undefined;
|
|
3694
4001
|
body?: undefined;
|
|
3695
4002
|
commentId?: undefined;
|
|
@@ -3704,6 +4011,7 @@ export declare const toolDefinitions: ({
|
|
|
3704
4011
|
includeSubCircles?: undefined;
|
|
3705
4012
|
endDate?: undefined;
|
|
3706
4013
|
metricId?: undefined;
|
|
4014
|
+
agents?: undefined;
|
|
3707
4015
|
username?: undefined;
|
|
3708
4016
|
fullName?: undefined;
|
|
3709
4017
|
language?: undefined;
|
|
@@ -3733,14 +4041,22 @@ export declare const toolDefinitions: ({
|
|
|
3733
4041
|
relation?: undefined;
|
|
3734
4042
|
direction?: undefined;
|
|
3735
4043
|
targetId?: undefined;
|
|
4044
|
+
templateId?: undefined;
|
|
3736
4045
|
name?: undefined;
|
|
3737
4046
|
config?: undefined;
|
|
3738
4047
|
capabilities?: undefined;
|
|
3739
4048
|
exposure?: undefined;
|
|
3740
4049
|
authStrategy?: undefined;
|
|
4050
|
+
roleAssignable?: undefined;
|
|
4051
|
+
agentConfig?: undefined;
|
|
3741
4052
|
connectorId?: undefined;
|
|
3742
4053
|
ownerType?: undefined;
|
|
3743
4054
|
ownerId?: undefined;
|
|
4055
|
+
enabled?: undefined;
|
|
4056
|
+
includeDisabled?: undefined;
|
|
4057
|
+
connectionId?: undefined;
|
|
4058
|
+
agentUserId?: undefined;
|
|
4059
|
+
message?: undefined;
|
|
3744
4060
|
fileId?: undefined;
|
|
3745
4061
|
contentType?: undefined;
|
|
3746
4062
|
content?: undefined;
|
|
@@ -3796,10 +4112,10 @@ export declare const toolDefinitions: ({
|
|
|
3796
4112
|
labels?: undefined;
|
|
3797
4113
|
fields?: undefined;
|
|
3798
4114
|
users?: undefined;
|
|
4115
|
+
due?: undefined;
|
|
3799
4116
|
accountabilities?: undefined;
|
|
3800
4117
|
domains?: undefined;
|
|
3801
4118
|
data?: undefined;
|
|
3802
|
-
due?: undefined;
|
|
3803
4119
|
completed?: undefined;
|
|
3804
4120
|
body?: undefined;
|
|
3805
4121
|
commentId?: undefined;
|
|
@@ -3816,6 +4132,7 @@ export declare const toolDefinitions: ({
|
|
|
3816
4132
|
includeSubCircles?: undefined;
|
|
3817
4133
|
endDate?: undefined;
|
|
3818
4134
|
metricId?: undefined;
|
|
4135
|
+
agents?: undefined;
|
|
3819
4136
|
username?: undefined;
|
|
3820
4137
|
fullName?: undefined;
|
|
3821
4138
|
language?: undefined;
|
|
@@ -3845,14 +4162,22 @@ export declare const toolDefinitions: ({
|
|
|
3845
4162
|
relation?: undefined;
|
|
3846
4163
|
direction?: undefined;
|
|
3847
4164
|
targetId?: undefined;
|
|
4165
|
+
templateId?: undefined;
|
|
3848
4166
|
name?: undefined;
|
|
3849
4167
|
config?: undefined;
|
|
3850
4168
|
capabilities?: undefined;
|
|
3851
4169
|
exposure?: undefined;
|
|
3852
4170
|
authStrategy?: undefined;
|
|
4171
|
+
roleAssignable?: undefined;
|
|
4172
|
+
agentConfig?: undefined;
|
|
3853
4173
|
connectorId?: undefined;
|
|
3854
4174
|
ownerType?: undefined;
|
|
3855
4175
|
ownerId?: undefined;
|
|
4176
|
+
enabled?: undefined;
|
|
4177
|
+
includeDisabled?: undefined;
|
|
4178
|
+
connectionId?: undefined;
|
|
4179
|
+
agentUserId?: undefined;
|
|
4180
|
+
message?: undefined;
|
|
3856
4181
|
fileId?: undefined;
|
|
3857
4182
|
contentType?: undefined;
|
|
3858
4183
|
content?: undefined;
|
|
@@ -3909,10 +4234,10 @@ export declare const toolDefinitions: ({
|
|
|
3909
4234
|
labels?: undefined;
|
|
3910
4235
|
fields?: undefined;
|
|
3911
4236
|
users?: undefined;
|
|
4237
|
+
due?: undefined;
|
|
3912
4238
|
accountabilities?: undefined;
|
|
3913
4239
|
domains?: undefined;
|
|
3914
4240
|
data?: undefined;
|
|
3915
|
-
due?: undefined;
|
|
3916
4241
|
completed?: undefined;
|
|
3917
4242
|
body?: undefined;
|
|
3918
4243
|
commentId?: undefined;
|
|
@@ -3928,6 +4253,7 @@ export declare const toolDefinitions: ({
|
|
|
3928
4253
|
includeSubCircles?: undefined;
|
|
3929
4254
|
endDate?: undefined;
|
|
3930
4255
|
metricId?: undefined;
|
|
4256
|
+
agents?: undefined;
|
|
3931
4257
|
username?: undefined;
|
|
3932
4258
|
fullName?: undefined;
|
|
3933
4259
|
language?: undefined;
|
|
@@ -3957,14 +4283,22 @@ export declare const toolDefinitions: ({
|
|
|
3957
4283
|
relation?: undefined;
|
|
3958
4284
|
direction?: undefined;
|
|
3959
4285
|
targetId?: undefined;
|
|
4286
|
+
templateId?: undefined;
|
|
3960
4287
|
name?: undefined;
|
|
3961
4288
|
config?: undefined;
|
|
3962
4289
|
capabilities?: undefined;
|
|
3963
4290
|
exposure?: undefined;
|
|
3964
4291
|
authStrategy?: undefined;
|
|
4292
|
+
roleAssignable?: undefined;
|
|
4293
|
+
agentConfig?: undefined;
|
|
3965
4294
|
connectorId?: undefined;
|
|
3966
4295
|
ownerType?: undefined;
|
|
3967
4296
|
ownerId?: undefined;
|
|
4297
|
+
enabled?: undefined;
|
|
4298
|
+
includeDisabled?: undefined;
|
|
4299
|
+
connectionId?: undefined;
|
|
4300
|
+
agentUserId?: undefined;
|
|
4301
|
+
message?: undefined;
|
|
3968
4302
|
fileId?: undefined;
|
|
3969
4303
|
contentType?: undefined;
|
|
3970
4304
|
content?: undefined;
|
|
@@ -4021,10 +4355,10 @@ export declare const toolDefinitions: ({
|
|
|
4021
4355
|
labels?: undefined;
|
|
4022
4356
|
fields?: undefined;
|
|
4023
4357
|
users?: undefined;
|
|
4358
|
+
due?: undefined;
|
|
4024
4359
|
accountabilities?: undefined;
|
|
4025
4360
|
domains?: undefined;
|
|
4026
4361
|
data?: undefined;
|
|
4027
|
-
due?: undefined;
|
|
4028
4362
|
completed?: undefined;
|
|
4029
4363
|
body?: undefined;
|
|
4030
4364
|
commentId?: undefined;
|
|
@@ -4040,6 +4374,7 @@ export declare const toolDefinitions: ({
|
|
|
4040
4374
|
includeSubCircles?: undefined;
|
|
4041
4375
|
endDate?: undefined;
|
|
4042
4376
|
metricId?: undefined;
|
|
4377
|
+
agents?: undefined;
|
|
4043
4378
|
username?: undefined;
|
|
4044
4379
|
fullName?: undefined;
|
|
4045
4380
|
language?: undefined;
|
|
@@ -4069,14 +4404,22 @@ export declare const toolDefinitions: ({
|
|
|
4069
4404
|
relation?: undefined;
|
|
4070
4405
|
direction?: undefined;
|
|
4071
4406
|
targetId?: undefined;
|
|
4407
|
+
templateId?: undefined;
|
|
4072
4408
|
name?: undefined;
|
|
4073
4409
|
config?: undefined;
|
|
4074
4410
|
capabilities?: undefined;
|
|
4075
4411
|
exposure?: undefined;
|
|
4076
4412
|
authStrategy?: undefined;
|
|
4413
|
+
roleAssignable?: undefined;
|
|
4414
|
+
agentConfig?: undefined;
|
|
4077
4415
|
connectorId?: undefined;
|
|
4078
4416
|
ownerType?: undefined;
|
|
4079
4417
|
ownerId?: undefined;
|
|
4418
|
+
enabled?: undefined;
|
|
4419
|
+
includeDisabled?: undefined;
|
|
4420
|
+
connectionId?: undefined;
|
|
4421
|
+
agentUserId?: undefined;
|
|
4422
|
+
message?: undefined;
|
|
4080
4423
|
fileId?: undefined;
|
|
4081
4424
|
contentType?: undefined;
|
|
4082
4425
|
content?: undefined;
|
|
@@ -4142,10 +4485,10 @@ export declare const toolDefinitions: ({
|
|
|
4142
4485
|
description?: undefined;
|
|
4143
4486
|
labels?: undefined;
|
|
4144
4487
|
fields?: undefined;
|
|
4488
|
+
due?: undefined;
|
|
4145
4489
|
accountabilities?: undefined;
|
|
4146
4490
|
domains?: undefined;
|
|
4147
4491
|
data?: undefined;
|
|
4148
|
-
due?: undefined;
|
|
4149
4492
|
body?: undefined;
|
|
4150
4493
|
commentId?: undefined;
|
|
4151
4494
|
circleId?: undefined;
|
|
@@ -4161,6 +4504,7 @@ export declare const toolDefinitions: ({
|
|
|
4161
4504
|
includeSubCircles?: undefined;
|
|
4162
4505
|
endDate?: undefined;
|
|
4163
4506
|
metricId?: undefined;
|
|
4507
|
+
agents?: undefined;
|
|
4164
4508
|
username?: undefined;
|
|
4165
4509
|
fullName?: undefined;
|
|
4166
4510
|
language?: undefined;
|
|
@@ -4190,14 +4534,22 @@ export declare const toolDefinitions: ({
|
|
|
4190
4534
|
relation?: undefined;
|
|
4191
4535
|
direction?: undefined;
|
|
4192
4536
|
targetId?: undefined;
|
|
4537
|
+
templateId?: undefined;
|
|
4193
4538
|
name?: undefined;
|
|
4194
4539
|
config?: undefined;
|
|
4195
4540
|
capabilities?: undefined;
|
|
4196
4541
|
exposure?: undefined;
|
|
4197
4542
|
authStrategy?: undefined;
|
|
4543
|
+
roleAssignable?: undefined;
|
|
4544
|
+
agentConfig?: undefined;
|
|
4198
4545
|
connectorId?: undefined;
|
|
4199
4546
|
ownerType?: undefined;
|
|
4200
4547
|
ownerId?: undefined;
|
|
4548
|
+
enabled?: undefined;
|
|
4549
|
+
includeDisabled?: undefined;
|
|
4550
|
+
connectionId?: undefined;
|
|
4551
|
+
agentUserId?: undefined;
|
|
4552
|
+
message?: undefined;
|
|
4201
4553
|
fileId?: undefined;
|
|
4202
4554
|
contentType?: undefined;
|
|
4203
4555
|
content?: undefined;
|
|
@@ -4259,10 +4611,10 @@ export declare const toolDefinitions: ({
|
|
|
4259
4611
|
labels?: undefined;
|
|
4260
4612
|
fields?: undefined;
|
|
4261
4613
|
users?: undefined;
|
|
4614
|
+
due?: undefined;
|
|
4262
4615
|
accountabilities?: undefined;
|
|
4263
4616
|
domains?: undefined;
|
|
4264
4617
|
data?: undefined;
|
|
4265
|
-
due?: undefined;
|
|
4266
4618
|
completed?: undefined;
|
|
4267
4619
|
body?: undefined;
|
|
4268
4620
|
commentId?: undefined;
|
|
@@ -4277,6 +4629,7 @@ export declare const toolDefinitions: ({
|
|
|
4277
4629
|
includeSubCircles?: undefined;
|
|
4278
4630
|
endDate?: undefined;
|
|
4279
4631
|
metricId?: undefined;
|
|
4632
|
+
agents?: undefined;
|
|
4280
4633
|
username?: undefined;
|
|
4281
4634
|
fullName?: undefined;
|
|
4282
4635
|
language?: undefined;
|
|
@@ -4306,14 +4659,22 @@ export declare const toolDefinitions: ({
|
|
|
4306
4659
|
relation?: undefined;
|
|
4307
4660
|
direction?: undefined;
|
|
4308
4661
|
targetId?: undefined;
|
|
4662
|
+
templateId?: undefined;
|
|
4309
4663
|
name?: undefined;
|
|
4310
4664
|
config?: undefined;
|
|
4311
4665
|
capabilities?: undefined;
|
|
4312
4666
|
exposure?: undefined;
|
|
4313
4667
|
authStrategy?: undefined;
|
|
4668
|
+
roleAssignable?: undefined;
|
|
4669
|
+
agentConfig?: undefined;
|
|
4314
4670
|
connectorId?: undefined;
|
|
4315
4671
|
ownerType?: undefined;
|
|
4316
4672
|
ownerId?: undefined;
|
|
4673
|
+
enabled?: undefined;
|
|
4674
|
+
includeDisabled?: undefined;
|
|
4675
|
+
connectionId?: undefined;
|
|
4676
|
+
agentUserId?: undefined;
|
|
4677
|
+
message?: undefined;
|
|
4317
4678
|
fileId?: undefined;
|
|
4318
4679
|
contentType?: undefined;
|
|
4319
4680
|
content?: undefined;
|
|
@@ -4370,10 +4731,10 @@ export declare const toolDefinitions: ({
|
|
|
4370
4731
|
labels?: undefined;
|
|
4371
4732
|
fields?: undefined;
|
|
4372
4733
|
users?: undefined;
|
|
4734
|
+
due?: undefined;
|
|
4373
4735
|
accountabilities?: undefined;
|
|
4374
4736
|
domains?: undefined;
|
|
4375
4737
|
data?: undefined;
|
|
4376
|
-
due?: undefined;
|
|
4377
4738
|
completed?: undefined;
|
|
4378
4739
|
commentId?: undefined;
|
|
4379
4740
|
circleId?: undefined;
|
|
@@ -4389,6 +4750,7 @@ export declare const toolDefinitions: ({
|
|
|
4389
4750
|
includeSubCircles?: undefined;
|
|
4390
4751
|
endDate?: undefined;
|
|
4391
4752
|
metricId?: undefined;
|
|
4753
|
+
agents?: undefined;
|
|
4392
4754
|
username?: undefined;
|
|
4393
4755
|
fullName?: undefined;
|
|
4394
4756
|
language?: undefined;
|
|
@@ -4418,14 +4780,22 @@ export declare const toolDefinitions: ({
|
|
|
4418
4780
|
relation?: undefined;
|
|
4419
4781
|
direction?: undefined;
|
|
4420
4782
|
targetId?: undefined;
|
|
4783
|
+
templateId?: undefined;
|
|
4421
4784
|
name?: undefined;
|
|
4422
4785
|
config?: undefined;
|
|
4423
4786
|
capabilities?: undefined;
|
|
4424
4787
|
exposure?: undefined;
|
|
4425
4788
|
authStrategy?: undefined;
|
|
4789
|
+
roleAssignable?: undefined;
|
|
4790
|
+
agentConfig?: undefined;
|
|
4426
4791
|
connectorId?: undefined;
|
|
4427
4792
|
ownerType?: undefined;
|
|
4428
4793
|
ownerId?: undefined;
|
|
4794
|
+
enabled?: undefined;
|
|
4795
|
+
includeDisabled?: undefined;
|
|
4796
|
+
connectionId?: undefined;
|
|
4797
|
+
agentUserId?: undefined;
|
|
4798
|
+
message?: undefined;
|
|
4429
4799
|
fileId?: undefined;
|
|
4430
4800
|
contentType?: undefined;
|
|
4431
4801
|
content?: undefined;
|
|
@@ -4478,10 +4848,10 @@ export declare const toolDefinitions: ({
|
|
|
4478
4848
|
labels?: undefined;
|
|
4479
4849
|
fields?: undefined;
|
|
4480
4850
|
users?: undefined;
|
|
4851
|
+
due?: undefined;
|
|
4481
4852
|
accountabilities?: undefined;
|
|
4482
4853
|
domains?: undefined;
|
|
4483
4854
|
data?: undefined;
|
|
4484
|
-
due?: undefined;
|
|
4485
4855
|
completed?: undefined;
|
|
4486
4856
|
body?: undefined;
|
|
4487
4857
|
commentId?: undefined;
|
|
@@ -4498,6 +4868,7 @@ export declare const toolDefinitions: ({
|
|
|
4498
4868
|
includeSubCircles?: undefined;
|
|
4499
4869
|
endDate?: undefined;
|
|
4500
4870
|
metricId?: undefined;
|
|
4871
|
+
agents?: undefined;
|
|
4501
4872
|
username?: undefined;
|
|
4502
4873
|
fullName?: undefined;
|
|
4503
4874
|
language?: undefined;
|
|
@@ -4527,14 +4898,22 @@ export declare const toolDefinitions: ({
|
|
|
4527
4898
|
relation?: undefined;
|
|
4528
4899
|
direction?: undefined;
|
|
4529
4900
|
targetId?: undefined;
|
|
4901
|
+
templateId?: undefined;
|
|
4530
4902
|
name?: undefined;
|
|
4531
4903
|
config?: undefined;
|
|
4532
4904
|
capabilities?: undefined;
|
|
4533
4905
|
exposure?: undefined;
|
|
4534
4906
|
authStrategy?: undefined;
|
|
4907
|
+
roleAssignable?: undefined;
|
|
4908
|
+
agentConfig?: undefined;
|
|
4535
4909
|
connectorId?: undefined;
|
|
4536
4910
|
ownerType?: undefined;
|
|
4537
4911
|
ownerId?: undefined;
|
|
4912
|
+
enabled?: undefined;
|
|
4913
|
+
includeDisabled?: undefined;
|
|
4914
|
+
connectionId?: undefined;
|
|
4915
|
+
agentUserId?: undefined;
|
|
4916
|
+
message?: undefined;
|
|
4538
4917
|
fileId?: undefined;
|
|
4539
4918
|
contentType?: undefined;
|
|
4540
4919
|
content?: undefined;
|
|
@@ -4591,10 +4970,10 @@ export declare const toolDefinitions: ({
|
|
|
4591
4970
|
labels?: undefined;
|
|
4592
4971
|
fields?: undefined;
|
|
4593
4972
|
users?: undefined;
|
|
4973
|
+
due?: undefined;
|
|
4594
4974
|
accountabilities?: undefined;
|
|
4595
4975
|
domains?: undefined;
|
|
4596
4976
|
data?: undefined;
|
|
4597
|
-
due?: undefined;
|
|
4598
4977
|
completed?: undefined;
|
|
4599
4978
|
body?: undefined;
|
|
4600
4979
|
commentId?: undefined;
|
|
@@ -4610,6 +4989,7 @@ export declare const toolDefinitions: ({
|
|
|
4610
4989
|
includeSubCircles?: undefined;
|
|
4611
4990
|
endDate?: undefined;
|
|
4612
4991
|
metricId?: undefined;
|
|
4992
|
+
agents?: undefined;
|
|
4613
4993
|
username?: undefined;
|
|
4614
4994
|
fullName?: undefined;
|
|
4615
4995
|
language?: undefined;
|
|
@@ -4639,14 +5019,22 @@ export declare const toolDefinitions: ({
|
|
|
4639
5019
|
relation?: undefined;
|
|
4640
5020
|
direction?: undefined;
|
|
4641
5021
|
targetId?: undefined;
|
|
5022
|
+
templateId?: undefined;
|
|
4642
5023
|
name?: undefined;
|
|
4643
5024
|
config?: undefined;
|
|
4644
5025
|
capabilities?: undefined;
|
|
4645
5026
|
exposure?: undefined;
|
|
4646
5027
|
authStrategy?: undefined;
|
|
5028
|
+
roleAssignable?: undefined;
|
|
5029
|
+
agentConfig?: undefined;
|
|
4647
5030
|
connectorId?: undefined;
|
|
4648
5031
|
ownerType?: undefined;
|
|
4649
5032
|
ownerId?: undefined;
|
|
5033
|
+
enabled?: undefined;
|
|
5034
|
+
includeDisabled?: undefined;
|
|
5035
|
+
connectionId?: undefined;
|
|
5036
|
+
agentUserId?: undefined;
|
|
5037
|
+
message?: undefined;
|
|
4650
5038
|
fileId?: undefined;
|
|
4651
5039
|
contentType?: undefined;
|
|
4652
5040
|
content?: undefined;
|
|
@@ -4713,10 +5101,10 @@ export declare const toolDefinitions: ({
|
|
|
4713
5101
|
labels?: undefined;
|
|
4714
5102
|
fields?: undefined;
|
|
4715
5103
|
users?: undefined;
|
|
5104
|
+
due?: undefined;
|
|
4716
5105
|
accountabilities?: undefined;
|
|
4717
5106
|
domains?: undefined;
|
|
4718
5107
|
data?: undefined;
|
|
4719
|
-
due?: undefined;
|
|
4720
5108
|
completed?: undefined;
|
|
4721
5109
|
body?: undefined;
|
|
4722
5110
|
commentId?: undefined;
|
|
@@ -4731,6 +5119,7 @@ export declare const toolDefinitions: ({
|
|
|
4731
5119
|
postId?: undefined;
|
|
4732
5120
|
reason?: undefined;
|
|
4733
5121
|
metricId?: undefined;
|
|
5122
|
+
agents?: undefined;
|
|
4734
5123
|
username?: undefined;
|
|
4735
5124
|
fullName?: undefined;
|
|
4736
5125
|
language?: undefined;
|
|
@@ -4760,14 +5149,22 @@ export declare const toolDefinitions: ({
|
|
|
4760
5149
|
relation?: undefined;
|
|
4761
5150
|
direction?: undefined;
|
|
4762
5151
|
targetId?: undefined;
|
|
5152
|
+
templateId?: undefined;
|
|
4763
5153
|
name?: undefined;
|
|
4764
5154
|
config?: undefined;
|
|
4765
5155
|
capabilities?: undefined;
|
|
4766
5156
|
exposure?: undefined;
|
|
4767
5157
|
authStrategy?: undefined;
|
|
5158
|
+
roleAssignable?: undefined;
|
|
5159
|
+
agentConfig?: undefined;
|
|
4768
5160
|
connectorId?: undefined;
|
|
4769
5161
|
ownerType?: undefined;
|
|
4770
5162
|
ownerId?: undefined;
|
|
5163
|
+
enabled?: undefined;
|
|
5164
|
+
includeDisabled?: undefined;
|
|
5165
|
+
connectionId?: undefined;
|
|
5166
|
+
agentUserId?: undefined;
|
|
5167
|
+
message?: undefined;
|
|
4771
5168
|
fileId?: undefined;
|
|
4772
5169
|
contentType?: undefined;
|
|
4773
5170
|
content?: undefined;
|
|
@@ -4823,10 +5220,10 @@ export declare const toolDefinitions: ({
|
|
|
4823
5220
|
labels?: undefined;
|
|
4824
5221
|
fields?: undefined;
|
|
4825
5222
|
users?: undefined;
|
|
5223
|
+
due?: undefined;
|
|
4826
5224
|
accountabilities?: undefined;
|
|
4827
5225
|
domains?: undefined;
|
|
4828
5226
|
data?: undefined;
|
|
4829
|
-
due?: undefined;
|
|
4830
5227
|
completed?: undefined;
|
|
4831
5228
|
body?: undefined;
|
|
4832
5229
|
commentId?: undefined;
|
|
@@ -4843,6 +5240,7 @@ export declare const toolDefinitions: ({
|
|
|
4843
5240
|
reason?: undefined;
|
|
4844
5241
|
includeSubCircles?: undefined;
|
|
4845
5242
|
endDate?: undefined;
|
|
5243
|
+
agents?: undefined;
|
|
4846
5244
|
username?: undefined;
|
|
4847
5245
|
fullName?: undefined;
|
|
4848
5246
|
language?: undefined;
|
|
@@ -4872,14 +5270,22 @@ export declare const toolDefinitions: ({
|
|
|
4872
5270
|
relation?: undefined;
|
|
4873
5271
|
direction?: undefined;
|
|
4874
5272
|
targetId?: undefined;
|
|
5273
|
+
templateId?: undefined;
|
|
4875
5274
|
name?: undefined;
|
|
4876
5275
|
config?: undefined;
|
|
4877
5276
|
capabilities?: undefined;
|
|
4878
5277
|
exposure?: undefined;
|
|
4879
5278
|
authStrategy?: undefined;
|
|
5279
|
+
roleAssignable?: undefined;
|
|
5280
|
+
agentConfig?: undefined;
|
|
4880
5281
|
connectorId?: undefined;
|
|
4881
5282
|
ownerType?: undefined;
|
|
4882
5283
|
ownerId?: undefined;
|
|
5284
|
+
enabled?: undefined;
|
|
5285
|
+
includeDisabled?: undefined;
|
|
5286
|
+
connectionId?: undefined;
|
|
5287
|
+
agentUserId?: undefined;
|
|
5288
|
+
message?: undefined;
|
|
4883
5289
|
fileId?: undefined;
|
|
4884
5290
|
contentType?: undefined;
|
|
4885
5291
|
content?: undefined;
|
|
@@ -4905,6 +5311,11 @@ export declare const toolDefinitions: ({
|
|
|
4905
5311
|
type: string;
|
|
4906
5312
|
description: string;
|
|
4907
5313
|
};
|
|
5314
|
+
agents: {
|
|
5315
|
+
type: string;
|
|
5316
|
+
enum: string[];
|
|
5317
|
+
description: string;
|
|
5318
|
+
};
|
|
4908
5319
|
limit: {
|
|
4909
5320
|
type: string;
|
|
4910
5321
|
description: string;
|
|
@@ -4940,10 +5351,10 @@ export declare const toolDefinitions: ({
|
|
|
4940
5351
|
labels?: undefined;
|
|
4941
5352
|
fields?: undefined;
|
|
4942
5353
|
users?: undefined;
|
|
5354
|
+
due?: undefined;
|
|
4943
5355
|
accountabilities?: undefined;
|
|
4944
5356
|
domains?: undefined;
|
|
4945
5357
|
data?: undefined;
|
|
4946
|
-
due?: undefined;
|
|
4947
5358
|
completed?: undefined;
|
|
4948
5359
|
body?: undefined;
|
|
4949
5360
|
commentId?: undefined;
|
|
@@ -4990,14 +5401,22 @@ export declare const toolDefinitions: ({
|
|
|
4990
5401
|
relation?: undefined;
|
|
4991
5402
|
direction?: undefined;
|
|
4992
5403
|
targetId?: undefined;
|
|
5404
|
+
templateId?: undefined;
|
|
4993
5405
|
name?: undefined;
|
|
4994
5406
|
config?: undefined;
|
|
4995
5407
|
capabilities?: undefined;
|
|
4996
5408
|
exposure?: undefined;
|
|
4997
5409
|
authStrategy?: undefined;
|
|
5410
|
+
roleAssignable?: undefined;
|
|
5411
|
+
agentConfig?: undefined;
|
|
4998
5412
|
connectorId?: undefined;
|
|
4999
5413
|
ownerType?: undefined;
|
|
5000
5414
|
ownerId?: undefined;
|
|
5415
|
+
enabled?: undefined;
|
|
5416
|
+
includeDisabled?: undefined;
|
|
5417
|
+
connectionId?: undefined;
|
|
5418
|
+
agentUserId?: undefined;
|
|
5419
|
+
message?: undefined;
|
|
5001
5420
|
fileId?: undefined;
|
|
5002
5421
|
contentType?: undefined;
|
|
5003
5422
|
content?: undefined;
|
|
@@ -5019,7 +5438,7 @@ export declare const toolDefinitions: ({
|
|
|
5019
5438
|
type: string;
|
|
5020
5439
|
description: string;
|
|
5021
5440
|
};
|
|
5022
|
-
|
|
5441
|
+
search: {
|
|
5023
5442
|
type: string;
|
|
5024
5443
|
description: string;
|
|
5025
5444
|
};
|
|
@@ -5031,19 +5450,12 @@ export declare const toolDefinitions: ({
|
|
|
5031
5450
|
type: string;
|
|
5032
5451
|
description: string;
|
|
5033
5452
|
};
|
|
5034
|
-
stripDescription: {
|
|
5035
|
-
type: string;
|
|
5036
|
-
description: string;
|
|
5037
|
-
};
|
|
5038
|
-
_listTitle: {
|
|
5039
|
-
type: string;
|
|
5040
|
-
description: string;
|
|
5041
|
-
};
|
|
5042
5453
|
topic?: undefined;
|
|
5043
|
-
search?: undefined;
|
|
5044
5454
|
includeImages?: undefined;
|
|
5045
5455
|
imageIndexes?: undefined;
|
|
5046
5456
|
maxImages?: undefined;
|
|
5457
|
+
sort?: undefined;
|
|
5458
|
+
stripDescription?: undefined;
|
|
5047
5459
|
title?: undefined;
|
|
5048
5460
|
purpose?: undefined;
|
|
5049
5461
|
type?: undefined;
|
|
@@ -5052,6 +5464,7 @@ export declare const toolDefinitions: ({
|
|
|
5052
5464
|
apps?: undefined;
|
|
5053
5465
|
layout?: undefined;
|
|
5054
5466
|
query?: undefined;
|
|
5467
|
+
_listTitle?: undefined;
|
|
5055
5468
|
nestId?: undefined;
|
|
5056
5469
|
fieldsMetaData?: undefined;
|
|
5057
5470
|
hints?: undefined;
|
|
@@ -5064,10 +5477,10 @@ export declare const toolDefinitions: ({
|
|
|
5064
5477
|
labels?: undefined;
|
|
5065
5478
|
fields?: undefined;
|
|
5066
5479
|
users?: undefined;
|
|
5480
|
+
due?: undefined;
|
|
5067
5481
|
accountabilities?: undefined;
|
|
5068
5482
|
domains?: undefined;
|
|
5069
5483
|
data?: undefined;
|
|
5070
|
-
due?: undefined;
|
|
5071
5484
|
completed?: undefined;
|
|
5072
5485
|
body?: undefined;
|
|
5073
5486
|
commentId?: undefined;
|
|
@@ -5085,6 +5498,7 @@ export declare const toolDefinitions: ({
|
|
|
5085
5498
|
includeSubCircles?: undefined;
|
|
5086
5499
|
endDate?: undefined;
|
|
5087
5500
|
metricId?: undefined;
|
|
5501
|
+
agents?: undefined;
|
|
5088
5502
|
username?: undefined;
|
|
5089
5503
|
fullName?: undefined;
|
|
5090
5504
|
language?: undefined;
|
|
@@ -5114,14 +5528,22 @@ export declare const toolDefinitions: ({
|
|
|
5114
5528
|
relation?: undefined;
|
|
5115
5529
|
direction?: undefined;
|
|
5116
5530
|
targetId?: undefined;
|
|
5531
|
+
templateId?: undefined;
|
|
5117
5532
|
name?: undefined;
|
|
5118
5533
|
config?: undefined;
|
|
5119
5534
|
capabilities?: undefined;
|
|
5120
5535
|
exposure?: undefined;
|
|
5121
5536
|
authStrategy?: undefined;
|
|
5537
|
+
roleAssignable?: undefined;
|
|
5538
|
+
agentConfig?: undefined;
|
|
5122
5539
|
connectorId?: undefined;
|
|
5123
5540
|
ownerType?: undefined;
|
|
5124
5541
|
ownerId?: undefined;
|
|
5542
|
+
enabled?: undefined;
|
|
5543
|
+
includeDisabled?: undefined;
|
|
5544
|
+
connectionId?: undefined;
|
|
5545
|
+
agentUserId?: undefined;
|
|
5546
|
+
message?: undefined;
|
|
5125
5547
|
fileId?: undefined;
|
|
5126
5548
|
contentType?: undefined;
|
|
5127
5549
|
content?: undefined;
|
|
@@ -5129,11 +5551,6 @@ export declare const toolDefinitions: ({
|
|
|
5129
5551
|
};
|
|
5130
5552
|
required: string[];
|
|
5131
5553
|
};
|
|
5132
|
-
_meta: {
|
|
5133
|
-
ui: {
|
|
5134
|
-
resourceUri: string;
|
|
5135
|
-
};
|
|
5136
|
-
};
|
|
5137
5554
|
} | {
|
|
5138
5555
|
annotations: {
|
|
5139
5556
|
readOnlyHint: boolean;
|
|
@@ -5144,31 +5561,35 @@ export declare const toolDefinitions: ({
|
|
|
5144
5561
|
inputSchema: {
|
|
5145
5562
|
type: "object";
|
|
5146
5563
|
properties: {
|
|
5147
|
-
|
|
5564
|
+
workspaceId: {
|
|
5148
5565
|
type: string;
|
|
5149
5566
|
description: string;
|
|
5150
5567
|
};
|
|
5151
|
-
|
|
5152
|
-
|
|
5153
|
-
|
|
5154
|
-
|
|
5155
|
-
|
|
5156
|
-
|
|
5157
|
-
|
|
5158
|
-
|
|
5568
|
+
sort: {
|
|
5569
|
+
type: string;
|
|
5570
|
+
description: string;
|
|
5571
|
+
};
|
|
5572
|
+
limit: {
|
|
5573
|
+
type: string;
|
|
5574
|
+
description: string;
|
|
5575
|
+
};
|
|
5576
|
+
page: {
|
|
5577
|
+
type: string;
|
|
5578
|
+
description: string;
|
|
5579
|
+
};
|
|
5580
|
+
stripDescription: {
|
|
5581
|
+
type: string;
|
|
5582
|
+
description: string;
|
|
5583
|
+
};
|
|
5584
|
+
_listTitle: {
|
|
5585
|
+
type: string;
|
|
5159
5586
|
description: string;
|
|
5160
|
-
type?: undefined;
|
|
5161
5587
|
};
|
|
5162
5588
|
topic?: undefined;
|
|
5163
5589
|
search?: undefined;
|
|
5164
5590
|
includeImages?: undefined;
|
|
5165
5591
|
imageIndexes?: undefined;
|
|
5166
5592
|
maxImages?: undefined;
|
|
5167
|
-
sort?: undefined;
|
|
5168
|
-
limit?: undefined;
|
|
5169
|
-
page?: undefined;
|
|
5170
|
-
stripDescription?: undefined;
|
|
5171
|
-
workspaceId?: undefined;
|
|
5172
5593
|
title?: undefined;
|
|
5173
5594
|
purpose?: undefined;
|
|
5174
5595
|
type?: undefined;
|
|
@@ -5177,7 +5598,7 @@ export declare const toolDefinitions: ({
|
|
|
5177
5598
|
apps?: undefined;
|
|
5178
5599
|
layout?: undefined;
|
|
5179
5600
|
query?: undefined;
|
|
5180
|
-
|
|
5601
|
+
nestId?: undefined;
|
|
5181
5602
|
fieldsMetaData?: undefined;
|
|
5182
5603
|
hints?: undefined;
|
|
5183
5604
|
provenance?: undefined;
|
|
@@ -5189,10 +5610,10 @@ export declare const toolDefinitions: ({
|
|
|
5189
5610
|
labels?: undefined;
|
|
5190
5611
|
fields?: undefined;
|
|
5191
5612
|
users?: undefined;
|
|
5613
|
+
due?: undefined;
|
|
5192
5614
|
accountabilities?: undefined;
|
|
5193
5615
|
domains?: undefined;
|
|
5194
5616
|
data?: undefined;
|
|
5195
|
-
due?: undefined;
|
|
5196
5617
|
completed?: undefined;
|
|
5197
5618
|
body?: undefined;
|
|
5198
5619
|
commentId?: undefined;
|
|
@@ -5204,11 +5625,13 @@ export declare const toolDefinitions: ({
|
|
|
5204
5625
|
user?: undefined;
|
|
5205
5626
|
key?: undefined;
|
|
5206
5627
|
threadId?: undefined;
|
|
5628
|
+
depth?: undefined;
|
|
5207
5629
|
postId?: undefined;
|
|
5208
5630
|
reason?: undefined;
|
|
5209
5631
|
includeSubCircles?: undefined;
|
|
5210
5632
|
endDate?: undefined;
|
|
5211
5633
|
metricId?: undefined;
|
|
5634
|
+
agents?: undefined;
|
|
5212
5635
|
username?: undefined;
|
|
5213
5636
|
fullName?: undefined;
|
|
5214
5637
|
language?: undefined;
|
|
@@ -5238,14 +5661,22 @@ export declare const toolDefinitions: ({
|
|
|
5238
5661
|
relation?: undefined;
|
|
5239
5662
|
direction?: undefined;
|
|
5240
5663
|
targetId?: undefined;
|
|
5664
|
+
templateId?: undefined;
|
|
5241
5665
|
name?: undefined;
|
|
5242
5666
|
config?: undefined;
|
|
5243
5667
|
capabilities?: undefined;
|
|
5244
5668
|
exposure?: undefined;
|
|
5245
5669
|
authStrategy?: undefined;
|
|
5670
|
+
roleAssignable?: undefined;
|
|
5671
|
+
agentConfig?: undefined;
|
|
5246
5672
|
connectorId?: undefined;
|
|
5247
5673
|
ownerType?: undefined;
|
|
5248
5674
|
ownerId?: undefined;
|
|
5675
|
+
enabled?: undefined;
|
|
5676
|
+
includeDisabled?: undefined;
|
|
5677
|
+
connectionId?: undefined;
|
|
5678
|
+
agentUserId?: undefined;
|
|
5679
|
+
message?: undefined;
|
|
5249
5680
|
fileId?: undefined;
|
|
5250
5681
|
contentType?: undefined;
|
|
5251
5682
|
content?: undefined;
|
|
@@ -5253,6 +5684,11 @@ export declare const toolDefinitions: ({
|
|
|
5253
5684
|
};
|
|
5254
5685
|
required: string[];
|
|
5255
5686
|
};
|
|
5687
|
+
_meta: {
|
|
5688
|
+
ui: {
|
|
5689
|
+
resourceUri: string;
|
|
5690
|
+
};
|
|
5691
|
+
};
|
|
5256
5692
|
} | {
|
|
5257
5693
|
annotations: {
|
|
5258
5694
|
readOnlyHint: boolean;
|
|
@@ -5263,17 +5699,20 @@ export declare const toolDefinitions: ({
|
|
|
5263
5699
|
inputSchema: {
|
|
5264
5700
|
type: "object";
|
|
5265
5701
|
properties: {
|
|
5266
|
-
|
|
5267
|
-
type: string;
|
|
5268
|
-
description: string;
|
|
5269
|
-
};
|
|
5270
|
-
circleId: {
|
|
5702
|
+
nestId: {
|
|
5271
5703
|
type: string;
|
|
5272
5704
|
description: string;
|
|
5273
5705
|
};
|
|
5274
|
-
|
|
5275
|
-
|
|
5706
|
+
depth: {
|
|
5707
|
+
oneOf: ({
|
|
5708
|
+
type: string;
|
|
5709
|
+
enum?: undefined;
|
|
5710
|
+
} | {
|
|
5711
|
+
type: string;
|
|
5712
|
+
enum: string[];
|
|
5713
|
+
})[];
|
|
5276
5714
|
description: string;
|
|
5715
|
+
type?: undefined;
|
|
5277
5716
|
};
|
|
5278
5717
|
topic?: undefined;
|
|
5279
5718
|
search?: undefined;
|
|
@@ -5283,6 +5722,8 @@ export declare const toolDefinitions: ({
|
|
|
5283
5722
|
sort?: undefined;
|
|
5284
5723
|
limit?: undefined;
|
|
5285
5724
|
page?: undefined;
|
|
5725
|
+
stripDescription?: undefined;
|
|
5726
|
+
workspaceId?: undefined;
|
|
5286
5727
|
title?: undefined;
|
|
5287
5728
|
purpose?: undefined;
|
|
5288
5729
|
type?: undefined;
|
|
@@ -5292,7 +5733,6 @@ export declare const toolDefinitions: ({
|
|
|
5292
5733
|
layout?: undefined;
|
|
5293
5734
|
query?: undefined;
|
|
5294
5735
|
_listTitle?: undefined;
|
|
5295
|
-
nestId?: undefined;
|
|
5296
5736
|
fieldsMetaData?: undefined;
|
|
5297
5737
|
hints?: undefined;
|
|
5298
5738
|
provenance?: undefined;
|
|
@@ -5304,13 +5744,14 @@ export declare const toolDefinitions: ({
|
|
|
5304
5744
|
labels?: undefined;
|
|
5305
5745
|
fields?: undefined;
|
|
5306
5746
|
users?: undefined;
|
|
5747
|
+
due?: undefined;
|
|
5307
5748
|
accountabilities?: undefined;
|
|
5308
5749
|
domains?: undefined;
|
|
5309
5750
|
data?: undefined;
|
|
5310
|
-
due?: undefined;
|
|
5311
5751
|
completed?: undefined;
|
|
5312
5752
|
body?: undefined;
|
|
5313
5753
|
commentId?: undefined;
|
|
5754
|
+
circleId?: undefined;
|
|
5314
5755
|
userId?: undefined;
|
|
5315
5756
|
withUser?: undefined;
|
|
5316
5757
|
unread?: undefined;
|
|
@@ -5318,12 +5759,12 @@ export declare const toolDefinitions: ({
|
|
|
5318
5759
|
user?: undefined;
|
|
5319
5760
|
key?: undefined;
|
|
5320
5761
|
threadId?: undefined;
|
|
5321
|
-
depth?: undefined;
|
|
5322
5762
|
postId?: undefined;
|
|
5323
5763
|
reason?: undefined;
|
|
5324
5764
|
includeSubCircles?: undefined;
|
|
5325
5765
|
endDate?: undefined;
|
|
5326
5766
|
metricId?: undefined;
|
|
5767
|
+
agents?: undefined;
|
|
5327
5768
|
username?: undefined;
|
|
5328
5769
|
fullName?: undefined;
|
|
5329
5770
|
language?: undefined;
|
|
@@ -5353,14 +5794,22 @@ export declare const toolDefinitions: ({
|
|
|
5353
5794
|
relation?: undefined;
|
|
5354
5795
|
direction?: undefined;
|
|
5355
5796
|
targetId?: undefined;
|
|
5797
|
+
templateId?: undefined;
|
|
5356
5798
|
name?: undefined;
|
|
5357
5799
|
config?: undefined;
|
|
5358
5800
|
capabilities?: undefined;
|
|
5359
5801
|
exposure?: undefined;
|
|
5360
5802
|
authStrategy?: undefined;
|
|
5803
|
+
roleAssignable?: undefined;
|
|
5804
|
+
agentConfig?: undefined;
|
|
5361
5805
|
connectorId?: undefined;
|
|
5362
5806
|
ownerType?: undefined;
|
|
5363
5807
|
ownerId?: undefined;
|
|
5808
|
+
enabled?: undefined;
|
|
5809
|
+
includeDisabled?: undefined;
|
|
5810
|
+
connectionId?: undefined;
|
|
5811
|
+
agentUserId?: undefined;
|
|
5812
|
+
message?: undefined;
|
|
5364
5813
|
fileId?: undefined;
|
|
5365
5814
|
contentType?: undefined;
|
|
5366
5815
|
content?: undefined;
|
|
@@ -5382,7 +5831,11 @@ export declare const toolDefinitions: ({
|
|
|
5382
5831
|
type: string;
|
|
5383
5832
|
description: string;
|
|
5384
5833
|
};
|
|
5385
|
-
|
|
5834
|
+
circleId: {
|
|
5835
|
+
type: string;
|
|
5836
|
+
description: string;
|
|
5837
|
+
};
|
|
5838
|
+
stripDescription: {
|
|
5386
5839
|
type: string;
|
|
5387
5840
|
description: string;
|
|
5388
5841
|
};
|
|
@@ -5394,7 +5847,6 @@ export declare const toolDefinitions: ({
|
|
|
5394
5847
|
sort?: undefined;
|
|
5395
5848
|
limit?: undefined;
|
|
5396
5849
|
page?: undefined;
|
|
5397
|
-
stripDescription?: undefined;
|
|
5398
5850
|
title?: undefined;
|
|
5399
5851
|
purpose?: undefined;
|
|
5400
5852
|
type?: undefined;
|
|
@@ -5416,10 +5868,131 @@ export declare const toolDefinitions: ({
|
|
|
5416
5868
|
labels?: undefined;
|
|
5417
5869
|
fields?: undefined;
|
|
5418
5870
|
users?: undefined;
|
|
5871
|
+
due?: undefined;
|
|
5872
|
+
accountabilities?: undefined;
|
|
5873
|
+
domains?: undefined;
|
|
5874
|
+
data?: undefined;
|
|
5875
|
+
completed?: undefined;
|
|
5876
|
+
body?: undefined;
|
|
5877
|
+
commentId?: undefined;
|
|
5878
|
+
userId?: undefined;
|
|
5879
|
+
withUser?: undefined;
|
|
5880
|
+
unread?: undefined;
|
|
5881
|
+
includeCompleted?: undefined;
|
|
5882
|
+
user?: undefined;
|
|
5883
|
+
key?: undefined;
|
|
5884
|
+
threadId?: undefined;
|
|
5885
|
+
depth?: undefined;
|
|
5886
|
+
postId?: undefined;
|
|
5887
|
+
reason?: undefined;
|
|
5888
|
+
includeSubCircles?: undefined;
|
|
5889
|
+
endDate?: undefined;
|
|
5890
|
+
metricId?: undefined;
|
|
5891
|
+
agents?: undefined;
|
|
5892
|
+
username?: undefined;
|
|
5893
|
+
fullName?: undefined;
|
|
5894
|
+
language?: undefined;
|
|
5895
|
+
labelId?: undefined;
|
|
5896
|
+
from?: undefined;
|
|
5897
|
+
to?: undefined;
|
|
5898
|
+
completedAfter?: undefined;
|
|
5899
|
+
nestIds?: undefined;
|
|
5900
|
+
position?: undefined;
|
|
5901
|
+
relatedNestId?: undefined;
|
|
5902
|
+
color?: undefined;
|
|
5903
|
+
icon?: undefined;
|
|
5904
|
+
fullWorkspaces?: undefined;
|
|
5905
|
+
context?: undefined;
|
|
5906
|
+
skip?: undefined;
|
|
5907
|
+
showRead?: undefined;
|
|
5908
|
+
group?: undefined;
|
|
5909
|
+
feeling?: undefined;
|
|
5910
|
+
needs?: undefined;
|
|
5911
|
+
tensionId?: undefined;
|
|
5912
|
+
_id?: undefined;
|
|
5913
|
+
roleId?: undefined;
|
|
5914
|
+
removeNest?: undefined;
|
|
5915
|
+
partId?: undefined;
|
|
5916
|
+
childId?: undefined;
|
|
5917
|
+
status?: undefined;
|
|
5918
|
+
relation?: undefined;
|
|
5919
|
+
direction?: undefined;
|
|
5920
|
+
targetId?: undefined;
|
|
5921
|
+
templateId?: undefined;
|
|
5922
|
+
name?: undefined;
|
|
5923
|
+
config?: undefined;
|
|
5924
|
+
capabilities?: undefined;
|
|
5925
|
+
exposure?: undefined;
|
|
5926
|
+
authStrategy?: undefined;
|
|
5927
|
+
roleAssignable?: undefined;
|
|
5928
|
+
agentConfig?: undefined;
|
|
5929
|
+
connectorId?: undefined;
|
|
5930
|
+
ownerType?: undefined;
|
|
5931
|
+
ownerId?: undefined;
|
|
5932
|
+
enabled?: undefined;
|
|
5933
|
+
includeDisabled?: undefined;
|
|
5934
|
+
connectionId?: undefined;
|
|
5935
|
+
agentUserId?: undefined;
|
|
5936
|
+
message?: undefined;
|
|
5937
|
+
fileId?: undefined;
|
|
5938
|
+
contentType?: undefined;
|
|
5939
|
+
content?: undefined;
|
|
5940
|
+
dataBase64?: undefined;
|
|
5941
|
+
};
|
|
5942
|
+
required: string[];
|
|
5943
|
+
};
|
|
5944
|
+
} | {
|
|
5945
|
+
annotations: {
|
|
5946
|
+
readOnlyHint: boolean;
|
|
5947
|
+
destructiveHint: boolean;
|
|
5948
|
+
};
|
|
5949
|
+
name: string;
|
|
5950
|
+
description: string;
|
|
5951
|
+
inputSchema: {
|
|
5952
|
+
type: "object";
|
|
5953
|
+
properties: {
|
|
5954
|
+
workspaceId: {
|
|
5955
|
+
type: string;
|
|
5956
|
+
description: string;
|
|
5957
|
+
};
|
|
5958
|
+
userId: {
|
|
5959
|
+
type: string;
|
|
5960
|
+
description: string;
|
|
5961
|
+
};
|
|
5962
|
+
topic?: undefined;
|
|
5963
|
+
search?: undefined;
|
|
5964
|
+
includeImages?: undefined;
|
|
5965
|
+
imageIndexes?: undefined;
|
|
5966
|
+
maxImages?: undefined;
|
|
5967
|
+
sort?: undefined;
|
|
5968
|
+
limit?: undefined;
|
|
5969
|
+
page?: undefined;
|
|
5970
|
+
stripDescription?: undefined;
|
|
5971
|
+
title?: undefined;
|
|
5972
|
+
purpose?: undefined;
|
|
5973
|
+
type?: undefined;
|
|
5974
|
+
governance?: undefined;
|
|
5975
|
+
plan?: undefined;
|
|
5976
|
+
apps?: undefined;
|
|
5977
|
+
layout?: undefined;
|
|
5978
|
+
query?: undefined;
|
|
5979
|
+
_listTitle?: undefined;
|
|
5980
|
+
nestId?: undefined;
|
|
5981
|
+
fieldsMetaData?: undefined;
|
|
5982
|
+
hints?: undefined;
|
|
5983
|
+
provenance?: undefined;
|
|
5984
|
+
rights?: undefined;
|
|
5985
|
+
forUser?: undefined;
|
|
5986
|
+
whoCan?: undefined;
|
|
5987
|
+
parentId?: undefined;
|
|
5988
|
+
description?: undefined;
|
|
5989
|
+
labels?: undefined;
|
|
5990
|
+
fields?: undefined;
|
|
5991
|
+
users?: undefined;
|
|
5992
|
+
due?: undefined;
|
|
5419
5993
|
accountabilities?: undefined;
|
|
5420
5994
|
domains?: undefined;
|
|
5421
5995
|
data?: undefined;
|
|
5422
|
-
due?: undefined;
|
|
5423
5996
|
completed?: undefined;
|
|
5424
5997
|
body?: undefined;
|
|
5425
5998
|
commentId?: undefined;
|
|
@@ -5436,6 +6009,7 @@ export declare const toolDefinitions: ({
|
|
|
5436
6009
|
includeSubCircles?: undefined;
|
|
5437
6010
|
endDate?: undefined;
|
|
5438
6011
|
metricId?: undefined;
|
|
6012
|
+
agents?: undefined;
|
|
5439
6013
|
username?: undefined;
|
|
5440
6014
|
fullName?: undefined;
|
|
5441
6015
|
language?: undefined;
|
|
@@ -5465,14 +6039,22 @@ export declare const toolDefinitions: ({
|
|
|
5465
6039
|
relation?: undefined;
|
|
5466
6040
|
direction?: undefined;
|
|
5467
6041
|
targetId?: undefined;
|
|
6042
|
+
templateId?: undefined;
|
|
5468
6043
|
name?: undefined;
|
|
5469
6044
|
config?: undefined;
|
|
5470
6045
|
capabilities?: undefined;
|
|
5471
6046
|
exposure?: undefined;
|
|
5472
6047
|
authStrategy?: undefined;
|
|
6048
|
+
roleAssignable?: undefined;
|
|
6049
|
+
agentConfig?: undefined;
|
|
5473
6050
|
connectorId?: undefined;
|
|
5474
6051
|
ownerType?: undefined;
|
|
5475
6052
|
ownerId?: undefined;
|
|
6053
|
+
enabled?: undefined;
|
|
6054
|
+
includeDisabled?: undefined;
|
|
6055
|
+
connectionId?: undefined;
|
|
6056
|
+
agentUserId?: undefined;
|
|
6057
|
+
message?: undefined;
|
|
5476
6058
|
fileId?: undefined;
|
|
5477
6059
|
contentType?: undefined;
|
|
5478
6060
|
content?: undefined;
|
|
@@ -5536,10 +6118,10 @@ export declare const toolDefinitions: ({
|
|
|
5536
6118
|
labels?: undefined;
|
|
5537
6119
|
fields?: undefined;
|
|
5538
6120
|
users?: undefined;
|
|
6121
|
+
due?: undefined;
|
|
5539
6122
|
accountabilities?: undefined;
|
|
5540
6123
|
domains?: undefined;
|
|
5541
6124
|
data?: undefined;
|
|
5542
|
-
due?: undefined;
|
|
5543
6125
|
completed?: undefined;
|
|
5544
6126
|
body?: undefined;
|
|
5545
6127
|
commentId?: undefined;
|
|
@@ -5557,6 +6139,7 @@ export declare const toolDefinitions: ({
|
|
|
5557
6139
|
includeSubCircles?: undefined;
|
|
5558
6140
|
endDate?: undefined;
|
|
5559
6141
|
metricId?: undefined;
|
|
6142
|
+
agents?: undefined;
|
|
5560
6143
|
labelId?: undefined;
|
|
5561
6144
|
from?: undefined;
|
|
5562
6145
|
to?: undefined;
|
|
@@ -5583,14 +6166,22 @@ export declare const toolDefinitions: ({
|
|
|
5583
6166
|
relation?: undefined;
|
|
5584
6167
|
direction?: undefined;
|
|
5585
6168
|
targetId?: undefined;
|
|
6169
|
+
templateId?: undefined;
|
|
5586
6170
|
name?: undefined;
|
|
5587
6171
|
config?: undefined;
|
|
5588
6172
|
capabilities?: undefined;
|
|
5589
6173
|
exposure?: undefined;
|
|
5590
6174
|
authStrategy?: undefined;
|
|
6175
|
+
roleAssignable?: undefined;
|
|
6176
|
+
agentConfig?: undefined;
|
|
5591
6177
|
connectorId?: undefined;
|
|
5592
6178
|
ownerType?: undefined;
|
|
5593
6179
|
ownerId?: undefined;
|
|
6180
|
+
enabled?: undefined;
|
|
6181
|
+
includeDisabled?: undefined;
|
|
6182
|
+
connectionId?: undefined;
|
|
6183
|
+
agentUserId?: undefined;
|
|
6184
|
+
message?: undefined;
|
|
5594
6185
|
fileId?: undefined;
|
|
5595
6186
|
contentType?: undefined;
|
|
5596
6187
|
content?: undefined;
|
|
@@ -5646,10 +6237,10 @@ export declare const toolDefinitions: ({
|
|
|
5646
6237
|
labels?: undefined;
|
|
5647
6238
|
fields?: undefined;
|
|
5648
6239
|
users?: undefined;
|
|
6240
|
+
due?: undefined;
|
|
5649
6241
|
accountabilities?: undefined;
|
|
5650
6242
|
domains?: undefined;
|
|
5651
6243
|
data?: undefined;
|
|
5652
|
-
due?: undefined;
|
|
5653
6244
|
completed?: undefined;
|
|
5654
6245
|
body?: undefined;
|
|
5655
6246
|
commentId?: undefined;
|
|
@@ -5667,6 +6258,7 @@ export declare const toolDefinitions: ({
|
|
|
5667
6258
|
includeSubCircles?: undefined;
|
|
5668
6259
|
endDate?: undefined;
|
|
5669
6260
|
metricId?: undefined;
|
|
6261
|
+
agents?: undefined;
|
|
5670
6262
|
username?: undefined;
|
|
5671
6263
|
fullName?: undefined;
|
|
5672
6264
|
language?: undefined;
|
|
@@ -5695,14 +6287,22 @@ export declare const toolDefinitions: ({
|
|
|
5695
6287
|
relation?: undefined;
|
|
5696
6288
|
direction?: undefined;
|
|
5697
6289
|
targetId?: undefined;
|
|
6290
|
+
templateId?: undefined;
|
|
5698
6291
|
name?: undefined;
|
|
5699
6292
|
config?: undefined;
|
|
5700
6293
|
capabilities?: undefined;
|
|
5701
6294
|
exposure?: undefined;
|
|
5702
6295
|
authStrategy?: undefined;
|
|
6296
|
+
roleAssignable?: undefined;
|
|
6297
|
+
agentConfig?: undefined;
|
|
5703
6298
|
connectorId?: undefined;
|
|
5704
6299
|
ownerType?: undefined;
|
|
5705
6300
|
ownerId?: undefined;
|
|
6301
|
+
enabled?: undefined;
|
|
6302
|
+
includeDisabled?: undefined;
|
|
6303
|
+
connectionId?: undefined;
|
|
6304
|
+
agentUserId?: undefined;
|
|
6305
|
+
message?: undefined;
|
|
5706
6306
|
fileId?: undefined;
|
|
5707
6307
|
contentType?: undefined;
|
|
5708
6308
|
content?: undefined;
|
|
@@ -5769,10 +6369,10 @@ export declare const toolDefinitions: ({
|
|
|
5769
6369
|
labels?: undefined;
|
|
5770
6370
|
fields?: undefined;
|
|
5771
6371
|
users?: undefined;
|
|
6372
|
+
due?: undefined;
|
|
5772
6373
|
accountabilities?: undefined;
|
|
5773
6374
|
domains?: undefined;
|
|
5774
6375
|
data?: undefined;
|
|
5775
|
-
due?: undefined;
|
|
5776
6376
|
completed?: undefined;
|
|
5777
6377
|
body?: undefined;
|
|
5778
6378
|
commentId?: undefined;
|
|
@@ -5789,6 +6389,7 @@ export declare const toolDefinitions: ({
|
|
|
5789
6389
|
reason?: undefined;
|
|
5790
6390
|
includeSubCircles?: undefined;
|
|
5791
6391
|
endDate?: undefined;
|
|
6392
|
+
agents?: undefined;
|
|
5792
6393
|
username?: undefined;
|
|
5793
6394
|
fullName?: undefined;
|
|
5794
6395
|
language?: undefined;
|
|
@@ -5816,14 +6417,22 @@ export declare const toolDefinitions: ({
|
|
|
5816
6417
|
relation?: undefined;
|
|
5817
6418
|
direction?: undefined;
|
|
5818
6419
|
targetId?: undefined;
|
|
6420
|
+
templateId?: undefined;
|
|
5819
6421
|
name?: undefined;
|
|
5820
6422
|
config?: undefined;
|
|
5821
6423
|
capabilities?: undefined;
|
|
5822
6424
|
exposure?: undefined;
|
|
5823
6425
|
authStrategy?: undefined;
|
|
6426
|
+
roleAssignable?: undefined;
|
|
6427
|
+
agentConfig?: undefined;
|
|
5824
6428
|
connectorId?: undefined;
|
|
5825
6429
|
ownerType?: undefined;
|
|
5826
6430
|
ownerId?: undefined;
|
|
6431
|
+
enabled?: undefined;
|
|
6432
|
+
includeDisabled?: undefined;
|
|
6433
|
+
connectionId?: undefined;
|
|
6434
|
+
agentUserId?: undefined;
|
|
6435
|
+
message?: undefined;
|
|
5827
6436
|
fileId?: undefined;
|
|
5828
6437
|
contentType?: undefined;
|
|
5829
6438
|
content?: undefined;
|
|
@@ -5875,10 +6484,10 @@ export declare const toolDefinitions: ({
|
|
|
5875
6484
|
labels?: undefined;
|
|
5876
6485
|
fields?: undefined;
|
|
5877
6486
|
users?: undefined;
|
|
6487
|
+
due?: undefined;
|
|
5878
6488
|
accountabilities?: undefined;
|
|
5879
6489
|
domains?: undefined;
|
|
5880
6490
|
data?: undefined;
|
|
5881
|
-
due?: undefined;
|
|
5882
6491
|
completed?: undefined;
|
|
5883
6492
|
body?: undefined;
|
|
5884
6493
|
commentId?: undefined;
|
|
@@ -5896,6 +6505,7 @@ export declare const toolDefinitions: ({
|
|
|
5896
6505
|
includeSubCircles?: undefined;
|
|
5897
6506
|
endDate?: undefined;
|
|
5898
6507
|
metricId?: undefined;
|
|
6508
|
+
agents?: undefined;
|
|
5899
6509
|
username?: undefined;
|
|
5900
6510
|
fullName?: undefined;
|
|
5901
6511
|
language?: undefined;
|
|
@@ -5925,14 +6535,22 @@ export declare const toolDefinitions: ({
|
|
|
5925
6535
|
relation?: undefined;
|
|
5926
6536
|
direction?: undefined;
|
|
5927
6537
|
targetId?: undefined;
|
|
6538
|
+
templateId?: undefined;
|
|
5928
6539
|
name?: undefined;
|
|
5929
6540
|
config?: undefined;
|
|
5930
6541
|
capabilities?: undefined;
|
|
5931
6542
|
exposure?: undefined;
|
|
5932
6543
|
authStrategy?: undefined;
|
|
6544
|
+
roleAssignable?: undefined;
|
|
6545
|
+
agentConfig?: undefined;
|
|
5933
6546
|
connectorId?: undefined;
|
|
5934
6547
|
ownerType?: undefined;
|
|
5935
6548
|
ownerId?: undefined;
|
|
6549
|
+
enabled?: undefined;
|
|
6550
|
+
includeDisabled?: undefined;
|
|
6551
|
+
connectionId?: undefined;
|
|
6552
|
+
agentUserId?: undefined;
|
|
6553
|
+
message?: undefined;
|
|
5936
6554
|
fileId?: undefined;
|
|
5937
6555
|
contentType?: undefined;
|
|
5938
6556
|
content?: undefined;
|
|
@@ -5988,10 +6606,10 @@ export declare const toolDefinitions: ({
|
|
|
5988
6606
|
labels?: undefined;
|
|
5989
6607
|
fields?: undefined;
|
|
5990
6608
|
users?: undefined;
|
|
6609
|
+
due?: undefined;
|
|
5991
6610
|
accountabilities?: undefined;
|
|
5992
6611
|
domains?: undefined;
|
|
5993
6612
|
data?: undefined;
|
|
5994
|
-
due?: undefined;
|
|
5995
6613
|
completed?: undefined;
|
|
5996
6614
|
body?: undefined;
|
|
5997
6615
|
commentId?: undefined;
|
|
@@ -6009,6 +6627,7 @@ export declare const toolDefinitions: ({
|
|
|
6009
6627
|
includeSubCircles?: undefined;
|
|
6010
6628
|
endDate?: undefined;
|
|
6011
6629
|
metricId?: undefined;
|
|
6630
|
+
agents?: undefined;
|
|
6012
6631
|
username?: undefined;
|
|
6013
6632
|
fullName?: undefined;
|
|
6014
6633
|
language?: undefined;
|
|
@@ -6037,14 +6656,22 @@ export declare const toolDefinitions: ({
|
|
|
6037
6656
|
relation?: undefined;
|
|
6038
6657
|
direction?: undefined;
|
|
6039
6658
|
targetId?: undefined;
|
|
6659
|
+
templateId?: undefined;
|
|
6040
6660
|
name?: undefined;
|
|
6041
6661
|
config?: undefined;
|
|
6042
6662
|
capabilities?: undefined;
|
|
6043
6663
|
exposure?: undefined;
|
|
6044
6664
|
authStrategy?: undefined;
|
|
6665
|
+
roleAssignable?: undefined;
|
|
6666
|
+
agentConfig?: undefined;
|
|
6045
6667
|
connectorId?: undefined;
|
|
6046
6668
|
ownerType?: undefined;
|
|
6047
6669
|
ownerId?: undefined;
|
|
6670
|
+
enabled?: undefined;
|
|
6671
|
+
includeDisabled?: undefined;
|
|
6672
|
+
connectionId?: undefined;
|
|
6673
|
+
agentUserId?: undefined;
|
|
6674
|
+
message?: undefined;
|
|
6048
6675
|
fileId?: undefined;
|
|
6049
6676
|
contentType?: undefined;
|
|
6050
6677
|
content?: undefined;
|
|
@@ -6104,10 +6731,10 @@ export declare const toolDefinitions: ({
|
|
|
6104
6731
|
labels?: undefined;
|
|
6105
6732
|
fields?: undefined;
|
|
6106
6733
|
users?: undefined;
|
|
6734
|
+
due?: undefined;
|
|
6107
6735
|
accountabilities?: undefined;
|
|
6108
6736
|
domains?: undefined;
|
|
6109
6737
|
data?: undefined;
|
|
6110
|
-
due?: undefined;
|
|
6111
6738
|
completed?: undefined;
|
|
6112
6739
|
body?: undefined;
|
|
6113
6740
|
commentId?: undefined;
|
|
@@ -6125,6 +6752,7 @@ export declare const toolDefinitions: ({
|
|
|
6125
6752
|
includeSubCircles?: undefined;
|
|
6126
6753
|
endDate?: undefined;
|
|
6127
6754
|
metricId?: undefined;
|
|
6755
|
+
agents?: undefined;
|
|
6128
6756
|
username?: undefined;
|
|
6129
6757
|
fullName?: undefined;
|
|
6130
6758
|
language?: undefined;
|
|
@@ -6154,14 +6782,22 @@ export declare const toolDefinitions: ({
|
|
|
6154
6782
|
relation?: undefined;
|
|
6155
6783
|
direction?: undefined;
|
|
6156
6784
|
targetId?: undefined;
|
|
6785
|
+
templateId?: undefined;
|
|
6157
6786
|
name?: undefined;
|
|
6158
6787
|
config?: undefined;
|
|
6159
6788
|
capabilities?: undefined;
|
|
6160
6789
|
exposure?: undefined;
|
|
6161
6790
|
authStrategy?: undefined;
|
|
6791
|
+
roleAssignable?: undefined;
|
|
6792
|
+
agentConfig?: undefined;
|
|
6162
6793
|
connectorId?: undefined;
|
|
6163
6794
|
ownerType?: undefined;
|
|
6164
6795
|
ownerId?: undefined;
|
|
6796
|
+
enabled?: undefined;
|
|
6797
|
+
includeDisabled?: undefined;
|
|
6798
|
+
connectionId?: undefined;
|
|
6799
|
+
agentUserId?: undefined;
|
|
6800
|
+
message?: undefined;
|
|
6165
6801
|
fileId?: undefined;
|
|
6166
6802
|
contentType?: undefined;
|
|
6167
6803
|
content?: undefined;
|
|
@@ -6216,10 +6852,10 @@ export declare const toolDefinitions: ({
|
|
|
6216
6852
|
labels?: undefined;
|
|
6217
6853
|
fields?: undefined;
|
|
6218
6854
|
users?: undefined;
|
|
6855
|
+
due?: undefined;
|
|
6219
6856
|
accountabilities?: undefined;
|
|
6220
6857
|
domains?: undefined;
|
|
6221
6858
|
data?: undefined;
|
|
6222
|
-
due?: undefined;
|
|
6223
6859
|
completed?: undefined;
|
|
6224
6860
|
body?: undefined;
|
|
6225
6861
|
commentId?: undefined;
|
|
@@ -6237,6 +6873,7 @@ export declare const toolDefinitions: ({
|
|
|
6237
6873
|
includeSubCircles?: undefined;
|
|
6238
6874
|
endDate?: undefined;
|
|
6239
6875
|
metricId?: undefined;
|
|
6876
|
+
agents?: undefined;
|
|
6240
6877
|
username?: undefined;
|
|
6241
6878
|
fullName?: undefined;
|
|
6242
6879
|
language?: undefined;
|
|
@@ -6266,14 +6903,22 @@ export declare const toolDefinitions: ({
|
|
|
6266
6903
|
relation?: undefined;
|
|
6267
6904
|
direction?: undefined;
|
|
6268
6905
|
targetId?: undefined;
|
|
6906
|
+
templateId?: undefined;
|
|
6269
6907
|
name?: undefined;
|
|
6270
6908
|
config?: undefined;
|
|
6271
6909
|
capabilities?: undefined;
|
|
6272
6910
|
exposure?: undefined;
|
|
6273
6911
|
authStrategy?: undefined;
|
|
6912
|
+
roleAssignable?: undefined;
|
|
6913
|
+
agentConfig?: undefined;
|
|
6274
6914
|
connectorId?: undefined;
|
|
6275
6915
|
ownerType?: undefined;
|
|
6276
6916
|
ownerId?: undefined;
|
|
6917
|
+
enabled?: undefined;
|
|
6918
|
+
includeDisabled?: undefined;
|
|
6919
|
+
connectionId?: undefined;
|
|
6920
|
+
agentUserId?: undefined;
|
|
6921
|
+
message?: undefined;
|
|
6277
6922
|
fileId?: undefined;
|
|
6278
6923
|
contentType?: undefined;
|
|
6279
6924
|
content?: undefined;
|
|
@@ -6339,9 +6984,9 @@ export declare const toolDefinitions: ({
|
|
|
6339
6984
|
labels?: undefined;
|
|
6340
6985
|
fields?: undefined;
|
|
6341
6986
|
users?: undefined;
|
|
6987
|
+
due?: undefined;
|
|
6342
6988
|
accountabilities?: undefined;
|
|
6343
6989
|
domains?: undefined;
|
|
6344
|
-
due?: undefined;
|
|
6345
6990
|
body?: undefined;
|
|
6346
6991
|
commentId?: undefined;
|
|
6347
6992
|
circleId?: undefined;
|
|
@@ -6358,6 +7003,7 @@ export declare const toolDefinitions: ({
|
|
|
6358
7003
|
includeSubCircles?: undefined;
|
|
6359
7004
|
endDate?: undefined;
|
|
6360
7005
|
metricId?: undefined;
|
|
7006
|
+
agents?: undefined;
|
|
6361
7007
|
username?: undefined;
|
|
6362
7008
|
fullName?: undefined;
|
|
6363
7009
|
language?: undefined;
|
|
@@ -6387,14 +7033,22 @@ export declare const toolDefinitions: ({
|
|
|
6387
7033
|
relation?: undefined;
|
|
6388
7034
|
direction?: undefined;
|
|
6389
7035
|
targetId?: undefined;
|
|
7036
|
+
templateId?: undefined;
|
|
6390
7037
|
name?: undefined;
|
|
6391
7038
|
config?: undefined;
|
|
6392
7039
|
capabilities?: undefined;
|
|
6393
7040
|
exposure?: undefined;
|
|
6394
7041
|
authStrategy?: undefined;
|
|
7042
|
+
roleAssignable?: undefined;
|
|
7043
|
+
agentConfig?: undefined;
|
|
6395
7044
|
connectorId?: undefined;
|
|
6396
7045
|
ownerType?: undefined;
|
|
6397
7046
|
ownerId?: undefined;
|
|
7047
|
+
enabled?: undefined;
|
|
7048
|
+
includeDisabled?: undefined;
|
|
7049
|
+
connectionId?: undefined;
|
|
7050
|
+
agentUserId?: undefined;
|
|
7051
|
+
message?: undefined;
|
|
6398
7052
|
fileId?: undefined;
|
|
6399
7053
|
contentType?: undefined;
|
|
6400
7054
|
content?: undefined;
|
|
@@ -6450,10 +7104,10 @@ export declare const toolDefinitions: ({
|
|
|
6450
7104
|
labels?: undefined;
|
|
6451
7105
|
fields?: undefined;
|
|
6452
7106
|
users?: undefined;
|
|
7107
|
+
due?: undefined;
|
|
6453
7108
|
accountabilities?: undefined;
|
|
6454
7109
|
domains?: undefined;
|
|
6455
7110
|
data?: undefined;
|
|
6456
|
-
due?: undefined;
|
|
6457
7111
|
completed?: undefined;
|
|
6458
7112
|
body?: undefined;
|
|
6459
7113
|
commentId?: undefined;
|
|
@@ -6471,6 +7125,7 @@ export declare const toolDefinitions: ({
|
|
|
6471
7125
|
includeSubCircles?: undefined;
|
|
6472
7126
|
endDate?: undefined;
|
|
6473
7127
|
metricId?: undefined;
|
|
7128
|
+
agents?: undefined;
|
|
6474
7129
|
username?: undefined;
|
|
6475
7130
|
fullName?: undefined;
|
|
6476
7131
|
language?: undefined;
|
|
@@ -6499,14 +7154,22 @@ export declare const toolDefinitions: ({
|
|
|
6499
7154
|
relation?: undefined;
|
|
6500
7155
|
direction?: undefined;
|
|
6501
7156
|
targetId?: undefined;
|
|
7157
|
+
templateId?: undefined;
|
|
6502
7158
|
name?: undefined;
|
|
6503
7159
|
config?: undefined;
|
|
6504
7160
|
capabilities?: undefined;
|
|
6505
7161
|
exposure?: undefined;
|
|
6506
7162
|
authStrategy?: undefined;
|
|
7163
|
+
roleAssignable?: undefined;
|
|
7164
|
+
agentConfig?: undefined;
|
|
6507
7165
|
connectorId?: undefined;
|
|
6508
7166
|
ownerType?: undefined;
|
|
6509
7167
|
ownerId?: undefined;
|
|
7168
|
+
enabled?: undefined;
|
|
7169
|
+
includeDisabled?: undefined;
|
|
7170
|
+
connectionId?: undefined;
|
|
7171
|
+
agentUserId?: undefined;
|
|
7172
|
+
message?: undefined;
|
|
6510
7173
|
fileId?: undefined;
|
|
6511
7174
|
contentType?: undefined;
|
|
6512
7175
|
content?: undefined;
|
|
@@ -6567,10 +7230,10 @@ export declare const toolDefinitions: ({
|
|
|
6567
7230
|
labels?: undefined;
|
|
6568
7231
|
fields?: undefined;
|
|
6569
7232
|
users?: undefined;
|
|
7233
|
+
due?: undefined;
|
|
6570
7234
|
accountabilities?: undefined;
|
|
6571
7235
|
domains?: undefined;
|
|
6572
7236
|
data?: undefined;
|
|
6573
|
-
due?: undefined;
|
|
6574
7237
|
completed?: undefined;
|
|
6575
7238
|
body?: undefined;
|
|
6576
7239
|
commentId?: undefined;
|
|
@@ -6588,6 +7251,7 @@ export declare const toolDefinitions: ({
|
|
|
6588
7251
|
includeSubCircles?: undefined;
|
|
6589
7252
|
endDate?: undefined;
|
|
6590
7253
|
metricId?: undefined;
|
|
7254
|
+
agents?: undefined;
|
|
6591
7255
|
username?: undefined;
|
|
6592
7256
|
fullName?: undefined;
|
|
6593
7257
|
language?: undefined;
|
|
@@ -6615,14 +7279,22 @@ export declare const toolDefinitions: ({
|
|
|
6615
7279
|
relation?: undefined;
|
|
6616
7280
|
direction?: undefined;
|
|
6617
7281
|
targetId?: undefined;
|
|
7282
|
+
templateId?: undefined;
|
|
6618
7283
|
name?: undefined;
|
|
6619
7284
|
config?: undefined;
|
|
6620
7285
|
capabilities?: undefined;
|
|
6621
7286
|
exposure?: undefined;
|
|
6622
7287
|
authStrategy?: undefined;
|
|
7288
|
+
roleAssignable?: undefined;
|
|
7289
|
+
agentConfig?: undefined;
|
|
6623
7290
|
connectorId?: undefined;
|
|
6624
7291
|
ownerType?: undefined;
|
|
6625
7292
|
ownerId?: undefined;
|
|
7293
|
+
enabled?: undefined;
|
|
7294
|
+
includeDisabled?: undefined;
|
|
7295
|
+
connectionId?: undefined;
|
|
7296
|
+
agentUserId?: undefined;
|
|
7297
|
+
message?: undefined;
|
|
6626
7298
|
fileId?: undefined;
|
|
6627
7299
|
contentType?: undefined;
|
|
6628
7300
|
content?: undefined;
|
|
@@ -6685,10 +7357,10 @@ export declare const toolDefinitions: ({
|
|
|
6685
7357
|
labels?: undefined;
|
|
6686
7358
|
fields?: undefined;
|
|
6687
7359
|
users?: undefined;
|
|
7360
|
+
due?: undefined;
|
|
6688
7361
|
accountabilities?: undefined;
|
|
6689
7362
|
domains?: undefined;
|
|
6690
7363
|
data?: undefined;
|
|
6691
|
-
due?: undefined;
|
|
6692
7364
|
completed?: undefined;
|
|
6693
7365
|
body?: undefined;
|
|
6694
7366
|
commentId?: undefined;
|
|
@@ -6706,6 +7378,7 @@ export declare const toolDefinitions: ({
|
|
|
6706
7378
|
includeSubCircles?: undefined;
|
|
6707
7379
|
endDate?: undefined;
|
|
6708
7380
|
metricId?: undefined;
|
|
7381
|
+
agents?: undefined;
|
|
6709
7382
|
username?: undefined;
|
|
6710
7383
|
fullName?: undefined;
|
|
6711
7384
|
language?: undefined;
|
|
@@ -6733,14 +7406,22 @@ export declare const toolDefinitions: ({
|
|
|
6733
7406
|
relation?: undefined;
|
|
6734
7407
|
direction?: undefined;
|
|
6735
7408
|
targetId?: undefined;
|
|
7409
|
+
templateId?: undefined;
|
|
6736
7410
|
name?: undefined;
|
|
6737
7411
|
config?: undefined;
|
|
6738
7412
|
capabilities?: undefined;
|
|
6739
7413
|
exposure?: undefined;
|
|
6740
7414
|
authStrategy?: undefined;
|
|
7415
|
+
roleAssignable?: undefined;
|
|
7416
|
+
agentConfig?: undefined;
|
|
6741
7417
|
connectorId?: undefined;
|
|
6742
7418
|
ownerType?: undefined;
|
|
6743
7419
|
ownerId?: undefined;
|
|
7420
|
+
enabled?: undefined;
|
|
7421
|
+
includeDisabled?: undefined;
|
|
7422
|
+
connectionId?: undefined;
|
|
7423
|
+
agentUserId?: undefined;
|
|
7424
|
+
message?: undefined;
|
|
6744
7425
|
fileId?: undefined;
|
|
6745
7426
|
contentType?: undefined;
|
|
6746
7427
|
content?: undefined;
|
|
@@ -6799,10 +7480,10 @@ export declare const toolDefinitions: ({
|
|
|
6799
7480
|
labels?: undefined;
|
|
6800
7481
|
fields?: undefined;
|
|
6801
7482
|
users?: undefined;
|
|
7483
|
+
due?: undefined;
|
|
6802
7484
|
accountabilities?: undefined;
|
|
6803
7485
|
domains?: undefined;
|
|
6804
7486
|
data?: undefined;
|
|
6805
|
-
due?: undefined;
|
|
6806
7487
|
completed?: undefined;
|
|
6807
7488
|
body?: undefined;
|
|
6808
7489
|
commentId?: undefined;
|
|
@@ -6820,6 +7501,7 @@ export declare const toolDefinitions: ({
|
|
|
6820
7501
|
includeSubCircles?: undefined;
|
|
6821
7502
|
endDate?: undefined;
|
|
6822
7503
|
metricId?: undefined;
|
|
7504
|
+
agents?: undefined;
|
|
6823
7505
|
username?: undefined;
|
|
6824
7506
|
fullName?: undefined;
|
|
6825
7507
|
language?: undefined;
|
|
@@ -6848,14 +7530,22 @@ export declare const toolDefinitions: ({
|
|
|
6848
7530
|
relation?: undefined;
|
|
6849
7531
|
direction?: undefined;
|
|
6850
7532
|
targetId?: undefined;
|
|
7533
|
+
templateId?: undefined;
|
|
6851
7534
|
name?: undefined;
|
|
6852
7535
|
config?: undefined;
|
|
6853
7536
|
capabilities?: undefined;
|
|
6854
7537
|
exposure?: undefined;
|
|
6855
7538
|
authStrategy?: undefined;
|
|
7539
|
+
roleAssignable?: undefined;
|
|
7540
|
+
agentConfig?: undefined;
|
|
6856
7541
|
connectorId?: undefined;
|
|
6857
7542
|
ownerType?: undefined;
|
|
6858
7543
|
ownerId?: undefined;
|
|
7544
|
+
enabled?: undefined;
|
|
7545
|
+
includeDisabled?: undefined;
|
|
7546
|
+
connectionId?: undefined;
|
|
7547
|
+
agentUserId?: undefined;
|
|
7548
|
+
message?: undefined;
|
|
6859
7549
|
fileId?: undefined;
|
|
6860
7550
|
contentType?: undefined;
|
|
6861
7551
|
content?: undefined;
|
|
@@ -6907,10 +7597,10 @@ export declare const toolDefinitions: ({
|
|
|
6907
7597
|
labels?: undefined;
|
|
6908
7598
|
fields?: undefined;
|
|
6909
7599
|
users?: undefined;
|
|
7600
|
+
due?: undefined;
|
|
6910
7601
|
accountabilities?: undefined;
|
|
6911
7602
|
domains?: undefined;
|
|
6912
7603
|
data?: undefined;
|
|
6913
|
-
due?: undefined;
|
|
6914
7604
|
completed?: undefined;
|
|
6915
7605
|
body?: undefined;
|
|
6916
7606
|
commentId?: undefined;
|
|
@@ -6928,6 +7618,7 @@ export declare const toolDefinitions: ({
|
|
|
6928
7618
|
includeSubCircles?: undefined;
|
|
6929
7619
|
endDate?: undefined;
|
|
6930
7620
|
metricId?: undefined;
|
|
7621
|
+
agents?: undefined;
|
|
6931
7622
|
username?: undefined;
|
|
6932
7623
|
fullName?: undefined;
|
|
6933
7624
|
language?: undefined;
|
|
@@ -6957,14 +7648,22 @@ export declare const toolDefinitions: ({
|
|
|
6957
7648
|
relation?: undefined;
|
|
6958
7649
|
direction?: undefined;
|
|
6959
7650
|
targetId?: undefined;
|
|
7651
|
+
templateId?: undefined;
|
|
6960
7652
|
name?: undefined;
|
|
6961
7653
|
config?: undefined;
|
|
6962
7654
|
capabilities?: undefined;
|
|
6963
7655
|
exposure?: undefined;
|
|
6964
7656
|
authStrategy?: undefined;
|
|
7657
|
+
roleAssignable?: undefined;
|
|
7658
|
+
agentConfig?: undefined;
|
|
6965
7659
|
connectorId?: undefined;
|
|
6966
7660
|
ownerType?: undefined;
|
|
6967
7661
|
ownerId?: undefined;
|
|
7662
|
+
enabled?: undefined;
|
|
7663
|
+
includeDisabled?: undefined;
|
|
7664
|
+
connectionId?: undefined;
|
|
7665
|
+
agentUserId?: undefined;
|
|
7666
|
+
message?: undefined;
|
|
6968
7667
|
fileId?: undefined;
|
|
6969
7668
|
contentType?: undefined;
|
|
6970
7669
|
content?: undefined;
|
|
@@ -7025,10 +7724,10 @@ export declare const toolDefinitions: ({
|
|
|
7025
7724
|
labels?: undefined;
|
|
7026
7725
|
fields?: undefined;
|
|
7027
7726
|
users?: undefined;
|
|
7727
|
+
due?: undefined;
|
|
7028
7728
|
accountabilities?: undefined;
|
|
7029
7729
|
domains?: undefined;
|
|
7030
7730
|
data?: undefined;
|
|
7031
|
-
due?: undefined;
|
|
7032
7731
|
completed?: undefined;
|
|
7033
7732
|
body?: undefined;
|
|
7034
7733
|
commentId?: undefined;
|
|
@@ -7045,6 +7744,7 @@ export declare const toolDefinitions: ({
|
|
|
7045
7744
|
includeSubCircles?: undefined;
|
|
7046
7745
|
endDate?: undefined;
|
|
7047
7746
|
metricId?: undefined;
|
|
7747
|
+
agents?: undefined;
|
|
7048
7748
|
username?: undefined;
|
|
7049
7749
|
fullName?: undefined;
|
|
7050
7750
|
language?: undefined;
|
|
@@ -7074,14 +7774,22 @@ export declare const toolDefinitions: ({
|
|
|
7074
7774
|
relation?: undefined;
|
|
7075
7775
|
direction?: undefined;
|
|
7076
7776
|
targetId?: undefined;
|
|
7777
|
+
templateId?: undefined;
|
|
7077
7778
|
name?: undefined;
|
|
7078
7779
|
config?: undefined;
|
|
7079
7780
|
capabilities?: undefined;
|
|
7080
7781
|
exposure?: undefined;
|
|
7081
7782
|
authStrategy?: undefined;
|
|
7783
|
+
roleAssignable?: undefined;
|
|
7784
|
+
agentConfig?: undefined;
|
|
7082
7785
|
connectorId?: undefined;
|
|
7083
7786
|
ownerType?: undefined;
|
|
7084
7787
|
ownerId?: undefined;
|
|
7788
|
+
enabled?: undefined;
|
|
7789
|
+
includeDisabled?: undefined;
|
|
7790
|
+
connectionId?: undefined;
|
|
7791
|
+
agentUserId?: undefined;
|
|
7792
|
+
message?: undefined;
|
|
7085
7793
|
fileId?: undefined;
|
|
7086
7794
|
contentType?: undefined;
|
|
7087
7795
|
content?: undefined;
|
|
@@ -7137,10 +7845,10 @@ export declare const toolDefinitions: ({
|
|
|
7137
7845
|
labels?: undefined;
|
|
7138
7846
|
fields?: undefined;
|
|
7139
7847
|
users?: undefined;
|
|
7848
|
+
due?: undefined;
|
|
7140
7849
|
accountabilities?: undefined;
|
|
7141
7850
|
domains?: undefined;
|
|
7142
7851
|
data?: undefined;
|
|
7143
|
-
due?: undefined;
|
|
7144
7852
|
completed?: undefined;
|
|
7145
7853
|
body?: undefined;
|
|
7146
7854
|
commentId?: undefined;
|
|
@@ -7157,6 +7865,7 @@ export declare const toolDefinitions: ({
|
|
|
7157
7865
|
includeSubCircles?: undefined;
|
|
7158
7866
|
endDate?: undefined;
|
|
7159
7867
|
metricId?: undefined;
|
|
7868
|
+
agents?: undefined;
|
|
7160
7869
|
username?: undefined;
|
|
7161
7870
|
fullName?: undefined;
|
|
7162
7871
|
language?: undefined;
|
|
@@ -7186,14 +7895,22 @@ export declare const toolDefinitions: ({
|
|
|
7186
7895
|
relation?: undefined;
|
|
7187
7896
|
direction?: undefined;
|
|
7188
7897
|
targetId?: undefined;
|
|
7898
|
+
templateId?: undefined;
|
|
7189
7899
|
name?: undefined;
|
|
7190
7900
|
config?: undefined;
|
|
7191
7901
|
capabilities?: undefined;
|
|
7192
7902
|
exposure?: undefined;
|
|
7193
7903
|
authStrategy?: undefined;
|
|
7904
|
+
roleAssignable?: undefined;
|
|
7905
|
+
agentConfig?: undefined;
|
|
7194
7906
|
connectorId?: undefined;
|
|
7195
7907
|
ownerType?: undefined;
|
|
7196
7908
|
ownerId?: undefined;
|
|
7909
|
+
enabled?: undefined;
|
|
7910
|
+
includeDisabled?: undefined;
|
|
7911
|
+
connectionId?: undefined;
|
|
7912
|
+
agentUserId?: undefined;
|
|
7913
|
+
message?: undefined;
|
|
7197
7914
|
fileId?: undefined;
|
|
7198
7915
|
contentType?: undefined;
|
|
7199
7916
|
content?: undefined;
|
|
@@ -7249,10 +7966,10 @@ export declare const toolDefinitions: ({
|
|
|
7249
7966
|
labels?: undefined;
|
|
7250
7967
|
fields?: undefined;
|
|
7251
7968
|
users?: undefined;
|
|
7969
|
+
due?: undefined;
|
|
7252
7970
|
accountabilities?: undefined;
|
|
7253
7971
|
domains?: undefined;
|
|
7254
7972
|
data?: undefined;
|
|
7255
|
-
due?: undefined;
|
|
7256
7973
|
completed?: undefined;
|
|
7257
7974
|
body?: undefined;
|
|
7258
7975
|
commentId?: undefined;
|
|
@@ -7270,6 +7987,7 @@ export declare const toolDefinitions: ({
|
|
|
7270
7987
|
includeSubCircles?: undefined;
|
|
7271
7988
|
endDate?: undefined;
|
|
7272
7989
|
metricId?: undefined;
|
|
7990
|
+
agents?: undefined;
|
|
7273
7991
|
username?: undefined;
|
|
7274
7992
|
fullName?: undefined;
|
|
7275
7993
|
language?: undefined;
|
|
@@ -7298,14 +8016,22 @@ export declare const toolDefinitions: ({
|
|
|
7298
8016
|
relation?: undefined;
|
|
7299
8017
|
direction?: undefined;
|
|
7300
8018
|
targetId?: undefined;
|
|
8019
|
+
templateId?: undefined;
|
|
7301
8020
|
name?: undefined;
|
|
7302
8021
|
config?: undefined;
|
|
7303
8022
|
capabilities?: undefined;
|
|
7304
8023
|
exposure?: undefined;
|
|
7305
8024
|
authStrategy?: undefined;
|
|
8025
|
+
roleAssignable?: undefined;
|
|
8026
|
+
agentConfig?: undefined;
|
|
7306
8027
|
connectorId?: undefined;
|
|
7307
8028
|
ownerType?: undefined;
|
|
7308
8029
|
ownerId?: undefined;
|
|
8030
|
+
enabled?: undefined;
|
|
8031
|
+
includeDisabled?: undefined;
|
|
8032
|
+
connectionId?: undefined;
|
|
8033
|
+
agentUserId?: undefined;
|
|
8034
|
+
message?: undefined;
|
|
7309
8035
|
fileId?: undefined;
|
|
7310
8036
|
contentType?: undefined;
|
|
7311
8037
|
content?: undefined;
|
|
@@ -7358,10 +8084,10 @@ export declare const toolDefinitions: ({
|
|
|
7358
8084
|
labels?: undefined;
|
|
7359
8085
|
fields?: undefined;
|
|
7360
8086
|
users?: undefined;
|
|
8087
|
+
due?: undefined;
|
|
7361
8088
|
accountabilities?: undefined;
|
|
7362
8089
|
domains?: undefined;
|
|
7363
8090
|
data?: undefined;
|
|
7364
|
-
due?: undefined;
|
|
7365
8091
|
completed?: undefined;
|
|
7366
8092
|
body?: undefined;
|
|
7367
8093
|
commentId?: undefined;
|
|
@@ -7379,6 +8105,7 @@ export declare const toolDefinitions: ({
|
|
|
7379
8105
|
includeSubCircles?: undefined;
|
|
7380
8106
|
endDate?: undefined;
|
|
7381
8107
|
metricId?: undefined;
|
|
8108
|
+
agents?: undefined;
|
|
7382
8109
|
username?: undefined;
|
|
7383
8110
|
fullName?: undefined;
|
|
7384
8111
|
language?: undefined;
|
|
@@ -7407,14 +8134,22 @@ export declare const toolDefinitions: ({
|
|
|
7407
8134
|
relation?: undefined;
|
|
7408
8135
|
direction?: undefined;
|
|
7409
8136
|
targetId?: undefined;
|
|
8137
|
+
templateId?: undefined;
|
|
7410
8138
|
name?: undefined;
|
|
7411
8139
|
config?: undefined;
|
|
7412
8140
|
capabilities?: undefined;
|
|
7413
8141
|
exposure?: undefined;
|
|
7414
8142
|
authStrategy?: undefined;
|
|
8143
|
+
roleAssignable?: undefined;
|
|
8144
|
+
agentConfig?: undefined;
|
|
7415
8145
|
connectorId?: undefined;
|
|
7416
8146
|
ownerType?: undefined;
|
|
7417
8147
|
ownerId?: undefined;
|
|
8148
|
+
enabled?: undefined;
|
|
8149
|
+
includeDisabled?: undefined;
|
|
8150
|
+
connectionId?: undefined;
|
|
8151
|
+
agentUserId?: undefined;
|
|
8152
|
+
message?: undefined;
|
|
7418
8153
|
fileId?: undefined;
|
|
7419
8154
|
contentType?: undefined;
|
|
7420
8155
|
content?: undefined;
|
|
@@ -7467,10 +8202,10 @@ export declare const toolDefinitions: ({
|
|
|
7467
8202
|
labels?: undefined;
|
|
7468
8203
|
fields?: undefined;
|
|
7469
8204
|
users?: undefined;
|
|
8205
|
+
due?: undefined;
|
|
7470
8206
|
accountabilities?: undefined;
|
|
7471
8207
|
domains?: undefined;
|
|
7472
8208
|
data?: undefined;
|
|
7473
|
-
due?: undefined;
|
|
7474
8209
|
completed?: undefined;
|
|
7475
8210
|
body?: undefined;
|
|
7476
8211
|
commentId?: undefined;
|
|
@@ -7488,6 +8223,7 @@ export declare const toolDefinitions: ({
|
|
|
7488
8223
|
includeSubCircles?: undefined;
|
|
7489
8224
|
endDate?: undefined;
|
|
7490
8225
|
metricId?: undefined;
|
|
8226
|
+
agents?: undefined;
|
|
7491
8227
|
username?: undefined;
|
|
7492
8228
|
fullName?: undefined;
|
|
7493
8229
|
language?: undefined;
|
|
@@ -7516,14 +8252,22 @@ export declare const toolDefinitions: ({
|
|
|
7516
8252
|
relation?: undefined;
|
|
7517
8253
|
direction?: undefined;
|
|
7518
8254
|
targetId?: undefined;
|
|
8255
|
+
templateId?: undefined;
|
|
7519
8256
|
name?: undefined;
|
|
7520
8257
|
config?: undefined;
|
|
7521
8258
|
capabilities?: undefined;
|
|
7522
8259
|
exposure?: undefined;
|
|
7523
8260
|
authStrategy?: undefined;
|
|
8261
|
+
roleAssignable?: undefined;
|
|
8262
|
+
agentConfig?: undefined;
|
|
7524
8263
|
connectorId?: undefined;
|
|
7525
8264
|
ownerType?: undefined;
|
|
7526
8265
|
ownerId?: undefined;
|
|
8266
|
+
enabled?: undefined;
|
|
8267
|
+
includeDisabled?: undefined;
|
|
8268
|
+
connectionId?: undefined;
|
|
8269
|
+
agentUserId?: undefined;
|
|
8270
|
+
message?: undefined;
|
|
7527
8271
|
fileId?: undefined;
|
|
7528
8272
|
contentType?: undefined;
|
|
7529
8273
|
content?: undefined;
|
|
@@ -7591,10 +8335,10 @@ export declare const toolDefinitions: ({
|
|
|
7591
8335
|
labels?: undefined;
|
|
7592
8336
|
fields?: undefined;
|
|
7593
8337
|
users?: undefined;
|
|
8338
|
+
due?: undefined;
|
|
7594
8339
|
accountabilities?: undefined;
|
|
7595
8340
|
domains?: undefined;
|
|
7596
8341
|
data?: undefined;
|
|
7597
|
-
due?: undefined;
|
|
7598
8342
|
completed?: undefined;
|
|
7599
8343
|
body?: undefined;
|
|
7600
8344
|
commentId?: undefined;
|
|
@@ -7612,6 +8356,7 @@ export declare const toolDefinitions: ({
|
|
|
7612
8356
|
includeSubCircles?: undefined;
|
|
7613
8357
|
endDate?: undefined;
|
|
7614
8358
|
metricId?: undefined;
|
|
8359
|
+
agents?: undefined;
|
|
7615
8360
|
username?: undefined;
|
|
7616
8361
|
fullName?: undefined;
|
|
7617
8362
|
language?: undefined;
|
|
@@ -7638,14 +8383,22 @@ export declare const toolDefinitions: ({
|
|
|
7638
8383
|
relation?: undefined;
|
|
7639
8384
|
direction?: undefined;
|
|
7640
8385
|
targetId?: undefined;
|
|
8386
|
+
templateId?: undefined;
|
|
7641
8387
|
name?: undefined;
|
|
7642
8388
|
config?: undefined;
|
|
7643
8389
|
capabilities?: undefined;
|
|
7644
8390
|
exposure?: undefined;
|
|
7645
8391
|
authStrategy?: undefined;
|
|
8392
|
+
roleAssignable?: undefined;
|
|
8393
|
+
agentConfig?: undefined;
|
|
7646
8394
|
connectorId?: undefined;
|
|
7647
8395
|
ownerType?: undefined;
|
|
7648
8396
|
ownerId?: undefined;
|
|
8397
|
+
enabled?: undefined;
|
|
8398
|
+
includeDisabled?: undefined;
|
|
8399
|
+
connectionId?: undefined;
|
|
8400
|
+
agentUserId?: undefined;
|
|
8401
|
+
message?: undefined;
|
|
7649
8402
|
fileId?: undefined;
|
|
7650
8403
|
contentType?: undefined;
|
|
7651
8404
|
content?: undefined;
|
|
@@ -7711,10 +8464,10 @@ export declare const toolDefinitions: ({
|
|
|
7711
8464
|
labels?: undefined;
|
|
7712
8465
|
fields?: undefined;
|
|
7713
8466
|
users?: undefined;
|
|
8467
|
+
due?: undefined;
|
|
7714
8468
|
accountabilities?: undefined;
|
|
7715
8469
|
domains?: undefined;
|
|
7716
8470
|
data?: undefined;
|
|
7717
|
-
due?: undefined;
|
|
7718
8471
|
completed?: undefined;
|
|
7719
8472
|
body?: undefined;
|
|
7720
8473
|
commentId?: undefined;
|
|
@@ -7732,6 +8485,7 @@ export declare const toolDefinitions: ({
|
|
|
7732
8485
|
includeSubCircles?: undefined;
|
|
7733
8486
|
endDate?: undefined;
|
|
7734
8487
|
metricId?: undefined;
|
|
8488
|
+
agents?: undefined;
|
|
7735
8489
|
username?: undefined;
|
|
7736
8490
|
fullName?: undefined;
|
|
7737
8491
|
language?: undefined;
|
|
@@ -7759,14 +8513,22 @@ export declare const toolDefinitions: ({
|
|
|
7759
8513
|
relation?: undefined;
|
|
7760
8514
|
direction?: undefined;
|
|
7761
8515
|
targetId?: undefined;
|
|
8516
|
+
templateId?: undefined;
|
|
7762
8517
|
name?: undefined;
|
|
7763
8518
|
config?: undefined;
|
|
7764
8519
|
capabilities?: undefined;
|
|
7765
8520
|
exposure?: undefined;
|
|
7766
8521
|
authStrategy?: undefined;
|
|
8522
|
+
roleAssignable?: undefined;
|
|
8523
|
+
agentConfig?: undefined;
|
|
7767
8524
|
connectorId?: undefined;
|
|
7768
8525
|
ownerType?: undefined;
|
|
7769
8526
|
ownerId?: undefined;
|
|
8527
|
+
enabled?: undefined;
|
|
8528
|
+
includeDisabled?: undefined;
|
|
8529
|
+
connectionId?: undefined;
|
|
8530
|
+
agentUserId?: undefined;
|
|
8531
|
+
message?: undefined;
|
|
7770
8532
|
fileId?: undefined;
|
|
7771
8533
|
contentType?: undefined;
|
|
7772
8534
|
content?: undefined;
|
|
@@ -7822,10 +8584,10 @@ export declare const toolDefinitions: ({
|
|
|
7822
8584
|
labels?: undefined;
|
|
7823
8585
|
fields?: undefined;
|
|
7824
8586
|
users?: undefined;
|
|
8587
|
+
due?: undefined;
|
|
7825
8588
|
accountabilities?: undefined;
|
|
7826
8589
|
domains?: undefined;
|
|
7827
8590
|
data?: undefined;
|
|
7828
|
-
due?: undefined;
|
|
7829
8591
|
completed?: undefined;
|
|
7830
8592
|
body?: undefined;
|
|
7831
8593
|
commentId?: undefined;
|
|
@@ -7843,6 +8605,7 @@ export declare const toolDefinitions: ({
|
|
|
7843
8605
|
includeSubCircles?: undefined;
|
|
7844
8606
|
endDate?: undefined;
|
|
7845
8607
|
metricId?: undefined;
|
|
8608
|
+
agents?: undefined;
|
|
7846
8609
|
username?: undefined;
|
|
7847
8610
|
fullName?: undefined;
|
|
7848
8611
|
language?: undefined;
|
|
@@ -7871,14 +8634,22 @@ export declare const toolDefinitions: ({
|
|
|
7871
8634
|
relation?: undefined;
|
|
7872
8635
|
direction?: undefined;
|
|
7873
8636
|
targetId?: undefined;
|
|
8637
|
+
templateId?: undefined;
|
|
7874
8638
|
name?: undefined;
|
|
7875
8639
|
config?: undefined;
|
|
7876
8640
|
capabilities?: undefined;
|
|
7877
8641
|
exposure?: undefined;
|
|
7878
8642
|
authStrategy?: undefined;
|
|
8643
|
+
roleAssignable?: undefined;
|
|
8644
|
+
agentConfig?: undefined;
|
|
7879
8645
|
connectorId?: undefined;
|
|
7880
8646
|
ownerType?: undefined;
|
|
7881
8647
|
ownerId?: undefined;
|
|
8648
|
+
enabled?: undefined;
|
|
8649
|
+
includeDisabled?: undefined;
|
|
8650
|
+
connectionId?: undefined;
|
|
8651
|
+
agentUserId?: undefined;
|
|
8652
|
+
message?: undefined;
|
|
7882
8653
|
fileId?: undefined;
|
|
7883
8654
|
contentType?: undefined;
|
|
7884
8655
|
content?: undefined;
|
|
@@ -7942,10 +8713,10 @@ export declare const toolDefinitions: ({
|
|
|
7942
8713
|
labels?: undefined;
|
|
7943
8714
|
fields?: undefined;
|
|
7944
8715
|
users?: undefined;
|
|
8716
|
+
due?: undefined;
|
|
7945
8717
|
accountabilities?: undefined;
|
|
7946
8718
|
domains?: undefined;
|
|
7947
8719
|
data?: undefined;
|
|
7948
|
-
due?: undefined;
|
|
7949
8720
|
completed?: undefined;
|
|
7950
8721
|
body?: undefined;
|
|
7951
8722
|
commentId?: undefined;
|
|
@@ -7963,6 +8734,7 @@ export declare const toolDefinitions: ({
|
|
|
7963
8734
|
includeSubCircles?: undefined;
|
|
7964
8735
|
endDate?: undefined;
|
|
7965
8736
|
metricId?: undefined;
|
|
8737
|
+
agents?: undefined;
|
|
7966
8738
|
username?: undefined;
|
|
7967
8739
|
fullName?: undefined;
|
|
7968
8740
|
language?: undefined;
|
|
@@ -7992,14 +8764,22 @@ export declare const toolDefinitions: ({
|
|
|
7992
8764
|
relation?: undefined;
|
|
7993
8765
|
direction?: undefined;
|
|
7994
8766
|
targetId?: undefined;
|
|
8767
|
+
templateId?: undefined;
|
|
7995
8768
|
name?: undefined;
|
|
7996
8769
|
config?: undefined;
|
|
7997
8770
|
capabilities?: undefined;
|
|
7998
8771
|
exposure?: undefined;
|
|
7999
8772
|
authStrategy?: undefined;
|
|
8773
|
+
roleAssignable?: undefined;
|
|
8774
|
+
agentConfig?: undefined;
|
|
8000
8775
|
connectorId?: undefined;
|
|
8001
8776
|
ownerType?: undefined;
|
|
8002
8777
|
ownerId?: undefined;
|
|
8778
|
+
enabled?: undefined;
|
|
8779
|
+
includeDisabled?: undefined;
|
|
8780
|
+
connectionId?: undefined;
|
|
8781
|
+
agentUserId?: undefined;
|
|
8782
|
+
message?: undefined;
|
|
8003
8783
|
fileId?: undefined;
|
|
8004
8784
|
contentType?: undefined;
|
|
8005
8785
|
content?: undefined;
|
|
@@ -8069,10 +8849,10 @@ export declare const toolDefinitions: ({
|
|
|
8069
8849
|
labels?: undefined;
|
|
8070
8850
|
fields?: undefined;
|
|
8071
8851
|
users?: undefined;
|
|
8852
|
+
due?: undefined;
|
|
8072
8853
|
accountabilities?: undefined;
|
|
8073
8854
|
domains?: undefined;
|
|
8074
8855
|
data?: undefined;
|
|
8075
|
-
due?: undefined;
|
|
8076
8856
|
completed?: undefined;
|
|
8077
8857
|
body?: undefined;
|
|
8078
8858
|
commentId?: undefined;
|
|
@@ -8090,6 +8870,7 @@ export declare const toolDefinitions: ({
|
|
|
8090
8870
|
includeSubCircles?: undefined;
|
|
8091
8871
|
endDate?: undefined;
|
|
8092
8872
|
metricId?: undefined;
|
|
8873
|
+
agents?: undefined;
|
|
8093
8874
|
username?: undefined;
|
|
8094
8875
|
fullName?: undefined;
|
|
8095
8876
|
language?: undefined;
|
|
@@ -8116,14 +8897,22 @@ export declare const toolDefinitions: ({
|
|
|
8116
8897
|
relation?: undefined;
|
|
8117
8898
|
direction?: undefined;
|
|
8118
8899
|
targetId?: undefined;
|
|
8900
|
+
templateId?: undefined;
|
|
8119
8901
|
name?: undefined;
|
|
8120
8902
|
config?: undefined;
|
|
8121
8903
|
capabilities?: undefined;
|
|
8122
8904
|
exposure?: undefined;
|
|
8123
8905
|
authStrategy?: undefined;
|
|
8906
|
+
roleAssignable?: undefined;
|
|
8907
|
+
agentConfig?: undefined;
|
|
8124
8908
|
connectorId?: undefined;
|
|
8125
8909
|
ownerType?: undefined;
|
|
8126
8910
|
ownerId?: undefined;
|
|
8911
|
+
enabled?: undefined;
|
|
8912
|
+
includeDisabled?: undefined;
|
|
8913
|
+
connectionId?: undefined;
|
|
8914
|
+
agentUserId?: undefined;
|
|
8915
|
+
message?: undefined;
|
|
8127
8916
|
fileId?: undefined;
|
|
8128
8917
|
contentType?: undefined;
|
|
8129
8918
|
content?: undefined;
|
|
@@ -8251,6 +9040,7 @@ export declare const toolDefinitions: ({
|
|
|
8251
9040
|
includeSubCircles?: undefined;
|
|
8252
9041
|
endDate?: undefined;
|
|
8253
9042
|
metricId?: undefined;
|
|
9043
|
+
agents?: undefined;
|
|
8254
9044
|
username?: undefined;
|
|
8255
9045
|
fullName?: undefined;
|
|
8256
9046
|
language?: undefined;
|
|
@@ -8276,14 +9066,22 @@ export declare const toolDefinitions: ({
|
|
|
8276
9066
|
relation?: undefined;
|
|
8277
9067
|
direction?: undefined;
|
|
8278
9068
|
targetId?: undefined;
|
|
9069
|
+
templateId?: undefined;
|
|
8279
9070
|
name?: undefined;
|
|
8280
9071
|
config?: undefined;
|
|
8281
9072
|
capabilities?: undefined;
|
|
8282
9073
|
exposure?: undefined;
|
|
8283
9074
|
authStrategy?: undefined;
|
|
9075
|
+
roleAssignable?: undefined;
|
|
9076
|
+
agentConfig?: undefined;
|
|
8284
9077
|
connectorId?: undefined;
|
|
8285
9078
|
ownerType?: undefined;
|
|
8286
9079
|
ownerId?: undefined;
|
|
9080
|
+
enabled?: undefined;
|
|
9081
|
+
includeDisabled?: undefined;
|
|
9082
|
+
connectionId?: undefined;
|
|
9083
|
+
agentUserId?: undefined;
|
|
9084
|
+
message?: undefined;
|
|
8287
9085
|
fileId?: undefined;
|
|
8288
9086
|
contentType?: undefined;
|
|
8289
9087
|
content?: undefined;
|
|
@@ -8403,6 +9201,7 @@ export declare const toolDefinitions: ({
|
|
|
8403
9201
|
includeSubCircles?: undefined;
|
|
8404
9202
|
endDate?: undefined;
|
|
8405
9203
|
metricId?: undefined;
|
|
9204
|
+
agents?: undefined;
|
|
8406
9205
|
username?: undefined;
|
|
8407
9206
|
fullName?: undefined;
|
|
8408
9207
|
language?: undefined;
|
|
@@ -8430,14 +9229,22 @@ export declare const toolDefinitions: ({
|
|
|
8430
9229
|
relation?: undefined;
|
|
8431
9230
|
direction?: undefined;
|
|
8432
9231
|
targetId?: undefined;
|
|
9232
|
+
templateId?: undefined;
|
|
8433
9233
|
name?: undefined;
|
|
8434
9234
|
config?: undefined;
|
|
8435
9235
|
capabilities?: undefined;
|
|
8436
9236
|
exposure?: undefined;
|
|
8437
9237
|
authStrategy?: undefined;
|
|
9238
|
+
roleAssignable?: undefined;
|
|
9239
|
+
agentConfig?: undefined;
|
|
8438
9240
|
connectorId?: undefined;
|
|
8439
9241
|
ownerType?: undefined;
|
|
8440
9242
|
ownerId?: undefined;
|
|
9243
|
+
enabled?: undefined;
|
|
9244
|
+
includeDisabled?: undefined;
|
|
9245
|
+
connectionId?: undefined;
|
|
9246
|
+
agentUserId?: undefined;
|
|
9247
|
+
message?: undefined;
|
|
8441
9248
|
fileId?: undefined;
|
|
8442
9249
|
contentType?: undefined;
|
|
8443
9250
|
content?: undefined;
|
|
@@ -8497,10 +9304,10 @@ export declare const toolDefinitions: ({
|
|
|
8497
9304
|
labels?: undefined;
|
|
8498
9305
|
fields?: undefined;
|
|
8499
9306
|
users?: undefined;
|
|
9307
|
+
due?: undefined;
|
|
8500
9308
|
accountabilities?: undefined;
|
|
8501
9309
|
domains?: undefined;
|
|
8502
9310
|
data?: undefined;
|
|
8503
|
-
due?: undefined;
|
|
8504
9311
|
completed?: undefined;
|
|
8505
9312
|
body?: undefined;
|
|
8506
9313
|
commentId?: undefined;
|
|
@@ -8518,6 +9325,7 @@ export declare const toolDefinitions: ({
|
|
|
8518
9325
|
includeSubCircles?: undefined;
|
|
8519
9326
|
endDate?: undefined;
|
|
8520
9327
|
metricId?: undefined;
|
|
9328
|
+
agents?: undefined;
|
|
8521
9329
|
username?: undefined;
|
|
8522
9330
|
fullName?: undefined;
|
|
8523
9331
|
language?: undefined;
|
|
@@ -8545,14 +9353,22 @@ export declare const toolDefinitions: ({
|
|
|
8545
9353
|
relation?: undefined;
|
|
8546
9354
|
direction?: undefined;
|
|
8547
9355
|
targetId?: undefined;
|
|
9356
|
+
templateId?: undefined;
|
|
8548
9357
|
name?: undefined;
|
|
8549
9358
|
config?: undefined;
|
|
8550
9359
|
capabilities?: undefined;
|
|
8551
9360
|
exposure?: undefined;
|
|
8552
9361
|
authStrategy?: undefined;
|
|
9362
|
+
roleAssignable?: undefined;
|
|
9363
|
+
agentConfig?: undefined;
|
|
8553
9364
|
connectorId?: undefined;
|
|
8554
9365
|
ownerType?: undefined;
|
|
8555
9366
|
ownerId?: undefined;
|
|
9367
|
+
enabled?: undefined;
|
|
9368
|
+
includeDisabled?: undefined;
|
|
9369
|
+
connectionId?: undefined;
|
|
9370
|
+
agentUserId?: undefined;
|
|
9371
|
+
message?: undefined;
|
|
8556
9372
|
fileId?: undefined;
|
|
8557
9373
|
contentType?: undefined;
|
|
8558
9374
|
content?: undefined;
|
|
@@ -8617,10 +9433,10 @@ export declare const toolDefinitions: ({
|
|
|
8617
9433
|
description?: undefined;
|
|
8618
9434
|
fields?: undefined;
|
|
8619
9435
|
users?: undefined;
|
|
9436
|
+
due?: undefined;
|
|
8620
9437
|
accountabilities?: undefined;
|
|
8621
9438
|
domains?: undefined;
|
|
8622
9439
|
data?: undefined;
|
|
8623
|
-
due?: undefined;
|
|
8624
9440
|
completed?: undefined;
|
|
8625
9441
|
body?: undefined;
|
|
8626
9442
|
commentId?: undefined;
|
|
@@ -8638,6 +9454,7 @@ export declare const toolDefinitions: ({
|
|
|
8638
9454
|
includeSubCircles?: undefined;
|
|
8639
9455
|
endDate?: undefined;
|
|
8640
9456
|
metricId?: undefined;
|
|
9457
|
+
agents?: undefined;
|
|
8641
9458
|
username?: undefined;
|
|
8642
9459
|
fullName?: undefined;
|
|
8643
9460
|
language?: undefined;
|
|
@@ -8665,14 +9482,22 @@ export declare const toolDefinitions: ({
|
|
|
8665
9482
|
relation?: undefined;
|
|
8666
9483
|
direction?: undefined;
|
|
8667
9484
|
targetId?: undefined;
|
|
9485
|
+
templateId?: undefined;
|
|
8668
9486
|
name?: undefined;
|
|
8669
9487
|
config?: undefined;
|
|
8670
9488
|
capabilities?: undefined;
|
|
8671
9489
|
exposure?: undefined;
|
|
8672
9490
|
authStrategy?: undefined;
|
|
9491
|
+
roleAssignable?: undefined;
|
|
9492
|
+
agentConfig?: undefined;
|
|
8673
9493
|
connectorId?: undefined;
|
|
8674
9494
|
ownerType?: undefined;
|
|
8675
9495
|
ownerId?: undefined;
|
|
9496
|
+
enabled?: undefined;
|
|
9497
|
+
includeDisabled?: undefined;
|
|
9498
|
+
connectionId?: undefined;
|
|
9499
|
+
agentUserId?: undefined;
|
|
9500
|
+
message?: undefined;
|
|
8676
9501
|
fileId?: undefined;
|
|
8677
9502
|
contentType?: undefined;
|
|
8678
9503
|
content?: undefined;
|
|
@@ -8735,10 +9560,10 @@ export declare const toolDefinitions: ({
|
|
|
8735
9560
|
labels?: undefined;
|
|
8736
9561
|
fields?: undefined;
|
|
8737
9562
|
users?: undefined;
|
|
9563
|
+
due?: undefined;
|
|
8738
9564
|
accountabilities?: undefined;
|
|
8739
9565
|
domains?: undefined;
|
|
8740
9566
|
data?: undefined;
|
|
8741
|
-
due?: undefined;
|
|
8742
9567
|
completed?: undefined;
|
|
8743
9568
|
body?: undefined;
|
|
8744
9569
|
commentId?: undefined;
|
|
@@ -8756,6 +9581,7 @@ export declare const toolDefinitions: ({
|
|
|
8756
9581
|
includeSubCircles?: undefined;
|
|
8757
9582
|
endDate?: undefined;
|
|
8758
9583
|
metricId?: undefined;
|
|
9584
|
+
agents?: undefined;
|
|
8759
9585
|
username?: undefined;
|
|
8760
9586
|
fullName?: undefined;
|
|
8761
9587
|
language?: undefined;
|
|
@@ -8782,14 +9608,22 @@ export declare const toolDefinitions: ({
|
|
|
8782
9608
|
relation?: undefined;
|
|
8783
9609
|
direction?: undefined;
|
|
8784
9610
|
targetId?: undefined;
|
|
9611
|
+
templateId?: undefined;
|
|
8785
9612
|
name?: undefined;
|
|
8786
9613
|
config?: undefined;
|
|
8787
9614
|
capabilities?: undefined;
|
|
8788
9615
|
exposure?: undefined;
|
|
8789
9616
|
authStrategy?: undefined;
|
|
9617
|
+
roleAssignable?: undefined;
|
|
9618
|
+
agentConfig?: undefined;
|
|
8790
9619
|
connectorId?: undefined;
|
|
8791
9620
|
ownerType?: undefined;
|
|
8792
9621
|
ownerId?: undefined;
|
|
9622
|
+
enabled?: undefined;
|
|
9623
|
+
includeDisabled?: undefined;
|
|
9624
|
+
connectionId?: undefined;
|
|
9625
|
+
agentUserId?: undefined;
|
|
9626
|
+
message?: undefined;
|
|
8793
9627
|
fileId?: undefined;
|
|
8794
9628
|
contentType?: undefined;
|
|
8795
9629
|
content?: undefined;
|
|
@@ -8849,10 +9683,10 @@ export declare const toolDefinitions: ({
|
|
|
8849
9683
|
labels?: undefined;
|
|
8850
9684
|
fields?: undefined;
|
|
8851
9685
|
users?: undefined;
|
|
9686
|
+
due?: undefined;
|
|
8852
9687
|
accountabilities?: undefined;
|
|
8853
9688
|
domains?: undefined;
|
|
8854
9689
|
data?: undefined;
|
|
8855
|
-
due?: undefined;
|
|
8856
9690
|
completed?: undefined;
|
|
8857
9691
|
body?: undefined;
|
|
8858
9692
|
commentId?: undefined;
|
|
@@ -8870,6 +9704,7 @@ export declare const toolDefinitions: ({
|
|
|
8870
9704
|
includeSubCircles?: undefined;
|
|
8871
9705
|
endDate?: undefined;
|
|
8872
9706
|
metricId?: undefined;
|
|
9707
|
+
agents?: undefined;
|
|
8873
9708
|
username?: undefined;
|
|
8874
9709
|
fullName?: undefined;
|
|
8875
9710
|
language?: undefined;
|
|
@@ -8896,14 +9731,22 @@ export declare const toolDefinitions: ({
|
|
|
8896
9731
|
relation?: undefined;
|
|
8897
9732
|
direction?: undefined;
|
|
8898
9733
|
targetId?: undefined;
|
|
9734
|
+
templateId?: undefined;
|
|
8899
9735
|
name?: undefined;
|
|
8900
9736
|
config?: undefined;
|
|
8901
9737
|
capabilities?: undefined;
|
|
8902
9738
|
exposure?: undefined;
|
|
8903
9739
|
authStrategy?: undefined;
|
|
9740
|
+
roleAssignable?: undefined;
|
|
9741
|
+
agentConfig?: undefined;
|
|
8904
9742
|
connectorId?: undefined;
|
|
8905
9743
|
ownerType?: undefined;
|
|
8906
9744
|
ownerId?: undefined;
|
|
9745
|
+
enabled?: undefined;
|
|
9746
|
+
includeDisabled?: undefined;
|
|
9747
|
+
connectionId?: undefined;
|
|
9748
|
+
agentUserId?: undefined;
|
|
9749
|
+
message?: undefined;
|
|
8907
9750
|
fileId?: undefined;
|
|
8908
9751
|
contentType?: undefined;
|
|
8909
9752
|
content?: undefined;
|
|
@@ -8964,10 +9807,10 @@ export declare const toolDefinitions: ({
|
|
|
8964
9807
|
labels?: undefined;
|
|
8965
9808
|
fields?: undefined;
|
|
8966
9809
|
users?: undefined;
|
|
9810
|
+
due?: undefined;
|
|
8967
9811
|
accountabilities?: undefined;
|
|
8968
9812
|
domains?: undefined;
|
|
8969
9813
|
data?: undefined;
|
|
8970
|
-
due?: undefined;
|
|
8971
9814
|
completed?: undefined;
|
|
8972
9815
|
body?: undefined;
|
|
8973
9816
|
commentId?: undefined;
|
|
@@ -8985,6 +9828,7 @@ export declare const toolDefinitions: ({
|
|
|
8985
9828
|
includeSubCircles?: undefined;
|
|
8986
9829
|
endDate?: undefined;
|
|
8987
9830
|
metricId?: undefined;
|
|
9831
|
+
agents?: undefined;
|
|
8988
9832
|
username?: undefined;
|
|
8989
9833
|
fullName?: undefined;
|
|
8990
9834
|
language?: undefined;
|
|
@@ -9012,14 +9856,22 @@ export declare const toolDefinitions: ({
|
|
|
9012
9856
|
relation?: undefined;
|
|
9013
9857
|
direction?: undefined;
|
|
9014
9858
|
targetId?: undefined;
|
|
9859
|
+
templateId?: undefined;
|
|
9015
9860
|
name?: undefined;
|
|
9016
9861
|
config?: undefined;
|
|
9017
9862
|
capabilities?: undefined;
|
|
9018
9863
|
exposure?: undefined;
|
|
9019
9864
|
authStrategy?: undefined;
|
|
9865
|
+
roleAssignable?: undefined;
|
|
9866
|
+
agentConfig?: undefined;
|
|
9020
9867
|
connectorId?: undefined;
|
|
9021
9868
|
ownerType?: undefined;
|
|
9022
9869
|
ownerId?: undefined;
|
|
9870
|
+
enabled?: undefined;
|
|
9871
|
+
includeDisabled?: undefined;
|
|
9872
|
+
connectionId?: undefined;
|
|
9873
|
+
agentUserId?: undefined;
|
|
9874
|
+
message?: undefined;
|
|
9023
9875
|
fileId?: undefined;
|
|
9024
9876
|
contentType?: undefined;
|
|
9025
9877
|
content?: undefined;
|
|
@@ -9086,10 +9938,10 @@ export declare const toolDefinitions: ({
|
|
|
9086
9938
|
labels?: undefined;
|
|
9087
9939
|
fields?: undefined;
|
|
9088
9940
|
users?: undefined;
|
|
9941
|
+
due?: undefined;
|
|
9089
9942
|
accountabilities?: undefined;
|
|
9090
9943
|
domains?: undefined;
|
|
9091
9944
|
data?: undefined;
|
|
9092
|
-
due?: undefined;
|
|
9093
9945
|
completed?: undefined;
|
|
9094
9946
|
body?: undefined;
|
|
9095
9947
|
commentId?: undefined;
|
|
@@ -9107,6 +9959,7 @@ export declare const toolDefinitions: ({
|
|
|
9107
9959
|
includeSubCircles?: undefined;
|
|
9108
9960
|
endDate?: undefined;
|
|
9109
9961
|
metricId?: undefined;
|
|
9962
|
+
agents?: undefined;
|
|
9110
9963
|
username?: undefined;
|
|
9111
9964
|
fullName?: undefined;
|
|
9112
9965
|
language?: undefined;
|
|
@@ -9134,14 +9987,22 @@ export declare const toolDefinitions: ({
|
|
|
9134
9987
|
childId?: undefined;
|
|
9135
9988
|
status?: undefined;
|
|
9136
9989
|
targetId?: undefined;
|
|
9990
|
+
templateId?: undefined;
|
|
9137
9991
|
name?: undefined;
|
|
9138
9992
|
config?: undefined;
|
|
9139
9993
|
capabilities?: undefined;
|
|
9140
9994
|
exposure?: undefined;
|
|
9141
9995
|
authStrategy?: undefined;
|
|
9996
|
+
roleAssignable?: undefined;
|
|
9997
|
+
agentConfig?: undefined;
|
|
9142
9998
|
connectorId?: undefined;
|
|
9143
9999
|
ownerType?: undefined;
|
|
9144
10000
|
ownerId?: undefined;
|
|
10001
|
+
enabled?: undefined;
|
|
10002
|
+
includeDisabled?: undefined;
|
|
10003
|
+
connectionId?: undefined;
|
|
10004
|
+
agentUserId?: undefined;
|
|
10005
|
+
message?: undefined;
|
|
9145
10006
|
fileId?: undefined;
|
|
9146
10007
|
contentType?: undefined;
|
|
9147
10008
|
content?: undefined;
|
|
@@ -9201,10 +10062,10 @@ export declare const toolDefinitions: ({
|
|
|
9201
10062
|
labels?: undefined;
|
|
9202
10063
|
fields?: undefined;
|
|
9203
10064
|
users?: undefined;
|
|
10065
|
+
due?: undefined;
|
|
9204
10066
|
accountabilities?: undefined;
|
|
9205
10067
|
domains?: undefined;
|
|
9206
10068
|
data?: undefined;
|
|
9207
|
-
due?: undefined;
|
|
9208
10069
|
completed?: undefined;
|
|
9209
10070
|
body?: undefined;
|
|
9210
10071
|
commentId?: undefined;
|
|
@@ -9222,6 +10083,7 @@ export declare const toolDefinitions: ({
|
|
|
9222
10083
|
includeSubCircles?: undefined;
|
|
9223
10084
|
endDate?: undefined;
|
|
9224
10085
|
metricId?: undefined;
|
|
10086
|
+
agents?: undefined;
|
|
9225
10087
|
username?: undefined;
|
|
9226
10088
|
fullName?: undefined;
|
|
9227
10089
|
language?: undefined;
|
|
@@ -9249,14 +10111,22 @@ export declare const toolDefinitions: ({
|
|
|
9249
10111
|
childId?: undefined;
|
|
9250
10112
|
status?: undefined;
|
|
9251
10113
|
direction?: undefined;
|
|
10114
|
+
templateId?: undefined;
|
|
9252
10115
|
name?: undefined;
|
|
9253
10116
|
config?: undefined;
|
|
9254
10117
|
capabilities?: undefined;
|
|
9255
10118
|
exposure?: undefined;
|
|
9256
10119
|
authStrategy?: undefined;
|
|
10120
|
+
roleAssignable?: undefined;
|
|
10121
|
+
agentConfig?: undefined;
|
|
9257
10122
|
connectorId?: undefined;
|
|
9258
10123
|
ownerType?: undefined;
|
|
9259
10124
|
ownerId?: undefined;
|
|
10125
|
+
enabled?: undefined;
|
|
10126
|
+
includeDisabled?: undefined;
|
|
10127
|
+
connectionId?: undefined;
|
|
10128
|
+
agentUserId?: undefined;
|
|
10129
|
+
message?: undefined;
|
|
9260
10130
|
fileId?: undefined;
|
|
9261
10131
|
contentType?: undefined;
|
|
9262
10132
|
content?: undefined;
|
|
@@ -9274,6 +10144,10 @@ export declare const toolDefinitions: ({
|
|
|
9274
10144
|
inputSchema: {
|
|
9275
10145
|
type: "object";
|
|
9276
10146
|
properties: {
|
|
10147
|
+
templateId: {
|
|
10148
|
+
type: string;
|
|
10149
|
+
description: string;
|
|
10150
|
+
};
|
|
9277
10151
|
workspaceId: {
|
|
9278
10152
|
type: string;
|
|
9279
10153
|
description: string;
|
|
@@ -9333,10 +10207,10 @@ export declare const toolDefinitions: ({
|
|
|
9333
10207
|
labels?: undefined;
|
|
9334
10208
|
fields?: undefined;
|
|
9335
10209
|
users?: undefined;
|
|
10210
|
+
due?: undefined;
|
|
9336
10211
|
accountabilities?: undefined;
|
|
9337
10212
|
domains?: undefined;
|
|
9338
10213
|
data?: undefined;
|
|
9339
|
-
due?: undefined;
|
|
9340
10214
|
completed?: undefined;
|
|
9341
10215
|
body?: undefined;
|
|
9342
10216
|
commentId?: undefined;
|
|
@@ -9354,6 +10228,7 @@ export declare const toolDefinitions: ({
|
|
|
9354
10228
|
includeSubCircles?: undefined;
|
|
9355
10229
|
endDate?: undefined;
|
|
9356
10230
|
metricId?: undefined;
|
|
10231
|
+
agents?: undefined;
|
|
9357
10232
|
username?: undefined;
|
|
9358
10233
|
fullName?: undefined;
|
|
9359
10234
|
language?: undefined;
|
|
@@ -9383,9 +10258,16 @@ export declare const toolDefinitions: ({
|
|
|
9383
10258
|
relation?: undefined;
|
|
9384
10259
|
direction?: undefined;
|
|
9385
10260
|
targetId?: undefined;
|
|
10261
|
+
roleAssignable?: undefined;
|
|
10262
|
+
agentConfig?: undefined;
|
|
9386
10263
|
connectorId?: undefined;
|
|
9387
10264
|
ownerType?: undefined;
|
|
9388
10265
|
ownerId?: undefined;
|
|
10266
|
+
enabled?: undefined;
|
|
10267
|
+
includeDisabled?: undefined;
|
|
10268
|
+
connectionId?: undefined;
|
|
10269
|
+
agentUserId?: undefined;
|
|
10270
|
+
message?: undefined;
|
|
9389
10271
|
fileId?: undefined;
|
|
9390
10272
|
contentType?: undefined;
|
|
9391
10273
|
content?: undefined;
|
|
@@ -9407,16 +10289,19 @@ export declare const toolDefinitions: ({
|
|
|
9407
10289
|
type: string;
|
|
9408
10290
|
description: string;
|
|
9409
10291
|
};
|
|
9410
|
-
|
|
10292
|
+
name: {
|
|
9411
10293
|
type: string;
|
|
9412
10294
|
description: string;
|
|
9413
10295
|
};
|
|
9414
|
-
|
|
10296
|
+
description: {
|
|
9415
10297
|
type: string;
|
|
9416
|
-
enum: string[];
|
|
9417
10298
|
description: string;
|
|
9418
10299
|
};
|
|
9419
|
-
|
|
10300
|
+
roleAssignable: {
|
|
10301
|
+
type: string;
|
|
10302
|
+
description: string;
|
|
10303
|
+
};
|
|
10304
|
+
agentConfig: {
|
|
9420
10305
|
type: string;
|
|
9421
10306
|
description: string;
|
|
9422
10307
|
};
|
|
@@ -9446,14 +10331,13 @@ export declare const toolDefinitions: ({
|
|
|
9446
10331
|
forUser?: undefined;
|
|
9447
10332
|
whoCan?: undefined;
|
|
9448
10333
|
parentId?: undefined;
|
|
9449
|
-
description?: undefined;
|
|
9450
10334
|
labels?: undefined;
|
|
9451
10335
|
fields?: undefined;
|
|
9452
10336
|
users?: undefined;
|
|
10337
|
+
due?: undefined;
|
|
9453
10338
|
accountabilities?: undefined;
|
|
9454
10339
|
domains?: undefined;
|
|
9455
10340
|
data?: undefined;
|
|
9456
|
-
due?: undefined;
|
|
9457
10341
|
completed?: undefined;
|
|
9458
10342
|
body?: undefined;
|
|
9459
10343
|
commentId?: undefined;
|
|
@@ -9471,6 +10355,7 @@ export declare const toolDefinitions: ({
|
|
|
9471
10355
|
includeSubCircles?: undefined;
|
|
9472
10356
|
endDate?: undefined;
|
|
9473
10357
|
metricId?: undefined;
|
|
10358
|
+
agents?: undefined;
|
|
9474
10359
|
username?: undefined;
|
|
9475
10360
|
fullName?: undefined;
|
|
9476
10361
|
language?: undefined;
|
|
@@ -9500,11 +10385,19 @@ export declare const toolDefinitions: ({
|
|
|
9500
10385
|
relation?: undefined;
|
|
9501
10386
|
direction?: undefined;
|
|
9502
10387
|
targetId?: undefined;
|
|
9503
|
-
|
|
10388
|
+
templateId?: undefined;
|
|
9504
10389
|
config?: undefined;
|
|
9505
10390
|
capabilities?: undefined;
|
|
9506
10391
|
exposure?: undefined;
|
|
9507
10392
|
authStrategy?: undefined;
|
|
10393
|
+
connectorId?: undefined;
|
|
10394
|
+
ownerType?: undefined;
|
|
10395
|
+
ownerId?: undefined;
|
|
10396
|
+
enabled?: undefined;
|
|
10397
|
+
includeDisabled?: undefined;
|
|
10398
|
+
connectionId?: undefined;
|
|
10399
|
+
agentUserId?: undefined;
|
|
10400
|
+
message?: undefined;
|
|
9508
10401
|
fileId?: undefined;
|
|
9509
10402
|
contentType?: undefined;
|
|
9510
10403
|
content?: undefined;
|
|
@@ -9522,11 +10415,20 @@ export declare const toolDefinitions: ({
|
|
|
9522
10415
|
inputSchema: {
|
|
9523
10416
|
type: "object";
|
|
9524
10417
|
properties: {
|
|
9525
|
-
|
|
10418
|
+
workspaceId: {
|
|
9526
10419
|
type: string;
|
|
9527
10420
|
description: string;
|
|
9528
10421
|
};
|
|
9529
|
-
|
|
10422
|
+
connectorId: {
|
|
10423
|
+
type: string;
|
|
10424
|
+
description: string;
|
|
10425
|
+
};
|
|
10426
|
+
ownerType: {
|
|
10427
|
+
type: string;
|
|
10428
|
+
enum: string[];
|
|
10429
|
+
description: string;
|
|
10430
|
+
};
|
|
10431
|
+
ownerId: {
|
|
9530
10432
|
type: string;
|
|
9531
10433
|
description: string;
|
|
9532
10434
|
};
|
|
@@ -9539,7 +10441,6 @@ export declare const toolDefinitions: ({
|
|
|
9539
10441
|
limit?: undefined;
|
|
9540
10442
|
page?: undefined;
|
|
9541
10443
|
stripDescription?: undefined;
|
|
9542
|
-
workspaceId?: undefined;
|
|
9543
10444
|
title?: undefined;
|
|
9544
10445
|
purpose?: undefined;
|
|
9545
10446
|
type?: undefined;
|
|
@@ -9549,6 +10450,7 @@ export declare const toolDefinitions: ({
|
|
|
9549
10450
|
layout?: undefined;
|
|
9550
10451
|
query?: undefined;
|
|
9551
10452
|
_listTitle?: undefined;
|
|
10453
|
+
nestId?: undefined;
|
|
9552
10454
|
fieldsMetaData?: undefined;
|
|
9553
10455
|
hints?: undefined;
|
|
9554
10456
|
provenance?: undefined;
|
|
@@ -9560,10 +10462,10 @@ export declare const toolDefinitions: ({
|
|
|
9560
10462
|
labels?: undefined;
|
|
9561
10463
|
fields?: undefined;
|
|
9562
10464
|
users?: undefined;
|
|
10465
|
+
due?: undefined;
|
|
9563
10466
|
accountabilities?: undefined;
|
|
9564
10467
|
domains?: undefined;
|
|
9565
10468
|
data?: undefined;
|
|
9566
|
-
due?: undefined;
|
|
9567
10469
|
completed?: undefined;
|
|
9568
10470
|
body?: undefined;
|
|
9569
10471
|
commentId?: undefined;
|
|
@@ -9581,6 +10483,7 @@ export declare const toolDefinitions: ({
|
|
|
9581
10483
|
includeSubCircles?: undefined;
|
|
9582
10484
|
endDate?: undefined;
|
|
9583
10485
|
metricId?: undefined;
|
|
10486
|
+
agents?: undefined;
|
|
9584
10487
|
username?: undefined;
|
|
9585
10488
|
fullName?: undefined;
|
|
9586
10489
|
language?: undefined;
|
|
@@ -9610,14 +10513,20 @@ export declare const toolDefinitions: ({
|
|
|
9610
10513
|
relation?: undefined;
|
|
9611
10514
|
direction?: undefined;
|
|
9612
10515
|
targetId?: undefined;
|
|
10516
|
+
templateId?: undefined;
|
|
9613
10517
|
name?: undefined;
|
|
9614
10518
|
config?: undefined;
|
|
9615
10519
|
capabilities?: undefined;
|
|
9616
10520
|
exposure?: undefined;
|
|
9617
10521
|
authStrategy?: undefined;
|
|
9618
|
-
|
|
9619
|
-
|
|
9620
|
-
|
|
10522
|
+
roleAssignable?: undefined;
|
|
10523
|
+
agentConfig?: undefined;
|
|
10524
|
+
enabled?: undefined;
|
|
10525
|
+
includeDisabled?: undefined;
|
|
10526
|
+
connectionId?: undefined;
|
|
10527
|
+
agentUserId?: undefined;
|
|
10528
|
+
message?: undefined;
|
|
10529
|
+
fileId?: undefined;
|
|
9621
10530
|
contentType?: undefined;
|
|
9622
10531
|
content?: undefined;
|
|
9623
10532
|
dataBase64?: undefined;
|
|
@@ -9634,23 +10543,41 @@ export declare const toolDefinitions: ({
|
|
|
9634
10543
|
inputSchema: {
|
|
9635
10544
|
type: "object";
|
|
9636
10545
|
properties: {
|
|
9637
|
-
|
|
10546
|
+
workspaceId: {
|
|
10547
|
+
type: string;
|
|
10548
|
+
description: string;
|
|
10549
|
+
};
|
|
10550
|
+
connectorId: {
|
|
10551
|
+
type: string;
|
|
10552
|
+
description: string;
|
|
10553
|
+
};
|
|
10554
|
+
type: {
|
|
9638
10555
|
type: string;
|
|
10556
|
+
enum: string[];
|
|
9639
10557
|
description: string;
|
|
9640
10558
|
};
|
|
9641
10559
|
name: {
|
|
9642
10560
|
type: string;
|
|
9643
10561
|
description: string;
|
|
9644
10562
|
};
|
|
9645
|
-
|
|
10563
|
+
config: {
|
|
9646
10564
|
type: string;
|
|
9647
10565
|
description: string;
|
|
9648
10566
|
};
|
|
9649
|
-
|
|
10567
|
+
capabilities: {
|
|
9650
10568
|
type: string;
|
|
9651
10569
|
description: string;
|
|
9652
10570
|
};
|
|
9653
|
-
|
|
10571
|
+
exposure: {
|
|
10572
|
+
type: string;
|
|
10573
|
+
description: string;
|
|
10574
|
+
};
|
|
10575
|
+
authStrategy: {
|
|
10576
|
+
type: string;
|
|
10577
|
+
enum: string[];
|
|
10578
|
+
description: string;
|
|
10579
|
+
};
|
|
10580
|
+
enabled: {
|
|
9654
10581
|
type: string;
|
|
9655
10582
|
description: string;
|
|
9656
10583
|
};
|
|
@@ -9663,16 +10590,15 @@ export declare const toolDefinitions: ({
|
|
|
9663
10590
|
limit?: undefined;
|
|
9664
10591
|
page?: undefined;
|
|
9665
10592
|
stripDescription?: undefined;
|
|
9666
|
-
workspaceId?: undefined;
|
|
9667
10593
|
title?: undefined;
|
|
9668
10594
|
purpose?: undefined;
|
|
9669
|
-
type?: undefined;
|
|
9670
10595
|
governance?: undefined;
|
|
9671
10596
|
plan?: undefined;
|
|
9672
10597
|
apps?: undefined;
|
|
9673
10598
|
layout?: undefined;
|
|
9674
10599
|
query?: undefined;
|
|
9675
10600
|
_listTitle?: undefined;
|
|
10601
|
+
nestId?: undefined;
|
|
9676
10602
|
fieldsMetaData?: undefined;
|
|
9677
10603
|
hints?: undefined;
|
|
9678
10604
|
provenance?: undefined;
|
|
@@ -9684,10 +10610,869 @@ export declare const toolDefinitions: ({
|
|
|
9684
10610
|
labels?: undefined;
|
|
9685
10611
|
fields?: undefined;
|
|
9686
10612
|
users?: undefined;
|
|
10613
|
+
due?: undefined;
|
|
10614
|
+
accountabilities?: undefined;
|
|
10615
|
+
domains?: undefined;
|
|
10616
|
+
data?: undefined;
|
|
10617
|
+
completed?: undefined;
|
|
10618
|
+
body?: undefined;
|
|
10619
|
+
commentId?: undefined;
|
|
10620
|
+
circleId?: undefined;
|
|
10621
|
+
userId?: undefined;
|
|
10622
|
+
withUser?: undefined;
|
|
10623
|
+
unread?: undefined;
|
|
10624
|
+
includeCompleted?: undefined;
|
|
10625
|
+
user?: undefined;
|
|
10626
|
+
key?: undefined;
|
|
10627
|
+
threadId?: undefined;
|
|
10628
|
+
depth?: undefined;
|
|
10629
|
+
postId?: undefined;
|
|
10630
|
+
reason?: undefined;
|
|
10631
|
+
includeSubCircles?: undefined;
|
|
10632
|
+
endDate?: undefined;
|
|
10633
|
+
metricId?: undefined;
|
|
10634
|
+
agents?: undefined;
|
|
10635
|
+
username?: undefined;
|
|
10636
|
+
fullName?: undefined;
|
|
10637
|
+
language?: undefined;
|
|
10638
|
+
labelId?: undefined;
|
|
10639
|
+
from?: undefined;
|
|
10640
|
+
to?: undefined;
|
|
10641
|
+
completedAfter?: undefined;
|
|
10642
|
+
nestIds?: undefined;
|
|
10643
|
+
position?: undefined;
|
|
10644
|
+
relatedNestId?: undefined;
|
|
10645
|
+
color?: undefined;
|
|
10646
|
+
icon?: undefined;
|
|
10647
|
+
fullWorkspaces?: undefined;
|
|
10648
|
+
context?: undefined;
|
|
10649
|
+
skip?: undefined;
|
|
10650
|
+
showRead?: undefined;
|
|
10651
|
+
group?: undefined;
|
|
10652
|
+
feeling?: undefined;
|
|
10653
|
+
needs?: undefined;
|
|
10654
|
+
tensionId?: undefined;
|
|
10655
|
+
_id?: undefined;
|
|
10656
|
+
roleId?: undefined;
|
|
10657
|
+
removeNest?: undefined;
|
|
10658
|
+
partId?: undefined;
|
|
10659
|
+
childId?: undefined;
|
|
10660
|
+
status?: undefined;
|
|
10661
|
+
relation?: undefined;
|
|
10662
|
+
direction?: undefined;
|
|
10663
|
+
targetId?: undefined;
|
|
10664
|
+
templateId?: undefined;
|
|
10665
|
+
roleAssignable?: undefined;
|
|
10666
|
+
agentConfig?: undefined;
|
|
10667
|
+
ownerType?: undefined;
|
|
10668
|
+
ownerId?: undefined;
|
|
10669
|
+
includeDisabled?: undefined;
|
|
10670
|
+
connectionId?: undefined;
|
|
10671
|
+
agentUserId?: undefined;
|
|
10672
|
+
message?: undefined;
|
|
10673
|
+
fileId?: undefined;
|
|
10674
|
+
contentType?: undefined;
|
|
10675
|
+
content?: undefined;
|
|
10676
|
+
dataBase64?: undefined;
|
|
10677
|
+
};
|
|
10678
|
+
required: string[];
|
|
10679
|
+
};
|
|
10680
|
+
} | {
|
|
10681
|
+
annotations: {
|
|
10682
|
+
readOnlyHint: boolean;
|
|
10683
|
+
destructiveHint: boolean;
|
|
10684
|
+
};
|
|
10685
|
+
name: string;
|
|
10686
|
+
description: string;
|
|
10687
|
+
inputSchema: {
|
|
10688
|
+
type: "object";
|
|
10689
|
+
properties: {
|
|
10690
|
+
workspaceId: {
|
|
10691
|
+
type: string;
|
|
10692
|
+
description: string;
|
|
10693
|
+
};
|
|
10694
|
+
connectorId: {
|
|
10695
|
+
type: string;
|
|
10696
|
+
description: string;
|
|
10697
|
+
};
|
|
10698
|
+
topic?: undefined;
|
|
10699
|
+
search?: undefined;
|
|
10700
|
+
includeImages?: undefined;
|
|
10701
|
+
imageIndexes?: undefined;
|
|
10702
|
+
maxImages?: undefined;
|
|
10703
|
+
sort?: undefined;
|
|
10704
|
+
limit?: undefined;
|
|
10705
|
+
page?: undefined;
|
|
10706
|
+
stripDescription?: undefined;
|
|
10707
|
+
title?: undefined;
|
|
10708
|
+
purpose?: undefined;
|
|
10709
|
+
type?: undefined;
|
|
10710
|
+
governance?: undefined;
|
|
10711
|
+
plan?: undefined;
|
|
10712
|
+
apps?: undefined;
|
|
10713
|
+
layout?: undefined;
|
|
10714
|
+
query?: undefined;
|
|
10715
|
+
_listTitle?: undefined;
|
|
10716
|
+
nestId?: undefined;
|
|
10717
|
+
fieldsMetaData?: undefined;
|
|
10718
|
+
hints?: undefined;
|
|
10719
|
+
provenance?: undefined;
|
|
10720
|
+
rights?: undefined;
|
|
10721
|
+
forUser?: undefined;
|
|
10722
|
+
whoCan?: undefined;
|
|
10723
|
+
parentId?: undefined;
|
|
10724
|
+
description?: undefined;
|
|
10725
|
+
labels?: undefined;
|
|
10726
|
+
fields?: undefined;
|
|
10727
|
+
users?: undefined;
|
|
10728
|
+
due?: undefined;
|
|
10729
|
+
accountabilities?: undefined;
|
|
10730
|
+
domains?: undefined;
|
|
10731
|
+
data?: undefined;
|
|
10732
|
+
completed?: undefined;
|
|
10733
|
+
body?: undefined;
|
|
10734
|
+
commentId?: undefined;
|
|
10735
|
+
circleId?: undefined;
|
|
10736
|
+
userId?: undefined;
|
|
10737
|
+
withUser?: undefined;
|
|
10738
|
+
unread?: undefined;
|
|
10739
|
+
includeCompleted?: undefined;
|
|
10740
|
+
user?: undefined;
|
|
10741
|
+
key?: undefined;
|
|
10742
|
+
threadId?: undefined;
|
|
10743
|
+
depth?: undefined;
|
|
10744
|
+
postId?: undefined;
|
|
10745
|
+
reason?: undefined;
|
|
10746
|
+
includeSubCircles?: undefined;
|
|
10747
|
+
endDate?: undefined;
|
|
10748
|
+
metricId?: undefined;
|
|
10749
|
+
agents?: undefined;
|
|
10750
|
+
username?: undefined;
|
|
10751
|
+
fullName?: undefined;
|
|
10752
|
+
language?: undefined;
|
|
10753
|
+
labelId?: undefined;
|
|
10754
|
+
from?: undefined;
|
|
10755
|
+
to?: undefined;
|
|
10756
|
+
completedAfter?: undefined;
|
|
10757
|
+
nestIds?: undefined;
|
|
10758
|
+
position?: undefined;
|
|
10759
|
+
relatedNestId?: undefined;
|
|
10760
|
+
color?: undefined;
|
|
10761
|
+
icon?: undefined;
|
|
10762
|
+
fullWorkspaces?: undefined;
|
|
10763
|
+
context?: undefined;
|
|
10764
|
+
skip?: undefined;
|
|
10765
|
+
showRead?: undefined;
|
|
10766
|
+
group?: undefined;
|
|
10767
|
+
feeling?: undefined;
|
|
10768
|
+
needs?: undefined;
|
|
10769
|
+
tensionId?: undefined;
|
|
10770
|
+
_id?: undefined;
|
|
10771
|
+
roleId?: undefined;
|
|
10772
|
+
removeNest?: undefined;
|
|
10773
|
+
partId?: undefined;
|
|
10774
|
+
childId?: undefined;
|
|
10775
|
+
status?: undefined;
|
|
10776
|
+
relation?: undefined;
|
|
10777
|
+
direction?: undefined;
|
|
10778
|
+
targetId?: undefined;
|
|
10779
|
+
templateId?: undefined;
|
|
10780
|
+
name?: undefined;
|
|
10781
|
+
config?: undefined;
|
|
10782
|
+
capabilities?: undefined;
|
|
10783
|
+
exposure?: undefined;
|
|
10784
|
+
authStrategy?: undefined;
|
|
10785
|
+
roleAssignable?: undefined;
|
|
10786
|
+
agentConfig?: undefined;
|
|
10787
|
+
ownerType?: undefined;
|
|
10788
|
+
ownerId?: undefined;
|
|
10789
|
+
enabled?: undefined;
|
|
10790
|
+
includeDisabled?: undefined;
|
|
10791
|
+
connectionId?: undefined;
|
|
10792
|
+
agentUserId?: undefined;
|
|
10793
|
+
message?: undefined;
|
|
10794
|
+
fileId?: undefined;
|
|
10795
|
+
contentType?: undefined;
|
|
10796
|
+
content?: undefined;
|
|
10797
|
+
dataBase64?: undefined;
|
|
10798
|
+
};
|
|
10799
|
+
required: string[];
|
|
10800
|
+
};
|
|
10801
|
+
} | {
|
|
10802
|
+
description: string;
|
|
10803
|
+
inputSchema: {
|
|
10804
|
+
type: "object";
|
|
10805
|
+
properties: {
|
|
10806
|
+
workspaceId: {
|
|
10807
|
+
type: string;
|
|
10808
|
+
description: string;
|
|
10809
|
+
};
|
|
10810
|
+
includeDisabled: {
|
|
10811
|
+
type: string;
|
|
10812
|
+
description: string;
|
|
10813
|
+
};
|
|
10814
|
+
topic?: undefined;
|
|
10815
|
+
search?: undefined;
|
|
10816
|
+
includeImages?: undefined;
|
|
10817
|
+
imageIndexes?: undefined;
|
|
10818
|
+
maxImages?: undefined;
|
|
10819
|
+
sort?: undefined;
|
|
10820
|
+
limit?: undefined;
|
|
10821
|
+
page?: undefined;
|
|
10822
|
+
stripDescription?: undefined;
|
|
10823
|
+
title?: undefined;
|
|
10824
|
+
purpose?: undefined;
|
|
10825
|
+
type?: undefined;
|
|
10826
|
+
governance?: undefined;
|
|
10827
|
+
plan?: undefined;
|
|
10828
|
+
apps?: undefined;
|
|
10829
|
+
layout?: undefined;
|
|
10830
|
+
query?: undefined;
|
|
10831
|
+
_listTitle?: undefined;
|
|
10832
|
+
nestId?: undefined;
|
|
10833
|
+
fieldsMetaData?: undefined;
|
|
10834
|
+
hints?: undefined;
|
|
10835
|
+
provenance?: undefined;
|
|
10836
|
+
rights?: undefined;
|
|
10837
|
+
forUser?: undefined;
|
|
10838
|
+
whoCan?: undefined;
|
|
10839
|
+
parentId?: undefined;
|
|
10840
|
+
description?: undefined;
|
|
10841
|
+
labels?: undefined;
|
|
10842
|
+
fields?: undefined;
|
|
10843
|
+
users?: undefined;
|
|
10844
|
+
due?: undefined;
|
|
10845
|
+
accountabilities?: undefined;
|
|
10846
|
+
domains?: undefined;
|
|
10847
|
+
data?: undefined;
|
|
10848
|
+
completed?: undefined;
|
|
10849
|
+
body?: undefined;
|
|
10850
|
+
commentId?: undefined;
|
|
10851
|
+
circleId?: undefined;
|
|
10852
|
+
userId?: undefined;
|
|
10853
|
+
withUser?: undefined;
|
|
10854
|
+
unread?: undefined;
|
|
10855
|
+
includeCompleted?: undefined;
|
|
10856
|
+
user?: undefined;
|
|
10857
|
+
key?: undefined;
|
|
10858
|
+
threadId?: undefined;
|
|
10859
|
+
depth?: undefined;
|
|
10860
|
+
postId?: undefined;
|
|
10861
|
+
reason?: undefined;
|
|
10862
|
+
includeSubCircles?: undefined;
|
|
10863
|
+
endDate?: undefined;
|
|
10864
|
+
metricId?: undefined;
|
|
10865
|
+
agents?: undefined;
|
|
10866
|
+
username?: undefined;
|
|
10867
|
+
fullName?: undefined;
|
|
10868
|
+
language?: undefined;
|
|
10869
|
+
labelId?: undefined;
|
|
10870
|
+
from?: undefined;
|
|
10871
|
+
to?: undefined;
|
|
10872
|
+
completedAfter?: undefined;
|
|
10873
|
+
nestIds?: undefined;
|
|
10874
|
+
position?: undefined;
|
|
10875
|
+
relatedNestId?: undefined;
|
|
10876
|
+
color?: undefined;
|
|
10877
|
+
icon?: undefined;
|
|
10878
|
+
fullWorkspaces?: undefined;
|
|
10879
|
+
context?: undefined;
|
|
10880
|
+
skip?: undefined;
|
|
10881
|
+
showRead?: undefined;
|
|
10882
|
+
group?: undefined;
|
|
10883
|
+
feeling?: undefined;
|
|
10884
|
+
needs?: undefined;
|
|
10885
|
+
tensionId?: undefined;
|
|
10886
|
+
_id?: undefined;
|
|
10887
|
+
roleId?: undefined;
|
|
10888
|
+
removeNest?: undefined;
|
|
10889
|
+
partId?: undefined;
|
|
10890
|
+
childId?: undefined;
|
|
10891
|
+
status?: undefined;
|
|
10892
|
+
relation?: undefined;
|
|
10893
|
+
direction?: undefined;
|
|
10894
|
+
targetId?: undefined;
|
|
10895
|
+
templateId?: undefined;
|
|
10896
|
+
name?: undefined;
|
|
10897
|
+
config?: undefined;
|
|
10898
|
+
capabilities?: undefined;
|
|
10899
|
+
exposure?: undefined;
|
|
10900
|
+
authStrategy?: undefined;
|
|
10901
|
+
roleAssignable?: undefined;
|
|
10902
|
+
agentConfig?: undefined;
|
|
10903
|
+
connectorId?: undefined;
|
|
10904
|
+
ownerType?: undefined;
|
|
10905
|
+
ownerId?: undefined;
|
|
10906
|
+
enabled?: undefined;
|
|
10907
|
+
connectionId?: undefined;
|
|
10908
|
+
agentUserId?: undefined;
|
|
10909
|
+
message?: undefined;
|
|
10910
|
+
fileId?: undefined;
|
|
10911
|
+
contentType?: undefined;
|
|
10912
|
+
content?: undefined;
|
|
10913
|
+
dataBase64?: undefined;
|
|
10914
|
+
};
|
|
10915
|
+
required: string[];
|
|
10916
|
+
};
|
|
10917
|
+
annotations: {
|
|
10918
|
+
readOnlyHint: boolean;
|
|
10919
|
+
destructiveHint: boolean;
|
|
10920
|
+
};
|
|
10921
|
+
name: string;
|
|
10922
|
+
} | {
|
|
10923
|
+
annotations: {
|
|
10924
|
+
readOnlyHint: boolean;
|
|
10925
|
+
destructiveHint: boolean;
|
|
10926
|
+
};
|
|
10927
|
+
name: string;
|
|
10928
|
+
description: string;
|
|
10929
|
+
inputSchema: {
|
|
10930
|
+
type: "object";
|
|
10931
|
+
properties: {
|
|
10932
|
+
workspaceId: {
|
|
10933
|
+
type: string;
|
|
10934
|
+
description: string;
|
|
10935
|
+
};
|
|
10936
|
+
connectionId: {
|
|
10937
|
+
type: string;
|
|
10938
|
+
description: string;
|
|
10939
|
+
};
|
|
10940
|
+
topic?: undefined;
|
|
10941
|
+
search?: undefined;
|
|
10942
|
+
includeImages?: undefined;
|
|
10943
|
+
imageIndexes?: undefined;
|
|
10944
|
+
maxImages?: undefined;
|
|
10945
|
+
sort?: undefined;
|
|
10946
|
+
limit?: undefined;
|
|
10947
|
+
page?: undefined;
|
|
10948
|
+
stripDescription?: undefined;
|
|
10949
|
+
title?: undefined;
|
|
10950
|
+
purpose?: undefined;
|
|
10951
|
+
type?: undefined;
|
|
10952
|
+
governance?: undefined;
|
|
10953
|
+
plan?: undefined;
|
|
10954
|
+
apps?: undefined;
|
|
10955
|
+
layout?: undefined;
|
|
10956
|
+
query?: undefined;
|
|
10957
|
+
_listTitle?: undefined;
|
|
10958
|
+
nestId?: undefined;
|
|
10959
|
+
fieldsMetaData?: undefined;
|
|
10960
|
+
hints?: undefined;
|
|
10961
|
+
provenance?: undefined;
|
|
10962
|
+
rights?: undefined;
|
|
10963
|
+
forUser?: undefined;
|
|
10964
|
+
whoCan?: undefined;
|
|
10965
|
+
parentId?: undefined;
|
|
10966
|
+
description?: undefined;
|
|
10967
|
+
labels?: undefined;
|
|
10968
|
+
fields?: undefined;
|
|
10969
|
+
users?: undefined;
|
|
10970
|
+
due?: undefined;
|
|
10971
|
+
accountabilities?: undefined;
|
|
10972
|
+
domains?: undefined;
|
|
10973
|
+
data?: undefined;
|
|
10974
|
+
completed?: undefined;
|
|
10975
|
+
body?: undefined;
|
|
10976
|
+
commentId?: undefined;
|
|
10977
|
+
circleId?: undefined;
|
|
10978
|
+
userId?: undefined;
|
|
10979
|
+
withUser?: undefined;
|
|
10980
|
+
unread?: undefined;
|
|
10981
|
+
includeCompleted?: undefined;
|
|
10982
|
+
user?: undefined;
|
|
10983
|
+
key?: undefined;
|
|
10984
|
+
threadId?: undefined;
|
|
10985
|
+
depth?: undefined;
|
|
10986
|
+
postId?: undefined;
|
|
10987
|
+
reason?: undefined;
|
|
10988
|
+
includeSubCircles?: undefined;
|
|
10989
|
+
endDate?: undefined;
|
|
10990
|
+
metricId?: undefined;
|
|
10991
|
+
agents?: undefined;
|
|
10992
|
+
username?: undefined;
|
|
10993
|
+
fullName?: undefined;
|
|
10994
|
+
language?: undefined;
|
|
10995
|
+
labelId?: undefined;
|
|
10996
|
+
from?: undefined;
|
|
10997
|
+
to?: undefined;
|
|
10998
|
+
completedAfter?: undefined;
|
|
10999
|
+
nestIds?: undefined;
|
|
11000
|
+
position?: undefined;
|
|
11001
|
+
relatedNestId?: undefined;
|
|
11002
|
+
color?: undefined;
|
|
11003
|
+
icon?: undefined;
|
|
11004
|
+
fullWorkspaces?: undefined;
|
|
11005
|
+
context?: undefined;
|
|
11006
|
+
skip?: undefined;
|
|
11007
|
+
showRead?: undefined;
|
|
11008
|
+
group?: undefined;
|
|
11009
|
+
feeling?: undefined;
|
|
11010
|
+
needs?: undefined;
|
|
11011
|
+
tensionId?: undefined;
|
|
11012
|
+
_id?: undefined;
|
|
11013
|
+
roleId?: undefined;
|
|
11014
|
+
removeNest?: undefined;
|
|
11015
|
+
partId?: undefined;
|
|
11016
|
+
childId?: undefined;
|
|
11017
|
+
status?: undefined;
|
|
11018
|
+
relation?: undefined;
|
|
11019
|
+
direction?: undefined;
|
|
11020
|
+
targetId?: undefined;
|
|
11021
|
+
templateId?: undefined;
|
|
11022
|
+
name?: undefined;
|
|
11023
|
+
config?: undefined;
|
|
11024
|
+
capabilities?: undefined;
|
|
11025
|
+
exposure?: undefined;
|
|
11026
|
+
authStrategy?: undefined;
|
|
11027
|
+
roleAssignable?: undefined;
|
|
11028
|
+
agentConfig?: undefined;
|
|
11029
|
+
connectorId?: undefined;
|
|
11030
|
+
ownerType?: undefined;
|
|
11031
|
+
ownerId?: undefined;
|
|
11032
|
+
enabled?: undefined;
|
|
11033
|
+
includeDisabled?: undefined;
|
|
11034
|
+
agentUserId?: undefined;
|
|
11035
|
+
message?: undefined;
|
|
11036
|
+
fileId?: undefined;
|
|
11037
|
+
contentType?: undefined;
|
|
11038
|
+
content?: undefined;
|
|
11039
|
+
dataBase64?: undefined;
|
|
11040
|
+
};
|
|
11041
|
+
required: string[];
|
|
11042
|
+
};
|
|
11043
|
+
} | {
|
|
11044
|
+
description: string;
|
|
11045
|
+
inputSchema: {
|
|
11046
|
+
type: "object";
|
|
11047
|
+
properties: {
|
|
11048
|
+
workspaceId: {
|
|
11049
|
+
type: string;
|
|
11050
|
+
description: string;
|
|
11051
|
+
};
|
|
11052
|
+
agentUserId: {
|
|
11053
|
+
type: string;
|
|
11054
|
+
description: string;
|
|
11055
|
+
};
|
|
11056
|
+
topic?: undefined;
|
|
11057
|
+
search?: undefined;
|
|
11058
|
+
includeImages?: undefined;
|
|
11059
|
+
imageIndexes?: undefined;
|
|
11060
|
+
maxImages?: undefined;
|
|
11061
|
+
sort?: undefined;
|
|
11062
|
+
limit?: undefined;
|
|
11063
|
+
page?: undefined;
|
|
11064
|
+
stripDescription?: undefined;
|
|
11065
|
+
title?: undefined;
|
|
11066
|
+
purpose?: undefined;
|
|
11067
|
+
type?: undefined;
|
|
11068
|
+
governance?: undefined;
|
|
11069
|
+
plan?: undefined;
|
|
11070
|
+
apps?: undefined;
|
|
11071
|
+
layout?: undefined;
|
|
11072
|
+
query?: undefined;
|
|
11073
|
+
_listTitle?: undefined;
|
|
11074
|
+
nestId?: undefined;
|
|
11075
|
+
fieldsMetaData?: undefined;
|
|
11076
|
+
hints?: undefined;
|
|
11077
|
+
provenance?: undefined;
|
|
11078
|
+
rights?: undefined;
|
|
11079
|
+
forUser?: undefined;
|
|
11080
|
+
whoCan?: undefined;
|
|
11081
|
+
parentId?: undefined;
|
|
11082
|
+
description?: undefined;
|
|
11083
|
+
labels?: undefined;
|
|
11084
|
+
fields?: undefined;
|
|
11085
|
+
users?: undefined;
|
|
11086
|
+
due?: undefined;
|
|
11087
|
+
accountabilities?: undefined;
|
|
11088
|
+
domains?: undefined;
|
|
11089
|
+
data?: undefined;
|
|
11090
|
+
completed?: undefined;
|
|
11091
|
+
body?: undefined;
|
|
11092
|
+
commentId?: undefined;
|
|
11093
|
+
circleId?: undefined;
|
|
11094
|
+
userId?: undefined;
|
|
11095
|
+
withUser?: undefined;
|
|
11096
|
+
unread?: undefined;
|
|
11097
|
+
includeCompleted?: undefined;
|
|
11098
|
+
user?: undefined;
|
|
11099
|
+
key?: undefined;
|
|
11100
|
+
threadId?: undefined;
|
|
11101
|
+
depth?: undefined;
|
|
11102
|
+
postId?: undefined;
|
|
11103
|
+
reason?: undefined;
|
|
11104
|
+
includeSubCircles?: undefined;
|
|
11105
|
+
endDate?: undefined;
|
|
11106
|
+
metricId?: undefined;
|
|
11107
|
+
agents?: undefined;
|
|
11108
|
+
username?: undefined;
|
|
11109
|
+
fullName?: undefined;
|
|
11110
|
+
language?: undefined;
|
|
11111
|
+
labelId?: undefined;
|
|
11112
|
+
from?: undefined;
|
|
11113
|
+
to?: undefined;
|
|
11114
|
+
completedAfter?: undefined;
|
|
11115
|
+
nestIds?: undefined;
|
|
11116
|
+
position?: undefined;
|
|
11117
|
+
relatedNestId?: undefined;
|
|
11118
|
+
color?: undefined;
|
|
11119
|
+
icon?: undefined;
|
|
11120
|
+
fullWorkspaces?: undefined;
|
|
11121
|
+
context?: undefined;
|
|
11122
|
+
skip?: undefined;
|
|
11123
|
+
showRead?: undefined;
|
|
11124
|
+
group?: undefined;
|
|
11125
|
+
feeling?: undefined;
|
|
11126
|
+
needs?: undefined;
|
|
11127
|
+
tensionId?: undefined;
|
|
11128
|
+
_id?: undefined;
|
|
11129
|
+
roleId?: undefined;
|
|
11130
|
+
removeNest?: undefined;
|
|
11131
|
+
partId?: undefined;
|
|
11132
|
+
childId?: undefined;
|
|
11133
|
+
status?: undefined;
|
|
11134
|
+
relation?: undefined;
|
|
11135
|
+
direction?: undefined;
|
|
11136
|
+
targetId?: undefined;
|
|
11137
|
+
templateId?: undefined;
|
|
11138
|
+
name?: undefined;
|
|
11139
|
+
config?: undefined;
|
|
11140
|
+
capabilities?: undefined;
|
|
11141
|
+
exposure?: undefined;
|
|
11142
|
+
authStrategy?: undefined;
|
|
11143
|
+
roleAssignable?: undefined;
|
|
11144
|
+
agentConfig?: undefined;
|
|
11145
|
+
connectorId?: undefined;
|
|
11146
|
+
ownerType?: undefined;
|
|
11147
|
+
ownerId?: undefined;
|
|
11148
|
+
enabled?: undefined;
|
|
11149
|
+
includeDisabled?: undefined;
|
|
11150
|
+
connectionId?: undefined;
|
|
11151
|
+
message?: undefined;
|
|
11152
|
+
fileId?: undefined;
|
|
11153
|
+
contentType?: undefined;
|
|
11154
|
+
content?: undefined;
|
|
11155
|
+
dataBase64?: undefined;
|
|
11156
|
+
};
|
|
11157
|
+
required: string[];
|
|
11158
|
+
};
|
|
11159
|
+
annotations: {
|
|
11160
|
+
readOnlyHint: boolean;
|
|
11161
|
+
destructiveHint: boolean;
|
|
11162
|
+
};
|
|
11163
|
+
name: string;
|
|
11164
|
+
} | {
|
|
11165
|
+
annotations: {
|
|
11166
|
+
readOnlyHint: boolean;
|
|
11167
|
+
destructiveHint: boolean;
|
|
11168
|
+
};
|
|
11169
|
+
name: string;
|
|
11170
|
+
description: string;
|
|
11171
|
+
inputSchema: {
|
|
11172
|
+
type: "object";
|
|
11173
|
+
properties: {
|
|
11174
|
+
workspaceId: {
|
|
11175
|
+
type: string;
|
|
11176
|
+
description: string;
|
|
11177
|
+
};
|
|
11178
|
+
agentUserId: {
|
|
11179
|
+
type: string;
|
|
11180
|
+
description: string;
|
|
11181
|
+
};
|
|
11182
|
+
nestId: {
|
|
11183
|
+
type: string;
|
|
11184
|
+
description: string;
|
|
11185
|
+
};
|
|
11186
|
+
message: {
|
|
11187
|
+
type: string;
|
|
11188
|
+
description: string;
|
|
11189
|
+
};
|
|
11190
|
+
topic?: undefined;
|
|
11191
|
+
search?: undefined;
|
|
11192
|
+
includeImages?: undefined;
|
|
11193
|
+
imageIndexes?: undefined;
|
|
11194
|
+
maxImages?: undefined;
|
|
11195
|
+
sort?: undefined;
|
|
11196
|
+
limit?: undefined;
|
|
11197
|
+
page?: undefined;
|
|
11198
|
+
stripDescription?: undefined;
|
|
11199
|
+
title?: undefined;
|
|
11200
|
+
purpose?: undefined;
|
|
11201
|
+
type?: undefined;
|
|
11202
|
+
governance?: undefined;
|
|
11203
|
+
plan?: undefined;
|
|
11204
|
+
apps?: undefined;
|
|
11205
|
+
layout?: undefined;
|
|
11206
|
+
query?: undefined;
|
|
11207
|
+
_listTitle?: undefined;
|
|
11208
|
+
fieldsMetaData?: undefined;
|
|
11209
|
+
hints?: undefined;
|
|
11210
|
+
provenance?: undefined;
|
|
11211
|
+
rights?: undefined;
|
|
11212
|
+
forUser?: undefined;
|
|
11213
|
+
whoCan?: undefined;
|
|
11214
|
+
parentId?: undefined;
|
|
11215
|
+
description?: undefined;
|
|
11216
|
+
labels?: undefined;
|
|
11217
|
+
fields?: undefined;
|
|
11218
|
+
users?: undefined;
|
|
11219
|
+
due?: undefined;
|
|
11220
|
+
accountabilities?: undefined;
|
|
11221
|
+
domains?: undefined;
|
|
11222
|
+
data?: undefined;
|
|
11223
|
+
completed?: undefined;
|
|
11224
|
+
body?: undefined;
|
|
11225
|
+
commentId?: undefined;
|
|
11226
|
+
circleId?: undefined;
|
|
11227
|
+
userId?: undefined;
|
|
11228
|
+
withUser?: undefined;
|
|
11229
|
+
unread?: undefined;
|
|
11230
|
+
includeCompleted?: undefined;
|
|
11231
|
+
user?: undefined;
|
|
11232
|
+
key?: undefined;
|
|
11233
|
+
threadId?: undefined;
|
|
11234
|
+
depth?: undefined;
|
|
11235
|
+
postId?: undefined;
|
|
11236
|
+
reason?: undefined;
|
|
11237
|
+
includeSubCircles?: undefined;
|
|
11238
|
+
endDate?: undefined;
|
|
11239
|
+
metricId?: undefined;
|
|
11240
|
+
agents?: undefined;
|
|
11241
|
+
username?: undefined;
|
|
11242
|
+
fullName?: undefined;
|
|
11243
|
+
language?: undefined;
|
|
11244
|
+
labelId?: undefined;
|
|
11245
|
+
from?: undefined;
|
|
11246
|
+
to?: undefined;
|
|
11247
|
+
completedAfter?: undefined;
|
|
11248
|
+
nestIds?: undefined;
|
|
11249
|
+
position?: undefined;
|
|
11250
|
+
relatedNestId?: undefined;
|
|
11251
|
+
color?: undefined;
|
|
11252
|
+
icon?: undefined;
|
|
11253
|
+
fullWorkspaces?: undefined;
|
|
11254
|
+
context?: undefined;
|
|
11255
|
+
skip?: undefined;
|
|
11256
|
+
showRead?: undefined;
|
|
11257
|
+
group?: undefined;
|
|
11258
|
+
feeling?: undefined;
|
|
11259
|
+
needs?: undefined;
|
|
11260
|
+
tensionId?: undefined;
|
|
11261
|
+
_id?: undefined;
|
|
11262
|
+
roleId?: undefined;
|
|
11263
|
+
removeNest?: undefined;
|
|
11264
|
+
partId?: undefined;
|
|
11265
|
+
childId?: undefined;
|
|
11266
|
+
status?: undefined;
|
|
11267
|
+
relation?: undefined;
|
|
11268
|
+
direction?: undefined;
|
|
11269
|
+
targetId?: undefined;
|
|
11270
|
+
templateId?: undefined;
|
|
11271
|
+
name?: undefined;
|
|
11272
|
+
config?: undefined;
|
|
11273
|
+
capabilities?: undefined;
|
|
11274
|
+
exposure?: undefined;
|
|
11275
|
+
authStrategy?: undefined;
|
|
11276
|
+
roleAssignable?: undefined;
|
|
11277
|
+
agentConfig?: undefined;
|
|
11278
|
+
connectorId?: undefined;
|
|
11279
|
+
ownerType?: undefined;
|
|
11280
|
+
ownerId?: undefined;
|
|
11281
|
+
enabled?: undefined;
|
|
11282
|
+
includeDisabled?: undefined;
|
|
11283
|
+
connectionId?: undefined;
|
|
11284
|
+
fileId?: undefined;
|
|
11285
|
+
contentType?: undefined;
|
|
11286
|
+
content?: undefined;
|
|
11287
|
+
dataBase64?: undefined;
|
|
11288
|
+
};
|
|
11289
|
+
required: string[];
|
|
11290
|
+
};
|
|
11291
|
+
} | {
|
|
11292
|
+
annotations: {
|
|
11293
|
+
readOnlyHint: boolean;
|
|
11294
|
+
destructiveHint: boolean;
|
|
11295
|
+
};
|
|
11296
|
+
name: string;
|
|
11297
|
+
description: string;
|
|
11298
|
+
inputSchema: {
|
|
11299
|
+
type: "object";
|
|
11300
|
+
properties: {
|
|
11301
|
+
nestId: {
|
|
11302
|
+
type: string;
|
|
11303
|
+
description: string;
|
|
11304
|
+
};
|
|
11305
|
+
fileId: {
|
|
11306
|
+
type: string;
|
|
11307
|
+
description: string;
|
|
11308
|
+
};
|
|
11309
|
+
topic?: undefined;
|
|
11310
|
+
search?: undefined;
|
|
11311
|
+
includeImages?: undefined;
|
|
11312
|
+
imageIndexes?: undefined;
|
|
11313
|
+
maxImages?: undefined;
|
|
11314
|
+
sort?: undefined;
|
|
11315
|
+
limit?: undefined;
|
|
11316
|
+
page?: undefined;
|
|
11317
|
+
stripDescription?: undefined;
|
|
11318
|
+
workspaceId?: undefined;
|
|
11319
|
+
title?: undefined;
|
|
11320
|
+
purpose?: undefined;
|
|
11321
|
+
type?: undefined;
|
|
11322
|
+
governance?: undefined;
|
|
11323
|
+
plan?: undefined;
|
|
11324
|
+
apps?: undefined;
|
|
11325
|
+
layout?: undefined;
|
|
11326
|
+
query?: undefined;
|
|
11327
|
+
_listTitle?: undefined;
|
|
11328
|
+
fieldsMetaData?: undefined;
|
|
11329
|
+
hints?: undefined;
|
|
11330
|
+
provenance?: undefined;
|
|
11331
|
+
rights?: undefined;
|
|
11332
|
+
forUser?: undefined;
|
|
11333
|
+
whoCan?: undefined;
|
|
11334
|
+
parentId?: undefined;
|
|
11335
|
+
description?: undefined;
|
|
11336
|
+
labels?: undefined;
|
|
11337
|
+
fields?: undefined;
|
|
11338
|
+
users?: undefined;
|
|
11339
|
+
due?: undefined;
|
|
11340
|
+
accountabilities?: undefined;
|
|
11341
|
+
domains?: undefined;
|
|
11342
|
+
data?: undefined;
|
|
11343
|
+
completed?: undefined;
|
|
11344
|
+
body?: undefined;
|
|
11345
|
+
commentId?: undefined;
|
|
11346
|
+
circleId?: undefined;
|
|
11347
|
+
userId?: undefined;
|
|
11348
|
+
withUser?: undefined;
|
|
11349
|
+
unread?: undefined;
|
|
11350
|
+
includeCompleted?: undefined;
|
|
11351
|
+
user?: undefined;
|
|
11352
|
+
key?: undefined;
|
|
11353
|
+
threadId?: undefined;
|
|
11354
|
+
depth?: undefined;
|
|
11355
|
+
postId?: undefined;
|
|
11356
|
+
reason?: undefined;
|
|
11357
|
+
includeSubCircles?: undefined;
|
|
11358
|
+
endDate?: undefined;
|
|
11359
|
+
metricId?: undefined;
|
|
11360
|
+
agents?: undefined;
|
|
11361
|
+
username?: undefined;
|
|
11362
|
+
fullName?: undefined;
|
|
11363
|
+
language?: undefined;
|
|
11364
|
+
labelId?: undefined;
|
|
11365
|
+
from?: undefined;
|
|
11366
|
+
to?: undefined;
|
|
11367
|
+
completedAfter?: undefined;
|
|
11368
|
+
nestIds?: undefined;
|
|
11369
|
+
position?: undefined;
|
|
11370
|
+
relatedNestId?: undefined;
|
|
11371
|
+
color?: undefined;
|
|
11372
|
+
icon?: undefined;
|
|
11373
|
+
fullWorkspaces?: undefined;
|
|
11374
|
+
context?: undefined;
|
|
11375
|
+
skip?: undefined;
|
|
11376
|
+
showRead?: undefined;
|
|
11377
|
+
group?: undefined;
|
|
11378
|
+
feeling?: undefined;
|
|
11379
|
+
needs?: undefined;
|
|
11380
|
+
tensionId?: undefined;
|
|
11381
|
+
_id?: undefined;
|
|
11382
|
+
roleId?: undefined;
|
|
11383
|
+
removeNest?: undefined;
|
|
11384
|
+
partId?: undefined;
|
|
11385
|
+
childId?: undefined;
|
|
11386
|
+
status?: undefined;
|
|
11387
|
+
relation?: undefined;
|
|
11388
|
+
direction?: undefined;
|
|
11389
|
+
targetId?: undefined;
|
|
11390
|
+
templateId?: undefined;
|
|
11391
|
+
name?: undefined;
|
|
11392
|
+
config?: undefined;
|
|
11393
|
+
capabilities?: undefined;
|
|
11394
|
+
exposure?: undefined;
|
|
11395
|
+
authStrategy?: undefined;
|
|
11396
|
+
roleAssignable?: undefined;
|
|
11397
|
+
agentConfig?: undefined;
|
|
11398
|
+
connectorId?: undefined;
|
|
11399
|
+
ownerType?: undefined;
|
|
11400
|
+
ownerId?: undefined;
|
|
11401
|
+
enabled?: undefined;
|
|
11402
|
+
includeDisabled?: undefined;
|
|
11403
|
+
connectionId?: undefined;
|
|
11404
|
+
agentUserId?: undefined;
|
|
11405
|
+
message?: undefined;
|
|
11406
|
+
contentType?: undefined;
|
|
11407
|
+
content?: undefined;
|
|
11408
|
+
dataBase64?: undefined;
|
|
11409
|
+
};
|
|
11410
|
+
required: string[];
|
|
11411
|
+
};
|
|
11412
|
+
} | {
|
|
11413
|
+
annotations: {
|
|
11414
|
+
readOnlyHint: boolean;
|
|
11415
|
+
destructiveHint: boolean;
|
|
11416
|
+
};
|
|
11417
|
+
name: string;
|
|
11418
|
+
description: string;
|
|
11419
|
+
inputSchema: {
|
|
11420
|
+
type: "object";
|
|
11421
|
+
properties: {
|
|
11422
|
+
nestId: {
|
|
11423
|
+
type: string;
|
|
11424
|
+
description: string;
|
|
11425
|
+
};
|
|
11426
|
+
name: {
|
|
11427
|
+
type: string;
|
|
11428
|
+
description: string;
|
|
11429
|
+
};
|
|
11430
|
+
contentType: {
|
|
11431
|
+
type: string;
|
|
11432
|
+
description: string;
|
|
11433
|
+
};
|
|
11434
|
+
content: {
|
|
11435
|
+
type: string;
|
|
11436
|
+
description: string;
|
|
11437
|
+
};
|
|
11438
|
+
dataBase64: {
|
|
11439
|
+
type: string;
|
|
11440
|
+
description: string;
|
|
11441
|
+
};
|
|
11442
|
+
topic?: undefined;
|
|
11443
|
+
search?: undefined;
|
|
11444
|
+
includeImages?: undefined;
|
|
11445
|
+
imageIndexes?: undefined;
|
|
11446
|
+
maxImages?: undefined;
|
|
11447
|
+
sort?: undefined;
|
|
11448
|
+
limit?: undefined;
|
|
11449
|
+
page?: undefined;
|
|
11450
|
+
stripDescription?: undefined;
|
|
11451
|
+
workspaceId?: undefined;
|
|
11452
|
+
title?: undefined;
|
|
11453
|
+
purpose?: undefined;
|
|
11454
|
+
type?: undefined;
|
|
11455
|
+
governance?: undefined;
|
|
11456
|
+
plan?: undefined;
|
|
11457
|
+
apps?: undefined;
|
|
11458
|
+
layout?: undefined;
|
|
11459
|
+
query?: undefined;
|
|
11460
|
+
_listTitle?: undefined;
|
|
11461
|
+
fieldsMetaData?: undefined;
|
|
11462
|
+
hints?: undefined;
|
|
11463
|
+
provenance?: undefined;
|
|
11464
|
+
rights?: undefined;
|
|
11465
|
+
forUser?: undefined;
|
|
11466
|
+
whoCan?: undefined;
|
|
11467
|
+
parentId?: undefined;
|
|
11468
|
+
description?: undefined;
|
|
11469
|
+
labels?: undefined;
|
|
11470
|
+
fields?: undefined;
|
|
11471
|
+
users?: undefined;
|
|
11472
|
+
due?: undefined;
|
|
9687
11473
|
accountabilities?: undefined;
|
|
9688
11474
|
domains?: undefined;
|
|
9689
11475
|
data?: undefined;
|
|
9690
|
-
due?: undefined;
|
|
9691
11476
|
completed?: undefined;
|
|
9692
11477
|
body?: undefined;
|
|
9693
11478
|
commentId?: undefined;
|
|
@@ -9705,6 +11490,7 @@ export declare const toolDefinitions: ({
|
|
|
9705
11490
|
includeSubCircles?: undefined;
|
|
9706
11491
|
endDate?: undefined;
|
|
9707
11492
|
metricId?: undefined;
|
|
11493
|
+
agents?: undefined;
|
|
9708
11494
|
username?: undefined;
|
|
9709
11495
|
fullName?: undefined;
|
|
9710
11496
|
language?: undefined;
|
|
@@ -9734,13 +11520,21 @@ export declare const toolDefinitions: ({
|
|
|
9734
11520
|
relation?: undefined;
|
|
9735
11521
|
direction?: undefined;
|
|
9736
11522
|
targetId?: undefined;
|
|
11523
|
+
templateId?: undefined;
|
|
9737
11524
|
config?: undefined;
|
|
9738
11525
|
capabilities?: undefined;
|
|
9739
11526
|
exposure?: undefined;
|
|
9740
11527
|
authStrategy?: undefined;
|
|
11528
|
+
roleAssignable?: undefined;
|
|
11529
|
+
agentConfig?: undefined;
|
|
9741
11530
|
connectorId?: undefined;
|
|
9742
11531
|
ownerType?: undefined;
|
|
9743
11532
|
ownerId?: undefined;
|
|
11533
|
+
enabled?: undefined;
|
|
11534
|
+
includeDisabled?: undefined;
|
|
11535
|
+
connectionId?: undefined;
|
|
11536
|
+
agentUserId?: undefined;
|
|
11537
|
+
message?: undefined;
|
|
9744
11538
|
fileId?: undefined;
|
|
9745
11539
|
};
|
|
9746
11540
|
required: string[];
|