@nestr/mcp 0.1.97 → 0.1.99
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 +1 -1
- package/build/api/client.d.ts +46 -1
- package/build/api/client.d.ts.map +1 -1
- package/build/api/client.js +102 -0
- package/build/api/client.js.map +1 -1
- package/build/help/articles.d.ts.map +1 -1
- package/build/help/articles.js +10 -3
- package/build/help/articles.js.map +1 -1
- package/build/help/cross-links.d.ts.map +1 -1
- package/build/help/cross-links.js +4 -0
- package/build/help/cross-links.js.map +1 -1
- package/build/help/topics.d.ts.map +1 -1
- package/build/help/topics.js +73 -0
- package/build/help/topics.js.map +1 -1
- package/build/tools/index.d.ts +1737 -165
- package/build/tools/index.d.ts.map +1 -1
- package/build/tools/index.js +551 -96
- package/build/tools/index.js.map +1 -1
- package/package.json +1 -1
package/build/tools/index.d.ts
CHANGED
|
@@ -55,6 +55,7 @@ export declare function translateEndpoint(endpoint: ApiHintEndpoint): EnrichedTo
|
|
|
55
55
|
export declare function commentPlacementNote(requestedNestId: string, post: {
|
|
56
56
|
parentId?: string;
|
|
57
57
|
} | null | undefined): string | null;
|
|
58
|
+
export declare function nestrWebBase(apiBase?: string): string;
|
|
58
59
|
export declare function enrichHints<T>(data: T): T;
|
|
59
60
|
export declare function addNestUrls<T>(data: T): T;
|
|
60
61
|
export declare const schemas: {
|
|
@@ -74,6 +75,112 @@ export declare const schemas: {
|
|
|
74
75
|
limit?: number | undefined;
|
|
75
76
|
page?: number | undefined;
|
|
76
77
|
}>;
|
|
78
|
+
listDMs: z.ZodObject<{
|
|
79
|
+
withUser: z.ZodOptional<z.ZodString>;
|
|
80
|
+
unread: z.ZodOptional<z.ZodBoolean>;
|
|
81
|
+
includeCompleted: z.ZodOptional<z.ZodBoolean>;
|
|
82
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
83
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
84
|
+
}, "strip", z.ZodTypeAny, {
|
|
85
|
+
limit?: number | undefined;
|
|
86
|
+
page?: number | undefined;
|
|
87
|
+
unread?: boolean | undefined;
|
|
88
|
+
withUser?: string | undefined;
|
|
89
|
+
includeCompleted?: boolean | undefined;
|
|
90
|
+
}, {
|
|
91
|
+
limit?: number | undefined;
|
|
92
|
+
page?: number | undefined;
|
|
93
|
+
unread?: boolean | undefined;
|
|
94
|
+
withUser?: string | undefined;
|
|
95
|
+
includeCompleted?: boolean | undefined;
|
|
96
|
+
}>;
|
|
97
|
+
startDMThread: z.ZodObject<{
|
|
98
|
+
user: z.ZodString;
|
|
99
|
+
title: z.ZodOptional<z.ZodString>;
|
|
100
|
+
}, "strip", z.ZodTypeAny, {
|
|
101
|
+
user: string;
|
|
102
|
+
title?: string | undefined;
|
|
103
|
+
}, {
|
|
104
|
+
user: string;
|
|
105
|
+
title?: string | undefined;
|
|
106
|
+
}>;
|
|
107
|
+
listQueues: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
108
|
+
listQueueThreads: z.ZodObject<{
|
|
109
|
+
key: z.ZodString;
|
|
110
|
+
unread: z.ZodOptional<z.ZodBoolean>;
|
|
111
|
+
}, "strip", z.ZodTypeAny, {
|
|
112
|
+
key: string;
|
|
113
|
+
unread?: boolean | undefined;
|
|
114
|
+
}, {
|
|
115
|
+
key: string;
|
|
116
|
+
unread?: boolean | undefined;
|
|
117
|
+
}>;
|
|
118
|
+
getDMThread: z.ZodObject<{
|
|
119
|
+
threadId: z.ZodString;
|
|
120
|
+
unread: z.ZodOptional<z.ZodBoolean>;
|
|
121
|
+
}, "strip", z.ZodTypeAny, {
|
|
122
|
+
threadId: string;
|
|
123
|
+
unread?: boolean | undefined;
|
|
124
|
+
}, {
|
|
125
|
+
threadId: string;
|
|
126
|
+
unread?: boolean | undefined;
|
|
127
|
+
}>;
|
|
128
|
+
updateDMThread: z.ZodObject<{
|
|
129
|
+
threadId: z.ZodString;
|
|
130
|
+
title: z.ZodOptional<z.ZodString>;
|
|
131
|
+
completed: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
132
|
+
users: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
133
|
+
}, "strip", z.ZodTypeAny, {
|
|
134
|
+
threadId: string;
|
|
135
|
+
title?: string | undefined;
|
|
136
|
+
completed?: boolean | null | undefined;
|
|
137
|
+
users?: string[] | undefined;
|
|
138
|
+
}, {
|
|
139
|
+
threadId: string;
|
|
140
|
+
title?: string | undefined;
|
|
141
|
+
completed?: boolean | null | undefined;
|
|
142
|
+
users?: string[] | undefined;
|
|
143
|
+
}>;
|
|
144
|
+
getDMPosts: z.ZodObject<{
|
|
145
|
+
threadId: z.ZodString;
|
|
146
|
+
unread: z.ZodOptional<z.ZodBoolean>;
|
|
147
|
+
depth: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"all">]>>;
|
|
148
|
+
}, "strip", z.ZodTypeAny, {
|
|
149
|
+
threadId: string;
|
|
150
|
+
depth?: number | "all" | undefined;
|
|
151
|
+
unread?: boolean | undefined;
|
|
152
|
+
}, {
|
|
153
|
+
threadId: string;
|
|
154
|
+
depth?: number | "all" | undefined;
|
|
155
|
+
unread?: boolean | undefined;
|
|
156
|
+
}>;
|
|
157
|
+
createDMPost: z.ZodObject<{
|
|
158
|
+
threadId: z.ZodString;
|
|
159
|
+
body: z.ZodString;
|
|
160
|
+
}, "strip", z.ZodTypeAny, {
|
|
161
|
+
threadId: string;
|
|
162
|
+
body: string;
|
|
163
|
+
}, {
|
|
164
|
+
threadId: string;
|
|
165
|
+
body: string;
|
|
166
|
+
}>;
|
|
167
|
+
markPostRead: z.ZodObject<{
|
|
168
|
+
postId: z.ZodString;
|
|
169
|
+
}, "strip", z.ZodTypeAny, {
|
|
170
|
+
postId: string;
|
|
171
|
+
}, {
|
|
172
|
+
postId: string;
|
|
173
|
+
}>;
|
|
174
|
+
escalateToSupport: z.ZodObject<{
|
|
175
|
+
threadId: z.ZodString;
|
|
176
|
+
reason: z.ZodString;
|
|
177
|
+
}, "strip", z.ZodTypeAny, {
|
|
178
|
+
reason: string;
|
|
179
|
+
threadId: string;
|
|
180
|
+
}, {
|
|
181
|
+
reason: string;
|
|
182
|
+
threadId: string;
|
|
183
|
+
}>;
|
|
77
184
|
getWorkspace: z.ZodObject<{
|
|
78
185
|
workspaceId: z.ZodString;
|
|
79
186
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95,16 +202,16 @@ export declare const schemas: {
|
|
|
95
202
|
plan?: "pro" | "starter" | undefined;
|
|
96
203
|
purpose?: string | undefined;
|
|
97
204
|
governance?: "holacracy" | "sociocracy" | "roles_circles" | undefined;
|
|
98
|
-
apps?: ("okr" | "feedback" | "insights")[] | undefined;
|
|
99
205
|
layout?: "board" | "list" | undefined;
|
|
206
|
+
apps?: ("okr" | "feedback" | "insights")[] | undefined;
|
|
100
207
|
}, {
|
|
101
208
|
title: string;
|
|
102
209
|
type?: "personal" | "collaborative" | undefined;
|
|
103
210
|
plan?: "pro" | "starter" | undefined;
|
|
104
211
|
purpose?: string | undefined;
|
|
105
212
|
governance?: "holacracy" | "sociocracy" | "roles_circles" | undefined;
|
|
106
|
-
apps?: unknown;
|
|
107
213
|
layout?: "board" | "list" | undefined;
|
|
214
|
+
apps?: unknown;
|
|
108
215
|
}>;
|
|
109
216
|
search: z.ZodObject<{
|
|
110
217
|
workspaceId: z.ZodString;
|
|
@@ -452,12 +559,15 @@ export declare const schemas: {
|
|
|
452
559
|
getComments: z.ZodObject<{
|
|
453
560
|
nestId: z.ZodString;
|
|
454
561
|
depth: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodLiteral<"all">]>>;
|
|
562
|
+
unread: z.ZodOptional<z.ZodBoolean>;
|
|
455
563
|
}, "strip", z.ZodTypeAny, {
|
|
456
564
|
nestId: string;
|
|
457
565
|
depth?: number | "all" | undefined;
|
|
566
|
+
unread?: boolean | undefined;
|
|
458
567
|
}, {
|
|
459
568
|
nestId: string;
|
|
460
569
|
depth?: number | "all" | undefined;
|
|
570
|
+
unread?: boolean | undefined;
|
|
461
571
|
}>;
|
|
462
572
|
getCircle: z.ZodObject<{
|
|
463
573
|
workspaceId: z.ZodString;
|
|
@@ -1369,10 +1479,18 @@ export declare const toolDefinitions: ({
|
|
|
1369
1479
|
commentId?: undefined;
|
|
1370
1480
|
circleId?: undefined;
|
|
1371
1481
|
userId?: undefined;
|
|
1482
|
+
withUser?: undefined;
|
|
1483
|
+
unread?: undefined;
|
|
1484
|
+
includeCompleted?: undefined;
|
|
1485
|
+
user?: undefined;
|
|
1486
|
+
key?: undefined;
|
|
1487
|
+
threadId?: undefined;
|
|
1488
|
+
depth?: undefined;
|
|
1489
|
+
postId?: undefined;
|
|
1490
|
+
reason?: undefined;
|
|
1372
1491
|
includeSubCircles?: undefined;
|
|
1373
1492
|
endDate?: undefined;
|
|
1374
1493
|
metricId?: undefined;
|
|
1375
|
-
depth?: undefined;
|
|
1376
1494
|
username?: undefined;
|
|
1377
1495
|
fullName?: undefined;
|
|
1378
1496
|
language?: undefined;
|
|
@@ -1385,7 +1503,6 @@ export declare const toolDefinitions: ({
|
|
|
1385
1503
|
relatedNestId?: undefined;
|
|
1386
1504
|
color?: undefined;
|
|
1387
1505
|
icon?: undefined;
|
|
1388
|
-
withUser?: undefined;
|
|
1389
1506
|
fullWorkspaces?: undefined;
|
|
1390
1507
|
context?: undefined;
|
|
1391
1508
|
skip?: undefined;
|
|
@@ -1468,10 +1585,18 @@ export declare const toolDefinitions: ({
|
|
|
1468
1585
|
commentId?: undefined;
|
|
1469
1586
|
circleId?: undefined;
|
|
1470
1587
|
userId?: undefined;
|
|
1588
|
+
withUser?: undefined;
|
|
1589
|
+
unread?: undefined;
|
|
1590
|
+
includeCompleted?: undefined;
|
|
1591
|
+
user?: undefined;
|
|
1592
|
+
key?: undefined;
|
|
1593
|
+
threadId?: undefined;
|
|
1594
|
+
depth?: undefined;
|
|
1595
|
+
postId?: undefined;
|
|
1596
|
+
reason?: undefined;
|
|
1471
1597
|
includeSubCircles?: undefined;
|
|
1472
1598
|
endDate?: undefined;
|
|
1473
1599
|
metricId?: undefined;
|
|
1474
|
-
depth?: undefined;
|
|
1475
1600
|
username?: undefined;
|
|
1476
1601
|
fullName?: undefined;
|
|
1477
1602
|
language?: undefined;
|
|
@@ -1484,7 +1609,6 @@ export declare const toolDefinitions: ({
|
|
|
1484
1609
|
relatedNestId?: undefined;
|
|
1485
1610
|
color?: undefined;
|
|
1486
1611
|
icon?: undefined;
|
|
1487
|
-
withUser?: undefined;
|
|
1488
1612
|
fullWorkspaces?: undefined;
|
|
1489
1613
|
context?: undefined;
|
|
1490
1614
|
skip?: undefined;
|
|
@@ -1582,10 +1706,18 @@ export declare const toolDefinitions: ({
|
|
|
1582
1706
|
commentId?: undefined;
|
|
1583
1707
|
circleId?: undefined;
|
|
1584
1708
|
userId?: undefined;
|
|
1709
|
+
withUser?: undefined;
|
|
1710
|
+
unread?: undefined;
|
|
1711
|
+
includeCompleted?: undefined;
|
|
1712
|
+
user?: undefined;
|
|
1713
|
+
key?: undefined;
|
|
1714
|
+
threadId?: undefined;
|
|
1715
|
+
depth?: undefined;
|
|
1716
|
+
postId?: undefined;
|
|
1717
|
+
reason?: undefined;
|
|
1585
1718
|
includeSubCircles?: undefined;
|
|
1586
1719
|
endDate?: undefined;
|
|
1587
1720
|
metricId?: undefined;
|
|
1588
|
-
depth?: undefined;
|
|
1589
1721
|
username?: undefined;
|
|
1590
1722
|
fullName?: undefined;
|
|
1591
1723
|
language?: undefined;
|
|
@@ -1598,7 +1730,6 @@ export declare const toolDefinitions: ({
|
|
|
1598
1730
|
relatedNestId?: undefined;
|
|
1599
1731
|
color?: undefined;
|
|
1600
1732
|
icon?: undefined;
|
|
1601
|
-
withUser?: undefined;
|
|
1602
1733
|
fullWorkspaces?: undefined;
|
|
1603
1734
|
context?: undefined;
|
|
1604
1735
|
skip?: undefined;
|
|
@@ -1687,10 +1818,18 @@ export declare const toolDefinitions: ({
|
|
|
1687
1818
|
commentId?: undefined;
|
|
1688
1819
|
circleId?: undefined;
|
|
1689
1820
|
userId?: undefined;
|
|
1821
|
+
withUser?: undefined;
|
|
1822
|
+
unread?: undefined;
|
|
1823
|
+
includeCompleted?: undefined;
|
|
1824
|
+
user?: undefined;
|
|
1825
|
+
key?: undefined;
|
|
1826
|
+
threadId?: undefined;
|
|
1827
|
+
depth?: undefined;
|
|
1828
|
+
postId?: undefined;
|
|
1829
|
+
reason?: undefined;
|
|
1690
1830
|
includeSubCircles?: undefined;
|
|
1691
1831
|
endDate?: undefined;
|
|
1692
1832
|
metricId?: undefined;
|
|
1693
|
-
depth?: undefined;
|
|
1694
1833
|
username?: undefined;
|
|
1695
1834
|
fullName?: undefined;
|
|
1696
1835
|
language?: undefined;
|
|
@@ -1703,7 +1842,6 @@ export declare const toolDefinitions: ({
|
|
|
1703
1842
|
relatedNestId?: undefined;
|
|
1704
1843
|
color?: undefined;
|
|
1705
1844
|
icon?: undefined;
|
|
1706
|
-
withUser?: undefined;
|
|
1707
1845
|
fullWorkspaces?: undefined;
|
|
1708
1846
|
context?: undefined;
|
|
1709
1847
|
skip?: undefined;
|
|
@@ -1815,10 +1953,18 @@ export declare const toolDefinitions: ({
|
|
|
1815
1953
|
commentId?: undefined;
|
|
1816
1954
|
circleId?: undefined;
|
|
1817
1955
|
userId?: undefined;
|
|
1956
|
+
withUser?: undefined;
|
|
1957
|
+
unread?: undefined;
|
|
1958
|
+
includeCompleted?: undefined;
|
|
1959
|
+
user?: undefined;
|
|
1960
|
+
key?: undefined;
|
|
1961
|
+
threadId?: undefined;
|
|
1962
|
+
depth?: undefined;
|
|
1963
|
+
postId?: undefined;
|
|
1964
|
+
reason?: undefined;
|
|
1818
1965
|
includeSubCircles?: undefined;
|
|
1819
1966
|
endDate?: undefined;
|
|
1820
1967
|
metricId?: undefined;
|
|
1821
|
-
depth?: undefined;
|
|
1822
1968
|
username?: undefined;
|
|
1823
1969
|
fullName?: undefined;
|
|
1824
1970
|
language?: undefined;
|
|
@@ -1831,7 +1977,6 @@ export declare const toolDefinitions: ({
|
|
|
1831
1977
|
relatedNestId?: undefined;
|
|
1832
1978
|
color?: undefined;
|
|
1833
1979
|
icon?: undefined;
|
|
1834
|
-
withUser?: undefined;
|
|
1835
1980
|
fullWorkspaces?: undefined;
|
|
1836
1981
|
context?: undefined;
|
|
1837
1982
|
skip?: undefined;
|
|
@@ -1935,10 +2080,18 @@ export declare const toolDefinitions: ({
|
|
|
1935
2080
|
commentId?: undefined;
|
|
1936
2081
|
circleId?: undefined;
|
|
1937
2082
|
userId?: undefined;
|
|
2083
|
+
withUser?: undefined;
|
|
2084
|
+
unread?: undefined;
|
|
2085
|
+
includeCompleted?: undefined;
|
|
2086
|
+
user?: undefined;
|
|
2087
|
+
key?: undefined;
|
|
2088
|
+
threadId?: undefined;
|
|
2089
|
+
depth?: undefined;
|
|
2090
|
+
postId?: undefined;
|
|
2091
|
+
reason?: undefined;
|
|
1938
2092
|
includeSubCircles?: undefined;
|
|
1939
2093
|
endDate?: undefined;
|
|
1940
2094
|
metricId?: undefined;
|
|
1941
|
-
depth?: undefined;
|
|
1942
2095
|
username?: undefined;
|
|
1943
2096
|
fullName?: undefined;
|
|
1944
2097
|
language?: undefined;
|
|
@@ -1951,7 +2104,6 @@ export declare const toolDefinitions: ({
|
|
|
1951
2104
|
relatedNestId?: undefined;
|
|
1952
2105
|
color?: undefined;
|
|
1953
2106
|
icon?: undefined;
|
|
1954
|
-
withUser?: undefined;
|
|
1955
2107
|
fullWorkspaces?: undefined;
|
|
1956
2108
|
context?: undefined;
|
|
1957
2109
|
skip?: undefined;
|
|
@@ -2058,10 +2210,18 @@ export declare const toolDefinitions: ({
|
|
|
2058
2210
|
commentId?: undefined;
|
|
2059
2211
|
circleId?: undefined;
|
|
2060
2212
|
userId?: undefined;
|
|
2213
|
+
withUser?: undefined;
|
|
2214
|
+
unread?: undefined;
|
|
2215
|
+
includeCompleted?: undefined;
|
|
2216
|
+
user?: undefined;
|
|
2217
|
+
key?: undefined;
|
|
2218
|
+
threadId?: undefined;
|
|
2219
|
+
depth?: undefined;
|
|
2220
|
+
postId?: undefined;
|
|
2221
|
+
reason?: undefined;
|
|
2061
2222
|
includeSubCircles?: undefined;
|
|
2062
2223
|
endDate?: undefined;
|
|
2063
2224
|
metricId?: undefined;
|
|
2064
|
-
depth?: undefined;
|
|
2065
2225
|
username?: undefined;
|
|
2066
2226
|
fullName?: undefined;
|
|
2067
2227
|
language?: undefined;
|
|
@@ -2074,7 +2234,6 @@ export declare const toolDefinitions: ({
|
|
|
2074
2234
|
relatedNestId?: undefined;
|
|
2075
2235
|
color?: undefined;
|
|
2076
2236
|
icon?: undefined;
|
|
2077
|
-
withUser?: undefined;
|
|
2078
2237
|
fullWorkspaces?: undefined;
|
|
2079
2238
|
context?: undefined;
|
|
2080
2239
|
skip?: undefined;
|
|
@@ -2166,10 +2325,18 @@ export declare const toolDefinitions: ({
|
|
|
2166
2325
|
commentId?: undefined;
|
|
2167
2326
|
circleId?: undefined;
|
|
2168
2327
|
userId?: undefined;
|
|
2328
|
+
withUser?: undefined;
|
|
2329
|
+
unread?: undefined;
|
|
2330
|
+
includeCompleted?: undefined;
|
|
2331
|
+
user?: undefined;
|
|
2332
|
+
key?: undefined;
|
|
2333
|
+
threadId?: undefined;
|
|
2334
|
+
depth?: undefined;
|
|
2335
|
+
postId?: undefined;
|
|
2336
|
+
reason?: undefined;
|
|
2169
2337
|
includeSubCircles?: undefined;
|
|
2170
2338
|
endDate?: undefined;
|
|
2171
2339
|
metricId?: undefined;
|
|
2172
|
-
depth?: undefined;
|
|
2173
2340
|
username?: undefined;
|
|
2174
2341
|
fullName?: undefined;
|
|
2175
2342
|
language?: undefined;
|
|
@@ -2182,7 +2349,6 @@ export declare const toolDefinitions: ({
|
|
|
2182
2349
|
relatedNestId?: undefined;
|
|
2183
2350
|
color?: undefined;
|
|
2184
2351
|
icon?: undefined;
|
|
2185
|
-
withUser?: undefined;
|
|
2186
2352
|
fullWorkspaces?: undefined;
|
|
2187
2353
|
context?: undefined;
|
|
2188
2354
|
skip?: undefined;
|
|
@@ -2286,10 +2452,18 @@ export declare const toolDefinitions: ({
|
|
|
2286
2452
|
commentId?: undefined;
|
|
2287
2453
|
circleId?: undefined;
|
|
2288
2454
|
userId?: undefined;
|
|
2455
|
+
withUser?: undefined;
|
|
2456
|
+
unread?: undefined;
|
|
2457
|
+
includeCompleted?: undefined;
|
|
2458
|
+
user?: undefined;
|
|
2459
|
+
key?: undefined;
|
|
2460
|
+
threadId?: undefined;
|
|
2461
|
+
depth?: undefined;
|
|
2462
|
+
postId?: undefined;
|
|
2463
|
+
reason?: undefined;
|
|
2289
2464
|
includeSubCircles?: undefined;
|
|
2290
2465
|
endDate?: undefined;
|
|
2291
2466
|
metricId?: undefined;
|
|
2292
|
-
depth?: undefined;
|
|
2293
2467
|
username?: undefined;
|
|
2294
2468
|
fullName?: undefined;
|
|
2295
2469
|
language?: undefined;
|
|
@@ -2302,7 +2476,6 @@ export declare const toolDefinitions: ({
|
|
|
2302
2476
|
relatedNestId?: undefined;
|
|
2303
2477
|
color?: undefined;
|
|
2304
2478
|
icon?: undefined;
|
|
2305
|
-
withUser?: undefined;
|
|
2306
2479
|
fullWorkspaces?: undefined;
|
|
2307
2480
|
context?: undefined;
|
|
2308
2481
|
skip?: undefined;
|
|
@@ -2427,10 +2600,18 @@ export declare const toolDefinitions: ({
|
|
|
2427
2600
|
commentId?: undefined;
|
|
2428
2601
|
circleId?: undefined;
|
|
2429
2602
|
userId?: undefined;
|
|
2603
|
+
withUser?: undefined;
|
|
2604
|
+
unread?: undefined;
|
|
2605
|
+
includeCompleted?: undefined;
|
|
2606
|
+
user?: undefined;
|
|
2607
|
+
key?: undefined;
|
|
2608
|
+
threadId?: undefined;
|
|
2609
|
+
depth?: undefined;
|
|
2610
|
+
postId?: undefined;
|
|
2611
|
+
reason?: undefined;
|
|
2430
2612
|
includeSubCircles?: undefined;
|
|
2431
2613
|
endDate?: undefined;
|
|
2432
2614
|
metricId?: undefined;
|
|
2433
|
-
depth?: undefined;
|
|
2434
2615
|
username?: undefined;
|
|
2435
2616
|
fullName?: undefined;
|
|
2436
2617
|
language?: undefined;
|
|
@@ -2443,7 +2624,6 @@ export declare const toolDefinitions: ({
|
|
|
2443
2624
|
relatedNestId?: undefined;
|
|
2444
2625
|
color?: undefined;
|
|
2445
2626
|
icon?: undefined;
|
|
2446
|
-
withUser?: undefined;
|
|
2447
2627
|
fullWorkspaces?: undefined;
|
|
2448
2628
|
context?: undefined;
|
|
2449
2629
|
skip?: undefined;
|
|
@@ -2580,10 +2760,18 @@ export declare const toolDefinitions: ({
|
|
|
2580
2760
|
commentId?: undefined;
|
|
2581
2761
|
circleId?: undefined;
|
|
2582
2762
|
userId?: undefined;
|
|
2763
|
+
withUser?: undefined;
|
|
2764
|
+
unread?: undefined;
|
|
2765
|
+
includeCompleted?: undefined;
|
|
2766
|
+
user?: undefined;
|
|
2767
|
+
key?: undefined;
|
|
2768
|
+
threadId?: undefined;
|
|
2769
|
+
depth?: undefined;
|
|
2770
|
+
postId?: undefined;
|
|
2771
|
+
reason?: undefined;
|
|
2583
2772
|
includeSubCircles?: undefined;
|
|
2584
2773
|
endDate?: undefined;
|
|
2585
2774
|
metricId?: undefined;
|
|
2586
|
-
depth?: undefined;
|
|
2587
2775
|
username?: undefined;
|
|
2588
2776
|
fullName?: undefined;
|
|
2589
2777
|
language?: undefined;
|
|
@@ -2596,7 +2784,6 @@ export declare const toolDefinitions: ({
|
|
|
2596
2784
|
relatedNestId?: undefined;
|
|
2597
2785
|
color?: undefined;
|
|
2598
2786
|
icon?: undefined;
|
|
2599
|
-
withUser?: undefined;
|
|
2600
2787
|
fullWorkspaces?: undefined;
|
|
2601
2788
|
context?: undefined;
|
|
2602
2789
|
skip?: undefined;
|
|
@@ -2682,10 +2869,18 @@ export declare const toolDefinitions: ({
|
|
|
2682
2869
|
commentId?: undefined;
|
|
2683
2870
|
circleId?: undefined;
|
|
2684
2871
|
userId?: undefined;
|
|
2872
|
+
withUser?: undefined;
|
|
2873
|
+
unread?: undefined;
|
|
2874
|
+
includeCompleted?: undefined;
|
|
2875
|
+
user?: undefined;
|
|
2876
|
+
key?: undefined;
|
|
2877
|
+
threadId?: undefined;
|
|
2878
|
+
depth?: undefined;
|
|
2879
|
+
postId?: undefined;
|
|
2880
|
+
reason?: undefined;
|
|
2685
2881
|
includeSubCircles?: undefined;
|
|
2686
2882
|
endDate?: undefined;
|
|
2687
2883
|
metricId?: undefined;
|
|
2688
|
-
depth?: undefined;
|
|
2689
2884
|
username?: undefined;
|
|
2690
2885
|
fullName?: undefined;
|
|
2691
2886
|
language?: undefined;
|
|
@@ -2698,7 +2893,6 @@ export declare const toolDefinitions: ({
|
|
|
2698
2893
|
relatedNestId?: undefined;
|
|
2699
2894
|
color?: undefined;
|
|
2700
2895
|
icon?: undefined;
|
|
2701
|
-
withUser?: undefined;
|
|
2702
2896
|
fullWorkspaces?: undefined;
|
|
2703
2897
|
context?: undefined;
|
|
2704
2898
|
skip?: undefined;
|
|
@@ -2793,10 +2987,18 @@ export declare const toolDefinitions: ({
|
|
|
2793
2987
|
commentId?: undefined;
|
|
2794
2988
|
circleId?: undefined;
|
|
2795
2989
|
userId?: undefined;
|
|
2990
|
+
withUser?: undefined;
|
|
2991
|
+
unread?: undefined;
|
|
2992
|
+
includeCompleted?: undefined;
|
|
2993
|
+
user?: undefined;
|
|
2994
|
+
key?: undefined;
|
|
2995
|
+
threadId?: undefined;
|
|
2996
|
+
depth?: undefined;
|
|
2997
|
+
postId?: undefined;
|
|
2998
|
+
reason?: undefined;
|
|
2796
2999
|
includeSubCircles?: undefined;
|
|
2797
3000
|
endDate?: undefined;
|
|
2798
3001
|
metricId?: undefined;
|
|
2799
|
-
depth?: undefined;
|
|
2800
3002
|
username?: undefined;
|
|
2801
3003
|
fullName?: undefined;
|
|
2802
3004
|
language?: undefined;
|
|
@@ -2809,7 +3011,6 @@ export declare const toolDefinitions: ({
|
|
|
2809
3011
|
relatedNestId?: undefined;
|
|
2810
3012
|
color?: undefined;
|
|
2811
3013
|
icon?: undefined;
|
|
2812
|
-
withUser?: undefined;
|
|
2813
3014
|
fullWorkspaces?: undefined;
|
|
2814
3015
|
context?: undefined;
|
|
2815
3016
|
skip?: undefined;
|
|
@@ -2901,13 +3102,1065 @@ export declare const toolDefinitions: ({
|
|
|
2901
3102
|
domains?: undefined;
|
|
2902
3103
|
data?: undefined;
|
|
2903
3104
|
due?: undefined;
|
|
2904
|
-
completed?: undefined;
|
|
3105
|
+
completed?: undefined;
|
|
3106
|
+
circleId?: undefined;
|
|
3107
|
+
userId?: undefined;
|
|
3108
|
+
withUser?: undefined;
|
|
3109
|
+
unread?: undefined;
|
|
3110
|
+
includeCompleted?: undefined;
|
|
3111
|
+
user?: undefined;
|
|
3112
|
+
key?: undefined;
|
|
3113
|
+
threadId?: undefined;
|
|
3114
|
+
depth?: undefined;
|
|
3115
|
+
postId?: undefined;
|
|
3116
|
+
reason?: undefined;
|
|
3117
|
+
includeSubCircles?: undefined;
|
|
3118
|
+
endDate?: undefined;
|
|
3119
|
+
metricId?: undefined;
|
|
3120
|
+
username?: undefined;
|
|
3121
|
+
fullName?: undefined;
|
|
3122
|
+
language?: undefined;
|
|
3123
|
+
labelId?: undefined;
|
|
3124
|
+
from?: undefined;
|
|
3125
|
+
to?: undefined;
|
|
3126
|
+
completedAfter?: undefined;
|
|
3127
|
+
nestIds?: undefined;
|
|
3128
|
+
position?: undefined;
|
|
3129
|
+
relatedNestId?: undefined;
|
|
3130
|
+
color?: undefined;
|
|
3131
|
+
icon?: undefined;
|
|
3132
|
+
fullWorkspaces?: undefined;
|
|
3133
|
+
context?: undefined;
|
|
3134
|
+
skip?: undefined;
|
|
3135
|
+
showRead?: undefined;
|
|
3136
|
+
group?: undefined;
|
|
3137
|
+
feeling?: undefined;
|
|
3138
|
+
needs?: undefined;
|
|
3139
|
+
tensionId?: undefined;
|
|
3140
|
+
_id?: undefined;
|
|
3141
|
+
roleId?: undefined;
|
|
3142
|
+
removeNest?: undefined;
|
|
3143
|
+
partId?: undefined;
|
|
3144
|
+
childId?: undefined;
|
|
3145
|
+
status?: undefined;
|
|
3146
|
+
relation?: undefined;
|
|
3147
|
+
direction?: undefined;
|
|
3148
|
+
targetId?: undefined;
|
|
3149
|
+
name?: undefined;
|
|
3150
|
+
config?: undefined;
|
|
3151
|
+
capabilities?: undefined;
|
|
3152
|
+
exposure?: undefined;
|
|
3153
|
+
authStrategy?: undefined;
|
|
3154
|
+
connectorId?: undefined;
|
|
3155
|
+
ownerType?: undefined;
|
|
3156
|
+
ownerId?: undefined;
|
|
3157
|
+
fileId?: undefined;
|
|
3158
|
+
contentType?: undefined;
|
|
3159
|
+
content?: undefined;
|
|
3160
|
+
dataBase64?: undefined;
|
|
3161
|
+
};
|
|
3162
|
+
required: string[];
|
|
3163
|
+
};
|
|
3164
|
+
} | {
|
|
3165
|
+
annotations: {
|
|
3166
|
+
readOnlyHint: boolean;
|
|
3167
|
+
destructiveHint: boolean;
|
|
3168
|
+
};
|
|
3169
|
+
name: string;
|
|
3170
|
+
description: string;
|
|
3171
|
+
inputSchema: {
|
|
3172
|
+
type: "object";
|
|
3173
|
+
properties: {
|
|
3174
|
+
commentId: {
|
|
3175
|
+
type: string;
|
|
3176
|
+
description: string;
|
|
3177
|
+
};
|
|
3178
|
+
topic?: undefined;
|
|
3179
|
+
search?: undefined;
|
|
3180
|
+
includeImages?: undefined;
|
|
3181
|
+
imageIndexes?: undefined;
|
|
3182
|
+
maxImages?: undefined;
|
|
3183
|
+
sort?: undefined;
|
|
3184
|
+
limit?: undefined;
|
|
3185
|
+
page?: undefined;
|
|
3186
|
+
stripDescription?: undefined;
|
|
3187
|
+
workspaceId?: undefined;
|
|
3188
|
+
title?: undefined;
|
|
3189
|
+
purpose?: undefined;
|
|
3190
|
+
type?: undefined;
|
|
3191
|
+
governance?: undefined;
|
|
3192
|
+
plan?: undefined;
|
|
3193
|
+
apps?: undefined;
|
|
3194
|
+
layout?: undefined;
|
|
3195
|
+
query?: undefined;
|
|
3196
|
+
_listTitle?: undefined;
|
|
3197
|
+
nestId?: undefined;
|
|
3198
|
+
fieldsMetaData?: undefined;
|
|
3199
|
+
hints?: undefined;
|
|
3200
|
+
provenance?: undefined;
|
|
3201
|
+
rights?: undefined;
|
|
3202
|
+
forUser?: undefined;
|
|
3203
|
+
whoCan?: undefined;
|
|
3204
|
+
parentId?: undefined;
|
|
3205
|
+
description?: undefined;
|
|
3206
|
+
labels?: undefined;
|
|
3207
|
+
fields?: undefined;
|
|
3208
|
+
users?: undefined;
|
|
3209
|
+
accountabilities?: undefined;
|
|
3210
|
+
domains?: undefined;
|
|
3211
|
+
data?: undefined;
|
|
3212
|
+
due?: undefined;
|
|
3213
|
+
completed?: undefined;
|
|
3214
|
+
body?: undefined;
|
|
3215
|
+
circleId?: undefined;
|
|
3216
|
+
userId?: undefined;
|
|
3217
|
+
withUser?: undefined;
|
|
3218
|
+
unread?: undefined;
|
|
3219
|
+
includeCompleted?: undefined;
|
|
3220
|
+
user?: undefined;
|
|
3221
|
+
key?: undefined;
|
|
3222
|
+
threadId?: undefined;
|
|
3223
|
+
depth?: undefined;
|
|
3224
|
+
postId?: undefined;
|
|
3225
|
+
reason?: undefined;
|
|
3226
|
+
includeSubCircles?: undefined;
|
|
3227
|
+
endDate?: undefined;
|
|
3228
|
+
metricId?: undefined;
|
|
3229
|
+
username?: undefined;
|
|
3230
|
+
fullName?: undefined;
|
|
3231
|
+
language?: undefined;
|
|
3232
|
+
labelId?: undefined;
|
|
3233
|
+
from?: undefined;
|
|
3234
|
+
to?: undefined;
|
|
3235
|
+
completedAfter?: undefined;
|
|
3236
|
+
nestIds?: undefined;
|
|
3237
|
+
position?: undefined;
|
|
3238
|
+
relatedNestId?: undefined;
|
|
3239
|
+
color?: undefined;
|
|
3240
|
+
icon?: undefined;
|
|
3241
|
+
fullWorkspaces?: undefined;
|
|
3242
|
+
context?: undefined;
|
|
3243
|
+
skip?: undefined;
|
|
3244
|
+
showRead?: undefined;
|
|
3245
|
+
group?: undefined;
|
|
3246
|
+
feeling?: undefined;
|
|
3247
|
+
needs?: undefined;
|
|
3248
|
+
tensionId?: undefined;
|
|
3249
|
+
_id?: undefined;
|
|
3250
|
+
roleId?: undefined;
|
|
3251
|
+
removeNest?: undefined;
|
|
3252
|
+
partId?: undefined;
|
|
3253
|
+
childId?: undefined;
|
|
3254
|
+
status?: undefined;
|
|
3255
|
+
relation?: undefined;
|
|
3256
|
+
direction?: undefined;
|
|
3257
|
+
targetId?: undefined;
|
|
3258
|
+
name?: undefined;
|
|
3259
|
+
config?: undefined;
|
|
3260
|
+
capabilities?: undefined;
|
|
3261
|
+
exposure?: undefined;
|
|
3262
|
+
authStrategy?: undefined;
|
|
3263
|
+
connectorId?: undefined;
|
|
3264
|
+
ownerType?: undefined;
|
|
3265
|
+
ownerId?: undefined;
|
|
3266
|
+
fileId?: undefined;
|
|
3267
|
+
contentType?: undefined;
|
|
3268
|
+
content?: undefined;
|
|
3269
|
+
dataBase64?: undefined;
|
|
3270
|
+
};
|
|
3271
|
+
required: string[];
|
|
3272
|
+
};
|
|
3273
|
+
} | {
|
|
3274
|
+
annotations: {
|
|
3275
|
+
readOnlyHint: boolean;
|
|
3276
|
+
destructiveHint: boolean;
|
|
3277
|
+
};
|
|
3278
|
+
name: string;
|
|
3279
|
+
description: string;
|
|
3280
|
+
inputSchema: {
|
|
3281
|
+
type: "object";
|
|
3282
|
+
properties: {
|
|
3283
|
+
workspaceId: {
|
|
3284
|
+
type: string;
|
|
3285
|
+
description: string;
|
|
3286
|
+
};
|
|
3287
|
+
sort: {
|
|
3288
|
+
type: string;
|
|
3289
|
+
description: string;
|
|
3290
|
+
};
|
|
3291
|
+
limit: {
|
|
3292
|
+
type: string;
|
|
3293
|
+
description: string;
|
|
3294
|
+
};
|
|
3295
|
+
page: {
|
|
3296
|
+
type: string;
|
|
3297
|
+
description: string;
|
|
3298
|
+
};
|
|
3299
|
+
stripDescription: {
|
|
3300
|
+
type: string;
|
|
3301
|
+
description: string;
|
|
3302
|
+
};
|
|
3303
|
+
topic?: undefined;
|
|
3304
|
+
search?: undefined;
|
|
3305
|
+
includeImages?: undefined;
|
|
3306
|
+
imageIndexes?: undefined;
|
|
3307
|
+
maxImages?: undefined;
|
|
3308
|
+
title?: undefined;
|
|
3309
|
+
purpose?: undefined;
|
|
3310
|
+
type?: undefined;
|
|
3311
|
+
governance?: undefined;
|
|
3312
|
+
plan?: undefined;
|
|
3313
|
+
apps?: undefined;
|
|
3314
|
+
layout?: undefined;
|
|
3315
|
+
query?: undefined;
|
|
3316
|
+
_listTitle?: undefined;
|
|
3317
|
+
nestId?: undefined;
|
|
3318
|
+
fieldsMetaData?: undefined;
|
|
3319
|
+
hints?: undefined;
|
|
3320
|
+
provenance?: undefined;
|
|
3321
|
+
rights?: undefined;
|
|
3322
|
+
forUser?: undefined;
|
|
3323
|
+
whoCan?: undefined;
|
|
3324
|
+
parentId?: undefined;
|
|
3325
|
+
description?: undefined;
|
|
3326
|
+
labels?: undefined;
|
|
3327
|
+
fields?: undefined;
|
|
3328
|
+
users?: undefined;
|
|
3329
|
+
accountabilities?: undefined;
|
|
3330
|
+
domains?: undefined;
|
|
3331
|
+
data?: undefined;
|
|
3332
|
+
due?: undefined;
|
|
3333
|
+
completed?: undefined;
|
|
3334
|
+
body?: undefined;
|
|
3335
|
+
commentId?: undefined;
|
|
3336
|
+
circleId?: undefined;
|
|
3337
|
+
userId?: undefined;
|
|
3338
|
+
withUser?: undefined;
|
|
3339
|
+
unread?: undefined;
|
|
3340
|
+
includeCompleted?: undefined;
|
|
3341
|
+
user?: undefined;
|
|
3342
|
+
key?: undefined;
|
|
3343
|
+
threadId?: undefined;
|
|
3344
|
+
depth?: undefined;
|
|
3345
|
+
postId?: undefined;
|
|
3346
|
+
reason?: undefined;
|
|
3347
|
+
includeSubCircles?: undefined;
|
|
3348
|
+
endDate?: undefined;
|
|
3349
|
+
metricId?: undefined;
|
|
3350
|
+
username?: undefined;
|
|
3351
|
+
fullName?: undefined;
|
|
3352
|
+
language?: undefined;
|
|
3353
|
+
labelId?: undefined;
|
|
3354
|
+
from?: undefined;
|
|
3355
|
+
to?: undefined;
|
|
3356
|
+
completedAfter?: undefined;
|
|
3357
|
+
nestIds?: undefined;
|
|
3358
|
+
position?: undefined;
|
|
3359
|
+
relatedNestId?: undefined;
|
|
3360
|
+
color?: undefined;
|
|
3361
|
+
icon?: undefined;
|
|
3362
|
+
fullWorkspaces?: undefined;
|
|
3363
|
+
context?: undefined;
|
|
3364
|
+
skip?: undefined;
|
|
3365
|
+
showRead?: undefined;
|
|
3366
|
+
group?: undefined;
|
|
3367
|
+
feeling?: undefined;
|
|
3368
|
+
needs?: undefined;
|
|
3369
|
+
tensionId?: undefined;
|
|
3370
|
+
_id?: undefined;
|
|
3371
|
+
roleId?: undefined;
|
|
3372
|
+
removeNest?: undefined;
|
|
3373
|
+
partId?: undefined;
|
|
3374
|
+
childId?: undefined;
|
|
3375
|
+
status?: undefined;
|
|
3376
|
+
relation?: undefined;
|
|
3377
|
+
direction?: undefined;
|
|
3378
|
+
targetId?: undefined;
|
|
3379
|
+
name?: undefined;
|
|
3380
|
+
config?: undefined;
|
|
3381
|
+
capabilities?: undefined;
|
|
3382
|
+
exposure?: undefined;
|
|
3383
|
+
authStrategy?: undefined;
|
|
3384
|
+
connectorId?: undefined;
|
|
3385
|
+
ownerType?: undefined;
|
|
3386
|
+
ownerId?: undefined;
|
|
3387
|
+
fileId?: undefined;
|
|
3388
|
+
contentType?: undefined;
|
|
3389
|
+
content?: undefined;
|
|
3390
|
+
dataBase64?: undefined;
|
|
3391
|
+
};
|
|
3392
|
+
required: string[];
|
|
3393
|
+
};
|
|
3394
|
+
} | {
|
|
3395
|
+
annotations: {
|
|
3396
|
+
readOnlyHint: boolean;
|
|
3397
|
+
destructiveHint: boolean;
|
|
3398
|
+
};
|
|
3399
|
+
name: string;
|
|
3400
|
+
description: string;
|
|
3401
|
+
inputSchema: {
|
|
3402
|
+
type: "object";
|
|
3403
|
+
properties: {
|
|
3404
|
+
workspaceId: {
|
|
3405
|
+
type: string;
|
|
3406
|
+
description: string;
|
|
3407
|
+
};
|
|
3408
|
+
circleId: {
|
|
3409
|
+
type: string;
|
|
3410
|
+
description: string;
|
|
3411
|
+
};
|
|
3412
|
+
sort: {
|
|
3413
|
+
type: string;
|
|
3414
|
+
description: string;
|
|
3415
|
+
};
|
|
3416
|
+
limit: {
|
|
3417
|
+
type: string;
|
|
3418
|
+
description: string;
|
|
3419
|
+
};
|
|
3420
|
+
page: {
|
|
3421
|
+
type: string;
|
|
3422
|
+
description: string;
|
|
3423
|
+
};
|
|
3424
|
+
stripDescription: {
|
|
3425
|
+
type: string;
|
|
3426
|
+
description: string;
|
|
3427
|
+
};
|
|
3428
|
+
topic?: undefined;
|
|
3429
|
+
search?: undefined;
|
|
3430
|
+
includeImages?: undefined;
|
|
3431
|
+
imageIndexes?: undefined;
|
|
3432
|
+
maxImages?: undefined;
|
|
3433
|
+
title?: undefined;
|
|
3434
|
+
purpose?: undefined;
|
|
3435
|
+
type?: undefined;
|
|
3436
|
+
governance?: undefined;
|
|
3437
|
+
plan?: undefined;
|
|
3438
|
+
apps?: undefined;
|
|
3439
|
+
layout?: undefined;
|
|
3440
|
+
query?: undefined;
|
|
3441
|
+
_listTitle?: undefined;
|
|
3442
|
+
nestId?: undefined;
|
|
3443
|
+
fieldsMetaData?: undefined;
|
|
3444
|
+
hints?: undefined;
|
|
3445
|
+
provenance?: undefined;
|
|
3446
|
+
rights?: undefined;
|
|
3447
|
+
forUser?: undefined;
|
|
3448
|
+
whoCan?: undefined;
|
|
3449
|
+
parentId?: undefined;
|
|
3450
|
+
description?: undefined;
|
|
3451
|
+
labels?: undefined;
|
|
3452
|
+
fields?: undefined;
|
|
3453
|
+
users?: undefined;
|
|
3454
|
+
accountabilities?: undefined;
|
|
3455
|
+
domains?: undefined;
|
|
3456
|
+
data?: undefined;
|
|
3457
|
+
due?: undefined;
|
|
3458
|
+
completed?: undefined;
|
|
3459
|
+
body?: undefined;
|
|
3460
|
+
commentId?: undefined;
|
|
3461
|
+
userId?: undefined;
|
|
3462
|
+
withUser?: undefined;
|
|
3463
|
+
unread?: undefined;
|
|
3464
|
+
includeCompleted?: undefined;
|
|
3465
|
+
user?: undefined;
|
|
3466
|
+
key?: undefined;
|
|
3467
|
+
threadId?: undefined;
|
|
3468
|
+
depth?: undefined;
|
|
3469
|
+
postId?: undefined;
|
|
3470
|
+
reason?: undefined;
|
|
3471
|
+
includeSubCircles?: undefined;
|
|
3472
|
+
endDate?: undefined;
|
|
3473
|
+
metricId?: undefined;
|
|
3474
|
+
username?: undefined;
|
|
3475
|
+
fullName?: undefined;
|
|
3476
|
+
language?: undefined;
|
|
3477
|
+
labelId?: undefined;
|
|
3478
|
+
from?: undefined;
|
|
3479
|
+
to?: undefined;
|
|
3480
|
+
completedAfter?: undefined;
|
|
3481
|
+
nestIds?: undefined;
|
|
3482
|
+
position?: undefined;
|
|
3483
|
+
relatedNestId?: undefined;
|
|
3484
|
+
color?: undefined;
|
|
3485
|
+
icon?: undefined;
|
|
3486
|
+
fullWorkspaces?: undefined;
|
|
3487
|
+
context?: undefined;
|
|
3488
|
+
skip?: undefined;
|
|
3489
|
+
showRead?: undefined;
|
|
3490
|
+
group?: undefined;
|
|
3491
|
+
feeling?: undefined;
|
|
3492
|
+
needs?: undefined;
|
|
3493
|
+
tensionId?: undefined;
|
|
3494
|
+
_id?: undefined;
|
|
3495
|
+
roleId?: undefined;
|
|
3496
|
+
removeNest?: undefined;
|
|
3497
|
+
partId?: undefined;
|
|
3498
|
+
childId?: undefined;
|
|
3499
|
+
status?: undefined;
|
|
3500
|
+
relation?: undefined;
|
|
3501
|
+
direction?: undefined;
|
|
3502
|
+
targetId?: undefined;
|
|
3503
|
+
name?: undefined;
|
|
3504
|
+
config?: undefined;
|
|
3505
|
+
capabilities?: undefined;
|
|
3506
|
+
exposure?: undefined;
|
|
3507
|
+
authStrategy?: undefined;
|
|
3508
|
+
connectorId?: undefined;
|
|
3509
|
+
ownerType?: undefined;
|
|
3510
|
+
ownerId?: undefined;
|
|
3511
|
+
fileId?: undefined;
|
|
3512
|
+
contentType?: undefined;
|
|
3513
|
+
content?: undefined;
|
|
3514
|
+
dataBase64?: undefined;
|
|
3515
|
+
};
|
|
3516
|
+
required: string[];
|
|
3517
|
+
};
|
|
3518
|
+
} | {
|
|
3519
|
+
annotations: {
|
|
3520
|
+
readOnlyHint: boolean;
|
|
3521
|
+
destructiveHint: boolean;
|
|
3522
|
+
};
|
|
3523
|
+
name: string;
|
|
3524
|
+
description: string;
|
|
3525
|
+
inputSchema: {
|
|
3526
|
+
type: "object";
|
|
3527
|
+
properties: {
|
|
3528
|
+
userId: {
|
|
3529
|
+
type: string;
|
|
3530
|
+
description: string;
|
|
3531
|
+
};
|
|
3532
|
+
workspaceId: {
|
|
3533
|
+
type: string;
|
|
3534
|
+
description: string;
|
|
3535
|
+
};
|
|
3536
|
+
topic?: undefined;
|
|
3537
|
+
search?: undefined;
|
|
3538
|
+
includeImages?: undefined;
|
|
3539
|
+
imageIndexes?: undefined;
|
|
3540
|
+
maxImages?: undefined;
|
|
3541
|
+
sort?: undefined;
|
|
3542
|
+
limit?: undefined;
|
|
3543
|
+
page?: undefined;
|
|
3544
|
+
stripDescription?: undefined;
|
|
3545
|
+
title?: undefined;
|
|
3546
|
+
purpose?: undefined;
|
|
3547
|
+
type?: undefined;
|
|
3548
|
+
governance?: undefined;
|
|
3549
|
+
plan?: undefined;
|
|
3550
|
+
apps?: undefined;
|
|
3551
|
+
layout?: undefined;
|
|
3552
|
+
query?: undefined;
|
|
3553
|
+
_listTitle?: undefined;
|
|
3554
|
+
nestId?: undefined;
|
|
3555
|
+
fieldsMetaData?: undefined;
|
|
3556
|
+
hints?: undefined;
|
|
3557
|
+
provenance?: undefined;
|
|
3558
|
+
rights?: undefined;
|
|
3559
|
+
forUser?: undefined;
|
|
3560
|
+
whoCan?: undefined;
|
|
3561
|
+
parentId?: undefined;
|
|
3562
|
+
description?: undefined;
|
|
3563
|
+
labels?: undefined;
|
|
3564
|
+
fields?: undefined;
|
|
3565
|
+
users?: undefined;
|
|
3566
|
+
accountabilities?: undefined;
|
|
3567
|
+
domains?: undefined;
|
|
3568
|
+
data?: undefined;
|
|
3569
|
+
due?: undefined;
|
|
3570
|
+
completed?: undefined;
|
|
3571
|
+
body?: undefined;
|
|
3572
|
+
commentId?: undefined;
|
|
3573
|
+
circleId?: undefined;
|
|
3574
|
+
withUser?: undefined;
|
|
3575
|
+
unread?: undefined;
|
|
3576
|
+
includeCompleted?: undefined;
|
|
3577
|
+
user?: undefined;
|
|
3578
|
+
key?: undefined;
|
|
3579
|
+
threadId?: undefined;
|
|
3580
|
+
depth?: undefined;
|
|
3581
|
+
postId?: undefined;
|
|
3582
|
+
reason?: undefined;
|
|
3583
|
+
includeSubCircles?: undefined;
|
|
3584
|
+
endDate?: undefined;
|
|
3585
|
+
metricId?: undefined;
|
|
3586
|
+
username?: undefined;
|
|
3587
|
+
fullName?: undefined;
|
|
3588
|
+
language?: undefined;
|
|
3589
|
+
labelId?: undefined;
|
|
3590
|
+
from?: undefined;
|
|
3591
|
+
to?: undefined;
|
|
3592
|
+
completedAfter?: undefined;
|
|
3593
|
+
nestIds?: undefined;
|
|
3594
|
+
position?: undefined;
|
|
3595
|
+
relatedNestId?: undefined;
|
|
3596
|
+
color?: undefined;
|
|
3597
|
+
icon?: undefined;
|
|
3598
|
+
fullWorkspaces?: undefined;
|
|
3599
|
+
context?: undefined;
|
|
3600
|
+
skip?: undefined;
|
|
3601
|
+
showRead?: undefined;
|
|
3602
|
+
group?: undefined;
|
|
3603
|
+
feeling?: undefined;
|
|
3604
|
+
needs?: undefined;
|
|
3605
|
+
tensionId?: undefined;
|
|
3606
|
+
_id?: undefined;
|
|
3607
|
+
roleId?: undefined;
|
|
3608
|
+
removeNest?: undefined;
|
|
3609
|
+
partId?: undefined;
|
|
3610
|
+
childId?: undefined;
|
|
3611
|
+
status?: undefined;
|
|
3612
|
+
relation?: undefined;
|
|
3613
|
+
direction?: undefined;
|
|
3614
|
+
targetId?: undefined;
|
|
3615
|
+
name?: undefined;
|
|
3616
|
+
config?: undefined;
|
|
3617
|
+
capabilities?: undefined;
|
|
3618
|
+
exposure?: undefined;
|
|
3619
|
+
authStrategy?: undefined;
|
|
3620
|
+
connectorId?: undefined;
|
|
3621
|
+
ownerType?: undefined;
|
|
3622
|
+
ownerId?: undefined;
|
|
3623
|
+
fileId?: undefined;
|
|
3624
|
+
contentType?: undefined;
|
|
3625
|
+
content?: undefined;
|
|
3626
|
+
dataBase64?: undefined;
|
|
3627
|
+
};
|
|
3628
|
+
required?: undefined;
|
|
3629
|
+
};
|
|
3630
|
+
} | {
|
|
3631
|
+
annotations: {
|
|
3632
|
+
readOnlyHint: boolean;
|
|
3633
|
+
destructiveHint: boolean;
|
|
3634
|
+
};
|
|
3635
|
+
name: string;
|
|
3636
|
+
description: string;
|
|
3637
|
+
inputSchema: {
|
|
3638
|
+
type: "object";
|
|
3639
|
+
properties: {
|
|
3640
|
+
withUser: {
|
|
3641
|
+
type: string;
|
|
3642
|
+
description: string;
|
|
3643
|
+
};
|
|
3644
|
+
unread: {
|
|
3645
|
+
type: string;
|
|
3646
|
+
description: string;
|
|
3647
|
+
};
|
|
3648
|
+
includeCompleted: {
|
|
3649
|
+
type: string;
|
|
3650
|
+
description: string;
|
|
3651
|
+
};
|
|
3652
|
+
limit: {
|
|
3653
|
+
type: string;
|
|
3654
|
+
description: string;
|
|
3655
|
+
};
|
|
3656
|
+
page: {
|
|
3657
|
+
type: string;
|
|
3658
|
+
description: string;
|
|
3659
|
+
};
|
|
3660
|
+
topic?: undefined;
|
|
3661
|
+
search?: undefined;
|
|
3662
|
+
includeImages?: undefined;
|
|
3663
|
+
imageIndexes?: undefined;
|
|
3664
|
+
maxImages?: undefined;
|
|
3665
|
+
sort?: undefined;
|
|
3666
|
+
stripDescription?: undefined;
|
|
3667
|
+
workspaceId?: undefined;
|
|
3668
|
+
title?: undefined;
|
|
3669
|
+
purpose?: undefined;
|
|
3670
|
+
type?: undefined;
|
|
3671
|
+
governance?: undefined;
|
|
3672
|
+
plan?: undefined;
|
|
3673
|
+
apps?: undefined;
|
|
3674
|
+
layout?: undefined;
|
|
3675
|
+
query?: undefined;
|
|
3676
|
+
_listTitle?: undefined;
|
|
3677
|
+
nestId?: undefined;
|
|
3678
|
+
fieldsMetaData?: undefined;
|
|
3679
|
+
hints?: undefined;
|
|
3680
|
+
provenance?: undefined;
|
|
3681
|
+
rights?: undefined;
|
|
3682
|
+
forUser?: undefined;
|
|
3683
|
+
whoCan?: undefined;
|
|
3684
|
+
parentId?: undefined;
|
|
3685
|
+
description?: undefined;
|
|
3686
|
+
labels?: undefined;
|
|
3687
|
+
fields?: undefined;
|
|
3688
|
+
users?: undefined;
|
|
3689
|
+
accountabilities?: undefined;
|
|
3690
|
+
domains?: undefined;
|
|
3691
|
+
data?: undefined;
|
|
3692
|
+
due?: undefined;
|
|
3693
|
+
completed?: undefined;
|
|
3694
|
+
body?: undefined;
|
|
3695
|
+
commentId?: undefined;
|
|
3696
|
+
circleId?: undefined;
|
|
3697
|
+
userId?: undefined;
|
|
3698
|
+
user?: undefined;
|
|
3699
|
+
key?: undefined;
|
|
3700
|
+
threadId?: undefined;
|
|
3701
|
+
depth?: undefined;
|
|
3702
|
+
postId?: undefined;
|
|
3703
|
+
reason?: undefined;
|
|
3704
|
+
includeSubCircles?: undefined;
|
|
3705
|
+
endDate?: undefined;
|
|
3706
|
+
metricId?: undefined;
|
|
3707
|
+
username?: undefined;
|
|
3708
|
+
fullName?: undefined;
|
|
3709
|
+
language?: undefined;
|
|
3710
|
+
labelId?: undefined;
|
|
3711
|
+
from?: undefined;
|
|
3712
|
+
to?: undefined;
|
|
3713
|
+
completedAfter?: undefined;
|
|
3714
|
+
nestIds?: undefined;
|
|
3715
|
+
position?: undefined;
|
|
3716
|
+
relatedNestId?: undefined;
|
|
3717
|
+
color?: undefined;
|
|
3718
|
+
icon?: undefined;
|
|
3719
|
+
fullWorkspaces?: undefined;
|
|
3720
|
+
context?: undefined;
|
|
3721
|
+
skip?: undefined;
|
|
3722
|
+
showRead?: undefined;
|
|
3723
|
+
group?: undefined;
|
|
3724
|
+
feeling?: undefined;
|
|
3725
|
+
needs?: undefined;
|
|
3726
|
+
tensionId?: undefined;
|
|
3727
|
+
_id?: undefined;
|
|
3728
|
+
roleId?: undefined;
|
|
3729
|
+
removeNest?: undefined;
|
|
3730
|
+
partId?: undefined;
|
|
3731
|
+
childId?: undefined;
|
|
3732
|
+
status?: undefined;
|
|
3733
|
+
relation?: undefined;
|
|
3734
|
+
direction?: undefined;
|
|
3735
|
+
targetId?: undefined;
|
|
3736
|
+
name?: undefined;
|
|
3737
|
+
config?: undefined;
|
|
3738
|
+
capabilities?: undefined;
|
|
3739
|
+
exposure?: undefined;
|
|
3740
|
+
authStrategy?: undefined;
|
|
3741
|
+
connectorId?: undefined;
|
|
3742
|
+
ownerType?: undefined;
|
|
3743
|
+
ownerId?: undefined;
|
|
3744
|
+
fileId?: undefined;
|
|
3745
|
+
contentType?: undefined;
|
|
3746
|
+
content?: undefined;
|
|
3747
|
+
dataBase64?: undefined;
|
|
3748
|
+
};
|
|
3749
|
+
required?: undefined;
|
|
3750
|
+
};
|
|
3751
|
+
} | {
|
|
3752
|
+
annotations: {
|
|
3753
|
+
readOnlyHint: boolean;
|
|
3754
|
+
destructiveHint: boolean;
|
|
3755
|
+
};
|
|
3756
|
+
name: string;
|
|
3757
|
+
description: string;
|
|
3758
|
+
inputSchema: {
|
|
3759
|
+
type: "object";
|
|
3760
|
+
properties: {
|
|
3761
|
+
user: {
|
|
3762
|
+
type: string;
|
|
3763
|
+
description: string;
|
|
3764
|
+
};
|
|
3765
|
+
title: {
|
|
3766
|
+
type: string;
|
|
3767
|
+
description: string;
|
|
3768
|
+
};
|
|
3769
|
+
topic?: undefined;
|
|
3770
|
+
search?: undefined;
|
|
3771
|
+
includeImages?: undefined;
|
|
3772
|
+
imageIndexes?: undefined;
|
|
3773
|
+
maxImages?: undefined;
|
|
3774
|
+
sort?: undefined;
|
|
3775
|
+
limit?: undefined;
|
|
3776
|
+
page?: undefined;
|
|
3777
|
+
stripDescription?: undefined;
|
|
3778
|
+
workspaceId?: undefined;
|
|
3779
|
+
purpose?: undefined;
|
|
3780
|
+
type?: undefined;
|
|
3781
|
+
governance?: undefined;
|
|
3782
|
+
plan?: undefined;
|
|
3783
|
+
apps?: undefined;
|
|
3784
|
+
layout?: undefined;
|
|
3785
|
+
query?: undefined;
|
|
3786
|
+
_listTitle?: undefined;
|
|
3787
|
+
nestId?: undefined;
|
|
3788
|
+
fieldsMetaData?: undefined;
|
|
3789
|
+
hints?: undefined;
|
|
3790
|
+
provenance?: undefined;
|
|
3791
|
+
rights?: undefined;
|
|
3792
|
+
forUser?: undefined;
|
|
3793
|
+
whoCan?: undefined;
|
|
3794
|
+
parentId?: undefined;
|
|
3795
|
+
description?: undefined;
|
|
3796
|
+
labels?: undefined;
|
|
3797
|
+
fields?: undefined;
|
|
3798
|
+
users?: undefined;
|
|
3799
|
+
accountabilities?: undefined;
|
|
3800
|
+
domains?: undefined;
|
|
3801
|
+
data?: undefined;
|
|
3802
|
+
due?: undefined;
|
|
3803
|
+
completed?: undefined;
|
|
3804
|
+
body?: undefined;
|
|
3805
|
+
commentId?: undefined;
|
|
3806
|
+
circleId?: undefined;
|
|
3807
|
+
userId?: undefined;
|
|
3808
|
+
withUser?: undefined;
|
|
3809
|
+
unread?: undefined;
|
|
3810
|
+
includeCompleted?: undefined;
|
|
3811
|
+
key?: undefined;
|
|
3812
|
+
threadId?: undefined;
|
|
3813
|
+
depth?: undefined;
|
|
3814
|
+
postId?: undefined;
|
|
3815
|
+
reason?: undefined;
|
|
3816
|
+
includeSubCircles?: undefined;
|
|
3817
|
+
endDate?: undefined;
|
|
3818
|
+
metricId?: undefined;
|
|
3819
|
+
username?: undefined;
|
|
3820
|
+
fullName?: undefined;
|
|
3821
|
+
language?: undefined;
|
|
3822
|
+
labelId?: undefined;
|
|
3823
|
+
from?: undefined;
|
|
3824
|
+
to?: undefined;
|
|
3825
|
+
completedAfter?: undefined;
|
|
3826
|
+
nestIds?: undefined;
|
|
3827
|
+
position?: undefined;
|
|
3828
|
+
relatedNestId?: undefined;
|
|
3829
|
+
color?: undefined;
|
|
3830
|
+
icon?: undefined;
|
|
3831
|
+
fullWorkspaces?: undefined;
|
|
3832
|
+
context?: undefined;
|
|
3833
|
+
skip?: undefined;
|
|
3834
|
+
showRead?: undefined;
|
|
3835
|
+
group?: undefined;
|
|
3836
|
+
feeling?: undefined;
|
|
3837
|
+
needs?: undefined;
|
|
3838
|
+
tensionId?: undefined;
|
|
3839
|
+
_id?: undefined;
|
|
3840
|
+
roleId?: undefined;
|
|
3841
|
+
removeNest?: undefined;
|
|
3842
|
+
partId?: undefined;
|
|
3843
|
+
childId?: undefined;
|
|
3844
|
+
status?: undefined;
|
|
3845
|
+
relation?: undefined;
|
|
3846
|
+
direction?: undefined;
|
|
3847
|
+
targetId?: undefined;
|
|
3848
|
+
name?: undefined;
|
|
3849
|
+
config?: undefined;
|
|
3850
|
+
capabilities?: undefined;
|
|
3851
|
+
exposure?: undefined;
|
|
3852
|
+
authStrategy?: undefined;
|
|
3853
|
+
connectorId?: undefined;
|
|
3854
|
+
ownerType?: undefined;
|
|
3855
|
+
ownerId?: undefined;
|
|
3856
|
+
fileId?: undefined;
|
|
3857
|
+
contentType?: undefined;
|
|
3858
|
+
content?: undefined;
|
|
3859
|
+
dataBase64?: undefined;
|
|
3860
|
+
};
|
|
3861
|
+
required: string[];
|
|
3862
|
+
};
|
|
3863
|
+
} | {
|
|
3864
|
+
annotations: {
|
|
3865
|
+
readOnlyHint: boolean;
|
|
3866
|
+
destructiveHint: boolean;
|
|
3867
|
+
};
|
|
3868
|
+
name: string;
|
|
3869
|
+
description: string;
|
|
3870
|
+
inputSchema: {
|
|
3871
|
+
type: "object";
|
|
3872
|
+
properties: {
|
|
3873
|
+
key: {
|
|
3874
|
+
type: string;
|
|
3875
|
+
description: string;
|
|
3876
|
+
};
|
|
3877
|
+
unread: {
|
|
3878
|
+
type: string;
|
|
3879
|
+
description: string;
|
|
3880
|
+
};
|
|
3881
|
+
topic?: undefined;
|
|
3882
|
+
search?: undefined;
|
|
3883
|
+
includeImages?: undefined;
|
|
3884
|
+
imageIndexes?: undefined;
|
|
3885
|
+
maxImages?: undefined;
|
|
3886
|
+
sort?: undefined;
|
|
3887
|
+
limit?: undefined;
|
|
3888
|
+
page?: undefined;
|
|
3889
|
+
stripDescription?: undefined;
|
|
3890
|
+
workspaceId?: undefined;
|
|
3891
|
+
title?: undefined;
|
|
3892
|
+
purpose?: undefined;
|
|
3893
|
+
type?: undefined;
|
|
3894
|
+
governance?: undefined;
|
|
3895
|
+
plan?: undefined;
|
|
3896
|
+
apps?: undefined;
|
|
3897
|
+
layout?: undefined;
|
|
3898
|
+
query?: undefined;
|
|
3899
|
+
_listTitle?: undefined;
|
|
3900
|
+
nestId?: undefined;
|
|
3901
|
+
fieldsMetaData?: undefined;
|
|
3902
|
+
hints?: undefined;
|
|
3903
|
+
provenance?: undefined;
|
|
3904
|
+
rights?: undefined;
|
|
3905
|
+
forUser?: undefined;
|
|
3906
|
+
whoCan?: undefined;
|
|
3907
|
+
parentId?: undefined;
|
|
3908
|
+
description?: undefined;
|
|
3909
|
+
labels?: undefined;
|
|
3910
|
+
fields?: undefined;
|
|
3911
|
+
users?: undefined;
|
|
3912
|
+
accountabilities?: undefined;
|
|
3913
|
+
domains?: undefined;
|
|
3914
|
+
data?: undefined;
|
|
3915
|
+
due?: undefined;
|
|
3916
|
+
completed?: undefined;
|
|
3917
|
+
body?: undefined;
|
|
3918
|
+
commentId?: undefined;
|
|
3919
|
+
circleId?: undefined;
|
|
3920
|
+
userId?: undefined;
|
|
3921
|
+
withUser?: undefined;
|
|
3922
|
+
includeCompleted?: undefined;
|
|
3923
|
+
user?: undefined;
|
|
3924
|
+
threadId?: undefined;
|
|
3925
|
+
depth?: undefined;
|
|
3926
|
+
postId?: undefined;
|
|
3927
|
+
reason?: undefined;
|
|
3928
|
+
includeSubCircles?: undefined;
|
|
3929
|
+
endDate?: undefined;
|
|
3930
|
+
metricId?: undefined;
|
|
3931
|
+
username?: undefined;
|
|
3932
|
+
fullName?: undefined;
|
|
3933
|
+
language?: undefined;
|
|
3934
|
+
labelId?: undefined;
|
|
3935
|
+
from?: undefined;
|
|
3936
|
+
to?: undefined;
|
|
3937
|
+
completedAfter?: undefined;
|
|
3938
|
+
nestIds?: undefined;
|
|
3939
|
+
position?: undefined;
|
|
3940
|
+
relatedNestId?: undefined;
|
|
3941
|
+
color?: undefined;
|
|
3942
|
+
icon?: undefined;
|
|
3943
|
+
fullWorkspaces?: undefined;
|
|
3944
|
+
context?: undefined;
|
|
3945
|
+
skip?: undefined;
|
|
3946
|
+
showRead?: undefined;
|
|
3947
|
+
group?: undefined;
|
|
3948
|
+
feeling?: undefined;
|
|
3949
|
+
needs?: undefined;
|
|
3950
|
+
tensionId?: undefined;
|
|
3951
|
+
_id?: undefined;
|
|
3952
|
+
roleId?: undefined;
|
|
3953
|
+
removeNest?: undefined;
|
|
3954
|
+
partId?: undefined;
|
|
3955
|
+
childId?: undefined;
|
|
3956
|
+
status?: undefined;
|
|
3957
|
+
relation?: undefined;
|
|
3958
|
+
direction?: undefined;
|
|
3959
|
+
targetId?: undefined;
|
|
3960
|
+
name?: undefined;
|
|
3961
|
+
config?: undefined;
|
|
3962
|
+
capabilities?: undefined;
|
|
3963
|
+
exposure?: undefined;
|
|
3964
|
+
authStrategy?: undefined;
|
|
3965
|
+
connectorId?: undefined;
|
|
3966
|
+
ownerType?: undefined;
|
|
3967
|
+
ownerId?: undefined;
|
|
3968
|
+
fileId?: undefined;
|
|
3969
|
+
contentType?: undefined;
|
|
3970
|
+
content?: undefined;
|
|
3971
|
+
dataBase64?: undefined;
|
|
3972
|
+
};
|
|
3973
|
+
required: string[];
|
|
3974
|
+
};
|
|
3975
|
+
} | {
|
|
3976
|
+
annotations: {
|
|
3977
|
+
readOnlyHint: boolean;
|
|
3978
|
+
destructiveHint: boolean;
|
|
3979
|
+
};
|
|
3980
|
+
name: string;
|
|
3981
|
+
description: string;
|
|
3982
|
+
inputSchema: {
|
|
3983
|
+
type: "object";
|
|
3984
|
+
properties: {
|
|
3985
|
+
threadId: {
|
|
3986
|
+
type: string;
|
|
3987
|
+
description: string;
|
|
3988
|
+
};
|
|
3989
|
+
unread: {
|
|
3990
|
+
type: string;
|
|
3991
|
+
description: string;
|
|
3992
|
+
};
|
|
3993
|
+
topic?: undefined;
|
|
3994
|
+
search?: undefined;
|
|
3995
|
+
includeImages?: undefined;
|
|
3996
|
+
imageIndexes?: undefined;
|
|
3997
|
+
maxImages?: undefined;
|
|
3998
|
+
sort?: undefined;
|
|
3999
|
+
limit?: undefined;
|
|
4000
|
+
page?: undefined;
|
|
4001
|
+
stripDescription?: undefined;
|
|
4002
|
+
workspaceId?: undefined;
|
|
4003
|
+
title?: undefined;
|
|
4004
|
+
purpose?: undefined;
|
|
4005
|
+
type?: undefined;
|
|
4006
|
+
governance?: undefined;
|
|
4007
|
+
plan?: undefined;
|
|
4008
|
+
apps?: undefined;
|
|
4009
|
+
layout?: undefined;
|
|
4010
|
+
query?: undefined;
|
|
4011
|
+
_listTitle?: undefined;
|
|
4012
|
+
nestId?: undefined;
|
|
4013
|
+
fieldsMetaData?: undefined;
|
|
4014
|
+
hints?: undefined;
|
|
4015
|
+
provenance?: undefined;
|
|
4016
|
+
rights?: undefined;
|
|
4017
|
+
forUser?: undefined;
|
|
4018
|
+
whoCan?: undefined;
|
|
4019
|
+
parentId?: undefined;
|
|
4020
|
+
description?: undefined;
|
|
4021
|
+
labels?: undefined;
|
|
4022
|
+
fields?: undefined;
|
|
4023
|
+
users?: undefined;
|
|
4024
|
+
accountabilities?: undefined;
|
|
4025
|
+
domains?: undefined;
|
|
4026
|
+
data?: undefined;
|
|
4027
|
+
due?: undefined;
|
|
4028
|
+
completed?: undefined;
|
|
4029
|
+
body?: undefined;
|
|
4030
|
+
commentId?: undefined;
|
|
4031
|
+
circleId?: undefined;
|
|
4032
|
+
userId?: undefined;
|
|
4033
|
+
withUser?: undefined;
|
|
4034
|
+
includeCompleted?: undefined;
|
|
4035
|
+
user?: undefined;
|
|
4036
|
+
key?: undefined;
|
|
4037
|
+
depth?: undefined;
|
|
4038
|
+
postId?: undefined;
|
|
4039
|
+
reason?: undefined;
|
|
4040
|
+
includeSubCircles?: undefined;
|
|
4041
|
+
endDate?: undefined;
|
|
4042
|
+
metricId?: undefined;
|
|
4043
|
+
username?: undefined;
|
|
4044
|
+
fullName?: undefined;
|
|
4045
|
+
language?: undefined;
|
|
4046
|
+
labelId?: undefined;
|
|
4047
|
+
from?: undefined;
|
|
4048
|
+
to?: undefined;
|
|
4049
|
+
completedAfter?: undefined;
|
|
4050
|
+
nestIds?: undefined;
|
|
4051
|
+
position?: undefined;
|
|
4052
|
+
relatedNestId?: undefined;
|
|
4053
|
+
color?: undefined;
|
|
4054
|
+
icon?: undefined;
|
|
4055
|
+
fullWorkspaces?: undefined;
|
|
4056
|
+
context?: undefined;
|
|
4057
|
+
skip?: undefined;
|
|
4058
|
+
showRead?: undefined;
|
|
4059
|
+
group?: undefined;
|
|
4060
|
+
feeling?: undefined;
|
|
4061
|
+
needs?: undefined;
|
|
4062
|
+
tensionId?: undefined;
|
|
4063
|
+
_id?: undefined;
|
|
4064
|
+
roleId?: undefined;
|
|
4065
|
+
removeNest?: undefined;
|
|
4066
|
+
partId?: undefined;
|
|
4067
|
+
childId?: undefined;
|
|
4068
|
+
status?: undefined;
|
|
4069
|
+
relation?: undefined;
|
|
4070
|
+
direction?: undefined;
|
|
4071
|
+
targetId?: undefined;
|
|
4072
|
+
name?: undefined;
|
|
4073
|
+
config?: undefined;
|
|
4074
|
+
capabilities?: undefined;
|
|
4075
|
+
exposure?: undefined;
|
|
4076
|
+
authStrategy?: undefined;
|
|
4077
|
+
connectorId?: undefined;
|
|
4078
|
+
ownerType?: undefined;
|
|
4079
|
+
ownerId?: undefined;
|
|
4080
|
+
fileId?: undefined;
|
|
4081
|
+
contentType?: undefined;
|
|
4082
|
+
content?: undefined;
|
|
4083
|
+
dataBase64?: undefined;
|
|
4084
|
+
};
|
|
4085
|
+
required: string[];
|
|
4086
|
+
};
|
|
4087
|
+
} | {
|
|
4088
|
+
annotations: {
|
|
4089
|
+
readOnlyHint: boolean;
|
|
4090
|
+
destructiveHint: boolean;
|
|
4091
|
+
};
|
|
4092
|
+
name: string;
|
|
4093
|
+
description: string;
|
|
4094
|
+
inputSchema: {
|
|
4095
|
+
type: "object";
|
|
4096
|
+
properties: {
|
|
4097
|
+
threadId: {
|
|
4098
|
+
type: string;
|
|
4099
|
+
description: string;
|
|
4100
|
+
};
|
|
4101
|
+
title: {
|
|
4102
|
+
type: string;
|
|
4103
|
+
description: string;
|
|
4104
|
+
};
|
|
4105
|
+
completed: {
|
|
4106
|
+
type: string[];
|
|
4107
|
+
description: string;
|
|
4108
|
+
};
|
|
4109
|
+
users: {
|
|
4110
|
+
type: string;
|
|
4111
|
+
items: {
|
|
4112
|
+
type: string;
|
|
4113
|
+
};
|
|
4114
|
+
description: string;
|
|
4115
|
+
};
|
|
4116
|
+
topic?: undefined;
|
|
4117
|
+
search?: undefined;
|
|
4118
|
+
includeImages?: undefined;
|
|
4119
|
+
imageIndexes?: undefined;
|
|
4120
|
+
maxImages?: undefined;
|
|
4121
|
+
sort?: undefined;
|
|
4122
|
+
limit?: undefined;
|
|
4123
|
+
page?: undefined;
|
|
4124
|
+
stripDescription?: undefined;
|
|
4125
|
+
workspaceId?: undefined;
|
|
4126
|
+
purpose?: undefined;
|
|
4127
|
+
type?: undefined;
|
|
4128
|
+
governance?: undefined;
|
|
4129
|
+
plan?: undefined;
|
|
4130
|
+
apps?: undefined;
|
|
4131
|
+
layout?: undefined;
|
|
4132
|
+
query?: undefined;
|
|
4133
|
+
_listTitle?: undefined;
|
|
4134
|
+
nestId?: undefined;
|
|
4135
|
+
fieldsMetaData?: undefined;
|
|
4136
|
+
hints?: undefined;
|
|
4137
|
+
provenance?: undefined;
|
|
4138
|
+
rights?: undefined;
|
|
4139
|
+
forUser?: undefined;
|
|
4140
|
+
whoCan?: undefined;
|
|
4141
|
+
parentId?: undefined;
|
|
4142
|
+
description?: undefined;
|
|
4143
|
+
labels?: undefined;
|
|
4144
|
+
fields?: undefined;
|
|
4145
|
+
accountabilities?: undefined;
|
|
4146
|
+
domains?: undefined;
|
|
4147
|
+
data?: undefined;
|
|
4148
|
+
due?: undefined;
|
|
4149
|
+
body?: undefined;
|
|
4150
|
+
commentId?: undefined;
|
|
2905
4151
|
circleId?: undefined;
|
|
2906
4152
|
userId?: undefined;
|
|
4153
|
+
withUser?: undefined;
|
|
4154
|
+
unread?: undefined;
|
|
4155
|
+
includeCompleted?: undefined;
|
|
4156
|
+
user?: undefined;
|
|
4157
|
+
key?: undefined;
|
|
4158
|
+
depth?: undefined;
|
|
4159
|
+
postId?: undefined;
|
|
4160
|
+
reason?: undefined;
|
|
2907
4161
|
includeSubCircles?: undefined;
|
|
2908
4162
|
endDate?: undefined;
|
|
2909
4163
|
metricId?: undefined;
|
|
2910
|
-
depth?: undefined;
|
|
2911
4164
|
username?: undefined;
|
|
2912
4165
|
fullName?: undefined;
|
|
2913
4166
|
language?: undefined;
|
|
@@ -2920,7 +4173,6 @@ export declare const toolDefinitions: ({
|
|
|
2920
4173
|
relatedNestId?: undefined;
|
|
2921
4174
|
color?: undefined;
|
|
2922
4175
|
icon?: undefined;
|
|
2923
|
-
withUser?: undefined;
|
|
2924
4176
|
fullWorkspaces?: undefined;
|
|
2925
4177
|
context?: undefined;
|
|
2926
4178
|
skip?: undefined;
|
|
@@ -2963,10 +4215,19 @@ export declare const toolDefinitions: ({
|
|
|
2963
4215
|
inputSchema: {
|
|
2964
4216
|
type: "object";
|
|
2965
4217
|
properties: {
|
|
2966
|
-
|
|
4218
|
+
threadId: {
|
|
2967
4219
|
type: string;
|
|
2968
4220
|
description: string;
|
|
2969
4221
|
};
|
|
4222
|
+
unread: {
|
|
4223
|
+
type: string;
|
|
4224
|
+
description: string;
|
|
4225
|
+
};
|
|
4226
|
+
depth: {
|
|
4227
|
+
type: string[];
|
|
4228
|
+
description: string;
|
|
4229
|
+
oneOf?: undefined;
|
|
4230
|
+
};
|
|
2970
4231
|
topic?: undefined;
|
|
2971
4232
|
search?: undefined;
|
|
2972
4233
|
includeImages?: undefined;
|
|
@@ -3004,12 +4265,18 @@ export declare const toolDefinitions: ({
|
|
|
3004
4265
|
due?: undefined;
|
|
3005
4266
|
completed?: undefined;
|
|
3006
4267
|
body?: undefined;
|
|
4268
|
+
commentId?: undefined;
|
|
3007
4269
|
circleId?: undefined;
|
|
3008
4270
|
userId?: undefined;
|
|
4271
|
+
withUser?: undefined;
|
|
4272
|
+
includeCompleted?: undefined;
|
|
4273
|
+
user?: undefined;
|
|
4274
|
+
key?: undefined;
|
|
4275
|
+
postId?: undefined;
|
|
4276
|
+
reason?: undefined;
|
|
3009
4277
|
includeSubCircles?: undefined;
|
|
3010
4278
|
endDate?: undefined;
|
|
3011
4279
|
metricId?: undefined;
|
|
3012
|
-
depth?: undefined;
|
|
3013
4280
|
username?: undefined;
|
|
3014
4281
|
fullName?: undefined;
|
|
3015
4282
|
language?: undefined;
|
|
@@ -3022,7 +4289,6 @@ export declare const toolDefinitions: ({
|
|
|
3022
4289
|
relatedNestId?: undefined;
|
|
3023
4290
|
color?: undefined;
|
|
3024
4291
|
icon?: undefined;
|
|
3025
|
-
withUser?: undefined;
|
|
3026
4292
|
fullWorkspaces?: undefined;
|
|
3027
4293
|
context?: undefined;
|
|
3028
4294
|
skip?: undefined;
|
|
@@ -3065,23 +4331,11 @@ export declare const toolDefinitions: ({
|
|
|
3065
4331
|
inputSchema: {
|
|
3066
4332
|
type: "object";
|
|
3067
4333
|
properties: {
|
|
3068
|
-
|
|
3069
|
-
type: string;
|
|
3070
|
-
description: string;
|
|
3071
|
-
};
|
|
3072
|
-
sort: {
|
|
3073
|
-
type: string;
|
|
3074
|
-
description: string;
|
|
3075
|
-
};
|
|
3076
|
-
limit: {
|
|
3077
|
-
type: string;
|
|
3078
|
-
description: string;
|
|
3079
|
-
};
|
|
3080
|
-
page: {
|
|
4334
|
+
threadId: {
|
|
3081
4335
|
type: string;
|
|
3082
4336
|
description: string;
|
|
3083
4337
|
};
|
|
3084
|
-
|
|
4338
|
+
body: {
|
|
3085
4339
|
type: string;
|
|
3086
4340
|
description: string;
|
|
3087
4341
|
};
|
|
@@ -3090,6 +4344,11 @@ export declare const toolDefinitions: ({
|
|
|
3090
4344
|
includeImages?: undefined;
|
|
3091
4345
|
imageIndexes?: undefined;
|
|
3092
4346
|
maxImages?: undefined;
|
|
4347
|
+
sort?: undefined;
|
|
4348
|
+
limit?: undefined;
|
|
4349
|
+
page?: undefined;
|
|
4350
|
+
stripDescription?: undefined;
|
|
4351
|
+
workspaceId?: undefined;
|
|
3093
4352
|
title?: undefined;
|
|
3094
4353
|
purpose?: undefined;
|
|
3095
4354
|
type?: undefined;
|
|
@@ -3116,14 +4375,20 @@ export declare const toolDefinitions: ({
|
|
|
3116
4375
|
data?: undefined;
|
|
3117
4376
|
due?: undefined;
|
|
3118
4377
|
completed?: undefined;
|
|
3119
|
-
body?: undefined;
|
|
3120
4378
|
commentId?: undefined;
|
|
3121
4379
|
circleId?: undefined;
|
|
3122
4380
|
userId?: undefined;
|
|
4381
|
+
withUser?: undefined;
|
|
4382
|
+
unread?: undefined;
|
|
4383
|
+
includeCompleted?: undefined;
|
|
4384
|
+
user?: undefined;
|
|
4385
|
+
key?: undefined;
|
|
4386
|
+
depth?: undefined;
|
|
4387
|
+
postId?: undefined;
|
|
4388
|
+
reason?: undefined;
|
|
3123
4389
|
includeSubCircles?: undefined;
|
|
3124
4390
|
endDate?: undefined;
|
|
3125
4391
|
metricId?: undefined;
|
|
3126
|
-
depth?: undefined;
|
|
3127
4392
|
username?: undefined;
|
|
3128
4393
|
fullName?: undefined;
|
|
3129
4394
|
language?: undefined;
|
|
@@ -3136,7 +4401,6 @@ export declare const toolDefinitions: ({
|
|
|
3136
4401
|
relatedNestId?: undefined;
|
|
3137
4402
|
color?: undefined;
|
|
3138
4403
|
icon?: undefined;
|
|
3139
|
-
withUser?: undefined;
|
|
3140
4404
|
fullWorkspaces?: undefined;
|
|
3141
4405
|
context?: undefined;
|
|
3142
4406
|
skip?: undefined;
|
|
@@ -3179,27 +4443,7 @@ export declare const toolDefinitions: ({
|
|
|
3179
4443
|
inputSchema: {
|
|
3180
4444
|
type: "object";
|
|
3181
4445
|
properties: {
|
|
3182
|
-
|
|
3183
|
-
type: string;
|
|
3184
|
-
description: string;
|
|
3185
|
-
};
|
|
3186
|
-
circleId: {
|
|
3187
|
-
type: string;
|
|
3188
|
-
description: string;
|
|
3189
|
-
};
|
|
3190
|
-
sort: {
|
|
3191
|
-
type: string;
|
|
3192
|
-
description: string;
|
|
3193
|
-
};
|
|
3194
|
-
limit: {
|
|
3195
|
-
type: string;
|
|
3196
|
-
description: string;
|
|
3197
|
-
};
|
|
3198
|
-
page: {
|
|
3199
|
-
type: string;
|
|
3200
|
-
description: string;
|
|
3201
|
-
};
|
|
3202
|
-
stripDescription: {
|
|
4446
|
+
postId: {
|
|
3203
4447
|
type: string;
|
|
3204
4448
|
description: string;
|
|
3205
4449
|
};
|
|
@@ -3208,6 +4452,11 @@ export declare const toolDefinitions: ({
|
|
|
3208
4452
|
includeImages?: undefined;
|
|
3209
4453
|
imageIndexes?: undefined;
|
|
3210
4454
|
maxImages?: undefined;
|
|
4455
|
+
sort?: undefined;
|
|
4456
|
+
limit?: undefined;
|
|
4457
|
+
page?: undefined;
|
|
4458
|
+
stripDescription?: undefined;
|
|
4459
|
+
workspaceId?: undefined;
|
|
3211
4460
|
title?: undefined;
|
|
3212
4461
|
purpose?: undefined;
|
|
3213
4462
|
type?: undefined;
|
|
@@ -3236,11 +4485,19 @@ export declare const toolDefinitions: ({
|
|
|
3236
4485
|
completed?: undefined;
|
|
3237
4486
|
body?: undefined;
|
|
3238
4487
|
commentId?: undefined;
|
|
4488
|
+
circleId?: undefined;
|
|
3239
4489
|
userId?: undefined;
|
|
4490
|
+
withUser?: undefined;
|
|
4491
|
+
unread?: undefined;
|
|
4492
|
+
includeCompleted?: undefined;
|
|
4493
|
+
user?: undefined;
|
|
4494
|
+
key?: undefined;
|
|
4495
|
+
threadId?: undefined;
|
|
4496
|
+
depth?: undefined;
|
|
4497
|
+
reason?: undefined;
|
|
3240
4498
|
includeSubCircles?: undefined;
|
|
3241
4499
|
endDate?: undefined;
|
|
3242
4500
|
metricId?: undefined;
|
|
3243
|
-
depth?: undefined;
|
|
3244
4501
|
username?: undefined;
|
|
3245
4502
|
fullName?: undefined;
|
|
3246
4503
|
language?: undefined;
|
|
@@ -3253,7 +4510,6 @@ export declare const toolDefinitions: ({
|
|
|
3253
4510
|
relatedNestId?: undefined;
|
|
3254
4511
|
color?: undefined;
|
|
3255
4512
|
icon?: undefined;
|
|
3256
|
-
withUser?: undefined;
|
|
3257
4513
|
fullWorkspaces?: undefined;
|
|
3258
4514
|
context?: undefined;
|
|
3259
4515
|
skip?: undefined;
|
|
@@ -3296,11 +4552,11 @@ export declare const toolDefinitions: ({
|
|
|
3296
4552
|
inputSchema: {
|
|
3297
4553
|
type: "object";
|
|
3298
4554
|
properties: {
|
|
3299
|
-
|
|
4555
|
+
threadId: {
|
|
3300
4556
|
type: string;
|
|
3301
4557
|
description: string;
|
|
3302
4558
|
};
|
|
3303
|
-
|
|
4559
|
+
reason: {
|
|
3304
4560
|
type: string;
|
|
3305
4561
|
description: string;
|
|
3306
4562
|
};
|
|
@@ -3313,6 +4569,7 @@ export declare const toolDefinitions: ({
|
|
|
3313
4569
|
limit?: undefined;
|
|
3314
4570
|
page?: undefined;
|
|
3315
4571
|
stripDescription?: undefined;
|
|
4572
|
+
workspaceId?: undefined;
|
|
3316
4573
|
title?: undefined;
|
|
3317
4574
|
purpose?: undefined;
|
|
3318
4575
|
type?: undefined;
|
|
@@ -3342,10 +4599,17 @@ export declare const toolDefinitions: ({
|
|
|
3342
4599
|
body?: undefined;
|
|
3343
4600
|
commentId?: undefined;
|
|
3344
4601
|
circleId?: undefined;
|
|
4602
|
+
userId?: undefined;
|
|
4603
|
+
withUser?: undefined;
|
|
4604
|
+
unread?: undefined;
|
|
4605
|
+
includeCompleted?: undefined;
|
|
4606
|
+
user?: undefined;
|
|
4607
|
+
key?: undefined;
|
|
4608
|
+
depth?: undefined;
|
|
4609
|
+
postId?: undefined;
|
|
3345
4610
|
includeSubCircles?: undefined;
|
|
3346
4611
|
endDate?: undefined;
|
|
3347
4612
|
metricId?: undefined;
|
|
3348
|
-
depth?: undefined;
|
|
3349
4613
|
username?: undefined;
|
|
3350
4614
|
fullName?: undefined;
|
|
3351
4615
|
language?: undefined;
|
|
@@ -3358,7 +4622,6 @@ export declare const toolDefinitions: ({
|
|
|
3358
4622
|
relatedNestId?: undefined;
|
|
3359
4623
|
color?: undefined;
|
|
3360
4624
|
icon?: undefined;
|
|
3361
|
-
withUser?: undefined;
|
|
3362
4625
|
fullWorkspaces?: undefined;
|
|
3363
4626
|
context?: undefined;
|
|
3364
4627
|
skip?: undefined;
|
|
@@ -3389,7 +4652,7 @@ export declare const toolDefinitions: ({
|
|
|
3389
4652
|
content?: undefined;
|
|
3390
4653
|
dataBase64?: undefined;
|
|
3391
4654
|
};
|
|
3392
|
-
required
|
|
4655
|
+
required: string[];
|
|
3393
4656
|
};
|
|
3394
4657
|
} | {
|
|
3395
4658
|
annotations: {
|
|
@@ -3458,8 +4721,16 @@ export declare const toolDefinitions: ({
|
|
|
3458
4721
|
body?: undefined;
|
|
3459
4722
|
commentId?: undefined;
|
|
3460
4723
|
circleId?: undefined;
|
|
3461
|
-
|
|
4724
|
+
withUser?: undefined;
|
|
4725
|
+
unread?: undefined;
|
|
4726
|
+
includeCompleted?: undefined;
|
|
4727
|
+
user?: undefined;
|
|
4728
|
+
key?: undefined;
|
|
4729
|
+
threadId?: undefined;
|
|
3462
4730
|
depth?: undefined;
|
|
4731
|
+
postId?: undefined;
|
|
4732
|
+
reason?: undefined;
|
|
4733
|
+
metricId?: undefined;
|
|
3463
4734
|
username?: undefined;
|
|
3464
4735
|
fullName?: undefined;
|
|
3465
4736
|
language?: undefined;
|
|
@@ -3472,7 +4743,6 @@ export declare const toolDefinitions: ({
|
|
|
3472
4743
|
relatedNestId?: undefined;
|
|
3473
4744
|
color?: undefined;
|
|
3474
4745
|
icon?: undefined;
|
|
3475
|
-
withUser?: undefined;
|
|
3476
4746
|
fullWorkspaces?: undefined;
|
|
3477
4747
|
context?: undefined;
|
|
3478
4748
|
skip?: undefined;
|
|
@@ -3562,9 +4832,17 @@ export declare const toolDefinitions: ({
|
|
|
3562
4832
|
commentId?: undefined;
|
|
3563
4833
|
circleId?: undefined;
|
|
3564
4834
|
userId?: undefined;
|
|
4835
|
+
withUser?: undefined;
|
|
4836
|
+
unread?: undefined;
|
|
4837
|
+
includeCompleted?: undefined;
|
|
4838
|
+
user?: undefined;
|
|
4839
|
+
key?: undefined;
|
|
4840
|
+
threadId?: undefined;
|
|
4841
|
+
depth?: undefined;
|
|
4842
|
+
postId?: undefined;
|
|
4843
|
+
reason?: undefined;
|
|
3565
4844
|
includeSubCircles?: undefined;
|
|
3566
4845
|
endDate?: undefined;
|
|
3567
|
-
depth?: undefined;
|
|
3568
4846
|
username?: undefined;
|
|
3569
4847
|
fullName?: undefined;
|
|
3570
4848
|
language?: undefined;
|
|
@@ -3577,7 +4855,6 @@ export declare const toolDefinitions: ({
|
|
|
3577
4855
|
relatedNestId?: undefined;
|
|
3578
4856
|
color?: undefined;
|
|
3579
4857
|
icon?: undefined;
|
|
3580
|
-
withUser?: undefined;
|
|
3581
4858
|
fullWorkspaces?: undefined;
|
|
3582
4859
|
context?: undefined;
|
|
3583
4860
|
skip?: undefined;
|
|
@@ -3672,10 +4949,18 @@ export declare const toolDefinitions: ({
|
|
|
3672
4949
|
commentId?: undefined;
|
|
3673
4950
|
circleId?: undefined;
|
|
3674
4951
|
userId?: undefined;
|
|
4952
|
+
withUser?: undefined;
|
|
4953
|
+
unread?: undefined;
|
|
4954
|
+
includeCompleted?: undefined;
|
|
4955
|
+
user?: undefined;
|
|
4956
|
+
key?: undefined;
|
|
4957
|
+
threadId?: undefined;
|
|
4958
|
+
depth?: undefined;
|
|
4959
|
+
postId?: undefined;
|
|
4960
|
+
reason?: undefined;
|
|
3675
4961
|
includeSubCircles?: undefined;
|
|
3676
4962
|
endDate?: undefined;
|
|
3677
4963
|
metricId?: undefined;
|
|
3678
|
-
depth?: undefined;
|
|
3679
4964
|
username?: undefined;
|
|
3680
4965
|
fullName?: undefined;
|
|
3681
4966
|
language?: undefined;
|
|
@@ -3688,7 +4973,6 @@ export declare const toolDefinitions: ({
|
|
|
3688
4973
|
relatedNestId?: undefined;
|
|
3689
4974
|
color?: undefined;
|
|
3690
4975
|
icon?: undefined;
|
|
3691
|
-
withUser?: undefined;
|
|
3692
4976
|
fullWorkspaces?: undefined;
|
|
3693
4977
|
context?: undefined;
|
|
3694
4978
|
skip?: undefined;
|
|
@@ -3789,10 +5073,18 @@ export declare const toolDefinitions: ({
|
|
|
3789
5073
|
commentId?: undefined;
|
|
3790
5074
|
circleId?: undefined;
|
|
3791
5075
|
userId?: undefined;
|
|
5076
|
+
withUser?: undefined;
|
|
5077
|
+
unread?: undefined;
|
|
5078
|
+
includeCompleted?: undefined;
|
|
5079
|
+
user?: undefined;
|
|
5080
|
+
key?: undefined;
|
|
5081
|
+
threadId?: undefined;
|
|
5082
|
+
depth?: undefined;
|
|
5083
|
+
postId?: undefined;
|
|
5084
|
+
reason?: undefined;
|
|
3792
5085
|
includeSubCircles?: undefined;
|
|
3793
5086
|
endDate?: undefined;
|
|
3794
5087
|
metricId?: undefined;
|
|
3795
|
-
depth?: undefined;
|
|
3796
5088
|
username?: undefined;
|
|
3797
5089
|
fullName?: undefined;
|
|
3798
5090
|
language?: undefined;
|
|
@@ -3805,7 +5097,6 @@ export declare const toolDefinitions: ({
|
|
|
3805
5097
|
relatedNestId?: undefined;
|
|
3806
5098
|
color?: undefined;
|
|
3807
5099
|
icon?: undefined;
|
|
3808
|
-
withUser?: undefined;
|
|
3809
5100
|
fullWorkspaces?: undefined;
|
|
3810
5101
|
context?: undefined;
|
|
3811
5102
|
skip?: undefined;
|
|
@@ -3866,6 +5157,7 @@ export declare const toolDefinitions: ({
|
|
|
3866
5157
|
enum: string[];
|
|
3867
5158
|
})[];
|
|
3868
5159
|
description: string;
|
|
5160
|
+
type?: undefined;
|
|
3869
5161
|
};
|
|
3870
5162
|
topic?: undefined;
|
|
3871
5163
|
search?: undefined;
|
|
@@ -3906,6 +5198,14 @@ export declare const toolDefinitions: ({
|
|
|
3906
5198
|
commentId?: undefined;
|
|
3907
5199
|
circleId?: undefined;
|
|
3908
5200
|
userId?: undefined;
|
|
5201
|
+
withUser?: undefined;
|
|
5202
|
+
unread?: undefined;
|
|
5203
|
+
includeCompleted?: undefined;
|
|
5204
|
+
user?: undefined;
|
|
5205
|
+
key?: undefined;
|
|
5206
|
+
threadId?: undefined;
|
|
5207
|
+
postId?: undefined;
|
|
5208
|
+
reason?: undefined;
|
|
3909
5209
|
includeSubCircles?: undefined;
|
|
3910
5210
|
endDate?: undefined;
|
|
3911
5211
|
metricId?: undefined;
|
|
@@ -3921,7 +5221,6 @@ export declare const toolDefinitions: ({
|
|
|
3921
5221
|
relatedNestId?: undefined;
|
|
3922
5222
|
color?: undefined;
|
|
3923
5223
|
icon?: undefined;
|
|
3924
|
-
withUser?: undefined;
|
|
3925
5224
|
fullWorkspaces?: undefined;
|
|
3926
5225
|
context?: undefined;
|
|
3927
5226
|
skip?: undefined;
|
|
@@ -4013,10 +5312,18 @@ export declare const toolDefinitions: ({
|
|
|
4013
5312
|
body?: undefined;
|
|
4014
5313
|
commentId?: undefined;
|
|
4015
5314
|
userId?: undefined;
|
|
5315
|
+
withUser?: undefined;
|
|
5316
|
+
unread?: undefined;
|
|
5317
|
+
includeCompleted?: undefined;
|
|
5318
|
+
user?: undefined;
|
|
5319
|
+
key?: undefined;
|
|
5320
|
+
threadId?: undefined;
|
|
5321
|
+
depth?: undefined;
|
|
5322
|
+
postId?: undefined;
|
|
5323
|
+
reason?: undefined;
|
|
4016
5324
|
includeSubCircles?: undefined;
|
|
4017
5325
|
endDate?: undefined;
|
|
4018
5326
|
metricId?: undefined;
|
|
4019
|
-
depth?: undefined;
|
|
4020
5327
|
username?: undefined;
|
|
4021
5328
|
fullName?: undefined;
|
|
4022
5329
|
language?: undefined;
|
|
@@ -4029,7 +5336,6 @@ export declare const toolDefinitions: ({
|
|
|
4029
5336
|
relatedNestId?: undefined;
|
|
4030
5337
|
color?: undefined;
|
|
4031
5338
|
icon?: undefined;
|
|
4032
|
-
withUser?: undefined;
|
|
4033
5339
|
fullWorkspaces?: undefined;
|
|
4034
5340
|
context?: undefined;
|
|
4035
5341
|
skip?: undefined;
|
|
@@ -4118,10 +5424,18 @@ export declare const toolDefinitions: ({
|
|
|
4118
5424
|
body?: undefined;
|
|
4119
5425
|
commentId?: undefined;
|
|
4120
5426
|
circleId?: undefined;
|
|
5427
|
+
withUser?: undefined;
|
|
5428
|
+
unread?: undefined;
|
|
5429
|
+
includeCompleted?: undefined;
|
|
5430
|
+
user?: undefined;
|
|
5431
|
+
key?: undefined;
|
|
5432
|
+
threadId?: undefined;
|
|
5433
|
+
depth?: undefined;
|
|
5434
|
+
postId?: undefined;
|
|
5435
|
+
reason?: undefined;
|
|
4121
5436
|
includeSubCircles?: undefined;
|
|
4122
5437
|
endDate?: undefined;
|
|
4123
5438
|
metricId?: undefined;
|
|
4124
|
-
depth?: undefined;
|
|
4125
5439
|
username?: undefined;
|
|
4126
5440
|
fullName?: undefined;
|
|
4127
5441
|
language?: undefined;
|
|
@@ -4134,7 +5448,6 @@ export declare const toolDefinitions: ({
|
|
|
4134
5448
|
relatedNestId?: undefined;
|
|
4135
5449
|
color?: undefined;
|
|
4136
5450
|
icon?: undefined;
|
|
4137
|
-
withUser?: undefined;
|
|
4138
5451
|
fullWorkspaces?: undefined;
|
|
4139
5452
|
context?: undefined;
|
|
4140
5453
|
skip?: undefined;
|
|
@@ -4232,10 +5545,18 @@ export declare const toolDefinitions: ({
|
|
|
4232
5545
|
commentId?: undefined;
|
|
4233
5546
|
circleId?: undefined;
|
|
4234
5547
|
userId?: undefined;
|
|
5548
|
+
withUser?: undefined;
|
|
5549
|
+
unread?: undefined;
|
|
5550
|
+
includeCompleted?: undefined;
|
|
5551
|
+
user?: undefined;
|
|
5552
|
+
key?: undefined;
|
|
5553
|
+
threadId?: undefined;
|
|
5554
|
+
depth?: undefined;
|
|
5555
|
+
postId?: undefined;
|
|
5556
|
+
reason?: undefined;
|
|
4235
5557
|
includeSubCircles?: undefined;
|
|
4236
5558
|
endDate?: undefined;
|
|
4237
5559
|
metricId?: undefined;
|
|
4238
|
-
depth?: undefined;
|
|
4239
5560
|
labelId?: undefined;
|
|
4240
5561
|
from?: undefined;
|
|
4241
5562
|
to?: undefined;
|
|
@@ -4245,7 +5566,6 @@ export declare const toolDefinitions: ({
|
|
|
4245
5566
|
relatedNestId?: undefined;
|
|
4246
5567
|
color?: undefined;
|
|
4247
5568
|
icon?: undefined;
|
|
4248
|
-
withUser?: undefined;
|
|
4249
5569
|
fullWorkspaces?: undefined;
|
|
4250
5570
|
context?: undefined;
|
|
4251
5571
|
skip?: undefined;
|
|
@@ -4335,10 +5655,18 @@ export declare const toolDefinitions: ({
|
|
|
4335
5655
|
commentId?: undefined;
|
|
4336
5656
|
circleId?: undefined;
|
|
4337
5657
|
userId?: undefined;
|
|
5658
|
+
withUser?: undefined;
|
|
5659
|
+
unread?: undefined;
|
|
5660
|
+
includeCompleted?: undefined;
|
|
5661
|
+
user?: undefined;
|
|
5662
|
+
key?: undefined;
|
|
5663
|
+
threadId?: undefined;
|
|
5664
|
+
depth?: undefined;
|
|
5665
|
+
postId?: undefined;
|
|
5666
|
+
reason?: undefined;
|
|
4338
5667
|
includeSubCircles?: undefined;
|
|
4339
5668
|
endDate?: undefined;
|
|
4340
5669
|
metricId?: undefined;
|
|
4341
|
-
depth?: undefined;
|
|
4342
5670
|
username?: undefined;
|
|
4343
5671
|
fullName?: undefined;
|
|
4344
5672
|
language?: undefined;
|
|
@@ -4350,7 +5678,6 @@ export declare const toolDefinitions: ({
|
|
|
4350
5678
|
relatedNestId?: undefined;
|
|
4351
5679
|
color?: undefined;
|
|
4352
5680
|
icon?: undefined;
|
|
4353
|
-
withUser?: undefined;
|
|
4354
5681
|
fullWorkspaces?: undefined;
|
|
4355
5682
|
context?: undefined;
|
|
4356
5683
|
skip?: undefined;
|
|
@@ -4451,9 +5778,17 @@ export declare const toolDefinitions: ({
|
|
|
4451
5778
|
commentId?: undefined;
|
|
4452
5779
|
circleId?: undefined;
|
|
4453
5780
|
userId?: undefined;
|
|
5781
|
+
withUser?: undefined;
|
|
5782
|
+
unread?: undefined;
|
|
5783
|
+
includeCompleted?: undefined;
|
|
5784
|
+
user?: undefined;
|
|
5785
|
+
key?: undefined;
|
|
5786
|
+
threadId?: undefined;
|
|
5787
|
+
depth?: undefined;
|
|
5788
|
+
postId?: undefined;
|
|
5789
|
+
reason?: undefined;
|
|
4454
5790
|
includeSubCircles?: undefined;
|
|
4455
5791
|
endDate?: undefined;
|
|
4456
|
-
depth?: undefined;
|
|
4457
5792
|
username?: undefined;
|
|
4458
5793
|
fullName?: undefined;
|
|
4459
5794
|
language?: undefined;
|
|
@@ -4464,7 +5799,6 @@ export declare const toolDefinitions: ({
|
|
|
4464
5799
|
relatedNestId?: undefined;
|
|
4465
5800
|
color?: undefined;
|
|
4466
5801
|
icon?: undefined;
|
|
4467
|
-
withUser?: undefined;
|
|
4468
5802
|
fullWorkspaces?: undefined;
|
|
4469
5803
|
context?: undefined;
|
|
4470
5804
|
skip?: undefined;
|
|
@@ -4550,10 +5884,18 @@ export declare const toolDefinitions: ({
|
|
|
4550
5884
|
commentId?: undefined;
|
|
4551
5885
|
circleId?: undefined;
|
|
4552
5886
|
userId?: undefined;
|
|
5887
|
+
withUser?: undefined;
|
|
5888
|
+
unread?: undefined;
|
|
5889
|
+
includeCompleted?: undefined;
|
|
5890
|
+
user?: undefined;
|
|
5891
|
+
key?: undefined;
|
|
5892
|
+
threadId?: undefined;
|
|
5893
|
+
depth?: undefined;
|
|
5894
|
+
postId?: undefined;
|
|
5895
|
+
reason?: undefined;
|
|
4553
5896
|
includeSubCircles?: undefined;
|
|
4554
5897
|
endDate?: undefined;
|
|
4555
5898
|
metricId?: undefined;
|
|
4556
|
-
depth?: undefined;
|
|
4557
5899
|
username?: undefined;
|
|
4558
5900
|
fullName?: undefined;
|
|
4559
5901
|
language?: undefined;
|
|
@@ -4566,7 +5908,6 @@ export declare const toolDefinitions: ({
|
|
|
4566
5908
|
relatedNestId?: undefined;
|
|
4567
5909
|
color?: undefined;
|
|
4568
5910
|
icon?: undefined;
|
|
4569
|
-
withUser?: undefined;
|
|
4570
5911
|
fullWorkspaces?: undefined;
|
|
4571
5912
|
context?: undefined;
|
|
4572
5913
|
skip?: undefined;
|
|
@@ -4656,10 +5997,18 @@ export declare const toolDefinitions: ({
|
|
|
4656
5997
|
commentId?: undefined;
|
|
4657
5998
|
circleId?: undefined;
|
|
4658
5999
|
userId?: undefined;
|
|
6000
|
+
withUser?: undefined;
|
|
6001
|
+
unread?: undefined;
|
|
6002
|
+
includeCompleted?: undefined;
|
|
6003
|
+
user?: undefined;
|
|
6004
|
+
key?: undefined;
|
|
6005
|
+
threadId?: undefined;
|
|
6006
|
+
depth?: undefined;
|
|
6007
|
+
postId?: undefined;
|
|
6008
|
+
reason?: undefined;
|
|
4659
6009
|
includeSubCircles?: undefined;
|
|
4660
6010
|
endDate?: undefined;
|
|
4661
6011
|
metricId?: undefined;
|
|
4662
|
-
depth?: undefined;
|
|
4663
6012
|
username?: undefined;
|
|
4664
6013
|
fullName?: undefined;
|
|
4665
6014
|
language?: undefined;
|
|
@@ -4671,7 +6020,6 @@ export declare const toolDefinitions: ({
|
|
|
4671
6020
|
relatedNestId?: undefined;
|
|
4672
6021
|
color?: undefined;
|
|
4673
6022
|
icon?: undefined;
|
|
4674
|
-
withUser?: undefined;
|
|
4675
6023
|
fullWorkspaces?: undefined;
|
|
4676
6024
|
context?: undefined;
|
|
4677
6025
|
skip?: undefined;
|
|
@@ -4765,10 +6113,18 @@ export declare const toolDefinitions: ({
|
|
|
4765
6113
|
commentId?: undefined;
|
|
4766
6114
|
circleId?: undefined;
|
|
4767
6115
|
userId?: undefined;
|
|
6116
|
+
withUser?: undefined;
|
|
6117
|
+
unread?: undefined;
|
|
6118
|
+
includeCompleted?: undefined;
|
|
6119
|
+
user?: undefined;
|
|
6120
|
+
key?: undefined;
|
|
6121
|
+
threadId?: undefined;
|
|
6122
|
+
depth?: undefined;
|
|
6123
|
+
postId?: undefined;
|
|
6124
|
+
reason?: undefined;
|
|
4768
6125
|
includeSubCircles?: undefined;
|
|
4769
6126
|
endDate?: undefined;
|
|
4770
6127
|
metricId?: undefined;
|
|
4771
|
-
depth?: undefined;
|
|
4772
6128
|
username?: undefined;
|
|
4773
6129
|
fullName?: undefined;
|
|
4774
6130
|
language?: undefined;
|
|
@@ -4781,7 +6137,6 @@ export declare const toolDefinitions: ({
|
|
|
4781
6137
|
relatedNestId?: undefined;
|
|
4782
6138
|
color?: undefined;
|
|
4783
6139
|
icon?: undefined;
|
|
4784
|
-
withUser?: undefined;
|
|
4785
6140
|
fullWorkspaces?: undefined;
|
|
4786
6141
|
context?: undefined;
|
|
4787
6142
|
skip?: undefined;
|
|
@@ -4870,10 +6225,18 @@ export declare const toolDefinitions: ({
|
|
|
4870
6225
|
commentId?: undefined;
|
|
4871
6226
|
circleId?: undefined;
|
|
4872
6227
|
userId?: undefined;
|
|
6228
|
+
withUser?: undefined;
|
|
6229
|
+
unread?: undefined;
|
|
6230
|
+
includeCompleted?: undefined;
|
|
6231
|
+
user?: undefined;
|
|
6232
|
+
key?: undefined;
|
|
6233
|
+
threadId?: undefined;
|
|
6234
|
+
depth?: undefined;
|
|
6235
|
+
postId?: undefined;
|
|
6236
|
+
reason?: undefined;
|
|
4873
6237
|
includeSubCircles?: undefined;
|
|
4874
6238
|
endDate?: undefined;
|
|
4875
6239
|
metricId?: undefined;
|
|
4876
|
-
depth?: undefined;
|
|
4877
6240
|
username?: undefined;
|
|
4878
6241
|
fullName?: undefined;
|
|
4879
6242
|
language?: undefined;
|
|
@@ -4886,7 +6249,6 @@ export declare const toolDefinitions: ({
|
|
|
4886
6249
|
relatedNestId?: undefined;
|
|
4887
6250
|
color?: undefined;
|
|
4888
6251
|
icon?: undefined;
|
|
4889
|
-
withUser?: undefined;
|
|
4890
6252
|
fullWorkspaces?: undefined;
|
|
4891
6253
|
context?: undefined;
|
|
4892
6254
|
skip?: undefined;
|
|
@@ -4984,10 +6346,18 @@ export declare const toolDefinitions: ({
|
|
|
4984
6346
|
commentId?: undefined;
|
|
4985
6347
|
circleId?: undefined;
|
|
4986
6348
|
userId?: undefined;
|
|
6349
|
+
withUser?: undefined;
|
|
6350
|
+
unread?: undefined;
|
|
6351
|
+
includeCompleted?: undefined;
|
|
6352
|
+
user?: undefined;
|
|
6353
|
+
key?: undefined;
|
|
6354
|
+
threadId?: undefined;
|
|
6355
|
+
depth?: undefined;
|
|
6356
|
+
postId?: undefined;
|
|
6357
|
+
reason?: undefined;
|
|
4987
6358
|
includeSubCircles?: undefined;
|
|
4988
6359
|
endDate?: undefined;
|
|
4989
6360
|
metricId?: undefined;
|
|
4990
|
-
depth?: undefined;
|
|
4991
6361
|
username?: undefined;
|
|
4992
6362
|
fullName?: undefined;
|
|
4993
6363
|
language?: undefined;
|
|
@@ -5000,7 +6370,6 @@ export declare const toolDefinitions: ({
|
|
|
5000
6370
|
relatedNestId?: undefined;
|
|
5001
6371
|
color?: undefined;
|
|
5002
6372
|
icon?: undefined;
|
|
5003
|
-
withUser?: undefined;
|
|
5004
6373
|
fullWorkspaces?: undefined;
|
|
5005
6374
|
context?: undefined;
|
|
5006
6375
|
skip?: undefined;
|
|
@@ -5090,10 +6459,18 @@ export declare const toolDefinitions: ({
|
|
|
5090
6459
|
commentId?: undefined;
|
|
5091
6460
|
circleId?: undefined;
|
|
5092
6461
|
userId?: undefined;
|
|
6462
|
+
withUser?: undefined;
|
|
6463
|
+
unread?: undefined;
|
|
6464
|
+
includeCompleted?: undefined;
|
|
6465
|
+
user?: undefined;
|
|
6466
|
+
key?: undefined;
|
|
6467
|
+
threadId?: undefined;
|
|
6468
|
+
depth?: undefined;
|
|
6469
|
+
postId?: undefined;
|
|
6470
|
+
reason?: undefined;
|
|
5093
6471
|
includeSubCircles?: undefined;
|
|
5094
6472
|
endDate?: undefined;
|
|
5095
6473
|
metricId?: undefined;
|
|
5096
|
-
depth?: undefined;
|
|
5097
6474
|
username?: undefined;
|
|
5098
6475
|
fullName?: undefined;
|
|
5099
6476
|
language?: undefined;
|
|
@@ -5105,7 +6482,6 @@ export declare const toolDefinitions: ({
|
|
|
5105
6482
|
relatedNestId?: undefined;
|
|
5106
6483
|
color?: undefined;
|
|
5107
6484
|
icon?: undefined;
|
|
5108
|
-
withUser?: undefined;
|
|
5109
6485
|
fullWorkspaces?: undefined;
|
|
5110
6486
|
context?: undefined;
|
|
5111
6487
|
skip?: undefined;
|
|
@@ -5200,10 +6576,18 @@ export declare const toolDefinitions: ({
|
|
|
5200
6576
|
commentId?: undefined;
|
|
5201
6577
|
circleId?: undefined;
|
|
5202
6578
|
userId?: undefined;
|
|
6579
|
+
withUser?: undefined;
|
|
6580
|
+
unread?: undefined;
|
|
6581
|
+
includeCompleted?: undefined;
|
|
6582
|
+
user?: undefined;
|
|
6583
|
+
key?: undefined;
|
|
6584
|
+
threadId?: undefined;
|
|
6585
|
+
depth?: undefined;
|
|
6586
|
+
postId?: undefined;
|
|
6587
|
+
reason?: undefined;
|
|
5203
6588
|
includeSubCircles?: undefined;
|
|
5204
6589
|
endDate?: undefined;
|
|
5205
6590
|
metricId?: undefined;
|
|
5206
|
-
depth?: undefined;
|
|
5207
6591
|
username?: undefined;
|
|
5208
6592
|
fullName?: undefined;
|
|
5209
6593
|
language?: undefined;
|
|
@@ -5214,7 +6598,6 @@ export declare const toolDefinitions: ({
|
|
|
5214
6598
|
nestIds?: undefined;
|
|
5215
6599
|
color?: undefined;
|
|
5216
6600
|
icon?: undefined;
|
|
5217
|
-
withUser?: undefined;
|
|
5218
6601
|
fullWorkspaces?: undefined;
|
|
5219
6602
|
context?: undefined;
|
|
5220
6603
|
skip?: undefined;
|
|
@@ -5311,10 +6694,18 @@ export declare const toolDefinitions: ({
|
|
|
5311
6694
|
commentId?: undefined;
|
|
5312
6695
|
circleId?: undefined;
|
|
5313
6696
|
userId?: undefined;
|
|
6697
|
+
withUser?: undefined;
|
|
6698
|
+
unread?: undefined;
|
|
6699
|
+
includeCompleted?: undefined;
|
|
6700
|
+
user?: undefined;
|
|
6701
|
+
key?: undefined;
|
|
6702
|
+
threadId?: undefined;
|
|
6703
|
+
depth?: undefined;
|
|
6704
|
+
postId?: undefined;
|
|
6705
|
+
reason?: undefined;
|
|
5314
6706
|
includeSubCircles?: undefined;
|
|
5315
6707
|
endDate?: undefined;
|
|
5316
6708
|
metricId?: undefined;
|
|
5317
|
-
depth?: undefined;
|
|
5318
6709
|
username?: undefined;
|
|
5319
6710
|
fullName?: undefined;
|
|
5320
6711
|
language?: undefined;
|
|
@@ -5325,7 +6716,6 @@ export declare const toolDefinitions: ({
|
|
|
5325
6716
|
nestIds?: undefined;
|
|
5326
6717
|
position?: undefined;
|
|
5327
6718
|
relatedNestId?: undefined;
|
|
5328
|
-
withUser?: undefined;
|
|
5329
6719
|
fullWorkspaces?: undefined;
|
|
5330
6720
|
context?: undefined;
|
|
5331
6721
|
skip?: undefined;
|
|
@@ -5418,10 +6808,18 @@ export declare const toolDefinitions: ({
|
|
|
5418
6808
|
commentId?: undefined;
|
|
5419
6809
|
circleId?: undefined;
|
|
5420
6810
|
userId?: undefined;
|
|
6811
|
+
withUser?: undefined;
|
|
6812
|
+
unread?: undefined;
|
|
6813
|
+
includeCompleted?: undefined;
|
|
6814
|
+
user?: undefined;
|
|
6815
|
+
key?: undefined;
|
|
6816
|
+
threadId?: undefined;
|
|
6817
|
+
depth?: undefined;
|
|
6818
|
+
postId?: undefined;
|
|
6819
|
+
reason?: undefined;
|
|
5421
6820
|
includeSubCircles?: undefined;
|
|
5422
6821
|
endDate?: undefined;
|
|
5423
6822
|
metricId?: undefined;
|
|
5424
|
-
depth?: undefined;
|
|
5425
6823
|
username?: undefined;
|
|
5426
6824
|
fullName?: undefined;
|
|
5427
6825
|
language?: undefined;
|
|
@@ -5433,7 +6831,6 @@ export declare const toolDefinitions: ({
|
|
|
5433
6831
|
relatedNestId?: undefined;
|
|
5434
6832
|
color?: undefined;
|
|
5435
6833
|
icon?: undefined;
|
|
5436
|
-
withUser?: undefined;
|
|
5437
6834
|
fullWorkspaces?: undefined;
|
|
5438
6835
|
context?: undefined;
|
|
5439
6836
|
skip?: undefined;
|
|
@@ -5519,10 +6916,18 @@ export declare const toolDefinitions: ({
|
|
|
5519
6916
|
commentId?: undefined;
|
|
5520
6917
|
circleId?: undefined;
|
|
5521
6918
|
userId?: undefined;
|
|
6919
|
+
withUser?: undefined;
|
|
6920
|
+
unread?: undefined;
|
|
6921
|
+
includeCompleted?: undefined;
|
|
6922
|
+
user?: undefined;
|
|
6923
|
+
key?: undefined;
|
|
6924
|
+
threadId?: undefined;
|
|
6925
|
+
depth?: undefined;
|
|
6926
|
+
postId?: undefined;
|
|
6927
|
+
reason?: undefined;
|
|
5522
6928
|
includeSubCircles?: undefined;
|
|
5523
6929
|
endDate?: undefined;
|
|
5524
6930
|
metricId?: undefined;
|
|
5525
|
-
depth?: undefined;
|
|
5526
6931
|
username?: undefined;
|
|
5527
6932
|
fullName?: undefined;
|
|
5528
6933
|
language?: undefined;
|
|
@@ -5535,7 +6940,6 @@ export declare const toolDefinitions: ({
|
|
|
5535
6940
|
relatedNestId?: undefined;
|
|
5536
6941
|
color?: undefined;
|
|
5537
6942
|
icon?: undefined;
|
|
5538
|
-
withUser?: undefined;
|
|
5539
6943
|
fullWorkspaces?: undefined;
|
|
5540
6944
|
context?: undefined;
|
|
5541
6945
|
skip?: undefined;
|
|
@@ -5630,10 +7034,17 @@ export declare const toolDefinitions: ({
|
|
|
5630
7034
|
commentId?: undefined;
|
|
5631
7035
|
circleId?: undefined;
|
|
5632
7036
|
userId?: undefined;
|
|
7037
|
+
unread?: undefined;
|
|
7038
|
+
includeCompleted?: undefined;
|
|
7039
|
+
user?: undefined;
|
|
7040
|
+
key?: undefined;
|
|
7041
|
+
threadId?: undefined;
|
|
7042
|
+
depth?: undefined;
|
|
7043
|
+
postId?: undefined;
|
|
7044
|
+
reason?: undefined;
|
|
5633
7045
|
includeSubCircles?: undefined;
|
|
5634
7046
|
endDate?: undefined;
|
|
5635
7047
|
metricId?: undefined;
|
|
5636
|
-
depth?: undefined;
|
|
5637
7048
|
username?: undefined;
|
|
5638
7049
|
fullName?: undefined;
|
|
5639
7050
|
language?: undefined;
|
|
@@ -5734,10 +7145,18 @@ export declare const toolDefinitions: ({
|
|
|
5734
7145
|
body?: undefined;
|
|
5735
7146
|
commentId?: undefined;
|
|
5736
7147
|
circleId?: undefined;
|
|
7148
|
+
withUser?: undefined;
|
|
7149
|
+
unread?: undefined;
|
|
7150
|
+
includeCompleted?: undefined;
|
|
7151
|
+
user?: undefined;
|
|
7152
|
+
key?: undefined;
|
|
7153
|
+
threadId?: undefined;
|
|
7154
|
+
depth?: undefined;
|
|
7155
|
+
postId?: undefined;
|
|
7156
|
+
reason?: undefined;
|
|
5737
7157
|
includeSubCircles?: undefined;
|
|
5738
7158
|
endDate?: undefined;
|
|
5739
7159
|
metricId?: undefined;
|
|
5740
|
-
depth?: undefined;
|
|
5741
7160
|
username?: undefined;
|
|
5742
7161
|
fullName?: undefined;
|
|
5743
7162
|
language?: undefined;
|
|
@@ -5750,7 +7169,6 @@ export declare const toolDefinitions: ({
|
|
|
5750
7169
|
relatedNestId?: undefined;
|
|
5751
7170
|
color?: undefined;
|
|
5752
7171
|
icon?: undefined;
|
|
5753
|
-
withUser?: undefined;
|
|
5754
7172
|
fullWorkspaces?: undefined;
|
|
5755
7173
|
context?: undefined;
|
|
5756
7174
|
skip?: undefined;
|
|
@@ -5840,10 +7258,18 @@ export declare const toolDefinitions: ({
|
|
|
5840
7258
|
commentId?: undefined;
|
|
5841
7259
|
circleId?: undefined;
|
|
5842
7260
|
userId?: undefined;
|
|
7261
|
+
withUser?: undefined;
|
|
7262
|
+
unread?: undefined;
|
|
7263
|
+
includeCompleted?: undefined;
|
|
7264
|
+
user?: undefined;
|
|
7265
|
+
key?: undefined;
|
|
7266
|
+
threadId?: undefined;
|
|
7267
|
+
depth?: undefined;
|
|
7268
|
+
postId?: undefined;
|
|
7269
|
+
reason?: undefined;
|
|
5843
7270
|
includeSubCircles?: undefined;
|
|
5844
7271
|
endDate?: undefined;
|
|
5845
7272
|
metricId?: undefined;
|
|
5846
|
-
depth?: undefined;
|
|
5847
7273
|
username?: undefined;
|
|
5848
7274
|
fullName?: undefined;
|
|
5849
7275
|
language?: undefined;
|
|
@@ -5855,7 +7281,6 @@ export declare const toolDefinitions: ({
|
|
|
5855
7281
|
relatedNestId?: undefined;
|
|
5856
7282
|
color?: undefined;
|
|
5857
7283
|
icon?: undefined;
|
|
5858
|
-
withUser?: undefined;
|
|
5859
7284
|
fullWorkspaces?: undefined;
|
|
5860
7285
|
context?: undefined;
|
|
5861
7286
|
skip?: undefined;
|
|
@@ -5942,10 +7367,18 @@ export declare const toolDefinitions: ({
|
|
|
5942
7367
|
commentId?: undefined;
|
|
5943
7368
|
circleId?: undefined;
|
|
5944
7369
|
userId?: undefined;
|
|
7370
|
+
withUser?: undefined;
|
|
7371
|
+
unread?: undefined;
|
|
7372
|
+
includeCompleted?: undefined;
|
|
7373
|
+
user?: undefined;
|
|
7374
|
+
key?: undefined;
|
|
7375
|
+
threadId?: undefined;
|
|
7376
|
+
depth?: undefined;
|
|
7377
|
+
postId?: undefined;
|
|
7378
|
+
reason?: undefined;
|
|
5945
7379
|
includeSubCircles?: undefined;
|
|
5946
7380
|
endDate?: undefined;
|
|
5947
7381
|
metricId?: undefined;
|
|
5948
|
-
depth?: undefined;
|
|
5949
7382
|
username?: undefined;
|
|
5950
7383
|
fullName?: undefined;
|
|
5951
7384
|
language?: undefined;
|
|
@@ -5958,7 +7391,6 @@ export declare const toolDefinitions: ({
|
|
|
5958
7391
|
relatedNestId?: undefined;
|
|
5959
7392
|
color?: undefined;
|
|
5960
7393
|
icon?: undefined;
|
|
5961
|
-
withUser?: undefined;
|
|
5962
7394
|
context?: undefined;
|
|
5963
7395
|
skip?: undefined;
|
|
5964
7396
|
showRead?: undefined;
|
|
@@ -6044,10 +7476,18 @@ export declare const toolDefinitions: ({
|
|
|
6044
7476
|
commentId?: undefined;
|
|
6045
7477
|
circleId?: undefined;
|
|
6046
7478
|
userId?: undefined;
|
|
7479
|
+
withUser?: undefined;
|
|
7480
|
+
unread?: undefined;
|
|
7481
|
+
includeCompleted?: undefined;
|
|
7482
|
+
user?: undefined;
|
|
7483
|
+
key?: undefined;
|
|
7484
|
+
threadId?: undefined;
|
|
7485
|
+
depth?: undefined;
|
|
7486
|
+
postId?: undefined;
|
|
7487
|
+
reason?: undefined;
|
|
6047
7488
|
includeSubCircles?: undefined;
|
|
6048
7489
|
endDate?: undefined;
|
|
6049
7490
|
metricId?: undefined;
|
|
6050
|
-
depth?: undefined;
|
|
6051
7491
|
username?: undefined;
|
|
6052
7492
|
fullName?: undefined;
|
|
6053
7493
|
language?: undefined;
|
|
@@ -6060,7 +7500,6 @@ export declare const toolDefinitions: ({
|
|
|
6060
7500
|
relatedNestId?: undefined;
|
|
6061
7501
|
color?: undefined;
|
|
6062
7502
|
icon?: undefined;
|
|
6063
|
-
withUser?: undefined;
|
|
6064
7503
|
fullWorkspaces?: undefined;
|
|
6065
7504
|
skip?: undefined;
|
|
6066
7505
|
showRead?: undefined;
|
|
@@ -6161,10 +7600,18 @@ export declare const toolDefinitions: ({
|
|
|
6161
7600
|
commentId?: undefined;
|
|
6162
7601
|
circleId?: undefined;
|
|
6163
7602
|
userId?: undefined;
|
|
7603
|
+
withUser?: undefined;
|
|
7604
|
+
unread?: undefined;
|
|
7605
|
+
includeCompleted?: undefined;
|
|
7606
|
+
user?: undefined;
|
|
7607
|
+
key?: undefined;
|
|
7608
|
+
threadId?: undefined;
|
|
7609
|
+
depth?: undefined;
|
|
7610
|
+
postId?: undefined;
|
|
7611
|
+
reason?: undefined;
|
|
6164
7612
|
includeSubCircles?: undefined;
|
|
6165
7613
|
endDate?: undefined;
|
|
6166
7614
|
metricId?: undefined;
|
|
6167
|
-
depth?: undefined;
|
|
6168
7615
|
username?: undefined;
|
|
6169
7616
|
fullName?: undefined;
|
|
6170
7617
|
language?: undefined;
|
|
@@ -6177,7 +7624,6 @@ export declare const toolDefinitions: ({
|
|
|
6177
7624
|
relatedNestId?: undefined;
|
|
6178
7625
|
color?: undefined;
|
|
6179
7626
|
icon?: undefined;
|
|
6180
|
-
withUser?: undefined;
|
|
6181
7627
|
fullWorkspaces?: undefined;
|
|
6182
7628
|
context?: undefined;
|
|
6183
7629
|
feeling?: undefined;
|
|
@@ -6274,10 +7720,18 @@ export declare const toolDefinitions: ({
|
|
|
6274
7720
|
commentId?: undefined;
|
|
6275
7721
|
circleId?: undefined;
|
|
6276
7722
|
userId?: undefined;
|
|
7723
|
+
withUser?: undefined;
|
|
7724
|
+
unread?: undefined;
|
|
7725
|
+
includeCompleted?: undefined;
|
|
7726
|
+
user?: undefined;
|
|
7727
|
+
key?: undefined;
|
|
7728
|
+
threadId?: undefined;
|
|
7729
|
+
depth?: undefined;
|
|
7730
|
+
postId?: undefined;
|
|
7731
|
+
reason?: undefined;
|
|
6277
7732
|
includeSubCircles?: undefined;
|
|
6278
7733
|
endDate?: undefined;
|
|
6279
7734
|
metricId?: undefined;
|
|
6280
|
-
depth?: undefined;
|
|
6281
7735
|
username?: undefined;
|
|
6282
7736
|
fullName?: undefined;
|
|
6283
7737
|
language?: undefined;
|
|
@@ -6290,7 +7744,6 @@ export declare const toolDefinitions: ({
|
|
|
6290
7744
|
relatedNestId?: undefined;
|
|
6291
7745
|
color?: undefined;
|
|
6292
7746
|
icon?: undefined;
|
|
6293
|
-
withUser?: undefined;
|
|
6294
7747
|
fullWorkspaces?: undefined;
|
|
6295
7748
|
context?: undefined;
|
|
6296
7749
|
skip?: undefined;
|
|
@@ -6378,10 +7831,18 @@ export declare const toolDefinitions: ({
|
|
|
6378
7831
|
commentId?: undefined;
|
|
6379
7832
|
circleId?: undefined;
|
|
6380
7833
|
userId?: undefined;
|
|
7834
|
+
withUser?: undefined;
|
|
7835
|
+
unread?: undefined;
|
|
7836
|
+
includeCompleted?: undefined;
|
|
7837
|
+
user?: undefined;
|
|
7838
|
+
key?: undefined;
|
|
7839
|
+
threadId?: undefined;
|
|
7840
|
+
depth?: undefined;
|
|
7841
|
+
postId?: undefined;
|
|
7842
|
+
reason?: undefined;
|
|
6381
7843
|
includeSubCircles?: undefined;
|
|
6382
7844
|
endDate?: undefined;
|
|
6383
7845
|
metricId?: undefined;
|
|
6384
|
-
depth?: undefined;
|
|
6385
7846
|
username?: undefined;
|
|
6386
7847
|
fullName?: undefined;
|
|
6387
7848
|
language?: undefined;
|
|
@@ -6394,7 +7855,6 @@ export declare const toolDefinitions: ({
|
|
|
6394
7855
|
relatedNestId?: undefined;
|
|
6395
7856
|
color?: undefined;
|
|
6396
7857
|
icon?: undefined;
|
|
6397
|
-
withUser?: undefined;
|
|
6398
7858
|
fullWorkspaces?: undefined;
|
|
6399
7859
|
context?: undefined;
|
|
6400
7860
|
skip?: undefined;
|
|
@@ -6491,10 +7951,18 @@ export declare const toolDefinitions: ({
|
|
|
6491
7951
|
commentId?: undefined;
|
|
6492
7952
|
circleId?: undefined;
|
|
6493
7953
|
userId?: undefined;
|
|
7954
|
+
withUser?: undefined;
|
|
7955
|
+
unread?: undefined;
|
|
7956
|
+
includeCompleted?: undefined;
|
|
7957
|
+
user?: undefined;
|
|
7958
|
+
key?: undefined;
|
|
7959
|
+
threadId?: undefined;
|
|
7960
|
+
depth?: undefined;
|
|
7961
|
+
postId?: undefined;
|
|
7962
|
+
reason?: undefined;
|
|
6494
7963
|
includeSubCircles?: undefined;
|
|
6495
7964
|
endDate?: undefined;
|
|
6496
7965
|
metricId?: undefined;
|
|
6497
|
-
depth?: undefined;
|
|
6498
7966
|
username?: undefined;
|
|
6499
7967
|
fullName?: undefined;
|
|
6500
7968
|
language?: undefined;
|
|
@@ -6507,7 +7975,6 @@ export declare const toolDefinitions: ({
|
|
|
6507
7975
|
relatedNestId?: undefined;
|
|
6508
7976
|
color?: undefined;
|
|
6509
7977
|
icon?: undefined;
|
|
6510
|
-
withUser?: undefined;
|
|
6511
7978
|
fullWorkspaces?: undefined;
|
|
6512
7979
|
context?: undefined;
|
|
6513
7980
|
skip?: undefined;
|
|
@@ -6611,10 +8078,18 @@ export declare const toolDefinitions: ({
|
|
|
6611
8078
|
commentId?: undefined;
|
|
6612
8079
|
circleId?: undefined;
|
|
6613
8080
|
userId?: undefined;
|
|
8081
|
+
withUser?: undefined;
|
|
8082
|
+
unread?: undefined;
|
|
8083
|
+
includeCompleted?: undefined;
|
|
8084
|
+
user?: undefined;
|
|
8085
|
+
key?: undefined;
|
|
8086
|
+
threadId?: undefined;
|
|
8087
|
+
depth?: undefined;
|
|
8088
|
+
postId?: undefined;
|
|
8089
|
+
reason?: undefined;
|
|
6614
8090
|
includeSubCircles?: undefined;
|
|
6615
8091
|
endDate?: undefined;
|
|
6616
8092
|
metricId?: undefined;
|
|
6617
|
-
depth?: undefined;
|
|
6618
8093
|
username?: undefined;
|
|
6619
8094
|
fullName?: undefined;
|
|
6620
8095
|
language?: undefined;
|
|
@@ -6627,7 +8102,6 @@ export declare const toolDefinitions: ({
|
|
|
6627
8102
|
relatedNestId?: undefined;
|
|
6628
8103
|
color?: undefined;
|
|
6629
8104
|
icon?: undefined;
|
|
6630
|
-
withUser?: undefined;
|
|
6631
8105
|
fullWorkspaces?: undefined;
|
|
6632
8106
|
context?: undefined;
|
|
6633
8107
|
skip?: undefined;
|
|
@@ -6765,10 +8239,18 @@ export declare const toolDefinitions: ({
|
|
|
6765
8239
|
commentId?: undefined;
|
|
6766
8240
|
circleId?: undefined;
|
|
6767
8241
|
userId?: undefined;
|
|
8242
|
+
withUser?: undefined;
|
|
8243
|
+
unread?: undefined;
|
|
8244
|
+
includeCompleted?: undefined;
|
|
8245
|
+
user?: undefined;
|
|
8246
|
+
key?: undefined;
|
|
8247
|
+
threadId?: undefined;
|
|
8248
|
+
depth?: undefined;
|
|
8249
|
+
postId?: undefined;
|
|
8250
|
+
reason?: undefined;
|
|
6768
8251
|
includeSubCircles?: undefined;
|
|
6769
8252
|
endDate?: undefined;
|
|
6770
8253
|
metricId?: undefined;
|
|
6771
|
-
depth?: undefined;
|
|
6772
8254
|
username?: undefined;
|
|
6773
8255
|
fullName?: undefined;
|
|
6774
8256
|
language?: undefined;
|
|
@@ -6781,7 +8263,6 @@ export declare const toolDefinitions: ({
|
|
|
6781
8263
|
relatedNestId?: undefined;
|
|
6782
8264
|
color?: undefined;
|
|
6783
8265
|
icon?: undefined;
|
|
6784
|
-
withUser?: undefined;
|
|
6785
8266
|
fullWorkspaces?: undefined;
|
|
6786
8267
|
context?: undefined;
|
|
6787
8268
|
skip?: undefined;
|
|
@@ -6910,10 +8391,18 @@ export declare const toolDefinitions: ({
|
|
|
6910
8391
|
commentId?: undefined;
|
|
6911
8392
|
circleId?: undefined;
|
|
6912
8393
|
userId?: undefined;
|
|
8394
|
+
withUser?: undefined;
|
|
8395
|
+
unread?: undefined;
|
|
8396
|
+
includeCompleted?: undefined;
|
|
8397
|
+
user?: undefined;
|
|
8398
|
+
key?: undefined;
|
|
8399
|
+
threadId?: undefined;
|
|
8400
|
+
depth?: undefined;
|
|
8401
|
+
postId?: undefined;
|
|
8402
|
+
reason?: undefined;
|
|
6913
8403
|
includeSubCircles?: undefined;
|
|
6914
8404
|
endDate?: undefined;
|
|
6915
8405
|
metricId?: undefined;
|
|
6916
|
-
depth?: undefined;
|
|
6917
8406
|
username?: undefined;
|
|
6918
8407
|
fullName?: undefined;
|
|
6919
8408
|
language?: undefined;
|
|
@@ -6926,7 +8415,6 @@ export declare const toolDefinitions: ({
|
|
|
6926
8415
|
relatedNestId?: undefined;
|
|
6927
8416
|
color?: undefined;
|
|
6928
8417
|
icon?: undefined;
|
|
6929
|
-
withUser?: undefined;
|
|
6930
8418
|
fullWorkspaces?: undefined;
|
|
6931
8419
|
context?: undefined;
|
|
6932
8420
|
skip?: undefined;
|
|
@@ -7018,10 +8506,18 @@ export declare const toolDefinitions: ({
|
|
|
7018
8506
|
commentId?: undefined;
|
|
7019
8507
|
circleId?: undefined;
|
|
7020
8508
|
userId?: undefined;
|
|
8509
|
+
withUser?: undefined;
|
|
8510
|
+
unread?: undefined;
|
|
8511
|
+
includeCompleted?: undefined;
|
|
8512
|
+
user?: undefined;
|
|
8513
|
+
key?: undefined;
|
|
8514
|
+
threadId?: undefined;
|
|
8515
|
+
depth?: undefined;
|
|
8516
|
+
postId?: undefined;
|
|
8517
|
+
reason?: undefined;
|
|
7021
8518
|
includeSubCircles?: undefined;
|
|
7022
8519
|
endDate?: undefined;
|
|
7023
8520
|
metricId?: undefined;
|
|
7024
|
-
depth?: undefined;
|
|
7025
8521
|
username?: undefined;
|
|
7026
8522
|
fullName?: undefined;
|
|
7027
8523
|
language?: undefined;
|
|
@@ -7034,7 +8530,6 @@ export declare const toolDefinitions: ({
|
|
|
7034
8530
|
relatedNestId?: undefined;
|
|
7035
8531
|
color?: undefined;
|
|
7036
8532
|
icon?: undefined;
|
|
7037
|
-
withUser?: undefined;
|
|
7038
8533
|
fullWorkspaces?: undefined;
|
|
7039
8534
|
context?: undefined;
|
|
7040
8535
|
skip?: undefined;
|
|
@@ -7122,10 +8617,18 @@ export declare const toolDefinitions: ({
|
|
|
7122
8617
|
commentId?: undefined;
|
|
7123
8618
|
circleId?: undefined;
|
|
7124
8619
|
userId?: undefined;
|
|
8620
|
+
withUser?: undefined;
|
|
8621
|
+
unread?: undefined;
|
|
8622
|
+
includeCompleted?: undefined;
|
|
8623
|
+
user?: undefined;
|
|
8624
|
+
key?: undefined;
|
|
8625
|
+
threadId?: undefined;
|
|
8626
|
+
depth?: undefined;
|
|
8627
|
+
postId?: undefined;
|
|
8628
|
+
reason?: undefined;
|
|
7125
8629
|
includeSubCircles?: undefined;
|
|
7126
8630
|
endDate?: undefined;
|
|
7127
8631
|
metricId?: undefined;
|
|
7128
|
-
depth?: undefined;
|
|
7129
8632
|
username?: undefined;
|
|
7130
8633
|
fullName?: undefined;
|
|
7131
8634
|
language?: undefined;
|
|
@@ -7138,7 +8641,6 @@ export declare const toolDefinitions: ({
|
|
|
7138
8641
|
relatedNestId?: undefined;
|
|
7139
8642
|
color?: undefined;
|
|
7140
8643
|
icon?: undefined;
|
|
7141
|
-
withUser?: undefined;
|
|
7142
8644
|
fullWorkspaces?: undefined;
|
|
7143
8645
|
context?: undefined;
|
|
7144
8646
|
skip?: undefined;
|
|
@@ -7235,10 +8737,18 @@ export declare const toolDefinitions: ({
|
|
|
7235
8737
|
commentId?: undefined;
|
|
7236
8738
|
circleId?: undefined;
|
|
7237
8739
|
userId?: undefined;
|
|
8740
|
+
withUser?: undefined;
|
|
8741
|
+
unread?: undefined;
|
|
8742
|
+
includeCompleted?: undefined;
|
|
8743
|
+
user?: undefined;
|
|
8744
|
+
key?: undefined;
|
|
8745
|
+
threadId?: undefined;
|
|
8746
|
+
depth?: undefined;
|
|
8747
|
+
postId?: undefined;
|
|
8748
|
+
reason?: undefined;
|
|
7238
8749
|
includeSubCircles?: undefined;
|
|
7239
8750
|
endDate?: undefined;
|
|
7240
8751
|
metricId?: undefined;
|
|
7241
|
-
depth?: undefined;
|
|
7242
8752
|
username?: undefined;
|
|
7243
8753
|
fullName?: undefined;
|
|
7244
8754
|
language?: undefined;
|
|
@@ -7251,7 +8761,6 @@ export declare const toolDefinitions: ({
|
|
|
7251
8761
|
relatedNestId?: undefined;
|
|
7252
8762
|
color?: undefined;
|
|
7253
8763
|
icon?: undefined;
|
|
7254
|
-
withUser?: undefined;
|
|
7255
8764
|
fullWorkspaces?: undefined;
|
|
7256
8765
|
context?: undefined;
|
|
7257
8766
|
skip?: undefined;
|
|
@@ -7346,10 +8855,18 @@ export declare const toolDefinitions: ({
|
|
|
7346
8855
|
commentId?: undefined;
|
|
7347
8856
|
circleId?: undefined;
|
|
7348
8857
|
userId?: undefined;
|
|
8858
|
+
withUser?: undefined;
|
|
8859
|
+
unread?: undefined;
|
|
8860
|
+
includeCompleted?: undefined;
|
|
8861
|
+
user?: undefined;
|
|
8862
|
+
key?: undefined;
|
|
8863
|
+
threadId?: undefined;
|
|
8864
|
+
depth?: undefined;
|
|
8865
|
+
postId?: undefined;
|
|
8866
|
+
reason?: undefined;
|
|
7349
8867
|
includeSubCircles?: undefined;
|
|
7350
8868
|
endDate?: undefined;
|
|
7351
8869
|
metricId?: undefined;
|
|
7352
|
-
depth?: undefined;
|
|
7353
8870
|
username?: undefined;
|
|
7354
8871
|
fullName?: undefined;
|
|
7355
8872
|
language?: undefined;
|
|
@@ -7362,7 +8879,6 @@ export declare const toolDefinitions: ({
|
|
|
7362
8879
|
relatedNestId?: undefined;
|
|
7363
8880
|
color?: undefined;
|
|
7364
8881
|
icon?: undefined;
|
|
7365
|
-
withUser?: undefined;
|
|
7366
8882
|
fullWorkspaces?: undefined;
|
|
7367
8883
|
context?: undefined;
|
|
7368
8884
|
skip?: undefined;
|
|
@@ -7453,10 +8969,18 @@ export declare const toolDefinitions: ({
|
|
|
7453
8969
|
commentId?: undefined;
|
|
7454
8970
|
circleId?: undefined;
|
|
7455
8971
|
userId?: undefined;
|
|
8972
|
+
withUser?: undefined;
|
|
8973
|
+
unread?: undefined;
|
|
8974
|
+
includeCompleted?: undefined;
|
|
8975
|
+
user?: undefined;
|
|
8976
|
+
key?: undefined;
|
|
8977
|
+
threadId?: undefined;
|
|
8978
|
+
depth?: undefined;
|
|
8979
|
+
postId?: undefined;
|
|
8980
|
+
reason?: undefined;
|
|
7456
8981
|
includeSubCircles?: undefined;
|
|
7457
8982
|
endDate?: undefined;
|
|
7458
8983
|
metricId?: undefined;
|
|
7459
|
-
depth?: undefined;
|
|
7460
8984
|
username?: undefined;
|
|
7461
8985
|
fullName?: undefined;
|
|
7462
8986
|
language?: undefined;
|
|
@@ -7469,7 +8993,6 @@ export declare const toolDefinitions: ({
|
|
|
7469
8993
|
relatedNestId?: undefined;
|
|
7470
8994
|
color?: undefined;
|
|
7471
8995
|
icon?: undefined;
|
|
7472
|
-
withUser?: undefined;
|
|
7473
8996
|
fullWorkspaces?: undefined;
|
|
7474
8997
|
context?: undefined;
|
|
7475
8998
|
skip?: undefined;
|
|
@@ -7561,10 +9084,18 @@ export declare const toolDefinitions: ({
|
|
|
7561
9084
|
commentId?: undefined;
|
|
7562
9085
|
circleId?: undefined;
|
|
7563
9086
|
userId?: undefined;
|
|
9087
|
+
withUser?: undefined;
|
|
9088
|
+
unread?: undefined;
|
|
9089
|
+
includeCompleted?: undefined;
|
|
9090
|
+
user?: undefined;
|
|
9091
|
+
key?: undefined;
|
|
9092
|
+
threadId?: undefined;
|
|
9093
|
+
depth?: undefined;
|
|
9094
|
+
postId?: undefined;
|
|
9095
|
+
reason?: undefined;
|
|
7564
9096
|
includeSubCircles?: undefined;
|
|
7565
9097
|
endDate?: undefined;
|
|
7566
9098
|
metricId?: undefined;
|
|
7567
|
-
depth?: undefined;
|
|
7568
9099
|
username?: undefined;
|
|
7569
9100
|
fullName?: undefined;
|
|
7570
9101
|
language?: undefined;
|
|
@@ -7577,7 +9108,6 @@ export declare const toolDefinitions: ({
|
|
|
7577
9108
|
relatedNestId?: undefined;
|
|
7578
9109
|
color?: undefined;
|
|
7579
9110
|
icon?: undefined;
|
|
7580
|
-
withUser?: undefined;
|
|
7581
9111
|
fullWorkspaces?: undefined;
|
|
7582
9112
|
context?: undefined;
|
|
7583
9113
|
skip?: undefined;
|
|
@@ -7676,10 +9206,18 @@ export declare const toolDefinitions: ({
|
|
|
7676
9206
|
commentId?: undefined;
|
|
7677
9207
|
circleId?: undefined;
|
|
7678
9208
|
userId?: undefined;
|
|
9209
|
+
withUser?: undefined;
|
|
9210
|
+
unread?: undefined;
|
|
9211
|
+
includeCompleted?: undefined;
|
|
9212
|
+
user?: undefined;
|
|
9213
|
+
key?: undefined;
|
|
9214
|
+
threadId?: undefined;
|
|
9215
|
+
depth?: undefined;
|
|
9216
|
+
postId?: undefined;
|
|
9217
|
+
reason?: undefined;
|
|
7679
9218
|
includeSubCircles?: undefined;
|
|
7680
9219
|
endDate?: undefined;
|
|
7681
9220
|
metricId?: undefined;
|
|
7682
|
-
depth?: undefined;
|
|
7683
9221
|
username?: undefined;
|
|
7684
9222
|
fullName?: undefined;
|
|
7685
9223
|
language?: undefined;
|
|
@@ -7692,7 +9230,6 @@ export declare const toolDefinitions: ({
|
|
|
7692
9230
|
relatedNestId?: undefined;
|
|
7693
9231
|
color?: undefined;
|
|
7694
9232
|
icon?: undefined;
|
|
7695
|
-
withUser?: undefined;
|
|
7696
9233
|
fullWorkspaces?: undefined;
|
|
7697
9234
|
context?: undefined;
|
|
7698
9235
|
skip?: undefined;
|
|
@@ -7784,10 +9321,18 @@ export declare const toolDefinitions: ({
|
|
|
7784
9321
|
commentId?: undefined;
|
|
7785
9322
|
circleId?: undefined;
|
|
7786
9323
|
userId?: undefined;
|
|
9324
|
+
withUser?: undefined;
|
|
9325
|
+
unread?: undefined;
|
|
9326
|
+
includeCompleted?: undefined;
|
|
9327
|
+
user?: undefined;
|
|
9328
|
+
key?: undefined;
|
|
9329
|
+
threadId?: undefined;
|
|
9330
|
+
depth?: undefined;
|
|
9331
|
+
postId?: undefined;
|
|
9332
|
+
reason?: undefined;
|
|
7787
9333
|
includeSubCircles?: undefined;
|
|
7788
9334
|
endDate?: undefined;
|
|
7789
9335
|
metricId?: undefined;
|
|
7790
|
-
depth?: undefined;
|
|
7791
9336
|
username?: undefined;
|
|
7792
9337
|
fullName?: undefined;
|
|
7793
9338
|
language?: undefined;
|
|
@@ -7800,7 +9345,6 @@ export declare const toolDefinitions: ({
|
|
|
7800
9345
|
relatedNestId?: undefined;
|
|
7801
9346
|
color?: undefined;
|
|
7802
9347
|
icon?: undefined;
|
|
7803
|
-
withUser?: undefined;
|
|
7804
9348
|
fullWorkspaces?: undefined;
|
|
7805
9349
|
context?: undefined;
|
|
7806
9350
|
skip?: undefined;
|
|
@@ -7909,10 +9453,18 @@ export declare const toolDefinitions: ({
|
|
|
7909
9453
|
commentId?: undefined;
|
|
7910
9454
|
circleId?: undefined;
|
|
7911
9455
|
userId?: undefined;
|
|
9456
|
+
withUser?: undefined;
|
|
9457
|
+
unread?: undefined;
|
|
9458
|
+
includeCompleted?: undefined;
|
|
9459
|
+
user?: undefined;
|
|
9460
|
+
key?: undefined;
|
|
9461
|
+
threadId?: undefined;
|
|
9462
|
+
depth?: undefined;
|
|
9463
|
+
postId?: undefined;
|
|
9464
|
+
reason?: undefined;
|
|
7912
9465
|
includeSubCircles?: undefined;
|
|
7913
9466
|
endDate?: undefined;
|
|
7914
9467
|
metricId?: undefined;
|
|
7915
|
-
depth?: undefined;
|
|
7916
9468
|
username?: undefined;
|
|
7917
9469
|
fullName?: undefined;
|
|
7918
9470
|
language?: undefined;
|
|
@@ -7925,7 +9477,6 @@ export declare const toolDefinitions: ({
|
|
|
7925
9477
|
relatedNestId?: undefined;
|
|
7926
9478
|
color?: undefined;
|
|
7927
9479
|
icon?: undefined;
|
|
7928
|
-
withUser?: undefined;
|
|
7929
9480
|
fullWorkspaces?: undefined;
|
|
7930
9481
|
context?: undefined;
|
|
7931
9482
|
skip?: undefined;
|
|
@@ -8019,10 +9570,18 @@ export declare const toolDefinitions: ({
|
|
|
8019
9570
|
commentId?: undefined;
|
|
8020
9571
|
circleId?: undefined;
|
|
8021
9572
|
userId?: undefined;
|
|
9573
|
+
withUser?: undefined;
|
|
9574
|
+
unread?: undefined;
|
|
9575
|
+
includeCompleted?: undefined;
|
|
9576
|
+
user?: undefined;
|
|
9577
|
+
key?: undefined;
|
|
9578
|
+
threadId?: undefined;
|
|
9579
|
+
depth?: undefined;
|
|
9580
|
+
postId?: undefined;
|
|
9581
|
+
reason?: undefined;
|
|
8022
9582
|
includeSubCircles?: undefined;
|
|
8023
9583
|
endDate?: undefined;
|
|
8024
9584
|
metricId?: undefined;
|
|
8025
|
-
depth?: undefined;
|
|
8026
9585
|
username?: undefined;
|
|
8027
9586
|
fullName?: undefined;
|
|
8028
9587
|
language?: undefined;
|
|
@@ -8035,7 +9594,6 @@ export declare const toolDefinitions: ({
|
|
|
8035
9594
|
relatedNestId?: undefined;
|
|
8036
9595
|
color?: undefined;
|
|
8037
9596
|
icon?: undefined;
|
|
8038
|
-
withUser?: undefined;
|
|
8039
9597
|
fullWorkspaces?: undefined;
|
|
8040
9598
|
context?: undefined;
|
|
8041
9599
|
skip?: undefined;
|
|
@@ -8122,10 +9680,18 @@ export declare const toolDefinitions: ({
|
|
|
8122
9680
|
commentId?: undefined;
|
|
8123
9681
|
circleId?: undefined;
|
|
8124
9682
|
userId?: undefined;
|
|
9683
|
+
withUser?: undefined;
|
|
9684
|
+
unread?: undefined;
|
|
9685
|
+
includeCompleted?: undefined;
|
|
9686
|
+
user?: undefined;
|
|
9687
|
+
key?: undefined;
|
|
9688
|
+
threadId?: undefined;
|
|
9689
|
+
depth?: undefined;
|
|
9690
|
+
postId?: undefined;
|
|
9691
|
+
reason?: undefined;
|
|
8125
9692
|
includeSubCircles?: undefined;
|
|
8126
9693
|
endDate?: undefined;
|
|
8127
9694
|
metricId?: undefined;
|
|
8128
|
-
depth?: undefined;
|
|
8129
9695
|
username?: undefined;
|
|
8130
9696
|
fullName?: undefined;
|
|
8131
9697
|
language?: undefined;
|
|
@@ -8138,7 +9704,6 @@ export declare const toolDefinitions: ({
|
|
|
8138
9704
|
relatedNestId?: undefined;
|
|
8139
9705
|
color?: undefined;
|
|
8140
9706
|
icon?: undefined;
|
|
8141
|
-
withUser?: undefined;
|
|
8142
9707
|
fullWorkspaces?: undefined;
|
|
8143
9708
|
context?: undefined;
|
|
8144
9709
|
skip?: undefined;
|
|
@@ -8239,10 +9804,18 @@ export declare const toolDefinitions: ({
|
|
|
8239
9804
|
commentId?: undefined;
|
|
8240
9805
|
circleId?: undefined;
|
|
8241
9806
|
userId?: undefined;
|
|
9807
|
+
withUser?: undefined;
|
|
9808
|
+
unread?: undefined;
|
|
9809
|
+
includeCompleted?: undefined;
|
|
9810
|
+
user?: undefined;
|
|
9811
|
+
key?: undefined;
|
|
9812
|
+
threadId?: undefined;
|
|
9813
|
+
depth?: undefined;
|
|
9814
|
+
postId?: undefined;
|
|
9815
|
+
reason?: undefined;
|
|
8242
9816
|
includeSubCircles?: undefined;
|
|
8243
9817
|
endDate?: undefined;
|
|
8244
9818
|
metricId?: undefined;
|
|
8245
|
-
depth?: undefined;
|
|
8246
9819
|
username?: undefined;
|
|
8247
9820
|
fullName?: undefined;
|
|
8248
9821
|
language?: undefined;
|
|
@@ -8255,7 +9828,6 @@ export declare const toolDefinitions: ({
|
|
|
8255
9828
|
relatedNestId?: undefined;
|
|
8256
9829
|
color?: undefined;
|
|
8257
9830
|
icon?: undefined;
|
|
8258
|
-
withUser?: undefined;
|
|
8259
9831
|
fullWorkspaces?: undefined;
|
|
8260
9832
|
context?: undefined;
|
|
8261
9833
|
skip?: undefined;
|