@nestr/mcp 0.1.106 → 0.1.107
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 +10 -0
- package/build/api/client.d.ts +198 -14
- package/build/api/client.d.ts.map +1 -1
- package/build/api/client.js +125 -4
- package/build/api/client.js.map +1 -1
- package/build/tools/index.d.ts +1502 -277
- package/build/tools/index.d.ts.map +1 -1
- package/build/tools/index.js +442 -43
- package/build/tools/index.js.map +1 -1
- package/package.json +1 -1
package/build/tools/index.d.ts
CHANGED
|
@@ -417,7 +417,9 @@ export declare const schemas: {
|
|
|
417
417
|
domains?: unknown;
|
|
418
418
|
}>;
|
|
419
419
|
updateNest: z.ZodObject<{
|
|
420
|
-
|
|
420
|
+
accountabilities: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
|
|
421
|
+
domains: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
|
|
422
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
421
423
|
title: z.ZodOptional<z.ZodString>;
|
|
422
424
|
description: z.ZodOptional<z.ZodString>;
|
|
423
425
|
purpose: z.ZodOptional<z.ZodString>;
|
|
@@ -428,9 +430,7 @@ export declare const schemas: {
|
|
|
428
430
|
data: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
429
431
|
due: z.ZodOptional<z.ZodString>;
|
|
430
432
|
completed: z.ZodOptional<z.ZodBoolean>;
|
|
431
|
-
|
|
432
|
-
domains: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
|
|
433
|
-
workspaceId: z.ZodOptional<z.ZodString>;
|
|
433
|
+
nestId: z.ZodString;
|
|
434
434
|
}, "strip", z.ZodTypeAny, {
|
|
435
435
|
nestId: string;
|
|
436
436
|
workspaceId?: string | undefined;
|
|
@@ -737,6 +737,22 @@ export declare const schemas: {
|
|
|
737
737
|
}, {
|
|
738
738
|
workspaceId: string;
|
|
739
739
|
}>;
|
|
740
|
+
workspaceDocs: z.ZodObject<{
|
|
741
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
742
|
+
search: z.ZodOptional<z.ZodString>;
|
|
743
|
+
fileId: z.ZodOptional<z.ZodString>;
|
|
744
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
745
|
+
}, "strip", z.ZodTypeAny, {
|
|
746
|
+
workspaceId?: string | undefined;
|
|
747
|
+
search?: string | undefined;
|
|
748
|
+
offset?: number | undefined;
|
|
749
|
+
fileId?: string | undefined;
|
|
750
|
+
}, {
|
|
751
|
+
workspaceId?: string | undefined;
|
|
752
|
+
search?: string | undefined;
|
|
753
|
+
offset?: number | undefined;
|
|
754
|
+
fileId?: string | undefined;
|
|
755
|
+
}>;
|
|
740
756
|
listInbox: z.ZodObject<{
|
|
741
757
|
completedAfter: z.ZodOptional<z.ZodString>;
|
|
742
758
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -874,6 +890,92 @@ export declare const schemas: {
|
|
|
874
890
|
workspaceId: string;
|
|
875
891
|
nestIds?: unknown;
|
|
876
892
|
}>;
|
|
893
|
+
setRecurrence: z.ZodObject<{
|
|
894
|
+
nestId: z.ZodString;
|
|
895
|
+
rrule: z.ZodNullable<z.ZodString>;
|
|
896
|
+
}, "strip", z.ZodTypeAny, {
|
|
897
|
+
nestId: string;
|
|
898
|
+
rrule: string | null;
|
|
899
|
+
}, {
|
|
900
|
+
nestId: string;
|
|
901
|
+
rrule: string | null;
|
|
902
|
+
}>;
|
|
903
|
+
listOccurrences: z.ZodObject<{
|
|
904
|
+
nestId: z.ZodString;
|
|
905
|
+
direction: z.ZodOptional<z.ZodEnum<["future", "past"]>>;
|
|
906
|
+
cursor: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
907
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
908
|
+
}, "strip", z.ZodTypeAny, {
|
|
909
|
+
nestId: string;
|
|
910
|
+
limit?: number | undefined;
|
|
911
|
+
direction?: "future" | "past" | undefined;
|
|
912
|
+
cursor?: string | number | undefined;
|
|
913
|
+
}, {
|
|
914
|
+
nestId: string;
|
|
915
|
+
limit?: number | undefined;
|
|
916
|
+
direction?: "future" | "past" | undefined;
|
|
917
|
+
cursor?: string | number | undefined;
|
|
918
|
+
}>;
|
|
919
|
+
skipOccurrence: z.ZodObject<{
|
|
920
|
+
nestId: z.ZodString;
|
|
921
|
+
instant: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
922
|
+
scope: z.ZodOptional<z.ZodEnum<["occurrence", "following"]>>;
|
|
923
|
+
}, "strip", z.ZodTypeAny, {
|
|
924
|
+
nestId: string;
|
|
925
|
+
instant: number;
|
|
926
|
+
scope?: "occurrence" | "following" | undefined;
|
|
927
|
+
}, {
|
|
928
|
+
nestId: string;
|
|
929
|
+
instant: string | number;
|
|
930
|
+
scope?: "occurrence" | "following" | undefined;
|
|
931
|
+
}>;
|
|
932
|
+
updateOccurrence: z.ZodObject<{
|
|
933
|
+
title: z.ZodOptional<z.ZodString>;
|
|
934
|
+
description: z.ZodOptional<z.ZodString>;
|
|
935
|
+
purpose: z.ZodOptional<z.ZodString>;
|
|
936
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
937
|
+
labels: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
|
|
938
|
+
fields: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
939
|
+
users: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>>;
|
|
940
|
+
data: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
941
|
+
due: z.ZodOptional<z.ZodString>;
|
|
942
|
+
completed: z.ZodOptional<z.ZodBoolean>;
|
|
943
|
+
nestId: z.ZodString;
|
|
944
|
+
instant: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
945
|
+
}, "strip", z.ZodTypeAny, {
|
|
946
|
+
nestId: string;
|
|
947
|
+
instant: number;
|
|
948
|
+
description?: string | undefined;
|
|
949
|
+
title?: string | undefined;
|
|
950
|
+
purpose?: string | undefined;
|
|
951
|
+
parentId?: string | undefined;
|
|
952
|
+
labels?: string[] | undefined;
|
|
953
|
+
fields?: Record<string, unknown> | undefined;
|
|
954
|
+
data?: Record<string, unknown> | undefined;
|
|
955
|
+
due?: string | undefined;
|
|
956
|
+
completed?: boolean | undefined;
|
|
957
|
+
users?: string[] | undefined;
|
|
958
|
+
}, {
|
|
959
|
+
nestId: string;
|
|
960
|
+
instant: string | number;
|
|
961
|
+
description?: string | undefined;
|
|
962
|
+
title?: string | undefined;
|
|
963
|
+
purpose?: string | undefined;
|
|
964
|
+
parentId?: string | undefined;
|
|
965
|
+
labels?: unknown;
|
|
966
|
+
fields?: unknown;
|
|
967
|
+
data?: unknown;
|
|
968
|
+
due?: string | undefined;
|
|
969
|
+
completed?: boolean | undefined;
|
|
970
|
+
users?: unknown;
|
|
971
|
+
}>;
|
|
972
|
+
deleteSeries: z.ZodObject<{
|
|
973
|
+
nestId: z.ZodString;
|
|
974
|
+
}, "strip", z.ZodTypeAny, {
|
|
975
|
+
nestId: string;
|
|
976
|
+
}, {
|
|
977
|
+
nestId: string;
|
|
978
|
+
}>;
|
|
877
979
|
getDailyPlan: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
878
980
|
getMe: z.ZodObject<{
|
|
879
981
|
fullWorkspaces: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1720,8 +1822,6 @@ export declare const toolDefinitions: ({
|
|
|
1720
1822
|
due?: undefined;
|
|
1721
1823
|
accountabilities?: undefined;
|
|
1722
1824
|
domains?: undefined;
|
|
1723
|
-
data?: undefined;
|
|
1724
|
-
completed?: undefined;
|
|
1725
1825
|
body?: undefined;
|
|
1726
1826
|
commentId?: undefined;
|
|
1727
1827
|
circleId?: undefined;
|
|
@@ -1732,6 +1832,7 @@ export declare const toolDefinitions: ({
|
|
|
1732
1832
|
user?: undefined;
|
|
1733
1833
|
key?: undefined;
|
|
1734
1834
|
threadId?: undefined;
|
|
1835
|
+
completed?: undefined;
|
|
1735
1836
|
depth?: undefined;
|
|
1736
1837
|
postId?: undefined;
|
|
1737
1838
|
reason?: undefined;
|
|
@@ -1746,11 +1847,17 @@ export declare const toolDefinitions: ({
|
|
|
1746
1847
|
from?: undefined;
|
|
1747
1848
|
to?: undefined;
|
|
1748
1849
|
completedAfter?: undefined;
|
|
1850
|
+
data?: undefined;
|
|
1749
1851
|
nestIds?: undefined;
|
|
1750
1852
|
position?: undefined;
|
|
1751
1853
|
relatedNestId?: undefined;
|
|
1752
1854
|
color?: undefined;
|
|
1753
1855
|
icon?: undefined;
|
|
1856
|
+
rrule?: undefined;
|
|
1857
|
+
direction?: undefined;
|
|
1858
|
+
cursor?: undefined;
|
|
1859
|
+
instant?: undefined;
|
|
1860
|
+
scope?: undefined;
|
|
1754
1861
|
fullWorkspaces?: undefined;
|
|
1755
1862
|
context?: undefined;
|
|
1756
1863
|
skip?: undefined;
|
|
@@ -1767,7 +1874,6 @@ export declare const toolDefinitions: ({
|
|
|
1767
1874
|
childId?: undefined;
|
|
1768
1875
|
status?: undefined;
|
|
1769
1876
|
relation?: undefined;
|
|
1770
|
-
direction?: undefined;
|
|
1771
1877
|
targetId?: undefined;
|
|
1772
1878
|
templateId?: undefined;
|
|
1773
1879
|
name?: undefined;
|
|
@@ -1786,6 +1892,7 @@ export declare const toolDefinitions: ({
|
|
|
1786
1892
|
agentUserId?: undefined;
|
|
1787
1893
|
message?: undefined;
|
|
1788
1894
|
fileId?: undefined;
|
|
1895
|
+
offset?: undefined;
|
|
1789
1896
|
contentType?: undefined;
|
|
1790
1897
|
content?: undefined;
|
|
1791
1898
|
dataBase64?: undefined;
|
|
@@ -1842,8 +1949,6 @@ export declare const toolDefinitions: ({
|
|
|
1842
1949
|
due?: undefined;
|
|
1843
1950
|
accountabilities?: undefined;
|
|
1844
1951
|
domains?: undefined;
|
|
1845
|
-
data?: undefined;
|
|
1846
|
-
completed?: undefined;
|
|
1847
1952
|
body?: undefined;
|
|
1848
1953
|
commentId?: undefined;
|
|
1849
1954
|
circleId?: undefined;
|
|
@@ -1854,6 +1959,7 @@ export declare const toolDefinitions: ({
|
|
|
1854
1959
|
user?: undefined;
|
|
1855
1960
|
key?: undefined;
|
|
1856
1961
|
threadId?: undefined;
|
|
1962
|
+
completed?: undefined;
|
|
1857
1963
|
depth?: undefined;
|
|
1858
1964
|
postId?: undefined;
|
|
1859
1965
|
reason?: undefined;
|
|
@@ -1868,11 +1974,17 @@ export declare const toolDefinitions: ({
|
|
|
1868
1974
|
from?: undefined;
|
|
1869
1975
|
to?: undefined;
|
|
1870
1976
|
completedAfter?: undefined;
|
|
1977
|
+
data?: undefined;
|
|
1871
1978
|
nestIds?: undefined;
|
|
1872
1979
|
position?: undefined;
|
|
1873
1980
|
relatedNestId?: undefined;
|
|
1874
1981
|
color?: undefined;
|
|
1875
1982
|
icon?: undefined;
|
|
1983
|
+
rrule?: undefined;
|
|
1984
|
+
direction?: undefined;
|
|
1985
|
+
cursor?: undefined;
|
|
1986
|
+
instant?: undefined;
|
|
1987
|
+
scope?: undefined;
|
|
1876
1988
|
fullWorkspaces?: undefined;
|
|
1877
1989
|
context?: undefined;
|
|
1878
1990
|
skip?: undefined;
|
|
@@ -1889,7 +2001,6 @@ export declare const toolDefinitions: ({
|
|
|
1889
2001
|
childId?: undefined;
|
|
1890
2002
|
status?: undefined;
|
|
1891
2003
|
relation?: undefined;
|
|
1892
|
-
direction?: undefined;
|
|
1893
2004
|
targetId?: undefined;
|
|
1894
2005
|
templateId?: undefined;
|
|
1895
2006
|
name?: undefined;
|
|
@@ -1908,6 +2019,7 @@ export declare const toolDefinitions: ({
|
|
|
1908
2019
|
agentUserId?: undefined;
|
|
1909
2020
|
message?: undefined;
|
|
1910
2021
|
fileId?: undefined;
|
|
2022
|
+
offset?: undefined;
|
|
1911
2023
|
contentType?: undefined;
|
|
1912
2024
|
content?: undefined;
|
|
1913
2025
|
dataBase64?: undefined;
|
|
@@ -1979,8 +2091,6 @@ export declare const toolDefinitions: ({
|
|
|
1979
2091
|
due?: undefined;
|
|
1980
2092
|
accountabilities?: undefined;
|
|
1981
2093
|
domains?: undefined;
|
|
1982
|
-
data?: undefined;
|
|
1983
|
-
completed?: undefined;
|
|
1984
2094
|
body?: undefined;
|
|
1985
2095
|
commentId?: undefined;
|
|
1986
2096
|
circleId?: undefined;
|
|
@@ -1991,6 +2101,7 @@ export declare const toolDefinitions: ({
|
|
|
1991
2101
|
user?: undefined;
|
|
1992
2102
|
key?: undefined;
|
|
1993
2103
|
threadId?: undefined;
|
|
2104
|
+
completed?: undefined;
|
|
1994
2105
|
depth?: undefined;
|
|
1995
2106
|
postId?: undefined;
|
|
1996
2107
|
reason?: undefined;
|
|
@@ -2005,11 +2116,17 @@ export declare const toolDefinitions: ({
|
|
|
2005
2116
|
from?: undefined;
|
|
2006
2117
|
to?: undefined;
|
|
2007
2118
|
completedAfter?: undefined;
|
|
2119
|
+
data?: undefined;
|
|
2008
2120
|
nestIds?: undefined;
|
|
2009
2121
|
position?: undefined;
|
|
2010
2122
|
relatedNestId?: undefined;
|
|
2011
2123
|
color?: undefined;
|
|
2012
2124
|
icon?: undefined;
|
|
2125
|
+
rrule?: undefined;
|
|
2126
|
+
direction?: undefined;
|
|
2127
|
+
cursor?: undefined;
|
|
2128
|
+
instant?: undefined;
|
|
2129
|
+
scope?: undefined;
|
|
2013
2130
|
fullWorkspaces?: undefined;
|
|
2014
2131
|
context?: undefined;
|
|
2015
2132
|
skip?: undefined;
|
|
@@ -2026,7 +2143,6 @@ export declare const toolDefinitions: ({
|
|
|
2026
2143
|
childId?: undefined;
|
|
2027
2144
|
status?: undefined;
|
|
2028
2145
|
relation?: undefined;
|
|
2029
|
-
direction?: undefined;
|
|
2030
2146
|
targetId?: undefined;
|
|
2031
2147
|
templateId?: undefined;
|
|
2032
2148
|
name?: undefined;
|
|
@@ -2045,6 +2161,7 @@ export declare const toolDefinitions: ({
|
|
|
2045
2161
|
agentUserId?: undefined;
|
|
2046
2162
|
message?: undefined;
|
|
2047
2163
|
fileId?: undefined;
|
|
2164
|
+
offset?: undefined;
|
|
2048
2165
|
contentType?: undefined;
|
|
2049
2166
|
content?: undefined;
|
|
2050
2167
|
dataBase64?: undefined;
|
|
@@ -2107,8 +2224,6 @@ export declare const toolDefinitions: ({
|
|
|
2107
2224
|
due?: undefined;
|
|
2108
2225
|
accountabilities?: undefined;
|
|
2109
2226
|
domains?: undefined;
|
|
2110
|
-
data?: undefined;
|
|
2111
|
-
completed?: undefined;
|
|
2112
2227
|
body?: undefined;
|
|
2113
2228
|
commentId?: undefined;
|
|
2114
2229
|
circleId?: undefined;
|
|
@@ -2119,6 +2234,7 @@ export declare const toolDefinitions: ({
|
|
|
2119
2234
|
user?: undefined;
|
|
2120
2235
|
key?: undefined;
|
|
2121
2236
|
threadId?: undefined;
|
|
2237
|
+
completed?: undefined;
|
|
2122
2238
|
depth?: undefined;
|
|
2123
2239
|
postId?: undefined;
|
|
2124
2240
|
reason?: undefined;
|
|
@@ -2133,11 +2249,17 @@ export declare const toolDefinitions: ({
|
|
|
2133
2249
|
from?: undefined;
|
|
2134
2250
|
to?: undefined;
|
|
2135
2251
|
completedAfter?: undefined;
|
|
2252
|
+
data?: undefined;
|
|
2136
2253
|
nestIds?: undefined;
|
|
2137
2254
|
position?: undefined;
|
|
2138
2255
|
relatedNestId?: undefined;
|
|
2139
2256
|
color?: undefined;
|
|
2140
2257
|
icon?: undefined;
|
|
2258
|
+
rrule?: undefined;
|
|
2259
|
+
direction?: undefined;
|
|
2260
|
+
cursor?: undefined;
|
|
2261
|
+
instant?: undefined;
|
|
2262
|
+
scope?: undefined;
|
|
2141
2263
|
fullWorkspaces?: undefined;
|
|
2142
2264
|
context?: undefined;
|
|
2143
2265
|
skip?: undefined;
|
|
@@ -2154,7 +2276,6 @@ export declare const toolDefinitions: ({
|
|
|
2154
2276
|
childId?: undefined;
|
|
2155
2277
|
status?: undefined;
|
|
2156
2278
|
relation?: undefined;
|
|
2157
|
-
direction?: undefined;
|
|
2158
2279
|
targetId?: undefined;
|
|
2159
2280
|
templateId?: undefined;
|
|
2160
2281
|
name?: undefined;
|
|
@@ -2173,6 +2294,7 @@ export declare const toolDefinitions: ({
|
|
|
2173
2294
|
agentUserId?: undefined;
|
|
2174
2295
|
message?: undefined;
|
|
2175
2296
|
fileId?: undefined;
|
|
2297
|
+
offset?: undefined;
|
|
2176
2298
|
contentType?: undefined;
|
|
2177
2299
|
content?: undefined;
|
|
2178
2300
|
dataBase64?: undefined;
|
|
@@ -2258,8 +2380,6 @@ export declare const toolDefinitions: ({
|
|
|
2258
2380
|
due?: undefined;
|
|
2259
2381
|
accountabilities?: undefined;
|
|
2260
2382
|
domains?: undefined;
|
|
2261
|
-
data?: undefined;
|
|
2262
|
-
completed?: undefined;
|
|
2263
2383
|
body?: undefined;
|
|
2264
2384
|
commentId?: undefined;
|
|
2265
2385
|
circleId?: undefined;
|
|
@@ -2270,6 +2390,7 @@ export declare const toolDefinitions: ({
|
|
|
2270
2390
|
user?: undefined;
|
|
2271
2391
|
key?: undefined;
|
|
2272
2392
|
threadId?: undefined;
|
|
2393
|
+
completed?: undefined;
|
|
2273
2394
|
depth?: undefined;
|
|
2274
2395
|
postId?: undefined;
|
|
2275
2396
|
reason?: undefined;
|
|
@@ -2284,11 +2405,17 @@ export declare const toolDefinitions: ({
|
|
|
2284
2405
|
from?: undefined;
|
|
2285
2406
|
to?: undefined;
|
|
2286
2407
|
completedAfter?: undefined;
|
|
2408
|
+
data?: undefined;
|
|
2287
2409
|
nestIds?: undefined;
|
|
2288
2410
|
position?: undefined;
|
|
2289
2411
|
relatedNestId?: undefined;
|
|
2290
2412
|
color?: undefined;
|
|
2291
2413
|
icon?: undefined;
|
|
2414
|
+
rrule?: undefined;
|
|
2415
|
+
direction?: undefined;
|
|
2416
|
+
cursor?: undefined;
|
|
2417
|
+
instant?: undefined;
|
|
2418
|
+
scope?: undefined;
|
|
2292
2419
|
fullWorkspaces?: undefined;
|
|
2293
2420
|
context?: undefined;
|
|
2294
2421
|
skip?: undefined;
|
|
@@ -2305,7 +2432,6 @@ export declare const toolDefinitions: ({
|
|
|
2305
2432
|
childId?: undefined;
|
|
2306
2433
|
status?: undefined;
|
|
2307
2434
|
relation?: undefined;
|
|
2308
|
-
direction?: undefined;
|
|
2309
2435
|
targetId?: undefined;
|
|
2310
2436
|
templateId?: undefined;
|
|
2311
2437
|
name?: undefined;
|
|
@@ -2324,6 +2450,7 @@ export declare const toolDefinitions: ({
|
|
|
2324
2450
|
agentUserId?: undefined;
|
|
2325
2451
|
message?: undefined;
|
|
2326
2452
|
fileId?: undefined;
|
|
2453
|
+
offset?: undefined;
|
|
2327
2454
|
contentType?: undefined;
|
|
2328
2455
|
content?: undefined;
|
|
2329
2456
|
dataBase64?: undefined;
|
|
@@ -2407,8 +2534,6 @@ export declare const toolDefinitions: ({
|
|
|
2407
2534
|
due?: undefined;
|
|
2408
2535
|
accountabilities?: undefined;
|
|
2409
2536
|
domains?: undefined;
|
|
2410
|
-
data?: undefined;
|
|
2411
|
-
completed?: undefined;
|
|
2412
2537
|
body?: undefined;
|
|
2413
2538
|
commentId?: undefined;
|
|
2414
2539
|
circleId?: undefined;
|
|
@@ -2419,6 +2544,7 @@ export declare const toolDefinitions: ({
|
|
|
2419
2544
|
user?: undefined;
|
|
2420
2545
|
key?: undefined;
|
|
2421
2546
|
threadId?: undefined;
|
|
2547
|
+
completed?: undefined;
|
|
2422
2548
|
depth?: undefined;
|
|
2423
2549
|
postId?: undefined;
|
|
2424
2550
|
reason?: undefined;
|
|
@@ -2433,11 +2559,17 @@ export declare const toolDefinitions: ({
|
|
|
2433
2559
|
from?: undefined;
|
|
2434
2560
|
to?: undefined;
|
|
2435
2561
|
completedAfter?: undefined;
|
|
2562
|
+
data?: undefined;
|
|
2436
2563
|
nestIds?: undefined;
|
|
2437
2564
|
position?: undefined;
|
|
2438
2565
|
relatedNestId?: undefined;
|
|
2439
2566
|
color?: undefined;
|
|
2440
2567
|
icon?: undefined;
|
|
2568
|
+
rrule?: undefined;
|
|
2569
|
+
direction?: undefined;
|
|
2570
|
+
cursor?: undefined;
|
|
2571
|
+
instant?: undefined;
|
|
2572
|
+
scope?: undefined;
|
|
2441
2573
|
fullWorkspaces?: undefined;
|
|
2442
2574
|
context?: undefined;
|
|
2443
2575
|
skip?: undefined;
|
|
@@ -2454,7 +2586,6 @@ export declare const toolDefinitions: ({
|
|
|
2454
2586
|
childId?: undefined;
|
|
2455
2587
|
status?: undefined;
|
|
2456
2588
|
relation?: undefined;
|
|
2457
|
-
direction?: undefined;
|
|
2458
2589
|
targetId?: undefined;
|
|
2459
2590
|
templateId?: undefined;
|
|
2460
2591
|
name?: undefined;
|
|
@@ -2473,6 +2604,7 @@ export declare const toolDefinitions: ({
|
|
|
2473
2604
|
agentUserId?: undefined;
|
|
2474
2605
|
message?: undefined;
|
|
2475
2606
|
fileId?: undefined;
|
|
2607
|
+
offset?: undefined;
|
|
2476
2608
|
contentType?: undefined;
|
|
2477
2609
|
content?: undefined;
|
|
2478
2610
|
dataBase64?: undefined;
|
|
@@ -2564,8 +2696,6 @@ export declare const toolDefinitions: ({
|
|
|
2564
2696
|
due?: undefined;
|
|
2565
2697
|
accountabilities?: undefined;
|
|
2566
2698
|
domains?: undefined;
|
|
2567
|
-
data?: undefined;
|
|
2568
|
-
completed?: undefined;
|
|
2569
2699
|
body?: undefined;
|
|
2570
2700
|
commentId?: undefined;
|
|
2571
2701
|
circleId?: undefined;
|
|
@@ -2576,6 +2706,7 @@ export declare const toolDefinitions: ({
|
|
|
2576
2706
|
user?: undefined;
|
|
2577
2707
|
key?: undefined;
|
|
2578
2708
|
threadId?: undefined;
|
|
2709
|
+
completed?: undefined;
|
|
2579
2710
|
depth?: undefined;
|
|
2580
2711
|
postId?: undefined;
|
|
2581
2712
|
reason?: undefined;
|
|
@@ -2590,11 +2721,17 @@ export declare const toolDefinitions: ({
|
|
|
2590
2721
|
from?: undefined;
|
|
2591
2722
|
to?: undefined;
|
|
2592
2723
|
completedAfter?: undefined;
|
|
2724
|
+
data?: undefined;
|
|
2593
2725
|
nestIds?: undefined;
|
|
2594
2726
|
position?: undefined;
|
|
2595
2727
|
relatedNestId?: undefined;
|
|
2596
2728
|
color?: undefined;
|
|
2597
2729
|
icon?: undefined;
|
|
2730
|
+
rrule?: undefined;
|
|
2731
|
+
direction?: undefined;
|
|
2732
|
+
cursor?: undefined;
|
|
2733
|
+
instant?: undefined;
|
|
2734
|
+
scope?: undefined;
|
|
2598
2735
|
fullWorkspaces?: undefined;
|
|
2599
2736
|
context?: undefined;
|
|
2600
2737
|
skip?: undefined;
|
|
@@ -2611,7 +2748,6 @@ export declare const toolDefinitions: ({
|
|
|
2611
2748
|
childId?: undefined;
|
|
2612
2749
|
status?: undefined;
|
|
2613
2750
|
relation?: undefined;
|
|
2614
|
-
direction?: undefined;
|
|
2615
2751
|
targetId?: undefined;
|
|
2616
2752
|
templateId?: undefined;
|
|
2617
2753
|
name?: undefined;
|
|
@@ -2630,6 +2766,7 @@ export declare const toolDefinitions: ({
|
|
|
2630
2766
|
agentUserId?: undefined;
|
|
2631
2767
|
message?: undefined;
|
|
2632
2768
|
fileId?: undefined;
|
|
2769
|
+
offset?: undefined;
|
|
2633
2770
|
contentType?: undefined;
|
|
2634
2771
|
content?: undefined;
|
|
2635
2772
|
dataBase64?: undefined;
|
|
@@ -2695,8 +2832,6 @@ export declare const toolDefinitions: ({
|
|
|
2695
2832
|
due?: undefined;
|
|
2696
2833
|
accountabilities?: undefined;
|
|
2697
2834
|
domains?: undefined;
|
|
2698
|
-
data?: undefined;
|
|
2699
|
-
completed?: undefined;
|
|
2700
2835
|
body?: undefined;
|
|
2701
2836
|
commentId?: undefined;
|
|
2702
2837
|
circleId?: undefined;
|
|
@@ -2707,6 +2842,7 @@ export declare const toolDefinitions: ({
|
|
|
2707
2842
|
user?: undefined;
|
|
2708
2843
|
key?: undefined;
|
|
2709
2844
|
threadId?: undefined;
|
|
2845
|
+
completed?: undefined;
|
|
2710
2846
|
depth?: undefined;
|
|
2711
2847
|
postId?: undefined;
|
|
2712
2848
|
reason?: undefined;
|
|
@@ -2721,11 +2857,17 @@ export declare const toolDefinitions: ({
|
|
|
2721
2857
|
from?: undefined;
|
|
2722
2858
|
to?: undefined;
|
|
2723
2859
|
completedAfter?: undefined;
|
|
2860
|
+
data?: undefined;
|
|
2724
2861
|
nestIds?: undefined;
|
|
2725
2862
|
position?: undefined;
|
|
2726
2863
|
relatedNestId?: undefined;
|
|
2727
2864
|
color?: undefined;
|
|
2728
2865
|
icon?: undefined;
|
|
2866
|
+
rrule?: undefined;
|
|
2867
|
+
direction?: undefined;
|
|
2868
|
+
cursor?: undefined;
|
|
2869
|
+
instant?: undefined;
|
|
2870
|
+
scope?: undefined;
|
|
2729
2871
|
fullWorkspaces?: undefined;
|
|
2730
2872
|
context?: undefined;
|
|
2731
2873
|
skip?: undefined;
|
|
@@ -2742,7 +2884,6 @@ export declare const toolDefinitions: ({
|
|
|
2742
2884
|
childId?: undefined;
|
|
2743
2885
|
status?: undefined;
|
|
2744
2886
|
relation?: undefined;
|
|
2745
|
-
direction?: undefined;
|
|
2746
2887
|
targetId?: undefined;
|
|
2747
2888
|
templateId?: undefined;
|
|
2748
2889
|
name?: undefined;
|
|
@@ -2761,6 +2902,7 @@ export declare const toolDefinitions: ({
|
|
|
2761
2902
|
agentUserId?: undefined;
|
|
2762
2903
|
message?: undefined;
|
|
2763
2904
|
fileId?: undefined;
|
|
2905
|
+
offset?: undefined;
|
|
2764
2906
|
contentType?: undefined;
|
|
2765
2907
|
content?: undefined;
|
|
2766
2908
|
dataBase64?: undefined;
|
|
@@ -2855,8 +2997,6 @@ export declare const toolDefinitions: ({
|
|
|
2855
2997
|
due?: undefined;
|
|
2856
2998
|
accountabilities?: undefined;
|
|
2857
2999
|
domains?: undefined;
|
|
2858
|
-
data?: undefined;
|
|
2859
|
-
completed?: undefined;
|
|
2860
3000
|
body?: undefined;
|
|
2861
3001
|
commentId?: undefined;
|
|
2862
3002
|
circleId?: undefined;
|
|
@@ -2867,6 +3007,7 @@ export declare const toolDefinitions: ({
|
|
|
2867
3007
|
user?: undefined;
|
|
2868
3008
|
key?: undefined;
|
|
2869
3009
|
threadId?: undefined;
|
|
3010
|
+
completed?: undefined;
|
|
2870
3011
|
depth?: undefined;
|
|
2871
3012
|
postId?: undefined;
|
|
2872
3013
|
reason?: undefined;
|
|
@@ -2881,11 +3022,17 @@ export declare const toolDefinitions: ({
|
|
|
2881
3022
|
from?: undefined;
|
|
2882
3023
|
to?: undefined;
|
|
2883
3024
|
completedAfter?: undefined;
|
|
3025
|
+
data?: undefined;
|
|
2884
3026
|
nestIds?: undefined;
|
|
2885
3027
|
position?: undefined;
|
|
2886
3028
|
relatedNestId?: undefined;
|
|
2887
3029
|
color?: undefined;
|
|
2888
3030
|
icon?: undefined;
|
|
3031
|
+
rrule?: undefined;
|
|
3032
|
+
direction?: undefined;
|
|
3033
|
+
cursor?: undefined;
|
|
3034
|
+
instant?: undefined;
|
|
3035
|
+
scope?: undefined;
|
|
2889
3036
|
fullWorkspaces?: undefined;
|
|
2890
3037
|
context?: undefined;
|
|
2891
3038
|
skip?: undefined;
|
|
@@ -2902,7 +3049,6 @@ export declare const toolDefinitions: ({
|
|
|
2902
3049
|
childId?: undefined;
|
|
2903
3050
|
status?: undefined;
|
|
2904
3051
|
relation?: undefined;
|
|
2905
|
-
direction?: undefined;
|
|
2906
3052
|
targetId?: undefined;
|
|
2907
3053
|
templateId?: undefined;
|
|
2908
3054
|
name?: undefined;
|
|
@@ -2921,6 +3067,7 @@ export declare const toolDefinitions: ({
|
|
|
2921
3067
|
agentUserId?: undefined;
|
|
2922
3068
|
message?: undefined;
|
|
2923
3069
|
fileId?: undefined;
|
|
3070
|
+
offset?: undefined;
|
|
2924
3071
|
contentType?: undefined;
|
|
2925
3072
|
content?: undefined;
|
|
2926
3073
|
dataBase64?: undefined;
|
|
@@ -2993,8 +3140,6 @@ export declare const toolDefinitions: ({
|
|
|
2993
3140
|
due?: undefined;
|
|
2994
3141
|
accountabilities?: undefined;
|
|
2995
3142
|
domains?: undefined;
|
|
2996
|
-
data?: undefined;
|
|
2997
|
-
completed?: undefined;
|
|
2998
3143
|
body?: undefined;
|
|
2999
3144
|
commentId?: undefined;
|
|
3000
3145
|
circleId?: undefined;
|
|
@@ -3005,6 +3150,7 @@ export declare const toolDefinitions: ({
|
|
|
3005
3150
|
user?: undefined;
|
|
3006
3151
|
key?: undefined;
|
|
3007
3152
|
threadId?: undefined;
|
|
3153
|
+
completed?: undefined;
|
|
3008
3154
|
depth?: undefined;
|
|
3009
3155
|
postId?: undefined;
|
|
3010
3156
|
reason?: undefined;
|
|
@@ -3019,11 +3165,17 @@ export declare const toolDefinitions: ({
|
|
|
3019
3165
|
from?: undefined;
|
|
3020
3166
|
to?: undefined;
|
|
3021
3167
|
completedAfter?: undefined;
|
|
3168
|
+
data?: undefined;
|
|
3022
3169
|
nestIds?: undefined;
|
|
3023
3170
|
position?: undefined;
|
|
3024
3171
|
relatedNestId?: undefined;
|
|
3025
3172
|
color?: undefined;
|
|
3026
3173
|
icon?: undefined;
|
|
3174
|
+
rrule?: undefined;
|
|
3175
|
+
direction?: undefined;
|
|
3176
|
+
cursor?: undefined;
|
|
3177
|
+
instant?: undefined;
|
|
3178
|
+
scope?: undefined;
|
|
3027
3179
|
fullWorkspaces?: undefined;
|
|
3028
3180
|
context?: undefined;
|
|
3029
3181
|
skip?: undefined;
|
|
@@ -3040,7 +3192,6 @@ export declare const toolDefinitions: ({
|
|
|
3040
3192
|
childId?: undefined;
|
|
3041
3193
|
status?: undefined;
|
|
3042
3194
|
relation?: undefined;
|
|
3043
|
-
direction?: undefined;
|
|
3044
3195
|
targetId?: undefined;
|
|
3045
3196
|
templateId?: undefined;
|
|
3046
3197
|
name?: undefined;
|
|
@@ -3059,6 +3210,7 @@ export declare const toolDefinitions: ({
|
|
|
3059
3210
|
agentUserId?: undefined;
|
|
3060
3211
|
message?: undefined;
|
|
3061
3212
|
fileId?: undefined;
|
|
3213
|
+
offset?: undefined;
|
|
3062
3214
|
contentType?: undefined;
|
|
3063
3215
|
content?: undefined;
|
|
3064
3216
|
dataBase64?: undefined;
|
|
@@ -3121,8 +3273,6 @@ export declare const toolDefinitions: ({
|
|
|
3121
3273
|
due?: undefined;
|
|
3122
3274
|
accountabilities?: undefined;
|
|
3123
3275
|
domains?: undefined;
|
|
3124
|
-
data?: undefined;
|
|
3125
|
-
completed?: undefined;
|
|
3126
3276
|
body?: undefined;
|
|
3127
3277
|
commentId?: undefined;
|
|
3128
3278
|
circleId?: undefined;
|
|
@@ -3133,6 +3283,7 @@ export declare const toolDefinitions: ({
|
|
|
3133
3283
|
user?: undefined;
|
|
3134
3284
|
key?: undefined;
|
|
3135
3285
|
threadId?: undefined;
|
|
3286
|
+
completed?: undefined;
|
|
3136
3287
|
depth?: undefined;
|
|
3137
3288
|
postId?: undefined;
|
|
3138
3289
|
reason?: undefined;
|
|
@@ -3147,11 +3298,17 @@ export declare const toolDefinitions: ({
|
|
|
3147
3298
|
from?: undefined;
|
|
3148
3299
|
to?: undefined;
|
|
3149
3300
|
completedAfter?: undefined;
|
|
3301
|
+
data?: undefined;
|
|
3150
3302
|
nestIds?: undefined;
|
|
3151
3303
|
position?: undefined;
|
|
3152
3304
|
relatedNestId?: undefined;
|
|
3153
3305
|
color?: undefined;
|
|
3154
3306
|
icon?: undefined;
|
|
3307
|
+
rrule?: undefined;
|
|
3308
|
+
direction?: undefined;
|
|
3309
|
+
cursor?: undefined;
|
|
3310
|
+
instant?: undefined;
|
|
3311
|
+
scope?: undefined;
|
|
3155
3312
|
fullWorkspaces?: undefined;
|
|
3156
3313
|
context?: undefined;
|
|
3157
3314
|
skip?: undefined;
|
|
@@ -3168,7 +3325,6 @@ export declare const toolDefinitions: ({
|
|
|
3168
3325
|
childId?: undefined;
|
|
3169
3326
|
status?: undefined;
|
|
3170
3327
|
relation?: undefined;
|
|
3171
|
-
direction?: undefined;
|
|
3172
3328
|
targetId?: undefined;
|
|
3173
3329
|
templateId?: undefined;
|
|
3174
3330
|
name?: undefined;
|
|
@@ -3187,6 +3343,7 @@ export declare const toolDefinitions: ({
|
|
|
3187
3343
|
agentUserId?: undefined;
|
|
3188
3344
|
message?: undefined;
|
|
3189
3345
|
fileId?: undefined;
|
|
3346
|
+
offset?: undefined;
|
|
3190
3347
|
contentType?: undefined;
|
|
3191
3348
|
content?: undefined;
|
|
3192
3349
|
dataBase64?: undefined;
|
|
@@ -3288,8 +3445,6 @@ export declare const toolDefinitions: ({
|
|
|
3288
3445
|
whoCan?: undefined;
|
|
3289
3446
|
sampleSize?: undefined;
|
|
3290
3447
|
path?: undefined;
|
|
3291
|
-
data?: undefined;
|
|
3292
|
-
completed?: undefined;
|
|
3293
3448
|
body?: undefined;
|
|
3294
3449
|
commentId?: undefined;
|
|
3295
3450
|
circleId?: undefined;
|
|
@@ -3300,6 +3455,7 @@ export declare const toolDefinitions: ({
|
|
|
3300
3455
|
user?: undefined;
|
|
3301
3456
|
key?: undefined;
|
|
3302
3457
|
threadId?: undefined;
|
|
3458
|
+
completed?: undefined;
|
|
3303
3459
|
depth?: undefined;
|
|
3304
3460
|
postId?: undefined;
|
|
3305
3461
|
reason?: undefined;
|
|
@@ -3314,11 +3470,17 @@ export declare const toolDefinitions: ({
|
|
|
3314
3470
|
from?: undefined;
|
|
3315
3471
|
to?: undefined;
|
|
3316
3472
|
completedAfter?: undefined;
|
|
3473
|
+
data?: undefined;
|
|
3317
3474
|
nestIds?: undefined;
|
|
3318
3475
|
position?: undefined;
|
|
3319
3476
|
relatedNestId?: undefined;
|
|
3320
3477
|
color?: undefined;
|
|
3321
3478
|
icon?: undefined;
|
|
3479
|
+
rrule?: undefined;
|
|
3480
|
+
direction?: undefined;
|
|
3481
|
+
cursor?: undefined;
|
|
3482
|
+
instant?: undefined;
|
|
3483
|
+
scope?: undefined;
|
|
3322
3484
|
fullWorkspaces?: undefined;
|
|
3323
3485
|
context?: undefined;
|
|
3324
3486
|
skip?: undefined;
|
|
@@ -3335,7 +3497,6 @@ export declare const toolDefinitions: ({
|
|
|
3335
3497
|
childId?: undefined;
|
|
3336
3498
|
status?: undefined;
|
|
3337
3499
|
relation?: undefined;
|
|
3338
|
-
direction?: undefined;
|
|
3339
3500
|
targetId?: undefined;
|
|
3340
3501
|
templateId?: undefined;
|
|
3341
3502
|
name?: undefined;
|
|
@@ -3354,6 +3515,7 @@ export declare const toolDefinitions: ({
|
|
|
3354
3515
|
agentUserId?: undefined;
|
|
3355
3516
|
message?: undefined;
|
|
3356
3517
|
fileId?: undefined;
|
|
3518
|
+
offset?: undefined;
|
|
3357
3519
|
contentType?: undefined;
|
|
3358
3520
|
content?: undefined;
|
|
3359
3521
|
dataBase64?: undefined;
|
|
@@ -3370,7 +3532,21 @@ export declare const toolDefinitions: ({
|
|
|
3370
3532
|
inputSchema: {
|
|
3371
3533
|
type: "object";
|
|
3372
3534
|
properties: {
|
|
3373
|
-
|
|
3535
|
+
accountabilities: {
|
|
3536
|
+
type: string;
|
|
3537
|
+
items: {
|
|
3538
|
+
type: string;
|
|
3539
|
+
};
|
|
3540
|
+
description: string;
|
|
3541
|
+
};
|
|
3542
|
+
domains: {
|
|
3543
|
+
type: string;
|
|
3544
|
+
items: {
|
|
3545
|
+
type: string;
|
|
3546
|
+
};
|
|
3547
|
+
description: string;
|
|
3548
|
+
};
|
|
3549
|
+
workspaceId: {
|
|
3374
3550
|
type: string;
|
|
3375
3551
|
description: string;
|
|
3376
3552
|
};
|
|
@@ -3420,21 +3596,7 @@ export declare const toolDefinitions: ({
|
|
|
3420
3596
|
type: string;
|
|
3421
3597
|
description: string;
|
|
3422
3598
|
};
|
|
3423
|
-
|
|
3424
|
-
type: string;
|
|
3425
|
-
items: {
|
|
3426
|
-
type: string;
|
|
3427
|
-
};
|
|
3428
|
-
description: string;
|
|
3429
|
-
};
|
|
3430
|
-
domains: {
|
|
3431
|
-
type: string;
|
|
3432
|
-
items: {
|
|
3433
|
-
type: string;
|
|
3434
|
-
};
|
|
3435
|
-
description: string;
|
|
3436
|
-
};
|
|
3437
|
-
workspaceId: {
|
|
3599
|
+
nestId: {
|
|
3438
3600
|
type: string;
|
|
3439
3601
|
description: string;
|
|
3440
3602
|
};
|
|
@@ -3495,6 +3657,11 @@ export declare const toolDefinitions: ({
|
|
|
3495
3657
|
relatedNestId?: undefined;
|
|
3496
3658
|
color?: undefined;
|
|
3497
3659
|
icon?: undefined;
|
|
3660
|
+
rrule?: undefined;
|
|
3661
|
+
direction?: undefined;
|
|
3662
|
+
cursor?: undefined;
|
|
3663
|
+
instant?: undefined;
|
|
3664
|
+
scope?: undefined;
|
|
3498
3665
|
fullWorkspaces?: undefined;
|
|
3499
3666
|
context?: undefined;
|
|
3500
3667
|
skip?: undefined;
|
|
@@ -3511,7 +3678,6 @@ export declare const toolDefinitions: ({
|
|
|
3511
3678
|
childId?: undefined;
|
|
3512
3679
|
status?: undefined;
|
|
3513
3680
|
relation?: undefined;
|
|
3514
|
-
direction?: undefined;
|
|
3515
3681
|
targetId?: undefined;
|
|
3516
3682
|
templateId?: undefined;
|
|
3517
3683
|
name?: undefined;
|
|
@@ -3530,6 +3696,7 @@ export declare const toolDefinitions: ({
|
|
|
3530
3696
|
agentUserId?: undefined;
|
|
3531
3697
|
message?: undefined;
|
|
3532
3698
|
fileId?: undefined;
|
|
3699
|
+
offset?: undefined;
|
|
3533
3700
|
contentType?: undefined;
|
|
3534
3701
|
content?: undefined;
|
|
3535
3702
|
dataBase64?: undefined;
|
|
@@ -3589,8 +3756,6 @@ export declare const toolDefinitions: ({
|
|
|
3589
3756
|
due?: undefined;
|
|
3590
3757
|
accountabilities?: undefined;
|
|
3591
3758
|
domains?: undefined;
|
|
3592
|
-
data?: undefined;
|
|
3593
|
-
completed?: undefined;
|
|
3594
3759
|
body?: undefined;
|
|
3595
3760
|
commentId?: undefined;
|
|
3596
3761
|
circleId?: undefined;
|
|
@@ -3601,6 +3766,7 @@ export declare const toolDefinitions: ({
|
|
|
3601
3766
|
user?: undefined;
|
|
3602
3767
|
key?: undefined;
|
|
3603
3768
|
threadId?: undefined;
|
|
3769
|
+
completed?: undefined;
|
|
3604
3770
|
depth?: undefined;
|
|
3605
3771
|
postId?: undefined;
|
|
3606
3772
|
reason?: undefined;
|
|
@@ -3615,11 +3781,17 @@ export declare const toolDefinitions: ({
|
|
|
3615
3781
|
from?: undefined;
|
|
3616
3782
|
to?: undefined;
|
|
3617
3783
|
completedAfter?: undefined;
|
|
3784
|
+
data?: undefined;
|
|
3618
3785
|
nestIds?: undefined;
|
|
3619
3786
|
position?: undefined;
|
|
3620
3787
|
relatedNestId?: undefined;
|
|
3621
3788
|
color?: undefined;
|
|
3622
3789
|
icon?: undefined;
|
|
3790
|
+
rrule?: undefined;
|
|
3791
|
+
direction?: undefined;
|
|
3792
|
+
cursor?: undefined;
|
|
3793
|
+
instant?: undefined;
|
|
3794
|
+
scope?: undefined;
|
|
3623
3795
|
fullWorkspaces?: undefined;
|
|
3624
3796
|
context?: undefined;
|
|
3625
3797
|
skip?: undefined;
|
|
@@ -3636,7 +3808,6 @@ export declare const toolDefinitions: ({
|
|
|
3636
3808
|
childId?: undefined;
|
|
3637
3809
|
status?: undefined;
|
|
3638
3810
|
relation?: undefined;
|
|
3639
|
-
direction?: undefined;
|
|
3640
3811
|
targetId?: undefined;
|
|
3641
3812
|
templateId?: undefined;
|
|
3642
3813
|
name?: undefined;
|
|
@@ -3655,6 +3826,7 @@ export declare const toolDefinitions: ({
|
|
|
3655
3826
|
agentUserId?: undefined;
|
|
3656
3827
|
message?: undefined;
|
|
3657
3828
|
fileId?: undefined;
|
|
3829
|
+
offset?: undefined;
|
|
3658
3830
|
contentType?: undefined;
|
|
3659
3831
|
content?: undefined;
|
|
3660
3832
|
dataBase64?: undefined;
|
|
@@ -3724,8 +3896,6 @@ export declare const toolDefinitions: ({
|
|
|
3724
3896
|
due?: undefined;
|
|
3725
3897
|
accountabilities?: undefined;
|
|
3726
3898
|
domains?: undefined;
|
|
3727
|
-
data?: undefined;
|
|
3728
|
-
completed?: undefined;
|
|
3729
3899
|
commentId?: undefined;
|
|
3730
3900
|
circleId?: undefined;
|
|
3731
3901
|
userId?: undefined;
|
|
@@ -3735,6 +3905,7 @@ export declare const toolDefinitions: ({
|
|
|
3735
3905
|
user?: undefined;
|
|
3736
3906
|
key?: undefined;
|
|
3737
3907
|
threadId?: undefined;
|
|
3908
|
+
completed?: undefined;
|
|
3738
3909
|
depth?: undefined;
|
|
3739
3910
|
postId?: undefined;
|
|
3740
3911
|
reason?: undefined;
|
|
@@ -3749,11 +3920,17 @@ export declare const toolDefinitions: ({
|
|
|
3749
3920
|
from?: undefined;
|
|
3750
3921
|
to?: undefined;
|
|
3751
3922
|
completedAfter?: undefined;
|
|
3923
|
+
data?: undefined;
|
|
3752
3924
|
nestIds?: undefined;
|
|
3753
3925
|
position?: undefined;
|
|
3754
3926
|
relatedNestId?: undefined;
|
|
3755
3927
|
color?: undefined;
|
|
3756
3928
|
icon?: undefined;
|
|
3929
|
+
rrule?: undefined;
|
|
3930
|
+
direction?: undefined;
|
|
3931
|
+
cursor?: undefined;
|
|
3932
|
+
instant?: undefined;
|
|
3933
|
+
scope?: undefined;
|
|
3757
3934
|
fullWorkspaces?: undefined;
|
|
3758
3935
|
context?: undefined;
|
|
3759
3936
|
skip?: undefined;
|
|
@@ -3770,7 +3947,6 @@ export declare const toolDefinitions: ({
|
|
|
3770
3947
|
childId?: undefined;
|
|
3771
3948
|
status?: undefined;
|
|
3772
3949
|
relation?: undefined;
|
|
3773
|
-
direction?: undefined;
|
|
3774
3950
|
targetId?: undefined;
|
|
3775
3951
|
templateId?: undefined;
|
|
3776
3952
|
name?: undefined;
|
|
@@ -3789,6 +3965,7 @@ export declare const toolDefinitions: ({
|
|
|
3789
3965
|
agentUserId?: undefined;
|
|
3790
3966
|
message?: undefined;
|
|
3791
3967
|
fileId?: undefined;
|
|
3968
|
+
offset?: undefined;
|
|
3792
3969
|
contentType?: undefined;
|
|
3793
3970
|
content?: undefined;
|
|
3794
3971
|
dataBase64?: undefined;
|
|
@@ -3859,8 +4036,6 @@ export declare const toolDefinitions: ({
|
|
|
3859
4036
|
due?: undefined;
|
|
3860
4037
|
accountabilities?: undefined;
|
|
3861
4038
|
domains?: undefined;
|
|
3862
|
-
data?: undefined;
|
|
3863
|
-
completed?: undefined;
|
|
3864
4039
|
circleId?: undefined;
|
|
3865
4040
|
userId?: undefined;
|
|
3866
4041
|
withUser?: undefined;
|
|
@@ -3869,6 +4044,7 @@ export declare const toolDefinitions: ({
|
|
|
3869
4044
|
user?: undefined;
|
|
3870
4045
|
key?: undefined;
|
|
3871
4046
|
threadId?: undefined;
|
|
4047
|
+
completed?: undefined;
|
|
3872
4048
|
depth?: undefined;
|
|
3873
4049
|
postId?: undefined;
|
|
3874
4050
|
reason?: undefined;
|
|
@@ -3883,11 +4059,17 @@ export declare const toolDefinitions: ({
|
|
|
3883
4059
|
from?: undefined;
|
|
3884
4060
|
to?: undefined;
|
|
3885
4061
|
completedAfter?: undefined;
|
|
4062
|
+
data?: undefined;
|
|
3886
4063
|
nestIds?: undefined;
|
|
3887
4064
|
position?: undefined;
|
|
3888
4065
|
relatedNestId?: undefined;
|
|
3889
4066
|
color?: undefined;
|
|
3890
4067
|
icon?: undefined;
|
|
4068
|
+
rrule?: undefined;
|
|
4069
|
+
direction?: undefined;
|
|
4070
|
+
cursor?: undefined;
|
|
4071
|
+
instant?: undefined;
|
|
4072
|
+
scope?: undefined;
|
|
3891
4073
|
fullWorkspaces?: undefined;
|
|
3892
4074
|
context?: undefined;
|
|
3893
4075
|
skip?: undefined;
|
|
@@ -3904,7 +4086,6 @@ export declare const toolDefinitions: ({
|
|
|
3904
4086
|
childId?: undefined;
|
|
3905
4087
|
status?: undefined;
|
|
3906
4088
|
relation?: undefined;
|
|
3907
|
-
direction?: undefined;
|
|
3908
4089
|
targetId?: undefined;
|
|
3909
4090
|
templateId?: undefined;
|
|
3910
4091
|
name?: undefined;
|
|
@@ -3923,6 +4104,7 @@ export declare const toolDefinitions: ({
|
|
|
3923
4104
|
agentUserId?: undefined;
|
|
3924
4105
|
message?: undefined;
|
|
3925
4106
|
fileId?: undefined;
|
|
4107
|
+
offset?: undefined;
|
|
3926
4108
|
contentType?: undefined;
|
|
3927
4109
|
content?: undefined;
|
|
3928
4110
|
dataBase64?: undefined;
|
|
@@ -3983,8 +4165,6 @@ export declare const toolDefinitions: ({
|
|
|
3983
4165
|
due?: undefined;
|
|
3984
4166
|
accountabilities?: undefined;
|
|
3985
4167
|
domains?: undefined;
|
|
3986
|
-
data?: undefined;
|
|
3987
|
-
completed?: undefined;
|
|
3988
4168
|
body?: undefined;
|
|
3989
4169
|
circleId?: undefined;
|
|
3990
4170
|
userId?: undefined;
|
|
@@ -3994,6 +4174,7 @@ export declare const toolDefinitions: ({
|
|
|
3994
4174
|
user?: undefined;
|
|
3995
4175
|
key?: undefined;
|
|
3996
4176
|
threadId?: undefined;
|
|
4177
|
+
completed?: undefined;
|
|
3997
4178
|
depth?: undefined;
|
|
3998
4179
|
postId?: undefined;
|
|
3999
4180
|
reason?: undefined;
|
|
@@ -4008,11 +4189,17 @@ export declare const toolDefinitions: ({
|
|
|
4008
4189
|
from?: undefined;
|
|
4009
4190
|
to?: undefined;
|
|
4010
4191
|
completedAfter?: undefined;
|
|
4192
|
+
data?: undefined;
|
|
4011
4193
|
nestIds?: undefined;
|
|
4012
4194
|
position?: undefined;
|
|
4013
4195
|
relatedNestId?: undefined;
|
|
4014
4196
|
color?: undefined;
|
|
4015
4197
|
icon?: undefined;
|
|
4198
|
+
rrule?: undefined;
|
|
4199
|
+
direction?: undefined;
|
|
4200
|
+
cursor?: undefined;
|
|
4201
|
+
instant?: undefined;
|
|
4202
|
+
scope?: undefined;
|
|
4016
4203
|
fullWorkspaces?: undefined;
|
|
4017
4204
|
context?: undefined;
|
|
4018
4205
|
skip?: undefined;
|
|
@@ -4029,7 +4216,6 @@ export declare const toolDefinitions: ({
|
|
|
4029
4216
|
childId?: undefined;
|
|
4030
4217
|
status?: undefined;
|
|
4031
4218
|
relation?: undefined;
|
|
4032
|
-
direction?: undefined;
|
|
4033
4219
|
targetId?: undefined;
|
|
4034
4220
|
templateId?: undefined;
|
|
4035
4221
|
name?: undefined;
|
|
@@ -4048,6 +4234,7 @@ export declare const toolDefinitions: ({
|
|
|
4048
4234
|
agentUserId?: undefined;
|
|
4049
4235
|
message?: undefined;
|
|
4050
4236
|
fileId?: undefined;
|
|
4237
|
+
offset?: undefined;
|
|
4051
4238
|
contentType?: undefined;
|
|
4052
4239
|
content?: undefined;
|
|
4053
4240
|
dataBase64?: undefined;
|
|
@@ -4119,8 +4306,6 @@ export declare const toolDefinitions: ({
|
|
|
4119
4306
|
due?: undefined;
|
|
4120
4307
|
accountabilities?: undefined;
|
|
4121
4308
|
domains?: undefined;
|
|
4122
|
-
data?: undefined;
|
|
4123
|
-
completed?: undefined;
|
|
4124
4309
|
body?: undefined;
|
|
4125
4310
|
commentId?: undefined;
|
|
4126
4311
|
circleId?: undefined;
|
|
@@ -4131,6 +4316,7 @@ export declare const toolDefinitions: ({
|
|
|
4131
4316
|
user?: undefined;
|
|
4132
4317
|
key?: undefined;
|
|
4133
4318
|
threadId?: undefined;
|
|
4319
|
+
completed?: undefined;
|
|
4134
4320
|
depth?: undefined;
|
|
4135
4321
|
postId?: undefined;
|
|
4136
4322
|
reason?: undefined;
|
|
@@ -4145,11 +4331,17 @@ export declare const toolDefinitions: ({
|
|
|
4145
4331
|
from?: undefined;
|
|
4146
4332
|
to?: undefined;
|
|
4147
4333
|
completedAfter?: undefined;
|
|
4334
|
+
data?: undefined;
|
|
4148
4335
|
nestIds?: undefined;
|
|
4149
4336
|
position?: undefined;
|
|
4150
4337
|
relatedNestId?: undefined;
|
|
4151
4338
|
color?: undefined;
|
|
4152
4339
|
icon?: undefined;
|
|
4340
|
+
rrule?: undefined;
|
|
4341
|
+
direction?: undefined;
|
|
4342
|
+
cursor?: undefined;
|
|
4343
|
+
instant?: undefined;
|
|
4344
|
+
scope?: undefined;
|
|
4153
4345
|
fullWorkspaces?: undefined;
|
|
4154
4346
|
context?: undefined;
|
|
4155
4347
|
skip?: undefined;
|
|
@@ -4166,7 +4358,6 @@ export declare const toolDefinitions: ({
|
|
|
4166
4358
|
childId?: undefined;
|
|
4167
4359
|
status?: undefined;
|
|
4168
4360
|
relation?: undefined;
|
|
4169
|
-
direction?: undefined;
|
|
4170
4361
|
targetId?: undefined;
|
|
4171
4362
|
templateId?: undefined;
|
|
4172
4363
|
name?: undefined;
|
|
@@ -4185,6 +4376,7 @@ export declare const toolDefinitions: ({
|
|
|
4185
4376
|
agentUserId?: undefined;
|
|
4186
4377
|
message?: undefined;
|
|
4187
4378
|
fileId?: undefined;
|
|
4379
|
+
offset?: undefined;
|
|
4188
4380
|
contentType?: undefined;
|
|
4189
4381
|
content?: undefined;
|
|
4190
4382
|
dataBase64?: undefined;
|
|
@@ -4260,8 +4452,6 @@ export declare const toolDefinitions: ({
|
|
|
4260
4452
|
due?: undefined;
|
|
4261
4453
|
accountabilities?: undefined;
|
|
4262
4454
|
domains?: undefined;
|
|
4263
|
-
data?: undefined;
|
|
4264
|
-
completed?: undefined;
|
|
4265
4455
|
body?: undefined;
|
|
4266
4456
|
commentId?: undefined;
|
|
4267
4457
|
userId?: undefined;
|
|
@@ -4271,6 +4461,7 @@ export declare const toolDefinitions: ({
|
|
|
4271
4461
|
user?: undefined;
|
|
4272
4462
|
key?: undefined;
|
|
4273
4463
|
threadId?: undefined;
|
|
4464
|
+
completed?: undefined;
|
|
4274
4465
|
depth?: undefined;
|
|
4275
4466
|
postId?: undefined;
|
|
4276
4467
|
reason?: undefined;
|
|
@@ -4285,11 +4476,17 @@ export declare const toolDefinitions: ({
|
|
|
4285
4476
|
from?: undefined;
|
|
4286
4477
|
to?: undefined;
|
|
4287
4478
|
completedAfter?: undefined;
|
|
4479
|
+
data?: undefined;
|
|
4288
4480
|
nestIds?: undefined;
|
|
4289
4481
|
position?: undefined;
|
|
4290
4482
|
relatedNestId?: undefined;
|
|
4291
4483
|
color?: undefined;
|
|
4292
4484
|
icon?: undefined;
|
|
4485
|
+
rrule?: undefined;
|
|
4486
|
+
direction?: undefined;
|
|
4487
|
+
cursor?: undefined;
|
|
4488
|
+
instant?: undefined;
|
|
4489
|
+
scope?: undefined;
|
|
4293
4490
|
fullWorkspaces?: undefined;
|
|
4294
4491
|
context?: undefined;
|
|
4295
4492
|
skip?: undefined;
|
|
@@ -4306,7 +4503,6 @@ export declare const toolDefinitions: ({
|
|
|
4306
4503
|
childId?: undefined;
|
|
4307
4504
|
status?: undefined;
|
|
4308
4505
|
relation?: undefined;
|
|
4309
|
-
direction?: undefined;
|
|
4310
4506
|
targetId?: undefined;
|
|
4311
4507
|
templateId?: undefined;
|
|
4312
4508
|
name?: undefined;
|
|
@@ -4325,6 +4521,7 @@ export declare const toolDefinitions: ({
|
|
|
4325
4521
|
agentUserId?: undefined;
|
|
4326
4522
|
message?: undefined;
|
|
4327
4523
|
fileId?: undefined;
|
|
4524
|
+
offset?: undefined;
|
|
4328
4525
|
contentType?: undefined;
|
|
4329
4526
|
content?: undefined;
|
|
4330
4527
|
dataBase64?: undefined;
|
|
@@ -4388,8 +4585,6 @@ export declare const toolDefinitions: ({
|
|
|
4388
4585
|
due?: undefined;
|
|
4389
4586
|
accountabilities?: undefined;
|
|
4390
4587
|
domains?: undefined;
|
|
4391
|
-
data?: undefined;
|
|
4392
|
-
completed?: undefined;
|
|
4393
4588
|
body?: undefined;
|
|
4394
4589
|
commentId?: undefined;
|
|
4395
4590
|
circleId?: undefined;
|
|
@@ -4399,6 +4594,7 @@ export declare const toolDefinitions: ({
|
|
|
4399
4594
|
user?: undefined;
|
|
4400
4595
|
key?: undefined;
|
|
4401
4596
|
threadId?: undefined;
|
|
4597
|
+
completed?: undefined;
|
|
4402
4598
|
depth?: undefined;
|
|
4403
4599
|
postId?: undefined;
|
|
4404
4600
|
reason?: undefined;
|
|
@@ -4413,11 +4609,17 @@ export declare const toolDefinitions: ({
|
|
|
4413
4609
|
from?: undefined;
|
|
4414
4610
|
to?: undefined;
|
|
4415
4611
|
completedAfter?: undefined;
|
|
4612
|
+
data?: undefined;
|
|
4416
4613
|
nestIds?: undefined;
|
|
4417
4614
|
position?: undefined;
|
|
4418
4615
|
relatedNestId?: undefined;
|
|
4419
4616
|
color?: undefined;
|
|
4420
4617
|
icon?: undefined;
|
|
4618
|
+
rrule?: undefined;
|
|
4619
|
+
direction?: undefined;
|
|
4620
|
+
cursor?: undefined;
|
|
4621
|
+
instant?: undefined;
|
|
4622
|
+
scope?: undefined;
|
|
4421
4623
|
fullWorkspaces?: undefined;
|
|
4422
4624
|
context?: undefined;
|
|
4423
4625
|
skip?: undefined;
|
|
@@ -4434,7 +4636,6 @@ export declare const toolDefinitions: ({
|
|
|
4434
4636
|
childId?: undefined;
|
|
4435
4637
|
status?: undefined;
|
|
4436
4638
|
relation?: undefined;
|
|
4437
|
-
direction?: undefined;
|
|
4438
4639
|
targetId?: undefined;
|
|
4439
4640
|
templateId?: undefined;
|
|
4440
4641
|
name?: undefined;
|
|
@@ -4453,6 +4654,7 @@ export declare const toolDefinitions: ({
|
|
|
4453
4654
|
agentUserId?: undefined;
|
|
4454
4655
|
message?: undefined;
|
|
4455
4656
|
fileId?: undefined;
|
|
4657
|
+
offset?: undefined;
|
|
4456
4658
|
contentType?: undefined;
|
|
4457
4659
|
content?: undefined;
|
|
4458
4660
|
dataBase64?: undefined;
|
|
@@ -4527,8 +4729,6 @@ export declare const toolDefinitions: ({
|
|
|
4527
4729
|
due?: undefined;
|
|
4528
4730
|
accountabilities?: undefined;
|
|
4529
4731
|
domains?: undefined;
|
|
4530
|
-
data?: undefined;
|
|
4531
|
-
completed?: undefined;
|
|
4532
4732
|
body?: undefined;
|
|
4533
4733
|
commentId?: undefined;
|
|
4534
4734
|
circleId?: undefined;
|
|
@@ -4539,6 +4739,7 @@ export declare const toolDefinitions: ({
|
|
|
4539
4739
|
user?: undefined;
|
|
4540
4740
|
key?: undefined;
|
|
4541
4741
|
threadId?: undefined;
|
|
4742
|
+
completed?: undefined;
|
|
4542
4743
|
depth?: undefined;
|
|
4543
4744
|
postId?: undefined;
|
|
4544
4745
|
reason?: undefined;
|
|
@@ -4553,11 +4754,17 @@ export declare const toolDefinitions: ({
|
|
|
4553
4754
|
from?: undefined;
|
|
4554
4755
|
to?: undefined;
|
|
4555
4756
|
completedAfter?: undefined;
|
|
4757
|
+
data?: undefined;
|
|
4556
4758
|
nestIds?: undefined;
|
|
4557
4759
|
position?: undefined;
|
|
4558
4760
|
relatedNestId?: undefined;
|
|
4559
4761
|
color?: undefined;
|
|
4560
4762
|
icon?: undefined;
|
|
4763
|
+
rrule?: undefined;
|
|
4764
|
+
direction?: undefined;
|
|
4765
|
+
cursor?: undefined;
|
|
4766
|
+
instant?: undefined;
|
|
4767
|
+
scope?: undefined;
|
|
4561
4768
|
fullWorkspaces?: undefined;
|
|
4562
4769
|
context?: undefined;
|
|
4563
4770
|
skip?: undefined;
|
|
@@ -4574,7 +4781,6 @@ export declare const toolDefinitions: ({
|
|
|
4574
4781
|
childId?: undefined;
|
|
4575
4782
|
status?: undefined;
|
|
4576
4783
|
relation?: undefined;
|
|
4577
|
-
direction?: undefined;
|
|
4578
4784
|
targetId?: undefined;
|
|
4579
4785
|
templateId?: undefined;
|
|
4580
4786
|
name?: undefined;
|
|
@@ -4593,6 +4799,7 @@ export declare const toolDefinitions: ({
|
|
|
4593
4799
|
agentUserId?: undefined;
|
|
4594
4800
|
message?: undefined;
|
|
4595
4801
|
fileId?: undefined;
|
|
4802
|
+
offset?: undefined;
|
|
4596
4803
|
contentType?: undefined;
|
|
4597
4804
|
content?: undefined;
|
|
4598
4805
|
dataBase64?: undefined;
|
|
@@ -4667,8 +4874,6 @@ export declare const toolDefinitions: ({
|
|
|
4667
4874
|
due?: undefined;
|
|
4668
4875
|
accountabilities?: undefined;
|
|
4669
4876
|
domains?: undefined;
|
|
4670
|
-
data?: undefined;
|
|
4671
|
-
completed?: undefined;
|
|
4672
4877
|
body?: undefined;
|
|
4673
4878
|
commentId?: undefined;
|
|
4674
4879
|
circleId?: undefined;
|
|
@@ -4676,6 +4881,7 @@ export declare const toolDefinitions: ({
|
|
|
4676
4881
|
user?: undefined;
|
|
4677
4882
|
key?: undefined;
|
|
4678
4883
|
threadId?: undefined;
|
|
4884
|
+
completed?: undefined;
|
|
4679
4885
|
depth?: undefined;
|
|
4680
4886
|
postId?: undefined;
|
|
4681
4887
|
reason?: undefined;
|
|
@@ -4690,11 +4896,17 @@ export declare const toolDefinitions: ({
|
|
|
4690
4896
|
from?: undefined;
|
|
4691
4897
|
to?: undefined;
|
|
4692
4898
|
completedAfter?: undefined;
|
|
4899
|
+
data?: undefined;
|
|
4693
4900
|
nestIds?: undefined;
|
|
4694
4901
|
position?: undefined;
|
|
4695
4902
|
relatedNestId?: undefined;
|
|
4696
4903
|
color?: undefined;
|
|
4697
4904
|
icon?: undefined;
|
|
4905
|
+
rrule?: undefined;
|
|
4906
|
+
direction?: undefined;
|
|
4907
|
+
cursor?: undefined;
|
|
4908
|
+
instant?: undefined;
|
|
4909
|
+
scope?: undefined;
|
|
4698
4910
|
fullWorkspaces?: undefined;
|
|
4699
4911
|
context?: undefined;
|
|
4700
4912
|
skip?: undefined;
|
|
@@ -4711,7 +4923,6 @@ export declare const toolDefinitions: ({
|
|
|
4711
4923
|
childId?: undefined;
|
|
4712
4924
|
status?: undefined;
|
|
4713
4925
|
relation?: undefined;
|
|
4714
|
-
direction?: undefined;
|
|
4715
4926
|
targetId?: undefined;
|
|
4716
4927
|
templateId?: undefined;
|
|
4717
4928
|
name?: undefined;
|
|
@@ -4730,6 +4941,7 @@ export declare const toolDefinitions: ({
|
|
|
4730
4941
|
agentUserId?: undefined;
|
|
4731
4942
|
message?: undefined;
|
|
4732
4943
|
fileId?: undefined;
|
|
4944
|
+
offset?: undefined;
|
|
4733
4945
|
contentType?: undefined;
|
|
4734
4946
|
content?: undefined;
|
|
4735
4947
|
dataBase64?: undefined;
|
|
@@ -4793,8 +5005,6 @@ export declare const toolDefinitions: ({
|
|
|
4793
5005
|
due?: undefined;
|
|
4794
5006
|
accountabilities?: undefined;
|
|
4795
5007
|
domains?: undefined;
|
|
4796
|
-
data?: undefined;
|
|
4797
|
-
completed?: undefined;
|
|
4798
5008
|
body?: undefined;
|
|
4799
5009
|
commentId?: undefined;
|
|
4800
5010
|
circleId?: undefined;
|
|
@@ -4804,6 +5014,7 @@ export declare const toolDefinitions: ({
|
|
|
4804
5014
|
includeCompleted?: undefined;
|
|
4805
5015
|
key?: undefined;
|
|
4806
5016
|
threadId?: undefined;
|
|
5017
|
+
completed?: undefined;
|
|
4807
5018
|
depth?: undefined;
|
|
4808
5019
|
postId?: undefined;
|
|
4809
5020
|
reason?: undefined;
|
|
@@ -4818,11 +5029,17 @@ export declare const toolDefinitions: ({
|
|
|
4818
5029
|
from?: undefined;
|
|
4819
5030
|
to?: undefined;
|
|
4820
5031
|
completedAfter?: undefined;
|
|
5032
|
+
data?: undefined;
|
|
4821
5033
|
nestIds?: undefined;
|
|
4822
5034
|
position?: undefined;
|
|
4823
5035
|
relatedNestId?: undefined;
|
|
4824
5036
|
color?: undefined;
|
|
4825
5037
|
icon?: undefined;
|
|
5038
|
+
rrule?: undefined;
|
|
5039
|
+
direction?: undefined;
|
|
5040
|
+
cursor?: undefined;
|
|
5041
|
+
instant?: undefined;
|
|
5042
|
+
scope?: undefined;
|
|
4826
5043
|
fullWorkspaces?: undefined;
|
|
4827
5044
|
context?: undefined;
|
|
4828
5045
|
skip?: undefined;
|
|
@@ -4839,7 +5056,6 @@ export declare const toolDefinitions: ({
|
|
|
4839
5056
|
childId?: undefined;
|
|
4840
5057
|
status?: undefined;
|
|
4841
5058
|
relation?: undefined;
|
|
4842
|
-
direction?: undefined;
|
|
4843
5059
|
targetId?: undefined;
|
|
4844
5060
|
templateId?: undefined;
|
|
4845
5061
|
name?: undefined;
|
|
@@ -4858,6 +5074,7 @@ export declare const toolDefinitions: ({
|
|
|
4858
5074
|
agentUserId?: undefined;
|
|
4859
5075
|
message?: undefined;
|
|
4860
5076
|
fileId?: undefined;
|
|
5077
|
+
offset?: undefined;
|
|
4861
5078
|
contentType?: undefined;
|
|
4862
5079
|
content?: undefined;
|
|
4863
5080
|
dataBase64?: undefined;
|
|
@@ -4922,8 +5139,6 @@ export declare const toolDefinitions: ({
|
|
|
4922
5139
|
due?: undefined;
|
|
4923
5140
|
accountabilities?: undefined;
|
|
4924
5141
|
domains?: undefined;
|
|
4925
|
-
data?: undefined;
|
|
4926
|
-
completed?: undefined;
|
|
4927
5142
|
body?: undefined;
|
|
4928
5143
|
commentId?: undefined;
|
|
4929
5144
|
circleId?: undefined;
|
|
@@ -4932,6 +5147,7 @@ export declare const toolDefinitions: ({
|
|
|
4932
5147
|
includeCompleted?: undefined;
|
|
4933
5148
|
user?: undefined;
|
|
4934
5149
|
threadId?: undefined;
|
|
5150
|
+
completed?: undefined;
|
|
4935
5151
|
depth?: undefined;
|
|
4936
5152
|
postId?: undefined;
|
|
4937
5153
|
reason?: undefined;
|
|
@@ -4946,11 +5162,17 @@ export declare const toolDefinitions: ({
|
|
|
4946
5162
|
from?: undefined;
|
|
4947
5163
|
to?: undefined;
|
|
4948
5164
|
completedAfter?: undefined;
|
|
5165
|
+
data?: undefined;
|
|
4949
5166
|
nestIds?: undefined;
|
|
4950
5167
|
position?: undefined;
|
|
4951
5168
|
relatedNestId?: undefined;
|
|
4952
5169
|
color?: undefined;
|
|
4953
5170
|
icon?: undefined;
|
|
5171
|
+
rrule?: undefined;
|
|
5172
|
+
direction?: undefined;
|
|
5173
|
+
cursor?: undefined;
|
|
5174
|
+
instant?: undefined;
|
|
5175
|
+
scope?: undefined;
|
|
4954
5176
|
fullWorkspaces?: undefined;
|
|
4955
5177
|
context?: undefined;
|
|
4956
5178
|
skip?: undefined;
|
|
@@ -4967,7 +5189,6 @@ export declare const toolDefinitions: ({
|
|
|
4967
5189
|
childId?: undefined;
|
|
4968
5190
|
status?: undefined;
|
|
4969
5191
|
relation?: undefined;
|
|
4970
|
-
direction?: undefined;
|
|
4971
5192
|
targetId?: undefined;
|
|
4972
5193
|
templateId?: undefined;
|
|
4973
5194
|
name?: undefined;
|
|
@@ -4986,6 +5207,7 @@ export declare const toolDefinitions: ({
|
|
|
4986
5207
|
agentUserId?: undefined;
|
|
4987
5208
|
message?: undefined;
|
|
4988
5209
|
fileId?: undefined;
|
|
5210
|
+
offset?: undefined;
|
|
4989
5211
|
contentType?: undefined;
|
|
4990
5212
|
content?: undefined;
|
|
4991
5213
|
dataBase64?: undefined;
|
|
@@ -5050,8 +5272,6 @@ export declare const toolDefinitions: ({
|
|
|
5050
5272
|
due?: undefined;
|
|
5051
5273
|
accountabilities?: undefined;
|
|
5052
5274
|
domains?: undefined;
|
|
5053
|
-
data?: undefined;
|
|
5054
|
-
completed?: undefined;
|
|
5055
5275
|
body?: undefined;
|
|
5056
5276
|
commentId?: undefined;
|
|
5057
5277
|
circleId?: undefined;
|
|
@@ -5060,6 +5280,7 @@ export declare const toolDefinitions: ({
|
|
|
5060
5280
|
includeCompleted?: undefined;
|
|
5061
5281
|
user?: undefined;
|
|
5062
5282
|
key?: undefined;
|
|
5283
|
+
completed?: undefined;
|
|
5063
5284
|
depth?: undefined;
|
|
5064
5285
|
postId?: undefined;
|
|
5065
5286
|
reason?: undefined;
|
|
@@ -5074,11 +5295,17 @@ export declare const toolDefinitions: ({
|
|
|
5074
5295
|
from?: undefined;
|
|
5075
5296
|
to?: undefined;
|
|
5076
5297
|
completedAfter?: undefined;
|
|
5298
|
+
data?: undefined;
|
|
5077
5299
|
nestIds?: undefined;
|
|
5078
5300
|
position?: undefined;
|
|
5079
5301
|
relatedNestId?: undefined;
|
|
5080
5302
|
color?: undefined;
|
|
5081
5303
|
icon?: undefined;
|
|
5304
|
+
rrule?: undefined;
|
|
5305
|
+
direction?: undefined;
|
|
5306
|
+
cursor?: undefined;
|
|
5307
|
+
instant?: undefined;
|
|
5308
|
+
scope?: undefined;
|
|
5082
5309
|
fullWorkspaces?: undefined;
|
|
5083
5310
|
context?: undefined;
|
|
5084
5311
|
skip?: undefined;
|
|
@@ -5095,7 +5322,6 @@ export declare const toolDefinitions: ({
|
|
|
5095
5322
|
childId?: undefined;
|
|
5096
5323
|
status?: undefined;
|
|
5097
5324
|
relation?: undefined;
|
|
5098
|
-
direction?: undefined;
|
|
5099
5325
|
targetId?: undefined;
|
|
5100
5326
|
templateId?: undefined;
|
|
5101
5327
|
name?: undefined;
|
|
@@ -5114,6 +5340,7 @@ export declare const toolDefinitions: ({
|
|
|
5114
5340
|
agentUserId?: undefined;
|
|
5115
5341
|
message?: undefined;
|
|
5116
5342
|
fileId?: undefined;
|
|
5343
|
+
offset?: undefined;
|
|
5117
5344
|
contentType?: undefined;
|
|
5118
5345
|
content?: undefined;
|
|
5119
5346
|
dataBase64?: undefined;
|
|
@@ -5187,7 +5414,6 @@ export declare const toolDefinitions: ({
|
|
|
5187
5414
|
due?: undefined;
|
|
5188
5415
|
accountabilities?: undefined;
|
|
5189
5416
|
domains?: undefined;
|
|
5190
|
-
data?: undefined;
|
|
5191
5417
|
body?: undefined;
|
|
5192
5418
|
commentId?: undefined;
|
|
5193
5419
|
circleId?: undefined;
|
|
@@ -5211,11 +5437,17 @@ export declare const toolDefinitions: ({
|
|
|
5211
5437
|
from?: undefined;
|
|
5212
5438
|
to?: undefined;
|
|
5213
5439
|
completedAfter?: undefined;
|
|
5440
|
+
data?: undefined;
|
|
5214
5441
|
nestIds?: undefined;
|
|
5215
5442
|
position?: undefined;
|
|
5216
5443
|
relatedNestId?: undefined;
|
|
5217
5444
|
color?: undefined;
|
|
5218
5445
|
icon?: undefined;
|
|
5446
|
+
rrule?: undefined;
|
|
5447
|
+
direction?: undefined;
|
|
5448
|
+
cursor?: undefined;
|
|
5449
|
+
instant?: undefined;
|
|
5450
|
+
scope?: undefined;
|
|
5219
5451
|
fullWorkspaces?: undefined;
|
|
5220
5452
|
context?: undefined;
|
|
5221
5453
|
skip?: undefined;
|
|
@@ -5232,7 +5464,6 @@ export declare const toolDefinitions: ({
|
|
|
5232
5464
|
childId?: undefined;
|
|
5233
5465
|
status?: undefined;
|
|
5234
5466
|
relation?: undefined;
|
|
5235
|
-
direction?: undefined;
|
|
5236
5467
|
targetId?: undefined;
|
|
5237
5468
|
templateId?: undefined;
|
|
5238
5469
|
name?: undefined;
|
|
@@ -5251,6 +5482,7 @@ export declare const toolDefinitions: ({
|
|
|
5251
5482
|
agentUserId?: undefined;
|
|
5252
5483
|
message?: undefined;
|
|
5253
5484
|
fileId?: undefined;
|
|
5485
|
+
offset?: undefined;
|
|
5254
5486
|
contentType?: undefined;
|
|
5255
5487
|
content?: undefined;
|
|
5256
5488
|
dataBase64?: undefined;
|
|
@@ -5320,8 +5552,6 @@ export declare const toolDefinitions: ({
|
|
|
5320
5552
|
due?: undefined;
|
|
5321
5553
|
accountabilities?: undefined;
|
|
5322
5554
|
domains?: undefined;
|
|
5323
|
-
data?: undefined;
|
|
5324
|
-
completed?: undefined;
|
|
5325
5555
|
body?: undefined;
|
|
5326
5556
|
commentId?: undefined;
|
|
5327
5557
|
circleId?: undefined;
|
|
@@ -5330,6 +5560,7 @@ export declare const toolDefinitions: ({
|
|
|
5330
5560
|
includeCompleted?: undefined;
|
|
5331
5561
|
user?: undefined;
|
|
5332
5562
|
key?: undefined;
|
|
5563
|
+
completed?: undefined;
|
|
5333
5564
|
postId?: undefined;
|
|
5334
5565
|
reason?: undefined;
|
|
5335
5566
|
includeSubCircles?: undefined;
|
|
@@ -5343,11 +5574,17 @@ export declare const toolDefinitions: ({
|
|
|
5343
5574
|
from?: undefined;
|
|
5344
5575
|
to?: undefined;
|
|
5345
5576
|
completedAfter?: undefined;
|
|
5577
|
+
data?: undefined;
|
|
5346
5578
|
nestIds?: undefined;
|
|
5347
5579
|
position?: undefined;
|
|
5348
5580
|
relatedNestId?: undefined;
|
|
5349
5581
|
color?: undefined;
|
|
5350
5582
|
icon?: undefined;
|
|
5583
|
+
rrule?: undefined;
|
|
5584
|
+
direction?: undefined;
|
|
5585
|
+
cursor?: undefined;
|
|
5586
|
+
instant?: undefined;
|
|
5587
|
+
scope?: undefined;
|
|
5351
5588
|
fullWorkspaces?: undefined;
|
|
5352
5589
|
context?: undefined;
|
|
5353
5590
|
skip?: undefined;
|
|
@@ -5364,7 +5601,6 @@ export declare const toolDefinitions: ({
|
|
|
5364
5601
|
childId?: undefined;
|
|
5365
5602
|
status?: undefined;
|
|
5366
5603
|
relation?: undefined;
|
|
5367
|
-
direction?: undefined;
|
|
5368
5604
|
targetId?: undefined;
|
|
5369
5605
|
templateId?: undefined;
|
|
5370
5606
|
name?: undefined;
|
|
@@ -5383,6 +5619,7 @@ export declare const toolDefinitions: ({
|
|
|
5383
5619
|
agentUserId?: undefined;
|
|
5384
5620
|
message?: undefined;
|
|
5385
5621
|
fileId?: undefined;
|
|
5622
|
+
offset?: undefined;
|
|
5386
5623
|
contentType?: undefined;
|
|
5387
5624
|
content?: undefined;
|
|
5388
5625
|
dataBase64?: undefined;
|
|
@@ -5447,8 +5684,6 @@ export declare const toolDefinitions: ({
|
|
|
5447
5684
|
due?: undefined;
|
|
5448
5685
|
accountabilities?: undefined;
|
|
5449
5686
|
domains?: undefined;
|
|
5450
|
-
data?: undefined;
|
|
5451
|
-
completed?: undefined;
|
|
5452
5687
|
commentId?: undefined;
|
|
5453
5688
|
circleId?: undefined;
|
|
5454
5689
|
userId?: undefined;
|
|
@@ -5457,6 +5692,7 @@ export declare const toolDefinitions: ({
|
|
|
5457
5692
|
includeCompleted?: undefined;
|
|
5458
5693
|
user?: undefined;
|
|
5459
5694
|
key?: undefined;
|
|
5695
|
+
completed?: undefined;
|
|
5460
5696
|
depth?: undefined;
|
|
5461
5697
|
postId?: undefined;
|
|
5462
5698
|
reason?: undefined;
|
|
@@ -5471,11 +5707,17 @@ export declare const toolDefinitions: ({
|
|
|
5471
5707
|
from?: undefined;
|
|
5472
5708
|
to?: undefined;
|
|
5473
5709
|
completedAfter?: undefined;
|
|
5710
|
+
data?: undefined;
|
|
5474
5711
|
nestIds?: undefined;
|
|
5475
5712
|
position?: undefined;
|
|
5476
5713
|
relatedNestId?: undefined;
|
|
5477
5714
|
color?: undefined;
|
|
5478
5715
|
icon?: undefined;
|
|
5716
|
+
rrule?: undefined;
|
|
5717
|
+
direction?: undefined;
|
|
5718
|
+
cursor?: undefined;
|
|
5719
|
+
instant?: undefined;
|
|
5720
|
+
scope?: undefined;
|
|
5479
5721
|
fullWorkspaces?: undefined;
|
|
5480
5722
|
context?: undefined;
|
|
5481
5723
|
skip?: undefined;
|
|
@@ -5492,7 +5734,6 @@ export declare const toolDefinitions: ({
|
|
|
5492
5734
|
childId?: undefined;
|
|
5493
5735
|
status?: undefined;
|
|
5494
5736
|
relation?: undefined;
|
|
5495
|
-
direction?: undefined;
|
|
5496
5737
|
targetId?: undefined;
|
|
5497
5738
|
templateId?: undefined;
|
|
5498
5739
|
name?: undefined;
|
|
@@ -5511,6 +5752,7 @@ export declare const toolDefinitions: ({
|
|
|
5511
5752
|
agentUserId?: undefined;
|
|
5512
5753
|
message?: undefined;
|
|
5513
5754
|
fileId?: undefined;
|
|
5755
|
+
offset?: undefined;
|
|
5514
5756
|
contentType?: undefined;
|
|
5515
5757
|
content?: undefined;
|
|
5516
5758
|
dataBase64?: undefined;
|
|
@@ -5571,8 +5813,6 @@ export declare const toolDefinitions: ({
|
|
|
5571
5813
|
due?: undefined;
|
|
5572
5814
|
accountabilities?: undefined;
|
|
5573
5815
|
domains?: undefined;
|
|
5574
|
-
data?: undefined;
|
|
5575
|
-
completed?: undefined;
|
|
5576
5816
|
body?: undefined;
|
|
5577
5817
|
commentId?: undefined;
|
|
5578
5818
|
circleId?: undefined;
|
|
@@ -5583,6 +5823,7 @@ export declare const toolDefinitions: ({
|
|
|
5583
5823
|
user?: undefined;
|
|
5584
5824
|
key?: undefined;
|
|
5585
5825
|
threadId?: undefined;
|
|
5826
|
+
completed?: undefined;
|
|
5586
5827
|
depth?: undefined;
|
|
5587
5828
|
reason?: undefined;
|
|
5588
5829
|
includeSubCircles?: undefined;
|
|
@@ -5596,11 +5837,17 @@ export declare const toolDefinitions: ({
|
|
|
5596
5837
|
from?: undefined;
|
|
5597
5838
|
to?: undefined;
|
|
5598
5839
|
completedAfter?: undefined;
|
|
5840
|
+
data?: undefined;
|
|
5599
5841
|
nestIds?: undefined;
|
|
5600
5842
|
position?: undefined;
|
|
5601
5843
|
relatedNestId?: undefined;
|
|
5602
5844
|
color?: undefined;
|
|
5603
5845
|
icon?: undefined;
|
|
5846
|
+
rrule?: undefined;
|
|
5847
|
+
direction?: undefined;
|
|
5848
|
+
cursor?: undefined;
|
|
5849
|
+
instant?: undefined;
|
|
5850
|
+
scope?: undefined;
|
|
5604
5851
|
fullWorkspaces?: undefined;
|
|
5605
5852
|
context?: undefined;
|
|
5606
5853
|
skip?: undefined;
|
|
@@ -5617,7 +5864,6 @@ export declare const toolDefinitions: ({
|
|
|
5617
5864
|
childId?: undefined;
|
|
5618
5865
|
status?: undefined;
|
|
5619
5866
|
relation?: undefined;
|
|
5620
|
-
direction?: undefined;
|
|
5621
5867
|
targetId?: undefined;
|
|
5622
5868
|
templateId?: undefined;
|
|
5623
5869
|
name?: undefined;
|
|
@@ -5636,6 +5882,7 @@ export declare const toolDefinitions: ({
|
|
|
5636
5882
|
agentUserId?: undefined;
|
|
5637
5883
|
message?: undefined;
|
|
5638
5884
|
fileId?: undefined;
|
|
5885
|
+
offset?: undefined;
|
|
5639
5886
|
contentType?: undefined;
|
|
5640
5887
|
content?: undefined;
|
|
5641
5888
|
dataBase64?: undefined;
|
|
@@ -5700,8 +5947,6 @@ export declare const toolDefinitions: ({
|
|
|
5700
5947
|
due?: undefined;
|
|
5701
5948
|
accountabilities?: undefined;
|
|
5702
5949
|
domains?: undefined;
|
|
5703
|
-
data?: undefined;
|
|
5704
|
-
completed?: undefined;
|
|
5705
5950
|
body?: undefined;
|
|
5706
5951
|
commentId?: undefined;
|
|
5707
5952
|
circleId?: undefined;
|
|
@@ -5711,6 +5956,7 @@ export declare const toolDefinitions: ({
|
|
|
5711
5956
|
includeCompleted?: undefined;
|
|
5712
5957
|
user?: undefined;
|
|
5713
5958
|
key?: undefined;
|
|
5959
|
+
completed?: undefined;
|
|
5714
5960
|
depth?: undefined;
|
|
5715
5961
|
postId?: undefined;
|
|
5716
5962
|
includeSubCircles?: undefined;
|
|
@@ -5724,11 +5970,17 @@ export declare const toolDefinitions: ({
|
|
|
5724
5970
|
from?: undefined;
|
|
5725
5971
|
to?: undefined;
|
|
5726
5972
|
completedAfter?: undefined;
|
|
5973
|
+
data?: undefined;
|
|
5727
5974
|
nestIds?: undefined;
|
|
5728
5975
|
position?: undefined;
|
|
5729
5976
|
relatedNestId?: undefined;
|
|
5730
5977
|
color?: undefined;
|
|
5731
5978
|
icon?: undefined;
|
|
5979
|
+
rrule?: undefined;
|
|
5980
|
+
direction?: undefined;
|
|
5981
|
+
cursor?: undefined;
|
|
5982
|
+
instant?: undefined;
|
|
5983
|
+
scope?: undefined;
|
|
5732
5984
|
fullWorkspaces?: undefined;
|
|
5733
5985
|
context?: undefined;
|
|
5734
5986
|
skip?: undefined;
|
|
@@ -5745,7 +5997,6 @@ export declare const toolDefinitions: ({
|
|
|
5745
5997
|
childId?: undefined;
|
|
5746
5998
|
status?: undefined;
|
|
5747
5999
|
relation?: undefined;
|
|
5748
|
-
direction?: undefined;
|
|
5749
6000
|
targetId?: undefined;
|
|
5750
6001
|
templateId?: undefined;
|
|
5751
6002
|
name?: undefined;
|
|
@@ -5764,6 +6015,7 @@ export declare const toolDefinitions: ({
|
|
|
5764
6015
|
agentUserId?: undefined;
|
|
5765
6016
|
message?: undefined;
|
|
5766
6017
|
fileId?: undefined;
|
|
6018
|
+
offset?: undefined;
|
|
5767
6019
|
contentType?: undefined;
|
|
5768
6020
|
content?: undefined;
|
|
5769
6021
|
dataBase64?: undefined;
|
|
@@ -5838,8 +6090,6 @@ export declare const toolDefinitions: ({
|
|
|
5838
6090
|
due?: undefined;
|
|
5839
6091
|
accountabilities?: undefined;
|
|
5840
6092
|
domains?: undefined;
|
|
5841
|
-
data?: undefined;
|
|
5842
|
-
completed?: undefined;
|
|
5843
6093
|
body?: undefined;
|
|
5844
6094
|
commentId?: undefined;
|
|
5845
6095
|
circleId?: undefined;
|
|
@@ -5849,6 +6099,7 @@ export declare const toolDefinitions: ({
|
|
|
5849
6099
|
user?: undefined;
|
|
5850
6100
|
key?: undefined;
|
|
5851
6101
|
threadId?: undefined;
|
|
6102
|
+
completed?: undefined;
|
|
5852
6103
|
depth?: undefined;
|
|
5853
6104
|
postId?: undefined;
|
|
5854
6105
|
reason?: undefined;
|
|
@@ -5861,11 +6112,17 @@ export declare const toolDefinitions: ({
|
|
|
5861
6112
|
from?: undefined;
|
|
5862
6113
|
to?: undefined;
|
|
5863
6114
|
completedAfter?: undefined;
|
|
6115
|
+
data?: undefined;
|
|
5864
6116
|
nestIds?: undefined;
|
|
5865
6117
|
position?: undefined;
|
|
5866
6118
|
relatedNestId?: undefined;
|
|
5867
6119
|
color?: undefined;
|
|
5868
6120
|
icon?: undefined;
|
|
6121
|
+
rrule?: undefined;
|
|
6122
|
+
direction?: undefined;
|
|
6123
|
+
cursor?: undefined;
|
|
6124
|
+
instant?: undefined;
|
|
6125
|
+
scope?: undefined;
|
|
5869
6126
|
fullWorkspaces?: undefined;
|
|
5870
6127
|
context?: undefined;
|
|
5871
6128
|
skip?: undefined;
|
|
@@ -5882,7 +6139,6 @@ export declare const toolDefinitions: ({
|
|
|
5882
6139
|
childId?: undefined;
|
|
5883
6140
|
status?: undefined;
|
|
5884
6141
|
relation?: undefined;
|
|
5885
|
-
direction?: undefined;
|
|
5886
6142
|
targetId?: undefined;
|
|
5887
6143
|
templateId?: undefined;
|
|
5888
6144
|
name?: undefined;
|
|
@@ -5901,6 +6157,7 @@ export declare const toolDefinitions: ({
|
|
|
5901
6157
|
agentUserId?: undefined;
|
|
5902
6158
|
message?: undefined;
|
|
5903
6159
|
fileId?: undefined;
|
|
6160
|
+
offset?: undefined;
|
|
5904
6161
|
contentType?: undefined;
|
|
5905
6162
|
content?: undefined;
|
|
5906
6163
|
dataBase64?: undefined;
|
|
@@ -5964,8 +6221,6 @@ export declare const toolDefinitions: ({
|
|
|
5964
6221
|
due?: undefined;
|
|
5965
6222
|
accountabilities?: undefined;
|
|
5966
6223
|
domains?: undefined;
|
|
5967
|
-
data?: undefined;
|
|
5968
|
-
completed?: undefined;
|
|
5969
6224
|
body?: undefined;
|
|
5970
6225
|
commentId?: undefined;
|
|
5971
6226
|
circleId?: undefined;
|
|
@@ -5976,6 +6231,7 @@ export declare const toolDefinitions: ({
|
|
|
5976
6231
|
user?: undefined;
|
|
5977
6232
|
key?: undefined;
|
|
5978
6233
|
threadId?: undefined;
|
|
6234
|
+
completed?: undefined;
|
|
5979
6235
|
depth?: undefined;
|
|
5980
6236
|
postId?: undefined;
|
|
5981
6237
|
reason?: undefined;
|
|
@@ -5989,11 +6245,17 @@ export declare const toolDefinitions: ({
|
|
|
5989
6245
|
from?: undefined;
|
|
5990
6246
|
to?: undefined;
|
|
5991
6247
|
completedAfter?: undefined;
|
|
6248
|
+
data?: undefined;
|
|
5992
6249
|
nestIds?: undefined;
|
|
5993
6250
|
position?: undefined;
|
|
5994
6251
|
relatedNestId?: undefined;
|
|
5995
6252
|
color?: undefined;
|
|
5996
6253
|
icon?: undefined;
|
|
6254
|
+
rrule?: undefined;
|
|
6255
|
+
direction?: undefined;
|
|
6256
|
+
cursor?: undefined;
|
|
6257
|
+
instant?: undefined;
|
|
6258
|
+
scope?: undefined;
|
|
5997
6259
|
fullWorkspaces?: undefined;
|
|
5998
6260
|
context?: undefined;
|
|
5999
6261
|
skip?: undefined;
|
|
@@ -6010,7 +6272,6 @@ export declare const toolDefinitions: ({
|
|
|
6010
6272
|
childId?: undefined;
|
|
6011
6273
|
status?: undefined;
|
|
6012
6274
|
relation?: undefined;
|
|
6013
|
-
direction?: undefined;
|
|
6014
6275
|
targetId?: undefined;
|
|
6015
6276
|
templateId?: undefined;
|
|
6016
6277
|
name?: undefined;
|
|
@@ -6029,6 +6290,7 @@ export declare const toolDefinitions: ({
|
|
|
6029
6290
|
agentUserId?: undefined;
|
|
6030
6291
|
message?: undefined;
|
|
6031
6292
|
fileId?: undefined;
|
|
6293
|
+
offset?: undefined;
|
|
6032
6294
|
contentType?: undefined;
|
|
6033
6295
|
content?: undefined;
|
|
6034
6296
|
dataBase64?: undefined;
|
|
@@ -6102,8 +6364,6 @@ export declare const toolDefinitions: ({
|
|
|
6102
6364
|
due?: undefined;
|
|
6103
6365
|
accountabilities?: undefined;
|
|
6104
6366
|
domains?: undefined;
|
|
6105
|
-
data?: undefined;
|
|
6106
|
-
completed?: undefined;
|
|
6107
6367
|
body?: undefined;
|
|
6108
6368
|
commentId?: undefined;
|
|
6109
6369
|
circleId?: undefined;
|
|
@@ -6114,6 +6374,7 @@ export declare const toolDefinitions: ({
|
|
|
6114
6374
|
user?: undefined;
|
|
6115
6375
|
key?: undefined;
|
|
6116
6376
|
threadId?: undefined;
|
|
6377
|
+
completed?: undefined;
|
|
6117
6378
|
depth?: undefined;
|
|
6118
6379
|
postId?: undefined;
|
|
6119
6380
|
reason?: undefined;
|
|
@@ -6127,11 +6388,17 @@ export declare const toolDefinitions: ({
|
|
|
6127
6388
|
from?: undefined;
|
|
6128
6389
|
to?: undefined;
|
|
6129
6390
|
completedAfter?: undefined;
|
|
6391
|
+
data?: undefined;
|
|
6130
6392
|
nestIds?: undefined;
|
|
6131
6393
|
position?: undefined;
|
|
6132
6394
|
relatedNestId?: undefined;
|
|
6133
6395
|
color?: undefined;
|
|
6134
6396
|
icon?: undefined;
|
|
6397
|
+
rrule?: undefined;
|
|
6398
|
+
direction?: undefined;
|
|
6399
|
+
cursor?: undefined;
|
|
6400
|
+
instant?: undefined;
|
|
6401
|
+
scope?: undefined;
|
|
6135
6402
|
fullWorkspaces?: undefined;
|
|
6136
6403
|
context?: undefined;
|
|
6137
6404
|
skip?: undefined;
|
|
@@ -6148,7 +6415,6 @@ export declare const toolDefinitions: ({
|
|
|
6148
6415
|
childId?: undefined;
|
|
6149
6416
|
status?: undefined;
|
|
6150
6417
|
relation?: undefined;
|
|
6151
|
-
direction?: undefined;
|
|
6152
6418
|
targetId?: undefined;
|
|
6153
6419
|
templateId?: undefined;
|
|
6154
6420
|
name?: undefined;
|
|
@@ -6167,6 +6433,7 @@ export declare const toolDefinitions: ({
|
|
|
6167
6433
|
agentUserId?: undefined;
|
|
6168
6434
|
message?: undefined;
|
|
6169
6435
|
fileId?: undefined;
|
|
6436
|
+
offset?: undefined;
|
|
6170
6437
|
contentType?: undefined;
|
|
6171
6438
|
content?: undefined;
|
|
6172
6439
|
dataBase64?: undefined;
|
|
@@ -6235,8 +6502,6 @@ export declare const toolDefinitions: ({
|
|
|
6235
6502
|
due?: undefined;
|
|
6236
6503
|
accountabilities?: undefined;
|
|
6237
6504
|
domains?: undefined;
|
|
6238
|
-
data?: undefined;
|
|
6239
|
-
completed?: undefined;
|
|
6240
6505
|
body?: undefined;
|
|
6241
6506
|
commentId?: undefined;
|
|
6242
6507
|
circleId?: undefined;
|
|
@@ -6247,6 +6512,7 @@ export declare const toolDefinitions: ({
|
|
|
6247
6512
|
user?: undefined;
|
|
6248
6513
|
key?: undefined;
|
|
6249
6514
|
threadId?: undefined;
|
|
6515
|
+
completed?: undefined;
|
|
6250
6516
|
depth?: undefined;
|
|
6251
6517
|
postId?: undefined;
|
|
6252
6518
|
reason?: undefined;
|
|
@@ -6261,11 +6527,17 @@ export declare const toolDefinitions: ({
|
|
|
6261
6527
|
from?: undefined;
|
|
6262
6528
|
to?: undefined;
|
|
6263
6529
|
completedAfter?: undefined;
|
|
6530
|
+
data?: undefined;
|
|
6264
6531
|
nestIds?: undefined;
|
|
6265
6532
|
position?: undefined;
|
|
6266
6533
|
relatedNestId?: undefined;
|
|
6267
6534
|
color?: undefined;
|
|
6268
6535
|
icon?: undefined;
|
|
6536
|
+
rrule?: undefined;
|
|
6537
|
+
direction?: undefined;
|
|
6538
|
+
cursor?: undefined;
|
|
6539
|
+
instant?: undefined;
|
|
6540
|
+
scope?: undefined;
|
|
6269
6541
|
fullWorkspaces?: undefined;
|
|
6270
6542
|
context?: undefined;
|
|
6271
6543
|
skip?: undefined;
|
|
@@ -6282,7 +6554,6 @@ export declare const toolDefinitions: ({
|
|
|
6282
6554
|
childId?: undefined;
|
|
6283
6555
|
status?: undefined;
|
|
6284
6556
|
relation?: undefined;
|
|
6285
|
-
direction?: undefined;
|
|
6286
6557
|
targetId?: undefined;
|
|
6287
6558
|
templateId?: undefined;
|
|
6288
6559
|
name?: undefined;
|
|
@@ -6301,6 +6572,7 @@ export declare const toolDefinitions: ({
|
|
|
6301
6572
|
agentUserId?: undefined;
|
|
6302
6573
|
message?: undefined;
|
|
6303
6574
|
fileId?: undefined;
|
|
6575
|
+
offset?: undefined;
|
|
6304
6576
|
contentType?: undefined;
|
|
6305
6577
|
content?: undefined;
|
|
6306
6578
|
dataBase64?: undefined;
|
|
@@ -6378,8 +6650,6 @@ export declare const toolDefinitions: ({
|
|
|
6378
6650
|
due?: undefined;
|
|
6379
6651
|
accountabilities?: undefined;
|
|
6380
6652
|
domains?: undefined;
|
|
6381
|
-
data?: undefined;
|
|
6382
|
-
completed?: undefined;
|
|
6383
6653
|
body?: undefined;
|
|
6384
6654
|
commentId?: undefined;
|
|
6385
6655
|
circleId?: undefined;
|
|
@@ -6390,6 +6660,7 @@ export declare const toolDefinitions: ({
|
|
|
6390
6660
|
user?: undefined;
|
|
6391
6661
|
key?: undefined;
|
|
6392
6662
|
threadId?: undefined;
|
|
6663
|
+
completed?: undefined;
|
|
6393
6664
|
depth?: undefined;
|
|
6394
6665
|
postId?: undefined;
|
|
6395
6666
|
reason?: undefined;
|
|
@@ -6404,11 +6675,17 @@ export declare const toolDefinitions: ({
|
|
|
6404
6675
|
from?: undefined;
|
|
6405
6676
|
to?: undefined;
|
|
6406
6677
|
completedAfter?: undefined;
|
|
6678
|
+
data?: undefined;
|
|
6407
6679
|
nestIds?: undefined;
|
|
6408
6680
|
position?: undefined;
|
|
6409
6681
|
relatedNestId?: undefined;
|
|
6410
6682
|
color?: undefined;
|
|
6411
6683
|
icon?: undefined;
|
|
6684
|
+
rrule?: undefined;
|
|
6685
|
+
direction?: undefined;
|
|
6686
|
+
cursor?: undefined;
|
|
6687
|
+
instant?: undefined;
|
|
6688
|
+
scope?: undefined;
|
|
6412
6689
|
fullWorkspaces?: undefined;
|
|
6413
6690
|
context?: undefined;
|
|
6414
6691
|
skip?: undefined;
|
|
@@ -6425,7 +6702,6 @@ export declare const toolDefinitions: ({
|
|
|
6425
6702
|
childId?: undefined;
|
|
6426
6703
|
status?: undefined;
|
|
6427
6704
|
relation?: undefined;
|
|
6428
|
-
direction?: undefined;
|
|
6429
6705
|
targetId?: undefined;
|
|
6430
6706
|
templateId?: undefined;
|
|
6431
6707
|
name?: undefined;
|
|
@@ -6444,6 +6720,7 @@ export declare const toolDefinitions: ({
|
|
|
6444
6720
|
agentUserId?: undefined;
|
|
6445
6721
|
message?: undefined;
|
|
6446
6722
|
fileId?: undefined;
|
|
6723
|
+
offset?: undefined;
|
|
6447
6724
|
contentType?: undefined;
|
|
6448
6725
|
content?: undefined;
|
|
6449
6726
|
dataBase64?: undefined;
|
|
@@ -6523,8 +6800,6 @@ export declare const toolDefinitions: ({
|
|
|
6523
6800
|
due?: undefined;
|
|
6524
6801
|
accountabilities?: undefined;
|
|
6525
6802
|
domains?: undefined;
|
|
6526
|
-
data?: undefined;
|
|
6527
|
-
completed?: undefined;
|
|
6528
6803
|
body?: undefined;
|
|
6529
6804
|
commentId?: undefined;
|
|
6530
6805
|
circleId?: undefined;
|
|
@@ -6534,6 +6809,7 @@ export declare const toolDefinitions: ({
|
|
|
6534
6809
|
user?: undefined;
|
|
6535
6810
|
key?: undefined;
|
|
6536
6811
|
threadId?: undefined;
|
|
6812
|
+
completed?: undefined;
|
|
6537
6813
|
postId?: undefined;
|
|
6538
6814
|
reason?: undefined;
|
|
6539
6815
|
includeSubCircles?: undefined;
|
|
@@ -6547,11 +6823,17 @@ export declare const toolDefinitions: ({
|
|
|
6547
6823
|
from?: undefined;
|
|
6548
6824
|
to?: undefined;
|
|
6549
6825
|
completedAfter?: undefined;
|
|
6826
|
+
data?: undefined;
|
|
6550
6827
|
nestIds?: undefined;
|
|
6551
6828
|
position?: undefined;
|
|
6552
6829
|
relatedNestId?: undefined;
|
|
6553
6830
|
color?: undefined;
|
|
6554
6831
|
icon?: undefined;
|
|
6832
|
+
rrule?: undefined;
|
|
6833
|
+
direction?: undefined;
|
|
6834
|
+
cursor?: undefined;
|
|
6835
|
+
instant?: undefined;
|
|
6836
|
+
scope?: undefined;
|
|
6555
6837
|
fullWorkspaces?: undefined;
|
|
6556
6838
|
context?: undefined;
|
|
6557
6839
|
skip?: undefined;
|
|
@@ -6568,7 +6850,6 @@ export declare const toolDefinitions: ({
|
|
|
6568
6850
|
childId?: undefined;
|
|
6569
6851
|
status?: undefined;
|
|
6570
6852
|
relation?: undefined;
|
|
6571
|
-
direction?: undefined;
|
|
6572
6853
|
targetId?: undefined;
|
|
6573
6854
|
templateId?: undefined;
|
|
6574
6855
|
name?: undefined;
|
|
@@ -6587,6 +6868,7 @@ export declare const toolDefinitions: ({
|
|
|
6587
6868
|
agentUserId?: undefined;
|
|
6588
6869
|
message?: undefined;
|
|
6589
6870
|
fileId?: undefined;
|
|
6871
|
+
offset?: undefined;
|
|
6590
6872
|
contentType?: undefined;
|
|
6591
6873
|
content?: undefined;
|
|
6592
6874
|
dataBase64?: undefined;
|
|
@@ -6653,8 +6935,6 @@ export declare const toolDefinitions: ({
|
|
|
6653
6935
|
due?: undefined;
|
|
6654
6936
|
accountabilities?: undefined;
|
|
6655
6937
|
domains?: undefined;
|
|
6656
|
-
data?: undefined;
|
|
6657
|
-
completed?: undefined;
|
|
6658
6938
|
body?: undefined;
|
|
6659
6939
|
commentId?: undefined;
|
|
6660
6940
|
userId?: undefined;
|
|
@@ -6664,6 +6944,7 @@ export declare const toolDefinitions: ({
|
|
|
6664
6944
|
user?: undefined;
|
|
6665
6945
|
key?: undefined;
|
|
6666
6946
|
threadId?: undefined;
|
|
6947
|
+
completed?: undefined;
|
|
6667
6948
|
depth?: undefined;
|
|
6668
6949
|
postId?: undefined;
|
|
6669
6950
|
reason?: undefined;
|
|
@@ -6678,11 +6959,17 @@ export declare const toolDefinitions: ({
|
|
|
6678
6959
|
from?: undefined;
|
|
6679
6960
|
to?: undefined;
|
|
6680
6961
|
completedAfter?: undefined;
|
|
6962
|
+
data?: undefined;
|
|
6681
6963
|
nestIds?: undefined;
|
|
6682
6964
|
position?: undefined;
|
|
6683
6965
|
relatedNestId?: undefined;
|
|
6684
6966
|
color?: undefined;
|
|
6685
6967
|
icon?: undefined;
|
|
6968
|
+
rrule?: undefined;
|
|
6969
|
+
direction?: undefined;
|
|
6970
|
+
cursor?: undefined;
|
|
6971
|
+
instant?: undefined;
|
|
6972
|
+
scope?: undefined;
|
|
6686
6973
|
fullWorkspaces?: undefined;
|
|
6687
6974
|
context?: undefined;
|
|
6688
6975
|
skip?: undefined;
|
|
@@ -6699,7 +6986,6 @@ export declare const toolDefinitions: ({
|
|
|
6699
6986
|
childId?: undefined;
|
|
6700
6987
|
status?: undefined;
|
|
6701
6988
|
relation?: undefined;
|
|
6702
|
-
direction?: undefined;
|
|
6703
6989
|
targetId?: undefined;
|
|
6704
6990
|
templateId?: undefined;
|
|
6705
6991
|
name?: undefined;
|
|
@@ -6718,6 +7004,7 @@ export declare const toolDefinitions: ({
|
|
|
6718
7004
|
agentUserId?: undefined;
|
|
6719
7005
|
message?: undefined;
|
|
6720
7006
|
fileId?: undefined;
|
|
7007
|
+
offset?: undefined;
|
|
6721
7008
|
contentType?: undefined;
|
|
6722
7009
|
content?: undefined;
|
|
6723
7010
|
dataBase64?: undefined;
|
|
@@ -6781,8 +7068,6 @@ export declare const toolDefinitions: ({
|
|
|
6781
7068
|
due?: undefined;
|
|
6782
7069
|
accountabilities?: undefined;
|
|
6783
7070
|
domains?: undefined;
|
|
6784
|
-
data?: undefined;
|
|
6785
|
-
completed?: undefined;
|
|
6786
7071
|
body?: undefined;
|
|
6787
7072
|
commentId?: undefined;
|
|
6788
7073
|
circleId?: undefined;
|
|
@@ -6792,6 +7077,7 @@ export declare const toolDefinitions: ({
|
|
|
6792
7077
|
user?: undefined;
|
|
6793
7078
|
key?: undefined;
|
|
6794
7079
|
threadId?: undefined;
|
|
7080
|
+
completed?: undefined;
|
|
6795
7081
|
depth?: undefined;
|
|
6796
7082
|
postId?: undefined;
|
|
6797
7083
|
reason?: undefined;
|
|
@@ -6806,11 +7092,17 @@ export declare const toolDefinitions: ({
|
|
|
6806
7092
|
from?: undefined;
|
|
6807
7093
|
to?: undefined;
|
|
6808
7094
|
completedAfter?: undefined;
|
|
7095
|
+
data?: undefined;
|
|
6809
7096
|
nestIds?: undefined;
|
|
6810
7097
|
position?: undefined;
|
|
6811
7098
|
relatedNestId?: undefined;
|
|
6812
7099
|
color?: undefined;
|
|
6813
7100
|
icon?: undefined;
|
|
7101
|
+
rrule?: undefined;
|
|
7102
|
+
direction?: undefined;
|
|
7103
|
+
cursor?: undefined;
|
|
7104
|
+
instant?: undefined;
|
|
7105
|
+
scope?: undefined;
|
|
6814
7106
|
fullWorkspaces?: undefined;
|
|
6815
7107
|
context?: undefined;
|
|
6816
7108
|
skip?: undefined;
|
|
@@ -6827,7 +7119,6 @@ export declare const toolDefinitions: ({
|
|
|
6827
7119
|
childId?: undefined;
|
|
6828
7120
|
status?: undefined;
|
|
6829
7121
|
relation?: undefined;
|
|
6830
|
-
direction?: undefined;
|
|
6831
7122
|
targetId?: undefined;
|
|
6832
7123
|
templateId?: undefined;
|
|
6833
7124
|
name?: undefined;
|
|
@@ -6846,6 +7137,7 @@ export declare const toolDefinitions: ({
|
|
|
6846
7137
|
agentUserId?: undefined;
|
|
6847
7138
|
message?: undefined;
|
|
6848
7139
|
fileId?: undefined;
|
|
7140
|
+
offset?: undefined;
|
|
6849
7141
|
contentType?: undefined;
|
|
6850
7142
|
content?: undefined;
|
|
6851
7143
|
dataBase64?: undefined;
|
|
@@ -6917,8 +7209,6 @@ export declare const toolDefinitions: ({
|
|
|
6917
7209
|
due?: undefined;
|
|
6918
7210
|
accountabilities?: undefined;
|
|
6919
7211
|
domains?: undefined;
|
|
6920
|
-
data?: undefined;
|
|
6921
|
-
completed?: undefined;
|
|
6922
7212
|
body?: undefined;
|
|
6923
7213
|
commentId?: undefined;
|
|
6924
7214
|
circleId?: undefined;
|
|
@@ -6929,6 +7219,7 @@ export declare const toolDefinitions: ({
|
|
|
6929
7219
|
user?: undefined;
|
|
6930
7220
|
key?: undefined;
|
|
6931
7221
|
threadId?: undefined;
|
|
7222
|
+
completed?: undefined;
|
|
6932
7223
|
depth?: undefined;
|
|
6933
7224
|
postId?: undefined;
|
|
6934
7225
|
reason?: undefined;
|
|
@@ -6940,11 +7231,17 @@ export declare const toolDefinitions: ({
|
|
|
6940
7231
|
from?: undefined;
|
|
6941
7232
|
to?: undefined;
|
|
6942
7233
|
completedAfter?: undefined;
|
|
7234
|
+
data?: undefined;
|
|
6943
7235
|
nestIds?: undefined;
|
|
6944
7236
|
position?: undefined;
|
|
6945
7237
|
relatedNestId?: undefined;
|
|
6946
7238
|
color?: undefined;
|
|
6947
7239
|
icon?: undefined;
|
|
7240
|
+
rrule?: undefined;
|
|
7241
|
+
direction?: undefined;
|
|
7242
|
+
cursor?: undefined;
|
|
7243
|
+
instant?: undefined;
|
|
7244
|
+
scope?: undefined;
|
|
6948
7245
|
fullWorkspaces?: undefined;
|
|
6949
7246
|
context?: undefined;
|
|
6950
7247
|
skip?: undefined;
|
|
@@ -6961,7 +7258,6 @@ export declare const toolDefinitions: ({
|
|
|
6961
7258
|
childId?: undefined;
|
|
6962
7259
|
status?: undefined;
|
|
6963
7260
|
relation?: undefined;
|
|
6964
|
-
direction?: undefined;
|
|
6965
7261
|
targetId?: undefined;
|
|
6966
7262
|
templateId?: undefined;
|
|
6967
7263
|
name?: undefined;
|
|
@@ -6980,6 +7276,7 @@ export declare const toolDefinitions: ({
|
|
|
6980
7276
|
agentUserId?: undefined;
|
|
6981
7277
|
message?: undefined;
|
|
6982
7278
|
fileId?: undefined;
|
|
7279
|
+
offset?: undefined;
|
|
6983
7280
|
contentType?: undefined;
|
|
6984
7281
|
content?: undefined;
|
|
6985
7282
|
dataBase64?: undefined;
|
|
@@ -7043,8 +7340,6 @@ export declare const toolDefinitions: ({
|
|
|
7043
7340
|
due?: undefined;
|
|
7044
7341
|
accountabilities?: undefined;
|
|
7045
7342
|
domains?: undefined;
|
|
7046
|
-
data?: undefined;
|
|
7047
|
-
completed?: undefined;
|
|
7048
7343
|
body?: undefined;
|
|
7049
7344
|
commentId?: undefined;
|
|
7050
7345
|
circleId?: undefined;
|
|
@@ -7055,6 +7350,7 @@ export declare const toolDefinitions: ({
|
|
|
7055
7350
|
user?: undefined;
|
|
7056
7351
|
key?: undefined;
|
|
7057
7352
|
threadId?: undefined;
|
|
7353
|
+
completed?: undefined;
|
|
7058
7354
|
depth?: undefined;
|
|
7059
7355
|
postId?: undefined;
|
|
7060
7356
|
reason?: undefined;
|
|
@@ -7068,11 +7364,17 @@ export declare const toolDefinitions: ({
|
|
|
7068
7364
|
from?: undefined;
|
|
7069
7365
|
to?: undefined;
|
|
7070
7366
|
completedAfter?: undefined;
|
|
7367
|
+
data?: undefined;
|
|
7071
7368
|
nestIds?: undefined;
|
|
7072
7369
|
position?: undefined;
|
|
7073
7370
|
relatedNestId?: undefined;
|
|
7074
7371
|
color?: undefined;
|
|
7075
7372
|
icon?: undefined;
|
|
7373
|
+
rrule?: undefined;
|
|
7374
|
+
direction?: undefined;
|
|
7375
|
+
cursor?: undefined;
|
|
7376
|
+
instant?: undefined;
|
|
7377
|
+
scope?: undefined;
|
|
7076
7378
|
fullWorkspaces?: undefined;
|
|
7077
7379
|
context?: undefined;
|
|
7078
7380
|
skip?: undefined;
|
|
@@ -7089,7 +7391,6 @@ export declare const toolDefinitions: ({
|
|
|
7089
7391
|
childId?: undefined;
|
|
7090
7392
|
status?: undefined;
|
|
7091
7393
|
relation?: undefined;
|
|
7092
|
-
direction?: undefined;
|
|
7093
7394
|
targetId?: undefined;
|
|
7094
7395
|
templateId?: undefined;
|
|
7095
7396
|
name?: undefined;
|
|
@@ -7108,6 +7409,7 @@ export declare const toolDefinitions: ({
|
|
|
7108
7409
|
agentUserId?: undefined;
|
|
7109
7410
|
message?: undefined;
|
|
7110
7411
|
fileId?: undefined;
|
|
7412
|
+
offset?: undefined;
|
|
7111
7413
|
contentType?: undefined;
|
|
7112
7414
|
content?: undefined;
|
|
7113
7415
|
dataBase64?: undefined;
|
|
@@ -7182,8 +7484,6 @@ export declare const toolDefinitions: ({
|
|
|
7182
7484
|
due?: undefined;
|
|
7183
7485
|
accountabilities?: undefined;
|
|
7184
7486
|
domains?: undefined;
|
|
7185
|
-
data?: undefined;
|
|
7186
|
-
completed?: undefined;
|
|
7187
7487
|
body?: undefined;
|
|
7188
7488
|
commentId?: undefined;
|
|
7189
7489
|
circleId?: undefined;
|
|
@@ -7194,6 +7494,7 @@ export declare const toolDefinitions: ({
|
|
|
7194
7494
|
user?: undefined;
|
|
7195
7495
|
key?: undefined;
|
|
7196
7496
|
threadId?: undefined;
|
|
7497
|
+
completed?: undefined;
|
|
7197
7498
|
depth?: undefined;
|
|
7198
7499
|
postId?: undefined;
|
|
7199
7500
|
reason?: undefined;
|
|
@@ -7205,11 +7506,17 @@ export declare const toolDefinitions: ({
|
|
|
7205
7506
|
language?: undefined;
|
|
7206
7507
|
labelId?: undefined;
|
|
7207
7508
|
completedAfter?: undefined;
|
|
7509
|
+
data?: undefined;
|
|
7208
7510
|
nestIds?: undefined;
|
|
7209
7511
|
position?: undefined;
|
|
7210
7512
|
relatedNestId?: undefined;
|
|
7211
7513
|
color?: undefined;
|
|
7212
7514
|
icon?: undefined;
|
|
7515
|
+
rrule?: undefined;
|
|
7516
|
+
direction?: undefined;
|
|
7517
|
+
cursor?: undefined;
|
|
7518
|
+
instant?: undefined;
|
|
7519
|
+
scope?: undefined;
|
|
7213
7520
|
fullWorkspaces?: undefined;
|
|
7214
7521
|
context?: undefined;
|
|
7215
7522
|
skip?: undefined;
|
|
@@ -7226,7 +7533,6 @@ export declare const toolDefinitions: ({
|
|
|
7226
7533
|
childId?: undefined;
|
|
7227
7534
|
status?: undefined;
|
|
7228
7535
|
relation?: undefined;
|
|
7229
|
-
direction?: undefined;
|
|
7230
7536
|
targetId?: undefined;
|
|
7231
7537
|
templateId?: undefined;
|
|
7232
7538
|
name?: undefined;
|
|
@@ -7245,6 +7551,7 @@ export declare const toolDefinitions: ({
|
|
|
7245
7551
|
agentUserId?: undefined;
|
|
7246
7552
|
message?: undefined;
|
|
7247
7553
|
fileId?: undefined;
|
|
7554
|
+
offset?: undefined;
|
|
7248
7555
|
contentType?: undefined;
|
|
7249
7556
|
content?: undefined;
|
|
7250
7557
|
dataBase64?: undefined;
|
|
@@ -7304,8 +7611,6 @@ export declare const toolDefinitions: ({
|
|
|
7304
7611
|
due?: undefined;
|
|
7305
7612
|
accountabilities?: undefined;
|
|
7306
7613
|
domains?: undefined;
|
|
7307
|
-
data?: undefined;
|
|
7308
|
-
completed?: undefined;
|
|
7309
7614
|
body?: undefined;
|
|
7310
7615
|
commentId?: undefined;
|
|
7311
7616
|
circleId?: undefined;
|
|
@@ -7316,6 +7621,7 @@ export declare const toolDefinitions: ({
|
|
|
7316
7621
|
user?: undefined;
|
|
7317
7622
|
key?: undefined;
|
|
7318
7623
|
threadId?: undefined;
|
|
7624
|
+
completed?: undefined;
|
|
7319
7625
|
depth?: undefined;
|
|
7320
7626
|
postId?: undefined;
|
|
7321
7627
|
reason?: undefined;
|
|
@@ -7330,11 +7636,17 @@ export declare const toolDefinitions: ({
|
|
|
7330
7636
|
from?: undefined;
|
|
7331
7637
|
to?: undefined;
|
|
7332
7638
|
completedAfter?: undefined;
|
|
7639
|
+
data?: undefined;
|
|
7333
7640
|
nestIds?: undefined;
|
|
7334
7641
|
position?: undefined;
|
|
7335
7642
|
relatedNestId?: undefined;
|
|
7336
7643
|
color?: undefined;
|
|
7337
7644
|
icon?: undefined;
|
|
7645
|
+
rrule?: undefined;
|
|
7646
|
+
direction?: undefined;
|
|
7647
|
+
cursor?: undefined;
|
|
7648
|
+
instant?: undefined;
|
|
7649
|
+
scope?: undefined;
|
|
7338
7650
|
fullWorkspaces?: undefined;
|
|
7339
7651
|
context?: undefined;
|
|
7340
7652
|
skip?: undefined;
|
|
@@ -7351,7 +7663,6 @@ export declare const toolDefinitions: ({
|
|
|
7351
7663
|
childId?: undefined;
|
|
7352
7664
|
status?: undefined;
|
|
7353
7665
|
relation?: undefined;
|
|
7354
|
-
direction?: undefined;
|
|
7355
7666
|
targetId?: undefined;
|
|
7356
7667
|
templateId?: undefined;
|
|
7357
7668
|
name?: undefined;
|
|
@@ -7370,6 +7681,7 @@ export declare const toolDefinitions: ({
|
|
|
7370
7681
|
agentUserId?: undefined;
|
|
7371
7682
|
message?: undefined;
|
|
7372
7683
|
fileId?: undefined;
|
|
7684
|
+
offset?: undefined;
|
|
7373
7685
|
contentType?: undefined;
|
|
7374
7686
|
content?: undefined;
|
|
7375
7687
|
dataBase64?: undefined;
|
|
@@ -7433,8 +7745,6 @@ export declare const toolDefinitions: ({
|
|
|
7433
7745
|
due?: undefined;
|
|
7434
7746
|
accountabilities?: undefined;
|
|
7435
7747
|
domains?: undefined;
|
|
7436
|
-
data?: undefined;
|
|
7437
|
-
completed?: undefined;
|
|
7438
7748
|
body?: undefined;
|
|
7439
7749
|
commentId?: undefined;
|
|
7440
7750
|
circleId?: undefined;
|
|
@@ -7445,6 +7755,7 @@ export declare const toolDefinitions: ({
|
|
|
7445
7755
|
user?: undefined;
|
|
7446
7756
|
key?: undefined;
|
|
7447
7757
|
threadId?: undefined;
|
|
7758
|
+
completed?: undefined;
|
|
7448
7759
|
depth?: undefined;
|
|
7449
7760
|
postId?: undefined;
|
|
7450
7761
|
reason?: undefined;
|
|
@@ -7458,11 +7769,17 @@ export declare const toolDefinitions: ({
|
|
|
7458
7769
|
labelId?: undefined;
|
|
7459
7770
|
from?: undefined;
|
|
7460
7771
|
to?: undefined;
|
|
7772
|
+
data?: undefined;
|
|
7461
7773
|
nestIds?: undefined;
|
|
7462
7774
|
position?: undefined;
|
|
7463
7775
|
relatedNestId?: undefined;
|
|
7464
7776
|
color?: undefined;
|
|
7465
7777
|
icon?: undefined;
|
|
7778
|
+
rrule?: undefined;
|
|
7779
|
+
direction?: undefined;
|
|
7780
|
+
cursor?: undefined;
|
|
7781
|
+
instant?: undefined;
|
|
7782
|
+
scope?: undefined;
|
|
7466
7783
|
fullWorkspaces?: undefined;
|
|
7467
7784
|
context?: undefined;
|
|
7468
7785
|
skip?: undefined;
|
|
@@ -7479,7 +7796,6 @@ export declare const toolDefinitions: ({
|
|
|
7479
7796
|
childId?: undefined;
|
|
7480
7797
|
status?: undefined;
|
|
7481
7798
|
relation?: undefined;
|
|
7482
|
-
direction?: undefined;
|
|
7483
7799
|
targetId?: undefined;
|
|
7484
7800
|
templateId?: undefined;
|
|
7485
7801
|
name?: undefined;
|
|
@@ -7498,6 +7814,7 @@ export declare const toolDefinitions: ({
|
|
|
7498
7814
|
agentUserId?: undefined;
|
|
7499
7815
|
message?: undefined;
|
|
7500
7816
|
fileId?: undefined;
|
|
7817
|
+
offset?: undefined;
|
|
7501
7818
|
contentType?: undefined;
|
|
7502
7819
|
content?: undefined;
|
|
7503
7820
|
dataBase64?: undefined;
|
|
@@ -7565,8 +7882,6 @@ export declare const toolDefinitions: ({
|
|
|
7565
7882
|
due?: undefined;
|
|
7566
7883
|
accountabilities?: undefined;
|
|
7567
7884
|
domains?: undefined;
|
|
7568
|
-
data?: undefined;
|
|
7569
|
-
completed?: undefined;
|
|
7570
7885
|
body?: undefined;
|
|
7571
7886
|
commentId?: undefined;
|
|
7572
7887
|
circleId?: undefined;
|
|
@@ -7577,6 +7892,7 @@ export declare const toolDefinitions: ({
|
|
|
7577
7892
|
user?: undefined;
|
|
7578
7893
|
key?: undefined;
|
|
7579
7894
|
threadId?: undefined;
|
|
7895
|
+
completed?: undefined;
|
|
7580
7896
|
depth?: undefined;
|
|
7581
7897
|
postId?: undefined;
|
|
7582
7898
|
reason?: undefined;
|
|
@@ -7591,11 +7907,17 @@ export declare const toolDefinitions: ({
|
|
|
7591
7907
|
from?: undefined;
|
|
7592
7908
|
to?: undefined;
|
|
7593
7909
|
completedAfter?: undefined;
|
|
7910
|
+
data?: undefined;
|
|
7594
7911
|
nestIds?: undefined;
|
|
7595
7912
|
position?: undefined;
|
|
7596
7913
|
relatedNestId?: undefined;
|
|
7597
7914
|
color?: undefined;
|
|
7598
7915
|
icon?: undefined;
|
|
7916
|
+
rrule?: undefined;
|
|
7917
|
+
direction?: undefined;
|
|
7918
|
+
cursor?: undefined;
|
|
7919
|
+
instant?: undefined;
|
|
7920
|
+
scope?: undefined;
|
|
7599
7921
|
fullWorkspaces?: undefined;
|
|
7600
7922
|
context?: undefined;
|
|
7601
7923
|
skip?: undefined;
|
|
@@ -7612,7 +7934,6 @@ export declare const toolDefinitions: ({
|
|
|
7612
7934
|
childId?: undefined;
|
|
7613
7935
|
status?: undefined;
|
|
7614
7936
|
relation?: undefined;
|
|
7615
|
-
direction?: undefined;
|
|
7616
7937
|
targetId?: undefined;
|
|
7617
7938
|
templateId?: undefined;
|
|
7618
7939
|
name?: undefined;
|
|
@@ -7631,6 +7952,7 @@ export declare const toolDefinitions: ({
|
|
|
7631
7952
|
agentUserId?: undefined;
|
|
7632
7953
|
message?: undefined;
|
|
7633
7954
|
fileId?: undefined;
|
|
7955
|
+
offset?: undefined;
|
|
7634
7956
|
contentType?: undefined;
|
|
7635
7957
|
content?: undefined;
|
|
7636
7958
|
dataBase64?: undefined;
|
|
@@ -7693,8 +8015,6 @@ export declare const toolDefinitions: ({
|
|
|
7693
8015
|
due?: undefined;
|
|
7694
8016
|
accountabilities?: undefined;
|
|
7695
8017
|
domains?: undefined;
|
|
7696
|
-
data?: undefined;
|
|
7697
|
-
completed?: undefined;
|
|
7698
8018
|
body?: undefined;
|
|
7699
8019
|
commentId?: undefined;
|
|
7700
8020
|
circleId?: undefined;
|
|
@@ -7705,6 +8025,7 @@ export declare const toolDefinitions: ({
|
|
|
7705
8025
|
user?: undefined;
|
|
7706
8026
|
key?: undefined;
|
|
7707
8027
|
threadId?: undefined;
|
|
8028
|
+
completed?: undefined;
|
|
7708
8029
|
depth?: undefined;
|
|
7709
8030
|
postId?: undefined;
|
|
7710
8031
|
reason?: undefined;
|
|
@@ -7719,11 +8040,17 @@ export declare const toolDefinitions: ({
|
|
|
7719
8040
|
from?: undefined;
|
|
7720
8041
|
to?: undefined;
|
|
7721
8042
|
completedAfter?: undefined;
|
|
8043
|
+
data?: undefined;
|
|
7722
8044
|
nestIds?: undefined;
|
|
7723
8045
|
position?: undefined;
|
|
7724
8046
|
relatedNestId?: undefined;
|
|
7725
8047
|
color?: undefined;
|
|
7726
8048
|
icon?: undefined;
|
|
8049
|
+
rrule?: undefined;
|
|
8050
|
+
direction?: undefined;
|
|
8051
|
+
cursor?: undefined;
|
|
8052
|
+
instant?: undefined;
|
|
8053
|
+
scope?: undefined;
|
|
7727
8054
|
fullWorkspaces?: undefined;
|
|
7728
8055
|
context?: undefined;
|
|
7729
8056
|
skip?: undefined;
|
|
@@ -7740,7 +8067,6 @@ export declare const toolDefinitions: ({
|
|
|
7740
8067
|
childId?: undefined;
|
|
7741
8068
|
status?: undefined;
|
|
7742
8069
|
relation?: undefined;
|
|
7743
|
-
direction?: undefined;
|
|
7744
8070
|
targetId?: undefined;
|
|
7745
8071
|
templateId?: undefined;
|
|
7746
8072
|
name?: undefined;
|
|
@@ -7759,6 +8085,7 @@ export declare const toolDefinitions: ({
|
|
|
7759
8085
|
agentUserId?: undefined;
|
|
7760
8086
|
message?: undefined;
|
|
7761
8087
|
fileId?: undefined;
|
|
8088
|
+
offset?: undefined;
|
|
7762
8089
|
contentType?: undefined;
|
|
7763
8090
|
content?: undefined;
|
|
7764
8091
|
dataBase64?: undefined;
|
|
@@ -7861,6 +8188,11 @@ export declare const toolDefinitions: ({
|
|
|
7861
8188
|
relatedNestId?: undefined;
|
|
7862
8189
|
color?: undefined;
|
|
7863
8190
|
icon?: undefined;
|
|
8191
|
+
rrule?: undefined;
|
|
8192
|
+
direction?: undefined;
|
|
8193
|
+
cursor?: undefined;
|
|
8194
|
+
instant?: undefined;
|
|
8195
|
+
scope?: undefined;
|
|
7864
8196
|
fullWorkspaces?: undefined;
|
|
7865
8197
|
context?: undefined;
|
|
7866
8198
|
skip?: undefined;
|
|
@@ -7877,7 +8209,6 @@ export declare const toolDefinitions: ({
|
|
|
7877
8209
|
childId?: undefined;
|
|
7878
8210
|
status?: undefined;
|
|
7879
8211
|
relation?: undefined;
|
|
7880
|
-
direction?: undefined;
|
|
7881
8212
|
targetId?: undefined;
|
|
7882
8213
|
templateId?: undefined;
|
|
7883
8214
|
name?: undefined;
|
|
@@ -7896,6 +8227,7 @@ export declare const toolDefinitions: ({
|
|
|
7896
8227
|
agentUserId?: undefined;
|
|
7897
8228
|
message?: undefined;
|
|
7898
8229
|
fileId?: undefined;
|
|
8230
|
+
offset?: undefined;
|
|
7899
8231
|
contentType?: undefined;
|
|
7900
8232
|
content?: undefined;
|
|
7901
8233
|
dataBase64?: undefined;
|
|
@@ -7959,8 +8291,6 @@ export declare const toolDefinitions: ({
|
|
|
7959
8291
|
due?: undefined;
|
|
7960
8292
|
accountabilities?: undefined;
|
|
7961
8293
|
domains?: undefined;
|
|
7962
|
-
data?: undefined;
|
|
7963
|
-
completed?: undefined;
|
|
7964
8294
|
body?: undefined;
|
|
7965
8295
|
commentId?: undefined;
|
|
7966
8296
|
circleId?: undefined;
|
|
@@ -7971,6 +8301,7 @@ export declare const toolDefinitions: ({
|
|
|
7971
8301
|
user?: undefined;
|
|
7972
8302
|
key?: undefined;
|
|
7973
8303
|
threadId?: undefined;
|
|
8304
|
+
completed?: undefined;
|
|
7974
8305
|
depth?: undefined;
|
|
7975
8306
|
postId?: undefined;
|
|
7976
8307
|
reason?: undefined;
|
|
@@ -7985,10 +8316,16 @@ export declare const toolDefinitions: ({
|
|
|
7985
8316
|
from?: undefined;
|
|
7986
8317
|
to?: undefined;
|
|
7987
8318
|
completedAfter?: undefined;
|
|
8319
|
+
data?: undefined;
|
|
7988
8320
|
position?: undefined;
|
|
7989
8321
|
relatedNestId?: undefined;
|
|
7990
8322
|
color?: undefined;
|
|
7991
8323
|
icon?: undefined;
|
|
8324
|
+
rrule?: undefined;
|
|
8325
|
+
direction?: undefined;
|
|
8326
|
+
cursor?: undefined;
|
|
8327
|
+
instant?: undefined;
|
|
8328
|
+
scope?: undefined;
|
|
7992
8329
|
fullWorkspaces?: undefined;
|
|
7993
8330
|
context?: undefined;
|
|
7994
8331
|
skip?: undefined;
|
|
@@ -8005,7 +8342,6 @@ export declare const toolDefinitions: ({
|
|
|
8005
8342
|
childId?: undefined;
|
|
8006
8343
|
status?: undefined;
|
|
8007
8344
|
relation?: undefined;
|
|
8008
|
-
direction?: undefined;
|
|
8009
8345
|
targetId?: undefined;
|
|
8010
8346
|
templateId?: undefined;
|
|
8011
8347
|
name?: undefined;
|
|
@@ -8024,6 +8360,7 @@ export declare const toolDefinitions: ({
|
|
|
8024
8360
|
agentUserId?: undefined;
|
|
8025
8361
|
message?: undefined;
|
|
8026
8362
|
fileId?: undefined;
|
|
8363
|
+
offset?: undefined;
|
|
8027
8364
|
contentType?: undefined;
|
|
8028
8365
|
content?: undefined;
|
|
8029
8366
|
dataBase64?: undefined;
|
|
@@ -8092,8 +8429,6 @@ export declare const toolDefinitions: ({
|
|
|
8092
8429
|
due?: undefined;
|
|
8093
8430
|
accountabilities?: undefined;
|
|
8094
8431
|
domains?: undefined;
|
|
8095
|
-
data?: undefined;
|
|
8096
|
-
completed?: undefined;
|
|
8097
8432
|
body?: undefined;
|
|
8098
8433
|
commentId?: undefined;
|
|
8099
8434
|
circleId?: undefined;
|
|
@@ -8104,6 +8439,7 @@ export declare const toolDefinitions: ({
|
|
|
8104
8439
|
user?: undefined;
|
|
8105
8440
|
key?: undefined;
|
|
8106
8441
|
threadId?: undefined;
|
|
8442
|
+
completed?: undefined;
|
|
8107
8443
|
depth?: undefined;
|
|
8108
8444
|
postId?: undefined;
|
|
8109
8445
|
reason?: undefined;
|
|
@@ -8118,9 +8454,15 @@ export declare const toolDefinitions: ({
|
|
|
8118
8454
|
from?: undefined;
|
|
8119
8455
|
to?: undefined;
|
|
8120
8456
|
completedAfter?: undefined;
|
|
8457
|
+
data?: undefined;
|
|
8121
8458
|
nestIds?: undefined;
|
|
8122
8459
|
color?: undefined;
|
|
8123
8460
|
icon?: undefined;
|
|
8461
|
+
rrule?: undefined;
|
|
8462
|
+
direction?: undefined;
|
|
8463
|
+
cursor?: undefined;
|
|
8464
|
+
instant?: undefined;
|
|
8465
|
+
scope?: undefined;
|
|
8124
8466
|
fullWorkspaces?: undefined;
|
|
8125
8467
|
context?: undefined;
|
|
8126
8468
|
skip?: undefined;
|
|
@@ -8137,7 +8479,6 @@ export declare const toolDefinitions: ({
|
|
|
8137
8479
|
childId?: undefined;
|
|
8138
8480
|
status?: undefined;
|
|
8139
8481
|
relation?: undefined;
|
|
8140
|
-
direction?: undefined;
|
|
8141
8482
|
targetId?: undefined;
|
|
8142
8483
|
templateId?: undefined;
|
|
8143
8484
|
name?: undefined;
|
|
@@ -8156,6 +8497,7 @@ export declare const toolDefinitions: ({
|
|
|
8156
8497
|
agentUserId?: undefined;
|
|
8157
8498
|
message?: undefined;
|
|
8158
8499
|
fileId?: undefined;
|
|
8500
|
+
offset?: undefined;
|
|
8159
8501
|
contentType?: undefined;
|
|
8160
8502
|
content?: undefined;
|
|
8161
8503
|
dataBase64?: undefined;
|
|
@@ -8226,8 +8568,6 @@ export declare const toolDefinitions: ({
|
|
|
8226
8568
|
due?: undefined;
|
|
8227
8569
|
accountabilities?: undefined;
|
|
8228
8570
|
domains?: undefined;
|
|
8229
|
-
data?: undefined;
|
|
8230
|
-
completed?: undefined;
|
|
8231
8571
|
body?: undefined;
|
|
8232
8572
|
commentId?: undefined;
|
|
8233
8573
|
circleId?: undefined;
|
|
@@ -8238,6 +8578,7 @@ export declare const toolDefinitions: ({
|
|
|
8238
8578
|
user?: undefined;
|
|
8239
8579
|
key?: undefined;
|
|
8240
8580
|
threadId?: undefined;
|
|
8581
|
+
completed?: undefined;
|
|
8241
8582
|
depth?: undefined;
|
|
8242
8583
|
postId?: undefined;
|
|
8243
8584
|
reason?: undefined;
|
|
@@ -8252,9 +8593,15 @@ export declare const toolDefinitions: ({
|
|
|
8252
8593
|
from?: undefined;
|
|
8253
8594
|
to?: undefined;
|
|
8254
8595
|
completedAfter?: undefined;
|
|
8596
|
+
data?: undefined;
|
|
8255
8597
|
nestIds?: undefined;
|
|
8256
8598
|
position?: undefined;
|
|
8257
8599
|
relatedNestId?: undefined;
|
|
8600
|
+
rrule?: undefined;
|
|
8601
|
+
direction?: undefined;
|
|
8602
|
+
cursor?: undefined;
|
|
8603
|
+
instant?: undefined;
|
|
8604
|
+
scope?: undefined;
|
|
8258
8605
|
fullWorkspaces?: undefined;
|
|
8259
8606
|
context?: undefined;
|
|
8260
8607
|
skip?: undefined;
|
|
@@ -8271,7 +8618,6 @@ export declare const toolDefinitions: ({
|
|
|
8271
8618
|
childId?: undefined;
|
|
8272
8619
|
status?: undefined;
|
|
8273
8620
|
relation?: undefined;
|
|
8274
|
-
direction?: undefined;
|
|
8275
8621
|
targetId?: undefined;
|
|
8276
8622
|
templateId?: undefined;
|
|
8277
8623
|
name?: undefined;
|
|
@@ -8290,6 +8636,7 @@ export declare const toolDefinitions: ({
|
|
|
8290
8636
|
agentUserId?: undefined;
|
|
8291
8637
|
message?: undefined;
|
|
8292
8638
|
fileId?: undefined;
|
|
8639
|
+
offset?: undefined;
|
|
8293
8640
|
contentType?: undefined;
|
|
8294
8641
|
content?: undefined;
|
|
8295
8642
|
dataBase64?: undefined;
|
|
@@ -8356,8 +8703,6 @@ export declare const toolDefinitions: ({
|
|
|
8356
8703
|
due?: undefined;
|
|
8357
8704
|
accountabilities?: undefined;
|
|
8358
8705
|
domains?: undefined;
|
|
8359
|
-
data?: undefined;
|
|
8360
|
-
completed?: undefined;
|
|
8361
8706
|
body?: undefined;
|
|
8362
8707
|
commentId?: undefined;
|
|
8363
8708
|
circleId?: undefined;
|
|
@@ -8368,6 +8713,7 @@ export declare const toolDefinitions: ({
|
|
|
8368
8713
|
user?: undefined;
|
|
8369
8714
|
key?: undefined;
|
|
8370
8715
|
threadId?: undefined;
|
|
8716
|
+
completed?: undefined;
|
|
8371
8717
|
depth?: undefined;
|
|
8372
8718
|
postId?: undefined;
|
|
8373
8719
|
reason?: undefined;
|
|
@@ -8382,10 +8728,16 @@ export declare const toolDefinitions: ({
|
|
|
8382
8728
|
from?: undefined;
|
|
8383
8729
|
to?: undefined;
|
|
8384
8730
|
completedAfter?: undefined;
|
|
8731
|
+
data?: undefined;
|
|
8385
8732
|
position?: undefined;
|
|
8386
8733
|
relatedNestId?: undefined;
|
|
8387
8734
|
color?: undefined;
|
|
8388
8735
|
icon?: undefined;
|
|
8736
|
+
rrule?: undefined;
|
|
8737
|
+
direction?: undefined;
|
|
8738
|
+
cursor?: undefined;
|
|
8739
|
+
instant?: undefined;
|
|
8740
|
+
scope?: undefined;
|
|
8389
8741
|
fullWorkspaces?: undefined;
|
|
8390
8742
|
context?: undefined;
|
|
8391
8743
|
skip?: undefined;
|
|
@@ -8402,7 +8754,6 @@ export declare const toolDefinitions: ({
|
|
|
8402
8754
|
childId?: undefined;
|
|
8403
8755
|
status?: undefined;
|
|
8404
8756
|
relation?: undefined;
|
|
8405
|
-
direction?: undefined;
|
|
8406
8757
|
targetId?: undefined;
|
|
8407
8758
|
templateId?: undefined;
|
|
8408
8759
|
name?: undefined;
|
|
@@ -8421,6 +8772,7 @@ export declare const toolDefinitions: ({
|
|
|
8421
8772
|
agentUserId?: undefined;
|
|
8422
8773
|
message?: undefined;
|
|
8423
8774
|
fileId?: undefined;
|
|
8775
|
+
offset?: undefined;
|
|
8424
8776
|
contentType?: undefined;
|
|
8425
8777
|
content?: undefined;
|
|
8426
8778
|
dataBase64?: undefined;
|
|
@@ -8437,10 +8789,14 @@ export declare const toolDefinitions: ({
|
|
|
8437
8789
|
inputSchema: {
|
|
8438
8790
|
type: "object";
|
|
8439
8791
|
properties: {
|
|
8440
|
-
|
|
8792
|
+
nestId: {
|
|
8441
8793
|
type: string;
|
|
8442
8794
|
description: string;
|
|
8443
8795
|
};
|
|
8796
|
+
rrule: {
|
|
8797
|
+
type: string[];
|
|
8798
|
+
description: string;
|
|
8799
|
+
};
|
|
8444
8800
|
topic?: undefined;
|
|
8445
8801
|
search?: undefined;
|
|
8446
8802
|
includeImages?: undefined;
|
|
@@ -8449,6 +8805,7 @@ export declare const toolDefinitions: ({
|
|
|
8449
8805
|
sort?: undefined;
|
|
8450
8806
|
limit?: undefined;
|
|
8451
8807
|
page?: undefined;
|
|
8808
|
+
stripDescription?: undefined;
|
|
8452
8809
|
workspaceId?: undefined;
|
|
8453
8810
|
title?: undefined;
|
|
8454
8811
|
purpose?: undefined;
|
|
@@ -8461,7 +8818,6 @@ export declare const toolDefinitions: ({
|
|
|
8461
8818
|
strict?: undefined;
|
|
8462
8819
|
linkedUsers?: undefined;
|
|
8463
8820
|
_listTitle?: undefined;
|
|
8464
|
-
nestId?: undefined;
|
|
8465
8821
|
fieldsMetaData?: undefined;
|
|
8466
8822
|
hints?: undefined;
|
|
8467
8823
|
hintTypes?: undefined;
|
|
@@ -8480,8 +8836,6 @@ export declare const toolDefinitions: ({
|
|
|
8480
8836
|
due?: undefined;
|
|
8481
8837
|
accountabilities?: undefined;
|
|
8482
8838
|
domains?: undefined;
|
|
8483
|
-
data?: undefined;
|
|
8484
|
-
completed?: undefined;
|
|
8485
8839
|
body?: undefined;
|
|
8486
8840
|
commentId?: undefined;
|
|
8487
8841
|
circleId?: undefined;
|
|
@@ -8492,6 +8846,7 @@ export declare const toolDefinitions: ({
|
|
|
8492
8846
|
user?: undefined;
|
|
8493
8847
|
key?: undefined;
|
|
8494
8848
|
threadId?: undefined;
|
|
8849
|
+
completed?: undefined;
|
|
8495
8850
|
depth?: undefined;
|
|
8496
8851
|
postId?: undefined;
|
|
8497
8852
|
reason?: undefined;
|
|
@@ -8506,11 +8861,16 @@ export declare const toolDefinitions: ({
|
|
|
8506
8861
|
from?: undefined;
|
|
8507
8862
|
to?: undefined;
|
|
8508
8863
|
completedAfter?: undefined;
|
|
8864
|
+
data?: undefined;
|
|
8509
8865
|
nestIds?: undefined;
|
|
8510
8866
|
position?: undefined;
|
|
8511
8867
|
relatedNestId?: undefined;
|
|
8512
8868
|
color?: undefined;
|
|
8513
8869
|
icon?: undefined;
|
|
8870
|
+
direction?: undefined;
|
|
8871
|
+
cursor?: undefined;
|
|
8872
|
+
instant?: undefined;
|
|
8873
|
+
scope?: undefined;
|
|
8514
8874
|
fullWorkspaces?: undefined;
|
|
8515
8875
|
context?: undefined;
|
|
8516
8876
|
skip?: undefined;
|
|
@@ -8527,7 +8887,6 @@ export declare const toolDefinitions: ({
|
|
|
8527
8887
|
childId?: undefined;
|
|
8528
8888
|
status?: undefined;
|
|
8529
8889
|
relation?: undefined;
|
|
8530
|
-
direction?: undefined;
|
|
8531
8890
|
targetId?: undefined;
|
|
8532
8891
|
templateId?: undefined;
|
|
8533
8892
|
name?: undefined;
|
|
@@ -8546,16 +8905,12 @@ export declare const toolDefinitions: ({
|
|
|
8546
8905
|
agentUserId?: undefined;
|
|
8547
8906
|
message?: undefined;
|
|
8548
8907
|
fileId?: undefined;
|
|
8908
|
+
offset?: undefined;
|
|
8549
8909
|
contentType?: undefined;
|
|
8550
8910
|
content?: undefined;
|
|
8551
8911
|
dataBase64?: undefined;
|
|
8552
8912
|
};
|
|
8553
|
-
required
|
|
8554
|
-
};
|
|
8555
|
-
_meta: {
|
|
8556
|
-
ui: {
|
|
8557
|
-
resourceUri: string;
|
|
8558
|
-
};
|
|
8913
|
+
required: string[];
|
|
8559
8914
|
};
|
|
8560
8915
|
} | {
|
|
8561
8916
|
annotations: {
|
|
@@ -8567,11 +8922,20 @@ export declare const toolDefinitions: ({
|
|
|
8567
8922
|
inputSchema: {
|
|
8568
8923
|
type: "object";
|
|
8569
8924
|
properties: {
|
|
8570
|
-
|
|
8925
|
+
nestId: {
|
|
8571
8926
|
type: string;
|
|
8572
8927
|
description: string;
|
|
8573
8928
|
};
|
|
8574
|
-
|
|
8929
|
+
direction: {
|
|
8930
|
+
type: string;
|
|
8931
|
+
enum: string[];
|
|
8932
|
+
description: string;
|
|
8933
|
+
};
|
|
8934
|
+
cursor: {
|
|
8935
|
+
type: string[];
|
|
8936
|
+
description: string;
|
|
8937
|
+
};
|
|
8938
|
+
limit: {
|
|
8575
8939
|
type: string;
|
|
8576
8940
|
description: string;
|
|
8577
8941
|
};
|
|
@@ -8595,7 +8959,6 @@ export declare const toolDefinitions: ({
|
|
|
8595
8959
|
strict?: undefined;
|
|
8596
8960
|
linkedUsers?: undefined;
|
|
8597
8961
|
_listTitle?: undefined;
|
|
8598
|
-
nestId?: undefined;
|
|
8599
8962
|
fieldsMetaData?: undefined;
|
|
8600
8963
|
hints?: undefined;
|
|
8601
8964
|
hintTypes?: undefined;
|
|
@@ -8614,17 +8977,17 @@ export declare const toolDefinitions: ({
|
|
|
8614
8977
|
due?: undefined;
|
|
8615
8978
|
accountabilities?: undefined;
|
|
8616
8979
|
domains?: undefined;
|
|
8617
|
-
data?: undefined;
|
|
8618
|
-
completed?: undefined;
|
|
8619
8980
|
body?: undefined;
|
|
8620
8981
|
commentId?: undefined;
|
|
8621
8982
|
circleId?: undefined;
|
|
8622
8983
|
userId?: undefined;
|
|
8984
|
+
withUser?: undefined;
|
|
8623
8985
|
unread?: undefined;
|
|
8624
8986
|
includeCompleted?: undefined;
|
|
8625
8987
|
user?: undefined;
|
|
8626
8988
|
key?: undefined;
|
|
8627
8989
|
threadId?: undefined;
|
|
8990
|
+
completed?: undefined;
|
|
8628
8991
|
depth?: undefined;
|
|
8629
8992
|
postId?: undefined;
|
|
8630
8993
|
reason?: undefined;
|
|
@@ -8639,11 +9002,15 @@ export declare const toolDefinitions: ({
|
|
|
8639
9002
|
from?: undefined;
|
|
8640
9003
|
to?: undefined;
|
|
8641
9004
|
completedAfter?: undefined;
|
|
9005
|
+
data?: undefined;
|
|
8642
9006
|
nestIds?: undefined;
|
|
8643
9007
|
position?: undefined;
|
|
8644
9008
|
relatedNestId?: undefined;
|
|
8645
9009
|
color?: undefined;
|
|
8646
9010
|
icon?: undefined;
|
|
9011
|
+
rrule?: undefined;
|
|
9012
|
+
instant?: undefined;
|
|
9013
|
+
scope?: undefined;
|
|
8647
9014
|
fullWorkspaces?: undefined;
|
|
8648
9015
|
context?: undefined;
|
|
8649
9016
|
skip?: undefined;
|
|
@@ -8660,7 +9027,6 @@ export declare const toolDefinitions: ({
|
|
|
8660
9027
|
childId?: undefined;
|
|
8661
9028
|
status?: undefined;
|
|
8662
9029
|
relation?: undefined;
|
|
8663
|
-
direction?: undefined;
|
|
8664
9030
|
targetId?: undefined;
|
|
8665
9031
|
templateId?: undefined;
|
|
8666
9032
|
name?: undefined;
|
|
@@ -8679,11 +9045,12 @@ export declare const toolDefinitions: ({
|
|
|
8679
9045
|
agentUserId?: undefined;
|
|
8680
9046
|
message?: undefined;
|
|
8681
9047
|
fileId?: undefined;
|
|
9048
|
+
offset?: undefined;
|
|
8682
9049
|
contentType?: undefined;
|
|
8683
9050
|
content?: undefined;
|
|
8684
9051
|
dataBase64?: undefined;
|
|
8685
9052
|
};
|
|
8686
|
-
required
|
|
9053
|
+
required: string[];
|
|
8687
9054
|
};
|
|
8688
9055
|
} | {
|
|
8689
9056
|
annotations: {
|
|
@@ -8695,12 +9062,17 @@ export declare const toolDefinitions: ({
|
|
|
8695
9062
|
inputSchema: {
|
|
8696
9063
|
type: "object";
|
|
8697
9064
|
properties: {
|
|
8698
|
-
|
|
9065
|
+
nestId: {
|
|
8699
9066
|
type: string;
|
|
8700
9067
|
description: string;
|
|
8701
9068
|
};
|
|
8702
|
-
|
|
9069
|
+
instant: {
|
|
9070
|
+
type: string[];
|
|
9071
|
+
description: string;
|
|
9072
|
+
};
|
|
9073
|
+
scope: {
|
|
8703
9074
|
type: string;
|
|
9075
|
+
enum: string[];
|
|
8704
9076
|
description: string;
|
|
8705
9077
|
};
|
|
8706
9078
|
topic?: undefined;
|
|
@@ -8709,6 +9081,7 @@ export declare const toolDefinitions: ({
|
|
|
8709
9081
|
imageIndexes?: undefined;
|
|
8710
9082
|
maxImages?: undefined;
|
|
8711
9083
|
sort?: undefined;
|
|
9084
|
+
limit?: undefined;
|
|
8712
9085
|
page?: undefined;
|
|
8713
9086
|
stripDescription?: undefined;
|
|
8714
9087
|
workspaceId?: undefined;
|
|
@@ -8723,7 +9096,6 @@ export declare const toolDefinitions: ({
|
|
|
8723
9096
|
strict?: undefined;
|
|
8724
9097
|
linkedUsers?: undefined;
|
|
8725
9098
|
_listTitle?: undefined;
|
|
8726
|
-
nestId?: undefined;
|
|
8727
9099
|
fieldsMetaData?: undefined;
|
|
8728
9100
|
hints?: undefined;
|
|
8729
9101
|
hintTypes?: undefined;
|
|
@@ -8742,17 +9114,17 @@ export declare const toolDefinitions: ({
|
|
|
8742
9114
|
due?: undefined;
|
|
8743
9115
|
accountabilities?: undefined;
|
|
8744
9116
|
domains?: undefined;
|
|
8745
|
-
data?: undefined;
|
|
8746
|
-
completed?: undefined;
|
|
8747
9117
|
body?: undefined;
|
|
8748
9118
|
commentId?: undefined;
|
|
8749
9119
|
circleId?: undefined;
|
|
9120
|
+
userId?: undefined;
|
|
8750
9121
|
withUser?: undefined;
|
|
8751
9122
|
unread?: undefined;
|
|
8752
9123
|
includeCompleted?: undefined;
|
|
8753
9124
|
user?: undefined;
|
|
8754
9125
|
key?: undefined;
|
|
8755
9126
|
threadId?: undefined;
|
|
9127
|
+
completed?: undefined;
|
|
8756
9128
|
depth?: undefined;
|
|
8757
9129
|
postId?: undefined;
|
|
8758
9130
|
reason?: undefined;
|
|
@@ -8767,11 +9139,15 @@ export declare const toolDefinitions: ({
|
|
|
8767
9139
|
from?: undefined;
|
|
8768
9140
|
to?: undefined;
|
|
8769
9141
|
completedAfter?: undefined;
|
|
9142
|
+
data?: undefined;
|
|
8770
9143
|
nestIds?: undefined;
|
|
8771
9144
|
position?: undefined;
|
|
8772
9145
|
relatedNestId?: undefined;
|
|
8773
9146
|
color?: undefined;
|
|
8774
9147
|
icon?: undefined;
|
|
9148
|
+
rrule?: undefined;
|
|
9149
|
+
direction?: undefined;
|
|
9150
|
+
cursor?: undefined;
|
|
8775
9151
|
fullWorkspaces?: undefined;
|
|
8776
9152
|
context?: undefined;
|
|
8777
9153
|
skip?: undefined;
|
|
@@ -8788,7 +9164,6 @@ export declare const toolDefinitions: ({
|
|
|
8788
9164
|
childId?: undefined;
|
|
8789
9165
|
status?: undefined;
|
|
8790
9166
|
relation?: undefined;
|
|
8791
|
-
direction?: undefined;
|
|
8792
9167
|
targetId?: undefined;
|
|
8793
9168
|
templateId?: undefined;
|
|
8794
9169
|
name?: undefined;
|
|
@@ -8807,6 +9182,7 @@ export declare const toolDefinitions: ({
|
|
|
8807
9182
|
agentUserId?: undefined;
|
|
8808
9183
|
message?: undefined;
|
|
8809
9184
|
fileId?: undefined;
|
|
9185
|
+
offset?: undefined;
|
|
8810
9186
|
contentType?: undefined;
|
|
8811
9187
|
content?: undefined;
|
|
8812
9188
|
dataBase64?: undefined;
|
|
@@ -8823,14 +9199,60 @@ export declare const toolDefinitions: ({
|
|
|
8823
9199
|
inputSchema: {
|
|
8824
9200
|
type: "object";
|
|
8825
9201
|
properties: {
|
|
8826
|
-
|
|
9202
|
+
title: {
|
|
8827
9203
|
type: string;
|
|
8828
9204
|
description: string;
|
|
8829
9205
|
};
|
|
8830
|
-
|
|
9206
|
+
description: {
|
|
9207
|
+
type: string;
|
|
9208
|
+
description: string;
|
|
9209
|
+
};
|
|
9210
|
+
purpose: {
|
|
9211
|
+
type: string;
|
|
9212
|
+
description: string;
|
|
9213
|
+
};
|
|
9214
|
+
parentId: {
|
|
9215
|
+
type: string;
|
|
9216
|
+
description: string;
|
|
9217
|
+
};
|
|
9218
|
+
labels: {
|
|
9219
|
+
type: string;
|
|
9220
|
+
items: {
|
|
9221
|
+
type: string;
|
|
9222
|
+
};
|
|
9223
|
+
description: string;
|
|
9224
|
+
};
|
|
9225
|
+
fields: {
|
|
9226
|
+
type: string;
|
|
9227
|
+
description: string;
|
|
9228
|
+
};
|
|
9229
|
+
users: {
|
|
9230
|
+
type: string;
|
|
9231
|
+
items: {
|
|
9232
|
+
type: string;
|
|
9233
|
+
};
|
|
9234
|
+
description: string;
|
|
9235
|
+
};
|
|
9236
|
+
data: {
|
|
9237
|
+
type: string;
|
|
9238
|
+
description: string;
|
|
9239
|
+
};
|
|
9240
|
+
due: {
|
|
9241
|
+
type: string;
|
|
9242
|
+
description: string;
|
|
9243
|
+
};
|
|
9244
|
+
completed: {
|
|
9245
|
+
type: string;
|
|
9246
|
+
description: string;
|
|
9247
|
+
};
|
|
9248
|
+
nestId: {
|
|
8831
9249
|
type: string;
|
|
8832
9250
|
description: string;
|
|
8833
9251
|
};
|
|
9252
|
+
instant: {
|
|
9253
|
+
type: string[];
|
|
9254
|
+
description: string;
|
|
9255
|
+
};
|
|
8834
9256
|
topic?: undefined;
|
|
8835
9257
|
search?: undefined;
|
|
8836
9258
|
includeImages?: undefined;
|
|
@@ -8841,8 +9263,6 @@ export declare const toolDefinitions: ({
|
|
|
8841
9263
|
page?: undefined;
|
|
8842
9264
|
stripDescription?: undefined;
|
|
8843
9265
|
workspaceId?: undefined;
|
|
8844
|
-
title?: undefined;
|
|
8845
|
-
purpose?: undefined;
|
|
8846
9266
|
type?: undefined;
|
|
8847
9267
|
governance?: undefined;
|
|
8848
9268
|
plan?: undefined;
|
|
@@ -8862,16 +9282,540 @@ export declare const toolDefinitions: ({
|
|
|
8862
9282
|
whoCan?: undefined;
|
|
8863
9283
|
sampleSize?: undefined;
|
|
8864
9284
|
path?: undefined;
|
|
8865
|
-
|
|
8866
|
-
|
|
9285
|
+
accountabilities?: undefined;
|
|
9286
|
+
domains?: undefined;
|
|
9287
|
+
body?: undefined;
|
|
9288
|
+
commentId?: undefined;
|
|
9289
|
+
circleId?: undefined;
|
|
9290
|
+
userId?: undefined;
|
|
9291
|
+
withUser?: undefined;
|
|
9292
|
+
unread?: undefined;
|
|
9293
|
+
includeCompleted?: undefined;
|
|
9294
|
+
user?: undefined;
|
|
9295
|
+
key?: undefined;
|
|
9296
|
+
threadId?: undefined;
|
|
9297
|
+
depth?: undefined;
|
|
9298
|
+
postId?: undefined;
|
|
9299
|
+
reason?: undefined;
|
|
9300
|
+
includeSubCircles?: undefined;
|
|
9301
|
+
endDate?: undefined;
|
|
9302
|
+
metricId?: undefined;
|
|
9303
|
+
agents?: undefined;
|
|
9304
|
+
username?: undefined;
|
|
9305
|
+
fullName?: undefined;
|
|
9306
|
+
language?: undefined;
|
|
9307
|
+
labelId?: undefined;
|
|
9308
|
+
from?: undefined;
|
|
9309
|
+
to?: undefined;
|
|
9310
|
+
completedAfter?: undefined;
|
|
9311
|
+
nestIds?: undefined;
|
|
9312
|
+
position?: undefined;
|
|
9313
|
+
relatedNestId?: undefined;
|
|
9314
|
+
color?: undefined;
|
|
9315
|
+
icon?: undefined;
|
|
9316
|
+
rrule?: undefined;
|
|
9317
|
+
direction?: undefined;
|
|
9318
|
+
cursor?: undefined;
|
|
9319
|
+
scope?: undefined;
|
|
9320
|
+
fullWorkspaces?: undefined;
|
|
9321
|
+
context?: undefined;
|
|
9322
|
+
skip?: undefined;
|
|
9323
|
+
showRead?: undefined;
|
|
9324
|
+
group?: undefined;
|
|
9325
|
+
feeling?: undefined;
|
|
9326
|
+
needs?: undefined;
|
|
9327
|
+
tensionId?: undefined;
|
|
9328
|
+
_id?: undefined;
|
|
9329
|
+
role?: undefined;
|
|
9330
|
+
roleId?: undefined;
|
|
9331
|
+
removeNest?: undefined;
|
|
9332
|
+
partId?: undefined;
|
|
9333
|
+
childId?: undefined;
|
|
9334
|
+
status?: undefined;
|
|
9335
|
+
relation?: undefined;
|
|
9336
|
+
targetId?: undefined;
|
|
9337
|
+
templateId?: undefined;
|
|
9338
|
+
name?: undefined;
|
|
9339
|
+
config?: undefined;
|
|
9340
|
+
capabilities?: undefined;
|
|
9341
|
+
exposure?: undefined;
|
|
9342
|
+
authStrategy?: undefined;
|
|
9343
|
+
roleAssignable?: undefined;
|
|
9344
|
+
agentConfig?: undefined;
|
|
9345
|
+
connectorId?: undefined;
|
|
9346
|
+
ownerType?: undefined;
|
|
9347
|
+
ownerId?: undefined;
|
|
9348
|
+
enabled?: undefined;
|
|
9349
|
+
includeDisabled?: undefined;
|
|
9350
|
+
connectionId?: undefined;
|
|
9351
|
+
agentUserId?: undefined;
|
|
9352
|
+
message?: undefined;
|
|
9353
|
+
fileId?: undefined;
|
|
9354
|
+
offset?: undefined;
|
|
9355
|
+
contentType?: undefined;
|
|
9356
|
+
content?: undefined;
|
|
9357
|
+
dataBase64?: undefined;
|
|
9358
|
+
};
|
|
9359
|
+
required: string[];
|
|
9360
|
+
};
|
|
9361
|
+
} | {
|
|
9362
|
+
annotations: {
|
|
9363
|
+
readOnlyHint: boolean;
|
|
9364
|
+
destructiveHint: boolean;
|
|
9365
|
+
};
|
|
9366
|
+
name: string;
|
|
9367
|
+
description: string;
|
|
9368
|
+
inputSchema: {
|
|
9369
|
+
type: "object";
|
|
9370
|
+
properties: {
|
|
9371
|
+
stripDescription: {
|
|
9372
|
+
type: string;
|
|
9373
|
+
description: string;
|
|
9374
|
+
};
|
|
9375
|
+
topic?: undefined;
|
|
9376
|
+
search?: undefined;
|
|
9377
|
+
includeImages?: undefined;
|
|
9378
|
+
imageIndexes?: undefined;
|
|
9379
|
+
maxImages?: undefined;
|
|
9380
|
+
sort?: undefined;
|
|
9381
|
+
limit?: undefined;
|
|
9382
|
+
page?: undefined;
|
|
9383
|
+
workspaceId?: undefined;
|
|
9384
|
+
title?: undefined;
|
|
9385
|
+
purpose?: undefined;
|
|
9386
|
+
type?: undefined;
|
|
9387
|
+
governance?: undefined;
|
|
9388
|
+
plan?: undefined;
|
|
9389
|
+
apps?: undefined;
|
|
9390
|
+
layout?: undefined;
|
|
9391
|
+
query?: undefined;
|
|
9392
|
+
strict?: undefined;
|
|
9393
|
+
linkedUsers?: undefined;
|
|
9394
|
+
_listTitle?: undefined;
|
|
9395
|
+
nestId?: undefined;
|
|
9396
|
+
fieldsMetaData?: undefined;
|
|
9397
|
+
hints?: undefined;
|
|
9398
|
+
hintTypes?: undefined;
|
|
9399
|
+
minSeverity?: undefined;
|
|
9400
|
+
provenance?: undefined;
|
|
9401
|
+
rights?: undefined;
|
|
9402
|
+
forUser?: undefined;
|
|
9403
|
+
whoCan?: undefined;
|
|
9404
|
+
sampleSize?: undefined;
|
|
9405
|
+
path?: undefined;
|
|
9406
|
+
parentId?: undefined;
|
|
9407
|
+
description?: undefined;
|
|
9408
|
+
labels?: undefined;
|
|
9409
|
+
fields?: undefined;
|
|
9410
|
+
users?: undefined;
|
|
9411
|
+
due?: undefined;
|
|
9412
|
+
accountabilities?: undefined;
|
|
9413
|
+
domains?: undefined;
|
|
9414
|
+
body?: undefined;
|
|
9415
|
+
commentId?: undefined;
|
|
9416
|
+
circleId?: undefined;
|
|
9417
|
+
userId?: undefined;
|
|
9418
|
+
withUser?: undefined;
|
|
9419
|
+
unread?: undefined;
|
|
9420
|
+
includeCompleted?: undefined;
|
|
9421
|
+
user?: undefined;
|
|
9422
|
+
key?: undefined;
|
|
9423
|
+
threadId?: undefined;
|
|
9424
|
+
completed?: undefined;
|
|
9425
|
+
depth?: undefined;
|
|
9426
|
+
postId?: undefined;
|
|
9427
|
+
reason?: undefined;
|
|
9428
|
+
includeSubCircles?: undefined;
|
|
9429
|
+
endDate?: undefined;
|
|
9430
|
+
metricId?: undefined;
|
|
9431
|
+
agents?: undefined;
|
|
9432
|
+
username?: undefined;
|
|
9433
|
+
fullName?: undefined;
|
|
9434
|
+
language?: undefined;
|
|
9435
|
+
labelId?: undefined;
|
|
9436
|
+
from?: undefined;
|
|
9437
|
+
to?: undefined;
|
|
9438
|
+
completedAfter?: undefined;
|
|
9439
|
+
data?: undefined;
|
|
9440
|
+
nestIds?: undefined;
|
|
9441
|
+
position?: undefined;
|
|
9442
|
+
relatedNestId?: undefined;
|
|
9443
|
+
color?: undefined;
|
|
9444
|
+
icon?: undefined;
|
|
9445
|
+
rrule?: undefined;
|
|
9446
|
+
direction?: undefined;
|
|
9447
|
+
cursor?: undefined;
|
|
9448
|
+
instant?: undefined;
|
|
9449
|
+
scope?: undefined;
|
|
9450
|
+
fullWorkspaces?: undefined;
|
|
9451
|
+
context?: undefined;
|
|
9452
|
+
skip?: undefined;
|
|
9453
|
+
showRead?: undefined;
|
|
9454
|
+
group?: undefined;
|
|
9455
|
+
feeling?: undefined;
|
|
9456
|
+
needs?: undefined;
|
|
9457
|
+
tensionId?: undefined;
|
|
9458
|
+
_id?: undefined;
|
|
9459
|
+
role?: undefined;
|
|
9460
|
+
roleId?: undefined;
|
|
9461
|
+
removeNest?: undefined;
|
|
9462
|
+
partId?: undefined;
|
|
9463
|
+
childId?: undefined;
|
|
9464
|
+
status?: undefined;
|
|
9465
|
+
relation?: undefined;
|
|
9466
|
+
targetId?: undefined;
|
|
9467
|
+
templateId?: undefined;
|
|
9468
|
+
name?: undefined;
|
|
9469
|
+
config?: undefined;
|
|
9470
|
+
capabilities?: undefined;
|
|
9471
|
+
exposure?: undefined;
|
|
9472
|
+
authStrategy?: undefined;
|
|
9473
|
+
roleAssignable?: undefined;
|
|
9474
|
+
agentConfig?: undefined;
|
|
9475
|
+
connectorId?: undefined;
|
|
9476
|
+
ownerType?: undefined;
|
|
9477
|
+
ownerId?: undefined;
|
|
9478
|
+
enabled?: undefined;
|
|
9479
|
+
includeDisabled?: undefined;
|
|
9480
|
+
connectionId?: undefined;
|
|
9481
|
+
agentUserId?: undefined;
|
|
9482
|
+
message?: undefined;
|
|
9483
|
+
fileId?: undefined;
|
|
9484
|
+
offset?: undefined;
|
|
9485
|
+
contentType?: undefined;
|
|
9486
|
+
content?: undefined;
|
|
9487
|
+
dataBase64?: undefined;
|
|
9488
|
+
};
|
|
9489
|
+
required?: undefined;
|
|
9490
|
+
};
|
|
9491
|
+
_meta: {
|
|
9492
|
+
ui: {
|
|
9493
|
+
resourceUri: string;
|
|
9494
|
+
};
|
|
9495
|
+
};
|
|
9496
|
+
} | {
|
|
9497
|
+
annotations: {
|
|
9498
|
+
readOnlyHint: boolean;
|
|
9499
|
+
destructiveHint: boolean;
|
|
9500
|
+
};
|
|
9501
|
+
name: string;
|
|
9502
|
+
description: string;
|
|
9503
|
+
inputSchema: {
|
|
9504
|
+
type: "object";
|
|
9505
|
+
properties: {
|
|
9506
|
+
limit: {
|
|
9507
|
+
type: string;
|
|
9508
|
+
description: string;
|
|
9509
|
+
};
|
|
9510
|
+
withUser: {
|
|
9511
|
+
type: string;
|
|
9512
|
+
description: string;
|
|
9513
|
+
};
|
|
9514
|
+
topic?: undefined;
|
|
9515
|
+
search?: undefined;
|
|
9516
|
+
includeImages?: undefined;
|
|
9517
|
+
imageIndexes?: undefined;
|
|
9518
|
+
maxImages?: undefined;
|
|
9519
|
+
sort?: undefined;
|
|
9520
|
+
page?: undefined;
|
|
9521
|
+
stripDescription?: undefined;
|
|
9522
|
+
workspaceId?: undefined;
|
|
9523
|
+
title?: undefined;
|
|
9524
|
+
purpose?: undefined;
|
|
9525
|
+
type?: undefined;
|
|
9526
|
+
governance?: undefined;
|
|
9527
|
+
plan?: undefined;
|
|
9528
|
+
apps?: undefined;
|
|
9529
|
+
layout?: undefined;
|
|
9530
|
+
query?: undefined;
|
|
9531
|
+
strict?: undefined;
|
|
9532
|
+
linkedUsers?: undefined;
|
|
9533
|
+
_listTitle?: undefined;
|
|
9534
|
+
nestId?: undefined;
|
|
9535
|
+
fieldsMetaData?: undefined;
|
|
9536
|
+
hints?: undefined;
|
|
9537
|
+
hintTypes?: undefined;
|
|
9538
|
+
minSeverity?: undefined;
|
|
9539
|
+
provenance?: undefined;
|
|
9540
|
+
rights?: undefined;
|
|
9541
|
+
forUser?: undefined;
|
|
9542
|
+
whoCan?: undefined;
|
|
9543
|
+
sampleSize?: undefined;
|
|
9544
|
+
path?: undefined;
|
|
9545
|
+
parentId?: undefined;
|
|
9546
|
+
description?: undefined;
|
|
9547
|
+
labels?: undefined;
|
|
9548
|
+
fields?: undefined;
|
|
9549
|
+
users?: undefined;
|
|
9550
|
+
due?: undefined;
|
|
9551
|
+
accountabilities?: undefined;
|
|
9552
|
+
domains?: undefined;
|
|
9553
|
+
body?: undefined;
|
|
9554
|
+
commentId?: undefined;
|
|
9555
|
+
circleId?: undefined;
|
|
9556
|
+
userId?: undefined;
|
|
9557
|
+
unread?: undefined;
|
|
9558
|
+
includeCompleted?: undefined;
|
|
9559
|
+
user?: undefined;
|
|
9560
|
+
key?: undefined;
|
|
9561
|
+
threadId?: undefined;
|
|
9562
|
+
completed?: undefined;
|
|
9563
|
+
depth?: undefined;
|
|
9564
|
+
postId?: undefined;
|
|
9565
|
+
reason?: undefined;
|
|
9566
|
+
includeSubCircles?: undefined;
|
|
9567
|
+
endDate?: undefined;
|
|
9568
|
+
metricId?: undefined;
|
|
9569
|
+
agents?: undefined;
|
|
9570
|
+
username?: undefined;
|
|
9571
|
+
fullName?: undefined;
|
|
9572
|
+
language?: undefined;
|
|
9573
|
+
labelId?: undefined;
|
|
9574
|
+
from?: undefined;
|
|
9575
|
+
to?: undefined;
|
|
9576
|
+
completedAfter?: undefined;
|
|
9577
|
+
data?: undefined;
|
|
9578
|
+
nestIds?: undefined;
|
|
9579
|
+
position?: undefined;
|
|
9580
|
+
relatedNestId?: undefined;
|
|
9581
|
+
color?: undefined;
|
|
9582
|
+
icon?: undefined;
|
|
9583
|
+
rrule?: undefined;
|
|
9584
|
+
direction?: undefined;
|
|
9585
|
+
cursor?: undefined;
|
|
9586
|
+
instant?: undefined;
|
|
9587
|
+
scope?: undefined;
|
|
9588
|
+
fullWorkspaces?: undefined;
|
|
9589
|
+
context?: undefined;
|
|
9590
|
+
skip?: undefined;
|
|
9591
|
+
showRead?: undefined;
|
|
9592
|
+
group?: undefined;
|
|
9593
|
+
feeling?: undefined;
|
|
9594
|
+
needs?: undefined;
|
|
9595
|
+
tensionId?: undefined;
|
|
9596
|
+
_id?: undefined;
|
|
9597
|
+
role?: undefined;
|
|
9598
|
+
roleId?: undefined;
|
|
9599
|
+
removeNest?: undefined;
|
|
9600
|
+
partId?: undefined;
|
|
9601
|
+
childId?: undefined;
|
|
9602
|
+
status?: undefined;
|
|
9603
|
+
relation?: undefined;
|
|
9604
|
+
targetId?: undefined;
|
|
9605
|
+
templateId?: undefined;
|
|
9606
|
+
name?: undefined;
|
|
9607
|
+
config?: undefined;
|
|
9608
|
+
capabilities?: undefined;
|
|
9609
|
+
exposure?: undefined;
|
|
9610
|
+
authStrategy?: undefined;
|
|
9611
|
+
roleAssignable?: undefined;
|
|
9612
|
+
agentConfig?: undefined;
|
|
9613
|
+
connectorId?: undefined;
|
|
9614
|
+
ownerType?: undefined;
|
|
9615
|
+
ownerId?: undefined;
|
|
9616
|
+
enabled?: undefined;
|
|
9617
|
+
includeDisabled?: undefined;
|
|
9618
|
+
connectionId?: undefined;
|
|
9619
|
+
agentUserId?: undefined;
|
|
9620
|
+
message?: undefined;
|
|
9621
|
+
fileId?: undefined;
|
|
9622
|
+
offset?: undefined;
|
|
9623
|
+
contentType?: undefined;
|
|
9624
|
+
content?: undefined;
|
|
9625
|
+
dataBase64?: undefined;
|
|
9626
|
+
};
|
|
9627
|
+
required?: undefined;
|
|
9628
|
+
};
|
|
9629
|
+
} | {
|
|
9630
|
+
annotations: {
|
|
9631
|
+
readOnlyHint: boolean;
|
|
9632
|
+
destructiveHint: boolean;
|
|
9633
|
+
};
|
|
9634
|
+
name: string;
|
|
9635
|
+
description: string;
|
|
9636
|
+
inputSchema: {
|
|
9637
|
+
type: "object";
|
|
9638
|
+
properties: {
|
|
9639
|
+
userId: {
|
|
9640
|
+
type: string;
|
|
9641
|
+
description: string;
|
|
9642
|
+
};
|
|
9643
|
+
limit: {
|
|
9644
|
+
type: string;
|
|
9645
|
+
description: string;
|
|
9646
|
+
};
|
|
9647
|
+
topic?: undefined;
|
|
9648
|
+
search?: undefined;
|
|
9649
|
+
includeImages?: undefined;
|
|
9650
|
+
imageIndexes?: undefined;
|
|
9651
|
+
maxImages?: undefined;
|
|
9652
|
+
sort?: undefined;
|
|
9653
|
+
page?: undefined;
|
|
9654
|
+
stripDescription?: undefined;
|
|
9655
|
+
workspaceId?: undefined;
|
|
9656
|
+
title?: undefined;
|
|
9657
|
+
purpose?: undefined;
|
|
9658
|
+
type?: undefined;
|
|
9659
|
+
governance?: undefined;
|
|
9660
|
+
plan?: undefined;
|
|
9661
|
+
apps?: undefined;
|
|
9662
|
+
layout?: undefined;
|
|
9663
|
+
query?: undefined;
|
|
9664
|
+
strict?: undefined;
|
|
9665
|
+
linkedUsers?: undefined;
|
|
9666
|
+
_listTitle?: undefined;
|
|
9667
|
+
nestId?: undefined;
|
|
9668
|
+
fieldsMetaData?: undefined;
|
|
9669
|
+
hints?: undefined;
|
|
9670
|
+
hintTypes?: undefined;
|
|
9671
|
+
minSeverity?: undefined;
|
|
9672
|
+
provenance?: undefined;
|
|
9673
|
+
rights?: undefined;
|
|
9674
|
+
forUser?: undefined;
|
|
9675
|
+
whoCan?: undefined;
|
|
9676
|
+
sampleSize?: undefined;
|
|
9677
|
+
path?: undefined;
|
|
9678
|
+
parentId?: undefined;
|
|
9679
|
+
description?: undefined;
|
|
8867
9680
|
labels?: undefined;
|
|
8868
9681
|
fields?: undefined;
|
|
8869
9682
|
users?: undefined;
|
|
8870
9683
|
due?: undefined;
|
|
8871
9684
|
accountabilities?: undefined;
|
|
8872
9685
|
domains?: undefined;
|
|
8873
|
-
|
|
9686
|
+
body?: undefined;
|
|
9687
|
+
commentId?: undefined;
|
|
9688
|
+
circleId?: undefined;
|
|
9689
|
+
withUser?: undefined;
|
|
9690
|
+
unread?: undefined;
|
|
9691
|
+
includeCompleted?: undefined;
|
|
9692
|
+
user?: undefined;
|
|
9693
|
+
key?: undefined;
|
|
9694
|
+
threadId?: undefined;
|
|
8874
9695
|
completed?: undefined;
|
|
9696
|
+
depth?: undefined;
|
|
9697
|
+
postId?: undefined;
|
|
9698
|
+
reason?: undefined;
|
|
9699
|
+
includeSubCircles?: undefined;
|
|
9700
|
+
endDate?: undefined;
|
|
9701
|
+
metricId?: undefined;
|
|
9702
|
+
agents?: undefined;
|
|
9703
|
+
username?: undefined;
|
|
9704
|
+
fullName?: undefined;
|
|
9705
|
+
language?: undefined;
|
|
9706
|
+
labelId?: undefined;
|
|
9707
|
+
from?: undefined;
|
|
9708
|
+
to?: undefined;
|
|
9709
|
+
completedAfter?: undefined;
|
|
9710
|
+
data?: undefined;
|
|
9711
|
+
nestIds?: undefined;
|
|
9712
|
+
position?: undefined;
|
|
9713
|
+
relatedNestId?: undefined;
|
|
9714
|
+
color?: undefined;
|
|
9715
|
+
icon?: undefined;
|
|
9716
|
+
rrule?: undefined;
|
|
9717
|
+
direction?: undefined;
|
|
9718
|
+
cursor?: undefined;
|
|
9719
|
+
instant?: undefined;
|
|
9720
|
+
scope?: undefined;
|
|
9721
|
+
fullWorkspaces?: undefined;
|
|
9722
|
+
context?: undefined;
|
|
9723
|
+
skip?: undefined;
|
|
9724
|
+
showRead?: undefined;
|
|
9725
|
+
group?: undefined;
|
|
9726
|
+
feeling?: undefined;
|
|
9727
|
+
needs?: undefined;
|
|
9728
|
+
tensionId?: undefined;
|
|
9729
|
+
_id?: undefined;
|
|
9730
|
+
role?: undefined;
|
|
9731
|
+
roleId?: undefined;
|
|
9732
|
+
removeNest?: undefined;
|
|
9733
|
+
partId?: undefined;
|
|
9734
|
+
childId?: undefined;
|
|
9735
|
+
status?: undefined;
|
|
9736
|
+
relation?: undefined;
|
|
9737
|
+
targetId?: undefined;
|
|
9738
|
+
templateId?: undefined;
|
|
9739
|
+
name?: undefined;
|
|
9740
|
+
config?: undefined;
|
|
9741
|
+
capabilities?: undefined;
|
|
9742
|
+
exposure?: undefined;
|
|
9743
|
+
authStrategy?: undefined;
|
|
9744
|
+
roleAssignable?: undefined;
|
|
9745
|
+
agentConfig?: undefined;
|
|
9746
|
+
connectorId?: undefined;
|
|
9747
|
+
ownerType?: undefined;
|
|
9748
|
+
ownerId?: undefined;
|
|
9749
|
+
enabled?: undefined;
|
|
9750
|
+
includeDisabled?: undefined;
|
|
9751
|
+
connectionId?: undefined;
|
|
9752
|
+
agentUserId?: undefined;
|
|
9753
|
+
message?: undefined;
|
|
9754
|
+
fileId?: undefined;
|
|
9755
|
+
offset?: undefined;
|
|
9756
|
+
contentType?: undefined;
|
|
9757
|
+
content?: undefined;
|
|
9758
|
+
dataBase64?: undefined;
|
|
9759
|
+
};
|
|
9760
|
+
required: string[];
|
|
9761
|
+
};
|
|
9762
|
+
} | {
|
|
9763
|
+
annotations: {
|
|
9764
|
+
readOnlyHint: boolean;
|
|
9765
|
+
destructiveHint: boolean;
|
|
9766
|
+
};
|
|
9767
|
+
name: string;
|
|
9768
|
+
description: string;
|
|
9769
|
+
inputSchema: {
|
|
9770
|
+
type: "object";
|
|
9771
|
+
properties: {
|
|
9772
|
+
nestId: {
|
|
9773
|
+
type: string;
|
|
9774
|
+
description: string;
|
|
9775
|
+
};
|
|
9776
|
+
labelId: {
|
|
9777
|
+
type: string;
|
|
9778
|
+
description: string;
|
|
9779
|
+
};
|
|
9780
|
+
topic?: undefined;
|
|
9781
|
+
search?: undefined;
|
|
9782
|
+
includeImages?: undefined;
|
|
9783
|
+
imageIndexes?: undefined;
|
|
9784
|
+
maxImages?: undefined;
|
|
9785
|
+
sort?: undefined;
|
|
9786
|
+
limit?: undefined;
|
|
9787
|
+
page?: undefined;
|
|
9788
|
+
stripDescription?: undefined;
|
|
9789
|
+
workspaceId?: undefined;
|
|
9790
|
+
title?: undefined;
|
|
9791
|
+
purpose?: undefined;
|
|
9792
|
+
type?: undefined;
|
|
9793
|
+
governance?: undefined;
|
|
9794
|
+
plan?: undefined;
|
|
9795
|
+
apps?: undefined;
|
|
9796
|
+
layout?: undefined;
|
|
9797
|
+
query?: undefined;
|
|
9798
|
+
strict?: undefined;
|
|
9799
|
+
linkedUsers?: undefined;
|
|
9800
|
+
_listTitle?: undefined;
|
|
9801
|
+
fieldsMetaData?: undefined;
|
|
9802
|
+
hints?: undefined;
|
|
9803
|
+
hintTypes?: undefined;
|
|
9804
|
+
minSeverity?: undefined;
|
|
9805
|
+
provenance?: undefined;
|
|
9806
|
+
rights?: undefined;
|
|
9807
|
+
forUser?: undefined;
|
|
9808
|
+
whoCan?: undefined;
|
|
9809
|
+
sampleSize?: undefined;
|
|
9810
|
+
path?: undefined;
|
|
9811
|
+
parentId?: undefined;
|
|
9812
|
+
description?: undefined;
|
|
9813
|
+
labels?: undefined;
|
|
9814
|
+
fields?: undefined;
|
|
9815
|
+
users?: undefined;
|
|
9816
|
+
due?: undefined;
|
|
9817
|
+
accountabilities?: undefined;
|
|
9818
|
+
domains?: undefined;
|
|
8875
9819
|
body?: undefined;
|
|
8876
9820
|
commentId?: undefined;
|
|
8877
9821
|
circleId?: undefined;
|
|
@@ -8882,6 +9826,7 @@ export declare const toolDefinitions: ({
|
|
|
8882
9826
|
user?: undefined;
|
|
8883
9827
|
key?: undefined;
|
|
8884
9828
|
threadId?: undefined;
|
|
9829
|
+
completed?: undefined;
|
|
8885
9830
|
depth?: undefined;
|
|
8886
9831
|
postId?: undefined;
|
|
8887
9832
|
reason?: undefined;
|
|
@@ -8895,11 +9840,17 @@ export declare const toolDefinitions: ({
|
|
|
8895
9840
|
from?: undefined;
|
|
8896
9841
|
to?: undefined;
|
|
8897
9842
|
completedAfter?: undefined;
|
|
9843
|
+
data?: undefined;
|
|
8898
9844
|
nestIds?: undefined;
|
|
8899
9845
|
position?: undefined;
|
|
8900
9846
|
relatedNestId?: undefined;
|
|
8901
9847
|
color?: undefined;
|
|
8902
9848
|
icon?: undefined;
|
|
9849
|
+
rrule?: undefined;
|
|
9850
|
+
direction?: undefined;
|
|
9851
|
+
cursor?: undefined;
|
|
9852
|
+
instant?: undefined;
|
|
9853
|
+
scope?: undefined;
|
|
8903
9854
|
fullWorkspaces?: undefined;
|
|
8904
9855
|
context?: undefined;
|
|
8905
9856
|
skip?: undefined;
|
|
@@ -8916,7 +9867,6 @@ export declare const toolDefinitions: ({
|
|
|
8916
9867
|
childId?: undefined;
|
|
8917
9868
|
status?: undefined;
|
|
8918
9869
|
relation?: undefined;
|
|
8919
|
-
direction?: undefined;
|
|
8920
9870
|
targetId?: undefined;
|
|
8921
9871
|
templateId?: undefined;
|
|
8922
9872
|
name?: undefined;
|
|
@@ -8935,6 +9885,7 @@ export declare const toolDefinitions: ({
|
|
|
8935
9885
|
agentUserId?: undefined;
|
|
8936
9886
|
message?: undefined;
|
|
8937
9887
|
fileId?: undefined;
|
|
9888
|
+
offset?: undefined;
|
|
8938
9889
|
contentType?: undefined;
|
|
8939
9890
|
content?: undefined;
|
|
8940
9891
|
dataBase64?: undefined;
|
|
@@ -8995,8 +9946,6 @@ export declare const toolDefinitions: ({
|
|
|
8995
9946
|
due?: undefined;
|
|
8996
9947
|
accountabilities?: undefined;
|
|
8997
9948
|
domains?: undefined;
|
|
8998
|
-
data?: undefined;
|
|
8999
|
-
completed?: undefined;
|
|
9000
9949
|
body?: undefined;
|
|
9001
9950
|
commentId?: undefined;
|
|
9002
9951
|
circleId?: undefined;
|
|
@@ -9007,6 +9956,7 @@ export declare const toolDefinitions: ({
|
|
|
9007
9956
|
user?: undefined;
|
|
9008
9957
|
key?: undefined;
|
|
9009
9958
|
threadId?: undefined;
|
|
9959
|
+
completed?: undefined;
|
|
9010
9960
|
depth?: undefined;
|
|
9011
9961
|
postId?: undefined;
|
|
9012
9962
|
reason?: undefined;
|
|
@@ -9021,11 +9971,17 @@ export declare const toolDefinitions: ({
|
|
|
9021
9971
|
from?: undefined;
|
|
9022
9972
|
to?: undefined;
|
|
9023
9973
|
completedAfter?: undefined;
|
|
9974
|
+
data?: undefined;
|
|
9024
9975
|
nestIds?: undefined;
|
|
9025
9976
|
position?: undefined;
|
|
9026
9977
|
relatedNestId?: undefined;
|
|
9027
9978
|
color?: undefined;
|
|
9028
9979
|
icon?: undefined;
|
|
9980
|
+
rrule?: undefined;
|
|
9981
|
+
direction?: undefined;
|
|
9982
|
+
cursor?: undefined;
|
|
9983
|
+
instant?: undefined;
|
|
9984
|
+
scope?: undefined;
|
|
9029
9985
|
context?: undefined;
|
|
9030
9986
|
skip?: undefined;
|
|
9031
9987
|
showRead?: undefined;
|
|
@@ -9041,7 +9997,6 @@ export declare const toolDefinitions: ({
|
|
|
9041
9997
|
childId?: undefined;
|
|
9042
9998
|
status?: undefined;
|
|
9043
9999
|
relation?: undefined;
|
|
9044
|
-
direction?: undefined;
|
|
9045
10000
|
targetId?: undefined;
|
|
9046
10001
|
templateId?: undefined;
|
|
9047
10002
|
name?: undefined;
|
|
@@ -9060,6 +10015,7 @@ export declare const toolDefinitions: ({
|
|
|
9060
10015
|
agentUserId?: undefined;
|
|
9061
10016
|
message?: undefined;
|
|
9062
10017
|
fileId?: undefined;
|
|
10018
|
+
offset?: undefined;
|
|
9063
10019
|
contentType?: undefined;
|
|
9064
10020
|
content?: undefined;
|
|
9065
10021
|
dataBase64?: undefined;
|
|
@@ -9120,8 +10076,6 @@ export declare const toolDefinitions: ({
|
|
|
9120
10076
|
due?: undefined;
|
|
9121
10077
|
accountabilities?: undefined;
|
|
9122
10078
|
domains?: undefined;
|
|
9123
|
-
data?: undefined;
|
|
9124
|
-
completed?: undefined;
|
|
9125
10079
|
body?: undefined;
|
|
9126
10080
|
commentId?: undefined;
|
|
9127
10081
|
circleId?: undefined;
|
|
@@ -9132,6 +10086,7 @@ export declare const toolDefinitions: ({
|
|
|
9132
10086
|
user?: undefined;
|
|
9133
10087
|
key?: undefined;
|
|
9134
10088
|
threadId?: undefined;
|
|
10089
|
+
completed?: undefined;
|
|
9135
10090
|
depth?: undefined;
|
|
9136
10091
|
postId?: undefined;
|
|
9137
10092
|
reason?: undefined;
|
|
@@ -9146,11 +10101,17 @@ export declare const toolDefinitions: ({
|
|
|
9146
10101
|
from?: undefined;
|
|
9147
10102
|
to?: undefined;
|
|
9148
10103
|
completedAfter?: undefined;
|
|
10104
|
+
data?: undefined;
|
|
9149
10105
|
nestIds?: undefined;
|
|
9150
10106
|
position?: undefined;
|
|
9151
10107
|
relatedNestId?: undefined;
|
|
9152
10108
|
color?: undefined;
|
|
9153
10109
|
icon?: undefined;
|
|
10110
|
+
rrule?: undefined;
|
|
10111
|
+
direction?: undefined;
|
|
10112
|
+
cursor?: undefined;
|
|
10113
|
+
instant?: undefined;
|
|
10114
|
+
scope?: undefined;
|
|
9154
10115
|
fullWorkspaces?: undefined;
|
|
9155
10116
|
skip?: undefined;
|
|
9156
10117
|
showRead?: undefined;
|
|
@@ -9166,7 +10127,6 @@ export declare const toolDefinitions: ({
|
|
|
9166
10127
|
childId?: undefined;
|
|
9167
10128
|
status?: undefined;
|
|
9168
10129
|
relation?: undefined;
|
|
9169
|
-
direction?: undefined;
|
|
9170
10130
|
targetId?: undefined;
|
|
9171
10131
|
templateId?: undefined;
|
|
9172
10132
|
name?: undefined;
|
|
@@ -9185,6 +10145,7 @@ export declare const toolDefinitions: ({
|
|
|
9185
10145
|
agentUserId?: undefined;
|
|
9186
10146
|
message?: undefined;
|
|
9187
10147
|
fileId?: undefined;
|
|
10148
|
+
offset?: undefined;
|
|
9188
10149
|
contentType?: undefined;
|
|
9189
10150
|
content?: undefined;
|
|
9190
10151
|
dataBase64?: undefined;
|
|
@@ -9260,8 +10221,6 @@ export declare const toolDefinitions: ({
|
|
|
9260
10221
|
due?: undefined;
|
|
9261
10222
|
accountabilities?: undefined;
|
|
9262
10223
|
domains?: undefined;
|
|
9263
|
-
data?: undefined;
|
|
9264
|
-
completed?: undefined;
|
|
9265
10224
|
body?: undefined;
|
|
9266
10225
|
commentId?: undefined;
|
|
9267
10226
|
circleId?: undefined;
|
|
@@ -9272,6 +10231,7 @@ export declare const toolDefinitions: ({
|
|
|
9272
10231
|
user?: undefined;
|
|
9273
10232
|
key?: undefined;
|
|
9274
10233
|
threadId?: undefined;
|
|
10234
|
+
completed?: undefined;
|
|
9275
10235
|
depth?: undefined;
|
|
9276
10236
|
postId?: undefined;
|
|
9277
10237
|
reason?: undefined;
|
|
@@ -9286,11 +10246,17 @@ export declare const toolDefinitions: ({
|
|
|
9286
10246
|
from?: undefined;
|
|
9287
10247
|
to?: undefined;
|
|
9288
10248
|
completedAfter?: undefined;
|
|
10249
|
+
data?: undefined;
|
|
9289
10250
|
nestIds?: undefined;
|
|
9290
10251
|
position?: undefined;
|
|
9291
10252
|
relatedNestId?: undefined;
|
|
9292
10253
|
color?: undefined;
|
|
9293
10254
|
icon?: undefined;
|
|
10255
|
+
rrule?: undefined;
|
|
10256
|
+
direction?: undefined;
|
|
10257
|
+
cursor?: undefined;
|
|
10258
|
+
instant?: undefined;
|
|
10259
|
+
scope?: undefined;
|
|
9294
10260
|
fullWorkspaces?: undefined;
|
|
9295
10261
|
context?: undefined;
|
|
9296
10262
|
feeling?: undefined;
|
|
@@ -9304,7 +10270,6 @@ export declare const toolDefinitions: ({
|
|
|
9304
10270
|
childId?: undefined;
|
|
9305
10271
|
status?: undefined;
|
|
9306
10272
|
relation?: undefined;
|
|
9307
|
-
direction?: undefined;
|
|
9308
10273
|
targetId?: undefined;
|
|
9309
10274
|
templateId?: undefined;
|
|
9310
10275
|
name?: undefined;
|
|
@@ -9323,6 +10288,7 @@ export declare const toolDefinitions: ({
|
|
|
9323
10288
|
agentUserId?: undefined;
|
|
9324
10289
|
message?: undefined;
|
|
9325
10290
|
fileId?: undefined;
|
|
10291
|
+
offset?: undefined;
|
|
9326
10292
|
contentType?: undefined;
|
|
9327
10293
|
content?: undefined;
|
|
9328
10294
|
dataBase64?: undefined;
|
|
@@ -9396,8 +10362,6 @@ export declare const toolDefinitions: ({
|
|
|
9396
10362
|
due?: undefined;
|
|
9397
10363
|
accountabilities?: undefined;
|
|
9398
10364
|
domains?: undefined;
|
|
9399
|
-
data?: undefined;
|
|
9400
|
-
completed?: undefined;
|
|
9401
10365
|
body?: undefined;
|
|
9402
10366
|
commentId?: undefined;
|
|
9403
10367
|
circleId?: undefined;
|
|
@@ -9408,6 +10372,7 @@ export declare const toolDefinitions: ({
|
|
|
9408
10372
|
user?: undefined;
|
|
9409
10373
|
key?: undefined;
|
|
9410
10374
|
threadId?: undefined;
|
|
10375
|
+
completed?: undefined;
|
|
9411
10376
|
depth?: undefined;
|
|
9412
10377
|
postId?: undefined;
|
|
9413
10378
|
reason?: undefined;
|
|
@@ -9422,11 +10387,17 @@ export declare const toolDefinitions: ({
|
|
|
9422
10387
|
from?: undefined;
|
|
9423
10388
|
to?: undefined;
|
|
9424
10389
|
completedAfter?: undefined;
|
|
10390
|
+
data?: undefined;
|
|
9425
10391
|
nestIds?: undefined;
|
|
9426
10392
|
position?: undefined;
|
|
9427
10393
|
relatedNestId?: undefined;
|
|
9428
10394
|
color?: undefined;
|
|
9429
10395
|
icon?: undefined;
|
|
10396
|
+
rrule?: undefined;
|
|
10397
|
+
direction?: undefined;
|
|
10398
|
+
cursor?: undefined;
|
|
10399
|
+
instant?: undefined;
|
|
10400
|
+
scope?: undefined;
|
|
9430
10401
|
fullWorkspaces?: undefined;
|
|
9431
10402
|
context?: undefined;
|
|
9432
10403
|
skip?: undefined;
|
|
@@ -9441,7 +10412,6 @@ export declare const toolDefinitions: ({
|
|
|
9441
10412
|
childId?: undefined;
|
|
9442
10413
|
status?: undefined;
|
|
9443
10414
|
relation?: undefined;
|
|
9444
|
-
direction?: undefined;
|
|
9445
10415
|
targetId?: undefined;
|
|
9446
10416
|
templateId?: undefined;
|
|
9447
10417
|
name?: undefined;
|
|
@@ -9460,6 +10430,7 @@ export declare const toolDefinitions: ({
|
|
|
9460
10430
|
agentUserId?: undefined;
|
|
9461
10431
|
message?: undefined;
|
|
9462
10432
|
fileId?: undefined;
|
|
10433
|
+
offset?: undefined;
|
|
9463
10434
|
contentType?: undefined;
|
|
9464
10435
|
content?: undefined;
|
|
9465
10436
|
dataBase64?: undefined;
|
|
@@ -9523,8 +10494,6 @@ export declare const toolDefinitions: ({
|
|
|
9523
10494
|
due?: undefined;
|
|
9524
10495
|
accountabilities?: undefined;
|
|
9525
10496
|
domains?: undefined;
|
|
9526
|
-
data?: undefined;
|
|
9527
|
-
completed?: undefined;
|
|
9528
10497
|
body?: undefined;
|
|
9529
10498
|
commentId?: undefined;
|
|
9530
10499
|
circleId?: undefined;
|
|
@@ -9535,6 +10504,7 @@ export declare const toolDefinitions: ({
|
|
|
9535
10504
|
user?: undefined;
|
|
9536
10505
|
key?: undefined;
|
|
9537
10506
|
threadId?: undefined;
|
|
10507
|
+
completed?: undefined;
|
|
9538
10508
|
depth?: undefined;
|
|
9539
10509
|
postId?: undefined;
|
|
9540
10510
|
reason?: undefined;
|
|
@@ -9549,11 +10519,17 @@ export declare const toolDefinitions: ({
|
|
|
9549
10519
|
from?: undefined;
|
|
9550
10520
|
to?: undefined;
|
|
9551
10521
|
completedAfter?: undefined;
|
|
10522
|
+
data?: undefined;
|
|
9552
10523
|
nestIds?: undefined;
|
|
9553
10524
|
position?: undefined;
|
|
9554
10525
|
relatedNestId?: undefined;
|
|
9555
10526
|
color?: undefined;
|
|
9556
10527
|
icon?: undefined;
|
|
10528
|
+
rrule?: undefined;
|
|
10529
|
+
direction?: undefined;
|
|
10530
|
+
cursor?: undefined;
|
|
10531
|
+
instant?: undefined;
|
|
10532
|
+
scope?: undefined;
|
|
9557
10533
|
fullWorkspaces?: undefined;
|
|
9558
10534
|
context?: undefined;
|
|
9559
10535
|
skip?: undefined;
|
|
@@ -9569,7 +10545,6 @@ export declare const toolDefinitions: ({
|
|
|
9569
10545
|
childId?: undefined;
|
|
9570
10546
|
status?: undefined;
|
|
9571
10547
|
relation?: undefined;
|
|
9572
|
-
direction?: undefined;
|
|
9573
10548
|
targetId?: undefined;
|
|
9574
10549
|
templateId?: undefined;
|
|
9575
10550
|
name?: undefined;
|
|
@@ -9588,6 +10563,7 @@ export declare const toolDefinitions: ({
|
|
|
9588
10563
|
agentUserId?: undefined;
|
|
9589
10564
|
message?: undefined;
|
|
9590
10565
|
fileId?: undefined;
|
|
10566
|
+
offset?: undefined;
|
|
9591
10567
|
contentType?: undefined;
|
|
9592
10568
|
content?: undefined;
|
|
9593
10569
|
dataBase64?: undefined;
|
|
@@ -9659,8 +10635,6 @@ export declare const toolDefinitions: ({
|
|
|
9659
10635
|
due?: undefined;
|
|
9660
10636
|
accountabilities?: undefined;
|
|
9661
10637
|
domains?: undefined;
|
|
9662
|
-
data?: undefined;
|
|
9663
|
-
completed?: undefined;
|
|
9664
10638
|
body?: undefined;
|
|
9665
10639
|
commentId?: undefined;
|
|
9666
10640
|
circleId?: undefined;
|
|
@@ -9671,6 +10645,7 @@ export declare const toolDefinitions: ({
|
|
|
9671
10645
|
user?: undefined;
|
|
9672
10646
|
key?: undefined;
|
|
9673
10647
|
threadId?: undefined;
|
|
10648
|
+
completed?: undefined;
|
|
9674
10649
|
depth?: undefined;
|
|
9675
10650
|
postId?: undefined;
|
|
9676
10651
|
reason?: undefined;
|
|
@@ -9685,11 +10660,17 @@ export declare const toolDefinitions: ({
|
|
|
9685
10660
|
from?: undefined;
|
|
9686
10661
|
to?: undefined;
|
|
9687
10662
|
completedAfter?: undefined;
|
|
10663
|
+
data?: undefined;
|
|
9688
10664
|
nestIds?: undefined;
|
|
9689
10665
|
position?: undefined;
|
|
9690
10666
|
relatedNestId?: undefined;
|
|
9691
10667
|
color?: undefined;
|
|
9692
10668
|
icon?: undefined;
|
|
10669
|
+
rrule?: undefined;
|
|
10670
|
+
direction?: undefined;
|
|
10671
|
+
cursor?: undefined;
|
|
10672
|
+
instant?: undefined;
|
|
10673
|
+
scope?: undefined;
|
|
9693
10674
|
fullWorkspaces?: undefined;
|
|
9694
10675
|
context?: undefined;
|
|
9695
10676
|
skip?: undefined;
|
|
@@ -9706,7 +10687,6 @@ export declare const toolDefinitions: ({
|
|
|
9706
10687
|
childId?: undefined;
|
|
9707
10688
|
status?: undefined;
|
|
9708
10689
|
relation?: undefined;
|
|
9709
|
-
direction?: undefined;
|
|
9710
10690
|
targetId?: undefined;
|
|
9711
10691
|
templateId?: undefined;
|
|
9712
10692
|
name?: undefined;
|
|
@@ -9725,6 +10705,7 @@ export declare const toolDefinitions: ({
|
|
|
9725
10705
|
agentUserId?: undefined;
|
|
9726
10706
|
message?: undefined;
|
|
9727
10707
|
fileId?: undefined;
|
|
10708
|
+
offset?: undefined;
|
|
9728
10709
|
contentType?: undefined;
|
|
9729
10710
|
content?: undefined;
|
|
9730
10711
|
dataBase64?: undefined;
|
|
@@ -9802,8 +10783,6 @@ export declare const toolDefinitions: ({
|
|
|
9802
10783
|
due?: undefined;
|
|
9803
10784
|
accountabilities?: undefined;
|
|
9804
10785
|
domains?: undefined;
|
|
9805
|
-
data?: undefined;
|
|
9806
|
-
completed?: undefined;
|
|
9807
10786
|
body?: undefined;
|
|
9808
10787
|
commentId?: undefined;
|
|
9809
10788
|
circleId?: undefined;
|
|
@@ -9814,6 +10793,7 @@ export declare const toolDefinitions: ({
|
|
|
9814
10793
|
user?: undefined;
|
|
9815
10794
|
key?: undefined;
|
|
9816
10795
|
threadId?: undefined;
|
|
10796
|
+
completed?: undefined;
|
|
9817
10797
|
depth?: undefined;
|
|
9818
10798
|
postId?: undefined;
|
|
9819
10799
|
reason?: undefined;
|
|
@@ -9828,11 +10808,17 @@ export declare const toolDefinitions: ({
|
|
|
9828
10808
|
from?: undefined;
|
|
9829
10809
|
to?: undefined;
|
|
9830
10810
|
completedAfter?: undefined;
|
|
10811
|
+
data?: undefined;
|
|
9831
10812
|
nestIds?: undefined;
|
|
9832
10813
|
position?: undefined;
|
|
9833
10814
|
relatedNestId?: undefined;
|
|
9834
10815
|
color?: undefined;
|
|
9835
10816
|
icon?: undefined;
|
|
10817
|
+
rrule?: undefined;
|
|
10818
|
+
direction?: undefined;
|
|
10819
|
+
cursor?: undefined;
|
|
10820
|
+
instant?: undefined;
|
|
10821
|
+
scope?: undefined;
|
|
9836
10822
|
fullWorkspaces?: undefined;
|
|
9837
10823
|
context?: undefined;
|
|
9838
10824
|
skip?: undefined;
|
|
@@ -9846,7 +10832,6 @@ export declare const toolDefinitions: ({
|
|
|
9846
10832
|
childId?: undefined;
|
|
9847
10833
|
status?: undefined;
|
|
9848
10834
|
relation?: undefined;
|
|
9849
|
-
direction?: undefined;
|
|
9850
10835
|
targetId?: undefined;
|
|
9851
10836
|
templateId?: undefined;
|
|
9852
10837
|
name?: undefined;
|
|
@@ -9865,6 +10850,7 @@ export declare const toolDefinitions: ({
|
|
|
9865
10850
|
agentUserId?: undefined;
|
|
9866
10851
|
message?: undefined;
|
|
9867
10852
|
fileId?: undefined;
|
|
10853
|
+
offset?: undefined;
|
|
9868
10854
|
contentType?: undefined;
|
|
9869
10855
|
content?: undefined;
|
|
9870
10856
|
dataBase64?: undefined;
|
|
@@ -9983,8 +10969,6 @@ export declare const toolDefinitions: ({
|
|
|
9983
10969
|
sampleSize?: undefined;
|
|
9984
10970
|
path?: undefined;
|
|
9985
10971
|
fields?: undefined;
|
|
9986
|
-
data?: undefined;
|
|
9987
|
-
completed?: undefined;
|
|
9988
10972
|
body?: undefined;
|
|
9989
10973
|
commentId?: undefined;
|
|
9990
10974
|
circleId?: undefined;
|
|
@@ -9995,6 +10979,7 @@ export declare const toolDefinitions: ({
|
|
|
9995
10979
|
user?: undefined;
|
|
9996
10980
|
key?: undefined;
|
|
9997
10981
|
threadId?: undefined;
|
|
10982
|
+
completed?: undefined;
|
|
9998
10983
|
depth?: undefined;
|
|
9999
10984
|
postId?: undefined;
|
|
10000
10985
|
reason?: undefined;
|
|
@@ -10009,11 +10994,17 @@ export declare const toolDefinitions: ({
|
|
|
10009
10994
|
from?: undefined;
|
|
10010
10995
|
to?: undefined;
|
|
10011
10996
|
completedAfter?: undefined;
|
|
10997
|
+
data?: undefined;
|
|
10012
10998
|
nestIds?: undefined;
|
|
10013
10999
|
position?: undefined;
|
|
10014
11000
|
relatedNestId?: undefined;
|
|
10015
11001
|
color?: undefined;
|
|
10016
11002
|
icon?: undefined;
|
|
11003
|
+
rrule?: undefined;
|
|
11004
|
+
direction?: undefined;
|
|
11005
|
+
cursor?: undefined;
|
|
11006
|
+
instant?: undefined;
|
|
11007
|
+
scope?: undefined;
|
|
10017
11008
|
fullWorkspaces?: undefined;
|
|
10018
11009
|
context?: undefined;
|
|
10019
11010
|
skip?: undefined;
|
|
@@ -10025,7 +11016,6 @@ export declare const toolDefinitions: ({
|
|
|
10025
11016
|
childId?: undefined;
|
|
10026
11017
|
status?: undefined;
|
|
10027
11018
|
relation?: undefined;
|
|
10028
|
-
direction?: undefined;
|
|
10029
11019
|
targetId?: undefined;
|
|
10030
11020
|
templateId?: undefined;
|
|
10031
11021
|
name?: undefined;
|
|
@@ -10044,6 +11034,7 @@ export declare const toolDefinitions: ({
|
|
|
10044
11034
|
agentUserId?: undefined;
|
|
10045
11035
|
message?: undefined;
|
|
10046
11036
|
fileId?: undefined;
|
|
11037
|
+
offset?: undefined;
|
|
10047
11038
|
contentType?: undefined;
|
|
10048
11039
|
content?: undefined;
|
|
10049
11040
|
dataBase64?: undefined;
|
|
@@ -10154,8 +11145,6 @@ export declare const toolDefinitions: ({
|
|
|
10154
11145
|
sampleSize?: undefined;
|
|
10155
11146
|
path?: undefined;
|
|
10156
11147
|
fields?: undefined;
|
|
10157
|
-
data?: undefined;
|
|
10158
|
-
completed?: undefined;
|
|
10159
11148
|
body?: undefined;
|
|
10160
11149
|
commentId?: undefined;
|
|
10161
11150
|
circleId?: undefined;
|
|
@@ -10166,6 +11155,7 @@ export declare const toolDefinitions: ({
|
|
|
10166
11155
|
user?: undefined;
|
|
10167
11156
|
key?: undefined;
|
|
10168
11157
|
threadId?: undefined;
|
|
11158
|
+
completed?: undefined;
|
|
10169
11159
|
depth?: undefined;
|
|
10170
11160
|
postId?: undefined;
|
|
10171
11161
|
reason?: undefined;
|
|
@@ -10180,11 +11170,17 @@ export declare const toolDefinitions: ({
|
|
|
10180
11170
|
from?: undefined;
|
|
10181
11171
|
to?: undefined;
|
|
10182
11172
|
completedAfter?: undefined;
|
|
11173
|
+
data?: undefined;
|
|
10183
11174
|
nestIds?: undefined;
|
|
10184
11175
|
position?: undefined;
|
|
10185
11176
|
relatedNestId?: undefined;
|
|
10186
11177
|
color?: undefined;
|
|
10187
11178
|
icon?: undefined;
|
|
11179
|
+
rrule?: undefined;
|
|
11180
|
+
direction?: undefined;
|
|
11181
|
+
cursor?: undefined;
|
|
11182
|
+
instant?: undefined;
|
|
11183
|
+
scope?: undefined;
|
|
10188
11184
|
fullWorkspaces?: undefined;
|
|
10189
11185
|
context?: undefined;
|
|
10190
11186
|
skip?: undefined;
|
|
@@ -10198,7 +11194,6 @@ export declare const toolDefinitions: ({
|
|
|
10198
11194
|
childId?: undefined;
|
|
10199
11195
|
status?: undefined;
|
|
10200
11196
|
relation?: undefined;
|
|
10201
|
-
direction?: undefined;
|
|
10202
11197
|
targetId?: undefined;
|
|
10203
11198
|
templateId?: undefined;
|
|
10204
11199
|
name?: undefined;
|
|
@@ -10217,6 +11212,7 @@ export declare const toolDefinitions: ({
|
|
|
10217
11212
|
agentUserId?: undefined;
|
|
10218
11213
|
message?: undefined;
|
|
10219
11214
|
fileId?: undefined;
|
|
11215
|
+
offset?: undefined;
|
|
10220
11216
|
contentType?: undefined;
|
|
10221
11217
|
content?: undefined;
|
|
10222
11218
|
dataBase64?: undefined;
|
|
@@ -10284,8 +11280,6 @@ export declare const toolDefinitions: ({
|
|
|
10284
11280
|
due?: undefined;
|
|
10285
11281
|
accountabilities?: undefined;
|
|
10286
11282
|
domains?: undefined;
|
|
10287
|
-
data?: undefined;
|
|
10288
|
-
completed?: undefined;
|
|
10289
11283
|
body?: undefined;
|
|
10290
11284
|
commentId?: undefined;
|
|
10291
11285
|
circleId?: undefined;
|
|
@@ -10296,6 +11290,7 @@ export declare const toolDefinitions: ({
|
|
|
10296
11290
|
user?: undefined;
|
|
10297
11291
|
key?: undefined;
|
|
10298
11292
|
threadId?: undefined;
|
|
11293
|
+
completed?: undefined;
|
|
10299
11294
|
depth?: undefined;
|
|
10300
11295
|
postId?: undefined;
|
|
10301
11296
|
reason?: undefined;
|
|
@@ -10310,11 +11305,17 @@ export declare const toolDefinitions: ({
|
|
|
10310
11305
|
from?: undefined;
|
|
10311
11306
|
to?: undefined;
|
|
10312
11307
|
completedAfter?: undefined;
|
|
11308
|
+
data?: undefined;
|
|
10313
11309
|
nestIds?: undefined;
|
|
10314
11310
|
position?: undefined;
|
|
10315
11311
|
relatedNestId?: undefined;
|
|
10316
11312
|
color?: undefined;
|
|
10317
11313
|
icon?: undefined;
|
|
11314
|
+
rrule?: undefined;
|
|
11315
|
+
direction?: undefined;
|
|
11316
|
+
cursor?: undefined;
|
|
11317
|
+
instant?: undefined;
|
|
11318
|
+
scope?: undefined;
|
|
10318
11319
|
fullWorkspaces?: undefined;
|
|
10319
11320
|
context?: undefined;
|
|
10320
11321
|
skip?: undefined;
|
|
@@ -10329,7 +11330,6 @@ export declare const toolDefinitions: ({
|
|
|
10329
11330
|
childId?: undefined;
|
|
10330
11331
|
status?: undefined;
|
|
10331
11332
|
relation?: undefined;
|
|
10332
|
-
direction?: undefined;
|
|
10333
11333
|
targetId?: undefined;
|
|
10334
11334
|
templateId?: undefined;
|
|
10335
11335
|
name?: undefined;
|
|
@@ -10348,6 +11348,7 @@ export declare const toolDefinitions: ({
|
|
|
10348
11348
|
agentUserId?: undefined;
|
|
10349
11349
|
message?: undefined;
|
|
10350
11350
|
fileId?: undefined;
|
|
11351
|
+
offset?: undefined;
|
|
10351
11352
|
contentType?: undefined;
|
|
10352
11353
|
content?: undefined;
|
|
10353
11354
|
dataBase64?: undefined;
|
|
@@ -10420,8 +11421,6 @@ export declare const toolDefinitions: ({
|
|
|
10420
11421
|
due?: undefined;
|
|
10421
11422
|
accountabilities?: undefined;
|
|
10422
11423
|
domains?: undefined;
|
|
10423
|
-
data?: undefined;
|
|
10424
|
-
completed?: undefined;
|
|
10425
11424
|
body?: undefined;
|
|
10426
11425
|
commentId?: undefined;
|
|
10427
11426
|
circleId?: undefined;
|
|
@@ -10432,6 +11431,7 @@ export declare const toolDefinitions: ({
|
|
|
10432
11431
|
user?: undefined;
|
|
10433
11432
|
key?: undefined;
|
|
10434
11433
|
threadId?: undefined;
|
|
11434
|
+
completed?: undefined;
|
|
10435
11435
|
depth?: undefined;
|
|
10436
11436
|
postId?: undefined;
|
|
10437
11437
|
reason?: undefined;
|
|
@@ -10446,11 +11446,17 @@ export declare const toolDefinitions: ({
|
|
|
10446
11446
|
from?: undefined;
|
|
10447
11447
|
to?: undefined;
|
|
10448
11448
|
completedAfter?: undefined;
|
|
11449
|
+
data?: undefined;
|
|
10449
11450
|
nestIds?: undefined;
|
|
10450
11451
|
position?: undefined;
|
|
10451
11452
|
relatedNestId?: undefined;
|
|
10452
11453
|
color?: undefined;
|
|
10453
11454
|
icon?: undefined;
|
|
11455
|
+
rrule?: undefined;
|
|
11456
|
+
direction?: undefined;
|
|
11457
|
+
cursor?: undefined;
|
|
11458
|
+
instant?: undefined;
|
|
11459
|
+
scope?: undefined;
|
|
10454
11460
|
fullWorkspaces?: undefined;
|
|
10455
11461
|
context?: undefined;
|
|
10456
11462
|
skip?: undefined;
|
|
@@ -10465,7 +11471,6 @@ export declare const toolDefinitions: ({
|
|
|
10465
11471
|
childId?: undefined;
|
|
10466
11472
|
status?: undefined;
|
|
10467
11473
|
relation?: undefined;
|
|
10468
|
-
direction?: undefined;
|
|
10469
11474
|
targetId?: undefined;
|
|
10470
11475
|
templateId?: undefined;
|
|
10471
11476
|
name?: undefined;
|
|
@@ -10484,6 +11489,7 @@ export declare const toolDefinitions: ({
|
|
|
10484
11489
|
agentUserId?: undefined;
|
|
10485
11490
|
message?: undefined;
|
|
10486
11491
|
fileId?: undefined;
|
|
11492
|
+
offset?: undefined;
|
|
10487
11493
|
contentType?: undefined;
|
|
10488
11494
|
content?: undefined;
|
|
10489
11495
|
dataBase64?: undefined;
|
|
@@ -10554,8 +11560,6 @@ export declare const toolDefinitions: ({
|
|
|
10554
11560
|
due?: undefined;
|
|
10555
11561
|
accountabilities?: undefined;
|
|
10556
11562
|
domains?: undefined;
|
|
10557
|
-
data?: undefined;
|
|
10558
|
-
completed?: undefined;
|
|
10559
11563
|
body?: undefined;
|
|
10560
11564
|
commentId?: undefined;
|
|
10561
11565
|
circleId?: undefined;
|
|
@@ -10566,6 +11570,7 @@ export declare const toolDefinitions: ({
|
|
|
10566
11570
|
user?: undefined;
|
|
10567
11571
|
key?: undefined;
|
|
10568
11572
|
threadId?: undefined;
|
|
11573
|
+
completed?: undefined;
|
|
10569
11574
|
depth?: undefined;
|
|
10570
11575
|
postId?: undefined;
|
|
10571
11576
|
reason?: undefined;
|
|
@@ -10580,11 +11585,17 @@ export declare const toolDefinitions: ({
|
|
|
10580
11585
|
from?: undefined;
|
|
10581
11586
|
to?: undefined;
|
|
10582
11587
|
completedAfter?: undefined;
|
|
11588
|
+
data?: undefined;
|
|
10583
11589
|
nestIds?: undefined;
|
|
10584
11590
|
position?: undefined;
|
|
10585
11591
|
relatedNestId?: undefined;
|
|
10586
11592
|
color?: undefined;
|
|
10587
11593
|
icon?: undefined;
|
|
11594
|
+
rrule?: undefined;
|
|
11595
|
+
direction?: undefined;
|
|
11596
|
+
cursor?: undefined;
|
|
11597
|
+
instant?: undefined;
|
|
11598
|
+
scope?: undefined;
|
|
10588
11599
|
fullWorkspaces?: undefined;
|
|
10589
11600
|
context?: undefined;
|
|
10590
11601
|
skip?: undefined;
|
|
@@ -10598,7 +11609,6 @@ export declare const toolDefinitions: ({
|
|
|
10598
11609
|
removeNest?: undefined;
|
|
10599
11610
|
status?: undefined;
|
|
10600
11611
|
relation?: undefined;
|
|
10601
|
-
direction?: undefined;
|
|
10602
11612
|
targetId?: undefined;
|
|
10603
11613
|
templateId?: undefined;
|
|
10604
11614
|
name?: undefined;
|
|
@@ -10617,6 +11627,7 @@ export declare const toolDefinitions: ({
|
|
|
10617
11627
|
agentUserId?: undefined;
|
|
10618
11628
|
message?: undefined;
|
|
10619
11629
|
fileId?: undefined;
|
|
11630
|
+
offset?: undefined;
|
|
10620
11631
|
contentType?: undefined;
|
|
10621
11632
|
content?: undefined;
|
|
10622
11633
|
dataBase64?: undefined;
|
|
@@ -10684,8 +11695,6 @@ export declare const toolDefinitions: ({
|
|
|
10684
11695
|
due?: undefined;
|
|
10685
11696
|
accountabilities?: undefined;
|
|
10686
11697
|
domains?: undefined;
|
|
10687
|
-
data?: undefined;
|
|
10688
|
-
completed?: undefined;
|
|
10689
11698
|
body?: undefined;
|
|
10690
11699
|
commentId?: undefined;
|
|
10691
11700
|
circleId?: undefined;
|
|
@@ -10696,6 +11705,7 @@ export declare const toolDefinitions: ({
|
|
|
10696
11705
|
user?: undefined;
|
|
10697
11706
|
key?: undefined;
|
|
10698
11707
|
threadId?: undefined;
|
|
11708
|
+
completed?: undefined;
|
|
10699
11709
|
depth?: undefined;
|
|
10700
11710
|
postId?: undefined;
|
|
10701
11711
|
reason?: undefined;
|
|
@@ -10710,11 +11720,17 @@ export declare const toolDefinitions: ({
|
|
|
10710
11720
|
from?: undefined;
|
|
10711
11721
|
to?: undefined;
|
|
10712
11722
|
completedAfter?: undefined;
|
|
11723
|
+
data?: undefined;
|
|
10713
11724
|
nestIds?: undefined;
|
|
10714
11725
|
position?: undefined;
|
|
10715
11726
|
relatedNestId?: undefined;
|
|
10716
11727
|
color?: undefined;
|
|
10717
11728
|
icon?: undefined;
|
|
11729
|
+
rrule?: undefined;
|
|
11730
|
+
direction?: undefined;
|
|
11731
|
+
cursor?: undefined;
|
|
11732
|
+
instant?: undefined;
|
|
11733
|
+
scope?: undefined;
|
|
10718
11734
|
fullWorkspaces?: undefined;
|
|
10719
11735
|
context?: undefined;
|
|
10720
11736
|
skip?: undefined;
|
|
@@ -10728,7 +11744,6 @@ export declare const toolDefinitions: ({
|
|
|
10728
11744
|
removeNest?: undefined;
|
|
10729
11745
|
status?: undefined;
|
|
10730
11746
|
relation?: undefined;
|
|
10731
|
-
direction?: undefined;
|
|
10732
11747
|
targetId?: undefined;
|
|
10733
11748
|
templateId?: undefined;
|
|
10734
11749
|
name?: undefined;
|
|
@@ -10747,6 +11762,7 @@ export declare const toolDefinitions: ({
|
|
|
10747
11762
|
agentUserId?: undefined;
|
|
10748
11763
|
message?: undefined;
|
|
10749
11764
|
fileId?: undefined;
|
|
11765
|
+
offset?: undefined;
|
|
10750
11766
|
contentType?: undefined;
|
|
10751
11767
|
content?: undefined;
|
|
10752
11768
|
dataBase64?: undefined;
|
|
@@ -10815,8 +11831,6 @@ export declare const toolDefinitions: ({
|
|
|
10815
11831
|
due?: undefined;
|
|
10816
11832
|
accountabilities?: undefined;
|
|
10817
11833
|
domains?: undefined;
|
|
10818
|
-
data?: undefined;
|
|
10819
|
-
completed?: undefined;
|
|
10820
11834
|
body?: undefined;
|
|
10821
11835
|
commentId?: undefined;
|
|
10822
11836
|
circleId?: undefined;
|
|
@@ -10827,6 +11841,7 @@ export declare const toolDefinitions: ({
|
|
|
10827
11841
|
user?: undefined;
|
|
10828
11842
|
key?: undefined;
|
|
10829
11843
|
threadId?: undefined;
|
|
11844
|
+
completed?: undefined;
|
|
10830
11845
|
depth?: undefined;
|
|
10831
11846
|
postId?: undefined;
|
|
10832
11847
|
reason?: undefined;
|
|
@@ -10841,11 +11856,17 @@ export declare const toolDefinitions: ({
|
|
|
10841
11856
|
from?: undefined;
|
|
10842
11857
|
to?: undefined;
|
|
10843
11858
|
completedAfter?: undefined;
|
|
11859
|
+
data?: undefined;
|
|
10844
11860
|
nestIds?: undefined;
|
|
10845
11861
|
position?: undefined;
|
|
10846
11862
|
relatedNestId?: undefined;
|
|
10847
11863
|
color?: undefined;
|
|
10848
11864
|
icon?: undefined;
|
|
11865
|
+
rrule?: undefined;
|
|
11866
|
+
direction?: undefined;
|
|
11867
|
+
cursor?: undefined;
|
|
11868
|
+
instant?: undefined;
|
|
11869
|
+
scope?: undefined;
|
|
10849
11870
|
fullWorkspaces?: undefined;
|
|
10850
11871
|
context?: undefined;
|
|
10851
11872
|
skip?: undefined;
|
|
@@ -10860,7 +11881,6 @@ export declare const toolDefinitions: ({
|
|
|
10860
11881
|
partId?: undefined;
|
|
10861
11882
|
childId?: undefined;
|
|
10862
11883
|
relation?: undefined;
|
|
10863
|
-
direction?: undefined;
|
|
10864
11884
|
targetId?: undefined;
|
|
10865
11885
|
templateId?: undefined;
|
|
10866
11886
|
name?: undefined;
|
|
@@ -10879,6 +11899,7 @@ export declare const toolDefinitions: ({
|
|
|
10879
11899
|
agentUserId?: undefined;
|
|
10880
11900
|
message?: undefined;
|
|
10881
11901
|
fileId?: undefined;
|
|
11902
|
+
offset?: undefined;
|
|
10882
11903
|
contentType?: undefined;
|
|
10883
11904
|
content?: undefined;
|
|
10884
11905
|
dataBase64?: undefined;
|
|
@@ -10953,8 +11974,6 @@ export declare const toolDefinitions: ({
|
|
|
10953
11974
|
due?: undefined;
|
|
10954
11975
|
accountabilities?: undefined;
|
|
10955
11976
|
domains?: undefined;
|
|
10956
|
-
data?: undefined;
|
|
10957
|
-
completed?: undefined;
|
|
10958
11977
|
body?: undefined;
|
|
10959
11978
|
commentId?: undefined;
|
|
10960
11979
|
circleId?: undefined;
|
|
@@ -10965,6 +11984,7 @@ export declare const toolDefinitions: ({
|
|
|
10965
11984
|
user?: undefined;
|
|
10966
11985
|
key?: undefined;
|
|
10967
11986
|
threadId?: undefined;
|
|
11987
|
+
completed?: undefined;
|
|
10968
11988
|
depth?: undefined;
|
|
10969
11989
|
postId?: undefined;
|
|
10970
11990
|
reason?: undefined;
|
|
@@ -10979,11 +11999,16 @@ export declare const toolDefinitions: ({
|
|
|
10979
11999
|
from?: undefined;
|
|
10980
12000
|
to?: undefined;
|
|
10981
12001
|
completedAfter?: undefined;
|
|
12002
|
+
data?: undefined;
|
|
10982
12003
|
nestIds?: undefined;
|
|
10983
12004
|
position?: undefined;
|
|
10984
12005
|
relatedNestId?: undefined;
|
|
10985
12006
|
color?: undefined;
|
|
10986
12007
|
icon?: undefined;
|
|
12008
|
+
rrule?: undefined;
|
|
12009
|
+
cursor?: undefined;
|
|
12010
|
+
instant?: undefined;
|
|
12011
|
+
scope?: undefined;
|
|
10987
12012
|
fullWorkspaces?: undefined;
|
|
10988
12013
|
context?: undefined;
|
|
10989
12014
|
skip?: undefined;
|
|
@@ -11017,6 +12042,7 @@ export declare const toolDefinitions: ({
|
|
|
11017
12042
|
agentUserId?: undefined;
|
|
11018
12043
|
message?: undefined;
|
|
11019
12044
|
fileId?: undefined;
|
|
12045
|
+
offset?: undefined;
|
|
11020
12046
|
contentType?: undefined;
|
|
11021
12047
|
content?: undefined;
|
|
11022
12048
|
dataBase64?: undefined;
|
|
@@ -11084,8 +12110,6 @@ export declare const toolDefinitions: ({
|
|
|
11084
12110
|
due?: undefined;
|
|
11085
12111
|
accountabilities?: undefined;
|
|
11086
12112
|
domains?: undefined;
|
|
11087
|
-
data?: undefined;
|
|
11088
|
-
completed?: undefined;
|
|
11089
12113
|
body?: undefined;
|
|
11090
12114
|
commentId?: undefined;
|
|
11091
12115
|
circleId?: undefined;
|
|
@@ -11096,6 +12120,7 @@ export declare const toolDefinitions: ({
|
|
|
11096
12120
|
user?: undefined;
|
|
11097
12121
|
key?: undefined;
|
|
11098
12122
|
threadId?: undefined;
|
|
12123
|
+
completed?: undefined;
|
|
11099
12124
|
depth?: undefined;
|
|
11100
12125
|
postId?: undefined;
|
|
11101
12126
|
reason?: undefined;
|
|
@@ -11110,11 +12135,17 @@ export declare const toolDefinitions: ({
|
|
|
11110
12135
|
from?: undefined;
|
|
11111
12136
|
to?: undefined;
|
|
11112
12137
|
completedAfter?: undefined;
|
|
12138
|
+
data?: undefined;
|
|
11113
12139
|
nestIds?: undefined;
|
|
11114
12140
|
position?: undefined;
|
|
11115
12141
|
relatedNestId?: undefined;
|
|
11116
12142
|
color?: undefined;
|
|
11117
12143
|
icon?: undefined;
|
|
12144
|
+
rrule?: undefined;
|
|
12145
|
+
direction?: undefined;
|
|
12146
|
+
cursor?: undefined;
|
|
12147
|
+
instant?: undefined;
|
|
12148
|
+
scope?: undefined;
|
|
11118
12149
|
fullWorkspaces?: undefined;
|
|
11119
12150
|
context?: undefined;
|
|
11120
12151
|
skip?: undefined;
|
|
@@ -11130,7 +12161,6 @@ export declare const toolDefinitions: ({
|
|
|
11130
12161
|
partId?: undefined;
|
|
11131
12162
|
childId?: undefined;
|
|
11132
12163
|
status?: undefined;
|
|
11133
|
-
direction?: undefined;
|
|
11134
12164
|
templateId?: undefined;
|
|
11135
12165
|
name?: undefined;
|
|
11136
12166
|
config?: undefined;
|
|
@@ -11148,6 +12178,7 @@ export declare const toolDefinitions: ({
|
|
|
11148
12178
|
agentUserId?: undefined;
|
|
11149
12179
|
message?: undefined;
|
|
11150
12180
|
fileId?: undefined;
|
|
12181
|
+
offset?: undefined;
|
|
11151
12182
|
contentType?: undefined;
|
|
11152
12183
|
content?: undefined;
|
|
11153
12184
|
dataBase64?: undefined;
|
|
@@ -11236,8 +12267,6 @@ export declare const toolDefinitions: ({
|
|
|
11236
12267
|
due?: undefined;
|
|
11237
12268
|
accountabilities?: undefined;
|
|
11238
12269
|
domains?: undefined;
|
|
11239
|
-
data?: undefined;
|
|
11240
|
-
completed?: undefined;
|
|
11241
12270
|
body?: undefined;
|
|
11242
12271
|
commentId?: undefined;
|
|
11243
12272
|
circleId?: undefined;
|
|
@@ -11248,6 +12277,7 @@ export declare const toolDefinitions: ({
|
|
|
11248
12277
|
user?: undefined;
|
|
11249
12278
|
key?: undefined;
|
|
11250
12279
|
threadId?: undefined;
|
|
12280
|
+
completed?: undefined;
|
|
11251
12281
|
depth?: undefined;
|
|
11252
12282
|
postId?: undefined;
|
|
11253
12283
|
reason?: undefined;
|
|
@@ -11262,11 +12292,17 @@ export declare const toolDefinitions: ({
|
|
|
11262
12292
|
from?: undefined;
|
|
11263
12293
|
to?: undefined;
|
|
11264
12294
|
completedAfter?: undefined;
|
|
12295
|
+
data?: undefined;
|
|
11265
12296
|
nestIds?: undefined;
|
|
11266
12297
|
position?: undefined;
|
|
11267
12298
|
relatedNestId?: undefined;
|
|
11268
12299
|
color?: undefined;
|
|
11269
12300
|
icon?: undefined;
|
|
12301
|
+
rrule?: undefined;
|
|
12302
|
+
direction?: undefined;
|
|
12303
|
+
cursor?: undefined;
|
|
12304
|
+
instant?: undefined;
|
|
12305
|
+
scope?: undefined;
|
|
11270
12306
|
fullWorkspaces?: undefined;
|
|
11271
12307
|
context?: undefined;
|
|
11272
12308
|
skip?: undefined;
|
|
@@ -11283,7 +12319,6 @@ export declare const toolDefinitions: ({
|
|
|
11283
12319
|
childId?: undefined;
|
|
11284
12320
|
status?: undefined;
|
|
11285
12321
|
relation?: undefined;
|
|
11286
|
-
direction?: undefined;
|
|
11287
12322
|
targetId?: undefined;
|
|
11288
12323
|
roleAssignable?: undefined;
|
|
11289
12324
|
agentConfig?: undefined;
|
|
@@ -11296,6 +12331,7 @@ export declare const toolDefinitions: ({
|
|
|
11296
12331
|
agentUserId?: undefined;
|
|
11297
12332
|
message?: undefined;
|
|
11298
12333
|
fileId?: undefined;
|
|
12334
|
+
offset?: undefined;
|
|
11299
12335
|
contentType?: undefined;
|
|
11300
12336
|
content?: undefined;
|
|
11301
12337
|
dataBase64?: undefined;
|
|
@@ -11370,8 +12406,6 @@ export declare const toolDefinitions: ({
|
|
|
11370
12406
|
due?: undefined;
|
|
11371
12407
|
accountabilities?: undefined;
|
|
11372
12408
|
domains?: undefined;
|
|
11373
|
-
data?: undefined;
|
|
11374
|
-
completed?: undefined;
|
|
11375
12409
|
body?: undefined;
|
|
11376
12410
|
commentId?: undefined;
|
|
11377
12411
|
circleId?: undefined;
|
|
@@ -11382,6 +12416,7 @@ export declare const toolDefinitions: ({
|
|
|
11382
12416
|
user?: undefined;
|
|
11383
12417
|
key?: undefined;
|
|
11384
12418
|
threadId?: undefined;
|
|
12419
|
+
completed?: undefined;
|
|
11385
12420
|
depth?: undefined;
|
|
11386
12421
|
postId?: undefined;
|
|
11387
12422
|
reason?: undefined;
|
|
@@ -11396,11 +12431,17 @@ export declare const toolDefinitions: ({
|
|
|
11396
12431
|
from?: undefined;
|
|
11397
12432
|
to?: undefined;
|
|
11398
12433
|
completedAfter?: undefined;
|
|
12434
|
+
data?: undefined;
|
|
11399
12435
|
nestIds?: undefined;
|
|
11400
12436
|
position?: undefined;
|
|
11401
12437
|
relatedNestId?: undefined;
|
|
11402
12438
|
color?: undefined;
|
|
11403
12439
|
icon?: undefined;
|
|
12440
|
+
rrule?: undefined;
|
|
12441
|
+
direction?: undefined;
|
|
12442
|
+
cursor?: undefined;
|
|
12443
|
+
instant?: undefined;
|
|
12444
|
+
scope?: undefined;
|
|
11404
12445
|
fullWorkspaces?: undefined;
|
|
11405
12446
|
context?: undefined;
|
|
11406
12447
|
skip?: undefined;
|
|
@@ -11417,7 +12458,6 @@ export declare const toolDefinitions: ({
|
|
|
11417
12458
|
childId?: undefined;
|
|
11418
12459
|
status?: undefined;
|
|
11419
12460
|
relation?: undefined;
|
|
11420
|
-
direction?: undefined;
|
|
11421
12461
|
targetId?: undefined;
|
|
11422
12462
|
templateId?: undefined;
|
|
11423
12463
|
config?: undefined;
|
|
@@ -11433,6 +12473,7 @@ export declare const toolDefinitions: ({
|
|
|
11433
12473
|
agentUserId?: undefined;
|
|
11434
12474
|
message?: undefined;
|
|
11435
12475
|
fileId?: undefined;
|
|
12476
|
+
offset?: undefined;
|
|
11436
12477
|
contentType?: undefined;
|
|
11437
12478
|
content?: undefined;
|
|
11438
12479
|
dataBase64?: undefined;
|
|
@@ -11505,8 +12546,6 @@ export declare const toolDefinitions: ({
|
|
|
11505
12546
|
due?: undefined;
|
|
11506
12547
|
accountabilities?: undefined;
|
|
11507
12548
|
domains?: undefined;
|
|
11508
|
-
data?: undefined;
|
|
11509
|
-
completed?: undefined;
|
|
11510
12549
|
body?: undefined;
|
|
11511
12550
|
commentId?: undefined;
|
|
11512
12551
|
circleId?: undefined;
|
|
@@ -11517,6 +12556,7 @@ export declare const toolDefinitions: ({
|
|
|
11517
12556
|
user?: undefined;
|
|
11518
12557
|
key?: undefined;
|
|
11519
12558
|
threadId?: undefined;
|
|
12559
|
+
completed?: undefined;
|
|
11520
12560
|
depth?: undefined;
|
|
11521
12561
|
postId?: undefined;
|
|
11522
12562
|
reason?: undefined;
|
|
@@ -11531,11 +12571,17 @@ export declare const toolDefinitions: ({
|
|
|
11531
12571
|
from?: undefined;
|
|
11532
12572
|
to?: undefined;
|
|
11533
12573
|
completedAfter?: undefined;
|
|
12574
|
+
data?: undefined;
|
|
11534
12575
|
nestIds?: undefined;
|
|
11535
12576
|
position?: undefined;
|
|
11536
12577
|
relatedNestId?: undefined;
|
|
11537
12578
|
color?: undefined;
|
|
11538
12579
|
icon?: undefined;
|
|
12580
|
+
rrule?: undefined;
|
|
12581
|
+
direction?: undefined;
|
|
12582
|
+
cursor?: undefined;
|
|
12583
|
+
instant?: undefined;
|
|
12584
|
+
scope?: undefined;
|
|
11539
12585
|
fullWorkspaces?: undefined;
|
|
11540
12586
|
context?: undefined;
|
|
11541
12587
|
skip?: undefined;
|
|
@@ -11552,7 +12598,6 @@ export declare const toolDefinitions: ({
|
|
|
11552
12598
|
childId?: undefined;
|
|
11553
12599
|
status?: undefined;
|
|
11554
12600
|
relation?: undefined;
|
|
11555
|
-
direction?: undefined;
|
|
11556
12601
|
targetId?: undefined;
|
|
11557
12602
|
templateId?: undefined;
|
|
11558
12603
|
name?: undefined;
|
|
@@ -11568,6 +12613,7 @@ export declare const toolDefinitions: ({
|
|
|
11568
12613
|
agentUserId?: undefined;
|
|
11569
12614
|
message?: undefined;
|
|
11570
12615
|
fileId?: undefined;
|
|
12616
|
+
offset?: undefined;
|
|
11571
12617
|
contentType?: undefined;
|
|
11572
12618
|
content?: undefined;
|
|
11573
12619
|
dataBase64?: undefined;
|
|
@@ -11660,8 +12706,6 @@ export declare const toolDefinitions: ({
|
|
|
11660
12706
|
due?: undefined;
|
|
11661
12707
|
accountabilities?: undefined;
|
|
11662
12708
|
domains?: undefined;
|
|
11663
|
-
data?: undefined;
|
|
11664
|
-
completed?: undefined;
|
|
11665
12709
|
body?: undefined;
|
|
11666
12710
|
commentId?: undefined;
|
|
11667
12711
|
circleId?: undefined;
|
|
@@ -11672,6 +12716,7 @@ export declare const toolDefinitions: ({
|
|
|
11672
12716
|
user?: undefined;
|
|
11673
12717
|
key?: undefined;
|
|
11674
12718
|
threadId?: undefined;
|
|
12719
|
+
completed?: undefined;
|
|
11675
12720
|
depth?: undefined;
|
|
11676
12721
|
postId?: undefined;
|
|
11677
12722
|
reason?: undefined;
|
|
@@ -11686,11 +12731,17 @@ export declare const toolDefinitions: ({
|
|
|
11686
12731
|
from?: undefined;
|
|
11687
12732
|
to?: undefined;
|
|
11688
12733
|
completedAfter?: undefined;
|
|
12734
|
+
data?: undefined;
|
|
11689
12735
|
nestIds?: undefined;
|
|
11690
12736
|
position?: undefined;
|
|
11691
12737
|
relatedNestId?: undefined;
|
|
11692
12738
|
color?: undefined;
|
|
11693
12739
|
icon?: undefined;
|
|
12740
|
+
rrule?: undefined;
|
|
12741
|
+
direction?: undefined;
|
|
12742
|
+
cursor?: undefined;
|
|
12743
|
+
instant?: undefined;
|
|
12744
|
+
scope?: undefined;
|
|
11694
12745
|
fullWorkspaces?: undefined;
|
|
11695
12746
|
context?: undefined;
|
|
11696
12747
|
skip?: undefined;
|
|
@@ -11707,7 +12758,6 @@ export declare const toolDefinitions: ({
|
|
|
11707
12758
|
childId?: undefined;
|
|
11708
12759
|
status?: undefined;
|
|
11709
12760
|
relation?: undefined;
|
|
11710
|
-
direction?: undefined;
|
|
11711
12761
|
targetId?: undefined;
|
|
11712
12762
|
templateId?: undefined;
|
|
11713
12763
|
roleAssignable?: undefined;
|
|
@@ -11719,6 +12769,7 @@ export declare const toolDefinitions: ({
|
|
|
11719
12769
|
agentUserId?: undefined;
|
|
11720
12770
|
message?: undefined;
|
|
11721
12771
|
fileId?: undefined;
|
|
12772
|
+
offset?: undefined;
|
|
11722
12773
|
contentType?: undefined;
|
|
11723
12774
|
content?: undefined;
|
|
11724
12775
|
dataBase64?: undefined;
|
|
@@ -11782,8 +12833,6 @@ export declare const toolDefinitions: ({
|
|
|
11782
12833
|
due?: undefined;
|
|
11783
12834
|
accountabilities?: undefined;
|
|
11784
12835
|
domains?: undefined;
|
|
11785
|
-
data?: undefined;
|
|
11786
|
-
completed?: undefined;
|
|
11787
12836
|
body?: undefined;
|
|
11788
12837
|
commentId?: undefined;
|
|
11789
12838
|
circleId?: undefined;
|
|
@@ -11794,6 +12843,7 @@ export declare const toolDefinitions: ({
|
|
|
11794
12843
|
user?: undefined;
|
|
11795
12844
|
key?: undefined;
|
|
11796
12845
|
threadId?: undefined;
|
|
12846
|
+
completed?: undefined;
|
|
11797
12847
|
depth?: undefined;
|
|
11798
12848
|
postId?: undefined;
|
|
11799
12849
|
reason?: undefined;
|
|
@@ -11808,11 +12858,17 @@ export declare const toolDefinitions: ({
|
|
|
11808
12858
|
from?: undefined;
|
|
11809
12859
|
to?: undefined;
|
|
11810
12860
|
completedAfter?: undefined;
|
|
12861
|
+
data?: undefined;
|
|
11811
12862
|
nestIds?: undefined;
|
|
11812
12863
|
position?: undefined;
|
|
11813
12864
|
relatedNestId?: undefined;
|
|
11814
12865
|
color?: undefined;
|
|
11815
12866
|
icon?: undefined;
|
|
12867
|
+
rrule?: undefined;
|
|
12868
|
+
direction?: undefined;
|
|
12869
|
+
cursor?: undefined;
|
|
12870
|
+
instant?: undefined;
|
|
12871
|
+
scope?: undefined;
|
|
11816
12872
|
fullWorkspaces?: undefined;
|
|
11817
12873
|
context?: undefined;
|
|
11818
12874
|
skip?: undefined;
|
|
@@ -11829,7 +12885,6 @@ export declare const toolDefinitions: ({
|
|
|
11829
12885
|
childId?: undefined;
|
|
11830
12886
|
status?: undefined;
|
|
11831
12887
|
relation?: undefined;
|
|
11832
|
-
direction?: undefined;
|
|
11833
12888
|
targetId?: undefined;
|
|
11834
12889
|
templateId?: undefined;
|
|
11835
12890
|
name?: undefined;
|
|
@@ -11847,6 +12902,7 @@ export declare const toolDefinitions: ({
|
|
|
11847
12902
|
agentUserId?: undefined;
|
|
11848
12903
|
message?: undefined;
|
|
11849
12904
|
fileId?: undefined;
|
|
12905
|
+
offset?: undefined;
|
|
11850
12906
|
contentType?: undefined;
|
|
11851
12907
|
content?: undefined;
|
|
11852
12908
|
dataBase64?: undefined;
|
|
@@ -11905,8 +12961,6 @@ export declare const toolDefinitions: ({
|
|
|
11905
12961
|
due?: undefined;
|
|
11906
12962
|
accountabilities?: undefined;
|
|
11907
12963
|
domains?: undefined;
|
|
11908
|
-
data?: undefined;
|
|
11909
|
-
completed?: undefined;
|
|
11910
12964
|
body?: undefined;
|
|
11911
12965
|
commentId?: undefined;
|
|
11912
12966
|
circleId?: undefined;
|
|
@@ -11917,6 +12971,7 @@ export declare const toolDefinitions: ({
|
|
|
11917
12971
|
user?: undefined;
|
|
11918
12972
|
key?: undefined;
|
|
11919
12973
|
threadId?: undefined;
|
|
12974
|
+
completed?: undefined;
|
|
11920
12975
|
depth?: undefined;
|
|
11921
12976
|
postId?: undefined;
|
|
11922
12977
|
reason?: undefined;
|
|
@@ -11931,11 +12986,17 @@ export declare const toolDefinitions: ({
|
|
|
11931
12986
|
from?: undefined;
|
|
11932
12987
|
to?: undefined;
|
|
11933
12988
|
completedAfter?: undefined;
|
|
12989
|
+
data?: undefined;
|
|
11934
12990
|
nestIds?: undefined;
|
|
11935
12991
|
position?: undefined;
|
|
11936
12992
|
relatedNestId?: undefined;
|
|
11937
12993
|
color?: undefined;
|
|
11938
12994
|
icon?: undefined;
|
|
12995
|
+
rrule?: undefined;
|
|
12996
|
+
direction?: undefined;
|
|
12997
|
+
cursor?: undefined;
|
|
12998
|
+
instant?: undefined;
|
|
12999
|
+
scope?: undefined;
|
|
11939
13000
|
fullWorkspaces?: undefined;
|
|
11940
13001
|
context?: undefined;
|
|
11941
13002
|
skip?: undefined;
|
|
@@ -11952,7 +13013,6 @@ export declare const toolDefinitions: ({
|
|
|
11952
13013
|
childId?: undefined;
|
|
11953
13014
|
status?: undefined;
|
|
11954
13015
|
relation?: undefined;
|
|
11955
|
-
direction?: undefined;
|
|
11956
13016
|
targetId?: undefined;
|
|
11957
13017
|
templateId?: undefined;
|
|
11958
13018
|
name?: undefined;
|
|
@@ -11970,6 +13030,7 @@ export declare const toolDefinitions: ({
|
|
|
11970
13030
|
agentUserId?: undefined;
|
|
11971
13031
|
message?: undefined;
|
|
11972
13032
|
fileId?: undefined;
|
|
13033
|
+
offset?: undefined;
|
|
11973
13034
|
contentType?: undefined;
|
|
11974
13035
|
content?: undefined;
|
|
11975
13036
|
dataBase64?: undefined;
|
|
@@ -12038,8 +13099,6 @@ export declare const toolDefinitions: ({
|
|
|
12038
13099
|
due?: undefined;
|
|
12039
13100
|
accountabilities?: undefined;
|
|
12040
13101
|
domains?: undefined;
|
|
12041
|
-
data?: undefined;
|
|
12042
|
-
completed?: undefined;
|
|
12043
13102
|
body?: undefined;
|
|
12044
13103
|
commentId?: undefined;
|
|
12045
13104
|
circleId?: undefined;
|
|
@@ -12050,6 +13109,7 @@ export declare const toolDefinitions: ({
|
|
|
12050
13109
|
user?: undefined;
|
|
12051
13110
|
key?: undefined;
|
|
12052
13111
|
threadId?: undefined;
|
|
13112
|
+
completed?: undefined;
|
|
12053
13113
|
depth?: undefined;
|
|
12054
13114
|
postId?: undefined;
|
|
12055
13115
|
reason?: undefined;
|
|
@@ -12064,11 +13124,17 @@ export declare const toolDefinitions: ({
|
|
|
12064
13124
|
from?: undefined;
|
|
12065
13125
|
to?: undefined;
|
|
12066
13126
|
completedAfter?: undefined;
|
|
13127
|
+
data?: undefined;
|
|
12067
13128
|
nestIds?: undefined;
|
|
12068
13129
|
position?: undefined;
|
|
12069
13130
|
relatedNestId?: undefined;
|
|
12070
13131
|
color?: undefined;
|
|
12071
13132
|
icon?: undefined;
|
|
13133
|
+
rrule?: undefined;
|
|
13134
|
+
direction?: undefined;
|
|
13135
|
+
cursor?: undefined;
|
|
13136
|
+
instant?: undefined;
|
|
13137
|
+
scope?: undefined;
|
|
12072
13138
|
fullWorkspaces?: undefined;
|
|
12073
13139
|
context?: undefined;
|
|
12074
13140
|
skip?: undefined;
|
|
@@ -12085,7 +13151,6 @@ export declare const toolDefinitions: ({
|
|
|
12085
13151
|
childId?: undefined;
|
|
12086
13152
|
status?: undefined;
|
|
12087
13153
|
relation?: undefined;
|
|
12088
|
-
direction?: undefined;
|
|
12089
13154
|
targetId?: undefined;
|
|
12090
13155
|
templateId?: undefined;
|
|
12091
13156
|
name?: undefined;
|
|
@@ -12103,6 +13168,7 @@ export declare const toolDefinitions: ({
|
|
|
12103
13168
|
agentUserId?: undefined;
|
|
12104
13169
|
message?: undefined;
|
|
12105
13170
|
fileId?: undefined;
|
|
13171
|
+
offset?: undefined;
|
|
12106
13172
|
contentType?: undefined;
|
|
12107
13173
|
content?: undefined;
|
|
12108
13174
|
dataBase64?: undefined;
|
|
@@ -12161,8 +13227,6 @@ export declare const toolDefinitions: ({
|
|
|
12161
13227
|
due?: undefined;
|
|
12162
13228
|
accountabilities?: undefined;
|
|
12163
13229
|
domains?: undefined;
|
|
12164
|
-
data?: undefined;
|
|
12165
|
-
completed?: undefined;
|
|
12166
13230
|
body?: undefined;
|
|
12167
13231
|
commentId?: undefined;
|
|
12168
13232
|
circleId?: undefined;
|
|
@@ -12173,6 +13237,7 @@ export declare const toolDefinitions: ({
|
|
|
12173
13237
|
user?: undefined;
|
|
12174
13238
|
key?: undefined;
|
|
12175
13239
|
threadId?: undefined;
|
|
13240
|
+
completed?: undefined;
|
|
12176
13241
|
depth?: undefined;
|
|
12177
13242
|
postId?: undefined;
|
|
12178
13243
|
reason?: undefined;
|
|
@@ -12187,11 +13252,17 @@ export declare const toolDefinitions: ({
|
|
|
12187
13252
|
from?: undefined;
|
|
12188
13253
|
to?: undefined;
|
|
12189
13254
|
completedAfter?: undefined;
|
|
13255
|
+
data?: undefined;
|
|
12190
13256
|
nestIds?: undefined;
|
|
12191
13257
|
position?: undefined;
|
|
12192
13258
|
relatedNestId?: undefined;
|
|
12193
13259
|
color?: undefined;
|
|
12194
13260
|
icon?: undefined;
|
|
13261
|
+
rrule?: undefined;
|
|
13262
|
+
direction?: undefined;
|
|
13263
|
+
cursor?: undefined;
|
|
13264
|
+
instant?: undefined;
|
|
13265
|
+
scope?: undefined;
|
|
12195
13266
|
fullWorkspaces?: undefined;
|
|
12196
13267
|
context?: undefined;
|
|
12197
13268
|
skip?: undefined;
|
|
@@ -12208,7 +13279,6 @@ export declare const toolDefinitions: ({
|
|
|
12208
13279
|
childId?: undefined;
|
|
12209
13280
|
status?: undefined;
|
|
12210
13281
|
relation?: undefined;
|
|
12211
|
-
direction?: undefined;
|
|
12212
13282
|
targetId?: undefined;
|
|
12213
13283
|
templateId?: undefined;
|
|
12214
13284
|
name?: undefined;
|
|
@@ -12226,6 +13296,7 @@ export declare const toolDefinitions: ({
|
|
|
12226
13296
|
connectionId?: undefined;
|
|
12227
13297
|
message?: undefined;
|
|
12228
13298
|
fileId?: undefined;
|
|
13299
|
+
offset?: undefined;
|
|
12229
13300
|
contentType?: undefined;
|
|
12230
13301
|
content?: undefined;
|
|
12231
13302
|
dataBase64?: undefined;
|
|
@@ -12301,8 +13372,6 @@ export declare const toolDefinitions: ({
|
|
|
12301
13372
|
due?: undefined;
|
|
12302
13373
|
accountabilities?: undefined;
|
|
12303
13374
|
domains?: undefined;
|
|
12304
|
-
data?: undefined;
|
|
12305
|
-
completed?: undefined;
|
|
12306
13375
|
body?: undefined;
|
|
12307
13376
|
commentId?: undefined;
|
|
12308
13377
|
circleId?: undefined;
|
|
@@ -12313,6 +13382,7 @@ export declare const toolDefinitions: ({
|
|
|
12313
13382
|
user?: undefined;
|
|
12314
13383
|
key?: undefined;
|
|
12315
13384
|
threadId?: undefined;
|
|
13385
|
+
completed?: undefined;
|
|
12316
13386
|
depth?: undefined;
|
|
12317
13387
|
postId?: undefined;
|
|
12318
13388
|
reason?: undefined;
|
|
@@ -12327,11 +13397,17 @@ export declare const toolDefinitions: ({
|
|
|
12327
13397
|
from?: undefined;
|
|
12328
13398
|
to?: undefined;
|
|
12329
13399
|
completedAfter?: undefined;
|
|
13400
|
+
data?: undefined;
|
|
12330
13401
|
nestIds?: undefined;
|
|
12331
13402
|
position?: undefined;
|
|
12332
13403
|
relatedNestId?: undefined;
|
|
12333
13404
|
color?: undefined;
|
|
12334
13405
|
icon?: undefined;
|
|
13406
|
+
rrule?: undefined;
|
|
13407
|
+
direction?: undefined;
|
|
13408
|
+
cursor?: undefined;
|
|
13409
|
+
instant?: undefined;
|
|
13410
|
+
scope?: undefined;
|
|
12335
13411
|
fullWorkspaces?: undefined;
|
|
12336
13412
|
context?: undefined;
|
|
12337
13413
|
skip?: undefined;
|
|
@@ -12348,7 +13424,6 @@ export declare const toolDefinitions: ({
|
|
|
12348
13424
|
childId?: undefined;
|
|
12349
13425
|
status?: undefined;
|
|
12350
13426
|
relation?: undefined;
|
|
12351
|
-
direction?: undefined;
|
|
12352
13427
|
targetId?: undefined;
|
|
12353
13428
|
templateId?: undefined;
|
|
12354
13429
|
name?: undefined;
|
|
@@ -12365,12 +13440,152 @@ export declare const toolDefinitions: ({
|
|
|
12365
13440
|
includeDisabled?: undefined;
|
|
12366
13441
|
connectionId?: undefined;
|
|
12367
13442
|
fileId?: undefined;
|
|
13443
|
+
offset?: undefined;
|
|
12368
13444
|
contentType?: undefined;
|
|
12369
13445
|
content?: undefined;
|
|
12370
13446
|
dataBase64?: undefined;
|
|
12371
13447
|
};
|
|
12372
13448
|
required: string[];
|
|
12373
13449
|
};
|
|
13450
|
+
} | {
|
|
13451
|
+
annotations: {
|
|
13452
|
+
readOnlyHint: boolean;
|
|
13453
|
+
destructiveHint: boolean;
|
|
13454
|
+
};
|
|
13455
|
+
name: string;
|
|
13456
|
+
description: string;
|
|
13457
|
+
inputSchema: {
|
|
13458
|
+
type: "object";
|
|
13459
|
+
properties: {
|
|
13460
|
+
workspaceId: {
|
|
13461
|
+
type: string;
|
|
13462
|
+
description: string;
|
|
13463
|
+
};
|
|
13464
|
+
search: {
|
|
13465
|
+
type: string;
|
|
13466
|
+
description: string;
|
|
13467
|
+
};
|
|
13468
|
+
fileId: {
|
|
13469
|
+
type: string;
|
|
13470
|
+
description: string;
|
|
13471
|
+
};
|
|
13472
|
+
offset: {
|
|
13473
|
+
type: string;
|
|
13474
|
+
description: string;
|
|
13475
|
+
};
|
|
13476
|
+
topic?: undefined;
|
|
13477
|
+
includeImages?: undefined;
|
|
13478
|
+
imageIndexes?: undefined;
|
|
13479
|
+
maxImages?: undefined;
|
|
13480
|
+
sort?: undefined;
|
|
13481
|
+
limit?: undefined;
|
|
13482
|
+
page?: undefined;
|
|
13483
|
+
stripDescription?: undefined;
|
|
13484
|
+
title?: undefined;
|
|
13485
|
+
purpose?: undefined;
|
|
13486
|
+
type?: undefined;
|
|
13487
|
+
governance?: undefined;
|
|
13488
|
+
plan?: undefined;
|
|
13489
|
+
apps?: undefined;
|
|
13490
|
+
layout?: undefined;
|
|
13491
|
+
query?: undefined;
|
|
13492
|
+
strict?: undefined;
|
|
13493
|
+
linkedUsers?: undefined;
|
|
13494
|
+
_listTitle?: undefined;
|
|
13495
|
+
nestId?: undefined;
|
|
13496
|
+
fieldsMetaData?: undefined;
|
|
13497
|
+
hints?: undefined;
|
|
13498
|
+
hintTypes?: undefined;
|
|
13499
|
+
minSeverity?: undefined;
|
|
13500
|
+
provenance?: undefined;
|
|
13501
|
+
rights?: undefined;
|
|
13502
|
+
forUser?: undefined;
|
|
13503
|
+
whoCan?: undefined;
|
|
13504
|
+
sampleSize?: undefined;
|
|
13505
|
+
path?: undefined;
|
|
13506
|
+
parentId?: undefined;
|
|
13507
|
+
description?: undefined;
|
|
13508
|
+
labels?: undefined;
|
|
13509
|
+
fields?: undefined;
|
|
13510
|
+
users?: undefined;
|
|
13511
|
+
due?: undefined;
|
|
13512
|
+
accountabilities?: undefined;
|
|
13513
|
+
domains?: undefined;
|
|
13514
|
+
body?: undefined;
|
|
13515
|
+
commentId?: undefined;
|
|
13516
|
+
circleId?: undefined;
|
|
13517
|
+
userId?: undefined;
|
|
13518
|
+
withUser?: undefined;
|
|
13519
|
+
unread?: undefined;
|
|
13520
|
+
includeCompleted?: undefined;
|
|
13521
|
+
user?: undefined;
|
|
13522
|
+
key?: undefined;
|
|
13523
|
+
threadId?: undefined;
|
|
13524
|
+
completed?: undefined;
|
|
13525
|
+
depth?: undefined;
|
|
13526
|
+
postId?: undefined;
|
|
13527
|
+
reason?: undefined;
|
|
13528
|
+
includeSubCircles?: undefined;
|
|
13529
|
+
endDate?: undefined;
|
|
13530
|
+
metricId?: undefined;
|
|
13531
|
+
agents?: undefined;
|
|
13532
|
+
username?: undefined;
|
|
13533
|
+
fullName?: undefined;
|
|
13534
|
+
language?: undefined;
|
|
13535
|
+
labelId?: undefined;
|
|
13536
|
+
from?: undefined;
|
|
13537
|
+
to?: undefined;
|
|
13538
|
+
completedAfter?: undefined;
|
|
13539
|
+
data?: undefined;
|
|
13540
|
+
nestIds?: undefined;
|
|
13541
|
+
position?: undefined;
|
|
13542
|
+
relatedNestId?: undefined;
|
|
13543
|
+
color?: undefined;
|
|
13544
|
+
icon?: undefined;
|
|
13545
|
+
rrule?: undefined;
|
|
13546
|
+
direction?: undefined;
|
|
13547
|
+
cursor?: undefined;
|
|
13548
|
+
instant?: undefined;
|
|
13549
|
+
scope?: undefined;
|
|
13550
|
+
fullWorkspaces?: undefined;
|
|
13551
|
+
context?: undefined;
|
|
13552
|
+
skip?: undefined;
|
|
13553
|
+
showRead?: undefined;
|
|
13554
|
+
group?: undefined;
|
|
13555
|
+
feeling?: undefined;
|
|
13556
|
+
needs?: undefined;
|
|
13557
|
+
tensionId?: undefined;
|
|
13558
|
+
_id?: undefined;
|
|
13559
|
+
role?: undefined;
|
|
13560
|
+
roleId?: undefined;
|
|
13561
|
+
removeNest?: undefined;
|
|
13562
|
+
partId?: undefined;
|
|
13563
|
+
childId?: undefined;
|
|
13564
|
+
status?: undefined;
|
|
13565
|
+
relation?: undefined;
|
|
13566
|
+
targetId?: undefined;
|
|
13567
|
+
templateId?: undefined;
|
|
13568
|
+
name?: undefined;
|
|
13569
|
+
config?: undefined;
|
|
13570
|
+
capabilities?: undefined;
|
|
13571
|
+
exposure?: undefined;
|
|
13572
|
+
authStrategy?: undefined;
|
|
13573
|
+
roleAssignable?: undefined;
|
|
13574
|
+
agentConfig?: undefined;
|
|
13575
|
+
connectorId?: undefined;
|
|
13576
|
+
ownerType?: undefined;
|
|
13577
|
+
ownerId?: undefined;
|
|
13578
|
+
enabled?: undefined;
|
|
13579
|
+
includeDisabled?: undefined;
|
|
13580
|
+
connectionId?: undefined;
|
|
13581
|
+
agentUserId?: undefined;
|
|
13582
|
+
message?: undefined;
|
|
13583
|
+
contentType?: undefined;
|
|
13584
|
+
content?: undefined;
|
|
13585
|
+
dataBase64?: undefined;
|
|
13586
|
+
};
|
|
13587
|
+
required?: undefined;
|
|
13588
|
+
};
|
|
12374
13589
|
} | {
|
|
12375
13590
|
annotations: {
|
|
12376
13591
|
readOnlyHint: boolean;
|
|
@@ -12428,8 +13643,6 @@ export declare const toolDefinitions: ({
|
|
|
12428
13643
|
due?: undefined;
|
|
12429
13644
|
accountabilities?: undefined;
|
|
12430
13645
|
domains?: undefined;
|
|
12431
|
-
data?: undefined;
|
|
12432
|
-
completed?: undefined;
|
|
12433
13646
|
body?: undefined;
|
|
12434
13647
|
commentId?: undefined;
|
|
12435
13648
|
circleId?: undefined;
|
|
@@ -12440,6 +13653,7 @@ export declare const toolDefinitions: ({
|
|
|
12440
13653
|
user?: undefined;
|
|
12441
13654
|
key?: undefined;
|
|
12442
13655
|
threadId?: undefined;
|
|
13656
|
+
completed?: undefined;
|
|
12443
13657
|
depth?: undefined;
|
|
12444
13658
|
postId?: undefined;
|
|
12445
13659
|
reason?: undefined;
|
|
@@ -12454,11 +13668,17 @@ export declare const toolDefinitions: ({
|
|
|
12454
13668
|
from?: undefined;
|
|
12455
13669
|
to?: undefined;
|
|
12456
13670
|
completedAfter?: undefined;
|
|
13671
|
+
data?: undefined;
|
|
12457
13672
|
nestIds?: undefined;
|
|
12458
13673
|
position?: undefined;
|
|
12459
13674
|
relatedNestId?: undefined;
|
|
12460
13675
|
color?: undefined;
|
|
12461
13676
|
icon?: undefined;
|
|
13677
|
+
rrule?: undefined;
|
|
13678
|
+
direction?: undefined;
|
|
13679
|
+
cursor?: undefined;
|
|
13680
|
+
instant?: undefined;
|
|
13681
|
+
scope?: undefined;
|
|
12462
13682
|
fullWorkspaces?: undefined;
|
|
12463
13683
|
context?: undefined;
|
|
12464
13684
|
skip?: undefined;
|
|
@@ -12475,7 +13695,6 @@ export declare const toolDefinitions: ({
|
|
|
12475
13695
|
childId?: undefined;
|
|
12476
13696
|
status?: undefined;
|
|
12477
13697
|
relation?: undefined;
|
|
12478
|
-
direction?: undefined;
|
|
12479
13698
|
targetId?: undefined;
|
|
12480
13699
|
templateId?: undefined;
|
|
12481
13700
|
name?: undefined;
|
|
@@ -12493,6 +13712,7 @@ export declare const toolDefinitions: ({
|
|
|
12493
13712
|
connectionId?: undefined;
|
|
12494
13713
|
agentUserId?: undefined;
|
|
12495
13714
|
message?: undefined;
|
|
13715
|
+
offset?: undefined;
|
|
12496
13716
|
contentType?: undefined;
|
|
12497
13717
|
content?: undefined;
|
|
12498
13718
|
dataBase64?: undefined;
|
|
@@ -12568,8 +13788,6 @@ export declare const toolDefinitions: ({
|
|
|
12568
13788
|
due?: undefined;
|
|
12569
13789
|
accountabilities?: undefined;
|
|
12570
13790
|
domains?: undefined;
|
|
12571
|
-
data?: undefined;
|
|
12572
|
-
completed?: undefined;
|
|
12573
13791
|
body?: undefined;
|
|
12574
13792
|
commentId?: undefined;
|
|
12575
13793
|
circleId?: undefined;
|
|
@@ -12580,6 +13798,7 @@ export declare const toolDefinitions: ({
|
|
|
12580
13798
|
user?: undefined;
|
|
12581
13799
|
key?: undefined;
|
|
12582
13800
|
threadId?: undefined;
|
|
13801
|
+
completed?: undefined;
|
|
12583
13802
|
depth?: undefined;
|
|
12584
13803
|
postId?: undefined;
|
|
12585
13804
|
reason?: undefined;
|
|
@@ -12594,11 +13813,17 @@ export declare const toolDefinitions: ({
|
|
|
12594
13813
|
from?: undefined;
|
|
12595
13814
|
to?: undefined;
|
|
12596
13815
|
completedAfter?: undefined;
|
|
13816
|
+
data?: undefined;
|
|
12597
13817
|
nestIds?: undefined;
|
|
12598
13818
|
position?: undefined;
|
|
12599
13819
|
relatedNestId?: undefined;
|
|
12600
13820
|
color?: undefined;
|
|
12601
13821
|
icon?: undefined;
|
|
13822
|
+
rrule?: undefined;
|
|
13823
|
+
direction?: undefined;
|
|
13824
|
+
cursor?: undefined;
|
|
13825
|
+
instant?: undefined;
|
|
13826
|
+
scope?: undefined;
|
|
12602
13827
|
fullWorkspaces?: undefined;
|
|
12603
13828
|
context?: undefined;
|
|
12604
13829
|
skip?: undefined;
|
|
@@ -12615,7 +13840,6 @@ export declare const toolDefinitions: ({
|
|
|
12615
13840
|
childId?: undefined;
|
|
12616
13841
|
status?: undefined;
|
|
12617
13842
|
relation?: undefined;
|
|
12618
|
-
direction?: undefined;
|
|
12619
13843
|
targetId?: undefined;
|
|
12620
13844
|
templateId?: undefined;
|
|
12621
13845
|
config?: undefined;
|
|
@@ -12633,6 +13857,7 @@ export declare const toolDefinitions: ({
|
|
|
12633
13857
|
agentUserId?: undefined;
|
|
12634
13858
|
message?: undefined;
|
|
12635
13859
|
fileId?: undefined;
|
|
13860
|
+
offset?: undefined;
|
|
12636
13861
|
};
|
|
12637
13862
|
required: string[];
|
|
12638
13863
|
};
|