@nestr/mcp 0.1.43 → 0.1.45
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 +84 -1
- package/build/api/client.d.ts.map +1 -1
- package/build/api/client.js +81 -2
- package/build/api/client.js.map +1 -1
- package/build/server.d.ts.map +1 -1
- package/build/server.js +107 -234
- package/build/server.js.map +1 -1
- package/build/skills/tension-processing.d.ts +9 -0
- package/build/skills/tension-processing.d.ts.map +1 -0
- package/build/skills/tension-processing.js +220 -0
- package/build/skills/tension-processing.js.map +1 -0
- package/build/skills/workspace-setup.d.ts +9 -0
- package/build/skills/workspace-setup.d.ts.map +1 -0
- package/build/skills/workspace-setup.js +230 -0
- package/build/skills/workspace-setup.js.map +1 -0
- package/build/tools/index.d.ts +671 -123
- package/build/tools/index.d.ts.map +1 -1
- package/build/tools/index.js +214 -26
- package/build/tools/index.js.map +1 -1
- package/package.json +1 -1
package/build/tools/index.d.ts
CHANGED
|
@@ -102,6 +102,9 @@ export declare const schemas: {
|
|
|
102
102
|
description: z.ZodOptional<z.ZodString>;
|
|
103
103
|
labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
104
104
|
users: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
105
|
+
accountabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
106
|
+
domains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
107
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
105
108
|
}, "strip", z.ZodTypeAny, {
|
|
106
109
|
title: string;
|
|
107
110
|
parentId: string;
|
|
@@ -109,6 +112,9 @@ export declare const schemas: {
|
|
|
109
112
|
description?: string | undefined;
|
|
110
113
|
labels?: string[] | undefined;
|
|
111
114
|
users?: string[] | undefined;
|
|
115
|
+
accountabilities?: string[] | undefined;
|
|
116
|
+
domains?: string[] | undefined;
|
|
117
|
+
workspaceId?: string | undefined;
|
|
112
118
|
}, {
|
|
113
119
|
title: string;
|
|
114
120
|
parentId: string;
|
|
@@ -116,6 +122,9 @@ export declare const schemas: {
|
|
|
116
122
|
description?: string | undefined;
|
|
117
123
|
labels?: string[] | undefined;
|
|
118
124
|
users?: string[] | undefined;
|
|
125
|
+
accountabilities?: string[] | undefined;
|
|
126
|
+
domains?: string[] | undefined;
|
|
127
|
+
workspaceId?: string | undefined;
|
|
119
128
|
}>;
|
|
120
129
|
updateNest: z.ZodObject<{
|
|
121
130
|
nestId: z.ZodString;
|
|
@@ -129,6 +138,9 @@ export declare const schemas: {
|
|
|
129
138
|
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
130
139
|
due: z.ZodOptional<z.ZodString>;
|
|
131
140
|
completed: z.ZodOptional<z.ZodBoolean>;
|
|
141
|
+
accountabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
142
|
+
domains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
143
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
132
144
|
}, "strip", z.ZodTypeAny, {
|
|
133
145
|
nestId: string;
|
|
134
146
|
title?: string | undefined;
|
|
@@ -141,6 +153,9 @@ export declare const schemas: {
|
|
|
141
153
|
due?: string | undefined;
|
|
142
154
|
completed?: boolean | undefined;
|
|
143
155
|
users?: string[] | undefined;
|
|
156
|
+
accountabilities?: string[] | undefined;
|
|
157
|
+
domains?: string[] | undefined;
|
|
158
|
+
workspaceId?: string | undefined;
|
|
144
159
|
}, {
|
|
145
160
|
nestId: string;
|
|
146
161
|
title?: string | undefined;
|
|
@@ -153,6 +168,9 @@ export declare const schemas: {
|
|
|
153
168
|
due?: string | undefined;
|
|
154
169
|
completed?: boolean | undefined;
|
|
155
170
|
users?: string[] | undefined;
|
|
171
|
+
accountabilities?: string[] | undefined;
|
|
172
|
+
domains?: string[] | undefined;
|
|
173
|
+
workspaceId?: string | undefined;
|
|
156
174
|
}>;
|
|
157
175
|
deleteNest: z.ZodObject<{
|
|
158
176
|
nestId: z.ZodString;
|
|
@@ -508,7 +526,13 @@ export declare const schemas: {
|
|
|
508
526
|
nestIds: string[];
|
|
509
527
|
}>;
|
|
510
528
|
getDailyPlan: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
511
|
-
getMe: z.ZodObject<{
|
|
529
|
+
getMe: z.ZodObject<{
|
|
530
|
+
fullWorkspaces: z.ZodOptional<z.ZodBoolean>;
|
|
531
|
+
}, "strip", z.ZodTypeAny, {
|
|
532
|
+
fullWorkspaces?: boolean | undefined;
|
|
533
|
+
}, {
|
|
534
|
+
fullWorkspaces?: boolean | undefined;
|
|
535
|
+
}>;
|
|
512
536
|
listMyTensions: z.ZodObject<{
|
|
513
537
|
context: z.ZodOptional<z.ZodString>;
|
|
514
538
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -523,6 +547,26 @@ export declare const schemas: {
|
|
|
523
547
|
}, {
|
|
524
548
|
context?: string | undefined;
|
|
525
549
|
}>;
|
|
550
|
+
listNotifications: z.ZodObject<{
|
|
551
|
+
type: z.ZodOptional<z.ZodEnum<["all", "me", "relevant"]>>;
|
|
552
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
553
|
+
skip: z.ZodOptional<z.ZodNumber>;
|
|
554
|
+
showRead: z.ZodOptional<z.ZodBoolean>;
|
|
555
|
+
group: z.ZodOptional<z.ZodString>;
|
|
556
|
+
}, "strip", z.ZodTypeAny, {
|
|
557
|
+
limit?: number | undefined;
|
|
558
|
+
type?: "all" | "me" | "relevant" | undefined;
|
|
559
|
+
skip?: number | undefined;
|
|
560
|
+
showRead?: boolean | undefined;
|
|
561
|
+
group?: string | undefined;
|
|
562
|
+
}, {
|
|
563
|
+
limit?: number | undefined;
|
|
564
|
+
type?: "all" | "me" | "relevant" | undefined;
|
|
565
|
+
skip?: number | undefined;
|
|
566
|
+
showRead?: boolean | undefined;
|
|
567
|
+
group?: string | undefined;
|
|
568
|
+
}>;
|
|
569
|
+
markNotificationsRead: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
526
570
|
createTension: z.ZodObject<{
|
|
527
571
|
nestId: z.ZodString;
|
|
528
572
|
title: z.ZodString;
|
|
@@ -747,6 +791,10 @@ export declare const schemas: {
|
|
|
747
791
|
}>;
|
|
748
792
|
};
|
|
749
793
|
export declare const toolDefinitions: ({
|
|
794
|
+
annotations: {
|
|
795
|
+
readOnlyHint: boolean;
|
|
796
|
+
destructiveHint: boolean;
|
|
797
|
+
};
|
|
750
798
|
name: string;
|
|
751
799
|
description: string;
|
|
752
800
|
inputSchema: {
|
|
@@ -784,6 +832,8 @@ export declare const toolDefinitions: ({
|
|
|
784
832
|
description?: undefined;
|
|
785
833
|
labels?: undefined;
|
|
786
834
|
users?: undefined;
|
|
835
|
+
accountabilities?: undefined;
|
|
836
|
+
domains?: undefined;
|
|
787
837
|
fields?: undefined;
|
|
788
838
|
data?: undefined;
|
|
789
839
|
due?: undefined;
|
|
@@ -807,22 +857,27 @@ export declare const toolDefinitions: ({
|
|
|
807
857
|
relatedNestId?: undefined;
|
|
808
858
|
color?: undefined;
|
|
809
859
|
icon?: undefined;
|
|
860
|
+
fullWorkspaces?: undefined;
|
|
810
861
|
context?: undefined;
|
|
862
|
+
skip?: undefined;
|
|
863
|
+
showRead?: undefined;
|
|
864
|
+
group?: undefined;
|
|
811
865
|
feeling?: undefined;
|
|
812
866
|
needs?: undefined;
|
|
813
867
|
tensionId?: undefined;
|
|
814
868
|
order?: undefined;
|
|
815
869
|
_id?: undefined;
|
|
816
|
-
accountabilities?: undefined;
|
|
817
|
-
domains?: undefined;
|
|
818
870
|
removeNest?: undefined;
|
|
819
871
|
partId?: undefined;
|
|
820
872
|
status?: undefined;
|
|
821
873
|
};
|
|
822
874
|
required?: undefined;
|
|
823
875
|
};
|
|
824
|
-
_meta?: undefined;
|
|
825
876
|
} | {
|
|
877
|
+
annotations: {
|
|
878
|
+
readOnlyHint: boolean;
|
|
879
|
+
destructiveHint: boolean;
|
|
880
|
+
};
|
|
826
881
|
name: string;
|
|
827
882
|
description: string;
|
|
828
883
|
inputSchema: {
|
|
@@ -854,6 +909,8 @@ export declare const toolDefinitions: ({
|
|
|
854
909
|
description?: undefined;
|
|
855
910
|
labels?: undefined;
|
|
856
911
|
users?: undefined;
|
|
912
|
+
accountabilities?: undefined;
|
|
913
|
+
domains?: undefined;
|
|
857
914
|
fields?: undefined;
|
|
858
915
|
data?: undefined;
|
|
859
916
|
due?: undefined;
|
|
@@ -877,22 +934,27 @@ export declare const toolDefinitions: ({
|
|
|
877
934
|
relatedNestId?: undefined;
|
|
878
935
|
color?: undefined;
|
|
879
936
|
icon?: undefined;
|
|
937
|
+
fullWorkspaces?: undefined;
|
|
880
938
|
context?: undefined;
|
|
939
|
+
skip?: undefined;
|
|
940
|
+
showRead?: undefined;
|
|
941
|
+
group?: undefined;
|
|
881
942
|
feeling?: undefined;
|
|
882
943
|
needs?: undefined;
|
|
883
944
|
tensionId?: undefined;
|
|
884
945
|
order?: undefined;
|
|
885
946
|
_id?: undefined;
|
|
886
|
-
accountabilities?: undefined;
|
|
887
|
-
domains?: undefined;
|
|
888
947
|
removeNest?: undefined;
|
|
889
948
|
partId?: undefined;
|
|
890
949
|
status?: undefined;
|
|
891
950
|
};
|
|
892
951
|
required: string[];
|
|
893
952
|
};
|
|
894
|
-
_meta?: undefined;
|
|
895
953
|
} | {
|
|
954
|
+
annotations: {
|
|
955
|
+
readOnlyHint: boolean;
|
|
956
|
+
destructiveHint: boolean;
|
|
957
|
+
};
|
|
896
958
|
name: string;
|
|
897
959
|
description: string;
|
|
898
960
|
inputSchema: {
|
|
@@ -947,6 +1009,8 @@ export declare const toolDefinitions: ({
|
|
|
947
1009
|
description?: undefined;
|
|
948
1010
|
labels?: undefined;
|
|
949
1011
|
users?: undefined;
|
|
1012
|
+
accountabilities?: undefined;
|
|
1013
|
+
domains?: undefined;
|
|
950
1014
|
fields?: undefined;
|
|
951
1015
|
data?: undefined;
|
|
952
1016
|
due?: undefined;
|
|
@@ -970,22 +1034,27 @@ export declare const toolDefinitions: ({
|
|
|
970
1034
|
relatedNestId?: undefined;
|
|
971
1035
|
color?: undefined;
|
|
972
1036
|
icon?: undefined;
|
|
1037
|
+
fullWorkspaces?: undefined;
|
|
973
1038
|
context?: undefined;
|
|
1039
|
+
skip?: undefined;
|
|
1040
|
+
showRead?: undefined;
|
|
1041
|
+
group?: undefined;
|
|
974
1042
|
feeling?: undefined;
|
|
975
1043
|
needs?: undefined;
|
|
976
1044
|
tensionId?: undefined;
|
|
977
1045
|
order?: undefined;
|
|
978
1046
|
_id?: undefined;
|
|
979
|
-
accountabilities?: undefined;
|
|
980
|
-
domains?: undefined;
|
|
981
1047
|
removeNest?: undefined;
|
|
982
1048
|
partId?: undefined;
|
|
983
1049
|
status?: undefined;
|
|
984
1050
|
};
|
|
985
1051
|
required: string[];
|
|
986
1052
|
};
|
|
987
|
-
_meta?: undefined;
|
|
988
1053
|
} | {
|
|
1054
|
+
annotations: {
|
|
1055
|
+
readOnlyHint: boolean;
|
|
1056
|
+
destructiveHint: boolean;
|
|
1057
|
+
};
|
|
989
1058
|
name: string;
|
|
990
1059
|
description: string;
|
|
991
1060
|
inputSchema: {
|
|
@@ -1029,6 +1098,8 @@ export declare const toolDefinitions: ({
|
|
|
1029
1098
|
description?: undefined;
|
|
1030
1099
|
labels?: undefined;
|
|
1031
1100
|
users?: undefined;
|
|
1101
|
+
accountabilities?: undefined;
|
|
1102
|
+
domains?: undefined;
|
|
1032
1103
|
fields?: undefined;
|
|
1033
1104
|
data?: undefined;
|
|
1034
1105
|
due?: undefined;
|
|
@@ -1052,14 +1123,16 @@ export declare const toolDefinitions: ({
|
|
|
1052
1123
|
relatedNestId?: undefined;
|
|
1053
1124
|
color?: undefined;
|
|
1054
1125
|
icon?: undefined;
|
|
1126
|
+
fullWorkspaces?: undefined;
|
|
1055
1127
|
context?: undefined;
|
|
1128
|
+
skip?: undefined;
|
|
1129
|
+
showRead?: undefined;
|
|
1130
|
+
group?: undefined;
|
|
1056
1131
|
feeling?: undefined;
|
|
1057
1132
|
needs?: undefined;
|
|
1058
1133
|
tensionId?: undefined;
|
|
1059
1134
|
order?: undefined;
|
|
1060
1135
|
_id?: undefined;
|
|
1061
|
-
accountabilities?: undefined;
|
|
1062
|
-
domains?: undefined;
|
|
1063
1136
|
removeNest?: undefined;
|
|
1064
1137
|
partId?: undefined;
|
|
1065
1138
|
status?: undefined;
|
|
@@ -1072,6 +1145,10 @@ export declare const toolDefinitions: ({
|
|
|
1072
1145
|
};
|
|
1073
1146
|
};
|
|
1074
1147
|
} | {
|
|
1148
|
+
annotations: {
|
|
1149
|
+
readOnlyHint: boolean;
|
|
1150
|
+
destructiveHint: boolean;
|
|
1151
|
+
};
|
|
1075
1152
|
name: string;
|
|
1076
1153
|
description: string;
|
|
1077
1154
|
inputSchema: {
|
|
@@ -1106,6 +1183,8 @@ export declare const toolDefinitions: ({
|
|
|
1106
1183
|
description?: undefined;
|
|
1107
1184
|
labels?: undefined;
|
|
1108
1185
|
users?: undefined;
|
|
1186
|
+
accountabilities?: undefined;
|
|
1187
|
+
domains?: undefined;
|
|
1109
1188
|
fields?: undefined;
|
|
1110
1189
|
data?: undefined;
|
|
1111
1190
|
due?: undefined;
|
|
@@ -1129,22 +1208,27 @@ export declare const toolDefinitions: ({
|
|
|
1129
1208
|
relatedNestId?: undefined;
|
|
1130
1209
|
color?: undefined;
|
|
1131
1210
|
icon?: undefined;
|
|
1211
|
+
fullWorkspaces?: undefined;
|
|
1132
1212
|
context?: undefined;
|
|
1213
|
+
skip?: undefined;
|
|
1214
|
+
showRead?: undefined;
|
|
1215
|
+
group?: undefined;
|
|
1133
1216
|
feeling?: undefined;
|
|
1134
1217
|
needs?: undefined;
|
|
1135
1218
|
tensionId?: undefined;
|
|
1136
1219
|
order?: undefined;
|
|
1137
1220
|
_id?: undefined;
|
|
1138
|
-
accountabilities?: undefined;
|
|
1139
|
-
domains?: undefined;
|
|
1140
1221
|
removeNest?: undefined;
|
|
1141
1222
|
partId?: undefined;
|
|
1142
1223
|
status?: undefined;
|
|
1143
1224
|
};
|
|
1144
1225
|
required: string[];
|
|
1145
1226
|
};
|
|
1146
|
-
_meta?: undefined;
|
|
1147
1227
|
} | {
|
|
1228
|
+
annotations: {
|
|
1229
|
+
readOnlyHint: boolean;
|
|
1230
|
+
destructiveHint: boolean;
|
|
1231
|
+
};
|
|
1148
1232
|
name: string;
|
|
1149
1233
|
description: string;
|
|
1150
1234
|
inputSchema: {
|
|
@@ -1185,6 +1269,8 @@ export declare const toolDefinitions: ({
|
|
|
1185
1269
|
description?: undefined;
|
|
1186
1270
|
labels?: undefined;
|
|
1187
1271
|
users?: undefined;
|
|
1272
|
+
accountabilities?: undefined;
|
|
1273
|
+
domains?: undefined;
|
|
1188
1274
|
fields?: undefined;
|
|
1189
1275
|
data?: undefined;
|
|
1190
1276
|
due?: undefined;
|
|
@@ -1208,14 +1294,16 @@ export declare const toolDefinitions: ({
|
|
|
1208
1294
|
relatedNestId?: undefined;
|
|
1209
1295
|
color?: undefined;
|
|
1210
1296
|
icon?: undefined;
|
|
1297
|
+
fullWorkspaces?: undefined;
|
|
1211
1298
|
context?: undefined;
|
|
1299
|
+
skip?: undefined;
|
|
1300
|
+
showRead?: undefined;
|
|
1301
|
+
group?: undefined;
|
|
1212
1302
|
feeling?: undefined;
|
|
1213
1303
|
needs?: undefined;
|
|
1214
1304
|
tensionId?: undefined;
|
|
1215
1305
|
order?: undefined;
|
|
1216
1306
|
_id?: undefined;
|
|
1217
|
-
accountabilities?: undefined;
|
|
1218
|
-
domains?: undefined;
|
|
1219
1307
|
removeNest?: undefined;
|
|
1220
1308
|
partId?: undefined;
|
|
1221
1309
|
status?: undefined;
|
|
@@ -1228,6 +1316,10 @@ export declare const toolDefinitions: ({
|
|
|
1228
1316
|
};
|
|
1229
1317
|
};
|
|
1230
1318
|
} | {
|
|
1319
|
+
annotations: {
|
|
1320
|
+
readOnlyHint: boolean;
|
|
1321
|
+
destructiveHint: boolean;
|
|
1322
|
+
};
|
|
1231
1323
|
name: string;
|
|
1232
1324
|
description: string;
|
|
1233
1325
|
inputSchema: {
|
|
@@ -1263,11 +1355,28 @@ export declare const toolDefinitions: ({
|
|
|
1263
1355
|
};
|
|
1264
1356
|
description: string;
|
|
1265
1357
|
};
|
|
1358
|
+
accountabilities: {
|
|
1359
|
+
type: string;
|
|
1360
|
+
items: {
|
|
1361
|
+
type: string;
|
|
1362
|
+
};
|
|
1363
|
+
description: string;
|
|
1364
|
+
};
|
|
1365
|
+
domains: {
|
|
1366
|
+
type: string;
|
|
1367
|
+
items: {
|
|
1368
|
+
type: string;
|
|
1369
|
+
};
|
|
1370
|
+
description: string;
|
|
1371
|
+
};
|
|
1372
|
+
workspaceId: {
|
|
1373
|
+
type: string;
|
|
1374
|
+
description: string;
|
|
1375
|
+
};
|
|
1266
1376
|
search?: undefined;
|
|
1267
1377
|
limit?: undefined;
|
|
1268
1378
|
page?: undefined;
|
|
1269
1379
|
stripDescription?: undefined;
|
|
1270
|
-
workspaceId?: undefined;
|
|
1271
1380
|
type?: undefined;
|
|
1272
1381
|
governance?: undefined;
|
|
1273
1382
|
plan?: undefined;
|
|
@@ -1300,22 +1409,27 @@ export declare const toolDefinitions: ({
|
|
|
1300
1409
|
relatedNestId?: undefined;
|
|
1301
1410
|
color?: undefined;
|
|
1302
1411
|
icon?: undefined;
|
|
1412
|
+
fullWorkspaces?: undefined;
|
|
1303
1413
|
context?: undefined;
|
|
1414
|
+
skip?: undefined;
|
|
1415
|
+
showRead?: undefined;
|
|
1416
|
+
group?: undefined;
|
|
1304
1417
|
feeling?: undefined;
|
|
1305
1418
|
needs?: undefined;
|
|
1306
1419
|
tensionId?: undefined;
|
|
1307
1420
|
order?: undefined;
|
|
1308
1421
|
_id?: undefined;
|
|
1309
|
-
accountabilities?: undefined;
|
|
1310
|
-
domains?: undefined;
|
|
1311
1422
|
removeNest?: undefined;
|
|
1312
1423
|
partId?: undefined;
|
|
1313
1424
|
status?: undefined;
|
|
1314
1425
|
};
|
|
1315
1426
|
required: string[];
|
|
1316
1427
|
};
|
|
1317
|
-
_meta?: undefined;
|
|
1318
1428
|
} | {
|
|
1429
|
+
annotations: {
|
|
1430
|
+
readOnlyHint: boolean;
|
|
1431
|
+
destructiveHint: boolean;
|
|
1432
|
+
};
|
|
1319
1433
|
name: string;
|
|
1320
1434
|
description: string;
|
|
1321
1435
|
inputSchema: {
|
|
@@ -1371,11 +1485,28 @@ export declare const toolDefinitions: ({
|
|
|
1371
1485
|
type: string;
|
|
1372
1486
|
description: string;
|
|
1373
1487
|
};
|
|
1488
|
+
accountabilities: {
|
|
1489
|
+
type: string;
|
|
1490
|
+
items: {
|
|
1491
|
+
type: string;
|
|
1492
|
+
};
|
|
1493
|
+
description: string;
|
|
1494
|
+
};
|
|
1495
|
+
domains: {
|
|
1496
|
+
type: string;
|
|
1497
|
+
items: {
|
|
1498
|
+
type: string;
|
|
1499
|
+
};
|
|
1500
|
+
description: string;
|
|
1501
|
+
};
|
|
1502
|
+
workspaceId: {
|
|
1503
|
+
type: string;
|
|
1504
|
+
description: string;
|
|
1505
|
+
};
|
|
1374
1506
|
search?: undefined;
|
|
1375
1507
|
limit?: undefined;
|
|
1376
1508
|
page?: undefined;
|
|
1377
1509
|
stripDescription?: undefined;
|
|
1378
|
-
workspaceId?: undefined;
|
|
1379
1510
|
type?: undefined;
|
|
1380
1511
|
governance?: undefined;
|
|
1381
1512
|
plan?: undefined;
|
|
@@ -1403,22 +1534,27 @@ export declare const toolDefinitions: ({
|
|
|
1403
1534
|
relatedNestId?: undefined;
|
|
1404
1535
|
color?: undefined;
|
|
1405
1536
|
icon?: undefined;
|
|
1537
|
+
fullWorkspaces?: undefined;
|
|
1406
1538
|
context?: undefined;
|
|
1539
|
+
skip?: undefined;
|
|
1540
|
+
showRead?: undefined;
|
|
1541
|
+
group?: undefined;
|
|
1407
1542
|
feeling?: undefined;
|
|
1408
1543
|
needs?: undefined;
|
|
1409
1544
|
tensionId?: undefined;
|
|
1410
1545
|
order?: undefined;
|
|
1411
1546
|
_id?: undefined;
|
|
1412
|
-
accountabilities?: undefined;
|
|
1413
|
-
domains?: undefined;
|
|
1414
1547
|
removeNest?: undefined;
|
|
1415
1548
|
partId?: undefined;
|
|
1416
1549
|
status?: undefined;
|
|
1417
1550
|
};
|
|
1418
1551
|
required: string[];
|
|
1419
1552
|
};
|
|
1420
|
-
_meta?: undefined;
|
|
1421
1553
|
} | {
|
|
1554
|
+
annotations: {
|
|
1555
|
+
readOnlyHint: boolean;
|
|
1556
|
+
destructiveHint: boolean;
|
|
1557
|
+
};
|
|
1422
1558
|
name: string;
|
|
1423
1559
|
description: string;
|
|
1424
1560
|
inputSchema: {
|
|
@@ -1447,6 +1583,8 @@ export declare const toolDefinitions: ({
|
|
|
1447
1583
|
description?: undefined;
|
|
1448
1584
|
labels?: undefined;
|
|
1449
1585
|
users?: undefined;
|
|
1586
|
+
accountabilities?: undefined;
|
|
1587
|
+
domains?: undefined;
|
|
1450
1588
|
fields?: undefined;
|
|
1451
1589
|
data?: undefined;
|
|
1452
1590
|
due?: undefined;
|
|
@@ -1470,22 +1608,27 @@ export declare const toolDefinitions: ({
|
|
|
1470
1608
|
relatedNestId?: undefined;
|
|
1471
1609
|
color?: undefined;
|
|
1472
1610
|
icon?: undefined;
|
|
1611
|
+
fullWorkspaces?: undefined;
|
|
1473
1612
|
context?: undefined;
|
|
1613
|
+
skip?: undefined;
|
|
1614
|
+
showRead?: undefined;
|
|
1615
|
+
group?: undefined;
|
|
1474
1616
|
feeling?: undefined;
|
|
1475
1617
|
needs?: undefined;
|
|
1476
1618
|
tensionId?: undefined;
|
|
1477
1619
|
order?: undefined;
|
|
1478
1620
|
_id?: undefined;
|
|
1479
|
-
accountabilities?: undefined;
|
|
1480
|
-
domains?: undefined;
|
|
1481
1621
|
removeNest?: undefined;
|
|
1482
1622
|
partId?: undefined;
|
|
1483
1623
|
status?: undefined;
|
|
1484
1624
|
};
|
|
1485
1625
|
required: string[];
|
|
1486
1626
|
};
|
|
1487
|
-
_meta?: undefined;
|
|
1488
1627
|
} | {
|
|
1628
|
+
annotations: {
|
|
1629
|
+
readOnlyHint: boolean;
|
|
1630
|
+
destructiveHint: boolean;
|
|
1631
|
+
};
|
|
1489
1632
|
name: string;
|
|
1490
1633
|
description: string;
|
|
1491
1634
|
inputSchema: {
|
|
@@ -1518,6 +1661,8 @@ export declare const toolDefinitions: ({
|
|
|
1518
1661
|
description?: undefined;
|
|
1519
1662
|
labels?: undefined;
|
|
1520
1663
|
users?: undefined;
|
|
1664
|
+
accountabilities?: undefined;
|
|
1665
|
+
domains?: undefined;
|
|
1521
1666
|
fields?: undefined;
|
|
1522
1667
|
data?: undefined;
|
|
1523
1668
|
due?: undefined;
|
|
@@ -1540,22 +1685,27 @@ export declare const toolDefinitions: ({
|
|
|
1540
1685
|
relatedNestId?: undefined;
|
|
1541
1686
|
color?: undefined;
|
|
1542
1687
|
icon?: undefined;
|
|
1688
|
+
fullWorkspaces?: undefined;
|
|
1543
1689
|
context?: undefined;
|
|
1690
|
+
skip?: undefined;
|
|
1691
|
+
showRead?: undefined;
|
|
1692
|
+
group?: undefined;
|
|
1544
1693
|
feeling?: undefined;
|
|
1545
1694
|
needs?: undefined;
|
|
1546
1695
|
tensionId?: undefined;
|
|
1547
1696
|
order?: undefined;
|
|
1548
1697
|
_id?: undefined;
|
|
1549
|
-
accountabilities?: undefined;
|
|
1550
|
-
domains?: undefined;
|
|
1551
1698
|
removeNest?: undefined;
|
|
1552
1699
|
partId?: undefined;
|
|
1553
1700
|
status?: undefined;
|
|
1554
1701
|
};
|
|
1555
1702
|
required: string[];
|
|
1556
1703
|
};
|
|
1557
|
-
_meta?: undefined;
|
|
1558
1704
|
} | {
|
|
1705
|
+
annotations: {
|
|
1706
|
+
readOnlyHint: boolean;
|
|
1707
|
+
destructiveHint: boolean;
|
|
1708
|
+
};
|
|
1559
1709
|
name: string;
|
|
1560
1710
|
description: string;
|
|
1561
1711
|
inputSchema: {
|
|
@@ -1589,6 +1739,8 @@ export declare const toolDefinitions: ({
|
|
|
1589
1739
|
description?: undefined;
|
|
1590
1740
|
labels?: undefined;
|
|
1591
1741
|
users?: undefined;
|
|
1742
|
+
accountabilities?: undefined;
|
|
1743
|
+
domains?: undefined;
|
|
1592
1744
|
fields?: undefined;
|
|
1593
1745
|
data?: undefined;
|
|
1594
1746
|
due?: undefined;
|
|
@@ -1610,22 +1762,27 @@ export declare const toolDefinitions: ({
|
|
|
1610
1762
|
relatedNestId?: undefined;
|
|
1611
1763
|
color?: undefined;
|
|
1612
1764
|
icon?: undefined;
|
|
1765
|
+
fullWorkspaces?: undefined;
|
|
1613
1766
|
context?: undefined;
|
|
1767
|
+
skip?: undefined;
|
|
1768
|
+
showRead?: undefined;
|
|
1769
|
+
group?: undefined;
|
|
1614
1770
|
feeling?: undefined;
|
|
1615
1771
|
needs?: undefined;
|
|
1616
1772
|
tensionId?: undefined;
|
|
1617
1773
|
order?: undefined;
|
|
1618
1774
|
_id?: undefined;
|
|
1619
|
-
accountabilities?: undefined;
|
|
1620
|
-
domains?: undefined;
|
|
1621
1775
|
removeNest?: undefined;
|
|
1622
1776
|
partId?: undefined;
|
|
1623
1777
|
status?: undefined;
|
|
1624
1778
|
};
|
|
1625
1779
|
required: string[];
|
|
1626
1780
|
};
|
|
1627
|
-
_meta?: undefined;
|
|
1628
1781
|
} | {
|
|
1782
|
+
annotations: {
|
|
1783
|
+
readOnlyHint: boolean;
|
|
1784
|
+
destructiveHint: boolean;
|
|
1785
|
+
};
|
|
1629
1786
|
name: string;
|
|
1630
1787
|
description: string;
|
|
1631
1788
|
inputSchema: {
|
|
@@ -1655,6 +1812,8 @@ export declare const toolDefinitions: ({
|
|
|
1655
1812
|
description?: undefined;
|
|
1656
1813
|
labels?: undefined;
|
|
1657
1814
|
users?: undefined;
|
|
1815
|
+
accountabilities?: undefined;
|
|
1816
|
+
domains?: undefined;
|
|
1658
1817
|
fields?: undefined;
|
|
1659
1818
|
data?: undefined;
|
|
1660
1819
|
due?: undefined;
|
|
@@ -1677,22 +1836,27 @@ export declare const toolDefinitions: ({
|
|
|
1677
1836
|
relatedNestId?: undefined;
|
|
1678
1837
|
color?: undefined;
|
|
1679
1838
|
icon?: undefined;
|
|
1839
|
+
fullWorkspaces?: undefined;
|
|
1680
1840
|
context?: undefined;
|
|
1841
|
+
skip?: undefined;
|
|
1842
|
+
showRead?: undefined;
|
|
1843
|
+
group?: undefined;
|
|
1681
1844
|
feeling?: undefined;
|
|
1682
1845
|
needs?: undefined;
|
|
1683
1846
|
tensionId?: undefined;
|
|
1684
1847
|
order?: undefined;
|
|
1685
1848
|
_id?: undefined;
|
|
1686
|
-
accountabilities?: undefined;
|
|
1687
|
-
domains?: undefined;
|
|
1688
1849
|
removeNest?: undefined;
|
|
1689
1850
|
partId?: undefined;
|
|
1690
1851
|
status?: undefined;
|
|
1691
1852
|
};
|
|
1692
1853
|
required: string[];
|
|
1693
1854
|
};
|
|
1694
|
-
_meta?: undefined;
|
|
1695
1855
|
} | {
|
|
1856
|
+
annotations: {
|
|
1857
|
+
readOnlyHint: boolean;
|
|
1858
|
+
destructiveHint: boolean;
|
|
1859
|
+
};
|
|
1696
1860
|
name: string;
|
|
1697
1861
|
description: string;
|
|
1698
1862
|
inputSchema: {
|
|
@@ -1730,6 +1894,8 @@ export declare const toolDefinitions: ({
|
|
|
1730
1894
|
description?: undefined;
|
|
1731
1895
|
labels?: undefined;
|
|
1732
1896
|
users?: undefined;
|
|
1897
|
+
accountabilities?: undefined;
|
|
1898
|
+
domains?: undefined;
|
|
1733
1899
|
fields?: undefined;
|
|
1734
1900
|
data?: undefined;
|
|
1735
1901
|
due?: undefined;
|
|
@@ -1753,22 +1919,27 @@ export declare const toolDefinitions: ({
|
|
|
1753
1919
|
relatedNestId?: undefined;
|
|
1754
1920
|
color?: undefined;
|
|
1755
1921
|
icon?: undefined;
|
|
1922
|
+
fullWorkspaces?: undefined;
|
|
1756
1923
|
context?: undefined;
|
|
1924
|
+
skip?: undefined;
|
|
1925
|
+
showRead?: undefined;
|
|
1926
|
+
group?: undefined;
|
|
1757
1927
|
feeling?: undefined;
|
|
1758
1928
|
needs?: undefined;
|
|
1759
1929
|
tensionId?: undefined;
|
|
1760
1930
|
order?: undefined;
|
|
1761
1931
|
_id?: undefined;
|
|
1762
|
-
accountabilities?: undefined;
|
|
1763
|
-
domains?: undefined;
|
|
1764
1932
|
removeNest?: undefined;
|
|
1765
1933
|
partId?: undefined;
|
|
1766
1934
|
status?: undefined;
|
|
1767
1935
|
};
|
|
1768
1936
|
required: string[];
|
|
1769
1937
|
};
|
|
1770
|
-
_meta?: undefined;
|
|
1771
1938
|
} | {
|
|
1939
|
+
annotations: {
|
|
1940
|
+
readOnlyHint: boolean;
|
|
1941
|
+
destructiveHint: boolean;
|
|
1942
|
+
};
|
|
1772
1943
|
name: string;
|
|
1773
1944
|
description: string;
|
|
1774
1945
|
inputSchema: {
|
|
@@ -1810,6 +1981,8 @@ export declare const toolDefinitions: ({
|
|
|
1810
1981
|
description?: undefined;
|
|
1811
1982
|
labels?: undefined;
|
|
1812
1983
|
users?: undefined;
|
|
1984
|
+
accountabilities?: undefined;
|
|
1985
|
+
domains?: undefined;
|
|
1813
1986
|
fields?: undefined;
|
|
1814
1987
|
data?: undefined;
|
|
1815
1988
|
due?: undefined;
|
|
@@ -1832,22 +2005,27 @@ export declare const toolDefinitions: ({
|
|
|
1832
2005
|
relatedNestId?: undefined;
|
|
1833
2006
|
color?: undefined;
|
|
1834
2007
|
icon?: undefined;
|
|
2008
|
+
fullWorkspaces?: undefined;
|
|
1835
2009
|
context?: undefined;
|
|
2010
|
+
skip?: undefined;
|
|
2011
|
+
showRead?: undefined;
|
|
2012
|
+
group?: undefined;
|
|
1836
2013
|
feeling?: undefined;
|
|
1837
2014
|
needs?: undefined;
|
|
1838
2015
|
tensionId?: undefined;
|
|
1839
2016
|
order?: undefined;
|
|
1840
2017
|
_id?: undefined;
|
|
1841
|
-
accountabilities?: undefined;
|
|
1842
|
-
domains?: undefined;
|
|
1843
2018
|
removeNest?: undefined;
|
|
1844
2019
|
partId?: undefined;
|
|
1845
2020
|
status?: undefined;
|
|
1846
2021
|
};
|
|
1847
2022
|
required: string[];
|
|
1848
2023
|
};
|
|
1849
|
-
_meta?: undefined;
|
|
1850
2024
|
} | {
|
|
2025
|
+
annotations: {
|
|
2026
|
+
readOnlyHint: boolean;
|
|
2027
|
+
destructiveHint: boolean;
|
|
2028
|
+
};
|
|
1851
2029
|
name: string;
|
|
1852
2030
|
description: string;
|
|
1853
2031
|
inputSchema: {
|
|
@@ -1880,6 +2058,8 @@ export declare const toolDefinitions: ({
|
|
|
1880
2058
|
description?: undefined;
|
|
1881
2059
|
labels?: undefined;
|
|
1882
2060
|
users?: undefined;
|
|
2061
|
+
accountabilities?: undefined;
|
|
2062
|
+
domains?: undefined;
|
|
1883
2063
|
fields?: undefined;
|
|
1884
2064
|
data?: undefined;
|
|
1885
2065
|
due?: undefined;
|
|
@@ -1902,22 +2082,27 @@ export declare const toolDefinitions: ({
|
|
|
1902
2082
|
relatedNestId?: undefined;
|
|
1903
2083
|
color?: undefined;
|
|
1904
2084
|
icon?: undefined;
|
|
2085
|
+
fullWorkspaces?: undefined;
|
|
1905
2086
|
context?: undefined;
|
|
2087
|
+
skip?: undefined;
|
|
2088
|
+
showRead?: undefined;
|
|
2089
|
+
group?: undefined;
|
|
1906
2090
|
feeling?: undefined;
|
|
1907
2091
|
needs?: undefined;
|
|
1908
2092
|
tensionId?: undefined;
|
|
1909
2093
|
order?: undefined;
|
|
1910
2094
|
_id?: undefined;
|
|
1911
|
-
accountabilities?: undefined;
|
|
1912
|
-
domains?: undefined;
|
|
1913
2095
|
removeNest?: undefined;
|
|
1914
2096
|
partId?: undefined;
|
|
1915
2097
|
status?: undefined;
|
|
1916
2098
|
};
|
|
1917
2099
|
required: string[];
|
|
1918
2100
|
};
|
|
1919
|
-
_meta?: undefined;
|
|
1920
2101
|
} | {
|
|
2102
|
+
annotations: {
|
|
2103
|
+
readOnlyHint: boolean;
|
|
2104
|
+
destructiveHint: boolean;
|
|
2105
|
+
};
|
|
1921
2106
|
name: string;
|
|
1922
2107
|
description: string;
|
|
1923
2108
|
inputSchema: {
|
|
@@ -1955,6 +2140,8 @@ export declare const toolDefinitions: ({
|
|
|
1955
2140
|
description?: undefined;
|
|
1956
2141
|
labels?: undefined;
|
|
1957
2142
|
users?: undefined;
|
|
2143
|
+
accountabilities?: undefined;
|
|
2144
|
+
domains?: undefined;
|
|
1958
2145
|
fields?: undefined;
|
|
1959
2146
|
data?: undefined;
|
|
1960
2147
|
due?: undefined;
|
|
@@ -1978,22 +2165,27 @@ export declare const toolDefinitions: ({
|
|
|
1978
2165
|
relatedNestId?: undefined;
|
|
1979
2166
|
color?: undefined;
|
|
1980
2167
|
icon?: undefined;
|
|
2168
|
+
fullWorkspaces?: undefined;
|
|
1981
2169
|
context?: undefined;
|
|
2170
|
+
skip?: undefined;
|
|
2171
|
+
showRead?: undefined;
|
|
2172
|
+
group?: undefined;
|
|
1982
2173
|
feeling?: undefined;
|
|
1983
2174
|
needs?: undefined;
|
|
1984
2175
|
tensionId?: undefined;
|
|
1985
2176
|
order?: undefined;
|
|
1986
2177
|
_id?: undefined;
|
|
1987
|
-
accountabilities?: undefined;
|
|
1988
|
-
domains?: undefined;
|
|
1989
2178
|
removeNest?: undefined;
|
|
1990
2179
|
partId?: undefined;
|
|
1991
2180
|
status?: undefined;
|
|
1992
2181
|
};
|
|
1993
2182
|
required: string[];
|
|
1994
2183
|
};
|
|
1995
|
-
_meta?: undefined;
|
|
1996
2184
|
} | {
|
|
2185
|
+
annotations: {
|
|
2186
|
+
readOnlyHint: boolean;
|
|
2187
|
+
destructiveHint: boolean;
|
|
2188
|
+
};
|
|
1997
2189
|
name: string;
|
|
1998
2190
|
description: string;
|
|
1999
2191
|
inputSchema: {
|
|
@@ -2034,6 +2226,8 @@ export declare const toolDefinitions: ({
|
|
|
2034
2226
|
description?: undefined;
|
|
2035
2227
|
labels?: undefined;
|
|
2036
2228
|
users?: undefined;
|
|
2229
|
+
accountabilities?: undefined;
|
|
2230
|
+
domains?: undefined;
|
|
2037
2231
|
fields?: undefined;
|
|
2038
2232
|
data?: undefined;
|
|
2039
2233
|
due?: undefined;
|
|
@@ -2057,14 +2251,16 @@ export declare const toolDefinitions: ({
|
|
|
2057
2251
|
relatedNestId?: undefined;
|
|
2058
2252
|
color?: undefined;
|
|
2059
2253
|
icon?: undefined;
|
|
2254
|
+
fullWorkspaces?: undefined;
|
|
2060
2255
|
context?: undefined;
|
|
2256
|
+
skip?: undefined;
|
|
2257
|
+
showRead?: undefined;
|
|
2258
|
+
group?: undefined;
|
|
2061
2259
|
feeling?: undefined;
|
|
2062
2260
|
needs?: undefined;
|
|
2063
2261
|
tensionId?: undefined;
|
|
2064
2262
|
order?: undefined;
|
|
2065
2263
|
_id?: undefined;
|
|
2066
|
-
accountabilities?: undefined;
|
|
2067
|
-
domains?: undefined;
|
|
2068
2264
|
removeNest?: undefined;
|
|
2069
2265
|
partId?: undefined;
|
|
2070
2266
|
status?: undefined;
|
|
@@ -2077,6 +2273,10 @@ export declare const toolDefinitions: ({
|
|
|
2077
2273
|
};
|
|
2078
2274
|
};
|
|
2079
2275
|
} | {
|
|
2276
|
+
annotations: {
|
|
2277
|
+
readOnlyHint: boolean;
|
|
2278
|
+
destructiveHint: boolean;
|
|
2279
|
+
};
|
|
2080
2280
|
name: string;
|
|
2081
2281
|
description: string;
|
|
2082
2282
|
inputSchema: {
|
|
@@ -2109,6 +2309,8 @@ export declare const toolDefinitions: ({
|
|
|
2109
2309
|
description?: undefined;
|
|
2110
2310
|
labels?: undefined;
|
|
2111
2311
|
users?: undefined;
|
|
2312
|
+
accountabilities?: undefined;
|
|
2313
|
+
domains?: undefined;
|
|
2112
2314
|
fields?: undefined;
|
|
2113
2315
|
data?: undefined;
|
|
2114
2316
|
due?: undefined;
|
|
@@ -2131,22 +2333,27 @@ export declare const toolDefinitions: ({
|
|
|
2131
2333
|
relatedNestId?: undefined;
|
|
2132
2334
|
color?: undefined;
|
|
2133
2335
|
icon?: undefined;
|
|
2336
|
+
fullWorkspaces?: undefined;
|
|
2134
2337
|
context?: undefined;
|
|
2338
|
+
skip?: undefined;
|
|
2339
|
+
showRead?: undefined;
|
|
2340
|
+
group?: undefined;
|
|
2135
2341
|
feeling?: undefined;
|
|
2136
2342
|
needs?: undefined;
|
|
2137
2343
|
tensionId?: undefined;
|
|
2138
2344
|
order?: undefined;
|
|
2139
2345
|
_id?: undefined;
|
|
2140
|
-
accountabilities?: undefined;
|
|
2141
|
-
domains?: undefined;
|
|
2142
2346
|
removeNest?: undefined;
|
|
2143
2347
|
partId?: undefined;
|
|
2144
2348
|
status?: undefined;
|
|
2145
2349
|
};
|
|
2146
2350
|
required: string[];
|
|
2147
2351
|
};
|
|
2148
|
-
_meta?: undefined;
|
|
2149
2352
|
} | {
|
|
2353
|
+
annotations: {
|
|
2354
|
+
readOnlyHint: boolean;
|
|
2355
|
+
destructiveHint: boolean;
|
|
2356
|
+
};
|
|
2150
2357
|
name: string;
|
|
2151
2358
|
description: string;
|
|
2152
2359
|
inputSchema: {
|
|
@@ -2182,6 +2389,8 @@ export declare const toolDefinitions: ({
|
|
|
2182
2389
|
description?: undefined;
|
|
2183
2390
|
labels?: undefined;
|
|
2184
2391
|
users?: undefined;
|
|
2392
|
+
accountabilities?: undefined;
|
|
2393
|
+
domains?: undefined;
|
|
2185
2394
|
fields?: undefined;
|
|
2186
2395
|
data?: undefined;
|
|
2187
2396
|
due?: undefined;
|
|
@@ -2204,22 +2413,27 @@ export declare const toolDefinitions: ({
|
|
|
2204
2413
|
relatedNestId?: undefined;
|
|
2205
2414
|
color?: undefined;
|
|
2206
2415
|
icon?: undefined;
|
|
2416
|
+
fullWorkspaces?: undefined;
|
|
2207
2417
|
context?: undefined;
|
|
2418
|
+
skip?: undefined;
|
|
2419
|
+
showRead?: undefined;
|
|
2420
|
+
group?: undefined;
|
|
2208
2421
|
feeling?: undefined;
|
|
2209
2422
|
needs?: undefined;
|
|
2210
2423
|
tensionId?: undefined;
|
|
2211
2424
|
order?: undefined;
|
|
2212
2425
|
_id?: undefined;
|
|
2213
|
-
accountabilities?: undefined;
|
|
2214
|
-
domains?: undefined;
|
|
2215
2426
|
removeNest?: undefined;
|
|
2216
2427
|
partId?: undefined;
|
|
2217
2428
|
status?: undefined;
|
|
2218
2429
|
};
|
|
2219
2430
|
required: string[];
|
|
2220
2431
|
};
|
|
2221
|
-
_meta?: undefined;
|
|
2222
2432
|
} | {
|
|
2433
|
+
annotations: {
|
|
2434
|
+
readOnlyHint: boolean;
|
|
2435
|
+
destructiveHint: boolean;
|
|
2436
|
+
};
|
|
2223
2437
|
name: string;
|
|
2224
2438
|
description: string;
|
|
2225
2439
|
inputSchema: {
|
|
@@ -2252,6 +2466,8 @@ export declare const toolDefinitions: ({
|
|
|
2252
2466
|
description?: undefined;
|
|
2253
2467
|
labels?: undefined;
|
|
2254
2468
|
users?: undefined;
|
|
2469
|
+
accountabilities?: undefined;
|
|
2470
|
+
domains?: undefined;
|
|
2255
2471
|
fields?: undefined;
|
|
2256
2472
|
data?: undefined;
|
|
2257
2473
|
due?: undefined;
|
|
@@ -2274,22 +2490,27 @@ export declare const toolDefinitions: ({
|
|
|
2274
2490
|
relatedNestId?: undefined;
|
|
2275
2491
|
color?: undefined;
|
|
2276
2492
|
icon?: undefined;
|
|
2493
|
+
fullWorkspaces?: undefined;
|
|
2277
2494
|
context?: undefined;
|
|
2495
|
+
skip?: undefined;
|
|
2496
|
+
showRead?: undefined;
|
|
2497
|
+
group?: undefined;
|
|
2278
2498
|
feeling?: undefined;
|
|
2279
2499
|
needs?: undefined;
|
|
2280
2500
|
tensionId?: undefined;
|
|
2281
2501
|
order?: undefined;
|
|
2282
2502
|
_id?: undefined;
|
|
2283
|
-
accountabilities?: undefined;
|
|
2284
|
-
domains?: undefined;
|
|
2285
2503
|
removeNest?: undefined;
|
|
2286
2504
|
partId?: undefined;
|
|
2287
2505
|
status?: undefined;
|
|
2288
2506
|
};
|
|
2289
2507
|
required: string[];
|
|
2290
2508
|
};
|
|
2291
|
-
_meta?: undefined;
|
|
2292
2509
|
} | {
|
|
2510
|
+
annotations: {
|
|
2511
|
+
readOnlyHint: boolean;
|
|
2512
|
+
destructiveHint: boolean;
|
|
2513
|
+
};
|
|
2293
2514
|
name: string;
|
|
2294
2515
|
description: string;
|
|
2295
2516
|
inputSchema: {
|
|
@@ -2330,6 +2551,8 @@ export declare const toolDefinitions: ({
|
|
|
2330
2551
|
description?: undefined;
|
|
2331
2552
|
labels?: undefined;
|
|
2332
2553
|
users?: undefined;
|
|
2554
|
+
accountabilities?: undefined;
|
|
2555
|
+
domains?: undefined;
|
|
2333
2556
|
fields?: undefined;
|
|
2334
2557
|
data?: undefined;
|
|
2335
2558
|
due?: undefined;
|
|
@@ -2350,22 +2573,27 @@ export declare const toolDefinitions: ({
|
|
|
2350
2573
|
relatedNestId?: undefined;
|
|
2351
2574
|
color?: undefined;
|
|
2352
2575
|
icon?: undefined;
|
|
2576
|
+
fullWorkspaces?: undefined;
|
|
2353
2577
|
context?: undefined;
|
|
2578
|
+
skip?: undefined;
|
|
2579
|
+
showRead?: undefined;
|
|
2580
|
+
group?: undefined;
|
|
2354
2581
|
feeling?: undefined;
|
|
2355
2582
|
needs?: undefined;
|
|
2356
2583
|
tensionId?: undefined;
|
|
2357
2584
|
order?: undefined;
|
|
2358
2585
|
_id?: undefined;
|
|
2359
|
-
accountabilities?: undefined;
|
|
2360
|
-
domains?: undefined;
|
|
2361
2586
|
removeNest?: undefined;
|
|
2362
2587
|
partId?: undefined;
|
|
2363
2588
|
status?: undefined;
|
|
2364
2589
|
};
|
|
2365
2590
|
required: string[];
|
|
2366
2591
|
};
|
|
2367
|
-
_meta?: undefined;
|
|
2368
2592
|
} | {
|
|
2593
|
+
annotations: {
|
|
2594
|
+
readOnlyHint: boolean;
|
|
2595
|
+
destructiveHint: boolean;
|
|
2596
|
+
};
|
|
2369
2597
|
name: string;
|
|
2370
2598
|
description: string;
|
|
2371
2599
|
inputSchema: {
|
|
@@ -2398,6 +2626,8 @@ export declare const toolDefinitions: ({
|
|
|
2398
2626
|
description?: undefined;
|
|
2399
2627
|
labels?: undefined;
|
|
2400
2628
|
users?: undefined;
|
|
2629
|
+
accountabilities?: undefined;
|
|
2630
|
+
domains?: undefined;
|
|
2401
2631
|
fields?: undefined;
|
|
2402
2632
|
data?: undefined;
|
|
2403
2633
|
due?: undefined;
|
|
@@ -2420,22 +2650,27 @@ export declare const toolDefinitions: ({
|
|
|
2420
2650
|
relatedNestId?: undefined;
|
|
2421
2651
|
color?: undefined;
|
|
2422
2652
|
icon?: undefined;
|
|
2653
|
+
fullWorkspaces?: undefined;
|
|
2423
2654
|
context?: undefined;
|
|
2655
|
+
skip?: undefined;
|
|
2656
|
+
showRead?: undefined;
|
|
2657
|
+
group?: undefined;
|
|
2424
2658
|
feeling?: undefined;
|
|
2425
2659
|
needs?: undefined;
|
|
2426
2660
|
tensionId?: undefined;
|
|
2427
2661
|
order?: undefined;
|
|
2428
2662
|
_id?: undefined;
|
|
2429
|
-
accountabilities?: undefined;
|
|
2430
|
-
domains?: undefined;
|
|
2431
2663
|
removeNest?: undefined;
|
|
2432
2664
|
partId?: undefined;
|
|
2433
2665
|
status?: undefined;
|
|
2434
2666
|
};
|
|
2435
2667
|
required: string[];
|
|
2436
2668
|
};
|
|
2437
|
-
_meta?: undefined;
|
|
2438
2669
|
} | {
|
|
2670
|
+
annotations: {
|
|
2671
|
+
readOnlyHint: boolean;
|
|
2672
|
+
destructiveHint: boolean;
|
|
2673
|
+
};
|
|
2439
2674
|
name: string;
|
|
2440
2675
|
description: string;
|
|
2441
2676
|
inputSchema: {
|
|
@@ -2479,6 +2714,8 @@ export declare const toolDefinitions: ({
|
|
|
2479
2714
|
description?: undefined;
|
|
2480
2715
|
labels?: undefined;
|
|
2481
2716
|
users?: undefined;
|
|
2717
|
+
accountabilities?: undefined;
|
|
2718
|
+
domains?: undefined;
|
|
2482
2719
|
fields?: undefined;
|
|
2483
2720
|
data?: undefined;
|
|
2484
2721
|
due?: undefined;
|
|
@@ -2499,22 +2736,27 @@ export declare const toolDefinitions: ({
|
|
|
2499
2736
|
relatedNestId?: undefined;
|
|
2500
2737
|
color?: undefined;
|
|
2501
2738
|
icon?: undefined;
|
|
2739
|
+
fullWorkspaces?: undefined;
|
|
2502
2740
|
context?: undefined;
|
|
2741
|
+
skip?: undefined;
|
|
2742
|
+
showRead?: undefined;
|
|
2743
|
+
group?: undefined;
|
|
2503
2744
|
feeling?: undefined;
|
|
2504
2745
|
needs?: undefined;
|
|
2505
2746
|
tensionId?: undefined;
|
|
2506
2747
|
order?: undefined;
|
|
2507
2748
|
_id?: undefined;
|
|
2508
|
-
accountabilities?: undefined;
|
|
2509
|
-
domains?: undefined;
|
|
2510
2749
|
removeNest?: undefined;
|
|
2511
2750
|
partId?: undefined;
|
|
2512
2751
|
status?: undefined;
|
|
2513
2752
|
};
|
|
2514
2753
|
required: string[];
|
|
2515
2754
|
};
|
|
2516
|
-
_meta?: undefined;
|
|
2517
2755
|
} | {
|
|
2756
|
+
annotations: {
|
|
2757
|
+
readOnlyHint: boolean;
|
|
2758
|
+
destructiveHint: boolean;
|
|
2759
|
+
};
|
|
2518
2760
|
name: string;
|
|
2519
2761
|
description: string;
|
|
2520
2762
|
inputSchema: {
|
|
@@ -2543,6 +2785,8 @@ export declare const toolDefinitions: ({
|
|
|
2543
2785
|
description?: undefined;
|
|
2544
2786
|
labels?: undefined;
|
|
2545
2787
|
users?: undefined;
|
|
2788
|
+
accountabilities?: undefined;
|
|
2789
|
+
domains?: undefined;
|
|
2546
2790
|
fields?: undefined;
|
|
2547
2791
|
data?: undefined;
|
|
2548
2792
|
due?: undefined;
|
|
@@ -2566,22 +2810,27 @@ export declare const toolDefinitions: ({
|
|
|
2566
2810
|
relatedNestId?: undefined;
|
|
2567
2811
|
color?: undefined;
|
|
2568
2812
|
icon?: undefined;
|
|
2813
|
+
fullWorkspaces?: undefined;
|
|
2569
2814
|
context?: undefined;
|
|
2815
|
+
skip?: undefined;
|
|
2816
|
+
showRead?: undefined;
|
|
2817
|
+
group?: undefined;
|
|
2570
2818
|
feeling?: undefined;
|
|
2571
2819
|
needs?: undefined;
|
|
2572
2820
|
tensionId?: undefined;
|
|
2573
2821
|
order?: undefined;
|
|
2574
2822
|
_id?: undefined;
|
|
2575
|
-
accountabilities?: undefined;
|
|
2576
|
-
domains?: undefined;
|
|
2577
2823
|
removeNest?: undefined;
|
|
2578
2824
|
partId?: undefined;
|
|
2579
2825
|
status?: undefined;
|
|
2580
2826
|
};
|
|
2581
2827
|
required: string[];
|
|
2582
2828
|
};
|
|
2583
|
-
_meta?: undefined;
|
|
2584
2829
|
} | {
|
|
2830
|
+
annotations: {
|
|
2831
|
+
readOnlyHint: boolean;
|
|
2832
|
+
destructiveHint: boolean;
|
|
2833
|
+
};
|
|
2585
2834
|
name: string;
|
|
2586
2835
|
description: string;
|
|
2587
2836
|
inputSchema: {
|
|
@@ -2614,6 +2863,8 @@ export declare const toolDefinitions: ({
|
|
|
2614
2863
|
description?: undefined;
|
|
2615
2864
|
labels?: undefined;
|
|
2616
2865
|
users?: undefined;
|
|
2866
|
+
accountabilities?: undefined;
|
|
2867
|
+
domains?: undefined;
|
|
2617
2868
|
fields?: undefined;
|
|
2618
2869
|
data?: undefined;
|
|
2619
2870
|
due?: undefined;
|
|
@@ -2636,14 +2887,16 @@ export declare const toolDefinitions: ({
|
|
|
2636
2887
|
relatedNestId?: undefined;
|
|
2637
2888
|
color?: undefined;
|
|
2638
2889
|
icon?: undefined;
|
|
2890
|
+
fullWorkspaces?: undefined;
|
|
2639
2891
|
context?: undefined;
|
|
2892
|
+
skip?: undefined;
|
|
2893
|
+
showRead?: undefined;
|
|
2894
|
+
group?: undefined;
|
|
2640
2895
|
feeling?: undefined;
|
|
2641
2896
|
needs?: undefined;
|
|
2642
2897
|
tensionId?: undefined;
|
|
2643
2898
|
order?: undefined;
|
|
2644
2899
|
_id?: undefined;
|
|
2645
|
-
accountabilities?: undefined;
|
|
2646
|
-
domains?: undefined;
|
|
2647
2900
|
removeNest?: undefined;
|
|
2648
2901
|
partId?: undefined;
|
|
2649
2902
|
status?: undefined;
|
|
@@ -2656,6 +2909,10 @@ export declare const toolDefinitions: ({
|
|
|
2656
2909
|
};
|
|
2657
2910
|
};
|
|
2658
2911
|
} | {
|
|
2912
|
+
annotations: {
|
|
2913
|
+
readOnlyHint: boolean;
|
|
2914
|
+
destructiveHint: boolean;
|
|
2915
|
+
};
|
|
2659
2916
|
name: string;
|
|
2660
2917
|
description: string;
|
|
2661
2918
|
inputSchema: {
|
|
@@ -2687,6 +2944,8 @@ export declare const toolDefinitions: ({
|
|
|
2687
2944
|
parentId?: undefined;
|
|
2688
2945
|
labels?: undefined;
|
|
2689
2946
|
users?: undefined;
|
|
2947
|
+
accountabilities?: undefined;
|
|
2948
|
+
domains?: undefined;
|
|
2690
2949
|
fields?: undefined;
|
|
2691
2950
|
data?: undefined;
|
|
2692
2951
|
due?: undefined;
|
|
@@ -2710,22 +2969,27 @@ export declare const toolDefinitions: ({
|
|
|
2710
2969
|
relatedNestId?: undefined;
|
|
2711
2970
|
color?: undefined;
|
|
2712
2971
|
icon?: undefined;
|
|
2972
|
+
fullWorkspaces?: undefined;
|
|
2713
2973
|
context?: undefined;
|
|
2974
|
+
skip?: undefined;
|
|
2975
|
+
showRead?: undefined;
|
|
2976
|
+
group?: undefined;
|
|
2714
2977
|
feeling?: undefined;
|
|
2715
2978
|
needs?: undefined;
|
|
2716
2979
|
tensionId?: undefined;
|
|
2717
2980
|
order?: undefined;
|
|
2718
2981
|
_id?: undefined;
|
|
2719
|
-
accountabilities?: undefined;
|
|
2720
|
-
domains?: undefined;
|
|
2721
2982
|
removeNest?: undefined;
|
|
2722
2983
|
partId?: undefined;
|
|
2723
2984
|
status?: undefined;
|
|
2724
2985
|
};
|
|
2725
2986
|
required: string[];
|
|
2726
2987
|
};
|
|
2727
|
-
_meta?: undefined;
|
|
2728
2988
|
} | {
|
|
2989
|
+
annotations: {
|
|
2990
|
+
readOnlyHint: boolean;
|
|
2991
|
+
destructiveHint: boolean;
|
|
2992
|
+
};
|
|
2729
2993
|
name: string;
|
|
2730
2994
|
description: string;
|
|
2731
2995
|
inputSchema: {
|
|
@@ -2757,6 +3021,8 @@ export declare const toolDefinitions: ({
|
|
|
2757
3021
|
description?: undefined;
|
|
2758
3022
|
labels?: undefined;
|
|
2759
3023
|
users?: undefined;
|
|
3024
|
+
accountabilities?: undefined;
|
|
3025
|
+
domains?: undefined;
|
|
2760
3026
|
fields?: undefined;
|
|
2761
3027
|
data?: undefined;
|
|
2762
3028
|
due?: undefined;
|
|
@@ -2780,22 +3046,27 @@ export declare const toolDefinitions: ({
|
|
|
2780
3046
|
relatedNestId?: undefined;
|
|
2781
3047
|
color?: undefined;
|
|
2782
3048
|
icon?: undefined;
|
|
3049
|
+
fullWorkspaces?: undefined;
|
|
2783
3050
|
context?: undefined;
|
|
3051
|
+
skip?: undefined;
|
|
3052
|
+
showRead?: undefined;
|
|
3053
|
+
group?: undefined;
|
|
2784
3054
|
feeling?: undefined;
|
|
2785
3055
|
needs?: undefined;
|
|
2786
3056
|
tensionId?: undefined;
|
|
2787
3057
|
order?: undefined;
|
|
2788
3058
|
_id?: undefined;
|
|
2789
|
-
accountabilities?: undefined;
|
|
2790
|
-
domains?: undefined;
|
|
2791
3059
|
removeNest?: undefined;
|
|
2792
3060
|
partId?: undefined;
|
|
2793
3061
|
status?: undefined;
|
|
2794
3062
|
};
|
|
2795
3063
|
required: string[];
|
|
2796
3064
|
};
|
|
2797
|
-
_meta?: undefined;
|
|
2798
3065
|
} | {
|
|
3066
|
+
annotations: {
|
|
3067
|
+
readOnlyHint: boolean;
|
|
3068
|
+
destructiveHint: boolean;
|
|
3069
|
+
};
|
|
2799
3070
|
name: string;
|
|
2800
3071
|
description: string;
|
|
2801
3072
|
inputSchema: {
|
|
@@ -2838,6 +3109,8 @@ export declare const toolDefinitions: ({
|
|
|
2838
3109
|
parentId?: undefined;
|
|
2839
3110
|
labels?: undefined;
|
|
2840
3111
|
users?: undefined;
|
|
3112
|
+
accountabilities?: undefined;
|
|
3113
|
+
domains?: undefined;
|
|
2841
3114
|
fields?: undefined;
|
|
2842
3115
|
due?: undefined;
|
|
2843
3116
|
body?: undefined;
|
|
@@ -2859,22 +3132,27 @@ export declare const toolDefinitions: ({
|
|
|
2859
3132
|
relatedNestId?: undefined;
|
|
2860
3133
|
color?: undefined;
|
|
2861
3134
|
icon?: undefined;
|
|
3135
|
+
fullWorkspaces?: undefined;
|
|
2862
3136
|
context?: undefined;
|
|
3137
|
+
skip?: undefined;
|
|
3138
|
+
showRead?: undefined;
|
|
3139
|
+
group?: undefined;
|
|
2863
3140
|
feeling?: undefined;
|
|
2864
3141
|
needs?: undefined;
|
|
2865
3142
|
tensionId?: undefined;
|
|
2866
3143
|
order?: undefined;
|
|
2867
3144
|
_id?: undefined;
|
|
2868
|
-
accountabilities?: undefined;
|
|
2869
|
-
domains?: undefined;
|
|
2870
3145
|
removeNest?: undefined;
|
|
2871
3146
|
partId?: undefined;
|
|
2872
3147
|
status?: undefined;
|
|
2873
3148
|
};
|
|
2874
3149
|
required: string[];
|
|
2875
3150
|
};
|
|
2876
|
-
_meta?: undefined;
|
|
2877
3151
|
} | {
|
|
3152
|
+
annotations: {
|
|
3153
|
+
readOnlyHint: boolean;
|
|
3154
|
+
destructiveHint: boolean;
|
|
3155
|
+
};
|
|
2878
3156
|
name: string;
|
|
2879
3157
|
description: string;
|
|
2880
3158
|
inputSchema: {
|
|
@@ -2907,6 +3185,8 @@ export declare const toolDefinitions: ({
|
|
|
2907
3185
|
description?: undefined;
|
|
2908
3186
|
labels?: undefined;
|
|
2909
3187
|
users?: undefined;
|
|
3188
|
+
accountabilities?: undefined;
|
|
3189
|
+
domains?: undefined;
|
|
2910
3190
|
fields?: undefined;
|
|
2911
3191
|
data?: undefined;
|
|
2912
3192
|
due?: undefined;
|
|
@@ -2929,22 +3209,27 @@ export declare const toolDefinitions: ({
|
|
|
2929
3209
|
relatedNestId?: undefined;
|
|
2930
3210
|
color?: undefined;
|
|
2931
3211
|
icon?: undefined;
|
|
3212
|
+
fullWorkspaces?: undefined;
|
|
2932
3213
|
context?: undefined;
|
|
3214
|
+
skip?: undefined;
|
|
3215
|
+
showRead?: undefined;
|
|
3216
|
+
group?: undefined;
|
|
2933
3217
|
feeling?: undefined;
|
|
2934
3218
|
needs?: undefined;
|
|
2935
3219
|
tensionId?: undefined;
|
|
2936
3220
|
order?: undefined;
|
|
2937
3221
|
_id?: undefined;
|
|
2938
|
-
accountabilities?: undefined;
|
|
2939
|
-
domains?: undefined;
|
|
2940
3222
|
removeNest?: undefined;
|
|
2941
3223
|
partId?: undefined;
|
|
2942
3224
|
status?: undefined;
|
|
2943
3225
|
};
|
|
2944
3226
|
required: string[];
|
|
2945
3227
|
};
|
|
2946
|
-
_meta?: undefined;
|
|
2947
3228
|
} | {
|
|
3229
|
+
annotations: {
|
|
3230
|
+
readOnlyHint: boolean;
|
|
3231
|
+
destructiveHint: boolean;
|
|
3232
|
+
};
|
|
2948
3233
|
name: string;
|
|
2949
3234
|
description: string;
|
|
2950
3235
|
inputSchema: {
|
|
@@ -2982,6 +3267,8 @@ export declare const toolDefinitions: ({
|
|
|
2982
3267
|
description?: undefined;
|
|
2983
3268
|
labels?: undefined;
|
|
2984
3269
|
users?: undefined;
|
|
3270
|
+
accountabilities?: undefined;
|
|
3271
|
+
domains?: undefined;
|
|
2985
3272
|
fields?: undefined;
|
|
2986
3273
|
data?: undefined;
|
|
2987
3274
|
due?: undefined;
|
|
@@ -3003,22 +3290,27 @@ export declare const toolDefinitions: ({
|
|
|
3003
3290
|
nestIds?: undefined;
|
|
3004
3291
|
color?: undefined;
|
|
3005
3292
|
icon?: undefined;
|
|
3293
|
+
fullWorkspaces?: undefined;
|
|
3006
3294
|
context?: undefined;
|
|
3295
|
+
skip?: undefined;
|
|
3296
|
+
showRead?: undefined;
|
|
3297
|
+
group?: undefined;
|
|
3007
3298
|
feeling?: undefined;
|
|
3008
3299
|
needs?: undefined;
|
|
3009
3300
|
tensionId?: undefined;
|
|
3010
3301
|
order?: undefined;
|
|
3011
3302
|
_id?: undefined;
|
|
3012
|
-
accountabilities?: undefined;
|
|
3013
|
-
domains?: undefined;
|
|
3014
3303
|
removeNest?: undefined;
|
|
3015
3304
|
partId?: undefined;
|
|
3016
3305
|
status?: undefined;
|
|
3017
3306
|
};
|
|
3018
3307
|
required: string[];
|
|
3019
3308
|
};
|
|
3020
|
-
_meta?: undefined;
|
|
3021
3309
|
} | {
|
|
3310
|
+
annotations: {
|
|
3311
|
+
readOnlyHint: boolean;
|
|
3312
|
+
destructiveHint: boolean;
|
|
3313
|
+
};
|
|
3022
3314
|
name: string;
|
|
3023
3315
|
description: string;
|
|
3024
3316
|
inputSchema: {
|
|
@@ -3044,6 +3336,8 @@ export declare const toolDefinitions: ({
|
|
|
3044
3336
|
description?: undefined;
|
|
3045
3337
|
labels?: undefined;
|
|
3046
3338
|
users?: undefined;
|
|
3339
|
+
accountabilities?: undefined;
|
|
3340
|
+
domains?: undefined;
|
|
3047
3341
|
fields?: undefined;
|
|
3048
3342
|
data?: undefined;
|
|
3049
3343
|
due?: undefined;
|
|
@@ -3067,22 +3361,27 @@ export declare const toolDefinitions: ({
|
|
|
3067
3361
|
relatedNestId?: undefined;
|
|
3068
3362
|
color?: undefined;
|
|
3069
3363
|
icon?: undefined;
|
|
3364
|
+
fullWorkspaces?: undefined;
|
|
3070
3365
|
context?: undefined;
|
|
3366
|
+
skip?: undefined;
|
|
3367
|
+
showRead?: undefined;
|
|
3368
|
+
group?: undefined;
|
|
3071
3369
|
feeling?: undefined;
|
|
3072
3370
|
needs?: undefined;
|
|
3073
3371
|
tensionId?: undefined;
|
|
3074
3372
|
order?: undefined;
|
|
3075
3373
|
_id?: undefined;
|
|
3076
|
-
accountabilities?: undefined;
|
|
3077
|
-
domains?: undefined;
|
|
3078
3374
|
removeNest?: undefined;
|
|
3079
3375
|
partId?: undefined;
|
|
3080
3376
|
status?: undefined;
|
|
3081
3377
|
};
|
|
3082
3378
|
required?: undefined;
|
|
3083
3379
|
};
|
|
3084
|
-
_meta?: undefined;
|
|
3085
3380
|
} | {
|
|
3381
|
+
annotations: {
|
|
3382
|
+
readOnlyHint: boolean;
|
|
3383
|
+
destructiveHint: boolean;
|
|
3384
|
+
};
|
|
3086
3385
|
name: string;
|
|
3087
3386
|
description: string;
|
|
3088
3387
|
inputSchema: {
|
|
@@ -3122,6 +3421,8 @@ export declare const toolDefinitions: ({
|
|
|
3122
3421
|
parentId?: undefined;
|
|
3123
3422
|
labels?: undefined;
|
|
3124
3423
|
users?: undefined;
|
|
3424
|
+
accountabilities?: undefined;
|
|
3425
|
+
domains?: undefined;
|
|
3125
3426
|
fields?: undefined;
|
|
3126
3427
|
data?: undefined;
|
|
3127
3428
|
due?: undefined;
|
|
@@ -3143,22 +3444,27 @@ export declare const toolDefinitions: ({
|
|
|
3143
3444
|
nestIds?: undefined;
|
|
3144
3445
|
position?: undefined;
|
|
3145
3446
|
relatedNestId?: undefined;
|
|
3447
|
+
fullWorkspaces?: undefined;
|
|
3146
3448
|
context?: undefined;
|
|
3449
|
+
skip?: undefined;
|
|
3450
|
+
showRead?: undefined;
|
|
3451
|
+
group?: undefined;
|
|
3147
3452
|
feeling?: undefined;
|
|
3148
3453
|
needs?: undefined;
|
|
3149
3454
|
tensionId?: undefined;
|
|
3150
3455
|
order?: undefined;
|
|
3151
3456
|
_id?: undefined;
|
|
3152
|
-
accountabilities?: undefined;
|
|
3153
|
-
domains?: undefined;
|
|
3154
3457
|
removeNest?: undefined;
|
|
3155
3458
|
partId?: undefined;
|
|
3156
3459
|
status?: undefined;
|
|
3157
3460
|
};
|
|
3158
3461
|
required: string[];
|
|
3159
3462
|
};
|
|
3160
|
-
_meta?: undefined;
|
|
3161
3463
|
} | {
|
|
3464
|
+
annotations: {
|
|
3465
|
+
readOnlyHint: boolean;
|
|
3466
|
+
destructiveHint: boolean;
|
|
3467
|
+
};
|
|
3162
3468
|
name: string;
|
|
3163
3469
|
description: string;
|
|
3164
3470
|
inputSchema: {
|
|
@@ -3194,6 +3500,8 @@ export declare const toolDefinitions: ({
|
|
|
3194
3500
|
description?: undefined;
|
|
3195
3501
|
labels?: undefined;
|
|
3196
3502
|
users?: undefined;
|
|
3503
|
+
accountabilities?: undefined;
|
|
3504
|
+
domains?: undefined;
|
|
3197
3505
|
fields?: undefined;
|
|
3198
3506
|
data?: undefined;
|
|
3199
3507
|
due?: undefined;
|
|
@@ -3216,22 +3524,27 @@ export declare const toolDefinitions: ({
|
|
|
3216
3524
|
relatedNestId?: undefined;
|
|
3217
3525
|
color?: undefined;
|
|
3218
3526
|
icon?: undefined;
|
|
3527
|
+
fullWorkspaces?: undefined;
|
|
3219
3528
|
context?: undefined;
|
|
3529
|
+
skip?: undefined;
|
|
3530
|
+
showRead?: undefined;
|
|
3531
|
+
group?: undefined;
|
|
3220
3532
|
feeling?: undefined;
|
|
3221
3533
|
needs?: undefined;
|
|
3222
3534
|
tensionId?: undefined;
|
|
3223
3535
|
order?: undefined;
|
|
3224
3536
|
_id?: undefined;
|
|
3225
|
-
accountabilities?: undefined;
|
|
3226
|
-
domains?: undefined;
|
|
3227
3537
|
removeNest?: undefined;
|
|
3228
3538
|
partId?: undefined;
|
|
3229
3539
|
status?: undefined;
|
|
3230
3540
|
};
|
|
3231
3541
|
required: string[];
|
|
3232
3542
|
};
|
|
3233
|
-
_meta?: undefined;
|
|
3234
3543
|
} | {
|
|
3544
|
+
annotations: {
|
|
3545
|
+
readOnlyHint: boolean;
|
|
3546
|
+
destructiveHint: boolean;
|
|
3547
|
+
};
|
|
3235
3548
|
name: string;
|
|
3236
3549
|
description: string;
|
|
3237
3550
|
inputSchema: {
|
|
@@ -3260,6 +3573,8 @@ export declare const toolDefinitions: ({
|
|
|
3260
3573
|
description?: undefined;
|
|
3261
3574
|
labels?: undefined;
|
|
3262
3575
|
users?: undefined;
|
|
3576
|
+
accountabilities?: undefined;
|
|
3577
|
+
domains?: undefined;
|
|
3263
3578
|
fields?: undefined;
|
|
3264
3579
|
data?: undefined;
|
|
3265
3580
|
due?: undefined;
|
|
@@ -3283,14 +3598,16 @@ export declare const toolDefinitions: ({
|
|
|
3283
3598
|
relatedNestId?: undefined;
|
|
3284
3599
|
color?: undefined;
|
|
3285
3600
|
icon?: undefined;
|
|
3601
|
+
fullWorkspaces?: undefined;
|
|
3286
3602
|
context?: undefined;
|
|
3603
|
+
skip?: undefined;
|
|
3604
|
+
showRead?: undefined;
|
|
3605
|
+
group?: undefined;
|
|
3287
3606
|
feeling?: undefined;
|
|
3288
3607
|
needs?: undefined;
|
|
3289
3608
|
tensionId?: undefined;
|
|
3290
3609
|
order?: undefined;
|
|
3291
3610
|
_id?: undefined;
|
|
3292
|
-
accountabilities?: undefined;
|
|
3293
|
-
domains?: undefined;
|
|
3294
3611
|
removeNest?: undefined;
|
|
3295
3612
|
partId?: undefined;
|
|
3296
3613
|
status?: undefined;
|
|
@@ -3303,6 +3620,10 @@ export declare const toolDefinitions: ({
|
|
|
3303
3620
|
};
|
|
3304
3621
|
};
|
|
3305
3622
|
} | {
|
|
3623
|
+
annotations: {
|
|
3624
|
+
readOnlyHint: boolean;
|
|
3625
|
+
destructiveHint: boolean;
|
|
3626
|
+
};
|
|
3306
3627
|
name: string;
|
|
3307
3628
|
description: string;
|
|
3308
3629
|
inputSchema: {
|
|
@@ -3335,6 +3656,8 @@ export declare const toolDefinitions: ({
|
|
|
3335
3656
|
description?: undefined;
|
|
3336
3657
|
labels?: undefined;
|
|
3337
3658
|
users?: undefined;
|
|
3659
|
+
accountabilities?: undefined;
|
|
3660
|
+
domains?: undefined;
|
|
3338
3661
|
fields?: undefined;
|
|
3339
3662
|
data?: undefined;
|
|
3340
3663
|
due?: undefined;
|
|
@@ -3357,22 +3680,101 @@ export declare const toolDefinitions: ({
|
|
|
3357
3680
|
relatedNestId?: undefined;
|
|
3358
3681
|
color?: undefined;
|
|
3359
3682
|
icon?: undefined;
|
|
3683
|
+
fullWorkspaces?: undefined;
|
|
3360
3684
|
context?: undefined;
|
|
3685
|
+
skip?: undefined;
|
|
3686
|
+
showRead?: undefined;
|
|
3687
|
+
group?: undefined;
|
|
3361
3688
|
feeling?: undefined;
|
|
3362
3689
|
needs?: undefined;
|
|
3363
3690
|
tensionId?: undefined;
|
|
3364
3691
|
order?: undefined;
|
|
3365
3692
|
_id?: undefined;
|
|
3693
|
+
removeNest?: undefined;
|
|
3694
|
+
partId?: undefined;
|
|
3695
|
+
status?: undefined;
|
|
3696
|
+
};
|
|
3697
|
+
required: string[];
|
|
3698
|
+
};
|
|
3699
|
+
} | {
|
|
3700
|
+
annotations: {
|
|
3701
|
+
readOnlyHint: boolean;
|
|
3702
|
+
destructiveHint: boolean;
|
|
3703
|
+
};
|
|
3704
|
+
name: string;
|
|
3705
|
+
description: string;
|
|
3706
|
+
inputSchema: {
|
|
3707
|
+
type: "object";
|
|
3708
|
+
properties: {
|
|
3709
|
+
fullWorkspaces: {
|
|
3710
|
+
type: string;
|
|
3711
|
+
description: string;
|
|
3712
|
+
};
|
|
3713
|
+
search?: undefined;
|
|
3714
|
+
limit?: undefined;
|
|
3715
|
+
page?: undefined;
|
|
3716
|
+
stripDescription?: undefined;
|
|
3717
|
+
workspaceId?: undefined;
|
|
3718
|
+
title?: undefined;
|
|
3719
|
+
purpose?: undefined;
|
|
3720
|
+
type?: undefined;
|
|
3721
|
+
governance?: undefined;
|
|
3722
|
+
plan?: undefined;
|
|
3723
|
+
apps?: undefined;
|
|
3724
|
+
layout?: undefined;
|
|
3725
|
+
query?: undefined;
|
|
3726
|
+
_listTitle?: undefined;
|
|
3727
|
+
nestId?: undefined;
|
|
3728
|
+
fieldsMetaData?: undefined;
|
|
3729
|
+
parentId?: undefined;
|
|
3730
|
+
description?: undefined;
|
|
3731
|
+
labels?: undefined;
|
|
3732
|
+
users?: undefined;
|
|
3366
3733
|
accountabilities?: undefined;
|
|
3367
3734
|
domains?: undefined;
|
|
3735
|
+
fields?: undefined;
|
|
3736
|
+
data?: undefined;
|
|
3737
|
+
due?: undefined;
|
|
3738
|
+
completed?: undefined;
|
|
3739
|
+
body?: undefined;
|
|
3740
|
+
commentId?: undefined;
|
|
3741
|
+
circleId?: undefined;
|
|
3742
|
+
includeSubCircles?: undefined;
|
|
3743
|
+
depth?: undefined;
|
|
3744
|
+
userId?: undefined;
|
|
3745
|
+
username?: undefined;
|
|
3746
|
+
fullName?: undefined;
|
|
3747
|
+
language?: undefined;
|
|
3748
|
+
labelId?: undefined;
|
|
3749
|
+
metricId?: undefined;
|
|
3750
|
+
from?: undefined;
|
|
3751
|
+
to?: undefined;
|
|
3752
|
+
completedAfter?: undefined;
|
|
3753
|
+
nestIds?: undefined;
|
|
3754
|
+
position?: undefined;
|
|
3755
|
+
relatedNestId?: undefined;
|
|
3756
|
+
color?: undefined;
|
|
3757
|
+
icon?: undefined;
|
|
3758
|
+
context?: undefined;
|
|
3759
|
+
skip?: undefined;
|
|
3760
|
+
showRead?: undefined;
|
|
3761
|
+
group?: undefined;
|
|
3762
|
+
feeling?: undefined;
|
|
3763
|
+
needs?: undefined;
|
|
3764
|
+
tensionId?: undefined;
|
|
3765
|
+
order?: undefined;
|
|
3766
|
+
_id?: undefined;
|
|
3368
3767
|
removeNest?: undefined;
|
|
3369
3768
|
partId?: undefined;
|
|
3370
3769
|
status?: undefined;
|
|
3371
3770
|
};
|
|
3372
|
-
required
|
|
3771
|
+
required?: undefined;
|
|
3373
3772
|
};
|
|
3374
|
-
_meta?: undefined;
|
|
3375
3773
|
} | {
|
|
3774
|
+
annotations: {
|
|
3775
|
+
readOnlyHint: boolean;
|
|
3776
|
+
destructiveHint: boolean;
|
|
3777
|
+
};
|
|
3376
3778
|
name: string;
|
|
3377
3779
|
description: string;
|
|
3378
3780
|
inputSchema: {
|
|
@@ -3402,6 +3804,8 @@ export declare const toolDefinitions: ({
|
|
|
3402
3804
|
description?: undefined;
|
|
3403
3805
|
labels?: undefined;
|
|
3404
3806
|
users?: undefined;
|
|
3807
|
+
accountabilities?: undefined;
|
|
3808
|
+
domains?: undefined;
|
|
3405
3809
|
fields?: undefined;
|
|
3406
3810
|
data?: undefined;
|
|
3407
3811
|
due?: undefined;
|
|
@@ -3425,21 +3829,113 @@ export declare const toolDefinitions: ({
|
|
|
3425
3829
|
relatedNestId?: undefined;
|
|
3426
3830
|
color?: undefined;
|
|
3427
3831
|
icon?: undefined;
|
|
3832
|
+
fullWorkspaces?: undefined;
|
|
3833
|
+
skip?: undefined;
|
|
3834
|
+
showRead?: undefined;
|
|
3835
|
+
group?: undefined;
|
|
3428
3836
|
feeling?: undefined;
|
|
3429
3837
|
needs?: undefined;
|
|
3430
3838
|
tensionId?: undefined;
|
|
3431
3839
|
order?: undefined;
|
|
3432
3840
|
_id?: undefined;
|
|
3841
|
+
removeNest?: undefined;
|
|
3842
|
+
partId?: undefined;
|
|
3843
|
+
status?: undefined;
|
|
3844
|
+
};
|
|
3845
|
+
required?: undefined;
|
|
3846
|
+
};
|
|
3847
|
+
} | {
|
|
3848
|
+
annotations: {
|
|
3849
|
+
readOnlyHint: boolean;
|
|
3850
|
+
destructiveHint: boolean;
|
|
3851
|
+
};
|
|
3852
|
+
name: string;
|
|
3853
|
+
description: string;
|
|
3854
|
+
inputSchema: {
|
|
3855
|
+
type: "object";
|
|
3856
|
+
properties: {
|
|
3857
|
+
type: {
|
|
3858
|
+
type: string;
|
|
3859
|
+
enum: string[];
|
|
3860
|
+
description: string;
|
|
3861
|
+
};
|
|
3862
|
+
limit: {
|
|
3863
|
+
type: string;
|
|
3864
|
+
description: string;
|
|
3865
|
+
};
|
|
3866
|
+
skip: {
|
|
3867
|
+
type: string;
|
|
3868
|
+
description: string;
|
|
3869
|
+
};
|
|
3870
|
+
showRead: {
|
|
3871
|
+
type: string;
|
|
3872
|
+
description: string;
|
|
3873
|
+
};
|
|
3874
|
+
group: {
|
|
3875
|
+
type: string;
|
|
3876
|
+
description: string;
|
|
3877
|
+
};
|
|
3878
|
+
search?: undefined;
|
|
3879
|
+
page?: undefined;
|
|
3880
|
+
stripDescription?: undefined;
|
|
3881
|
+
workspaceId?: undefined;
|
|
3882
|
+
title?: undefined;
|
|
3883
|
+
purpose?: undefined;
|
|
3884
|
+
governance?: undefined;
|
|
3885
|
+
plan?: undefined;
|
|
3886
|
+
apps?: undefined;
|
|
3887
|
+
layout?: undefined;
|
|
3888
|
+
query?: undefined;
|
|
3889
|
+
_listTitle?: undefined;
|
|
3890
|
+
nestId?: undefined;
|
|
3891
|
+
fieldsMetaData?: undefined;
|
|
3892
|
+
parentId?: undefined;
|
|
3893
|
+
description?: undefined;
|
|
3894
|
+
labels?: undefined;
|
|
3895
|
+
users?: undefined;
|
|
3433
3896
|
accountabilities?: undefined;
|
|
3434
3897
|
domains?: undefined;
|
|
3898
|
+
fields?: undefined;
|
|
3899
|
+
data?: undefined;
|
|
3900
|
+
due?: undefined;
|
|
3901
|
+
completed?: undefined;
|
|
3902
|
+
body?: undefined;
|
|
3903
|
+
commentId?: undefined;
|
|
3904
|
+
circleId?: undefined;
|
|
3905
|
+
includeSubCircles?: undefined;
|
|
3906
|
+
depth?: undefined;
|
|
3907
|
+
userId?: undefined;
|
|
3908
|
+
username?: undefined;
|
|
3909
|
+
fullName?: undefined;
|
|
3910
|
+
language?: undefined;
|
|
3911
|
+
labelId?: undefined;
|
|
3912
|
+
metricId?: undefined;
|
|
3913
|
+
from?: undefined;
|
|
3914
|
+
to?: undefined;
|
|
3915
|
+
completedAfter?: undefined;
|
|
3916
|
+
nestIds?: undefined;
|
|
3917
|
+
position?: undefined;
|
|
3918
|
+
relatedNestId?: undefined;
|
|
3919
|
+
color?: undefined;
|
|
3920
|
+
icon?: undefined;
|
|
3921
|
+
fullWorkspaces?: undefined;
|
|
3922
|
+
context?: undefined;
|
|
3923
|
+
feeling?: undefined;
|
|
3924
|
+
needs?: undefined;
|
|
3925
|
+
tensionId?: undefined;
|
|
3926
|
+
order?: undefined;
|
|
3927
|
+
_id?: undefined;
|
|
3435
3928
|
removeNest?: undefined;
|
|
3436
3929
|
partId?: undefined;
|
|
3437
3930
|
status?: undefined;
|
|
3438
3931
|
};
|
|
3439
3932
|
required?: undefined;
|
|
3440
3933
|
};
|
|
3441
|
-
_meta?: undefined;
|
|
3442
3934
|
} | {
|
|
3935
|
+
annotations: {
|
|
3936
|
+
readOnlyHint: boolean;
|
|
3937
|
+
destructiveHint: boolean;
|
|
3938
|
+
};
|
|
3443
3939
|
name: string;
|
|
3444
3940
|
description: string;
|
|
3445
3941
|
inputSchema: {
|
|
@@ -3482,6 +3978,8 @@ export declare const toolDefinitions: ({
|
|
|
3482
3978
|
parentId?: undefined;
|
|
3483
3979
|
labels?: undefined;
|
|
3484
3980
|
users?: undefined;
|
|
3981
|
+
accountabilities?: undefined;
|
|
3982
|
+
domains?: undefined;
|
|
3485
3983
|
fields?: undefined;
|
|
3486
3984
|
data?: undefined;
|
|
3487
3985
|
due?: undefined;
|
|
@@ -3505,20 +4003,25 @@ export declare const toolDefinitions: ({
|
|
|
3505
4003
|
relatedNestId?: undefined;
|
|
3506
4004
|
color?: undefined;
|
|
3507
4005
|
icon?: undefined;
|
|
4006
|
+
fullWorkspaces?: undefined;
|
|
3508
4007
|
context?: undefined;
|
|
4008
|
+
skip?: undefined;
|
|
4009
|
+
showRead?: undefined;
|
|
4010
|
+
group?: undefined;
|
|
3509
4011
|
tensionId?: undefined;
|
|
3510
4012
|
order?: undefined;
|
|
3511
4013
|
_id?: undefined;
|
|
3512
|
-
accountabilities?: undefined;
|
|
3513
|
-
domains?: undefined;
|
|
3514
4014
|
removeNest?: undefined;
|
|
3515
4015
|
partId?: undefined;
|
|
3516
4016
|
status?: undefined;
|
|
3517
4017
|
};
|
|
3518
4018
|
required: string[];
|
|
3519
4019
|
};
|
|
3520
|
-
_meta?: undefined;
|
|
3521
4020
|
} | {
|
|
4021
|
+
annotations: {
|
|
4022
|
+
readOnlyHint: boolean;
|
|
4023
|
+
destructiveHint: boolean;
|
|
4024
|
+
};
|
|
3522
4025
|
name: string;
|
|
3523
4026
|
description: string;
|
|
3524
4027
|
inputSchema: {
|
|
@@ -3551,6 +4054,8 @@ export declare const toolDefinitions: ({
|
|
|
3551
4054
|
description?: undefined;
|
|
3552
4055
|
labels?: undefined;
|
|
3553
4056
|
users?: undefined;
|
|
4057
|
+
accountabilities?: undefined;
|
|
4058
|
+
domains?: undefined;
|
|
3554
4059
|
fields?: undefined;
|
|
3555
4060
|
data?: undefined;
|
|
3556
4061
|
due?: undefined;
|
|
@@ -3574,21 +4079,26 @@ export declare const toolDefinitions: ({
|
|
|
3574
4079
|
relatedNestId?: undefined;
|
|
3575
4080
|
color?: undefined;
|
|
3576
4081
|
icon?: undefined;
|
|
4082
|
+
fullWorkspaces?: undefined;
|
|
3577
4083
|
context?: undefined;
|
|
4084
|
+
skip?: undefined;
|
|
4085
|
+
showRead?: undefined;
|
|
4086
|
+
group?: undefined;
|
|
3578
4087
|
feeling?: undefined;
|
|
3579
4088
|
needs?: undefined;
|
|
3580
4089
|
order?: undefined;
|
|
3581
4090
|
_id?: undefined;
|
|
3582
|
-
accountabilities?: undefined;
|
|
3583
|
-
domains?: undefined;
|
|
3584
4091
|
removeNest?: undefined;
|
|
3585
4092
|
partId?: undefined;
|
|
3586
4093
|
status?: undefined;
|
|
3587
4094
|
};
|
|
3588
4095
|
required: string[];
|
|
3589
4096
|
};
|
|
3590
|
-
_meta?: undefined;
|
|
3591
4097
|
} | {
|
|
4098
|
+
annotations: {
|
|
4099
|
+
readOnlyHint: boolean;
|
|
4100
|
+
destructiveHint: boolean;
|
|
4101
|
+
};
|
|
3592
4102
|
name: string;
|
|
3593
4103
|
description: string;
|
|
3594
4104
|
inputSchema: {
|
|
@@ -3627,6 +4137,8 @@ export declare const toolDefinitions: ({
|
|
|
3627
4137
|
description?: undefined;
|
|
3628
4138
|
labels?: undefined;
|
|
3629
4139
|
users?: undefined;
|
|
4140
|
+
accountabilities?: undefined;
|
|
4141
|
+
domains?: undefined;
|
|
3630
4142
|
fields?: undefined;
|
|
3631
4143
|
data?: undefined;
|
|
3632
4144
|
due?: undefined;
|
|
@@ -3650,21 +4162,26 @@ export declare const toolDefinitions: ({
|
|
|
3650
4162
|
relatedNestId?: undefined;
|
|
3651
4163
|
color?: undefined;
|
|
3652
4164
|
icon?: undefined;
|
|
4165
|
+
fullWorkspaces?: undefined;
|
|
3653
4166
|
context?: undefined;
|
|
4167
|
+
skip?: undefined;
|
|
4168
|
+
showRead?: undefined;
|
|
4169
|
+
group?: undefined;
|
|
3654
4170
|
feeling?: undefined;
|
|
3655
4171
|
needs?: undefined;
|
|
3656
4172
|
tensionId?: undefined;
|
|
3657
4173
|
_id?: undefined;
|
|
3658
|
-
accountabilities?: undefined;
|
|
3659
|
-
domains?: undefined;
|
|
3660
4174
|
removeNest?: undefined;
|
|
3661
4175
|
partId?: undefined;
|
|
3662
4176
|
status?: undefined;
|
|
3663
4177
|
};
|
|
3664
4178
|
required: string[];
|
|
3665
4179
|
};
|
|
3666
|
-
_meta?: undefined;
|
|
3667
4180
|
} | {
|
|
4181
|
+
annotations: {
|
|
4182
|
+
readOnlyHint: boolean;
|
|
4183
|
+
destructiveHint: boolean;
|
|
4184
|
+
};
|
|
3668
4185
|
name: string;
|
|
3669
4186
|
description: string;
|
|
3670
4187
|
inputSchema: {
|
|
@@ -3711,6 +4228,8 @@ export declare const toolDefinitions: ({
|
|
|
3711
4228
|
parentId?: undefined;
|
|
3712
4229
|
labels?: undefined;
|
|
3713
4230
|
users?: undefined;
|
|
4231
|
+
accountabilities?: undefined;
|
|
4232
|
+
domains?: undefined;
|
|
3714
4233
|
fields?: undefined;
|
|
3715
4234
|
data?: undefined;
|
|
3716
4235
|
due?: undefined;
|
|
@@ -3734,19 +4253,24 @@ export declare const toolDefinitions: ({
|
|
|
3734
4253
|
relatedNestId?: undefined;
|
|
3735
4254
|
color?: undefined;
|
|
3736
4255
|
icon?: undefined;
|
|
4256
|
+
fullWorkspaces?: undefined;
|
|
3737
4257
|
context?: undefined;
|
|
4258
|
+
skip?: undefined;
|
|
4259
|
+
showRead?: undefined;
|
|
4260
|
+
group?: undefined;
|
|
3738
4261
|
order?: undefined;
|
|
3739
4262
|
_id?: undefined;
|
|
3740
|
-
accountabilities?: undefined;
|
|
3741
|
-
domains?: undefined;
|
|
3742
4263
|
removeNest?: undefined;
|
|
3743
4264
|
partId?: undefined;
|
|
3744
4265
|
status?: undefined;
|
|
3745
4266
|
};
|
|
3746
4267
|
required: string[];
|
|
3747
4268
|
};
|
|
3748
|
-
_meta?: undefined;
|
|
3749
4269
|
} | {
|
|
4270
|
+
annotations: {
|
|
4271
|
+
readOnlyHint: boolean;
|
|
4272
|
+
destructiveHint: boolean;
|
|
4273
|
+
};
|
|
3750
4274
|
name: string;
|
|
3751
4275
|
description: string;
|
|
3752
4276
|
inputSchema: {
|
|
@@ -3851,7 +4375,11 @@ export declare const toolDefinitions: ({
|
|
|
3851
4375
|
relatedNestId?: undefined;
|
|
3852
4376
|
color?: undefined;
|
|
3853
4377
|
icon?: undefined;
|
|
4378
|
+
fullWorkspaces?: undefined;
|
|
3854
4379
|
context?: undefined;
|
|
4380
|
+
skip?: undefined;
|
|
4381
|
+
showRead?: undefined;
|
|
4382
|
+
group?: undefined;
|
|
3855
4383
|
feeling?: undefined;
|
|
3856
4384
|
needs?: undefined;
|
|
3857
4385
|
order?: undefined;
|
|
@@ -3860,8 +4388,11 @@ export declare const toolDefinitions: ({
|
|
|
3860
4388
|
};
|
|
3861
4389
|
required: string[];
|
|
3862
4390
|
};
|
|
3863
|
-
_meta?: undefined;
|
|
3864
4391
|
} | {
|
|
4392
|
+
annotations: {
|
|
4393
|
+
readOnlyHint: boolean;
|
|
4394
|
+
destructiveHint: boolean;
|
|
4395
|
+
};
|
|
3865
4396
|
name: string;
|
|
3866
4397
|
description: string;
|
|
3867
4398
|
inputSchema: {
|
|
@@ -3966,7 +4497,11 @@ export declare const toolDefinitions: ({
|
|
|
3966
4497
|
relatedNestId?: undefined;
|
|
3967
4498
|
color?: undefined;
|
|
3968
4499
|
icon?: undefined;
|
|
4500
|
+
fullWorkspaces?: undefined;
|
|
3969
4501
|
context?: undefined;
|
|
4502
|
+
skip?: undefined;
|
|
4503
|
+
showRead?: undefined;
|
|
4504
|
+
group?: undefined;
|
|
3970
4505
|
feeling?: undefined;
|
|
3971
4506
|
needs?: undefined;
|
|
3972
4507
|
order?: undefined;
|
|
@@ -3975,8 +4510,11 @@ export declare const toolDefinitions: ({
|
|
|
3975
4510
|
};
|
|
3976
4511
|
required: string[];
|
|
3977
4512
|
};
|
|
3978
|
-
_meta?: undefined;
|
|
3979
4513
|
} | {
|
|
4514
|
+
annotations: {
|
|
4515
|
+
readOnlyHint: boolean;
|
|
4516
|
+
destructiveHint: boolean;
|
|
4517
|
+
};
|
|
3980
4518
|
name: string;
|
|
3981
4519
|
description: string;
|
|
3982
4520
|
inputSchema: {
|
|
@@ -4013,6 +4551,8 @@ export declare const toolDefinitions: ({
|
|
|
4013
4551
|
description?: undefined;
|
|
4014
4552
|
labels?: undefined;
|
|
4015
4553
|
users?: undefined;
|
|
4554
|
+
accountabilities?: undefined;
|
|
4555
|
+
domains?: undefined;
|
|
4016
4556
|
fields?: undefined;
|
|
4017
4557
|
data?: undefined;
|
|
4018
4558
|
due?: undefined;
|
|
@@ -4036,20 +4576,25 @@ export declare const toolDefinitions: ({
|
|
|
4036
4576
|
relatedNestId?: undefined;
|
|
4037
4577
|
color?: undefined;
|
|
4038
4578
|
icon?: undefined;
|
|
4579
|
+
fullWorkspaces?: undefined;
|
|
4039
4580
|
context?: undefined;
|
|
4581
|
+
skip?: undefined;
|
|
4582
|
+
showRead?: undefined;
|
|
4583
|
+
group?: undefined;
|
|
4040
4584
|
feeling?: undefined;
|
|
4041
4585
|
needs?: undefined;
|
|
4042
4586
|
order?: undefined;
|
|
4043
4587
|
_id?: undefined;
|
|
4044
|
-
accountabilities?: undefined;
|
|
4045
|
-
domains?: undefined;
|
|
4046
4588
|
removeNest?: undefined;
|
|
4047
4589
|
status?: undefined;
|
|
4048
4590
|
};
|
|
4049
4591
|
required: string[];
|
|
4050
4592
|
};
|
|
4051
|
-
_meta?: undefined;
|
|
4052
4593
|
} | {
|
|
4594
|
+
annotations: {
|
|
4595
|
+
readOnlyHint: boolean;
|
|
4596
|
+
destructiveHint: boolean;
|
|
4597
|
+
};
|
|
4053
4598
|
name: string;
|
|
4054
4599
|
description: string;
|
|
4055
4600
|
inputSchema: {
|
|
@@ -4087,6 +4632,8 @@ export declare const toolDefinitions: ({
|
|
|
4087
4632
|
description?: undefined;
|
|
4088
4633
|
labels?: undefined;
|
|
4089
4634
|
users?: undefined;
|
|
4635
|
+
accountabilities?: undefined;
|
|
4636
|
+
domains?: undefined;
|
|
4090
4637
|
fields?: undefined;
|
|
4091
4638
|
data?: undefined;
|
|
4092
4639
|
due?: undefined;
|
|
@@ -4110,19 +4657,20 @@ export declare const toolDefinitions: ({
|
|
|
4110
4657
|
relatedNestId?: undefined;
|
|
4111
4658
|
color?: undefined;
|
|
4112
4659
|
icon?: undefined;
|
|
4660
|
+
fullWorkspaces?: undefined;
|
|
4113
4661
|
context?: undefined;
|
|
4662
|
+
skip?: undefined;
|
|
4663
|
+
showRead?: undefined;
|
|
4664
|
+
group?: undefined;
|
|
4114
4665
|
feeling?: undefined;
|
|
4115
4666
|
needs?: undefined;
|
|
4116
4667
|
order?: undefined;
|
|
4117
4668
|
_id?: undefined;
|
|
4118
|
-
accountabilities?: undefined;
|
|
4119
|
-
domains?: undefined;
|
|
4120
4669
|
removeNest?: undefined;
|
|
4121
4670
|
partId?: undefined;
|
|
4122
4671
|
};
|
|
4123
4672
|
required: string[];
|
|
4124
4673
|
};
|
|
4125
|
-
_meta?: undefined;
|
|
4126
4674
|
})[];
|
|
4127
4675
|
export type ToolResult = {
|
|
4128
4676
|
content: Array<{
|