@nestr/mcp 0.1.45 → 0.1.47
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/README.md +42 -2
- package/build/analytics/ga4.js +2 -5
- package/build/analytics/ga4.js.map +1 -1
- package/build/api/client.d.ts +22 -3
- package/build/api/client.d.ts.map +1 -1
- package/build/api/client.js +58 -6
- package/build/api/client.js.map +1 -1
- package/build/http.d.ts.map +1 -1
- package/build/http.js +94 -40
- package/build/http.js.map +1 -1
- package/build/oauth/storage.d.ts +8 -0
- package/build/oauth/storage.d.ts.map +1 -1
- package/build/oauth/storage.js +65 -0
- package/build/oauth/storage.js.map +1 -1
- package/build/server.d.ts.map +1 -1
- package/build/server.js +103 -221
- package/build/server.js.map +1 -1
- package/build/skills/doing-work.d.ts +10 -0
- package/build/skills/doing-work.d.ts.map +1 -0
- package/build/skills/doing-work.js +257 -0
- package/build/skills/doing-work.js.map +1 -0
- package/build/skills/tension-processing.d.ts.map +1 -1
- package/build/skills/tension-processing.js +88 -12
- package/build/skills/tension-processing.js.map +1 -1
- package/build/tools/index.d.ts +874 -65
- package/build/tools/index.d.ts.map +1 -1
- package/build/tools/index.js +241 -44
- package/build/tools/index.js.map +1 -1
- package/package.json +7 -5
- package/web/favicon.png +0 -0
- package/web/index.html +1 -1
package/build/tools/index.d.ts
CHANGED
|
@@ -72,27 +72,33 @@ export declare const schemas: {
|
|
|
72
72
|
getNest: z.ZodObject<{
|
|
73
73
|
nestId: z.ZodString;
|
|
74
74
|
fieldsMetaData: z.ZodOptional<z.ZodBoolean>;
|
|
75
|
+
hints: z.ZodOptional<z.ZodBoolean>;
|
|
75
76
|
}, "strip", z.ZodTypeAny, {
|
|
76
77
|
nestId: string;
|
|
77
78
|
fieldsMetaData?: boolean | undefined;
|
|
79
|
+
hints?: boolean | undefined;
|
|
78
80
|
}, {
|
|
79
81
|
nestId: string;
|
|
80
82
|
fieldsMetaData?: boolean | undefined;
|
|
83
|
+
hints?: boolean | undefined;
|
|
81
84
|
}>;
|
|
82
85
|
getNestChildren: z.ZodObject<{
|
|
83
86
|
nestId: z.ZodString;
|
|
84
87
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
85
88
|
page: z.ZodOptional<z.ZodNumber>;
|
|
89
|
+
hints: z.ZodOptional<z.ZodBoolean>;
|
|
86
90
|
_listTitle: z.ZodOptional<z.ZodString>;
|
|
87
91
|
}, "strip", z.ZodTypeAny, {
|
|
88
92
|
nestId: string;
|
|
89
93
|
limit?: number | undefined;
|
|
90
94
|
page?: number | undefined;
|
|
95
|
+
hints?: boolean | undefined;
|
|
91
96
|
_listTitle?: string | undefined;
|
|
92
97
|
}, {
|
|
93
98
|
nestId: string;
|
|
94
99
|
limit?: number | undefined;
|
|
95
100
|
page?: number | undefined;
|
|
101
|
+
hints?: boolean | undefined;
|
|
96
102
|
_listTitle?: string | undefined;
|
|
97
103
|
}>;
|
|
98
104
|
createNest: z.ZodObject<{
|
|
@@ -667,7 +673,6 @@ export declare const schemas: {
|
|
|
667
673
|
due: z.ZodOptional<z.ZodString>;
|
|
668
674
|
accountabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
669
675
|
domains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
670
|
-
removeNest: z.ZodOptional<z.ZodBoolean>;
|
|
671
676
|
}, "strip", z.ZodTypeAny, {
|
|
672
677
|
nestId: string;
|
|
673
678
|
tensionId: string;
|
|
@@ -681,7 +686,6 @@ export declare const schemas: {
|
|
|
681
686
|
users?: string[] | undefined;
|
|
682
687
|
accountabilities?: string[] | undefined;
|
|
683
688
|
domains?: string[] | undefined;
|
|
684
|
-
removeNest?: boolean | undefined;
|
|
685
689
|
}, {
|
|
686
690
|
nestId: string;
|
|
687
691
|
tensionId: string;
|
|
@@ -695,7 +699,6 @@ export declare const schemas: {
|
|
|
695
699
|
users?: string[] | undefined;
|
|
696
700
|
accountabilities?: string[] | undefined;
|
|
697
701
|
domains?: string[] | undefined;
|
|
698
|
-
removeNest?: boolean | undefined;
|
|
699
702
|
}>;
|
|
700
703
|
modifyTensionPart: z.ZodObject<{
|
|
701
704
|
nestId: z.ZodString;
|
|
@@ -708,7 +711,6 @@ export declare const schemas: {
|
|
|
708
711
|
parentId: z.ZodOptional<z.ZodString>;
|
|
709
712
|
users: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
710
713
|
due: z.ZodOptional<z.ZodString>;
|
|
711
|
-
removeNest: z.ZodOptional<z.ZodBoolean>;
|
|
712
714
|
accountabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
713
715
|
domains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
714
716
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -724,7 +726,6 @@ export declare const schemas: {
|
|
|
724
726
|
users?: string[] | undefined;
|
|
725
727
|
accountabilities?: string[] | undefined;
|
|
726
728
|
domains?: string[] | undefined;
|
|
727
|
-
removeNest?: boolean | undefined;
|
|
728
729
|
}, {
|
|
729
730
|
nestId: string;
|
|
730
731
|
tensionId: string;
|
|
@@ -738,7 +739,6 @@ export declare const schemas: {
|
|
|
738
739
|
users?: string[] | undefined;
|
|
739
740
|
accountabilities?: string[] | undefined;
|
|
740
741
|
domains?: string[] | undefined;
|
|
741
|
-
removeNest?: boolean | undefined;
|
|
742
742
|
}>;
|
|
743
743
|
removeTensionPart: z.ZodObject<{
|
|
744
744
|
nestId: z.ZodString;
|
|
@@ -753,6 +753,73 @@ export declare const schemas: {
|
|
|
753
753
|
tensionId: string;
|
|
754
754
|
partId: string;
|
|
755
755
|
}>;
|
|
756
|
+
getTensionPartChildren: z.ZodObject<{
|
|
757
|
+
nestId: z.ZodString;
|
|
758
|
+
tensionId: z.ZodString;
|
|
759
|
+
partId: z.ZodString;
|
|
760
|
+
}, "strip", z.ZodTypeAny, {
|
|
761
|
+
nestId: string;
|
|
762
|
+
tensionId: string;
|
|
763
|
+
partId: string;
|
|
764
|
+
}, {
|
|
765
|
+
nestId: string;
|
|
766
|
+
tensionId: string;
|
|
767
|
+
partId: string;
|
|
768
|
+
}>;
|
|
769
|
+
createTensionPartChild: z.ZodObject<{
|
|
770
|
+
nestId: z.ZodString;
|
|
771
|
+
tensionId: z.ZodString;
|
|
772
|
+
partId: z.ZodString;
|
|
773
|
+
title: z.ZodString;
|
|
774
|
+
labels: z.ZodArray<z.ZodString, "many">;
|
|
775
|
+
}, "strip", z.ZodTypeAny, {
|
|
776
|
+
title: string;
|
|
777
|
+
labels: string[];
|
|
778
|
+
nestId: string;
|
|
779
|
+
tensionId: string;
|
|
780
|
+
partId: string;
|
|
781
|
+
}, {
|
|
782
|
+
title: string;
|
|
783
|
+
labels: string[];
|
|
784
|
+
nestId: string;
|
|
785
|
+
tensionId: string;
|
|
786
|
+
partId: string;
|
|
787
|
+
}>;
|
|
788
|
+
updateTensionPartChild: z.ZodObject<{
|
|
789
|
+
nestId: z.ZodString;
|
|
790
|
+
tensionId: z.ZodString;
|
|
791
|
+
partId: z.ZodString;
|
|
792
|
+
childId: z.ZodString;
|
|
793
|
+
title: z.ZodString;
|
|
794
|
+
}, "strip", z.ZodTypeAny, {
|
|
795
|
+
title: string;
|
|
796
|
+
nestId: string;
|
|
797
|
+
tensionId: string;
|
|
798
|
+
partId: string;
|
|
799
|
+
childId: string;
|
|
800
|
+
}, {
|
|
801
|
+
title: string;
|
|
802
|
+
nestId: string;
|
|
803
|
+
tensionId: string;
|
|
804
|
+
partId: string;
|
|
805
|
+
childId: string;
|
|
806
|
+
}>;
|
|
807
|
+
deleteTensionPartChild: z.ZodObject<{
|
|
808
|
+
nestId: z.ZodString;
|
|
809
|
+
tensionId: z.ZodString;
|
|
810
|
+
partId: z.ZodString;
|
|
811
|
+
childId: z.ZodString;
|
|
812
|
+
}, "strip", z.ZodTypeAny, {
|
|
813
|
+
nestId: string;
|
|
814
|
+
tensionId: string;
|
|
815
|
+
partId: string;
|
|
816
|
+
childId: string;
|
|
817
|
+
}, {
|
|
818
|
+
nestId: string;
|
|
819
|
+
tensionId: string;
|
|
820
|
+
partId: string;
|
|
821
|
+
childId: string;
|
|
822
|
+
}>;
|
|
756
823
|
getTensionChanges: z.ZodObject<{
|
|
757
824
|
nestId: z.ZodString;
|
|
758
825
|
tensionId: z.ZodString;
|
|
@@ -789,6 +856,51 @@ export declare const schemas: {
|
|
|
789
856
|
nestId: string;
|
|
790
857
|
tensionId: string;
|
|
791
858
|
}>;
|
|
859
|
+
getGraphLinks: z.ZodObject<{
|
|
860
|
+
nestId: z.ZodString;
|
|
861
|
+
relation: z.ZodString;
|
|
862
|
+
direction: z.ZodOptional<z.ZodEnum<["outgoing", "incoming"]>>;
|
|
863
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
864
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
865
|
+
}, "strip", z.ZodTypeAny, {
|
|
866
|
+
nestId: string;
|
|
867
|
+
relation: string;
|
|
868
|
+
limit?: number | undefined;
|
|
869
|
+
page?: number | undefined;
|
|
870
|
+
direction?: "outgoing" | "incoming" | undefined;
|
|
871
|
+
}, {
|
|
872
|
+
nestId: string;
|
|
873
|
+
relation: string;
|
|
874
|
+
limit?: number | undefined;
|
|
875
|
+
page?: number | undefined;
|
|
876
|
+
direction?: "outgoing" | "incoming" | undefined;
|
|
877
|
+
}>;
|
|
878
|
+
addGraphLink: z.ZodObject<{
|
|
879
|
+
nestId: z.ZodString;
|
|
880
|
+
relation: z.ZodString;
|
|
881
|
+
targetId: z.ZodString;
|
|
882
|
+
}, "strip", z.ZodTypeAny, {
|
|
883
|
+
nestId: string;
|
|
884
|
+
relation: string;
|
|
885
|
+
targetId: string;
|
|
886
|
+
}, {
|
|
887
|
+
nestId: string;
|
|
888
|
+
relation: string;
|
|
889
|
+
targetId: string;
|
|
890
|
+
}>;
|
|
891
|
+
removeGraphLink: z.ZodObject<{
|
|
892
|
+
nestId: z.ZodString;
|
|
893
|
+
relation: z.ZodString;
|
|
894
|
+
targetId: z.ZodString;
|
|
895
|
+
}, "strip", z.ZodTypeAny, {
|
|
896
|
+
nestId: string;
|
|
897
|
+
relation: string;
|
|
898
|
+
targetId: string;
|
|
899
|
+
}, {
|
|
900
|
+
nestId: string;
|
|
901
|
+
relation: string;
|
|
902
|
+
targetId: string;
|
|
903
|
+
}>;
|
|
792
904
|
};
|
|
793
905
|
export declare const toolDefinitions: ({
|
|
794
906
|
annotations: {
|
|
@@ -828,6 +940,7 @@ export declare const toolDefinitions: ({
|
|
|
828
940
|
_listTitle?: undefined;
|
|
829
941
|
nestId?: undefined;
|
|
830
942
|
fieldsMetaData?: undefined;
|
|
943
|
+
hints?: undefined;
|
|
831
944
|
parentId?: undefined;
|
|
832
945
|
description?: undefined;
|
|
833
946
|
labels?: undefined;
|
|
@@ -867,9 +980,12 @@ export declare const toolDefinitions: ({
|
|
|
867
980
|
tensionId?: undefined;
|
|
868
981
|
order?: undefined;
|
|
869
982
|
_id?: undefined;
|
|
870
|
-
removeNest?: undefined;
|
|
871
983
|
partId?: undefined;
|
|
984
|
+
childId?: undefined;
|
|
872
985
|
status?: undefined;
|
|
986
|
+
relation?: undefined;
|
|
987
|
+
direction?: undefined;
|
|
988
|
+
targetId?: undefined;
|
|
873
989
|
};
|
|
874
990
|
required?: undefined;
|
|
875
991
|
};
|
|
@@ -905,6 +1021,7 @@ export declare const toolDefinitions: ({
|
|
|
905
1021
|
_listTitle?: undefined;
|
|
906
1022
|
nestId?: undefined;
|
|
907
1023
|
fieldsMetaData?: undefined;
|
|
1024
|
+
hints?: undefined;
|
|
908
1025
|
parentId?: undefined;
|
|
909
1026
|
description?: undefined;
|
|
910
1027
|
labels?: undefined;
|
|
@@ -944,9 +1061,12 @@ export declare const toolDefinitions: ({
|
|
|
944
1061
|
tensionId?: undefined;
|
|
945
1062
|
order?: undefined;
|
|
946
1063
|
_id?: undefined;
|
|
947
|
-
removeNest?: undefined;
|
|
948
1064
|
partId?: undefined;
|
|
1065
|
+
childId?: undefined;
|
|
949
1066
|
status?: undefined;
|
|
1067
|
+
relation?: undefined;
|
|
1068
|
+
direction?: undefined;
|
|
1069
|
+
targetId?: undefined;
|
|
950
1070
|
};
|
|
951
1071
|
required: string[];
|
|
952
1072
|
};
|
|
@@ -1005,6 +1125,7 @@ export declare const toolDefinitions: ({
|
|
|
1005
1125
|
_listTitle?: undefined;
|
|
1006
1126
|
nestId?: undefined;
|
|
1007
1127
|
fieldsMetaData?: undefined;
|
|
1128
|
+
hints?: undefined;
|
|
1008
1129
|
parentId?: undefined;
|
|
1009
1130
|
description?: undefined;
|
|
1010
1131
|
labels?: undefined;
|
|
@@ -1044,9 +1165,12 @@ export declare const toolDefinitions: ({
|
|
|
1044
1165
|
tensionId?: undefined;
|
|
1045
1166
|
order?: undefined;
|
|
1046
1167
|
_id?: undefined;
|
|
1047
|
-
removeNest?: undefined;
|
|
1048
1168
|
partId?: undefined;
|
|
1169
|
+
childId?: undefined;
|
|
1049
1170
|
status?: undefined;
|
|
1171
|
+
relation?: undefined;
|
|
1172
|
+
direction?: undefined;
|
|
1173
|
+
targetId?: undefined;
|
|
1050
1174
|
};
|
|
1051
1175
|
required: string[];
|
|
1052
1176
|
};
|
|
@@ -1094,6 +1218,7 @@ export declare const toolDefinitions: ({
|
|
|
1094
1218
|
layout?: undefined;
|
|
1095
1219
|
nestId?: undefined;
|
|
1096
1220
|
fieldsMetaData?: undefined;
|
|
1221
|
+
hints?: undefined;
|
|
1097
1222
|
parentId?: undefined;
|
|
1098
1223
|
description?: undefined;
|
|
1099
1224
|
labels?: undefined;
|
|
@@ -1133,9 +1258,12 @@ export declare const toolDefinitions: ({
|
|
|
1133
1258
|
tensionId?: undefined;
|
|
1134
1259
|
order?: undefined;
|
|
1135
1260
|
_id?: undefined;
|
|
1136
|
-
removeNest?: undefined;
|
|
1137
1261
|
partId?: undefined;
|
|
1262
|
+
childId?: undefined;
|
|
1138
1263
|
status?: undefined;
|
|
1264
|
+
relation?: undefined;
|
|
1265
|
+
direction?: undefined;
|
|
1266
|
+
targetId?: undefined;
|
|
1139
1267
|
};
|
|
1140
1268
|
required: string[];
|
|
1141
1269
|
};
|
|
@@ -1162,6 +1290,10 @@ export declare const toolDefinitions: ({
|
|
|
1162
1290
|
type: string;
|
|
1163
1291
|
description: string;
|
|
1164
1292
|
};
|
|
1293
|
+
hints: {
|
|
1294
|
+
type: string;
|
|
1295
|
+
description: string;
|
|
1296
|
+
};
|
|
1165
1297
|
stripDescription: {
|
|
1166
1298
|
type: string;
|
|
1167
1299
|
description: string;
|
|
@@ -1218,9 +1350,12 @@ export declare const toolDefinitions: ({
|
|
|
1218
1350
|
tensionId?: undefined;
|
|
1219
1351
|
order?: undefined;
|
|
1220
1352
|
_id?: undefined;
|
|
1221
|
-
removeNest?: undefined;
|
|
1222
1353
|
partId?: undefined;
|
|
1354
|
+
childId?: undefined;
|
|
1223
1355
|
status?: undefined;
|
|
1356
|
+
relation?: undefined;
|
|
1357
|
+
direction?: undefined;
|
|
1358
|
+
targetId?: undefined;
|
|
1224
1359
|
};
|
|
1225
1360
|
required: string[];
|
|
1226
1361
|
};
|
|
@@ -1246,6 +1381,10 @@ export declare const toolDefinitions: ({
|
|
|
1246
1381
|
type: string;
|
|
1247
1382
|
description: string;
|
|
1248
1383
|
};
|
|
1384
|
+
hints: {
|
|
1385
|
+
type: string;
|
|
1386
|
+
description: string;
|
|
1387
|
+
};
|
|
1249
1388
|
stripDescription: {
|
|
1250
1389
|
type: string;
|
|
1251
1390
|
description: string;
|
|
@@ -1304,9 +1443,12 @@ export declare const toolDefinitions: ({
|
|
|
1304
1443
|
tensionId?: undefined;
|
|
1305
1444
|
order?: undefined;
|
|
1306
1445
|
_id?: undefined;
|
|
1307
|
-
removeNest?: undefined;
|
|
1308
1446
|
partId?: undefined;
|
|
1447
|
+
childId?: undefined;
|
|
1309
1448
|
status?: undefined;
|
|
1449
|
+
relation?: undefined;
|
|
1450
|
+
direction?: undefined;
|
|
1451
|
+
targetId?: undefined;
|
|
1310
1452
|
};
|
|
1311
1453
|
required: string[];
|
|
1312
1454
|
};
|
|
@@ -1386,6 +1528,7 @@ export declare const toolDefinitions: ({
|
|
|
1386
1528
|
_listTitle?: undefined;
|
|
1387
1529
|
nestId?: undefined;
|
|
1388
1530
|
fieldsMetaData?: undefined;
|
|
1531
|
+
hints?: undefined;
|
|
1389
1532
|
fields?: undefined;
|
|
1390
1533
|
data?: undefined;
|
|
1391
1534
|
due?: undefined;
|
|
@@ -1419,9 +1562,12 @@ export declare const toolDefinitions: ({
|
|
|
1419
1562
|
tensionId?: undefined;
|
|
1420
1563
|
order?: undefined;
|
|
1421
1564
|
_id?: undefined;
|
|
1422
|
-
removeNest?: undefined;
|
|
1423
1565
|
partId?: undefined;
|
|
1566
|
+
childId?: undefined;
|
|
1424
1567
|
status?: undefined;
|
|
1568
|
+
relation?: undefined;
|
|
1569
|
+
direction?: undefined;
|
|
1570
|
+
targetId?: undefined;
|
|
1425
1571
|
};
|
|
1426
1572
|
required: string[];
|
|
1427
1573
|
};
|
|
@@ -1515,6 +1661,7 @@ export declare const toolDefinitions: ({
|
|
|
1515
1661
|
query?: undefined;
|
|
1516
1662
|
_listTitle?: undefined;
|
|
1517
1663
|
fieldsMetaData?: undefined;
|
|
1664
|
+
hints?: undefined;
|
|
1518
1665
|
body?: undefined;
|
|
1519
1666
|
commentId?: undefined;
|
|
1520
1667
|
circleId?: undefined;
|
|
@@ -1544,9 +1691,12 @@ export declare const toolDefinitions: ({
|
|
|
1544
1691
|
tensionId?: undefined;
|
|
1545
1692
|
order?: undefined;
|
|
1546
1693
|
_id?: undefined;
|
|
1547
|
-
removeNest?: undefined;
|
|
1548
1694
|
partId?: undefined;
|
|
1695
|
+
childId?: undefined;
|
|
1549
1696
|
status?: undefined;
|
|
1697
|
+
relation?: undefined;
|
|
1698
|
+
direction?: undefined;
|
|
1699
|
+
targetId?: undefined;
|
|
1550
1700
|
};
|
|
1551
1701
|
required: string[];
|
|
1552
1702
|
};
|
|
@@ -1579,6 +1729,7 @@ export declare const toolDefinitions: ({
|
|
|
1579
1729
|
query?: undefined;
|
|
1580
1730
|
_listTitle?: undefined;
|
|
1581
1731
|
fieldsMetaData?: undefined;
|
|
1732
|
+
hints?: undefined;
|
|
1582
1733
|
parentId?: undefined;
|
|
1583
1734
|
description?: undefined;
|
|
1584
1735
|
labels?: undefined;
|
|
@@ -1618,9 +1769,12 @@ export declare const toolDefinitions: ({
|
|
|
1618
1769
|
tensionId?: undefined;
|
|
1619
1770
|
order?: undefined;
|
|
1620
1771
|
_id?: undefined;
|
|
1621
|
-
removeNest?: undefined;
|
|
1622
1772
|
partId?: undefined;
|
|
1773
|
+
childId?: undefined;
|
|
1623
1774
|
status?: undefined;
|
|
1775
|
+
relation?: undefined;
|
|
1776
|
+
direction?: undefined;
|
|
1777
|
+
targetId?: undefined;
|
|
1624
1778
|
};
|
|
1625
1779
|
required: string[];
|
|
1626
1780
|
};
|
|
@@ -1657,6 +1811,7 @@ export declare const toolDefinitions: ({
|
|
|
1657
1811
|
query?: undefined;
|
|
1658
1812
|
_listTitle?: undefined;
|
|
1659
1813
|
fieldsMetaData?: undefined;
|
|
1814
|
+
hints?: undefined;
|
|
1660
1815
|
parentId?: undefined;
|
|
1661
1816
|
description?: undefined;
|
|
1662
1817
|
labels?: undefined;
|
|
@@ -1695,9 +1850,12 @@ export declare const toolDefinitions: ({
|
|
|
1695
1850
|
tensionId?: undefined;
|
|
1696
1851
|
order?: undefined;
|
|
1697
1852
|
_id?: undefined;
|
|
1698
|
-
removeNest?: undefined;
|
|
1699
1853
|
partId?: undefined;
|
|
1854
|
+
childId?: undefined;
|
|
1700
1855
|
status?: undefined;
|
|
1856
|
+
relation?: undefined;
|
|
1857
|
+
direction?: undefined;
|
|
1858
|
+
targetId?: undefined;
|
|
1701
1859
|
};
|
|
1702
1860
|
required: string[];
|
|
1703
1861
|
};
|
|
@@ -1735,6 +1893,7 @@ export declare const toolDefinitions: ({
|
|
|
1735
1893
|
_listTitle?: undefined;
|
|
1736
1894
|
nestId?: undefined;
|
|
1737
1895
|
fieldsMetaData?: undefined;
|
|
1896
|
+
hints?: undefined;
|
|
1738
1897
|
parentId?: undefined;
|
|
1739
1898
|
description?: undefined;
|
|
1740
1899
|
labels?: undefined;
|
|
@@ -1772,9 +1931,12 @@ export declare const toolDefinitions: ({
|
|
|
1772
1931
|
tensionId?: undefined;
|
|
1773
1932
|
order?: undefined;
|
|
1774
1933
|
_id?: undefined;
|
|
1775
|
-
removeNest?: undefined;
|
|
1776
1934
|
partId?: undefined;
|
|
1935
|
+
childId?: undefined;
|
|
1777
1936
|
status?: undefined;
|
|
1937
|
+
relation?: undefined;
|
|
1938
|
+
direction?: undefined;
|
|
1939
|
+
targetId?: undefined;
|
|
1778
1940
|
};
|
|
1779
1941
|
required: string[];
|
|
1780
1942
|
};
|
|
@@ -1808,6 +1970,7 @@ export declare const toolDefinitions: ({
|
|
|
1808
1970
|
_listTitle?: undefined;
|
|
1809
1971
|
nestId?: undefined;
|
|
1810
1972
|
fieldsMetaData?: undefined;
|
|
1973
|
+
hints?: undefined;
|
|
1811
1974
|
parentId?: undefined;
|
|
1812
1975
|
description?: undefined;
|
|
1813
1976
|
labels?: undefined;
|
|
@@ -1846,9 +2009,12 @@ export declare const toolDefinitions: ({
|
|
|
1846
2009
|
tensionId?: undefined;
|
|
1847
2010
|
order?: undefined;
|
|
1848
2011
|
_id?: undefined;
|
|
1849
|
-
removeNest?: undefined;
|
|
1850
2012
|
partId?: undefined;
|
|
2013
|
+
childId?: undefined;
|
|
1851
2014
|
status?: undefined;
|
|
2015
|
+
relation?: undefined;
|
|
2016
|
+
direction?: undefined;
|
|
2017
|
+
targetId?: undefined;
|
|
1852
2018
|
};
|
|
1853
2019
|
required: string[];
|
|
1854
2020
|
};
|
|
@@ -1890,6 +2056,7 @@ export declare const toolDefinitions: ({
|
|
|
1890
2056
|
_listTitle?: undefined;
|
|
1891
2057
|
nestId?: undefined;
|
|
1892
2058
|
fieldsMetaData?: undefined;
|
|
2059
|
+
hints?: undefined;
|
|
1893
2060
|
parentId?: undefined;
|
|
1894
2061
|
description?: undefined;
|
|
1895
2062
|
labels?: undefined;
|
|
@@ -1929,9 +2096,12 @@ export declare const toolDefinitions: ({
|
|
|
1929
2096
|
tensionId?: undefined;
|
|
1930
2097
|
order?: undefined;
|
|
1931
2098
|
_id?: undefined;
|
|
1932
|
-
removeNest?: undefined;
|
|
1933
2099
|
partId?: undefined;
|
|
2100
|
+
childId?: undefined;
|
|
1934
2101
|
status?: undefined;
|
|
2102
|
+
relation?: undefined;
|
|
2103
|
+
direction?: undefined;
|
|
2104
|
+
targetId?: undefined;
|
|
1935
2105
|
};
|
|
1936
2106
|
required: string[];
|
|
1937
2107
|
};
|
|
@@ -1977,6 +2147,7 @@ export declare const toolDefinitions: ({
|
|
|
1977
2147
|
_listTitle?: undefined;
|
|
1978
2148
|
nestId?: undefined;
|
|
1979
2149
|
fieldsMetaData?: undefined;
|
|
2150
|
+
hints?: undefined;
|
|
1980
2151
|
parentId?: undefined;
|
|
1981
2152
|
description?: undefined;
|
|
1982
2153
|
labels?: undefined;
|
|
@@ -2015,9 +2186,12 @@ export declare const toolDefinitions: ({
|
|
|
2015
2186
|
tensionId?: undefined;
|
|
2016
2187
|
order?: undefined;
|
|
2017
2188
|
_id?: undefined;
|
|
2018
|
-
removeNest?: undefined;
|
|
2019
2189
|
partId?: undefined;
|
|
2190
|
+
childId?: undefined;
|
|
2020
2191
|
status?: undefined;
|
|
2192
|
+
relation?: undefined;
|
|
2193
|
+
direction?: undefined;
|
|
2194
|
+
targetId?: undefined;
|
|
2021
2195
|
};
|
|
2022
2196
|
required: string[];
|
|
2023
2197
|
};
|
|
@@ -2054,6 +2228,7 @@ export declare const toolDefinitions: ({
|
|
|
2054
2228
|
_listTitle?: undefined;
|
|
2055
2229
|
nestId?: undefined;
|
|
2056
2230
|
fieldsMetaData?: undefined;
|
|
2231
|
+
hints?: undefined;
|
|
2057
2232
|
parentId?: undefined;
|
|
2058
2233
|
description?: undefined;
|
|
2059
2234
|
labels?: undefined;
|
|
@@ -2092,9 +2267,12 @@ export declare const toolDefinitions: ({
|
|
|
2092
2267
|
tensionId?: undefined;
|
|
2093
2268
|
order?: undefined;
|
|
2094
2269
|
_id?: undefined;
|
|
2095
|
-
removeNest?: undefined;
|
|
2096
2270
|
partId?: undefined;
|
|
2271
|
+
childId?: undefined;
|
|
2097
2272
|
status?: undefined;
|
|
2273
|
+
relation?: undefined;
|
|
2274
|
+
direction?: undefined;
|
|
2275
|
+
targetId?: undefined;
|
|
2098
2276
|
};
|
|
2099
2277
|
required: string[];
|
|
2100
2278
|
};
|
|
@@ -2136,6 +2314,7 @@ export declare const toolDefinitions: ({
|
|
|
2136
2314
|
_listTitle?: undefined;
|
|
2137
2315
|
nestId?: undefined;
|
|
2138
2316
|
fieldsMetaData?: undefined;
|
|
2317
|
+
hints?: undefined;
|
|
2139
2318
|
parentId?: undefined;
|
|
2140
2319
|
description?: undefined;
|
|
2141
2320
|
labels?: undefined;
|
|
@@ -2175,9 +2354,12 @@ export declare const toolDefinitions: ({
|
|
|
2175
2354
|
tensionId?: undefined;
|
|
2176
2355
|
order?: undefined;
|
|
2177
2356
|
_id?: undefined;
|
|
2178
|
-
removeNest?: undefined;
|
|
2179
2357
|
partId?: undefined;
|
|
2358
|
+
childId?: undefined;
|
|
2180
2359
|
status?: undefined;
|
|
2360
|
+
relation?: undefined;
|
|
2361
|
+
direction?: undefined;
|
|
2362
|
+
targetId?: undefined;
|
|
2181
2363
|
};
|
|
2182
2364
|
required: string[];
|
|
2183
2365
|
};
|
|
@@ -2222,6 +2404,7 @@ export declare const toolDefinitions: ({
|
|
|
2222
2404
|
query?: undefined;
|
|
2223
2405
|
nestId?: undefined;
|
|
2224
2406
|
fieldsMetaData?: undefined;
|
|
2407
|
+
hints?: undefined;
|
|
2225
2408
|
parentId?: undefined;
|
|
2226
2409
|
description?: undefined;
|
|
2227
2410
|
labels?: undefined;
|
|
@@ -2261,9 +2444,12 @@ export declare const toolDefinitions: ({
|
|
|
2261
2444
|
tensionId?: undefined;
|
|
2262
2445
|
order?: undefined;
|
|
2263
2446
|
_id?: undefined;
|
|
2264
|
-
removeNest?: undefined;
|
|
2265
2447
|
partId?: undefined;
|
|
2448
|
+
childId?: undefined;
|
|
2266
2449
|
status?: undefined;
|
|
2450
|
+
relation?: undefined;
|
|
2451
|
+
direction?: undefined;
|
|
2452
|
+
targetId?: undefined;
|
|
2267
2453
|
};
|
|
2268
2454
|
required: string[];
|
|
2269
2455
|
};
|
|
@@ -2305,6 +2491,7 @@ export declare const toolDefinitions: ({
|
|
|
2305
2491
|
query?: undefined;
|
|
2306
2492
|
_listTitle?: undefined;
|
|
2307
2493
|
fieldsMetaData?: undefined;
|
|
2494
|
+
hints?: undefined;
|
|
2308
2495
|
parentId?: undefined;
|
|
2309
2496
|
description?: undefined;
|
|
2310
2497
|
labels?: undefined;
|
|
@@ -2343,9 +2530,12 @@ export declare const toolDefinitions: ({
|
|
|
2343
2530
|
tensionId?: undefined;
|
|
2344
2531
|
order?: undefined;
|
|
2345
2532
|
_id?: undefined;
|
|
2346
|
-
removeNest?: undefined;
|
|
2347
2533
|
partId?: undefined;
|
|
2534
|
+
childId?: undefined;
|
|
2348
2535
|
status?: undefined;
|
|
2536
|
+
relation?: undefined;
|
|
2537
|
+
direction?: undefined;
|
|
2538
|
+
targetId?: undefined;
|
|
2349
2539
|
};
|
|
2350
2540
|
required: string[];
|
|
2351
2541
|
};
|
|
@@ -2385,6 +2575,7 @@ export declare const toolDefinitions: ({
|
|
|
2385
2575
|
_listTitle?: undefined;
|
|
2386
2576
|
nestId?: undefined;
|
|
2387
2577
|
fieldsMetaData?: undefined;
|
|
2578
|
+
hints?: undefined;
|
|
2388
2579
|
parentId?: undefined;
|
|
2389
2580
|
description?: undefined;
|
|
2390
2581
|
labels?: undefined;
|
|
@@ -2423,9 +2614,12 @@ export declare const toolDefinitions: ({
|
|
|
2423
2614
|
tensionId?: undefined;
|
|
2424
2615
|
order?: undefined;
|
|
2425
2616
|
_id?: undefined;
|
|
2426
|
-
removeNest?: undefined;
|
|
2427
2617
|
partId?: undefined;
|
|
2618
|
+
childId?: undefined;
|
|
2428
2619
|
status?: undefined;
|
|
2620
|
+
relation?: undefined;
|
|
2621
|
+
direction?: undefined;
|
|
2622
|
+
targetId?: undefined;
|
|
2429
2623
|
};
|
|
2430
2624
|
required: string[];
|
|
2431
2625
|
};
|
|
@@ -2462,6 +2656,7 @@ export declare const toolDefinitions: ({
|
|
|
2462
2656
|
_listTitle?: undefined;
|
|
2463
2657
|
nestId?: undefined;
|
|
2464
2658
|
fieldsMetaData?: undefined;
|
|
2659
|
+
hints?: undefined;
|
|
2465
2660
|
parentId?: undefined;
|
|
2466
2661
|
description?: undefined;
|
|
2467
2662
|
labels?: undefined;
|
|
@@ -2500,9 +2695,12 @@ export declare const toolDefinitions: ({
|
|
|
2500
2695
|
tensionId?: undefined;
|
|
2501
2696
|
order?: undefined;
|
|
2502
2697
|
_id?: undefined;
|
|
2503
|
-
removeNest?: undefined;
|
|
2504
2698
|
partId?: undefined;
|
|
2699
|
+
childId?: undefined;
|
|
2505
2700
|
status?: undefined;
|
|
2701
|
+
relation?: undefined;
|
|
2702
|
+
direction?: undefined;
|
|
2703
|
+
targetId?: undefined;
|
|
2506
2704
|
};
|
|
2507
2705
|
required: string[];
|
|
2508
2706
|
};
|
|
@@ -2547,6 +2745,7 @@ export declare const toolDefinitions: ({
|
|
|
2547
2745
|
_listTitle?: undefined;
|
|
2548
2746
|
nestId?: undefined;
|
|
2549
2747
|
fieldsMetaData?: undefined;
|
|
2748
|
+
hints?: undefined;
|
|
2550
2749
|
parentId?: undefined;
|
|
2551
2750
|
description?: undefined;
|
|
2552
2751
|
labels?: undefined;
|
|
@@ -2583,9 +2782,12 @@ export declare const toolDefinitions: ({
|
|
|
2583
2782
|
tensionId?: undefined;
|
|
2584
2783
|
order?: undefined;
|
|
2585
2784
|
_id?: undefined;
|
|
2586
|
-
removeNest?: undefined;
|
|
2587
2785
|
partId?: undefined;
|
|
2786
|
+
childId?: undefined;
|
|
2588
2787
|
status?: undefined;
|
|
2788
|
+
relation?: undefined;
|
|
2789
|
+
direction?: undefined;
|
|
2790
|
+
targetId?: undefined;
|
|
2589
2791
|
};
|
|
2590
2792
|
required: string[];
|
|
2591
2793
|
};
|
|
@@ -2622,6 +2824,7 @@ export declare const toolDefinitions: ({
|
|
|
2622
2824
|
_listTitle?: undefined;
|
|
2623
2825
|
nestId?: undefined;
|
|
2624
2826
|
fieldsMetaData?: undefined;
|
|
2827
|
+
hints?: undefined;
|
|
2625
2828
|
parentId?: undefined;
|
|
2626
2829
|
description?: undefined;
|
|
2627
2830
|
labels?: undefined;
|
|
@@ -2660,9 +2863,12 @@ export declare const toolDefinitions: ({
|
|
|
2660
2863
|
tensionId?: undefined;
|
|
2661
2864
|
order?: undefined;
|
|
2662
2865
|
_id?: undefined;
|
|
2663
|
-
removeNest?: undefined;
|
|
2664
2866
|
partId?: undefined;
|
|
2867
|
+
childId?: undefined;
|
|
2665
2868
|
status?: undefined;
|
|
2869
|
+
relation?: undefined;
|
|
2870
|
+
direction?: undefined;
|
|
2871
|
+
targetId?: undefined;
|
|
2666
2872
|
};
|
|
2667
2873
|
required: string[];
|
|
2668
2874
|
};
|
|
@@ -2710,6 +2916,7 @@ export declare const toolDefinitions: ({
|
|
|
2710
2916
|
_listTitle?: undefined;
|
|
2711
2917
|
nestId?: undefined;
|
|
2712
2918
|
fieldsMetaData?: undefined;
|
|
2919
|
+
hints?: undefined;
|
|
2713
2920
|
parentId?: undefined;
|
|
2714
2921
|
description?: undefined;
|
|
2715
2922
|
labels?: undefined;
|
|
@@ -2746,9 +2953,12 @@ export declare const toolDefinitions: ({
|
|
|
2746
2953
|
tensionId?: undefined;
|
|
2747
2954
|
order?: undefined;
|
|
2748
2955
|
_id?: undefined;
|
|
2749
|
-
removeNest?: undefined;
|
|
2750
2956
|
partId?: undefined;
|
|
2957
|
+
childId?: undefined;
|
|
2751
2958
|
status?: undefined;
|
|
2959
|
+
relation?: undefined;
|
|
2960
|
+
direction?: undefined;
|
|
2961
|
+
targetId?: undefined;
|
|
2752
2962
|
};
|
|
2753
2963
|
required: string[];
|
|
2754
2964
|
};
|
|
@@ -2781,6 +2991,7 @@ export declare const toolDefinitions: ({
|
|
|
2781
2991
|
_listTitle?: undefined;
|
|
2782
2992
|
nestId?: undefined;
|
|
2783
2993
|
fieldsMetaData?: undefined;
|
|
2994
|
+
hints?: undefined;
|
|
2784
2995
|
parentId?: undefined;
|
|
2785
2996
|
description?: undefined;
|
|
2786
2997
|
labels?: undefined;
|
|
@@ -2820,9 +3031,12 @@ export declare const toolDefinitions: ({
|
|
|
2820
3031
|
tensionId?: undefined;
|
|
2821
3032
|
order?: undefined;
|
|
2822
3033
|
_id?: undefined;
|
|
2823
|
-
removeNest?: undefined;
|
|
2824
3034
|
partId?: undefined;
|
|
3035
|
+
childId?: undefined;
|
|
2825
3036
|
status?: undefined;
|
|
3037
|
+
relation?: undefined;
|
|
3038
|
+
direction?: undefined;
|
|
3039
|
+
targetId?: undefined;
|
|
2826
3040
|
};
|
|
2827
3041
|
required: string[];
|
|
2828
3042
|
};
|
|
@@ -2859,6 +3073,7 @@ export declare const toolDefinitions: ({
|
|
|
2859
3073
|
_listTitle?: undefined;
|
|
2860
3074
|
nestId?: undefined;
|
|
2861
3075
|
fieldsMetaData?: undefined;
|
|
3076
|
+
hints?: undefined;
|
|
2862
3077
|
parentId?: undefined;
|
|
2863
3078
|
description?: undefined;
|
|
2864
3079
|
labels?: undefined;
|
|
@@ -2897,9 +3112,12 @@ export declare const toolDefinitions: ({
|
|
|
2897
3112
|
tensionId?: undefined;
|
|
2898
3113
|
order?: undefined;
|
|
2899
3114
|
_id?: undefined;
|
|
2900
|
-
removeNest?: undefined;
|
|
2901
3115
|
partId?: undefined;
|
|
3116
|
+
childId?: undefined;
|
|
2902
3117
|
status?: undefined;
|
|
3118
|
+
relation?: undefined;
|
|
3119
|
+
direction?: undefined;
|
|
3120
|
+
targetId?: undefined;
|
|
2903
3121
|
};
|
|
2904
3122
|
required?: undefined;
|
|
2905
3123
|
};
|
|
@@ -2941,6 +3159,7 @@ export declare const toolDefinitions: ({
|
|
|
2941
3159
|
_listTitle?: undefined;
|
|
2942
3160
|
nestId?: undefined;
|
|
2943
3161
|
fieldsMetaData?: undefined;
|
|
3162
|
+
hints?: undefined;
|
|
2944
3163
|
parentId?: undefined;
|
|
2945
3164
|
labels?: undefined;
|
|
2946
3165
|
users?: undefined;
|
|
@@ -2979,9 +3198,12 @@ export declare const toolDefinitions: ({
|
|
|
2979
3198
|
tensionId?: undefined;
|
|
2980
3199
|
order?: undefined;
|
|
2981
3200
|
_id?: undefined;
|
|
2982
|
-
removeNest?: undefined;
|
|
2983
3201
|
partId?: undefined;
|
|
3202
|
+
childId?: undefined;
|
|
2984
3203
|
status?: undefined;
|
|
3204
|
+
relation?: undefined;
|
|
3205
|
+
direction?: undefined;
|
|
3206
|
+
targetId?: undefined;
|
|
2985
3207
|
};
|
|
2986
3208
|
required: string[];
|
|
2987
3209
|
};
|
|
@@ -3017,6 +3239,7 @@ export declare const toolDefinitions: ({
|
|
|
3017
3239
|
query?: undefined;
|
|
3018
3240
|
_listTitle?: undefined;
|
|
3019
3241
|
fieldsMetaData?: undefined;
|
|
3242
|
+
hints?: undefined;
|
|
3020
3243
|
parentId?: undefined;
|
|
3021
3244
|
description?: undefined;
|
|
3022
3245
|
labels?: undefined;
|
|
@@ -3056,9 +3279,12 @@ export declare const toolDefinitions: ({
|
|
|
3056
3279
|
tensionId?: undefined;
|
|
3057
3280
|
order?: undefined;
|
|
3058
3281
|
_id?: undefined;
|
|
3059
|
-
removeNest?: undefined;
|
|
3060
3282
|
partId?: undefined;
|
|
3283
|
+
childId?: undefined;
|
|
3061
3284
|
status?: undefined;
|
|
3285
|
+
relation?: undefined;
|
|
3286
|
+
direction?: undefined;
|
|
3287
|
+
targetId?: undefined;
|
|
3062
3288
|
};
|
|
3063
3289
|
required: string[];
|
|
3064
3290
|
};
|
|
@@ -3106,6 +3332,7 @@ export declare const toolDefinitions: ({
|
|
|
3106
3332
|
query?: undefined;
|
|
3107
3333
|
_listTitle?: undefined;
|
|
3108
3334
|
fieldsMetaData?: undefined;
|
|
3335
|
+
hints?: undefined;
|
|
3109
3336
|
parentId?: undefined;
|
|
3110
3337
|
labels?: undefined;
|
|
3111
3338
|
users?: undefined;
|
|
@@ -3142,9 +3369,12 @@ export declare const toolDefinitions: ({
|
|
|
3142
3369
|
tensionId?: undefined;
|
|
3143
3370
|
order?: undefined;
|
|
3144
3371
|
_id?: undefined;
|
|
3145
|
-
removeNest?: undefined;
|
|
3146
3372
|
partId?: undefined;
|
|
3373
|
+
childId?: undefined;
|
|
3147
3374
|
status?: undefined;
|
|
3375
|
+
relation?: undefined;
|
|
3376
|
+
direction?: undefined;
|
|
3377
|
+
targetId?: undefined;
|
|
3148
3378
|
};
|
|
3149
3379
|
required: string[];
|
|
3150
3380
|
};
|
|
@@ -3181,6 +3411,7 @@ export declare const toolDefinitions: ({
|
|
|
3181
3411
|
_listTitle?: undefined;
|
|
3182
3412
|
nestId?: undefined;
|
|
3183
3413
|
fieldsMetaData?: undefined;
|
|
3414
|
+
hints?: undefined;
|
|
3184
3415
|
parentId?: undefined;
|
|
3185
3416
|
description?: undefined;
|
|
3186
3417
|
labels?: undefined;
|
|
@@ -3219,9 +3450,12 @@ export declare const toolDefinitions: ({
|
|
|
3219
3450
|
tensionId?: undefined;
|
|
3220
3451
|
order?: undefined;
|
|
3221
3452
|
_id?: undefined;
|
|
3222
|
-
removeNest?: undefined;
|
|
3223
3453
|
partId?: undefined;
|
|
3454
|
+
childId?: undefined;
|
|
3224
3455
|
status?: undefined;
|
|
3456
|
+
relation?: undefined;
|
|
3457
|
+
direction?: undefined;
|
|
3458
|
+
targetId?: undefined;
|
|
3225
3459
|
};
|
|
3226
3460
|
required: string[];
|
|
3227
3461
|
};
|
|
@@ -3263,6 +3497,7 @@ export declare const toolDefinitions: ({
|
|
|
3263
3497
|
query?: undefined;
|
|
3264
3498
|
_listTitle?: undefined;
|
|
3265
3499
|
fieldsMetaData?: undefined;
|
|
3500
|
+
hints?: undefined;
|
|
3266
3501
|
parentId?: undefined;
|
|
3267
3502
|
description?: undefined;
|
|
3268
3503
|
labels?: undefined;
|
|
@@ -3300,9 +3535,12 @@ export declare const toolDefinitions: ({
|
|
|
3300
3535
|
tensionId?: undefined;
|
|
3301
3536
|
order?: undefined;
|
|
3302
3537
|
_id?: undefined;
|
|
3303
|
-
removeNest?: undefined;
|
|
3304
3538
|
partId?: undefined;
|
|
3539
|
+
childId?: undefined;
|
|
3305
3540
|
status?: undefined;
|
|
3541
|
+
relation?: undefined;
|
|
3542
|
+
direction?: undefined;
|
|
3543
|
+
targetId?: undefined;
|
|
3306
3544
|
};
|
|
3307
3545
|
required: string[];
|
|
3308
3546
|
};
|
|
@@ -3332,6 +3570,7 @@ export declare const toolDefinitions: ({
|
|
|
3332
3570
|
_listTitle?: undefined;
|
|
3333
3571
|
nestId?: undefined;
|
|
3334
3572
|
fieldsMetaData?: undefined;
|
|
3573
|
+
hints?: undefined;
|
|
3335
3574
|
parentId?: undefined;
|
|
3336
3575
|
description?: undefined;
|
|
3337
3576
|
labels?: undefined;
|
|
@@ -3371,9 +3610,12 @@ export declare const toolDefinitions: ({
|
|
|
3371
3610
|
tensionId?: undefined;
|
|
3372
3611
|
order?: undefined;
|
|
3373
3612
|
_id?: undefined;
|
|
3374
|
-
removeNest?: undefined;
|
|
3375
3613
|
partId?: undefined;
|
|
3614
|
+
childId?: undefined;
|
|
3376
3615
|
status?: undefined;
|
|
3616
|
+
relation?: undefined;
|
|
3617
|
+
direction?: undefined;
|
|
3618
|
+
targetId?: undefined;
|
|
3377
3619
|
};
|
|
3378
3620
|
required?: undefined;
|
|
3379
3621
|
};
|
|
@@ -3418,6 +3660,7 @@ export declare const toolDefinitions: ({
|
|
|
3418
3660
|
_listTitle?: undefined;
|
|
3419
3661
|
nestId?: undefined;
|
|
3420
3662
|
fieldsMetaData?: undefined;
|
|
3663
|
+
hints?: undefined;
|
|
3421
3664
|
parentId?: undefined;
|
|
3422
3665
|
labels?: undefined;
|
|
3423
3666
|
users?: undefined;
|
|
@@ -3454,9 +3697,12 @@ export declare const toolDefinitions: ({
|
|
|
3454
3697
|
tensionId?: undefined;
|
|
3455
3698
|
order?: undefined;
|
|
3456
3699
|
_id?: undefined;
|
|
3457
|
-
removeNest?: undefined;
|
|
3458
3700
|
partId?: undefined;
|
|
3701
|
+
childId?: undefined;
|
|
3459
3702
|
status?: undefined;
|
|
3703
|
+
relation?: undefined;
|
|
3704
|
+
direction?: undefined;
|
|
3705
|
+
targetId?: undefined;
|
|
3460
3706
|
};
|
|
3461
3707
|
required: string[];
|
|
3462
3708
|
};
|
|
@@ -3496,6 +3742,7 @@ export declare const toolDefinitions: ({
|
|
|
3496
3742
|
_listTitle?: undefined;
|
|
3497
3743
|
nestId?: undefined;
|
|
3498
3744
|
fieldsMetaData?: undefined;
|
|
3745
|
+
hints?: undefined;
|
|
3499
3746
|
parentId?: undefined;
|
|
3500
3747
|
description?: undefined;
|
|
3501
3748
|
labels?: undefined;
|
|
@@ -3534,9 +3781,12 @@ export declare const toolDefinitions: ({
|
|
|
3534
3781
|
tensionId?: undefined;
|
|
3535
3782
|
order?: undefined;
|
|
3536
3783
|
_id?: undefined;
|
|
3537
|
-
removeNest?: undefined;
|
|
3538
3784
|
partId?: undefined;
|
|
3785
|
+
childId?: undefined;
|
|
3539
3786
|
status?: undefined;
|
|
3787
|
+
relation?: undefined;
|
|
3788
|
+
direction?: undefined;
|
|
3789
|
+
targetId?: undefined;
|
|
3540
3790
|
};
|
|
3541
3791
|
required: string[];
|
|
3542
3792
|
};
|
|
@@ -3569,6 +3819,7 @@ export declare const toolDefinitions: ({
|
|
|
3569
3819
|
_listTitle?: undefined;
|
|
3570
3820
|
nestId?: undefined;
|
|
3571
3821
|
fieldsMetaData?: undefined;
|
|
3822
|
+
hints?: undefined;
|
|
3572
3823
|
parentId?: undefined;
|
|
3573
3824
|
description?: undefined;
|
|
3574
3825
|
labels?: undefined;
|
|
@@ -3608,9 +3859,12 @@ export declare const toolDefinitions: ({
|
|
|
3608
3859
|
tensionId?: undefined;
|
|
3609
3860
|
order?: undefined;
|
|
3610
3861
|
_id?: undefined;
|
|
3611
|
-
removeNest?: undefined;
|
|
3612
3862
|
partId?: undefined;
|
|
3863
|
+
childId?: undefined;
|
|
3613
3864
|
status?: undefined;
|
|
3865
|
+
relation?: undefined;
|
|
3866
|
+
direction?: undefined;
|
|
3867
|
+
targetId?: undefined;
|
|
3614
3868
|
};
|
|
3615
3869
|
required?: undefined;
|
|
3616
3870
|
};
|
|
@@ -3652,6 +3906,7 @@ export declare const toolDefinitions: ({
|
|
|
3652
3906
|
query?: undefined;
|
|
3653
3907
|
_listTitle?: undefined;
|
|
3654
3908
|
fieldsMetaData?: undefined;
|
|
3909
|
+
hints?: undefined;
|
|
3655
3910
|
parentId?: undefined;
|
|
3656
3911
|
description?: undefined;
|
|
3657
3912
|
labels?: undefined;
|
|
@@ -3690,9 +3945,12 @@ export declare const toolDefinitions: ({
|
|
|
3690
3945
|
tensionId?: undefined;
|
|
3691
3946
|
order?: undefined;
|
|
3692
3947
|
_id?: undefined;
|
|
3693
|
-
removeNest?: undefined;
|
|
3694
3948
|
partId?: undefined;
|
|
3949
|
+
childId?: undefined;
|
|
3695
3950
|
status?: undefined;
|
|
3951
|
+
relation?: undefined;
|
|
3952
|
+
direction?: undefined;
|
|
3953
|
+
targetId?: undefined;
|
|
3696
3954
|
};
|
|
3697
3955
|
required: string[];
|
|
3698
3956
|
};
|
|
@@ -3726,6 +3984,7 @@ export declare const toolDefinitions: ({
|
|
|
3726
3984
|
_listTitle?: undefined;
|
|
3727
3985
|
nestId?: undefined;
|
|
3728
3986
|
fieldsMetaData?: undefined;
|
|
3987
|
+
hints?: undefined;
|
|
3729
3988
|
parentId?: undefined;
|
|
3730
3989
|
description?: undefined;
|
|
3731
3990
|
labels?: undefined;
|
|
@@ -3764,9 +4023,12 @@ export declare const toolDefinitions: ({
|
|
|
3764
4023
|
tensionId?: undefined;
|
|
3765
4024
|
order?: undefined;
|
|
3766
4025
|
_id?: undefined;
|
|
3767
|
-
removeNest?: undefined;
|
|
3768
4026
|
partId?: undefined;
|
|
4027
|
+
childId?: undefined;
|
|
3769
4028
|
status?: undefined;
|
|
4029
|
+
relation?: undefined;
|
|
4030
|
+
direction?: undefined;
|
|
4031
|
+
targetId?: undefined;
|
|
3770
4032
|
};
|
|
3771
4033
|
required?: undefined;
|
|
3772
4034
|
};
|
|
@@ -3800,6 +4062,7 @@ export declare const toolDefinitions: ({
|
|
|
3800
4062
|
_listTitle?: undefined;
|
|
3801
4063
|
nestId?: undefined;
|
|
3802
4064
|
fieldsMetaData?: undefined;
|
|
4065
|
+
hints?: undefined;
|
|
3803
4066
|
parentId?: undefined;
|
|
3804
4067
|
description?: undefined;
|
|
3805
4068
|
labels?: undefined;
|
|
@@ -3838,9 +4101,12 @@ export declare const toolDefinitions: ({
|
|
|
3838
4101
|
tensionId?: undefined;
|
|
3839
4102
|
order?: undefined;
|
|
3840
4103
|
_id?: undefined;
|
|
3841
|
-
removeNest?: undefined;
|
|
3842
4104
|
partId?: undefined;
|
|
4105
|
+
childId?: undefined;
|
|
3843
4106
|
status?: undefined;
|
|
4107
|
+
relation?: undefined;
|
|
4108
|
+
direction?: undefined;
|
|
4109
|
+
targetId?: undefined;
|
|
3844
4110
|
};
|
|
3845
4111
|
required?: undefined;
|
|
3846
4112
|
};
|
|
@@ -3889,6 +4155,7 @@ export declare const toolDefinitions: ({
|
|
|
3889
4155
|
_listTitle?: undefined;
|
|
3890
4156
|
nestId?: undefined;
|
|
3891
4157
|
fieldsMetaData?: undefined;
|
|
4158
|
+
hints?: undefined;
|
|
3892
4159
|
parentId?: undefined;
|
|
3893
4160
|
description?: undefined;
|
|
3894
4161
|
labels?: undefined;
|
|
@@ -3925,9 +4192,12 @@ export declare const toolDefinitions: ({
|
|
|
3925
4192
|
tensionId?: undefined;
|
|
3926
4193
|
order?: undefined;
|
|
3927
4194
|
_id?: undefined;
|
|
3928
|
-
removeNest?: undefined;
|
|
3929
4195
|
partId?: undefined;
|
|
4196
|
+
childId?: undefined;
|
|
3930
4197
|
status?: undefined;
|
|
4198
|
+
relation?: undefined;
|
|
4199
|
+
direction?: undefined;
|
|
4200
|
+
targetId?: undefined;
|
|
3931
4201
|
};
|
|
3932
4202
|
required?: undefined;
|
|
3933
4203
|
};
|
|
@@ -3975,6 +4245,7 @@ export declare const toolDefinitions: ({
|
|
|
3975
4245
|
query?: undefined;
|
|
3976
4246
|
_listTitle?: undefined;
|
|
3977
4247
|
fieldsMetaData?: undefined;
|
|
4248
|
+
hints?: undefined;
|
|
3978
4249
|
parentId?: undefined;
|
|
3979
4250
|
labels?: undefined;
|
|
3980
4251
|
users?: undefined;
|
|
@@ -4011,9 +4282,12 @@ export declare const toolDefinitions: ({
|
|
|
4011
4282
|
tensionId?: undefined;
|
|
4012
4283
|
order?: undefined;
|
|
4013
4284
|
_id?: undefined;
|
|
4014
|
-
removeNest?: undefined;
|
|
4015
4285
|
partId?: undefined;
|
|
4286
|
+
childId?: undefined;
|
|
4016
4287
|
status?: undefined;
|
|
4288
|
+
relation?: undefined;
|
|
4289
|
+
direction?: undefined;
|
|
4290
|
+
targetId?: undefined;
|
|
4017
4291
|
};
|
|
4018
4292
|
required: string[];
|
|
4019
4293
|
};
|
|
@@ -4050,6 +4324,7 @@ export declare const toolDefinitions: ({
|
|
|
4050
4324
|
query?: undefined;
|
|
4051
4325
|
_listTitle?: undefined;
|
|
4052
4326
|
fieldsMetaData?: undefined;
|
|
4327
|
+
hints?: undefined;
|
|
4053
4328
|
parentId?: undefined;
|
|
4054
4329
|
description?: undefined;
|
|
4055
4330
|
labels?: undefined;
|
|
@@ -4088,9 +4363,12 @@ export declare const toolDefinitions: ({
|
|
|
4088
4363
|
needs?: undefined;
|
|
4089
4364
|
order?: undefined;
|
|
4090
4365
|
_id?: undefined;
|
|
4091
|
-
removeNest?: undefined;
|
|
4092
4366
|
partId?: undefined;
|
|
4367
|
+
childId?: undefined;
|
|
4093
4368
|
status?: undefined;
|
|
4369
|
+
relation?: undefined;
|
|
4370
|
+
direction?: undefined;
|
|
4371
|
+
targetId?: undefined;
|
|
4094
4372
|
};
|
|
4095
4373
|
required: string[];
|
|
4096
4374
|
};
|
|
@@ -4133,6 +4411,7 @@ export declare const toolDefinitions: ({
|
|
|
4133
4411
|
query?: undefined;
|
|
4134
4412
|
_listTitle?: undefined;
|
|
4135
4413
|
fieldsMetaData?: undefined;
|
|
4414
|
+
hints?: undefined;
|
|
4136
4415
|
parentId?: undefined;
|
|
4137
4416
|
description?: undefined;
|
|
4138
4417
|
labels?: undefined;
|
|
@@ -4171,9 +4450,12 @@ export declare const toolDefinitions: ({
|
|
|
4171
4450
|
needs?: undefined;
|
|
4172
4451
|
tensionId?: undefined;
|
|
4173
4452
|
_id?: undefined;
|
|
4174
|
-
removeNest?: undefined;
|
|
4175
4453
|
partId?: undefined;
|
|
4454
|
+
childId?: undefined;
|
|
4176
4455
|
status?: undefined;
|
|
4456
|
+
relation?: undefined;
|
|
4457
|
+
direction?: undefined;
|
|
4458
|
+
targetId?: undefined;
|
|
4177
4459
|
};
|
|
4178
4460
|
required: string[];
|
|
4179
4461
|
};
|
|
@@ -4225,6 +4507,7 @@ export declare const toolDefinitions: ({
|
|
|
4225
4507
|
query?: undefined;
|
|
4226
4508
|
_listTitle?: undefined;
|
|
4227
4509
|
fieldsMetaData?: undefined;
|
|
4510
|
+
hints?: undefined;
|
|
4228
4511
|
parentId?: undefined;
|
|
4229
4512
|
labels?: undefined;
|
|
4230
4513
|
users?: undefined;
|
|
@@ -4260,9 +4543,12 @@ export declare const toolDefinitions: ({
|
|
|
4260
4543
|
group?: undefined;
|
|
4261
4544
|
order?: undefined;
|
|
4262
4545
|
_id?: undefined;
|
|
4263
|
-
removeNest?: undefined;
|
|
4264
4546
|
partId?: undefined;
|
|
4547
|
+
childId?: undefined;
|
|
4265
4548
|
status?: undefined;
|
|
4549
|
+
relation?: undefined;
|
|
4550
|
+
direction?: undefined;
|
|
4551
|
+
targetId?: undefined;
|
|
4266
4552
|
};
|
|
4267
4553
|
required: string[];
|
|
4268
4554
|
};
|
|
@@ -4336,10 +4622,6 @@ export declare const toolDefinitions: ({
|
|
|
4336
4622
|
};
|
|
4337
4623
|
description: string;
|
|
4338
4624
|
};
|
|
4339
|
-
removeNest: {
|
|
4340
|
-
type: string;
|
|
4341
|
-
description: string;
|
|
4342
|
-
};
|
|
4343
4625
|
search?: undefined;
|
|
4344
4626
|
limit?: undefined;
|
|
4345
4627
|
page?: undefined;
|
|
@@ -4353,6 +4635,7 @@ export declare const toolDefinitions: ({
|
|
|
4353
4635
|
query?: undefined;
|
|
4354
4636
|
_listTitle?: undefined;
|
|
4355
4637
|
fieldsMetaData?: undefined;
|
|
4638
|
+
hints?: undefined;
|
|
4356
4639
|
fields?: undefined;
|
|
4357
4640
|
data?: undefined;
|
|
4358
4641
|
completed?: undefined;
|
|
@@ -4384,7 +4667,11 @@ export declare const toolDefinitions: ({
|
|
|
4384
4667
|
needs?: undefined;
|
|
4385
4668
|
order?: undefined;
|
|
4386
4669
|
partId?: undefined;
|
|
4670
|
+
childId?: undefined;
|
|
4387
4671
|
status?: undefined;
|
|
4672
|
+
relation?: undefined;
|
|
4673
|
+
direction?: undefined;
|
|
4674
|
+
targetId?: undefined;
|
|
4388
4675
|
};
|
|
4389
4676
|
required: string[];
|
|
4390
4677
|
};
|
|
@@ -4444,10 +4731,6 @@ export declare const toolDefinitions: ({
|
|
|
4444
4731
|
type: string;
|
|
4445
4732
|
description: string;
|
|
4446
4733
|
};
|
|
4447
|
-
removeNest: {
|
|
4448
|
-
type: string;
|
|
4449
|
-
description: string;
|
|
4450
|
-
};
|
|
4451
4734
|
accountabilities: {
|
|
4452
4735
|
type: string;
|
|
4453
4736
|
items: {
|
|
@@ -4475,6 +4758,7 @@ export declare const toolDefinitions: ({
|
|
|
4475
4758
|
query?: undefined;
|
|
4476
4759
|
_listTitle?: undefined;
|
|
4477
4760
|
fieldsMetaData?: undefined;
|
|
4761
|
+
hints?: undefined;
|
|
4478
4762
|
fields?: undefined;
|
|
4479
4763
|
data?: undefined;
|
|
4480
4764
|
completed?: undefined;
|
|
@@ -4506,7 +4790,11 @@ export declare const toolDefinitions: ({
|
|
|
4506
4790
|
needs?: undefined;
|
|
4507
4791
|
order?: undefined;
|
|
4508
4792
|
_id?: undefined;
|
|
4793
|
+
childId?: undefined;
|
|
4509
4794
|
status?: undefined;
|
|
4795
|
+
relation?: undefined;
|
|
4796
|
+
direction?: undefined;
|
|
4797
|
+
targetId?: undefined;
|
|
4510
4798
|
};
|
|
4511
4799
|
required: string[];
|
|
4512
4800
|
};
|
|
@@ -4547,6 +4835,7 @@ export declare const toolDefinitions: ({
|
|
|
4547
4835
|
query?: undefined;
|
|
4548
4836
|
_listTitle?: undefined;
|
|
4549
4837
|
fieldsMetaData?: undefined;
|
|
4838
|
+
hints?: undefined;
|
|
4550
4839
|
parentId?: undefined;
|
|
4551
4840
|
description?: undefined;
|
|
4552
4841
|
labels?: undefined;
|
|
@@ -4585,16 +4874,15 @@ export declare const toolDefinitions: ({
|
|
|
4585
4874
|
needs?: undefined;
|
|
4586
4875
|
order?: undefined;
|
|
4587
4876
|
_id?: undefined;
|
|
4588
|
-
|
|
4877
|
+
childId?: undefined;
|
|
4589
4878
|
status?: undefined;
|
|
4879
|
+
relation?: undefined;
|
|
4880
|
+
direction?: undefined;
|
|
4881
|
+
targetId?: undefined;
|
|
4590
4882
|
};
|
|
4591
4883
|
required: string[];
|
|
4592
4884
|
};
|
|
4593
4885
|
} | {
|
|
4594
|
-
annotations: {
|
|
4595
|
-
readOnlyHint: boolean;
|
|
4596
|
-
destructiveHint: boolean;
|
|
4597
|
-
};
|
|
4598
4886
|
name: string;
|
|
4599
4887
|
description: string;
|
|
4600
4888
|
inputSchema: {
|
|
@@ -4608,9 +4896,8 @@ export declare const toolDefinitions: ({
|
|
|
4608
4896
|
type: string;
|
|
4609
4897
|
description: string;
|
|
4610
4898
|
};
|
|
4611
|
-
|
|
4899
|
+
partId: {
|
|
4612
4900
|
type: string;
|
|
4613
|
-
enum: string[];
|
|
4614
4901
|
description: string;
|
|
4615
4902
|
};
|
|
4616
4903
|
search?: undefined;
|
|
@@ -4628,6 +4915,7 @@ export declare const toolDefinitions: ({
|
|
|
4628
4915
|
query?: undefined;
|
|
4629
4916
|
_listTitle?: undefined;
|
|
4630
4917
|
fieldsMetaData?: undefined;
|
|
4918
|
+
hints?: undefined;
|
|
4631
4919
|
parentId?: undefined;
|
|
4632
4920
|
description?: undefined;
|
|
4633
4921
|
labels?: undefined;
|
|
@@ -4666,8 +4954,529 @@ export declare const toolDefinitions: ({
|
|
|
4666
4954
|
needs?: undefined;
|
|
4667
4955
|
order?: undefined;
|
|
4668
4956
|
_id?: undefined;
|
|
4669
|
-
|
|
4670
|
-
|
|
4957
|
+
childId?: undefined;
|
|
4958
|
+
status?: undefined;
|
|
4959
|
+
relation?: undefined;
|
|
4960
|
+
direction?: undefined;
|
|
4961
|
+
targetId?: undefined;
|
|
4962
|
+
};
|
|
4963
|
+
required: string[];
|
|
4964
|
+
};
|
|
4965
|
+
} | {
|
|
4966
|
+
name: string;
|
|
4967
|
+
description: string;
|
|
4968
|
+
inputSchema: {
|
|
4969
|
+
type: "object";
|
|
4970
|
+
properties: {
|
|
4971
|
+
nestId: {
|
|
4972
|
+
type: string;
|
|
4973
|
+
description: string;
|
|
4974
|
+
};
|
|
4975
|
+
tensionId: {
|
|
4976
|
+
type: string;
|
|
4977
|
+
description: string;
|
|
4978
|
+
};
|
|
4979
|
+
partId: {
|
|
4980
|
+
type: string;
|
|
4981
|
+
description: string;
|
|
4982
|
+
};
|
|
4983
|
+
title: {
|
|
4984
|
+
type: string;
|
|
4985
|
+
description: string;
|
|
4986
|
+
};
|
|
4987
|
+
labels: {
|
|
4988
|
+
type: string;
|
|
4989
|
+
items: {
|
|
4990
|
+
type: string;
|
|
4991
|
+
};
|
|
4992
|
+
description: string;
|
|
4993
|
+
};
|
|
4994
|
+
search?: undefined;
|
|
4995
|
+
limit?: undefined;
|
|
4996
|
+
page?: undefined;
|
|
4997
|
+
stripDescription?: undefined;
|
|
4998
|
+
workspaceId?: undefined;
|
|
4999
|
+
purpose?: undefined;
|
|
5000
|
+
type?: undefined;
|
|
5001
|
+
governance?: undefined;
|
|
5002
|
+
plan?: undefined;
|
|
5003
|
+
apps?: undefined;
|
|
5004
|
+
layout?: undefined;
|
|
5005
|
+
query?: undefined;
|
|
5006
|
+
_listTitle?: undefined;
|
|
5007
|
+
fieldsMetaData?: undefined;
|
|
5008
|
+
hints?: undefined;
|
|
5009
|
+
parentId?: undefined;
|
|
5010
|
+
description?: undefined;
|
|
5011
|
+
users?: undefined;
|
|
5012
|
+
accountabilities?: undefined;
|
|
5013
|
+
domains?: undefined;
|
|
5014
|
+
fields?: undefined;
|
|
5015
|
+
data?: undefined;
|
|
5016
|
+
due?: undefined;
|
|
5017
|
+
completed?: undefined;
|
|
5018
|
+
body?: undefined;
|
|
5019
|
+
commentId?: undefined;
|
|
5020
|
+
circleId?: undefined;
|
|
5021
|
+
includeSubCircles?: undefined;
|
|
5022
|
+
depth?: undefined;
|
|
5023
|
+
userId?: undefined;
|
|
5024
|
+
username?: undefined;
|
|
5025
|
+
fullName?: undefined;
|
|
5026
|
+
language?: undefined;
|
|
5027
|
+
labelId?: undefined;
|
|
5028
|
+
metricId?: undefined;
|
|
5029
|
+
from?: undefined;
|
|
5030
|
+
to?: undefined;
|
|
5031
|
+
completedAfter?: undefined;
|
|
5032
|
+
nestIds?: undefined;
|
|
5033
|
+
position?: undefined;
|
|
5034
|
+
relatedNestId?: undefined;
|
|
5035
|
+
color?: undefined;
|
|
5036
|
+
icon?: undefined;
|
|
5037
|
+
fullWorkspaces?: undefined;
|
|
5038
|
+
context?: undefined;
|
|
5039
|
+
skip?: undefined;
|
|
5040
|
+
showRead?: undefined;
|
|
5041
|
+
group?: undefined;
|
|
5042
|
+
feeling?: undefined;
|
|
5043
|
+
needs?: undefined;
|
|
5044
|
+
order?: undefined;
|
|
5045
|
+
_id?: undefined;
|
|
5046
|
+
childId?: undefined;
|
|
5047
|
+
status?: undefined;
|
|
5048
|
+
relation?: undefined;
|
|
5049
|
+
direction?: undefined;
|
|
5050
|
+
targetId?: undefined;
|
|
5051
|
+
};
|
|
5052
|
+
required: string[];
|
|
5053
|
+
};
|
|
5054
|
+
} | {
|
|
5055
|
+
name: string;
|
|
5056
|
+
description: string;
|
|
5057
|
+
inputSchema: {
|
|
5058
|
+
type: "object";
|
|
5059
|
+
properties: {
|
|
5060
|
+
nestId: {
|
|
5061
|
+
type: string;
|
|
5062
|
+
description: string;
|
|
5063
|
+
};
|
|
5064
|
+
tensionId: {
|
|
5065
|
+
type: string;
|
|
5066
|
+
description: string;
|
|
5067
|
+
};
|
|
5068
|
+
partId: {
|
|
5069
|
+
type: string;
|
|
5070
|
+
description: string;
|
|
5071
|
+
};
|
|
5072
|
+
childId: {
|
|
5073
|
+
type: string;
|
|
5074
|
+
description: string;
|
|
5075
|
+
};
|
|
5076
|
+
title: {
|
|
5077
|
+
type: string;
|
|
5078
|
+
description: string;
|
|
5079
|
+
};
|
|
5080
|
+
search?: undefined;
|
|
5081
|
+
limit?: undefined;
|
|
5082
|
+
page?: undefined;
|
|
5083
|
+
stripDescription?: undefined;
|
|
5084
|
+
workspaceId?: undefined;
|
|
5085
|
+
purpose?: undefined;
|
|
5086
|
+
type?: undefined;
|
|
5087
|
+
governance?: undefined;
|
|
5088
|
+
plan?: undefined;
|
|
5089
|
+
apps?: undefined;
|
|
5090
|
+
layout?: undefined;
|
|
5091
|
+
query?: undefined;
|
|
5092
|
+
_listTitle?: undefined;
|
|
5093
|
+
fieldsMetaData?: undefined;
|
|
5094
|
+
hints?: undefined;
|
|
5095
|
+
parentId?: undefined;
|
|
5096
|
+
description?: undefined;
|
|
5097
|
+
labels?: undefined;
|
|
5098
|
+
users?: undefined;
|
|
5099
|
+
accountabilities?: undefined;
|
|
5100
|
+
domains?: undefined;
|
|
5101
|
+
fields?: undefined;
|
|
5102
|
+
data?: undefined;
|
|
5103
|
+
due?: undefined;
|
|
5104
|
+
completed?: undefined;
|
|
5105
|
+
body?: undefined;
|
|
5106
|
+
commentId?: undefined;
|
|
5107
|
+
circleId?: undefined;
|
|
5108
|
+
includeSubCircles?: undefined;
|
|
5109
|
+
depth?: undefined;
|
|
5110
|
+
userId?: undefined;
|
|
5111
|
+
username?: undefined;
|
|
5112
|
+
fullName?: undefined;
|
|
5113
|
+
language?: undefined;
|
|
5114
|
+
labelId?: undefined;
|
|
5115
|
+
metricId?: undefined;
|
|
5116
|
+
from?: undefined;
|
|
5117
|
+
to?: undefined;
|
|
5118
|
+
completedAfter?: undefined;
|
|
5119
|
+
nestIds?: undefined;
|
|
5120
|
+
position?: undefined;
|
|
5121
|
+
relatedNestId?: undefined;
|
|
5122
|
+
color?: undefined;
|
|
5123
|
+
icon?: undefined;
|
|
5124
|
+
fullWorkspaces?: undefined;
|
|
5125
|
+
context?: undefined;
|
|
5126
|
+
skip?: undefined;
|
|
5127
|
+
showRead?: undefined;
|
|
5128
|
+
group?: undefined;
|
|
5129
|
+
feeling?: undefined;
|
|
5130
|
+
needs?: undefined;
|
|
5131
|
+
order?: undefined;
|
|
5132
|
+
_id?: undefined;
|
|
5133
|
+
status?: undefined;
|
|
5134
|
+
relation?: undefined;
|
|
5135
|
+
direction?: undefined;
|
|
5136
|
+
targetId?: undefined;
|
|
5137
|
+
};
|
|
5138
|
+
required: string[];
|
|
5139
|
+
};
|
|
5140
|
+
} | {
|
|
5141
|
+
name: string;
|
|
5142
|
+
description: string;
|
|
5143
|
+
inputSchema: {
|
|
5144
|
+
type: "object";
|
|
5145
|
+
properties: {
|
|
5146
|
+
nestId: {
|
|
5147
|
+
type: string;
|
|
5148
|
+
description: string;
|
|
5149
|
+
};
|
|
5150
|
+
tensionId: {
|
|
5151
|
+
type: string;
|
|
5152
|
+
description: string;
|
|
5153
|
+
};
|
|
5154
|
+
partId: {
|
|
5155
|
+
type: string;
|
|
5156
|
+
description: string;
|
|
5157
|
+
};
|
|
5158
|
+
childId: {
|
|
5159
|
+
type: string;
|
|
5160
|
+
description: string;
|
|
5161
|
+
};
|
|
5162
|
+
search?: undefined;
|
|
5163
|
+
limit?: undefined;
|
|
5164
|
+
page?: undefined;
|
|
5165
|
+
stripDescription?: undefined;
|
|
5166
|
+
workspaceId?: undefined;
|
|
5167
|
+
title?: undefined;
|
|
5168
|
+
purpose?: undefined;
|
|
5169
|
+
type?: undefined;
|
|
5170
|
+
governance?: undefined;
|
|
5171
|
+
plan?: undefined;
|
|
5172
|
+
apps?: undefined;
|
|
5173
|
+
layout?: undefined;
|
|
5174
|
+
query?: undefined;
|
|
5175
|
+
_listTitle?: undefined;
|
|
5176
|
+
fieldsMetaData?: undefined;
|
|
5177
|
+
hints?: undefined;
|
|
5178
|
+
parentId?: undefined;
|
|
5179
|
+
description?: undefined;
|
|
5180
|
+
labels?: undefined;
|
|
5181
|
+
users?: undefined;
|
|
5182
|
+
accountabilities?: undefined;
|
|
5183
|
+
domains?: undefined;
|
|
5184
|
+
fields?: undefined;
|
|
5185
|
+
data?: undefined;
|
|
5186
|
+
due?: undefined;
|
|
5187
|
+
completed?: undefined;
|
|
5188
|
+
body?: undefined;
|
|
5189
|
+
commentId?: undefined;
|
|
5190
|
+
circleId?: undefined;
|
|
5191
|
+
includeSubCircles?: undefined;
|
|
5192
|
+
depth?: undefined;
|
|
5193
|
+
userId?: undefined;
|
|
5194
|
+
username?: undefined;
|
|
5195
|
+
fullName?: undefined;
|
|
5196
|
+
language?: undefined;
|
|
5197
|
+
labelId?: undefined;
|
|
5198
|
+
metricId?: undefined;
|
|
5199
|
+
from?: undefined;
|
|
5200
|
+
to?: undefined;
|
|
5201
|
+
completedAfter?: undefined;
|
|
5202
|
+
nestIds?: undefined;
|
|
5203
|
+
position?: undefined;
|
|
5204
|
+
relatedNestId?: undefined;
|
|
5205
|
+
color?: undefined;
|
|
5206
|
+
icon?: undefined;
|
|
5207
|
+
fullWorkspaces?: undefined;
|
|
5208
|
+
context?: undefined;
|
|
5209
|
+
skip?: undefined;
|
|
5210
|
+
showRead?: undefined;
|
|
5211
|
+
group?: undefined;
|
|
5212
|
+
feeling?: undefined;
|
|
5213
|
+
needs?: undefined;
|
|
5214
|
+
order?: undefined;
|
|
5215
|
+
_id?: undefined;
|
|
5216
|
+
status?: undefined;
|
|
5217
|
+
relation?: undefined;
|
|
5218
|
+
direction?: undefined;
|
|
5219
|
+
targetId?: undefined;
|
|
5220
|
+
};
|
|
5221
|
+
required: string[];
|
|
5222
|
+
};
|
|
5223
|
+
} | {
|
|
5224
|
+
annotations: {
|
|
5225
|
+
readOnlyHint: boolean;
|
|
5226
|
+
destructiveHint: boolean;
|
|
5227
|
+
};
|
|
5228
|
+
name: string;
|
|
5229
|
+
description: string;
|
|
5230
|
+
inputSchema: {
|
|
5231
|
+
type: "object";
|
|
5232
|
+
properties: {
|
|
5233
|
+
nestId: {
|
|
5234
|
+
type: string;
|
|
5235
|
+
description: string;
|
|
5236
|
+
};
|
|
5237
|
+
tensionId: {
|
|
5238
|
+
type: string;
|
|
5239
|
+
description: string;
|
|
5240
|
+
};
|
|
5241
|
+
status: {
|
|
5242
|
+
type: string;
|
|
5243
|
+
enum: string[];
|
|
5244
|
+
description: string;
|
|
5245
|
+
};
|
|
5246
|
+
search?: undefined;
|
|
5247
|
+
limit?: undefined;
|
|
5248
|
+
page?: undefined;
|
|
5249
|
+
stripDescription?: undefined;
|
|
5250
|
+
workspaceId?: undefined;
|
|
5251
|
+
title?: undefined;
|
|
5252
|
+
purpose?: undefined;
|
|
5253
|
+
type?: undefined;
|
|
5254
|
+
governance?: undefined;
|
|
5255
|
+
plan?: undefined;
|
|
5256
|
+
apps?: undefined;
|
|
5257
|
+
layout?: undefined;
|
|
5258
|
+
query?: undefined;
|
|
5259
|
+
_listTitle?: undefined;
|
|
5260
|
+
fieldsMetaData?: undefined;
|
|
5261
|
+
hints?: undefined;
|
|
5262
|
+
parentId?: undefined;
|
|
5263
|
+
description?: undefined;
|
|
5264
|
+
labels?: undefined;
|
|
5265
|
+
users?: undefined;
|
|
5266
|
+
accountabilities?: undefined;
|
|
5267
|
+
domains?: undefined;
|
|
5268
|
+
fields?: undefined;
|
|
5269
|
+
data?: undefined;
|
|
5270
|
+
due?: undefined;
|
|
5271
|
+
completed?: undefined;
|
|
5272
|
+
body?: undefined;
|
|
5273
|
+
commentId?: undefined;
|
|
5274
|
+
circleId?: undefined;
|
|
5275
|
+
includeSubCircles?: undefined;
|
|
5276
|
+
depth?: undefined;
|
|
5277
|
+
userId?: undefined;
|
|
5278
|
+
username?: undefined;
|
|
5279
|
+
fullName?: undefined;
|
|
5280
|
+
language?: undefined;
|
|
5281
|
+
labelId?: undefined;
|
|
5282
|
+
metricId?: undefined;
|
|
5283
|
+
from?: undefined;
|
|
5284
|
+
to?: undefined;
|
|
5285
|
+
completedAfter?: undefined;
|
|
5286
|
+
nestIds?: undefined;
|
|
5287
|
+
position?: undefined;
|
|
5288
|
+
relatedNestId?: undefined;
|
|
5289
|
+
color?: undefined;
|
|
5290
|
+
icon?: undefined;
|
|
5291
|
+
fullWorkspaces?: undefined;
|
|
5292
|
+
context?: undefined;
|
|
5293
|
+
skip?: undefined;
|
|
5294
|
+
showRead?: undefined;
|
|
5295
|
+
group?: undefined;
|
|
5296
|
+
feeling?: undefined;
|
|
5297
|
+
needs?: undefined;
|
|
5298
|
+
order?: undefined;
|
|
5299
|
+
_id?: undefined;
|
|
5300
|
+
partId?: undefined;
|
|
5301
|
+
childId?: undefined;
|
|
5302
|
+
relation?: undefined;
|
|
5303
|
+
direction?: undefined;
|
|
5304
|
+
targetId?: undefined;
|
|
5305
|
+
};
|
|
5306
|
+
required: string[];
|
|
5307
|
+
};
|
|
5308
|
+
} | {
|
|
5309
|
+
annotations: {
|
|
5310
|
+
readOnlyHint: boolean;
|
|
5311
|
+
destructiveHint: boolean;
|
|
5312
|
+
};
|
|
5313
|
+
name: string;
|
|
5314
|
+
description: string;
|
|
5315
|
+
inputSchema: {
|
|
5316
|
+
type: "object";
|
|
5317
|
+
properties: {
|
|
5318
|
+
nestId: {
|
|
5319
|
+
type: string;
|
|
5320
|
+
description: string;
|
|
5321
|
+
};
|
|
5322
|
+
relation: {
|
|
5323
|
+
type: string;
|
|
5324
|
+
description: string;
|
|
5325
|
+
};
|
|
5326
|
+
direction: {
|
|
5327
|
+
type: string;
|
|
5328
|
+
enum: string[];
|
|
5329
|
+
description: string;
|
|
5330
|
+
};
|
|
5331
|
+
limit: {
|
|
5332
|
+
type: string;
|
|
5333
|
+
description: string;
|
|
5334
|
+
};
|
|
5335
|
+
page: {
|
|
5336
|
+
type: string;
|
|
5337
|
+
description: string;
|
|
5338
|
+
};
|
|
5339
|
+
search?: undefined;
|
|
5340
|
+
stripDescription?: undefined;
|
|
5341
|
+
workspaceId?: undefined;
|
|
5342
|
+
title?: undefined;
|
|
5343
|
+
purpose?: undefined;
|
|
5344
|
+
type?: undefined;
|
|
5345
|
+
governance?: undefined;
|
|
5346
|
+
plan?: undefined;
|
|
5347
|
+
apps?: undefined;
|
|
5348
|
+
layout?: undefined;
|
|
5349
|
+
query?: undefined;
|
|
5350
|
+
_listTitle?: undefined;
|
|
5351
|
+
fieldsMetaData?: undefined;
|
|
5352
|
+
hints?: undefined;
|
|
5353
|
+
parentId?: undefined;
|
|
5354
|
+
description?: undefined;
|
|
5355
|
+
labels?: undefined;
|
|
5356
|
+
users?: undefined;
|
|
5357
|
+
accountabilities?: undefined;
|
|
5358
|
+
domains?: undefined;
|
|
5359
|
+
fields?: undefined;
|
|
5360
|
+
data?: undefined;
|
|
5361
|
+
due?: undefined;
|
|
5362
|
+
completed?: undefined;
|
|
5363
|
+
body?: undefined;
|
|
5364
|
+
commentId?: undefined;
|
|
5365
|
+
circleId?: undefined;
|
|
5366
|
+
includeSubCircles?: undefined;
|
|
5367
|
+
depth?: undefined;
|
|
5368
|
+
userId?: undefined;
|
|
5369
|
+
username?: undefined;
|
|
5370
|
+
fullName?: undefined;
|
|
5371
|
+
language?: undefined;
|
|
5372
|
+
labelId?: undefined;
|
|
5373
|
+
metricId?: undefined;
|
|
5374
|
+
from?: undefined;
|
|
5375
|
+
to?: undefined;
|
|
5376
|
+
completedAfter?: undefined;
|
|
5377
|
+
nestIds?: undefined;
|
|
5378
|
+
position?: undefined;
|
|
5379
|
+
relatedNestId?: undefined;
|
|
5380
|
+
color?: undefined;
|
|
5381
|
+
icon?: undefined;
|
|
5382
|
+
fullWorkspaces?: undefined;
|
|
5383
|
+
context?: undefined;
|
|
5384
|
+
skip?: undefined;
|
|
5385
|
+
showRead?: undefined;
|
|
5386
|
+
group?: undefined;
|
|
5387
|
+
feeling?: undefined;
|
|
5388
|
+
needs?: undefined;
|
|
5389
|
+
tensionId?: undefined;
|
|
5390
|
+
order?: undefined;
|
|
5391
|
+
_id?: undefined;
|
|
5392
|
+
partId?: undefined;
|
|
5393
|
+
childId?: undefined;
|
|
5394
|
+
status?: undefined;
|
|
5395
|
+
targetId?: undefined;
|
|
5396
|
+
};
|
|
5397
|
+
required: string[];
|
|
5398
|
+
};
|
|
5399
|
+
} | {
|
|
5400
|
+
annotations: {
|
|
5401
|
+
readOnlyHint: boolean;
|
|
5402
|
+
destructiveHint: boolean;
|
|
5403
|
+
};
|
|
5404
|
+
name: string;
|
|
5405
|
+
description: string;
|
|
5406
|
+
inputSchema: {
|
|
5407
|
+
type: "object";
|
|
5408
|
+
properties: {
|
|
5409
|
+
nestId: {
|
|
5410
|
+
type: string;
|
|
5411
|
+
description: string;
|
|
5412
|
+
};
|
|
5413
|
+
relation: {
|
|
5414
|
+
type: string;
|
|
5415
|
+
description: string;
|
|
5416
|
+
};
|
|
5417
|
+
targetId: {
|
|
5418
|
+
type: string;
|
|
5419
|
+
description: string;
|
|
5420
|
+
};
|
|
5421
|
+
search?: undefined;
|
|
5422
|
+
limit?: undefined;
|
|
5423
|
+
page?: undefined;
|
|
5424
|
+
stripDescription?: undefined;
|
|
5425
|
+
workspaceId?: undefined;
|
|
5426
|
+
title?: undefined;
|
|
5427
|
+
purpose?: undefined;
|
|
5428
|
+
type?: undefined;
|
|
5429
|
+
governance?: undefined;
|
|
5430
|
+
plan?: undefined;
|
|
5431
|
+
apps?: undefined;
|
|
5432
|
+
layout?: undefined;
|
|
5433
|
+
query?: undefined;
|
|
5434
|
+
_listTitle?: undefined;
|
|
5435
|
+
fieldsMetaData?: undefined;
|
|
5436
|
+
hints?: undefined;
|
|
5437
|
+
parentId?: undefined;
|
|
5438
|
+
description?: undefined;
|
|
5439
|
+
labels?: undefined;
|
|
5440
|
+
users?: undefined;
|
|
5441
|
+
accountabilities?: undefined;
|
|
5442
|
+
domains?: undefined;
|
|
5443
|
+
fields?: undefined;
|
|
5444
|
+
data?: undefined;
|
|
5445
|
+
due?: undefined;
|
|
5446
|
+
completed?: undefined;
|
|
5447
|
+
body?: undefined;
|
|
5448
|
+
commentId?: undefined;
|
|
5449
|
+
circleId?: undefined;
|
|
5450
|
+
includeSubCircles?: undefined;
|
|
5451
|
+
depth?: undefined;
|
|
5452
|
+
userId?: undefined;
|
|
5453
|
+
username?: undefined;
|
|
5454
|
+
fullName?: undefined;
|
|
5455
|
+
language?: undefined;
|
|
5456
|
+
labelId?: undefined;
|
|
5457
|
+
metricId?: undefined;
|
|
5458
|
+
from?: undefined;
|
|
5459
|
+
to?: undefined;
|
|
5460
|
+
completedAfter?: undefined;
|
|
5461
|
+
nestIds?: undefined;
|
|
5462
|
+
position?: undefined;
|
|
5463
|
+
relatedNestId?: undefined;
|
|
5464
|
+
color?: undefined;
|
|
5465
|
+
icon?: undefined;
|
|
5466
|
+
fullWorkspaces?: undefined;
|
|
5467
|
+
context?: undefined;
|
|
5468
|
+
skip?: undefined;
|
|
5469
|
+
showRead?: undefined;
|
|
5470
|
+
group?: undefined;
|
|
5471
|
+
feeling?: undefined;
|
|
5472
|
+
needs?: undefined;
|
|
5473
|
+
tensionId?: undefined;
|
|
5474
|
+
order?: undefined;
|
|
5475
|
+
_id?: undefined;
|
|
5476
|
+
partId?: undefined;
|
|
5477
|
+
childId?: undefined;
|
|
5478
|
+
status?: undefined;
|
|
5479
|
+
direction?: undefined;
|
|
4671
5480
|
};
|
|
4672
5481
|
required: string[];
|
|
4673
5482
|
};
|