@nestr/mcp 0.1.90 → 0.1.92
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 +2 -1
- package/build/api/client.d.ts +219 -0
- package/build/api/client.d.ts.map +1 -1
- package/build/api/client.js +126 -0
- package/build/api/client.js.map +1 -1
- package/build/tools/index.d.ts +1895 -43
- package/build/tools/index.d.ts.map +1 -1
- package/build/tools/index.js +440 -4
- package/build/tools/index.js.map +1 -1
- package/package.json +1 -1
package/build/tools/index.d.ts
CHANGED
|
@@ -88,17 +88,17 @@ export declare const schemas: {
|
|
|
88
88
|
layout: z.ZodOptional<z.ZodEnum<["board", "list"]>>;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
90
|
title: string;
|
|
91
|
+
type?: "personal" | "collaborative" | undefined;
|
|
91
92
|
plan?: "pro" | "starter" | undefined;
|
|
92
93
|
purpose?: string | undefined;
|
|
93
|
-
type?: "personal" | "collaborative" | undefined;
|
|
94
94
|
governance?: "holacracy" | "sociocracy" | "roles_circles" | undefined;
|
|
95
95
|
apps?: ("okr" | "feedback" | "insights")[] | undefined;
|
|
96
96
|
layout?: "board" | "list" | undefined;
|
|
97
97
|
}, {
|
|
98
98
|
title: string;
|
|
99
|
+
type?: "personal" | "collaborative" | undefined;
|
|
99
100
|
plan?: "pro" | "starter" | undefined;
|
|
100
101
|
purpose?: string | undefined;
|
|
101
|
-
type?: "personal" | "collaborative" | undefined;
|
|
102
102
|
governance?: "holacracy" | "sociocracy" | "roles_circles" | undefined;
|
|
103
103
|
apps?: unknown;
|
|
104
104
|
layout?: "board" | "list" | undefined;
|
|
@@ -129,14 +129,39 @@ export declare const schemas: {
|
|
|
129
129
|
nestId: z.ZodString;
|
|
130
130
|
fieldsMetaData: z.ZodOptional<z.ZodBoolean>;
|
|
131
131
|
hints: z.ZodOptional<z.ZodBoolean>;
|
|
132
|
+
provenance: z.ZodOptional<z.ZodBoolean>;
|
|
133
|
+
rights: z.ZodOptional<z.ZodBoolean>;
|
|
134
|
+
forUser: z.ZodOptional<z.ZodString>;
|
|
135
|
+
whoCan: z.ZodOptional<z.ZodString>;
|
|
132
136
|
}, "strip", z.ZodTypeAny, {
|
|
133
137
|
nestId: string;
|
|
134
138
|
fieldsMetaData?: boolean | undefined;
|
|
135
139
|
hints?: boolean | undefined;
|
|
140
|
+
provenance?: boolean | undefined;
|
|
141
|
+
rights?: boolean | undefined;
|
|
142
|
+
forUser?: string | undefined;
|
|
143
|
+
whoCan?: string | undefined;
|
|
136
144
|
}, {
|
|
137
145
|
nestId: string;
|
|
138
146
|
fieldsMetaData?: boolean | undefined;
|
|
139
147
|
hints?: boolean | undefined;
|
|
148
|
+
provenance?: boolean | undefined;
|
|
149
|
+
rights?: boolean | undefined;
|
|
150
|
+
forUser?: string | undefined;
|
|
151
|
+
whoCan?: string | undefined;
|
|
152
|
+
}>;
|
|
153
|
+
explainNest: z.ZodObject<{
|
|
154
|
+
nestId: z.ZodString;
|
|
155
|
+
forUser: z.ZodOptional<z.ZodString>;
|
|
156
|
+
whoCan: z.ZodOptional<z.ZodString>;
|
|
157
|
+
}, "strip", z.ZodTypeAny, {
|
|
158
|
+
nestId: string;
|
|
159
|
+
forUser?: string | undefined;
|
|
160
|
+
whoCan?: string | undefined;
|
|
161
|
+
}, {
|
|
162
|
+
nestId: string;
|
|
163
|
+
forUser?: string | undefined;
|
|
164
|
+
whoCan?: string | undefined;
|
|
140
165
|
}>;
|
|
141
166
|
getNestChildren: z.ZodObject<{
|
|
142
167
|
nestId: z.ZodString;
|
|
@@ -174,25 +199,25 @@ export declare const schemas: {
|
|
|
174
199
|
}, "strip", z.ZodTypeAny, {
|
|
175
200
|
title: string;
|
|
176
201
|
parentId: string;
|
|
177
|
-
|
|
202
|
+
workspaceId?: string | undefined;
|
|
178
203
|
description?: string | undefined;
|
|
204
|
+
purpose?: string | undefined;
|
|
179
205
|
labels?: string[] | undefined;
|
|
180
206
|
fields?: Record<string, unknown> | undefined;
|
|
181
207
|
users?: string[] | undefined;
|
|
182
208
|
accountabilities?: string[] | undefined;
|
|
183
209
|
domains?: string[] | undefined;
|
|
184
|
-
workspaceId?: string | undefined;
|
|
185
210
|
}, {
|
|
186
211
|
title: string;
|
|
187
212
|
parentId: string;
|
|
188
|
-
|
|
213
|
+
workspaceId?: string | undefined;
|
|
189
214
|
description?: string | undefined;
|
|
215
|
+
purpose?: string | undefined;
|
|
190
216
|
labels?: unknown;
|
|
191
217
|
fields?: unknown;
|
|
192
218
|
users?: unknown;
|
|
193
219
|
accountabilities?: unknown;
|
|
194
220
|
domains?: unknown;
|
|
195
|
-
workspaceId?: string | undefined;
|
|
196
221
|
}>;
|
|
197
222
|
updateNest: z.ZodObject<{
|
|
198
223
|
nestId: z.ZodString;
|
|
@@ -211,9 +236,10 @@ export declare const schemas: {
|
|
|
211
236
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
212
237
|
}, "strip", z.ZodTypeAny, {
|
|
213
238
|
nestId: string;
|
|
239
|
+
workspaceId?: string | undefined;
|
|
240
|
+
description?: string | undefined;
|
|
214
241
|
title?: string | undefined;
|
|
215
242
|
purpose?: string | undefined;
|
|
216
|
-
description?: string | undefined;
|
|
217
243
|
parentId?: string | undefined;
|
|
218
244
|
labels?: string[] | undefined;
|
|
219
245
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -223,12 +249,12 @@ export declare const schemas: {
|
|
|
223
249
|
users?: string[] | undefined;
|
|
224
250
|
accountabilities?: string[] | undefined;
|
|
225
251
|
domains?: string[] | undefined;
|
|
226
|
-
workspaceId?: string | undefined;
|
|
227
252
|
}, {
|
|
228
253
|
nestId: string;
|
|
254
|
+
workspaceId?: string | undefined;
|
|
255
|
+
description?: string | undefined;
|
|
229
256
|
title?: string | undefined;
|
|
230
257
|
purpose?: string | undefined;
|
|
231
|
-
description?: string | undefined;
|
|
232
258
|
parentId?: string | undefined;
|
|
233
259
|
labels?: unknown;
|
|
234
260
|
fields?: unknown;
|
|
@@ -238,7 +264,6 @@ export declare const schemas: {
|
|
|
238
264
|
users?: unknown;
|
|
239
265
|
accountabilities?: unknown;
|
|
240
266
|
domains?: unknown;
|
|
241
|
-
workspaceId?: string | undefined;
|
|
242
267
|
}>;
|
|
243
268
|
deleteNest: z.ZodObject<{
|
|
244
269
|
nestId: z.ZodString;
|
|
@@ -339,15 +364,15 @@ export declare const schemas: {
|
|
|
339
364
|
endDate: z.ZodOptional<z.ZodString>;
|
|
340
365
|
}, "strip", z.ZodTypeAny, {
|
|
341
366
|
workspaceId: string;
|
|
367
|
+
nestId?: string | undefined;
|
|
342
368
|
includeSubCircles?: boolean | undefined;
|
|
343
369
|
userId?: string | undefined;
|
|
344
|
-
nestId?: string | undefined;
|
|
345
370
|
endDate?: string | undefined;
|
|
346
371
|
}, {
|
|
347
372
|
workspaceId: string;
|
|
373
|
+
nestId?: string | undefined;
|
|
348
374
|
includeSubCircles?: boolean | undefined;
|
|
349
375
|
userId?: string | undefined;
|
|
350
|
-
nestId?: string | undefined;
|
|
351
376
|
endDate?: string | undefined;
|
|
352
377
|
}>;
|
|
353
378
|
getInsight: z.ZodObject<{
|
|
@@ -435,11 +460,11 @@ export declare const schemas: {
|
|
|
435
460
|
workspaceId: z.ZodString;
|
|
436
461
|
userId: z.ZodString;
|
|
437
462
|
}, "strip", z.ZodTypeAny, {
|
|
438
|
-
userId: string;
|
|
439
463
|
workspaceId: string;
|
|
440
|
-
}, {
|
|
441
464
|
userId: string;
|
|
465
|
+
}, {
|
|
442
466
|
workspaceId: string;
|
|
467
|
+
userId: string;
|
|
443
468
|
}>;
|
|
444
469
|
addWorkspaceUser: z.ZodObject<{
|
|
445
470
|
workspaceId: z.ZodString;
|
|
@@ -447,13 +472,13 @@ export declare const schemas: {
|
|
|
447
472
|
fullName: z.ZodOptional<z.ZodString>;
|
|
448
473
|
language: z.ZodOptional<z.ZodString>;
|
|
449
474
|
}, "strip", z.ZodTypeAny, {
|
|
450
|
-
username: string;
|
|
451
475
|
workspaceId: string;
|
|
476
|
+
username: string;
|
|
452
477
|
fullName?: string | undefined;
|
|
453
478
|
language?: string | undefined;
|
|
454
479
|
}, {
|
|
455
|
-
username: string;
|
|
456
480
|
workspaceId: string;
|
|
481
|
+
username: string;
|
|
457
482
|
fullName?: string | undefined;
|
|
458
483
|
language?: string | undefined;
|
|
459
484
|
}>;
|
|
@@ -525,14 +550,14 @@ export declare const schemas: {
|
|
|
525
550
|
data: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
526
551
|
}, "strip", z.ZodTypeAny, {
|
|
527
552
|
nestId: string;
|
|
528
|
-
title?: string | undefined;
|
|
529
553
|
description?: string | undefined;
|
|
554
|
+
title?: string | undefined;
|
|
530
555
|
data?: Record<string, unknown> | undefined;
|
|
531
556
|
completed?: boolean | undefined;
|
|
532
557
|
}, {
|
|
533
558
|
nestId: string;
|
|
534
|
-
title?: string | undefined;
|
|
535
559
|
description?: string | undefined;
|
|
560
|
+
title?: string | undefined;
|
|
536
561
|
data?: unknown;
|
|
537
562
|
completed?: boolean | undefined;
|
|
538
563
|
}>;
|
|
@@ -638,6 +663,26 @@ export declare const schemas: {
|
|
|
638
663
|
}, {
|
|
639
664
|
fullWorkspaces?: boolean | undefined;
|
|
640
665
|
}>;
|
|
666
|
+
myActivity: z.ZodObject<{
|
|
667
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
668
|
+
withUser: z.ZodOptional<z.ZodString>;
|
|
669
|
+
}, "strip", z.ZodTypeAny, {
|
|
670
|
+
limit?: number | undefined;
|
|
671
|
+
withUser?: string | undefined;
|
|
672
|
+
}, {
|
|
673
|
+
limit?: number | undefined;
|
|
674
|
+
withUser?: string | undefined;
|
|
675
|
+
}>;
|
|
676
|
+
userActivity: z.ZodObject<{
|
|
677
|
+
userId: z.ZodString;
|
|
678
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
679
|
+
}, "strip", z.ZodTypeAny, {
|
|
680
|
+
userId: string;
|
|
681
|
+
limit?: number | undefined;
|
|
682
|
+
}, {
|
|
683
|
+
userId: string;
|
|
684
|
+
limit?: number | undefined;
|
|
685
|
+
}>;
|
|
641
686
|
listMyTensions: z.ZodObject<{
|
|
642
687
|
context: z.ZodOptional<z.ZodString>;
|
|
643
688
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -659,14 +704,14 @@ export declare const schemas: {
|
|
|
659
704
|
showRead: z.ZodOptional<z.ZodBoolean>;
|
|
660
705
|
group: z.ZodOptional<z.ZodString>;
|
|
661
706
|
}, "strip", z.ZodTypeAny, {
|
|
662
|
-
limit?: number | undefined;
|
|
663
707
|
type?: "all" | "me" | "relevant" | undefined;
|
|
708
|
+
limit?: number | undefined;
|
|
664
709
|
skip?: number | undefined;
|
|
665
710
|
showRead?: boolean | undefined;
|
|
666
711
|
group?: string | undefined;
|
|
667
712
|
}, {
|
|
668
|
-
limit?: number | undefined;
|
|
669
713
|
type?: "all" | "me" | "relevant" | undefined;
|
|
714
|
+
limit?: number | undefined;
|
|
670
715
|
skip?: number | undefined;
|
|
671
716
|
showRead?: boolean | undefined;
|
|
672
717
|
group?: string | undefined;
|
|
@@ -679,14 +724,14 @@ export declare const schemas: {
|
|
|
679
724
|
feeling: z.ZodOptional<z.ZodString>;
|
|
680
725
|
needs: z.ZodOptional<z.ZodString>;
|
|
681
726
|
}, "strip", z.ZodTypeAny, {
|
|
682
|
-
title: string;
|
|
683
727
|
nestId: string;
|
|
728
|
+
title: string;
|
|
684
729
|
description?: string | undefined;
|
|
685
730
|
feeling?: string | undefined;
|
|
686
731
|
needs?: string | undefined;
|
|
687
732
|
}, {
|
|
688
|
-
title: string;
|
|
689
733
|
nestId: string;
|
|
734
|
+
title: string;
|
|
690
735
|
description?: string | undefined;
|
|
691
736
|
feeling?: string | undefined;
|
|
692
737
|
needs?: string | undefined;
|
|
@@ -733,15 +778,15 @@ export declare const schemas: {
|
|
|
733
778
|
}, "strip", z.ZodTypeAny, {
|
|
734
779
|
nestId: string;
|
|
735
780
|
tensionId: string;
|
|
736
|
-
title?: string | undefined;
|
|
737
781
|
description?: string | undefined;
|
|
782
|
+
title?: string | undefined;
|
|
738
783
|
feeling?: string | undefined;
|
|
739
784
|
needs?: string | undefined;
|
|
740
785
|
}, {
|
|
741
786
|
nestId: string;
|
|
742
787
|
tensionId: string;
|
|
743
|
-
title?: string | undefined;
|
|
744
788
|
description?: string | undefined;
|
|
789
|
+
title?: string | undefined;
|
|
745
790
|
feeling?: string | undefined;
|
|
746
791
|
needs?: string | undefined;
|
|
747
792
|
}>;
|
|
@@ -783,10 +828,10 @@ export declare const schemas: {
|
|
|
783
828
|
}, "strip", z.ZodTypeAny, {
|
|
784
829
|
nestId: string;
|
|
785
830
|
tensionId: string;
|
|
831
|
+
description?: string | undefined;
|
|
786
832
|
_id?: string | undefined;
|
|
787
833
|
title?: string | undefined;
|
|
788
834
|
purpose?: string | undefined;
|
|
789
|
-
description?: string | undefined;
|
|
790
835
|
parentId?: string | undefined;
|
|
791
836
|
labels?: string[] | undefined;
|
|
792
837
|
due?: string | undefined;
|
|
@@ -798,10 +843,10 @@ export declare const schemas: {
|
|
|
798
843
|
}, {
|
|
799
844
|
nestId: string;
|
|
800
845
|
tensionId: string;
|
|
846
|
+
description?: string | undefined;
|
|
801
847
|
_id?: string | undefined;
|
|
802
848
|
title?: string | undefined;
|
|
803
849
|
purpose?: string | undefined;
|
|
804
|
-
description?: string | undefined;
|
|
805
850
|
parentId?: string | undefined;
|
|
806
851
|
labels?: unknown;
|
|
807
852
|
due?: string | undefined;
|
|
@@ -813,10 +858,10 @@ export declare const schemas: {
|
|
|
813
858
|
}>, {
|
|
814
859
|
nestId: string;
|
|
815
860
|
tensionId: string;
|
|
861
|
+
description?: string | undefined;
|
|
816
862
|
_id?: string | undefined;
|
|
817
863
|
title?: string | undefined;
|
|
818
864
|
purpose?: string | undefined;
|
|
819
|
-
description?: string | undefined;
|
|
820
865
|
parentId?: string | undefined;
|
|
821
866
|
labels?: string[] | undefined;
|
|
822
867
|
due?: string | undefined;
|
|
@@ -828,10 +873,10 @@ export declare const schemas: {
|
|
|
828
873
|
}, {
|
|
829
874
|
nestId: string;
|
|
830
875
|
tensionId: string;
|
|
876
|
+
description?: string | undefined;
|
|
831
877
|
_id?: string | undefined;
|
|
832
878
|
title?: string | undefined;
|
|
833
879
|
purpose?: string | undefined;
|
|
834
|
-
description?: string | undefined;
|
|
835
880
|
parentId?: string | undefined;
|
|
836
881
|
labels?: unknown;
|
|
837
882
|
due?: string | undefined;
|
|
@@ -843,10 +888,10 @@ export declare const schemas: {
|
|
|
843
888
|
}>, {
|
|
844
889
|
nestId: string;
|
|
845
890
|
tensionId: string;
|
|
891
|
+
description?: string | undefined;
|
|
846
892
|
_id?: string | undefined;
|
|
847
893
|
title?: string | undefined;
|
|
848
894
|
purpose?: string | undefined;
|
|
849
|
-
description?: string | undefined;
|
|
850
895
|
parentId?: string | undefined;
|
|
851
896
|
labels?: string[] | undefined;
|
|
852
897
|
due?: string | undefined;
|
|
@@ -858,10 +903,10 @@ export declare const schemas: {
|
|
|
858
903
|
}, {
|
|
859
904
|
nestId: string;
|
|
860
905
|
tensionId: string;
|
|
906
|
+
description?: string | undefined;
|
|
861
907
|
_id?: string | undefined;
|
|
862
908
|
title?: string | undefined;
|
|
863
909
|
purpose?: string | undefined;
|
|
864
|
-
description?: string | undefined;
|
|
865
910
|
parentId?: string | undefined;
|
|
866
911
|
labels?: unknown;
|
|
867
912
|
due?: string | undefined;
|
|
@@ -873,10 +918,10 @@ export declare const schemas: {
|
|
|
873
918
|
}>, {
|
|
874
919
|
nestId: string;
|
|
875
920
|
tensionId: string;
|
|
921
|
+
description?: string | undefined;
|
|
876
922
|
_id?: string | undefined;
|
|
877
923
|
title?: string | undefined;
|
|
878
924
|
purpose?: string | undefined;
|
|
879
|
-
description?: string | undefined;
|
|
880
925
|
parentId?: string | undefined;
|
|
881
926
|
labels?: string[] | undefined;
|
|
882
927
|
due?: string | undefined;
|
|
@@ -888,10 +933,10 @@ export declare const schemas: {
|
|
|
888
933
|
}, {
|
|
889
934
|
nestId: string;
|
|
890
935
|
tensionId: string;
|
|
936
|
+
description?: string | undefined;
|
|
891
937
|
_id?: string | undefined;
|
|
892
938
|
title?: string | undefined;
|
|
893
939
|
purpose?: string | undefined;
|
|
894
|
-
description?: string | undefined;
|
|
895
940
|
parentId?: string | undefined;
|
|
896
941
|
labels?: unknown;
|
|
897
942
|
due?: string | undefined;
|
|
@@ -918,9 +963,9 @@ export declare const schemas: {
|
|
|
918
963
|
nestId: string;
|
|
919
964
|
tensionId: string;
|
|
920
965
|
partId: string;
|
|
966
|
+
description?: string | undefined;
|
|
921
967
|
title?: string | undefined;
|
|
922
968
|
purpose?: string | undefined;
|
|
923
|
-
description?: string | undefined;
|
|
924
969
|
parentId?: string | undefined;
|
|
925
970
|
labels?: string[] | undefined;
|
|
926
971
|
due?: string | undefined;
|
|
@@ -931,9 +976,9 @@ export declare const schemas: {
|
|
|
931
976
|
nestId: string;
|
|
932
977
|
tensionId: string;
|
|
933
978
|
partId: string;
|
|
979
|
+
description?: string | undefined;
|
|
934
980
|
title?: string | undefined;
|
|
935
981
|
purpose?: string | undefined;
|
|
936
|
-
description?: string | undefined;
|
|
937
982
|
parentId?: string | undefined;
|
|
938
983
|
labels?: unknown;
|
|
939
984
|
due?: string | undefined;
|
|
@@ -974,14 +1019,14 @@ export declare const schemas: {
|
|
|
974
1019
|
title: z.ZodString;
|
|
975
1020
|
labels: z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>;
|
|
976
1021
|
}, "strip", z.ZodTypeAny, {
|
|
1022
|
+
nestId: string;
|
|
977
1023
|
title: string;
|
|
978
1024
|
labels: string[];
|
|
979
|
-
nestId: string;
|
|
980
1025
|
tensionId: string;
|
|
981
1026
|
partId: string;
|
|
982
1027
|
}, {
|
|
983
|
-
title: string;
|
|
984
1028
|
nestId: string;
|
|
1029
|
+
title: string;
|
|
985
1030
|
tensionId: string;
|
|
986
1031
|
partId: string;
|
|
987
1032
|
labels?: unknown;
|
|
@@ -993,14 +1038,14 @@ export declare const schemas: {
|
|
|
993
1038
|
childId: z.ZodString;
|
|
994
1039
|
title: z.ZodString;
|
|
995
1040
|
}, "strip", z.ZodTypeAny, {
|
|
996
|
-
title: string;
|
|
997
1041
|
nestId: string;
|
|
1042
|
+
title: string;
|
|
998
1043
|
tensionId: string;
|
|
999
1044
|
partId: string;
|
|
1000
1045
|
childId: string;
|
|
1001
1046
|
}, {
|
|
1002
|
-
title: string;
|
|
1003
1047
|
nestId: string;
|
|
1048
|
+
title: string;
|
|
1004
1049
|
tensionId: string;
|
|
1005
1050
|
partId: string;
|
|
1006
1051
|
childId: string;
|
|
@@ -1134,6 +1179,112 @@ export declare const schemas: {
|
|
|
1134
1179
|
maxImages?: unknown;
|
|
1135
1180
|
}>;
|
|
1136
1181
|
diagnose: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
1182
|
+
listConnectors: z.ZodObject<{
|
|
1183
|
+
workspaceId: z.ZodString;
|
|
1184
|
+
}, "strip", z.ZodTypeAny, {
|
|
1185
|
+
workspaceId: string;
|
|
1186
|
+
}, {
|
|
1187
|
+
workspaceId: string;
|
|
1188
|
+
}>;
|
|
1189
|
+
registerConnector: z.ZodObject<{
|
|
1190
|
+
workspaceId: z.ZodString;
|
|
1191
|
+
type: z.ZodEnum<["mcp", "cli", "api"]>;
|
|
1192
|
+
name: z.ZodString;
|
|
1193
|
+
config: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1194
|
+
capabilities: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1195
|
+
exposure: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1196
|
+
authStrategy: z.ZodOptional<z.ZodEnum<["secret", "oauth2"]>>;
|
|
1197
|
+
}, "strip", z.ZodTypeAny, {
|
|
1198
|
+
workspaceId: string;
|
|
1199
|
+
type: "mcp" | "cli" | "api";
|
|
1200
|
+
name: string;
|
|
1201
|
+
config?: Record<string, unknown> | undefined;
|
|
1202
|
+
capabilities?: Record<string, unknown> | undefined;
|
|
1203
|
+
exposure?: Record<string, unknown> | undefined;
|
|
1204
|
+
authStrategy?: "secret" | "oauth2" | undefined;
|
|
1205
|
+
}, {
|
|
1206
|
+
workspaceId: string;
|
|
1207
|
+
type: "mcp" | "cli" | "api";
|
|
1208
|
+
name: string;
|
|
1209
|
+
config?: unknown;
|
|
1210
|
+
capabilities?: unknown;
|
|
1211
|
+
exposure?: unknown;
|
|
1212
|
+
authStrategy?: "secret" | "oauth2" | undefined;
|
|
1213
|
+
}>;
|
|
1214
|
+
bindConnector: z.ZodObject<{
|
|
1215
|
+
workspaceId: z.ZodString;
|
|
1216
|
+
connectorId: z.ZodString;
|
|
1217
|
+
ownerType: z.ZodEnum<["user", "agent", "workspace", "role-domain"]>;
|
|
1218
|
+
ownerId: z.ZodString;
|
|
1219
|
+
}, "strip", z.ZodTypeAny, {
|
|
1220
|
+
workspaceId: string;
|
|
1221
|
+
connectorId: string;
|
|
1222
|
+
ownerType: "user" | "agent" | "workspace" | "role-domain";
|
|
1223
|
+
ownerId: string;
|
|
1224
|
+
}, {
|
|
1225
|
+
workspaceId: string;
|
|
1226
|
+
connectorId: string;
|
|
1227
|
+
ownerType: "user" | "agent" | "workspace" | "role-domain";
|
|
1228
|
+
ownerId: string;
|
|
1229
|
+
}>;
|
|
1230
|
+
getNestFiles: z.ZodObject<{
|
|
1231
|
+
nestId: z.ZodString;
|
|
1232
|
+
}, "strip", z.ZodTypeAny, {
|
|
1233
|
+
nestId: string;
|
|
1234
|
+
}, {
|
|
1235
|
+
nestId: string;
|
|
1236
|
+
}>;
|
|
1237
|
+
readFile: z.ZodObject<{
|
|
1238
|
+
nestId: z.ZodString;
|
|
1239
|
+
fileId: z.ZodString;
|
|
1240
|
+
}, "strip", z.ZodTypeAny, {
|
|
1241
|
+
nestId: string;
|
|
1242
|
+
fileId: string;
|
|
1243
|
+
}, {
|
|
1244
|
+
nestId: string;
|
|
1245
|
+
fileId: string;
|
|
1246
|
+
}>;
|
|
1247
|
+
uploadFile: z.ZodEffects<z.ZodObject<{
|
|
1248
|
+
nestId: z.ZodString;
|
|
1249
|
+
name: z.ZodString;
|
|
1250
|
+
contentType: z.ZodString;
|
|
1251
|
+
content: z.ZodOptional<z.ZodString>;
|
|
1252
|
+
dataBase64: z.ZodOptional<z.ZodString>;
|
|
1253
|
+
}, "strip", z.ZodTypeAny, {
|
|
1254
|
+
nestId: string;
|
|
1255
|
+
name: string;
|
|
1256
|
+
contentType: string;
|
|
1257
|
+
content?: string | undefined;
|
|
1258
|
+
dataBase64?: string | undefined;
|
|
1259
|
+
}, {
|
|
1260
|
+
nestId: string;
|
|
1261
|
+
name: string;
|
|
1262
|
+
contentType: string;
|
|
1263
|
+
content?: string | undefined;
|
|
1264
|
+
dataBase64?: string | undefined;
|
|
1265
|
+
}>, {
|
|
1266
|
+
nestId: string;
|
|
1267
|
+
name: string;
|
|
1268
|
+
contentType: string;
|
|
1269
|
+
content?: string | undefined;
|
|
1270
|
+
dataBase64?: string | undefined;
|
|
1271
|
+
}, {
|
|
1272
|
+
nestId: string;
|
|
1273
|
+
name: string;
|
|
1274
|
+
contentType: string;
|
|
1275
|
+
content?: string | undefined;
|
|
1276
|
+
dataBase64?: string | undefined;
|
|
1277
|
+
}>;
|
|
1278
|
+
deleteFile: z.ZodObject<{
|
|
1279
|
+
nestId: z.ZodString;
|
|
1280
|
+
fileId: z.ZodString;
|
|
1281
|
+
}, "strip", z.ZodTypeAny, {
|
|
1282
|
+
nestId: string;
|
|
1283
|
+
fileId: string;
|
|
1284
|
+
}, {
|
|
1285
|
+
nestId: string;
|
|
1286
|
+
fileId: string;
|
|
1287
|
+
}>;
|
|
1137
1288
|
};
|
|
1138
1289
|
export declare const toolDefinitions: ({
|
|
1139
1290
|
annotations: {
|
|
@@ -1187,6 +1338,10 @@ export declare const toolDefinitions: ({
|
|
|
1187
1338
|
nestId?: undefined;
|
|
1188
1339
|
fieldsMetaData?: undefined;
|
|
1189
1340
|
hints?: undefined;
|
|
1341
|
+
provenance?: undefined;
|
|
1342
|
+
rights?: undefined;
|
|
1343
|
+
forUser?: undefined;
|
|
1344
|
+
whoCan?: undefined;
|
|
1190
1345
|
parentId?: undefined;
|
|
1191
1346
|
description?: undefined;
|
|
1192
1347
|
labels?: undefined;
|
|
@@ -1217,6 +1372,7 @@ export declare const toolDefinitions: ({
|
|
|
1217
1372
|
relatedNestId?: undefined;
|
|
1218
1373
|
color?: undefined;
|
|
1219
1374
|
icon?: undefined;
|
|
1375
|
+
withUser?: undefined;
|
|
1220
1376
|
fullWorkspaces?: undefined;
|
|
1221
1377
|
context?: undefined;
|
|
1222
1378
|
skip?: undefined;
|
|
@@ -1234,6 +1390,18 @@ export declare const toolDefinitions: ({
|
|
|
1234
1390
|
relation?: undefined;
|
|
1235
1391
|
direction?: undefined;
|
|
1236
1392
|
targetId?: undefined;
|
|
1393
|
+
name?: undefined;
|
|
1394
|
+
config?: undefined;
|
|
1395
|
+
capabilities?: undefined;
|
|
1396
|
+
exposure?: undefined;
|
|
1397
|
+
authStrategy?: undefined;
|
|
1398
|
+
connectorId?: undefined;
|
|
1399
|
+
ownerType?: undefined;
|
|
1400
|
+
ownerId?: undefined;
|
|
1401
|
+
fileId?: undefined;
|
|
1402
|
+
contentType?: undefined;
|
|
1403
|
+
content?: undefined;
|
|
1404
|
+
dataBase64?: undefined;
|
|
1237
1405
|
};
|
|
1238
1406
|
required?: undefined;
|
|
1239
1407
|
};
|
|
@@ -1269,6 +1437,10 @@ export declare const toolDefinitions: ({
|
|
|
1269
1437
|
nestId?: undefined;
|
|
1270
1438
|
fieldsMetaData?: undefined;
|
|
1271
1439
|
hints?: undefined;
|
|
1440
|
+
provenance?: undefined;
|
|
1441
|
+
rights?: undefined;
|
|
1442
|
+
forUser?: undefined;
|
|
1443
|
+
whoCan?: undefined;
|
|
1272
1444
|
parentId?: undefined;
|
|
1273
1445
|
description?: undefined;
|
|
1274
1446
|
labels?: undefined;
|
|
@@ -1299,6 +1471,7 @@ export declare const toolDefinitions: ({
|
|
|
1299
1471
|
relatedNestId?: undefined;
|
|
1300
1472
|
color?: undefined;
|
|
1301
1473
|
icon?: undefined;
|
|
1474
|
+
withUser?: undefined;
|
|
1302
1475
|
fullWorkspaces?: undefined;
|
|
1303
1476
|
context?: undefined;
|
|
1304
1477
|
skip?: undefined;
|
|
@@ -1316,6 +1489,18 @@ export declare const toolDefinitions: ({
|
|
|
1316
1489
|
relation?: undefined;
|
|
1317
1490
|
direction?: undefined;
|
|
1318
1491
|
targetId?: undefined;
|
|
1492
|
+
name?: undefined;
|
|
1493
|
+
config?: undefined;
|
|
1494
|
+
capabilities?: undefined;
|
|
1495
|
+
exposure?: undefined;
|
|
1496
|
+
authStrategy?: undefined;
|
|
1497
|
+
connectorId?: undefined;
|
|
1498
|
+
ownerType?: undefined;
|
|
1499
|
+
ownerId?: undefined;
|
|
1500
|
+
fileId?: undefined;
|
|
1501
|
+
contentType?: undefined;
|
|
1502
|
+
content?: undefined;
|
|
1503
|
+
dataBase64?: undefined;
|
|
1319
1504
|
};
|
|
1320
1505
|
required?: undefined;
|
|
1321
1506
|
};
|
|
@@ -1366,6 +1551,10 @@ export declare const toolDefinitions: ({
|
|
|
1366
1551
|
nestId?: undefined;
|
|
1367
1552
|
fieldsMetaData?: undefined;
|
|
1368
1553
|
hints?: undefined;
|
|
1554
|
+
provenance?: undefined;
|
|
1555
|
+
rights?: undefined;
|
|
1556
|
+
forUser?: undefined;
|
|
1557
|
+
whoCan?: undefined;
|
|
1369
1558
|
parentId?: undefined;
|
|
1370
1559
|
description?: undefined;
|
|
1371
1560
|
labels?: undefined;
|
|
@@ -1396,6 +1585,7 @@ export declare const toolDefinitions: ({
|
|
|
1396
1585
|
relatedNestId?: undefined;
|
|
1397
1586
|
color?: undefined;
|
|
1398
1587
|
icon?: undefined;
|
|
1588
|
+
withUser?: undefined;
|
|
1399
1589
|
fullWorkspaces?: undefined;
|
|
1400
1590
|
context?: undefined;
|
|
1401
1591
|
skip?: undefined;
|
|
@@ -1413,6 +1603,18 @@ export declare const toolDefinitions: ({
|
|
|
1413
1603
|
relation?: undefined;
|
|
1414
1604
|
direction?: undefined;
|
|
1415
1605
|
targetId?: undefined;
|
|
1606
|
+
name?: undefined;
|
|
1607
|
+
config?: undefined;
|
|
1608
|
+
capabilities?: undefined;
|
|
1609
|
+
exposure?: undefined;
|
|
1610
|
+
authStrategy?: undefined;
|
|
1611
|
+
connectorId?: undefined;
|
|
1612
|
+
ownerType?: undefined;
|
|
1613
|
+
ownerId?: undefined;
|
|
1614
|
+
fileId?: undefined;
|
|
1615
|
+
contentType?: undefined;
|
|
1616
|
+
content?: undefined;
|
|
1617
|
+
dataBase64?: undefined;
|
|
1416
1618
|
};
|
|
1417
1619
|
required?: undefined;
|
|
1418
1620
|
};
|
|
@@ -1454,6 +1656,10 @@ export declare const toolDefinitions: ({
|
|
|
1454
1656
|
nestId?: undefined;
|
|
1455
1657
|
fieldsMetaData?: undefined;
|
|
1456
1658
|
hints?: undefined;
|
|
1659
|
+
provenance?: undefined;
|
|
1660
|
+
rights?: undefined;
|
|
1661
|
+
forUser?: undefined;
|
|
1662
|
+
whoCan?: undefined;
|
|
1457
1663
|
parentId?: undefined;
|
|
1458
1664
|
description?: undefined;
|
|
1459
1665
|
labels?: undefined;
|
|
@@ -1484,6 +1690,7 @@ export declare const toolDefinitions: ({
|
|
|
1484
1690
|
relatedNestId?: undefined;
|
|
1485
1691
|
color?: undefined;
|
|
1486
1692
|
icon?: undefined;
|
|
1693
|
+
withUser?: undefined;
|
|
1487
1694
|
fullWorkspaces?: undefined;
|
|
1488
1695
|
context?: undefined;
|
|
1489
1696
|
skip?: undefined;
|
|
@@ -1501,6 +1708,18 @@ export declare const toolDefinitions: ({
|
|
|
1501
1708
|
relation?: undefined;
|
|
1502
1709
|
direction?: undefined;
|
|
1503
1710
|
targetId?: undefined;
|
|
1711
|
+
name?: undefined;
|
|
1712
|
+
config?: undefined;
|
|
1713
|
+
capabilities?: undefined;
|
|
1714
|
+
exposure?: undefined;
|
|
1715
|
+
authStrategy?: undefined;
|
|
1716
|
+
connectorId?: undefined;
|
|
1717
|
+
ownerType?: undefined;
|
|
1718
|
+
ownerId?: undefined;
|
|
1719
|
+
fileId?: undefined;
|
|
1720
|
+
contentType?: undefined;
|
|
1721
|
+
content?: undefined;
|
|
1722
|
+
dataBase64?: undefined;
|
|
1504
1723
|
};
|
|
1505
1724
|
required: string[];
|
|
1506
1725
|
};
|
|
@@ -1565,6 +1784,10 @@ export declare const toolDefinitions: ({
|
|
|
1565
1784
|
nestId?: undefined;
|
|
1566
1785
|
fieldsMetaData?: undefined;
|
|
1567
1786
|
hints?: undefined;
|
|
1787
|
+
provenance?: undefined;
|
|
1788
|
+
rights?: undefined;
|
|
1789
|
+
forUser?: undefined;
|
|
1790
|
+
whoCan?: undefined;
|
|
1568
1791
|
parentId?: undefined;
|
|
1569
1792
|
description?: undefined;
|
|
1570
1793
|
labels?: undefined;
|
|
@@ -1595,6 +1818,7 @@ export declare const toolDefinitions: ({
|
|
|
1595
1818
|
relatedNestId?: undefined;
|
|
1596
1819
|
color?: undefined;
|
|
1597
1820
|
icon?: undefined;
|
|
1821
|
+
withUser?: undefined;
|
|
1598
1822
|
fullWorkspaces?: undefined;
|
|
1599
1823
|
context?: undefined;
|
|
1600
1824
|
skip?: undefined;
|
|
@@ -1612,6 +1836,18 @@ export declare const toolDefinitions: ({
|
|
|
1612
1836
|
relation?: undefined;
|
|
1613
1837
|
direction?: undefined;
|
|
1614
1838
|
targetId?: undefined;
|
|
1839
|
+
name?: undefined;
|
|
1840
|
+
config?: undefined;
|
|
1841
|
+
capabilities?: undefined;
|
|
1842
|
+
exposure?: undefined;
|
|
1843
|
+
authStrategy?: undefined;
|
|
1844
|
+
connectorId?: undefined;
|
|
1845
|
+
ownerType?: undefined;
|
|
1846
|
+
ownerId?: undefined;
|
|
1847
|
+
fileId?: undefined;
|
|
1848
|
+
contentType?: undefined;
|
|
1849
|
+
content?: undefined;
|
|
1850
|
+
dataBase64?: undefined;
|
|
1615
1851
|
};
|
|
1616
1852
|
required: string[];
|
|
1617
1853
|
};
|
|
@@ -1668,6 +1904,10 @@ export declare const toolDefinitions: ({
|
|
|
1668
1904
|
nestId?: undefined;
|
|
1669
1905
|
fieldsMetaData?: undefined;
|
|
1670
1906
|
hints?: undefined;
|
|
1907
|
+
provenance?: undefined;
|
|
1908
|
+
rights?: undefined;
|
|
1909
|
+
forUser?: undefined;
|
|
1910
|
+
whoCan?: undefined;
|
|
1671
1911
|
parentId?: undefined;
|
|
1672
1912
|
description?: undefined;
|
|
1673
1913
|
labels?: undefined;
|
|
@@ -1698,6 +1938,7 @@ export declare const toolDefinitions: ({
|
|
|
1698
1938
|
relatedNestId?: undefined;
|
|
1699
1939
|
color?: undefined;
|
|
1700
1940
|
icon?: undefined;
|
|
1941
|
+
withUser?: undefined;
|
|
1701
1942
|
fullWorkspaces?: undefined;
|
|
1702
1943
|
context?: undefined;
|
|
1703
1944
|
skip?: undefined;
|
|
@@ -1715,6 +1956,18 @@ export declare const toolDefinitions: ({
|
|
|
1715
1956
|
relation?: undefined;
|
|
1716
1957
|
direction?: undefined;
|
|
1717
1958
|
targetId?: undefined;
|
|
1959
|
+
name?: undefined;
|
|
1960
|
+
config?: undefined;
|
|
1961
|
+
capabilities?: undefined;
|
|
1962
|
+
exposure?: undefined;
|
|
1963
|
+
authStrategy?: undefined;
|
|
1964
|
+
connectorId?: undefined;
|
|
1965
|
+
ownerType?: undefined;
|
|
1966
|
+
ownerId?: undefined;
|
|
1967
|
+
fileId?: undefined;
|
|
1968
|
+
contentType?: undefined;
|
|
1969
|
+
content?: undefined;
|
|
1970
|
+
dataBase64?: undefined;
|
|
1718
1971
|
};
|
|
1719
1972
|
required: string[];
|
|
1720
1973
|
};
|
|
@@ -1744,6 +1997,125 @@ export declare const toolDefinitions: ({
|
|
|
1744
1997
|
type: string;
|
|
1745
1998
|
description: string;
|
|
1746
1999
|
};
|
|
2000
|
+
provenance: {
|
|
2001
|
+
type: string;
|
|
2002
|
+
description: string;
|
|
2003
|
+
};
|
|
2004
|
+
rights: {
|
|
2005
|
+
type: string;
|
|
2006
|
+
description: string;
|
|
2007
|
+
};
|
|
2008
|
+
forUser: {
|
|
2009
|
+
type: string;
|
|
2010
|
+
description: string;
|
|
2011
|
+
};
|
|
2012
|
+
whoCan: {
|
|
2013
|
+
type: string;
|
|
2014
|
+
description: string;
|
|
2015
|
+
};
|
|
2016
|
+
topic?: undefined;
|
|
2017
|
+
search?: undefined;
|
|
2018
|
+
includeImages?: undefined;
|
|
2019
|
+
imageIndexes?: undefined;
|
|
2020
|
+
maxImages?: undefined;
|
|
2021
|
+
sort?: undefined;
|
|
2022
|
+
limit?: undefined;
|
|
2023
|
+
page?: undefined;
|
|
2024
|
+
workspaceId?: undefined;
|
|
2025
|
+
title?: undefined;
|
|
2026
|
+
purpose?: undefined;
|
|
2027
|
+
type?: undefined;
|
|
2028
|
+
governance?: undefined;
|
|
2029
|
+
plan?: undefined;
|
|
2030
|
+
apps?: undefined;
|
|
2031
|
+
layout?: undefined;
|
|
2032
|
+
query?: undefined;
|
|
2033
|
+
_listTitle?: undefined;
|
|
2034
|
+
parentId?: undefined;
|
|
2035
|
+
description?: undefined;
|
|
2036
|
+
labels?: undefined;
|
|
2037
|
+
fields?: undefined;
|
|
2038
|
+
users?: undefined;
|
|
2039
|
+
accountabilities?: undefined;
|
|
2040
|
+
domains?: undefined;
|
|
2041
|
+
data?: undefined;
|
|
2042
|
+
due?: undefined;
|
|
2043
|
+
completed?: undefined;
|
|
2044
|
+
body?: undefined;
|
|
2045
|
+
commentId?: undefined;
|
|
2046
|
+
circleId?: undefined;
|
|
2047
|
+
includeSubCircles?: undefined;
|
|
2048
|
+
userId?: undefined;
|
|
2049
|
+
endDate?: undefined;
|
|
2050
|
+
metricId?: undefined;
|
|
2051
|
+
depth?: undefined;
|
|
2052
|
+
username?: undefined;
|
|
2053
|
+
fullName?: undefined;
|
|
2054
|
+
language?: undefined;
|
|
2055
|
+
labelId?: undefined;
|
|
2056
|
+
from?: undefined;
|
|
2057
|
+
to?: undefined;
|
|
2058
|
+
completedAfter?: undefined;
|
|
2059
|
+
nestIds?: undefined;
|
|
2060
|
+
position?: undefined;
|
|
2061
|
+
relatedNestId?: undefined;
|
|
2062
|
+
color?: undefined;
|
|
2063
|
+
icon?: undefined;
|
|
2064
|
+
withUser?: undefined;
|
|
2065
|
+
fullWorkspaces?: undefined;
|
|
2066
|
+
context?: undefined;
|
|
2067
|
+
skip?: undefined;
|
|
2068
|
+
showRead?: undefined;
|
|
2069
|
+
group?: undefined;
|
|
2070
|
+
feeling?: undefined;
|
|
2071
|
+
needs?: undefined;
|
|
2072
|
+
tensionId?: undefined;
|
|
2073
|
+
_id?: undefined;
|
|
2074
|
+
roleId?: undefined;
|
|
2075
|
+
removeNest?: undefined;
|
|
2076
|
+
partId?: undefined;
|
|
2077
|
+
childId?: undefined;
|
|
2078
|
+
status?: undefined;
|
|
2079
|
+
relation?: undefined;
|
|
2080
|
+
direction?: undefined;
|
|
2081
|
+
targetId?: undefined;
|
|
2082
|
+
name?: undefined;
|
|
2083
|
+
config?: undefined;
|
|
2084
|
+
capabilities?: undefined;
|
|
2085
|
+
exposure?: undefined;
|
|
2086
|
+
authStrategy?: undefined;
|
|
2087
|
+
connectorId?: undefined;
|
|
2088
|
+
ownerType?: undefined;
|
|
2089
|
+
ownerId?: undefined;
|
|
2090
|
+
fileId?: undefined;
|
|
2091
|
+
contentType?: undefined;
|
|
2092
|
+
content?: undefined;
|
|
2093
|
+
dataBase64?: undefined;
|
|
2094
|
+
};
|
|
2095
|
+
required: string[];
|
|
2096
|
+
};
|
|
2097
|
+
} | {
|
|
2098
|
+
annotations: {
|
|
2099
|
+
readOnlyHint: boolean;
|
|
2100
|
+
destructiveHint: boolean;
|
|
2101
|
+
};
|
|
2102
|
+
name: string;
|
|
2103
|
+
description: string;
|
|
2104
|
+
inputSchema: {
|
|
2105
|
+
type: "object";
|
|
2106
|
+
properties: {
|
|
2107
|
+
nestId: {
|
|
2108
|
+
type: string;
|
|
2109
|
+
description: string;
|
|
2110
|
+
};
|
|
2111
|
+
forUser: {
|
|
2112
|
+
type: string;
|
|
2113
|
+
description: string;
|
|
2114
|
+
};
|
|
2115
|
+
whoCan: {
|
|
2116
|
+
type: string;
|
|
2117
|
+
description: string;
|
|
2118
|
+
};
|
|
1747
2119
|
topic?: undefined;
|
|
1748
2120
|
search?: undefined;
|
|
1749
2121
|
includeImages?: undefined;
|
|
@@ -1752,6 +2124,7 @@ export declare const toolDefinitions: ({
|
|
|
1752
2124
|
sort?: undefined;
|
|
1753
2125
|
limit?: undefined;
|
|
1754
2126
|
page?: undefined;
|
|
2127
|
+
stripDescription?: undefined;
|
|
1755
2128
|
workspaceId?: undefined;
|
|
1756
2129
|
title?: undefined;
|
|
1757
2130
|
purpose?: undefined;
|
|
@@ -1762,6 +2135,10 @@ export declare const toolDefinitions: ({
|
|
|
1762
2135
|
layout?: undefined;
|
|
1763
2136
|
query?: undefined;
|
|
1764
2137
|
_listTitle?: undefined;
|
|
2138
|
+
fieldsMetaData?: undefined;
|
|
2139
|
+
hints?: undefined;
|
|
2140
|
+
provenance?: undefined;
|
|
2141
|
+
rights?: undefined;
|
|
1765
2142
|
parentId?: undefined;
|
|
1766
2143
|
description?: undefined;
|
|
1767
2144
|
labels?: undefined;
|
|
@@ -1792,6 +2169,7 @@ export declare const toolDefinitions: ({
|
|
|
1792
2169
|
relatedNestId?: undefined;
|
|
1793
2170
|
color?: undefined;
|
|
1794
2171
|
icon?: undefined;
|
|
2172
|
+
withUser?: undefined;
|
|
1795
2173
|
fullWorkspaces?: undefined;
|
|
1796
2174
|
context?: undefined;
|
|
1797
2175
|
skip?: undefined;
|
|
@@ -1809,6 +2187,18 @@ export declare const toolDefinitions: ({
|
|
|
1809
2187
|
relation?: undefined;
|
|
1810
2188
|
direction?: undefined;
|
|
1811
2189
|
targetId?: undefined;
|
|
2190
|
+
name?: undefined;
|
|
2191
|
+
config?: undefined;
|
|
2192
|
+
capabilities?: undefined;
|
|
2193
|
+
exposure?: undefined;
|
|
2194
|
+
authStrategy?: undefined;
|
|
2195
|
+
connectorId?: undefined;
|
|
2196
|
+
ownerType?: undefined;
|
|
2197
|
+
ownerId?: undefined;
|
|
2198
|
+
fileId?: undefined;
|
|
2199
|
+
contentType?: undefined;
|
|
2200
|
+
content?: undefined;
|
|
2201
|
+
dataBase64?: undefined;
|
|
1812
2202
|
};
|
|
1813
2203
|
required: string[];
|
|
1814
2204
|
};
|
|
@@ -1865,6 +2255,10 @@ export declare const toolDefinitions: ({
|
|
|
1865
2255
|
layout?: undefined;
|
|
1866
2256
|
query?: undefined;
|
|
1867
2257
|
fieldsMetaData?: undefined;
|
|
2258
|
+
provenance?: undefined;
|
|
2259
|
+
rights?: undefined;
|
|
2260
|
+
forUser?: undefined;
|
|
2261
|
+
whoCan?: undefined;
|
|
1868
2262
|
parentId?: undefined;
|
|
1869
2263
|
description?: undefined;
|
|
1870
2264
|
labels?: undefined;
|
|
@@ -1895,6 +2289,7 @@ export declare const toolDefinitions: ({
|
|
|
1895
2289
|
relatedNestId?: undefined;
|
|
1896
2290
|
color?: undefined;
|
|
1897
2291
|
icon?: undefined;
|
|
2292
|
+
withUser?: undefined;
|
|
1898
2293
|
fullWorkspaces?: undefined;
|
|
1899
2294
|
context?: undefined;
|
|
1900
2295
|
skip?: undefined;
|
|
@@ -1912,6 +2307,18 @@ export declare const toolDefinitions: ({
|
|
|
1912
2307
|
relation?: undefined;
|
|
1913
2308
|
direction?: undefined;
|
|
1914
2309
|
targetId?: undefined;
|
|
2310
|
+
name?: undefined;
|
|
2311
|
+
config?: undefined;
|
|
2312
|
+
capabilities?: undefined;
|
|
2313
|
+
exposure?: undefined;
|
|
2314
|
+
authStrategy?: undefined;
|
|
2315
|
+
connectorId?: undefined;
|
|
2316
|
+
ownerType?: undefined;
|
|
2317
|
+
ownerId?: undefined;
|
|
2318
|
+
fileId?: undefined;
|
|
2319
|
+
contentType?: undefined;
|
|
2320
|
+
content?: undefined;
|
|
2321
|
+
dataBase64?: undefined;
|
|
1915
2322
|
};
|
|
1916
2323
|
required: string[];
|
|
1917
2324
|
};
|
|
@@ -1996,6 +2403,10 @@ export declare const toolDefinitions: ({
|
|
|
1996
2403
|
nestId?: undefined;
|
|
1997
2404
|
fieldsMetaData?: undefined;
|
|
1998
2405
|
hints?: undefined;
|
|
2406
|
+
provenance?: undefined;
|
|
2407
|
+
rights?: undefined;
|
|
2408
|
+
forUser?: undefined;
|
|
2409
|
+
whoCan?: undefined;
|
|
1999
2410
|
data?: undefined;
|
|
2000
2411
|
due?: undefined;
|
|
2001
2412
|
completed?: undefined;
|
|
@@ -2019,6 +2430,7 @@ export declare const toolDefinitions: ({
|
|
|
2019
2430
|
relatedNestId?: undefined;
|
|
2020
2431
|
color?: undefined;
|
|
2021
2432
|
icon?: undefined;
|
|
2433
|
+
withUser?: undefined;
|
|
2022
2434
|
fullWorkspaces?: undefined;
|
|
2023
2435
|
context?: undefined;
|
|
2024
2436
|
skip?: undefined;
|
|
@@ -2036,6 +2448,18 @@ export declare const toolDefinitions: ({
|
|
|
2036
2448
|
relation?: undefined;
|
|
2037
2449
|
direction?: undefined;
|
|
2038
2450
|
targetId?: undefined;
|
|
2451
|
+
name?: undefined;
|
|
2452
|
+
config?: undefined;
|
|
2453
|
+
capabilities?: undefined;
|
|
2454
|
+
exposure?: undefined;
|
|
2455
|
+
authStrategy?: undefined;
|
|
2456
|
+
connectorId?: undefined;
|
|
2457
|
+
ownerType?: undefined;
|
|
2458
|
+
ownerId?: undefined;
|
|
2459
|
+
fileId?: undefined;
|
|
2460
|
+
contentType?: undefined;
|
|
2461
|
+
content?: undefined;
|
|
2462
|
+
dataBase64?: undefined;
|
|
2039
2463
|
};
|
|
2040
2464
|
required: string[];
|
|
2041
2465
|
};
|
|
@@ -2135,6 +2559,10 @@ export declare const toolDefinitions: ({
|
|
|
2135
2559
|
_listTitle?: undefined;
|
|
2136
2560
|
fieldsMetaData?: undefined;
|
|
2137
2561
|
hints?: undefined;
|
|
2562
|
+
provenance?: undefined;
|
|
2563
|
+
rights?: undefined;
|
|
2564
|
+
forUser?: undefined;
|
|
2565
|
+
whoCan?: undefined;
|
|
2138
2566
|
body?: undefined;
|
|
2139
2567
|
commentId?: undefined;
|
|
2140
2568
|
circleId?: undefined;
|
|
@@ -2155,6 +2583,7 @@ export declare const toolDefinitions: ({
|
|
|
2155
2583
|
relatedNestId?: undefined;
|
|
2156
2584
|
color?: undefined;
|
|
2157
2585
|
icon?: undefined;
|
|
2586
|
+
withUser?: undefined;
|
|
2158
2587
|
fullWorkspaces?: undefined;
|
|
2159
2588
|
context?: undefined;
|
|
2160
2589
|
skip?: undefined;
|
|
@@ -2172,6 +2601,18 @@ export declare const toolDefinitions: ({
|
|
|
2172
2601
|
relation?: undefined;
|
|
2173
2602
|
direction?: undefined;
|
|
2174
2603
|
targetId?: undefined;
|
|
2604
|
+
name?: undefined;
|
|
2605
|
+
config?: undefined;
|
|
2606
|
+
capabilities?: undefined;
|
|
2607
|
+
exposure?: undefined;
|
|
2608
|
+
authStrategy?: undefined;
|
|
2609
|
+
connectorId?: undefined;
|
|
2610
|
+
ownerType?: undefined;
|
|
2611
|
+
ownerId?: undefined;
|
|
2612
|
+
fileId?: undefined;
|
|
2613
|
+
contentType?: undefined;
|
|
2614
|
+
content?: undefined;
|
|
2615
|
+
dataBase64?: undefined;
|
|
2175
2616
|
};
|
|
2176
2617
|
required: string[];
|
|
2177
2618
|
};
|
|
@@ -2210,6 +2651,10 @@ export declare const toolDefinitions: ({
|
|
|
2210
2651
|
_listTitle?: undefined;
|
|
2211
2652
|
fieldsMetaData?: undefined;
|
|
2212
2653
|
hints?: undefined;
|
|
2654
|
+
provenance?: undefined;
|
|
2655
|
+
rights?: undefined;
|
|
2656
|
+
forUser?: undefined;
|
|
2657
|
+
whoCan?: undefined;
|
|
2213
2658
|
parentId?: undefined;
|
|
2214
2659
|
description?: undefined;
|
|
2215
2660
|
labels?: undefined;
|
|
@@ -2240,6 +2685,7 @@ export declare const toolDefinitions: ({
|
|
|
2240
2685
|
relatedNestId?: undefined;
|
|
2241
2686
|
color?: undefined;
|
|
2242
2687
|
icon?: undefined;
|
|
2688
|
+
withUser?: undefined;
|
|
2243
2689
|
fullWorkspaces?: undefined;
|
|
2244
2690
|
context?: undefined;
|
|
2245
2691
|
skip?: undefined;
|
|
@@ -2257,6 +2703,18 @@ export declare const toolDefinitions: ({
|
|
|
2257
2703
|
relation?: undefined;
|
|
2258
2704
|
direction?: undefined;
|
|
2259
2705
|
targetId?: undefined;
|
|
2706
|
+
name?: undefined;
|
|
2707
|
+
config?: undefined;
|
|
2708
|
+
capabilities?: undefined;
|
|
2709
|
+
exposure?: undefined;
|
|
2710
|
+
authStrategy?: undefined;
|
|
2711
|
+
connectorId?: undefined;
|
|
2712
|
+
ownerType?: undefined;
|
|
2713
|
+
ownerId?: undefined;
|
|
2714
|
+
fileId?: undefined;
|
|
2715
|
+
contentType?: undefined;
|
|
2716
|
+
content?: undefined;
|
|
2717
|
+
dataBase64?: undefined;
|
|
2260
2718
|
};
|
|
2261
2719
|
required: string[];
|
|
2262
2720
|
};
|
|
@@ -2306,6 +2764,10 @@ export declare const toolDefinitions: ({
|
|
|
2306
2764
|
_listTitle?: undefined;
|
|
2307
2765
|
fieldsMetaData?: undefined;
|
|
2308
2766
|
hints?: undefined;
|
|
2767
|
+
provenance?: undefined;
|
|
2768
|
+
rights?: undefined;
|
|
2769
|
+
forUser?: undefined;
|
|
2770
|
+
whoCan?: undefined;
|
|
2309
2771
|
parentId?: undefined;
|
|
2310
2772
|
description?: undefined;
|
|
2311
2773
|
fields?: undefined;
|
|
@@ -2334,6 +2796,7 @@ export declare const toolDefinitions: ({
|
|
|
2334
2796
|
relatedNestId?: undefined;
|
|
2335
2797
|
color?: undefined;
|
|
2336
2798
|
icon?: undefined;
|
|
2799
|
+
withUser?: undefined;
|
|
2337
2800
|
fullWorkspaces?: undefined;
|
|
2338
2801
|
context?: undefined;
|
|
2339
2802
|
skip?: undefined;
|
|
@@ -2351,6 +2814,18 @@ export declare const toolDefinitions: ({
|
|
|
2351
2814
|
relation?: undefined;
|
|
2352
2815
|
direction?: undefined;
|
|
2353
2816
|
targetId?: undefined;
|
|
2817
|
+
name?: undefined;
|
|
2818
|
+
config?: undefined;
|
|
2819
|
+
capabilities?: undefined;
|
|
2820
|
+
exposure?: undefined;
|
|
2821
|
+
authStrategy?: undefined;
|
|
2822
|
+
connectorId?: undefined;
|
|
2823
|
+
ownerType?: undefined;
|
|
2824
|
+
ownerId?: undefined;
|
|
2825
|
+
fileId?: undefined;
|
|
2826
|
+
contentType?: undefined;
|
|
2827
|
+
content?: undefined;
|
|
2828
|
+
dataBase64?: undefined;
|
|
2354
2829
|
};
|
|
2355
2830
|
required: string[];
|
|
2356
2831
|
};
|
|
@@ -2401,6 +2876,10 @@ export declare const toolDefinitions: ({
|
|
|
2401
2876
|
nestId?: undefined;
|
|
2402
2877
|
fieldsMetaData?: undefined;
|
|
2403
2878
|
hints?: undefined;
|
|
2879
|
+
provenance?: undefined;
|
|
2880
|
+
rights?: undefined;
|
|
2881
|
+
forUser?: undefined;
|
|
2882
|
+
whoCan?: undefined;
|
|
2404
2883
|
parentId?: undefined;
|
|
2405
2884
|
description?: undefined;
|
|
2406
2885
|
fields?: undefined;
|
|
@@ -2428,6 +2907,7 @@ export declare const toolDefinitions: ({
|
|
|
2428
2907
|
relatedNestId?: undefined;
|
|
2429
2908
|
color?: undefined;
|
|
2430
2909
|
icon?: undefined;
|
|
2910
|
+
withUser?: undefined;
|
|
2431
2911
|
fullWorkspaces?: undefined;
|
|
2432
2912
|
context?: undefined;
|
|
2433
2913
|
skip?: undefined;
|
|
@@ -2445,6 +2925,18 @@ export declare const toolDefinitions: ({
|
|
|
2445
2925
|
relation?: undefined;
|
|
2446
2926
|
direction?: undefined;
|
|
2447
2927
|
targetId?: undefined;
|
|
2928
|
+
name?: undefined;
|
|
2929
|
+
config?: undefined;
|
|
2930
|
+
capabilities?: undefined;
|
|
2931
|
+
exposure?: undefined;
|
|
2932
|
+
authStrategy?: undefined;
|
|
2933
|
+
connectorId?: undefined;
|
|
2934
|
+
ownerType?: undefined;
|
|
2935
|
+
ownerId?: undefined;
|
|
2936
|
+
fileId?: undefined;
|
|
2937
|
+
contentType?: undefined;
|
|
2938
|
+
content?: undefined;
|
|
2939
|
+
dataBase64?: undefined;
|
|
2448
2940
|
};
|
|
2449
2941
|
required: string[];
|
|
2450
2942
|
};
|
|
@@ -2484,6 +2976,10 @@ export declare const toolDefinitions: ({
|
|
|
2484
2976
|
nestId?: undefined;
|
|
2485
2977
|
fieldsMetaData?: undefined;
|
|
2486
2978
|
hints?: undefined;
|
|
2979
|
+
provenance?: undefined;
|
|
2980
|
+
rights?: undefined;
|
|
2981
|
+
forUser?: undefined;
|
|
2982
|
+
whoCan?: undefined;
|
|
2487
2983
|
parentId?: undefined;
|
|
2488
2984
|
description?: undefined;
|
|
2489
2985
|
labels?: undefined;
|
|
@@ -2513,6 +3009,7 @@ export declare const toolDefinitions: ({
|
|
|
2513
3009
|
relatedNestId?: undefined;
|
|
2514
3010
|
color?: undefined;
|
|
2515
3011
|
icon?: undefined;
|
|
3012
|
+
withUser?: undefined;
|
|
2516
3013
|
fullWorkspaces?: undefined;
|
|
2517
3014
|
context?: undefined;
|
|
2518
3015
|
skip?: undefined;
|
|
@@ -2530,6 +3027,18 @@ export declare const toolDefinitions: ({
|
|
|
2530
3027
|
relation?: undefined;
|
|
2531
3028
|
direction?: undefined;
|
|
2532
3029
|
targetId?: undefined;
|
|
3030
|
+
name?: undefined;
|
|
3031
|
+
config?: undefined;
|
|
3032
|
+
capabilities?: undefined;
|
|
3033
|
+
exposure?: undefined;
|
|
3034
|
+
authStrategy?: undefined;
|
|
3035
|
+
connectorId?: undefined;
|
|
3036
|
+
ownerType?: undefined;
|
|
3037
|
+
ownerId?: undefined;
|
|
3038
|
+
fileId?: undefined;
|
|
3039
|
+
contentType?: undefined;
|
|
3040
|
+
content?: undefined;
|
|
3041
|
+
dataBase64?: undefined;
|
|
2533
3042
|
};
|
|
2534
3043
|
required: string[];
|
|
2535
3044
|
};
|
|
@@ -2580,6 +3089,10 @@ export declare const toolDefinitions: ({
|
|
|
2580
3089
|
nestId?: undefined;
|
|
2581
3090
|
fieldsMetaData?: undefined;
|
|
2582
3091
|
hints?: undefined;
|
|
3092
|
+
provenance?: undefined;
|
|
3093
|
+
rights?: undefined;
|
|
3094
|
+
forUser?: undefined;
|
|
3095
|
+
whoCan?: undefined;
|
|
2583
3096
|
parentId?: undefined;
|
|
2584
3097
|
description?: undefined;
|
|
2585
3098
|
labels?: undefined;
|
|
@@ -2610,6 +3123,7 @@ export declare const toolDefinitions: ({
|
|
|
2610
3123
|
relatedNestId?: undefined;
|
|
2611
3124
|
color?: undefined;
|
|
2612
3125
|
icon?: undefined;
|
|
3126
|
+
withUser?: undefined;
|
|
2613
3127
|
fullWorkspaces?: undefined;
|
|
2614
3128
|
context?: undefined;
|
|
2615
3129
|
skip?: undefined;
|
|
@@ -2627,6 +3141,18 @@ export declare const toolDefinitions: ({
|
|
|
2627
3141
|
relation?: undefined;
|
|
2628
3142
|
direction?: undefined;
|
|
2629
3143
|
targetId?: undefined;
|
|
3144
|
+
name?: undefined;
|
|
3145
|
+
config?: undefined;
|
|
3146
|
+
capabilities?: undefined;
|
|
3147
|
+
exposure?: undefined;
|
|
3148
|
+
authStrategy?: undefined;
|
|
3149
|
+
connectorId?: undefined;
|
|
3150
|
+
ownerType?: undefined;
|
|
3151
|
+
ownerId?: undefined;
|
|
3152
|
+
fileId?: undefined;
|
|
3153
|
+
contentType?: undefined;
|
|
3154
|
+
content?: undefined;
|
|
3155
|
+
dataBase64?: undefined;
|
|
2630
3156
|
};
|
|
2631
3157
|
required: string[];
|
|
2632
3158
|
};
|
|
@@ -2681,6 +3207,10 @@ export declare const toolDefinitions: ({
|
|
|
2681
3207
|
nestId?: undefined;
|
|
2682
3208
|
fieldsMetaData?: undefined;
|
|
2683
3209
|
hints?: undefined;
|
|
3210
|
+
provenance?: undefined;
|
|
3211
|
+
rights?: undefined;
|
|
3212
|
+
forUser?: undefined;
|
|
3213
|
+
whoCan?: undefined;
|
|
2684
3214
|
parentId?: undefined;
|
|
2685
3215
|
description?: undefined;
|
|
2686
3216
|
labels?: undefined;
|
|
@@ -2710,6 +3240,7 @@ export declare const toolDefinitions: ({
|
|
|
2710
3240
|
relatedNestId?: undefined;
|
|
2711
3241
|
color?: undefined;
|
|
2712
3242
|
icon?: undefined;
|
|
3243
|
+
withUser?: undefined;
|
|
2713
3244
|
fullWorkspaces?: undefined;
|
|
2714
3245
|
context?: undefined;
|
|
2715
3246
|
skip?: undefined;
|
|
@@ -2727,6 +3258,18 @@ export declare const toolDefinitions: ({
|
|
|
2727
3258
|
relation?: undefined;
|
|
2728
3259
|
direction?: undefined;
|
|
2729
3260
|
targetId?: undefined;
|
|
3261
|
+
name?: undefined;
|
|
3262
|
+
config?: undefined;
|
|
3263
|
+
capabilities?: undefined;
|
|
3264
|
+
exposure?: undefined;
|
|
3265
|
+
authStrategy?: undefined;
|
|
3266
|
+
connectorId?: undefined;
|
|
3267
|
+
ownerType?: undefined;
|
|
3268
|
+
ownerId?: undefined;
|
|
3269
|
+
fileId?: undefined;
|
|
3270
|
+
contentType?: undefined;
|
|
3271
|
+
content?: undefined;
|
|
3272
|
+
dataBase64?: undefined;
|
|
2730
3273
|
};
|
|
2731
3274
|
required: string[];
|
|
2732
3275
|
};
|
|
@@ -2780,6 +3323,10 @@ export declare const toolDefinitions: ({
|
|
|
2780
3323
|
_listTitle?: undefined;
|
|
2781
3324
|
fieldsMetaData?: undefined;
|
|
2782
3325
|
hints?: undefined;
|
|
3326
|
+
provenance?: undefined;
|
|
3327
|
+
rights?: undefined;
|
|
3328
|
+
forUser?: undefined;
|
|
3329
|
+
whoCan?: undefined;
|
|
2783
3330
|
parentId?: undefined;
|
|
2784
3331
|
description?: undefined;
|
|
2785
3332
|
labels?: undefined;
|
|
@@ -2807,6 +3354,7 @@ export declare const toolDefinitions: ({
|
|
|
2807
3354
|
relatedNestId?: undefined;
|
|
2808
3355
|
color?: undefined;
|
|
2809
3356
|
icon?: undefined;
|
|
3357
|
+
withUser?: undefined;
|
|
2810
3358
|
fullWorkspaces?: undefined;
|
|
2811
3359
|
context?: undefined;
|
|
2812
3360
|
skip?: undefined;
|
|
@@ -2824,6 +3372,18 @@ export declare const toolDefinitions: ({
|
|
|
2824
3372
|
relation?: undefined;
|
|
2825
3373
|
direction?: undefined;
|
|
2826
3374
|
targetId?: undefined;
|
|
3375
|
+
name?: undefined;
|
|
3376
|
+
config?: undefined;
|
|
3377
|
+
capabilities?: undefined;
|
|
3378
|
+
exposure?: undefined;
|
|
3379
|
+
authStrategy?: undefined;
|
|
3380
|
+
connectorId?: undefined;
|
|
3381
|
+
ownerType?: undefined;
|
|
3382
|
+
ownerId?: undefined;
|
|
3383
|
+
fileId?: undefined;
|
|
3384
|
+
contentType?: undefined;
|
|
3385
|
+
content?: undefined;
|
|
3386
|
+
dataBase64?: undefined;
|
|
2827
3387
|
};
|
|
2828
3388
|
required: string[];
|
|
2829
3389
|
};
|
|
@@ -2866,6 +3426,10 @@ export declare const toolDefinitions: ({
|
|
|
2866
3426
|
nestId?: undefined;
|
|
2867
3427
|
fieldsMetaData?: undefined;
|
|
2868
3428
|
hints?: undefined;
|
|
3429
|
+
provenance?: undefined;
|
|
3430
|
+
rights?: undefined;
|
|
3431
|
+
forUser?: undefined;
|
|
3432
|
+
whoCan?: undefined;
|
|
2869
3433
|
parentId?: undefined;
|
|
2870
3434
|
description?: undefined;
|
|
2871
3435
|
labels?: undefined;
|
|
@@ -2895,6 +3459,7 @@ export declare const toolDefinitions: ({
|
|
|
2895
3459
|
relatedNestId?: undefined;
|
|
2896
3460
|
color?: undefined;
|
|
2897
3461
|
icon?: undefined;
|
|
3462
|
+
withUser?: undefined;
|
|
2898
3463
|
fullWorkspaces?: undefined;
|
|
2899
3464
|
context?: undefined;
|
|
2900
3465
|
skip?: undefined;
|
|
@@ -2912,6 +3477,18 @@ export declare const toolDefinitions: ({
|
|
|
2912
3477
|
relation?: undefined;
|
|
2913
3478
|
direction?: undefined;
|
|
2914
3479
|
targetId?: undefined;
|
|
3480
|
+
name?: undefined;
|
|
3481
|
+
config?: undefined;
|
|
3482
|
+
capabilities?: undefined;
|
|
3483
|
+
exposure?: undefined;
|
|
3484
|
+
authStrategy?: undefined;
|
|
3485
|
+
connectorId?: undefined;
|
|
3486
|
+
ownerType?: undefined;
|
|
3487
|
+
ownerId?: undefined;
|
|
3488
|
+
fileId?: undefined;
|
|
3489
|
+
contentType?: undefined;
|
|
3490
|
+
content?: undefined;
|
|
3491
|
+
dataBase64?: undefined;
|
|
2915
3492
|
};
|
|
2916
3493
|
required: string[];
|
|
2917
3494
|
};
|
|
@@ -2959,6 +3536,10 @@ export declare const toolDefinitions: ({
|
|
|
2959
3536
|
nestId?: undefined;
|
|
2960
3537
|
fieldsMetaData?: undefined;
|
|
2961
3538
|
hints?: undefined;
|
|
3539
|
+
provenance?: undefined;
|
|
3540
|
+
rights?: undefined;
|
|
3541
|
+
forUser?: undefined;
|
|
3542
|
+
whoCan?: undefined;
|
|
2962
3543
|
parentId?: undefined;
|
|
2963
3544
|
description?: undefined;
|
|
2964
3545
|
labels?: undefined;
|
|
@@ -2989,6 +3570,7 @@ export declare const toolDefinitions: ({
|
|
|
2989
3570
|
relatedNestId?: undefined;
|
|
2990
3571
|
color?: undefined;
|
|
2991
3572
|
icon?: undefined;
|
|
3573
|
+
withUser?: undefined;
|
|
2992
3574
|
fullWorkspaces?: undefined;
|
|
2993
3575
|
context?: undefined;
|
|
2994
3576
|
skip?: undefined;
|
|
@@ -3006,6 +3588,18 @@ export declare const toolDefinitions: ({
|
|
|
3006
3588
|
relation?: undefined;
|
|
3007
3589
|
direction?: undefined;
|
|
3008
3590
|
targetId?: undefined;
|
|
3591
|
+
name?: undefined;
|
|
3592
|
+
config?: undefined;
|
|
3593
|
+
capabilities?: undefined;
|
|
3594
|
+
exposure?: undefined;
|
|
3595
|
+
authStrategy?: undefined;
|
|
3596
|
+
connectorId?: undefined;
|
|
3597
|
+
ownerType?: undefined;
|
|
3598
|
+
ownerId?: undefined;
|
|
3599
|
+
fileId?: undefined;
|
|
3600
|
+
contentType?: undefined;
|
|
3601
|
+
content?: undefined;
|
|
3602
|
+
dataBase64?: undefined;
|
|
3009
3603
|
};
|
|
3010
3604
|
required: string[];
|
|
3011
3605
|
};
|
|
@@ -3059,6 +3653,10 @@ export declare const toolDefinitions: ({
|
|
|
3059
3653
|
nestId?: undefined;
|
|
3060
3654
|
fieldsMetaData?: undefined;
|
|
3061
3655
|
hints?: undefined;
|
|
3656
|
+
provenance?: undefined;
|
|
3657
|
+
rights?: undefined;
|
|
3658
|
+
forUser?: undefined;
|
|
3659
|
+
whoCan?: undefined;
|
|
3062
3660
|
parentId?: undefined;
|
|
3063
3661
|
description?: undefined;
|
|
3064
3662
|
labels?: undefined;
|
|
@@ -3089,6 +3687,7 @@ export declare const toolDefinitions: ({
|
|
|
3089
3687
|
relatedNestId?: undefined;
|
|
3090
3688
|
color?: undefined;
|
|
3091
3689
|
icon?: undefined;
|
|
3690
|
+
withUser?: undefined;
|
|
3092
3691
|
fullWorkspaces?: undefined;
|
|
3093
3692
|
context?: undefined;
|
|
3094
3693
|
skip?: undefined;
|
|
@@ -3106,6 +3705,18 @@ export declare const toolDefinitions: ({
|
|
|
3106
3705
|
relation?: undefined;
|
|
3107
3706
|
direction?: undefined;
|
|
3108
3707
|
targetId?: undefined;
|
|
3708
|
+
name?: undefined;
|
|
3709
|
+
config?: undefined;
|
|
3710
|
+
capabilities?: undefined;
|
|
3711
|
+
exposure?: undefined;
|
|
3712
|
+
authStrategy?: undefined;
|
|
3713
|
+
connectorId?: undefined;
|
|
3714
|
+
ownerType?: undefined;
|
|
3715
|
+
ownerId?: undefined;
|
|
3716
|
+
fileId?: undefined;
|
|
3717
|
+
contentType?: undefined;
|
|
3718
|
+
content?: undefined;
|
|
3719
|
+
dataBase64?: undefined;
|
|
3109
3720
|
};
|
|
3110
3721
|
required: string[];
|
|
3111
3722
|
};
|
|
@@ -3159,6 +3770,10 @@ export declare const toolDefinitions: ({
|
|
|
3159
3770
|
_listTitle?: undefined;
|
|
3160
3771
|
fieldsMetaData?: undefined;
|
|
3161
3772
|
hints?: undefined;
|
|
3773
|
+
provenance?: undefined;
|
|
3774
|
+
rights?: undefined;
|
|
3775
|
+
forUser?: undefined;
|
|
3776
|
+
whoCan?: undefined;
|
|
3162
3777
|
parentId?: undefined;
|
|
3163
3778
|
description?: undefined;
|
|
3164
3779
|
labels?: undefined;
|
|
@@ -3188,6 +3803,7 @@ export declare const toolDefinitions: ({
|
|
|
3188
3803
|
relatedNestId?: undefined;
|
|
3189
3804
|
color?: undefined;
|
|
3190
3805
|
icon?: undefined;
|
|
3806
|
+
withUser?: undefined;
|
|
3191
3807
|
fullWorkspaces?: undefined;
|
|
3192
3808
|
context?: undefined;
|
|
3193
3809
|
skip?: undefined;
|
|
@@ -3205,6 +3821,18 @@ export declare const toolDefinitions: ({
|
|
|
3205
3821
|
relation?: undefined;
|
|
3206
3822
|
direction?: undefined;
|
|
3207
3823
|
targetId?: undefined;
|
|
3824
|
+
name?: undefined;
|
|
3825
|
+
config?: undefined;
|
|
3826
|
+
capabilities?: undefined;
|
|
3827
|
+
exposure?: undefined;
|
|
3828
|
+
authStrategy?: undefined;
|
|
3829
|
+
connectorId?: undefined;
|
|
3830
|
+
ownerType?: undefined;
|
|
3831
|
+
ownerId?: undefined;
|
|
3832
|
+
fileId?: undefined;
|
|
3833
|
+
contentType?: undefined;
|
|
3834
|
+
content?: undefined;
|
|
3835
|
+
dataBase64?: undefined;
|
|
3208
3836
|
};
|
|
3209
3837
|
required: string[];
|
|
3210
3838
|
};
|
|
@@ -3250,6 +3878,10 @@ export declare const toolDefinitions: ({
|
|
|
3250
3878
|
nestId?: undefined;
|
|
3251
3879
|
fieldsMetaData?: undefined;
|
|
3252
3880
|
hints?: undefined;
|
|
3881
|
+
provenance?: undefined;
|
|
3882
|
+
rights?: undefined;
|
|
3883
|
+
forUser?: undefined;
|
|
3884
|
+
whoCan?: undefined;
|
|
3253
3885
|
parentId?: undefined;
|
|
3254
3886
|
description?: undefined;
|
|
3255
3887
|
labels?: undefined;
|
|
@@ -3279,6 +3911,7 @@ export declare const toolDefinitions: ({
|
|
|
3279
3911
|
relatedNestId?: undefined;
|
|
3280
3912
|
color?: undefined;
|
|
3281
3913
|
icon?: undefined;
|
|
3914
|
+
withUser?: undefined;
|
|
3282
3915
|
fullWorkspaces?: undefined;
|
|
3283
3916
|
context?: undefined;
|
|
3284
3917
|
skip?: undefined;
|
|
@@ -3296,6 +3929,18 @@ export declare const toolDefinitions: ({
|
|
|
3296
3929
|
relation?: undefined;
|
|
3297
3930
|
direction?: undefined;
|
|
3298
3931
|
targetId?: undefined;
|
|
3932
|
+
name?: undefined;
|
|
3933
|
+
config?: undefined;
|
|
3934
|
+
capabilities?: undefined;
|
|
3935
|
+
exposure?: undefined;
|
|
3936
|
+
authStrategy?: undefined;
|
|
3937
|
+
connectorId?: undefined;
|
|
3938
|
+
ownerType?: undefined;
|
|
3939
|
+
ownerId?: undefined;
|
|
3940
|
+
fileId?: undefined;
|
|
3941
|
+
contentType?: undefined;
|
|
3942
|
+
content?: undefined;
|
|
3943
|
+
dataBase64?: undefined;
|
|
3299
3944
|
};
|
|
3300
3945
|
required: string[];
|
|
3301
3946
|
};
|
|
@@ -3338,6 +3983,10 @@ export declare const toolDefinitions: ({
|
|
|
3338
3983
|
nestId?: undefined;
|
|
3339
3984
|
fieldsMetaData?: undefined;
|
|
3340
3985
|
hints?: undefined;
|
|
3986
|
+
provenance?: undefined;
|
|
3987
|
+
rights?: undefined;
|
|
3988
|
+
forUser?: undefined;
|
|
3989
|
+
whoCan?: undefined;
|
|
3341
3990
|
parentId?: undefined;
|
|
3342
3991
|
description?: undefined;
|
|
3343
3992
|
labels?: undefined;
|
|
@@ -3367,6 +4016,7 @@ export declare const toolDefinitions: ({
|
|
|
3367
4016
|
relatedNestId?: undefined;
|
|
3368
4017
|
color?: undefined;
|
|
3369
4018
|
icon?: undefined;
|
|
4019
|
+
withUser?: undefined;
|
|
3370
4020
|
fullWorkspaces?: undefined;
|
|
3371
4021
|
context?: undefined;
|
|
3372
4022
|
skip?: undefined;
|
|
@@ -3384,6 +4034,18 @@ export declare const toolDefinitions: ({
|
|
|
3384
4034
|
relation?: undefined;
|
|
3385
4035
|
direction?: undefined;
|
|
3386
4036
|
targetId?: undefined;
|
|
4037
|
+
name?: undefined;
|
|
4038
|
+
config?: undefined;
|
|
4039
|
+
capabilities?: undefined;
|
|
4040
|
+
exposure?: undefined;
|
|
4041
|
+
authStrategy?: undefined;
|
|
4042
|
+
connectorId?: undefined;
|
|
4043
|
+
ownerType?: undefined;
|
|
4044
|
+
ownerId?: undefined;
|
|
4045
|
+
fileId?: undefined;
|
|
4046
|
+
contentType?: undefined;
|
|
4047
|
+
content?: undefined;
|
|
4048
|
+
dataBase64?: undefined;
|
|
3387
4049
|
};
|
|
3388
4050
|
required: string[];
|
|
3389
4051
|
};
|
|
@@ -3434,6 +4096,10 @@ export declare const toolDefinitions: ({
|
|
|
3434
4096
|
nestId?: undefined;
|
|
3435
4097
|
fieldsMetaData?: undefined;
|
|
3436
4098
|
hints?: undefined;
|
|
4099
|
+
provenance?: undefined;
|
|
4100
|
+
rights?: undefined;
|
|
4101
|
+
forUser?: undefined;
|
|
4102
|
+
whoCan?: undefined;
|
|
3437
4103
|
parentId?: undefined;
|
|
3438
4104
|
description?: undefined;
|
|
3439
4105
|
labels?: undefined;
|
|
@@ -3461,6 +4127,7 @@ export declare const toolDefinitions: ({
|
|
|
3461
4127
|
relatedNestId?: undefined;
|
|
3462
4128
|
color?: undefined;
|
|
3463
4129
|
icon?: undefined;
|
|
4130
|
+
withUser?: undefined;
|
|
3464
4131
|
fullWorkspaces?: undefined;
|
|
3465
4132
|
context?: undefined;
|
|
3466
4133
|
skip?: undefined;
|
|
@@ -3478,6 +4145,18 @@ export declare const toolDefinitions: ({
|
|
|
3478
4145
|
relation?: undefined;
|
|
3479
4146
|
direction?: undefined;
|
|
3480
4147
|
targetId?: undefined;
|
|
4148
|
+
name?: undefined;
|
|
4149
|
+
config?: undefined;
|
|
4150
|
+
capabilities?: undefined;
|
|
4151
|
+
exposure?: undefined;
|
|
4152
|
+
authStrategy?: undefined;
|
|
4153
|
+
connectorId?: undefined;
|
|
4154
|
+
ownerType?: undefined;
|
|
4155
|
+
ownerId?: undefined;
|
|
4156
|
+
fileId?: undefined;
|
|
4157
|
+
contentType?: undefined;
|
|
4158
|
+
content?: undefined;
|
|
4159
|
+
dataBase64?: undefined;
|
|
3481
4160
|
};
|
|
3482
4161
|
required: string[];
|
|
3483
4162
|
};
|
|
@@ -3520,6 +4199,10 @@ export declare const toolDefinitions: ({
|
|
|
3520
4199
|
nestId?: undefined;
|
|
3521
4200
|
fieldsMetaData?: undefined;
|
|
3522
4201
|
hints?: undefined;
|
|
4202
|
+
provenance?: undefined;
|
|
4203
|
+
rights?: undefined;
|
|
4204
|
+
forUser?: undefined;
|
|
4205
|
+
whoCan?: undefined;
|
|
3523
4206
|
parentId?: undefined;
|
|
3524
4207
|
description?: undefined;
|
|
3525
4208
|
labels?: undefined;
|
|
@@ -3549,6 +4232,7 @@ export declare const toolDefinitions: ({
|
|
|
3549
4232
|
relatedNestId?: undefined;
|
|
3550
4233
|
color?: undefined;
|
|
3551
4234
|
icon?: undefined;
|
|
4235
|
+
withUser?: undefined;
|
|
3552
4236
|
fullWorkspaces?: undefined;
|
|
3553
4237
|
context?: undefined;
|
|
3554
4238
|
skip?: undefined;
|
|
@@ -3566,6 +4250,18 @@ export declare const toolDefinitions: ({
|
|
|
3566
4250
|
relation?: undefined;
|
|
3567
4251
|
direction?: undefined;
|
|
3568
4252
|
targetId?: undefined;
|
|
4253
|
+
name?: undefined;
|
|
4254
|
+
config?: undefined;
|
|
4255
|
+
capabilities?: undefined;
|
|
4256
|
+
exposure?: undefined;
|
|
4257
|
+
authStrategy?: undefined;
|
|
4258
|
+
connectorId?: undefined;
|
|
4259
|
+
ownerType?: undefined;
|
|
4260
|
+
ownerId?: undefined;
|
|
4261
|
+
fileId?: undefined;
|
|
4262
|
+
contentType?: undefined;
|
|
4263
|
+
content?: undefined;
|
|
4264
|
+
dataBase64?: undefined;
|
|
3569
4265
|
};
|
|
3570
4266
|
required: string[];
|
|
3571
4267
|
};
|
|
@@ -3619,6 +4315,10 @@ export declare const toolDefinitions: ({
|
|
|
3619
4315
|
nestId?: undefined;
|
|
3620
4316
|
fieldsMetaData?: undefined;
|
|
3621
4317
|
hints?: undefined;
|
|
4318
|
+
provenance?: undefined;
|
|
4319
|
+
rights?: undefined;
|
|
4320
|
+
forUser?: undefined;
|
|
4321
|
+
whoCan?: undefined;
|
|
3622
4322
|
parentId?: undefined;
|
|
3623
4323
|
description?: undefined;
|
|
3624
4324
|
labels?: undefined;
|
|
@@ -3646,6 +4346,7 @@ export declare const toolDefinitions: ({
|
|
|
3646
4346
|
relatedNestId?: undefined;
|
|
3647
4347
|
color?: undefined;
|
|
3648
4348
|
icon?: undefined;
|
|
4349
|
+
withUser?: undefined;
|
|
3649
4350
|
fullWorkspaces?: undefined;
|
|
3650
4351
|
context?: undefined;
|
|
3651
4352
|
skip?: undefined;
|
|
@@ -3663,6 +4364,18 @@ export declare const toolDefinitions: ({
|
|
|
3663
4364
|
relation?: undefined;
|
|
3664
4365
|
direction?: undefined;
|
|
3665
4366
|
targetId?: undefined;
|
|
4367
|
+
name?: undefined;
|
|
4368
|
+
config?: undefined;
|
|
4369
|
+
capabilities?: undefined;
|
|
4370
|
+
exposure?: undefined;
|
|
4371
|
+
authStrategy?: undefined;
|
|
4372
|
+
connectorId?: undefined;
|
|
4373
|
+
ownerType?: undefined;
|
|
4374
|
+
ownerId?: undefined;
|
|
4375
|
+
fileId?: undefined;
|
|
4376
|
+
contentType?: undefined;
|
|
4377
|
+
content?: undefined;
|
|
4378
|
+
dataBase64?: undefined;
|
|
3666
4379
|
};
|
|
3667
4380
|
required: string[];
|
|
3668
4381
|
};
|
|
@@ -3701,6 +4414,10 @@ export declare const toolDefinitions: ({
|
|
|
3701
4414
|
nestId?: undefined;
|
|
3702
4415
|
fieldsMetaData?: undefined;
|
|
3703
4416
|
hints?: undefined;
|
|
4417
|
+
provenance?: undefined;
|
|
4418
|
+
rights?: undefined;
|
|
4419
|
+
forUser?: undefined;
|
|
4420
|
+
whoCan?: undefined;
|
|
3704
4421
|
parentId?: undefined;
|
|
3705
4422
|
description?: undefined;
|
|
3706
4423
|
labels?: undefined;
|
|
@@ -3731,6 +4448,7 @@ export declare const toolDefinitions: ({
|
|
|
3731
4448
|
relatedNestId?: undefined;
|
|
3732
4449
|
color?: undefined;
|
|
3733
4450
|
icon?: undefined;
|
|
4451
|
+
withUser?: undefined;
|
|
3734
4452
|
fullWorkspaces?: undefined;
|
|
3735
4453
|
context?: undefined;
|
|
3736
4454
|
skip?: undefined;
|
|
@@ -3748,6 +4466,18 @@ export declare const toolDefinitions: ({
|
|
|
3748
4466
|
relation?: undefined;
|
|
3749
4467
|
direction?: undefined;
|
|
3750
4468
|
targetId?: undefined;
|
|
4469
|
+
name?: undefined;
|
|
4470
|
+
config?: undefined;
|
|
4471
|
+
capabilities?: undefined;
|
|
4472
|
+
exposure?: undefined;
|
|
4473
|
+
authStrategy?: undefined;
|
|
4474
|
+
connectorId?: undefined;
|
|
4475
|
+
ownerType?: undefined;
|
|
4476
|
+
ownerId?: undefined;
|
|
4477
|
+
fileId?: undefined;
|
|
4478
|
+
contentType?: undefined;
|
|
4479
|
+
content?: undefined;
|
|
4480
|
+
dataBase64?: undefined;
|
|
3751
4481
|
};
|
|
3752
4482
|
required: string[];
|
|
3753
4483
|
};
|
|
@@ -3790,6 +4520,10 @@ export declare const toolDefinitions: ({
|
|
|
3790
4520
|
nestId?: undefined;
|
|
3791
4521
|
fieldsMetaData?: undefined;
|
|
3792
4522
|
hints?: undefined;
|
|
4523
|
+
provenance?: undefined;
|
|
4524
|
+
rights?: undefined;
|
|
4525
|
+
forUser?: undefined;
|
|
4526
|
+
whoCan?: undefined;
|
|
3793
4527
|
parentId?: undefined;
|
|
3794
4528
|
description?: undefined;
|
|
3795
4529
|
labels?: undefined;
|
|
@@ -3819,6 +4553,7 @@ export declare const toolDefinitions: ({
|
|
|
3819
4553
|
relatedNestId?: undefined;
|
|
3820
4554
|
color?: undefined;
|
|
3821
4555
|
icon?: undefined;
|
|
4556
|
+
withUser?: undefined;
|
|
3822
4557
|
fullWorkspaces?: undefined;
|
|
3823
4558
|
context?: undefined;
|
|
3824
4559
|
skip?: undefined;
|
|
@@ -3836,6 +4571,18 @@ export declare const toolDefinitions: ({
|
|
|
3836
4571
|
relation?: undefined;
|
|
3837
4572
|
direction?: undefined;
|
|
3838
4573
|
targetId?: undefined;
|
|
4574
|
+
name?: undefined;
|
|
4575
|
+
config?: undefined;
|
|
4576
|
+
capabilities?: undefined;
|
|
4577
|
+
exposure?: undefined;
|
|
4578
|
+
authStrategy?: undefined;
|
|
4579
|
+
connectorId?: undefined;
|
|
4580
|
+
ownerType?: undefined;
|
|
4581
|
+
ownerId?: undefined;
|
|
4582
|
+
fileId?: undefined;
|
|
4583
|
+
contentType?: undefined;
|
|
4584
|
+
content?: undefined;
|
|
4585
|
+
dataBase64?: undefined;
|
|
3839
4586
|
};
|
|
3840
4587
|
required?: undefined;
|
|
3841
4588
|
};
|
|
@@ -3883,6 +4630,10 @@ export declare const toolDefinitions: ({
|
|
|
3883
4630
|
nestId?: undefined;
|
|
3884
4631
|
fieldsMetaData?: undefined;
|
|
3885
4632
|
hints?: undefined;
|
|
4633
|
+
provenance?: undefined;
|
|
4634
|
+
rights?: undefined;
|
|
4635
|
+
forUser?: undefined;
|
|
4636
|
+
whoCan?: undefined;
|
|
3886
4637
|
parentId?: undefined;
|
|
3887
4638
|
labels?: undefined;
|
|
3888
4639
|
fields?: undefined;
|
|
@@ -3912,6 +4663,7 @@ export declare const toolDefinitions: ({
|
|
|
3912
4663
|
relatedNestId?: undefined;
|
|
3913
4664
|
color?: undefined;
|
|
3914
4665
|
icon?: undefined;
|
|
4666
|
+
withUser?: undefined;
|
|
3915
4667
|
fullWorkspaces?: undefined;
|
|
3916
4668
|
context?: undefined;
|
|
3917
4669
|
skip?: undefined;
|
|
@@ -3929,6 +4681,18 @@ export declare const toolDefinitions: ({
|
|
|
3929
4681
|
relation?: undefined;
|
|
3930
4682
|
direction?: undefined;
|
|
3931
4683
|
targetId?: undefined;
|
|
4684
|
+
name?: undefined;
|
|
4685
|
+
config?: undefined;
|
|
4686
|
+
capabilities?: undefined;
|
|
4687
|
+
exposure?: undefined;
|
|
4688
|
+
authStrategy?: undefined;
|
|
4689
|
+
connectorId?: undefined;
|
|
4690
|
+
ownerType?: undefined;
|
|
4691
|
+
ownerId?: undefined;
|
|
4692
|
+
fileId?: undefined;
|
|
4693
|
+
contentType?: undefined;
|
|
4694
|
+
content?: undefined;
|
|
4695
|
+
dataBase64?: undefined;
|
|
3932
4696
|
};
|
|
3933
4697
|
required: string[];
|
|
3934
4698
|
};
|
|
@@ -3970,6 +4734,10 @@ export declare const toolDefinitions: ({
|
|
|
3970
4734
|
_listTitle?: undefined;
|
|
3971
4735
|
fieldsMetaData?: undefined;
|
|
3972
4736
|
hints?: undefined;
|
|
4737
|
+
provenance?: undefined;
|
|
4738
|
+
rights?: undefined;
|
|
4739
|
+
forUser?: undefined;
|
|
4740
|
+
whoCan?: undefined;
|
|
3973
4741
|
parentId?: undefined;
|
|
3974
4742
|
description?: undefined;
|
|
3975
4743
|
labels?: undefined;
|
|
@@ -4000,6 +4768,7 @@ export declare const toolDefinitions: ({
|
|
|
4000
4768
|
relatedNestId?: undefined;
|
|
4001
4769
|
color?: undefined;
|
|
4002
4770
|
icon?: undefined;
|
|
4771
|
+
withUser?: undefined;
|
|
4003
4772
|
fullWorkspaces?: undefined;
|
|
4004
4773
|
context?: undefined;
|
|
4005
4774
|
skip?: undefined;
|
|
@@ -4017,6 +4786,18 @@ export declare const toolDefinitions: ({
|
|
|
4017
4786
|
relation?: undefined;
|
|
4018
4787
|
direction?: undefined;
|
|
4019
4788
|
targetId?: undefined;
|
|
4789
|
+
name?: undefined;
|
|
4790
|
+
config?: undefined;
|
|
4791
|
+
capabilities?: undefined;
|
|
4792
|
+
exposure?: undefined;
|
|
4793
|
+
authStrategy?: undefined;
|
|
4794
|
+
connectorId?: undefined;
|
|
4795
|
+
ownerType?: undefined;
|
|
4796
|
+
ownerId?: undefined;
|
|
4797
|
+
fileId?: undefined;
|
|
4798
|
+
contentType?: undefined;
|
|
4799
|
+
content?: undefined;
|
|
4800
|
+
dataBase64?: undefined;
|
|
4020
4801
|
};
|
|
4021
4802
|
required: string[];
|
|
4022
4803
|
};
|
|
@@ -4070,6 +4851,10 @@ export declare const toolDefinitions: ({
|
|
|
4070
4851
|
_listTitle?: undefined;
|
|
4071
4852
|
fieldsMetaData?: undefined;
|
|
4072
4853
|
hints?: undefined;
|
|
4854
|
+
provenance?: undefined;
|
|
4855
|
+
rights?: undefined;
|
|
4856
|
+
forUser?: undefined;
|
|
4857
|
+
whoCan?: undefined;
|
|
4073
4858
|
parentId?: undefined;
|
|
4074
4859
|
labels?: undefined;
|
|
4075
4860
|
fields?: undefined;
|
|
@@ -4097,6 +4882,7 @@ export declare const toolDefinitions: ({
|
|
|
4097
4882
|
relatedNestId?: undefined;
|
|
4098
4883
|
color?: undefined;
|
|
4099
4884
|
icon?: undefined;
|
|
4885
|
+
withUser?: undefined;
|
|
4100
4886
|
fullWorkspaces?: undefined;
|
|
4101
4887
|
context?: undefined;
|
|
4102
4888
|
skip?: undefined;
|
|
@@ -4114,6 +4900,18 @@ export declare const toolDefinitions: ({
|
|
|
4114
4900
|
relation?: undefined;
|
|
4115
4901
|
direction?: undefined;
|
|
4116
4902
|
targetId?: undefined;
|
|
4903
|
+
name?: undefined;
|
|
4904
|
+
config?: undefined;
|
|
4905
|
+
capabilities?: undefined;
|
|
4906
|
+
exposure?: undefined;
|
|
4907
|
+
authStrategy?: undefined;
|
|
4908
|
+
connectorId?: undefined;
|
|
4909
|
+
ownerType?: undefined;
|
|
4910
|
+
ownerId?: undefined;
|
|
4911
|
+
fileId?: undefined;
|
|
4912
|
+
contentType?: undefined;
|
|
4913
|
+
content?: undefined;
|
|
4914
|
+
dataBase64?: undefined;
|
|
4117
4915
|
};
|
|
4118
4916
|
required: string[];
|
|
4119
4917
|
};
|
|
@@ -4156,6 +4954,10 @@ export declare const toolDefinitions: ({
|
|
|
4156
4954
|
nestId?: undefined;
|
|
4157
4955
|
fieldsMetaData?: undefined;
|
|
4158
4956
|
hints?: undefined;
|
|
4957
|
+
provenance?: undefined;
|
|
4958
|
+
rights?: undefined;
|
|
4959
|
+
forUser?: undefined;
|
|
4960
|
+
whoCan?: undefined;
|
|
4159
4961
|
parentId?: undefined;
|
|
4160
4962
|
description?: undefined;
|
|
4161
4963
|
labels?: undefined;
|
|
@@ -4185,6 +4987,7 @@ export declare const toolDefinitions: ({
|
|
|
4185
4987
|
relatedNestId?: undefined;
|
|
4186
4988
|
color?: undefined;
|
|
4187
4989
|
icon?: undefined;
|
|
4990
|
+
withUser?: undefined;
|
|
4188
4991
|
fullWorkspaces?: undefined;
|
|
4189
4992
|
context?: undefined;
|
|
4190
4993
|
skip?: undefined;
|
|
@@ -4202,6 +5005,18 @@ export declare const toolDefinitions: ({
|
|
|
4202
5005
|
relation?: undefined;
|
|
4203
5006
|
direction?: undefined;
|
|
4204
5007
|
targetId?: undefined;
|
|
5008
|
+
name?: undefined;
|
|
5009
|
+
config?: undefined;
|
|
5010
|
+
capabilities?: undefined;
|
|
5011
|
+
exposure?: undefined;
|
|
5012
|
+
authStrategy?: undefined;
|
|
5013
|
+
connectorId?: undefined;
|
|
5014
|
+
ownerType?: undefined;
|
|
5015
|
+
ownerId?: undefined;
|
|
5016
|
+
fileId?: undefined;
|
|
5017
|
+
contentType?: undefined;
|
|
5018
|
+
content?: undefined;
|
|
5019
|
+
dataBase64?: undefined;
|
|
4205
5020
|
};
|
|
4206
5021
|
required: string[];
|
|
4207
5022
|
};
|
|
@@ -4249,6 +5064,10 @@ export declare const toolDefinitions: ({
|
|
|
4249
5064
|
_listTitle?: undefined;
|
|
4250
5065
|
fieldsMetaData?: undefined;
|
|
4251
5066
|
hints?: undefined;
|
|
5067
|
+
provenance?: undefined;
|
|
5068
|
+
rights?: undefined;
|
|
5069
|
+
forUser?: undefined;
|
|
5070
|
+
whoCan?: undefined;
|
|
4252
5071
|
parentId?: undefined;
|
|
4253
5072
|
description?: undefined;
|
|
4254
5073
|
labels?: undefined;
|
|
@@ -4277,6 +5096,7 @@ export declare const toolDefinitions: ({
|
|
|
4277
5096
|
nestIds?: undefined;
|
|
4278
5097
|
color?: undefined;
|
|
4279
5098
|
icon?: undefined;
|
|
5099
|
+
withUser?: undefined;
|
|
4280
5100
|
fullWorkspaces?: undefined;
|
|
4281
5101
|
context?: undefined;
|
|
4282
5102
|
skip?: undefined;
|
|
@@ -4294,6 +5114,18 @@ export declare const toolDefinitions: ({
|
|
|
4294
5114
|
relation?: undefined;
|
|
4295
5115
|
direction?: undefined;
|
|
4296
5116
|
targetId?: undefined;
|
|
5117
|
+
name?: undefined;
|
|
5118
|
+
config?: undefined;
|
|
5119
|
+
capabilities?: undefined;
|
|
5120
|
+
exposure?: undefined;
|
|
5121
|
+
authStrategy?: undefined;
|
|
5122
|
+
connectorId?: undefined;
|
|
5123
|
+
ownerType?: undefined;
|
|
5124
|
+
ownerId?: undefined;
|
|
5125
|
+
fileId?: undefined;
|
|
5126
|
+
contentType?: undefined;
|
|
5127
|
+
content?: undefined;
|
|
5128
|
+
dataBase64?: undefined;
|
|
4297
5129
|
};
|
|
4298
5130
|
required: string[];
|
|
4299
5131
|
};
|
|
@@ -4344,6 +5176,10 @@ export declare const toolDefinitions: ({
|
|
|
4344
5176
|
nestId?: undefined;
|
|
4345
5177
|
fieldsMetaData?: undefined;
|
|
4346
5178
|
hints?: undefined;
|
|
5179
|
+
provenance?: undefined;
|
|
5180
|
+
rights?: undefined;
|
|
5181
|
+
forUser?: undefined;
|
|
5182
|
+
whoCan?: undefined;
|
|
4347
5183
|
parentId?: undefined;
|
|
4348
5184
|
labels?: undefined;
|
|
4349
5185
|
fields?: undefined;
|
|
@@ -4371,6 +5207,7 @@ export declare const toolDefinitions: ({
|
|
|
4371
5207
|
nestIds?: undefined;
|
|
4372
5208
|
position?: undefined;
|
|
4373
5209
|
relatedNestId?: undefined;
|
|
5210
|
+
withUser?: undefined;
|
|
4374
5211
|
fullWorkspaces?: undefined;
|
|
4375
5212
|
context?: undefined;
|
|
4376
5213
|
skip?: undefined;
|
|
@@ -4388,6 +5225,18 @@ export declare const toolDefinitions: ({
|
|
|
4388
5225
|
relation?: undefined;
|
|
4389
5226
|
direction?: undefined;
|
|
4390
5227
|
targetId?: undefined;
|
|
5228
|
+
name?: undefined;
|
|
5229
|
+
config?: undefined;
|
|
5230
|
+
capabilities?: undefined;
|
|
5231
|
+
exposure?: undefined;
|
|
5232
|
+
authStrategy?: undefined;
|
|
5233
|
+
connectorId?: undefined;
|
|
5234
|
+
ownerType?: undefined;
|
|
5235
|
+
ownerId?: undefined;
|
|
5236
|
+
fileId?: undefined;
|
|
5237
|
+
contentType?: undefined;
|
|
5238
|
+
content?: undefined;
|
|
5239
|
+
dataBase64?: undefined;
|
|
4391
5240
|
};
|
|
4392
5241
|
required: string[];
|
|
4393
5242
|
};
|
|
@@ -4433,6 +5282,10 @@ export declare const toolDefinitions: ({
|
|
|
4433
5282
|
nestId?: undefined;
|
|
4434
5283
|
fieldsMetaData?: undefined;
|
|
4435
5284
|
hints?: undefined;
|
|
5285
|
+
provenance?: undefined;
|
|
5286
|
+
rights?: undefined;
|
|
5287
|
+
forUser?: undefined;
|
|
5288
|
+
whoCan?: undefined;
|
|
4436
5289
|
parentId?: undefined;
|
|
4437
5290
|
description?: undefined;
|
|
4438
5291
|
labels?: undefined;
|
|
@@ -4462,6 +5315,7 @@ export declare const toolDefinitions: ({
|
|
|
4462
5315
|
relatedNestId?: undefined;
|
|
4463
5316
|
color?: undefined;
|
|
4464
5317
|
icon?: undefined;
|
|
5318
|
+
withUser?: undefined;
|
|
4465
5319
|
fullWorkspaces?: undefined;
|
|
4466
5320
|
context?: undefined;
|
|
4467
5321
|
skip?: undefined;
|
|
@@ -4479,6 +5333,18 @@ export declare const toolDefinitions: ({
|
|
|
4479
5333
|
relation?: undefined;
|
|
4480
5334
|
direction?: undefined;
|
|
4481
5335
|
targetId?: undefined;
|
|
5336
|
+
name?: undefined;
|
|
5337
|
+
config?: undefined;
|
|
5338
|
+
capabilities?: undefined;
|
|
5339
|
+
exposure?: undefined;
|
|
5340
|
+
authStrategy?: undefined;
|
|
5341
|
+
connectorId?: undefined;
|
|
5342
|
+
ownerType?: undefined;
|
|
5343
|
+
ownerId?: undefined;
|
|
5344
|
+
fileId?: undefined;
|
|
5345
|
+
contentType?: undefined;
|
|
5346
|
+
content?: undefined;
|
|
5347
|
+
dataBase64?: undefined;
|
|
4482
5348
|
};
|
|
4483
5349
|
required: string[];
|
|
4484
5350
|
};
|
|
@@ -4517,6 +5383,10 @@ export declare const toolDefinitions: ({
|
|
|
4517
5383
|
nestId?: undefined;
|
|
4518
5384
|
fieldsMetaData?: undefined;
|
|
4519
5385
|
hints?: undefined;
|
|
5386
|
+
provenance?: undefined;
|
|
5387
|
+
rights?: undefined;
|
|
5388
|
+
forUser?: undefined;
|
|
5389
|
+
whoCan?: undefined;
|
|
4520
5390
|
parentId?: undefined;
|
|
4521
5391
|
description?: undefined;
|
|
4522
5392
|
labels?: undefined;
|
|
@@ -4547,6 +5417,7 @@ export declare const toolDefinitions: ({
|
|
|
4547
5417
|
relatedNestId?: undefined;
|
|
4548
5418
|
color?: undefined;
|
|
4549
5419
|
icon?: undefined;
|
|
5420
|
+
withUser?: undefined;
|
|
4550
5421
|
fullWorkspaces?: undefined;
|
|
4551
5422
|
context?: undefined;
|
|
4552
5423
|
skip?: undefined;
|
|
@@ -4564,6 +5435,18 @@ export declare const toolDefinitions: ({
|
|
|
4564
5435
|
relation?: undefined;
|
|
4565
5436
|
direction?: undefined;
|
|
4566
5437
|
targetId?: undefined;
|
|
5438
|
+
name?: undefined;
|
|
5439
|
+
config?: undefined;
|
|
5440
|
+
capabilities?: undefined;
|
|
5441
|
+
exposure?: undefined;
|
|
5442
|
+
authStrategy?: undefined;
|
|
5443
|
+
connectorId?: undefined;
|
|
5444
|
+
ownerType?: undefined;
|
|
5445
|
+
ownerId?: undefined;
|
|
5446
|
+
fileId?: undefined;
|
|
5447
|
+
contentType?: undefined;
|
|
5448
|
+
content?: undefined;
|
|
5449
|
+
dataBase64?: undefined;
|
|
4567
5450
|
};
|
|
4568
5451
|
required?: undefined;
|
|
4569
5452
|
};
|
|
@@ -4582,11 +5465,11 @@ export declare const toolDefinitions: ({
|
|
|
4582
5465
|
inputSchema: {
|
|
4583
5466
|
type: "object";
|
|
4584
5467
|
properties: {
|
|
4585
|
-
|
|
5468
|
+
limit: {
|
|
4586
5469
|
type: string;
|
|
4587
5470
|
description: string;
|
|
4588
5471
|
};
|
|
4589
|
-
|
|
5472
|
+
withUser: {
|
|
4590
5473
|
type: string;
|
|
4591
5474
|
description: string;
|
|
4592
5475
|
};
|
|
@@ -4596,7 +5479,6 @@ export declare const toolDefinitions: ({
|
|
|
4596
5479
|
imageIndexes?: undefined;
|
|
4597
5480
|
maxImages?: undefined;
|
|
4598
5481
|
sort?: undefined;
|
|
4599
|
-
limit?: undefined;
|
|
4600
5482
|
page?: undefined;
|
|
4601
5483
|
stripDescription?: undefined;
|
|
4602
5484
|
workspaceId?: undefined;
|
|
@@ -4609,8 +5491,13 @@ export declare const toolDefinitions: ({
|
|
|
4609
5491
|
layout?: undefined;
|
|
4610
5492
|
query?: undefined;
|
|
4611
5493
|
_listTitle?: undefined;
|
|
5494
|
+
nestId?: undefined;
|
|
4612
5495
|
fieldsMetaData?: undefined;
|
|
4613
5496
|
hints?: undefined;
|
|
5497
|
+
provenance?: undefined;
|
|
5498
|
+
rights?: undefined;
|
|
5499
|
+
forUser?: undefined;
|
|
5500
|
+
whoCan?: undefined;
|
|
4614
5501
|
parentId?: undefined;
|
|
4615
5502
|
description?: undefined;
|
|
4616
5503
|
labels?: undefined;
|
|
@@ -4632,6 +5519,7 @@ export declare const toolDefinitions: ({
|
|
|
4632
5519
|
username?: undefined;
|
|
4633
5520
|
fullName?: undefined;
|
|
4634
5521
|
language?: undefined;
|
|
5522
|
+
labelId?: undefined;
|
|
4635
5523
|
from?: undefined;
|
|
4636
5524
|
to?: undefined;
|
|
4637
5525
|
completedAfter?: undefined;
|
|
@@ -4657,8 +5545,20 @@ export declare const toolDefinitions: ({
|
|
|
4657
5545
|
relation?: undefined;
|
|
4658
5546
|
direction?: undefined;
|
|
4659
5547
|
targetId?: undefined;
|
|
5548
|
+
name?: undefined;
|
|
5549
|
+
config?: undefined;
|
|
5550
|
+
capabilities?: undefined;
|
|
5551
|
+
exposure?: undefined;
|
|
5552
|
+
authStrategy?: undefined;
|
|
5553
|
+
connectorId?: undefined;
|
|
5554
|
+
ownerType?: undefined;
|
|
5555
|
+
ownerId?: undefined;
|
|
5556
|
+
fileId?: undefined;
|
|
5557
|
+
contentType?: undefined;
|
|
5558
|
+
content?: undefined;
|
|
5559
|
+
dataBase64?: undefined;
|
|
4660
5560
|
};
|
|
4661
|
-
required
|
|
5561
|
+
required?: undefined;
|
|
4662
5562
|
};
|
|
4663
5563
|
} | {
|
|
4664
5564
|
annotations: {
|
|
@@ -4670,7 +5570,217 @@ export declare const toolDefinitions: ({
|
|
|
4670
5570
|
inputSchema: {
|
|
4671
5571
|
type: "object";
|
|
4672
5572
|
properties: {
|
|
4673
|
-
|
|
5573
|
+
userId: {
|
|
5574
|
+
type: string;
|
|
5575
|
+
description: string;
|
|
5576
|
+
};
|
|
5577
|
+
limit: {
|
|
5578
|
+
type: string;
|
|
5579
|
+
description: string;
|
|
5580
|
+
};
|
|
5581
|
+
topic?: undefined;
|
|
5582
|
+
search?: undefined;
|
|
5583
|
+
includeImages?: undefined;
|
|
5584
|
+
imageIndexes?: undefined;
|
|
5585
|
+
maxImages?: undefined;
|
|
5586
|
+
sort?: undefined;
|
|
5587
|
+
page?: undefined;
|
|
5588
|
+
stripDescription?: undefined;
|
|
5589
|
+
workspaceId?: undefined;
|
|
5590
|
+
title?: undefined;
|
|
5591
|
+
purpose?: undefined;
|
|
5592
|
+
type?: undefined;
|
|
5593
|
+
governance?: undefined;
|
|
5594
|
+
plan?: undefined;
|
|
5595
|
+
apps?: undefined;
|
|
5596
|
+
layout?: undefined;
|
|
5597
|
+
query?: undefined;
|
|
5598
|
+
_listTitle?: undefined;
|
|
5599
|
+
nestId?: undefined;
|
|
5600
|
+
fieldsMetaData?: undefined;
|
|
5601
|
+
hints?: undefined;
|
|
5602
|
+
provenance?: undefined;
|
|
5603
|
+
rights?: undefined;
|
|
5604
|
+
forUser?: undefined;
|
|
5605
|
+
whoCan?: undefined;
|
|
5606
|
+
parentId?: undefined;
|
|
5607
|
+
description?: undefined;
|
|
5608
|
+
labels?: undefined;
|
|
5609
|
+
fields?: undefined;
|
|
5610
|
+
users?: undefined;
|
|
5611
|
+
accountabilities?: undefined;
|
|
5612
|
+
domains?: undefined;
|
|
5613
|
+
data?: undefined;
|
|
5614
|
+
due?: undefined;
|
|
5615
|
+
completed?: undefined;
|
|
5616
|
+
body?: undefined;
|
|
5617
|
+
commentId?: undefined;
|
|
5618
|
+
circleId?: undefined;
|
|
5619
|
+
includeSubCircles?: undefined;
|
|
5620
|
+
endDate?: undefined;
|
|
5621
|
+
metricId?: undefined;
|
|
5622
|
+
depth?: undefined;
|
|
5623
|
+
username?: undefined;
|
|
5624
|
+
fullName?: undefined;
|
|
5625
|
+
language?: undefined;
|
|
5626
|
+
labelId?: undefined;
|
|
5627
|
+
from?: undefined;
|
|
5628
|
+
to?: undefined;
|
|
5629
|
+
completedAfter?: undefined;
|
|
5630
|
+
nestIds?: undefined;
|
|
5631
|
+
position?: undefined;
|
|
5632
|
+
relatedNestId?: undefined;
|
|
5633
|
+
color?: undefined;
|
|
5634
|
+
icon?: undefined;
|
|
5635
|
+
withUser?: undefined;
|
|
5636
|
+
fullWorkspaces?: undefined;
|
|
5637
|
+
context?: undefined;
|
|
5638
|
+
skip?: undefined;
|
|
5639
|
+
showRead?: undefined;
|
|
5640
|
+
group?: undefined;
|
|
5641
|
+
feeling?: undefined;
|
|
5642
|
+
needs?: undefined;
|
|
5643
|
+
tensionId?: undefined;
|
|
5644
|
+
_id?: undefined;
|
|
5645
|
+
roleId?: undefined;
|
|
5646
|
+
removeNest?: undefined;
|
|
5647
|
+
partId?: undefined;
|
|
5648
|
+
childId?: undefined;
|
|
5649
|
+
status?: undefined;
|
|
5650
|
+
relation?: undefined;
|
|
5651
|
+
direction?: undefined;
|
|
5652
|
+
targetId?: undefined;
|
|
5653
|
+
name?: undefined;
|
|
5654
|
+
config?: undefined;
|
|
5655
|
+
capabilities?: undefined;
|
|
5656
|
+
exposure?: undefined;
|
|
5657
|
+
authStrategy?: undefined;
|
|
5658
|
+
connectorId?: undefined;
|
|
5659
|
+
ownerType?: undefined;
|
|
5660
|
+
ownerId?: undefined;
|
|
5661
|
+
fileId?: undefined;
|
|
5662
|
+
contentType?: undefined;
|
|
5663
|
+
content?: undefined;
|
|
5664
|
+
dataBase64?: undefined;
|
|
5665
|
+
};
|
|
5666
|
+
required: string[];
|
|
5667
|
+
};
|
|
5668
|
+
} | {
|
|
5669
|
+
annotations: {
|
|
5670
|
+
readOnlyHint: boolean;
|
|
5671
|
+
destructiveHint: boolean;
|
|
5672
|
+
};
|
|
5673
|
+
name: string;
|
|
5674
|
+
description: string;
|
|
5675
|
+
inputSchema: {
|
|
5676
|
+
type: "object";
|
|
5677
|
+
properties: {
|
|
5678
|
+
nestId: {
|
|
5679
|
+
type: string;
|
|
5680
|
+
description: string;
|
|
5681
|
+
};
|
|
5682
|
+
labelId: {
|
|
5683
|
+
type: string;
|
|
5684
|
+
description: string;
|
|
5685
|
+
};
|
|
5686
|
+
topic?: undefined;
|
|
5687
|
+
search?: undefined;
|
|
5688
|
+
includeImages?: undefined;
|
|
5689
|
+
imageIndexes?: undefined;
|
|
5690
|
+
maxImages?: undefined;
|
|
5691
|
+
sort?: undefined;
|
|
5692
|
+
limit?: undefined;
|
|
5693
|
+
page?: undefined;
|
|
5694
|
+
stripDescription?: undefined;
|
|
5695
|
+
workspaceId?: undefined;
|
|
5696
|
+
title?: undefined;
|
|
5697
|
+
purpose?: undefined;
|
|
5698
|
+
type?: undefined;
|
|
5699
|
+
governance?: undefined;
|
|
5700
|
+
plan?: undefined;
|
|
5701
|
+
apps?: undefined;
|
|
5702
|
+
layout?: undefined;
|
|
5703
|
+
query?: undefined;
|
|
5704
|
+
_listTitle?: undefined;
|
|
5705
|
+
fieldsMetaData?: undefined;
|
|
5706
|
+
hints?: undefined;
|
|
5707
|
+
provenance?: undefined;
|
|
5708
|
+
rights?: undefined;
|
|
5709
|
+
forUser?: undefined;
|
|
5710
|
+
whoCan?: undefined;
|
|
5711
|
+
parentId?: undefined;
|
|
5712
|
+
description?: undefined;
|
|
5713
|
+
labels?: undefined;
|
|
5714
|
+
fields?: undefined;
|
|
5715
|
+
users?: undefined;
|
|
5716
|
+
accountabilities?: undefined;
|
|
5717
|
+
domains?: undefined;
|
|
5718
|
+
data?: undefined;
|
|
5719
|
+
due?: undefined;
|
|
5720
|
+
completed?: undefined;
|
|
5721
|
+
body?: undefined;
|
|
5722
|
+
commentId?: undefined;
|
|
5723
|
+
circleId?: undefined;
|
|
5724
|
+
includeSubCircles?: undefined;
|
|
5725
|
+
userId?: undefined;
|
|
5726
|
+
endDate?: undefined;
|
|
5727
|
+
metricId?: undefined;
|
|
5728
|
+
depth?: undefined;
|
|
5729
|
+
username?: undefined;
|
|
5730
|
+
fullName?: undefined;
|
|
5731
|
+
language?: undefined;
|
|
5732
|
+
from?: undefined;
|
|
5733
|
+
to?: undefined;
|
|
5734
|
+
completedAfter?: undefined;
|
|
5735
|
+
nestIds?: undefined;
|
|
5736
|
+
position?: undefined;
|
|
5737
|
+
relatedNestId?: undefined;
|
|
5738
|
+
color?: undefined;
|
|
5739
|
+
icon?: undefined;
|
|
5740
|
+
withUser?: undefined;
|
|
5741
|
+
fullWorkspaces?: undefined;
|
|
5742
|
+
context?: undefined;
|
|
5743
|
+
skip?: undefined;
|
|
5744
|
+
showRead?: undefined;
|
|
5745
|
+
group?: undefined;
|
|
5746
|
+
feeling?: undefined;
|
|
5747
|
+
needs?: undefined;
|
|
5748
|
+
tensionId?: undefined;
|
|
5749
|
+
_id?: undefined;
|
|
5750
|
+
roleId?: undefined;
|
|
5751
|
+
removeNest?: undefined;
|
|
5752
|
+
partId?: undefined;
|
|
5753
|
+
childId?: undefined;
|
|
5754
|
+
status?: undefined;
|
|
5755
|
+
relation?: undefined;
|
|
5756
|
+
direction?: undefined;
|
|
5757
|
+
targetId?: undefined;
|
|
5758
|
+
name?: undefined;
|
|
5759
|
+
config?: undefined;
|
|
5760
|
+
capabilities?: undefined;
|
|
5761
|
+
exposure?: undefined;
|
|
5762
|
+
authStrategy?: undefined;
|
|
5763
|
+
connectorId?: undefined;
|
|
5764
|
+
ownerType?: undefined;
|
|
5765
|
+
ownerId?: undefined;
|
|
5766
|
+
fileId?: undefined;
|
|
5767
|
+
contentType?: undefined;
|
|
5768
|
+
content?: undefined;
|
|
5769
|
+
dataBase64?: undefined;
|
|
5770
|
+
};
|
|
5771
|
+
required: string[];
|
|
5772
|
+
};
|
|
5773
|
+
} | {
|
|
5774
|
+
annotations: {
|
|
5775
|
+
readOnlyHint: boolean;
|
|
5776
|
+
destructiveHint: boolean;
|
|
5777
|
+
};
|
|
5778
|
+
name: string;
|
|
5779
|
+
description: string;
|
|
5780
|
+
inputSchema: {
|
|
5781
|
+
type: "object";
|
|
5782
|
+
properties: {
|
|
5783
|
+
fullWorkspaces: {
|
|
4674
5784
|
type: string;
|
|
4675
5785
|
description: string;
|
|
4676
5786
|
};
|
|
@@ -4696,6 +5806,10 @@ export declare const toolDefinitions: ({
|
|
|
4696
5806
|
nestId?: undefined;
|
|
4697
5807
|
fieldsMetaData?: undefined;
|
|
4698
5808
|
hints?: undefined;
|
|
5809
|
+
provenance?: undefined;
|
|
5810
|
+
rights?: undefined;
|
|
5811
|
+
forUser?: undefined;
|
|
5812
|
+
whoCan?: undefined;
|
|
4699
5813
|
parentId?: undefined;
|
|
4700
5814
|
description?: undefined;
|
|
4701
5815
|
labels?: undefined;
|
|
@@ -4726,6 +5840,7 @@ export declare const toolDefinitions: ({
|
|
|
4726
5840
|
relatedNestId?: undefined;
|
|
4727
5841
|
color?: undefined;
|
|
4728
5842
|
icon?: undefined;
|
|
5843
|
+
withUser?: undefined;
|
|
4729
5844
|
context?: undefined;
|
|
4730
5845
|
skip?: undefined;
|
|
4731
5846
|
showRead?: undefined;
|
|
@@ -4742,6 +5857,18 @@ export declare const toolDefinitions: ({
|
|
|
4742
5857
|
relation?: undefined;
|
|
4743
5858
|
direction?: undefined;
|
|
4744
5859
|
targetId?: undefined;
|
|
5860
|
+
name?: undefined;
|
|
5861
|
+
config?: undefined;
|
|
5862
|
+
capabilities?: undefined;
|
|
5863
|
+
exposure?: undefined;
|
|
5864
|
+
authStrategy?: undefined;
|
|
5865
|
+
connectorId?: undefined;
|
|
5866
|
+
ownerType?: undefined;
|
|
5867
|
+
ownerId?: undefined;
|
|
5868
|
+
fileId?: undefined;
|
|
5869
|
+
contentType?: undefined;
|
|
5870
|
+
content?: undefined;
|
|
5871
|
+
dataBase64?: undefined;
|
|
4745
5872
|
};
|
|
4746
5873
|
required?: undefined;
|
|
4747
5874
|
};
|
|
@@ -4781,6 +5908,10 @@ export declare const toolDefinitions: ({
|
|
|
4781
5908
|
nestId?: undefined;
|
|
4782
5909
|
fieldsMetaData?: undefined;
|
|
4783
5910
|
hints?: undefined;
|
|
5911
|
+
provenance?: undefined;
|
|
5912
|
+
rights?: undefined;
|
|
5913
|
+
forUser?: undefined;
|
|
5914
|
+
whoCan?: undefined;
|
|
4784
5915
|
parentId?: undefined;
|
|
4785
5916
|
description?: undefined;
|
|
4786
5917
|
labels?: undefined;
|
|
@@ -4811,6 +5942,7 @@ export declare const toolDefinitions: ({
|
|
|
4811
5942
|
relatedNestId?: undefined;
|
|
4812
5943
|
color?: undefined;
|
|
4813
5944
|
icon?: undefined;
|
|
5945
|
+
withUser?: undefined;
|
|
4814
5946
|
fullWorkspaces?: undefined;
|
|
4815
5947
|
skip?: undefined;
|
|
4816
5948
|
showRead?: undefined;
|
|
@@ -4827,6 +5959,18 @@ export declare const toolDefinitions: ({
|
|
|
4827
5959
|
relation?: undefined;
|
|
4828
5960
|
direction?: undefined;
|
|
4829
5961
|
targetId?: undefined;
|
|
5962
|
+
name?: undefined;
|
|
5963
|
+
config?: undefined;
|
|
5964
|
+
capabilities?: undefined;
|
|
5965
|
+
exposure?: undefined;
|
|
5966
|
+
authStrategy?: undefined;
|
|
5967
|
+
connectorId?: undefined;
|
|
5968
|
+
ownerType?: undefined;
|
|
5969
|
+
ownerId?: undefined;
|
|
5970
|
+
fileId?: undefined;
|
|
5971
|
+
contentType?: undefined;
|
|
5972
|
+
content?: undefined;
|
|
5973
|
+
dataBase64?: undefined;
|
|
4830
5974
|
};
|
|
4831
5975
|
required?: undefined;
|
|
4832
5976
|
};
|
|
@@ -4881,6 +6025,10 @@ export declare const toolDefinitions: ({
|
|
|
4881
6025
|
nestId?: undefined;
|
|
4882
6026
|
fieldsMetaData?: undefined;
|
|
4883
6027
|
hints?: undefined;
|
|
6028
|
+
provenance?: undefined;
|
|
6029
|
+
rights?: undefined;
|
|
6030
|
+
forUser?: undefined;
|
|
6031
|
+
whoCan?: undefined;
|
|
4884
6032
|
parentId?: undefined;
|
|
4885
6033
|
description?: undefined;
|
|
4886
6034
|
labels?: undefined;
|
|
@@ -4911,6 +6059,7 @@ export declare const toolDefinitions: ({
|
|
|
4911
6059
|
relatedNestId?: undefined;
|
|
4912
6060
|
color?: undefined;
|
|
4913
6061
|
icon?: undefined;
|
|
6062
|
+
withUser?: undefined;
|
|
4914
6063
|
fullWorkspaces?: undefined;
|
|
4915
6064
|
context?: undefined;
|
|
4916
6065
|
feeling?: undefined;
|
|
@@ -4925,6 +6074,18 @@ export declare const toolDefinitions: ({
|
|
|
4925
6074
|
relation?: undefined;
|
|
4926
6075
|
direction?: undefined;
|
|
4927
6076
|
targetId?: undefined;
|
|
6077
|
+
name?: undefined;
|
|
6078
|
+
config?: undefined;
|
|
6079
|
+
capabilities?: undefined;
|
|
6080
|
+
exposure?: undefined;
|
|
6081
|
+
authStrategy?: undefined;
|
|
6082
|
+
connectorId?: undefined;
|
|
6083
|
+
ownerType?: undefined;
|
|
6084
|
+
ownerId?: undefined;
|
|
6085
|
+
fileId?: undefined;
|
|
6086
|
+
contentType?: undefined;
|
|
6087
|
+
content?: undefined;
|
|
6088
|
+
dataBase64?: undefined;
|
|
4928
6089
|
};
|
|
4929
6090
|
required?: undefined;
|
|
4930
6091
|
};
|
|
@@ -4978,6 +6139,10 @@ export declare const toolDefinitions: ({
|
|
|
4978
6139
|
_listTitle?: undefined;
|
|
4979
6140
|
fieldsMetaData?: undefined;
|
|
4980
6141
|
hints?: undefined;
|
|
6142
|
+
provenance?: undefined;
|
|
6143
|
+
rights?: undefined;
|
|
6144
|
+
forUser?: undefined;
|
|
6145
|
+
whoCan?: undefined;
|
|
4981
6146
|
parentId?: undefined;
|
|
4982
6147
|
labels?: undefined;
|
|
4983
6148
|
fields?: undefined;
|
|
@@ -5007,6 +6172,7 @@ export declare const toolDefinitions: ({
|
|
|
5007
6172
|
relatedNestId?: undefined;
|
|
5008
6173
|
color?: undefined;
|
|
5009
6174
|
icon?: undefined;
|
|
6175
|
+
withUser?: undefined;
|
|
5010
6176
|
fullWorkspaces?: undefined;
|
|
5011
6177
|
context?: undefined;
|
|
5012
6178
|
skip?: undefined;
|
|
@@ -5022,6 +6188,18 @@ export declare const toolDefinitions: ({
|
|
|
5022
6188
|
relation?: undefined;
|
|
5023
6189
|
direction?: undefined;
|
|
5024
6190
|
targetId?: undefined;
|
|
6191
|
+
name?: undefined;
|
|
6192
|
+
config?: undefined;
|
|
6193
|
+
capabilities?: undefined;
|
|
6194
|
+
exposure?: undefined;
|
|
6195
|
+
authStrategy?: undefined;
|
|
6196
|
+
connectorId?: undefined;
|
|
6197
|
+
ownerType?: undefined;
|
|
6198
|
+
ownerId?: undefined;
|
|
6199
|
+
fileId?: undefined;
|
|
6200
|
+
contentType?: undefined;
|
|
6201
|
+
content?: undefined;
|
|
6202
|
+
dataBase64?: undefined;
|
|
5025
6203
|
};
|
|
5026
6204
|
required: string[];
|
|
5027
6205
|
};
|
|
@@ -5064,6 +6242,10 @@ export declare const toolDefinitions: ({
|
|
|
5064
6242
|
_listTitle?: undefined;
|
|
5065
6243
|
fieldsMetaData?: undefined;
|
|
5066
6244
|
hints?: undefined;
|
|
6245
|
+
provenance?: undefined;
|
|
6246
|
+
rights?: undefined;
|
|
6247
|
+
forUser?: undefined;
|
|
6248
|
+
whoCan?: undefined;
|
|
5067
6249
|
parentId?: undefined;
|
|
5068
6250
|
description?: undefined;
|
|
5069
6251
|
labels?: undefined;
|
|
@@ -5094,6 +6276,7 @@ export declare const toolDefinitions: ({
|
|
|
5094
6276
|
relatedNestId?: undefined;
|
|
5095
6277
|
color?: undefined;
|
|
5096
6278
|
icon?: undefined;
|
|
6279
|
+
withUser?: undefined;
|
|
5097
6280
|
fullWorkspaces?: undefined;
|
|
5098
6281
|
context?: undefined;
|
|
5099
6282
|
skip?: undefined;
|
|
@@ -5110,6 +6293,18 @@ export declare const toolDefinitions: ({
|
|
|
5110
6293
|
relation?: undefined;
|
|
5111
6294
|
direction?: undefined;
|
|
5112
6295
|
targetId?: undefined;
|
|
6296
|
+
name?: undefined;
|
|
6297
|
+
config?: undefined;
|
|
6298
|
+
capabilities?: undefined;
|
|
6299
|
+
exposure?: undefined;
|
|
6300
|
+
authStrategy?: undefined;
|
|
6301
|
+
connectorId?: undefined;
|
|
6302
|
+
ownerType?: undefined;
|
|
6303
|
+
ownerId?: undefined;
|
|
6304
|
+
fileId?: undefined;
|
|
6305
|
+
contentType?: undefined;
|
|
6306
|
+
content?: undefined;
|
|
6307
|
+
dataBase64?: undefined;
|
|
5113
6308
|
};
|
|
5114
6309
|
required: string[];
|
|
5115
6310
|
};
|
|
@@ -5160,6 +6355,10 @@ export declare const toolDefinitions: ({
|
|
|
5160
6355
|
_listTitle?: undefined;
|
|
5161
6356
|
fieldsMetaData?: undefined;
|
|
5162
6357
|
hints?: undefined;
|
|
6358
|
+
provenance?: undefined;
|
|
6359
|
+
rights?: undefined;
|
|
6360
|
+
forUser?: undefined;
|
|
6361
|
+
whoCan?: undefined;
|
|
5163
6362
|
parentId?: undefined;
|
|
5164
6363
|
description?: undefined;
|
|
5165
6364
|
labels?: undefined;
|
|
@@ -5190,6 +6389,7 @@ export declare const toolDefinitions: ({
|
|
|
5190
6389
|
relatedNestId?: undefined;
|
|
5191
6390
|
color?: undefined;
|
|
5192
6391
|
icon?: undefined;
|
|
6392
|
+
withUser?: undefined;
|
|
5193
6393
|
fullWorkspaces?: undefined;
|
|
5194
6394
|
context?: undefined;
|
|
5195
6395
|
skip?: undefined;
|
|
@@ -5207,6 +6407,18 @@ export declare const toolDefinitions: ({
|
|
|
5207
6407
|
relation?: undefined;
|
|
5208
6408
|
direction?: undefined;
|
|
5209
6409
|
targetId?: undefined;
|
|
6410
|
+
name?: undefined;
|
|
6411
|
+
config?: undefined;
|
|
6412
|
+
capabilities?: undefined;
|
|
6413
|
+
exposure?: undefined;
|
|
6414
|
+
authStrategy?: undefined;
|
|
6415
|
+
connectorId?: undefined;
|
|
6416
|
+
ownerType?: undefined;
|
|
6417
|
+
ownerId?: undefined;
|
|
6418
|
+
fileId?: undefined;
|
|
6419
|
+
contentType?: undefined;
|
|
6420
|
+
content?: undefined;
|
|
6421
|
+
dataBase64?: undefined;
|
|
5210
6422
|
};
|
|
5211
6423
|
required: string[];
|
|
5212
6424
|
};
|
|
@@ -5264,6 +6476,10 @@ export declare const toolDefinitions: ({
|
|
|
5264
6476
|
_listTitle?: undefined;
|
|
5265
6477
|
fieldsMetaData?: undefined;
|
|
5266
6478
|
hints?: undefined;
|
|
6479
|
+
provenance?: undefined;
|
|
6480
|
+
rights?: undefined;
|
|
6481
|
+
forUser?: undefined;
|
|
6482
|
+
whoCan?: undefined;
|
|
5267
6483
|
parentId?: undefined;
|
|
5268
6484
|
labels?: undefined;
|
|
5269
6485
|
fields?: undefined;
|
|
@@ -5293,6 +6509,7 @@ export declare const toolDefinitions: ({
|
|
|
5293
6509
|
relatedNestId?: undefined;
|
|
5294
6510
|
color?: undefined;
|
|
5295
6511
|
icon?: undefined;
|
|
6512
|
+
withUser?: undefined;
|
|
5296
6513
|
fullWorkspaces?: undefined;
|
|
5297
6514
|
context?: undefined;
|
|
5298
6515
|
skip?: undefined;
|
|
@@ -5307,6 +6524,18 @@ export declare const toolDefinitions: ({
|
|
|
5307
6524
|
relation?: undefined;
|
|
5308
6525
|
direction?: undefined;
|
|
5309
6526
|
targetId?: undefined;
|
|
6527
|
+
name?: undefined;
|
|
6528
|
+
config?: undefined;
|
|
6529
|
+
capabilities?: undefined;
|
|
6530
|
+
exposure?: undefined;
|
|
6531
|
+
authStrategy?: undefined;
|
|
6532
|
+
connectorId?: undefined;
|
|
6533
|
+
ownerType?: undefined;
|
|
6534
|
+
ownerId?: undefined;
|
|
6535
|
+
fileId?: undefined;
|
|
6536
|
+
contentType?: undefined;
|
|
6537
|
+
content?: undefined;
|
|
6538
|
+
dataBase64?: undefined;
|
|
5310
6539
|
};
|
|
5311
6540
|
required: string[];
|
|
5312
6541
|
};
|
|
@@ -5407,6 +6636,10 @@ export declare const toolDefinitions: ({
|
|
|
5407
6636
|
_listTitle?: undefined;
|
|
5408
6637
|
fieldsMetaData?: undefined;
|
|
5409
6638
|
hints?: undefined;
|
|
6639
|
+
provenance?: undefined;
|
|
6640
|
+
rights?: undefined;
|
|
6641
|
+
forUser?: undefined;
|
|
6642
|
+
whoCan?: undefined;
|
|
5410
6643
|
fields?: undefined;
|
|
5411
6644
|
data?: undefined;
|
|
5412
6645
|
completed?: undefined;
|
|
@@ -5430,6 +6663,7 @@ export declare const toolDefinitions: ({
|
|
|
5430
6663
|
relatedNestId?: undefined;
|
|
5431
6664
|
color?: undefined;
|
|
5432
6665
|
icon?: undefined;
|
|
6666
|
+
withUser?: undefined;
|
|
5433
6667
|
fullWorkspaces?: undefined;
|
|
5434
6668
|
context?: undefined;
|
|
5435
6669
|
skip?: undefined;
|
|
@@ -5443,6 +6677,18 @@ export declare const toolDefinitions: ({
|
|
|
5443
6677
|
relation?: undefined;
|
|
5444
6678
|
direction?: undefined;
|
|
5445
6679
|
targetId?: undefined;
|
|
6680
|
+
name?: undefined;
|
|
6681
|
+
config?: undefined;
|
|
6682
|
+
capabilities?: undefined;
|
|
6683
|
+
exposure?: undefined;
|
|
6684
|
+
authStrategy?: undefined;
|
|
6685
|
+
connectorId?: undefined;
|
|
6686
|
+
ownerType?: undefined;
|
|
6687
|
+
ownerId?: undefined;
|
|
6688
|
+
fileId?: undefined;
|
|
6689
|
+
contentType?: undefined;
|
|
6690
|
+
content?: undefined;
|
|
6691
|
+
dataBase64?: undefined;
|
|
5446
6692
|
};
|
|
5447
6693
|
required: string[];
|
|
5448
6694
|
};
|
|
@@ -5535,6 +6781,10 @@ export declare const toolDefinitions: ({
|
|
|
5535
6781
|
_listTitle?: undefined;
|
|
5536
6782
|
fieldsMetaData?: undefined;
|
|
5537
6783
|
hints?: undefined;
|
|
6784
|
+
provenance?: undefined;
|
|
6785
|
+
rights?: undefined;
|
|
6786
|
+
forUser?: undefined;
|
|
6787
|
+
whoCan?: undefined;
|
|
5538
6788
|
fields?: undefined;
|
|
5539
6789
|
data?: undefined;
|
|
5540
6790
|
completed?: undefined;
|
|
@@ -5558,6 +6808,7 @@ export declare const toolDefinitions: ({
|
|
|
5558
6808
|
relatedNestId?: undefined;
|
|
5559
6809
|
color?: undefined;
|
|
5560
6810
|
icon?: undefined;
|
|
6811
|
+
withUser?: undefined;
|
|
5561
6812
|
fullWorkspaces?: undefined;
|
|
5562
6813
|
context?: undefined;
|
|
5563
6814
|
skip?: undefined;
|
|
@@ -5573,6 +6824,18 @@ export declare const toolDefinitions: ({
|
|
|
5573
6824
|
relation?: undefined;
|
|
5574
6825
|
direction?: undefined;
|
|
5575
6826
|
targetId?: undefined;
|
|
6827
|
+
name?: undefined;
|
|
6828
|
+
config?: undefined;
|
|
6829
|
+
capabilities?: undefined;
|
|
6830
|
+
exposure?: undefined;
|
|
6831
|
+
authStrategy?: undefined;
|
|
6832
|
+
connectorId?: undefined;
|
|
6833
|
+
ownerType?: undefined;
|
|
6834
|
+
ownerId?: undefined;
|
|
6835
|
+
fileId?: undefined;
|
|
6836
|
+
contentType?: undefined;
|
|
6837
|
+
content?: undefined;
|
|
6838
|
+
dataBase64?: undefined;
|
|
5576
6839
|
};
|
|
5577
6840
|
required: string[];
|
|
5578
6841
|
};
|
|
@@ -5619,6 +6882,10 @@ export declare const toolDefinitions: ({
|
|
|
5619
6882
|
_listTitle?: undefined;
|
|
5620
6883
|
fieldsMetaData?: undefined;
|
|
5621
6884
|
hints?: undefined;
|
|
6885
|
+
provenance?: undefined;
|
|
6886
|
+
rights?: undefined;
|
|
6887
|
+
forUser?: undefined;
|
|
6888
|
+
whoCan?: undefined;
|
|
5622
6889
|
parentId?: undefined;
|
|
5623
6890
|
description?: undefined;
|
|
5624
6891
|
labels?: undefined;
|
|
@@ -5649,6 +6916,7 @@ export declare const toolDefinitions: ({
|
|
|
5649
6916
|
relatedNestId?: undefined;
|
|
5650
6917
|
color?: undefined;
|
|
5651
6918
|
icon?: undefined;
|
|
6919
|
+
withUser?: undefined;
|
|
5652
6920
|
fullWorkspaces?: undefined;
|
|
5653
6921
|
context?: undefined;
|
|
5654
6922
|
skip?: undefined;
|
|
@@ -5664,6 +6932,18 @@ export declare const toolDefinitions: ({
|
|
|
5664
6932
|
relation?: undefined;
|
|
5665
6933
|
direction?: undefined;
|
|
5666
6934
|
targetId?: undefined;
|
|
6935
|
+
name?: undefined;
|
|
6936
|
+
config?: undefined;
|
|
6937
|
+
capabilities?: undefined;
|
|
6938
|
+
exposure?: undefined;
|
|
6939
|
+
authStrategy?: undefined;
|
|
6940
|
+
connectorId?: undefined;
|
|
6941
|
+
ownerType?: undefined;
|
|
6942
|
+
ownerId?: undefined;
|
|
6943
|
+
fileId?: undefined;
|
|
6944
|
+
contentType?: undefined;
|
|
6945
|
+
content?: undefined;
|
|
6946
|
+
dataBase64?: undefined;
|
|
5667
6947
|
};
|
|
5668
6948
|
required: string[];
|
|
5669
6949
|
};
|
|
@@ -5706,6 +6986,10 @@ export declare const toolDefinitions: ({
|
|
|
5706
6986
|
_listTitle?: undefined;
|
|
5707
6987
|
fieldsMetaData?: undefined;
|
|
5708
6988
|
hints?: undefined;
|
|
6989
|
+
provenance?: undefined;
|
|
6990
|
+
rights?: undefined;
|
|
6991
|
+
forUser?: undefined;
|
|
6992
|
+
whoCan?: undefined;
|
|
5709
6993
|
parentId?: undefined;
|
|
5710
6994
|
description?: undefined;
|
|
5711
6995
|
labels?: undefined;
|
|
@@ -5736,6 +7020,7 @@ export declare const toolDefinitions: ({
|
|
|
5736
7020
|
relatedNestId?: undefined;
|
|
5737
7021
|
color?: undefined;
|
|
5738
7022
|
icon?: undefined;
|
|
7023
|
+
withUser?: undefined;
|
|
5739
7024
|
fullWorkspaces?: undefined;
|
|
5740
7025
|
context?: undefined;
|
|
5741
7026
|
skip?: undefined;
|
|
@@ -5751,6 +7036,18 @@ export declare const toolDefinitions: ({
|
|
|
5751
7036
|
relation?: undefined;
|
|
5752
7037
|
direction?: undefined;
|
|
5753
7038
|
targetId?: undefined;
|
|
7039
|
+
name?: undefined;
|
|
7040
|
+
config?: undefined;
|
|
7041
|
+
capabilities?: undefined;
|
|
7042
|
+
exposure?: undefined;
|
|
7043
|
+
authStrategy?: undefined;
|
|
7044
|
+
connectorId?: undefined;
|
|
7045
|
+
ownerType?: undefined;
|
|
7046
|
+
ownerId?: undefined;
|
|
7047
|
+
fileId?: undefined;
|
|
7048
|
+
contentType?: undefined;
|
|
7049
|
+
content?: undefined;
|
|
7050
|
+
dataBase64?: undefined;
|
|
5754
7051
|
};
|
|
5755
7052
|
required: string[];
|
|
5756
7053
|
};
|
|
@@ -5803,6 +7100,10 @@ export declare const toolDefinitions: ({
|
|
|
5803
7100
|
_listTitle?: undefined;
|
|
5804
7101
|
fieldsMetaData?: undefined;
|
|
5805
7102
|
hints?: undefined;
|
|
7103
|
+
provenance?: undefined;
|
|
7104
|
+
rights?: undefined;
|
|
7105
|
+
forUser?: undefined;
|
|
7106
|
+
whoCan?: undefined;
|
|
5806
7107
|
parentId?: undefined;
|
|
5807
7108
|
description?: undefined;
|
|
5808
7109
|
fields?: undefined;
|
|
@@ -5832,6 +7133,7 @@ export declare const toolDefinitions: ({
|
|
|
5832
7133
|
relatedNestId?: undefined;
|
|
5833
7134
|
color?: undefined;
|
|
5834
7135
|
icon?: undefined;
|
|
7136
|
+
withUser?: undefined;
|
|
5835
7137
|
fullWorkspaces?: undefined;
|
|
5836
7138
|
context?: undefined;
|
|
5837
7139
|
skip?: undefined;
|
|
@@ -5847,6 +7149,18 @@ export declare const toolDefinitions: ({
|
|
|
5847
7149
|
relation?: undefined;
|
|
5848
7150
|
direction?: undefined;
|
|
5849
7151
|
targetId?: undefined;
|
|
7152
|
+
name?: undefined;
|
|
7153
|
+
config?: undefined;
|
|
7154
|
+
capabilities?: undefined;
|
|
7155
|
+
exposure?: undefined;
|
|
7156
|
+
authStrategy?: undefined;
|
|
7157
|
+
connectorId?: undefined;
|
|
7158
|
+
ownerType?: undefined;
|
|
7159
|
+
ownerId?: undefined;
|
|
7160
|
+
fileId?: undefined;
|
|
7161
|
+
contentType?: undefined;
|
|
7162
|
+
content?: undefined;
|
|
7163
|
+
dataBase64?: undefined;
|
|
5850
7164
|
};
|
|
5851
7165
|
required: string[];
|
|
5852
7166
|
};
|
|
@@ -5896,6 +7210,10 @@ export declare const toolDefinitions: ({
|
|
|
5896
7210
|
_listTitle?: undefined;
|
|
5897
7211
|
fieldsMetaData?: undefined;
|
|
5898
7212
|
hints?: undefined;
|
|
7213
|
+
provenance?: undefined;
|
|
7214
|
+
rights?: undefined;
|
|
7215
|
+
forUser?: undefined;
|
|
7216
|
+
whoCan?: undefined;
|
|
5899
7217
|
parentId?: undefined;
|
|
5900
7218
|
description?: undefined;
|
|
5901
7219
|
labels?: undefined;
|
|
@@ -5926,6 +7244,7 @@ export declare const toolDefinitions: ({
|
|
|
5926
7244
|
relatedNestId?: undefined;
|
|
5927
7245
|
color?: undefined;
|
|
5928
7246
|
icon?: undefined;
|
|
7247
|
+
withUser?: undefined;
|
|
5929
7248
|
fullWorkspaces?: undefined;
|
|
5930
7249
|
context?: undefined;
|
|
5931
7250
|
skip?: undefined;
|
|
@@ -5940,6 +7259,18 @@ export declare const toolDefinitions: ({
|
|
|
5940
7259
|
relation?: undefined;
|
|
5941
7260
|
direction?: undefined;
|
|
5942
7261
|
targetId?: undefined;
|
|
7262
|
+
name?: undefined;
|
|
7263
|
+
config?: undefined;
|
|
7264
|
+
capabilities?: undefined;
|
|
7265
|
+
exposure?: undefined;
|
|
7266
|
+
authStrategy?: undefined;
|
|
7267
|
+
connectorId?: undefined;
|
|
7268
|
+
ownerType?: undefined;
|
|
7269
|
+
ownerId?: undefined;
|
|
7270
|
+
fileId?: undefined;
|
|
7271
|
+
contentType?: undefined;
|
|
7272
|
+
content?: undefined;
|
|
7273
|
+
dataBase64?: undefined;
|
|
5943
7274
|
};
|
|
5944
7275
|
required: string[];
|
|
5945
7276
|
};
|
|
@@ -5986,6 +7317,10 @@ export declare const toolDefinitions: ({
|
|
|
5986
7317
|
_listTitle?: undefined;
|
|
5987
7318
|
fieldsMetaData?: undefined;
|
|
5988
7319
|
hints?: undefined;
|
|
7320
|
+
provenance?: undefined;
|
|
7321
|
+
rights?: undefined;
|
|
7322
|
+
forUser?: undefined;
|
|
7323
|
+
whoCan?: undefined;
|
|
5989
7324
|
parentId?: undefined;
|
|
5990
7325
|
description?: undefined;
|
|
5991
7326
|
labels?: undefined;
|
|
@@ -6016,6 +7351,7 @@ export declare const toolDefinitions: ({
|
|
|
6016
7351
|
relatedNestId?: undefined;
|
|
6017
7352
|
color?: undefined;
|
|
6018
7353
|
icon?: undefined;
|
|
7354
|
+
withUser?: undefined;
|
|
6019
7355
|
fullWorkspaces?: undefined;
|
|
6020
7356
|
context?: undefined;
|
|
6021
7357
|
skip?: undefined;
|
|
@@ -6030,6 +7366,18 @@ export declare const toolDefinitions: ({
|
|
|
6030
7366
|
relation?: undefined;
|
|
6031
7367
|
direction?: undefined;
|
|
6032
7368
|
targetId?: undefined;
|
|
7369
|
+
name?: undefined;
|
|
7370
|
+
config?: undefined;
|
|
7371
|
+
capabilities?: undefined;
|
|
7372
|
+
exposure?: undefined;
|
|
7373
|
+
authStrategy?: undefined;
|
|
7374
|
+
connectorId?: undefined;
|
|
7375
|
+
ownerType?: undefined;
|
|
7376
|
+
ownerId?: undefined;
|
|
7377
|
+
fileId?: undefined;
|
|
7378
|
+
contentType?: undefined;
|
|
7379
|
+
content?: undefined;
|
|
7380
|
+
dataBase64?: undefined;
|
|
6033
7381
|
};
|
|
6034
7382
|
required: string[];
|
|
6035
7383
|
};
|
|
@@ -6077,6 +7425,10 @@ export declare const toolDefinitions: ({
|
|
|
6077
7425
|
_listTitle?: undefined;
|
|
6078
7426
|
fieldsMetaData?: undefined;
|
|
6079
7427
|
hints?: undefined;
|
|
7428
|
+
provenance?: undefined;
|
|
7429
|
+
rights?: undefined;
|
|
7430
|
+
forUser?: undefined;
|
|
7431
|
+
whoCan?: undefined;
|
|
6080
7432
|
parentId?: undefined;
|
|
6081
7433
|
description?: undefined;
|
|
6082
7434
|
labels?: undefined;
|
|
@@ -6107,6 +7459,7 @@ export declare const toolDefinitions: ({
|
|
|
6107
7459
|
relatedNestId?: undefined;
|
|
6108
7460
|
color?: undefined;
|
|
6109
7461
|
icon?: undefined;
|
|
7462
|
+
withUser?: undefined;
|
|
6110
7463
|
fullWorkspaces?: undefined;
|
|
6111
7464
|
context?: undefined;
|
|
6112
7465
|
skip?: undefined;
|
|
@@ -6122,6 +7475,18 @@ export declare const toolDefinitions: ({
|
|
|
6122
7475
|
relation?: undefined;
|
|
6123
7476
|
direction?: undefined;
|
|
6124
7477
|
targetId?: undefined;
|
|
7478
|
+
name?: undefined;
|
|
7479
|
+
config?: undefined;
|
|
7480
|
+
capabilities?: undefined;
|
|
7481
|
+
exposure?: undefined;
|
|
7482
|
+
authStrategy?: undefined;
|
|
7483
|
+
connectorId?: undefined;
|
|
7484
|
+
ownerType?: undefined;
|
|
7485
|
+
ownerId?: undefined;
|
|
7486
|
+
fileId?: undefined;
|
|
7487
|
+
contentType?: undefined;
|
|
7488
|
+
content?: undefined;
|
|
7489
|
+
dataBase64?: undefined;
|
|
6125
7490
|
};
|
|
6126
7491
|
required: string[];
|
|
6127
7492
|
};
|
|
@@ -6175,6 +7540,10 @@ export declare const toolDefinitions: ({
|
|
|
6175
7540
|
_listTitle?: undefined;
|
|
6176
7541
|
fieldsMetaData?: undefined;
|
|
6177
7542
|
hints?: undefined;
|
|
7543
|
+
provenance?: undefined;
|
|
7544
|
+
rights?: undefined;
|
|
7545
|
+
forUser?: undefined;
|
|
7546
|
+
whoCan?: undefined;
|
|
6178
7547
|
parentId?: undefined;
|
|
6179
7548
|
description?: undefined;
|
|
6180
7549
|
labels?: undefined;
|
|
@@ -6205,6 +7574,7 @@ export declare const toolDefinitions: ({
|
|
|
6205
7574
|
relatedNestId?: undefined;
|
|
6206
7575
|
color?: undefined;
|
|
6207
7576
|
icon?: undefined;
|
|
7577
|
+
withUser?: undefined;
|
|
6208
7578
|
fullWorkspaces?: undefined;
|
|
6209
7579
|
context?: undefined;
|
|
6210
7580
|
skip?: undefined;
|
|
@@ -6220,6 +7590,18 @@ export declare const toolDefinitions: ({
|
|
|
6220
7590
|
childId?: undefined;
|
|
6221
7591
|
status?: undefined;
|
|
6222
7592
|
targetId?: undefined;
|
|
7593
|
+
name?: undefined;
|
|
7594
|
+
config?: undefined;
|
|
7595
|
+
capabilities?: undefined;
|
|
7596
|
+
exposure?: undefined;
|
|
7597
|
+
authStrategy?: undefined;
|
|
7598
|
+
connectorId?: undefined;
|
|
7599
|
+
ownerType?: undefined;
|
|
7600
|
+
ownerId?: undefined;
|
|
7601
|
+
fileId?: undefined;
|
|
7602
|
+
contentType?: undefined;
|
|
7603
|
+
content?: undefined;
|
|
7604
|
+
dataBase64?: undefined;
|
|
6223
7605
|
};
|
|
6224
7606
|
required: string[];
|
|
6225
7607
|
};
|
|
@@ -6266,6 +7648,10 @@ export declare const toolDefinitions: ({
|
|
|
6266
7648
|
_listTitle?: undefined;
|
|
6267
7649
|
fieldsMetaData?: undefined;
|
|
6268
7650
|
hints?: undefined;
|
|
7651
|
+
provenance?: undefined;
|
|
7652
|
+
rights?: undefined;
|
|
7653
|
+
forUser?: undefined;
|
|
7654
|
+
whoCan?: undefined;
|
|
6269
7655
|
parentId?: undefined;
|
|
6270
7656
|
description?: undefined;
|
|
6271
7657
|
labels?: undefined;
|
|
@@ -6296,6 +7682,7 @@ export declare const toolDefinitions: ({
|
|
|
6296
7682
|
relatedNestId?: undefined;
|
|
6297
7683
|
color?: undefined;
|
|
6298
7684
|
icon?: undefined;
|
|
7685
|
+
withUser?: undefined;
|
|
6299
7686
|
fullWorkspaces?: undefined;
|
|
6300
7687
|
context?: undefined;
|
|
6301
7688
|
skip?: undefined;
|
|
@@ -6311,6 +7698,471 @@ export declare const toolDefinitions: ({
|
|
|
6311
7698
|
childId?: undefined;
|
|
6312
7699
|
status?: undefined;
|
|
6313
7700
|
direction?: undefined;
|
|
7701
|
+
name?: undefined;
|
|
7702
|
+
config?: undefined;
|
|
7703
|
+
capabilities?: undefined;
|
|
7704
|
+
exposure?: undefined;
|
|
7705
|
+
authStrategy?: undefined;
|
|
7706
|
+
connectorId?: undefined;
|
|
7707
|
+
ownerType?: undefined;
|
|
7708
|
+
ownerId?: undefined;
|
|
7709
|
+
fileId?: undefined;
|
|
7710
|
+
contentType?: undefined;
|
|
7711
|
+
content?: undefined;
|
|
7712
|
+
dataBase64?: undefined;
|
|
7713
|
+
};
|
|
7714
|
+
required: string[];
|
|
7715
|
+
};
|
|
7716
|
+
} | {
|
|
7717
|
+
annotations: {
|
|
7718
|
+
readOnlyHint: boolean;
|
|
7719
|
+
destructiveHint: boolean;
|
|
7720
|
+
};
|
|
7721
|
+
name: string;
|
|
7722
|
+
description: string;
|
|
7723
|
+
inputSchema: {
|
|
7724
|
+
type: "object";
|
|
7725
|
+
properties: {
|
|
7726
|
+
workspaceId: {
|
|
7727
|
+
type: string;
|
|
7728
|
+
description: string;
|
|
7729
|
+
};
|
|
7730
|
+
type: {
|
|
7731
|
+
type: string;
|
|
7732
|
+
enum: string[];
|
|
7733
|
+
description: string;
|
|
7734
|
+
};
|
|
7735
|
+
name: {
|
|
7736
|
+
type: string;
|
|
7737
|
+
description: string;
|
|
7738
|
+
};
|
|
7739
|
+
config: {
|
|
7740
|
+
type: string;
|
|
7741
|
+
description: string;
|
|
7742
|
+
};
|
|
7743
|
+
capabilities: {
|
|
7744
|
+
type: string;
|
|
7745
|
+
description: string;
|
|
7746
|
+
};
|
|
7747
|
+
exposure: {
|
|
7748
|
+
type: string;
|
|
7749
|
+
description: string;
|
|
7750
|
+
};
|
|
7751
|
+
authStrategy: {
|
|
7752
|
+
type: string;
|
|
7753
|
+
enum: string[];
|
|
7754
|
+
description: string;
|
|
7755
|
+
};
|
|
7756
|
+
topic?: undefined;
|
|
7757
|
+
search?: undefined;
|
|
7758
|
+
includeImages?: undefined;
|
|
7759
|
+
imageIndexes?: undefined;
|
|
7760
|
+
maxImages?: undefined;
|
|
7761
|
+
sort?: undefined;
|
|
7762
|
+
limit?: undefined;
|
|
7763
|
+
page?: undefined;
|
|
7764
|
+
stripDescription?: undefined;
|
|
7765
|
+
title?: undefined;
|
|
7766
|
+
purpose?: undefined;
|
|
7767
|
+
governance?: undefined;
|
|
7768
|
+
plan?: undefined;
|
|
7769
|
+
apps?: undefined;
|
|
7770
|
+
layout?: undefined;
|
|
7771
|
+
query?: undefined;
|
|
7772
|
+
_listTitle?: undefined;
|
|
7773
|
+
nestId?: undefined;
|
|
7774
|
+
fieldsMetaData?: undefined;
|
|
7775
|
+
hints?: undefined;
|
|
7776
|
+
provenance?: undefined;
|
|
7777
|
+
rights?: undefined;
|
|
7778
|
+
forUser?: undefined;
|
|
7779
|
+
whoCan?: undefined;
|
|
7780
|
+
parentId?: undefined;
|
|
7781
|
+
description?: undefined;
|
|
7782
|
+
labels?: undefined;
|
|
7783
|
+
fields?: undefined;
|
|
7784
|
+
users?: undefined;
|
|
7785
|
+
accountabilities?: undefined;
|
|
7786
|
+
domains?: undefined;
|
|
7787
|
+
data?: undefined;
|
|
7788
|
+
due?: undefined;
|
|
7789
|
+
completed?: undefined;
|
|
7790
|
+
body?: undefined;
|
|
7791
|
+
commentId?: undefined;
|
|
7792
|
+
circleId?: undefined;
|
|
7793
|
+
includeSubCircles?: undefined;
|
|
7794
|
+
userId?: undefined;
|
|
7795
|
+
endDate?: undefined;
|
|
7796
|
+
metricId?: undefined;
|
|
7797
|
+
depth?: undefined;
|
|
7798
|
+
username?: undefined;
|
|
7799
|
+
fullName?: undefined;
|
|
7800
|
+
language?: undefined;
|
|
7801
|
+
labelId?: undefined;
|
|
7802
|
+
from?: undefined;
|
|
7803
|
+
to?: undefined;
|
|
7804
|
+
completedAfter?: undefined;
|
|
7805
|
+
nestIds?: undefined;
|
|
7806
|
+
position?: undefined;
|
|
7807
|
+
relatedNestId?: undefined;
|
|
7808
|
+
color?: undefined;
|
|
7809
|
+
icon?: undefined;
|
|
7810
|
+
withUser?: undefined;
|
|
7811
|
+
fullWorkspaces?: undefined;
|
|
7812
|
+
context?: undefined;
|
|
7813
|
+
skip?: undefined;
|
|
7814
|
+
showRead?: undefined;
|
|
7815
|
+
group?: undefined;
|
|
7816
|
+
feeling?: undefined;
|
|
7817
|
+
needs?: undefined;
|
|
7818
|
+
tensionId?: undefined;
|
|
7819
|
+
_id?: undefined;
|
|
7820
|
+
roleId?: undefined;
|
|
7821
|
+
removeNest?: undefined;
|
|
7822
|
+
partId?: undefined;
|
|
7823
|
+
childId?: undefined;
|
|
7824
|
+
status?: undefined;
|
|
7825
|
+
relation?: undefined;
|
|
7826
|
+
direction?: undefined;
|
|
7827
|
+
targetId?: undefined;
|
|
7828
|
+
connectorId?: undefined;
|
|
7829
|
+
ownerType?: undefined;
|
|
7830
|
+
ownerId?: undefined;
|
|
7831
|
+
fileId?: undefined;
|
|
7832
|
+
contentType?: undefined;
|
|
7833
|
+
content?: undefined;
|
|
7834
|
+
dataBase64?: undefined;
|
|
7835
|
+
};
|
|
7836
|
+
required: string[];
|
|
7837
|
+
};
|
|
7838
|
+
} | {
|
|
7839
|
+
annotations: {
|
|
7840
|
+
readOnlyHint: boolean;
|
|
7841
|
+
destructiveHint: boolean;
|
|
7842
|
+
};
|
|
7843
|
+
name: string;
|
|
7844
|
+
description: string;
|
|
7845
|
+
inputSchema: {
|
|
7846
|
+
type: "object";
|
|
7847
|
+
properties: {
|
|
7848
|
+
workspaceId: {
|
|
7849
|
+
type: string;
|
|
7850
|
+
description: string;
|
|
7851
|
+
};
|
|
7852
|
+
connectorId: {
|
|
7853
|
+
type: string;
|
|
7854
|
+
description: string;
|
|
7855
|
+
};
|
|
7856
|
+
ownerType: {
|
|
7857
|
+
type: string;
|
|
7858
|
+
enum: string[];
|
|
7859
|
+
description: string;
|
|
7860
|
+
};
|
|
7861
|
+
ownerId: {
|
|
7862
|
+
type: string;
|
|
7863
|
+
description: string;
|
|
7864
|
+
};
|
|
7865
|
+
topic?: undefined;
|
|
7866
|
+
search?: undefined;
|
|
7867
|
+
includeImages?: undefined;
|
|
7868
|
+
imageIndexes?: undefined;
|
|
7869
|
+
maxImages?: undefined;
|
|
7870
|
+
sort?: undefined;
|
|
7871
|
+
limit?: undefined;
|
|
7872
|
+
page?: undefined;
|
|
7873
|
+
stripDescription?: undefined;
|
|
7874
|
+
title?: undefined;
|
|
7875
|
+
purpose?: undefined;
|
|
7876
|
+
type?: undefined;
|
|
7877
|
+
governance?: undefined;
|
|
7878
|
+
plan?: undefined;
|
|
7879
|
+
apps?: undefined;
|
|
7880
|
+
layout?: undefined;
|
|
7881
|
+
query?: undefined;
|
|
7882
|
+
_listTitle?: undefined;
|
|
7883
|
+
nestId?: undefined;
|
|
7884
|
+
fieldsMetaData?: undefined;
|
|
7885
|
+
hints?: undefined;
|
|
7886
|
+
provenance?: undefined;
|
|
7887
|
+
rights?: undefined;
|
|
7888
|
+
forUser?: undefined;
|
|
7889
|
+
whoCan?: undefined;
|
|
7890
|
+
parentId?: undefined;
|
|
7891
|
+
description?: undefined;
|
|
7892
|
+
labels?: undefined;
|
|
7893
|
+
fields?: undefined;
|
|
7894
|
+
users?: undefined;
|
|
7895
|
+
accountabilities?: undefined;
|
|
7896
|
+
domains?: undefined;
|
|
7897
|
+
data?: undefined;
|
|
7898
|
+
due?: undefined;
|
|
7899
|
+
completed?: undefined;
|
|
7900
|
+
body?: undefined;
|
|
7901
|
+
commentId?: undefined;
|
|
7902
|
+
circleId?: undefined;
|
|
7903
|
+
includeSubCircles?: undefined;
|
|
7904
|
+
userId?: undefined;
|
|
7905
|
+
endDate?: undefined;
|
|
7906
|
+
metricId?: undefined;
|
|
7907
|
+
depth?: undefined;
|
|
7908
|
+
username?: undefined;
|
|
7909
|
+
fullName?: undefined;
|
|
7910
|
+
language?: undefined;
|
|
7911
|
+
labelId?: undefined;
|
|
7912
|
+
from?: undefined;
|
|
7913
|
+
to?: undefined;
|
|
7914
|
+
completedAfter?: undefined;
|
|
7915
|
+
nestIds?: undefined;
|
|
7916
|
+
position?: undefined;
|
|
7917
|
+
relatedNestId?: undefined;
|
|
7918
|
+
color?: undefined;
|
|
7919
|
+
icon?: undefined;
|
|
7920
|
+
withUser?: undefined;
|
|
7921
|
+
fullWorkspaces?: undefined;
|
|
7922
|
+
context?: undefined;
|
|
7923
|
+
skip?: undefined;
|
|
7924
|
+
showRead?: undefined;
|
|
7925
|
+
group?: undefined;
|
|
7926
|
+
feeling?: undefined;
|
|
7927
|
+
needs?: undefined;
|
|
7928
|
+
tensionId?: undefined;
|
|
7929
|
+
_id?: undefined;
|
|
7930
|
+
roleId?: undefined;
|
|
7931
|
+
removeNest?: undefined;
|
|
7932
|
+
partId?: undefined;
|
|
7933
|
+
childId?: undefined;
|
|
7934
|
+
status?: undefined;
|
|
7935
|
+
relation?: undefined;
|
|
7936
|
+
direction?: undefined;
|
|
7937
|
+
targetId?: undefined;
|
|
7938
|
+
name?: undefined;
|
|
7939
|
+
config?: undefined;
|
|
7940
|
+
capabilities?: undefined;
|
|
7941
|
+
exposure?: undefined;
|
|
7942
|
+
authStrategy?: undefined;
|
|
7943
|
+
fileId?: undefined;
|
|
7944
|
+
contentType?: undefined;
|
|
7945
|
+
content?: undefined;
|
|
7946
|
+
dataBase64?: undefined;
|
|
7947
|
+
};
|
|
7948
|
+
required: string[];
|
|
7949
|
+
};
|
|
7950
|
+
} | {
|
|
7951
|
+
annotations: {
|
|
7952
|
+
readOnlyHint: boolean;
|
|
7953
|
+
destructiveHint: boolean;
|
|
7954
|
+
};
|
|
7955
|
+
name: string;
|
|
7956
|
+
description: string;
|
|
7957
|
+
inputSchema: {
|
|
7958
|
+
type: "object";
|
|
7959
|
+
properties: {
|
|
7960
|
+
nestId: {
|
|
7961
|
+
type: string;
|
|
7962
|
+
description: string;
|
|
7963
|
+
};
|
|
7964
|
+
fileId: {
|
|
7965
|
+
type: string;
|
|
7966
|
+
description: string;
|
|
7967
|
+
};
|
|
7968
|
+
topic?: undefined;
|
|
7969
|
+
search?: undefined;
|
|
7970
|
+
includeImages?: undefined;
|
|
7971
|
+
imageIndexes?: undefined;
|
|
7972
|
+
maxImages?: undefined;
|
|
7973
|
+
sort?: undefined;
|
|
7974
|
+
limit?: undefined;
|
|
7975
|
+
page?: undefined;
|
|
7976
|
+
stripDescription?: undefined;
|
|
7977
|
+
workspaceId?: undefined;
|
|
7978
|
+
title?: undefined;
|
|
7979
|
+
purpose?: undefined;
|
|
7980
|
+
type?: undefined;
|
|
7981
|
+
governance?: undefined;
|
|
7982
|
+
plan?: undefined;
|
|
7983
|
+
apps?: undefined;
|
|
7984
|
+
layout?: undefined;
|
|
7985
|
+
query?: undefined;
|
|
7986
|
+
_listTitle?: undefined;
|
|
7987
|
+
fieldsMetaData?: undefined;
|
|
7988
|
+
hints?: undefined;
|
|
7989
|
+
provenance?: undefined;
|
|
7990
|
+
rights?: undefined;
|
|
7991
|
+
forUser?: undefined;
|
|
7992
|
+
whoCan?: undefined;
|
|
7993
|
+
parentId?: undefined;
|
|
7994
|
+
description?: undefined;
|
|
7995
|
+
labels?: undefined;
|
|
7996
|
+
fields?: undefined;
|
|
7997
|
+
users?: undefined;
|
|
7998
|
+
accountabilities?: undefined;
|
|
7999
|
+
domains?: undefined;
|
|
8000
|
+
data?: undefined;
|
|
8001
|
+
due?: undefined;
|
|
8002
|
+
completed?: undefined;
|
|
8003
|
+
body?: undefined;
|
|
8004
|
+
commentId?: undefined;
|
|
8005
|
+
circleId?: undefined;
|
|
8006
|
+
includeSubCircles?: undefined;
|
|
8007
|
+
userId?: undefined;
|
|
8008
|
+
endDate?: undefined;
|
|
8009
|
+
metricId?: undefined;
|
|
8010
|
+
depth?: undefined;
|
|
8011
|
+
username?: undefined;
|
|
8012
|
+
fullName?: undefined;
|
|
8013
|
+
language?: undefined;
|
|
8014
|
+
labelId?: undefined;
|
|
8015
|
+
from?: undefined;
|
|
8016
|
+
to?: undefined;
|
|
8017
|
+
completedAfter?: undefined;
|
|
8018
|
+
nestIds?: undefined;
|
|
8019
|
+
position?: undefined;
|
|
8020
|
+
relatedNestId?: undefined;
|
|
8021
|
+
color?: undefined;
|
|
8022
|
+
icon?: undefined;
|
|
8023
|
+
withUser?: undefined;
|
|
8024
|
+
fullWorkspaces?: undefined;
|
|
8025
|
+
context?: undefined;
|
|
8026
|
+
skip?: undefined;
|
|
8027
|
+
showRead?: undefined;
|
|
8028
|
+
group?: undefined;
|
|
8029
|
+
feeling?: undefined;
|
|
8030
|
+
needs?: undefined;
|
|
8031
|
+
tensionId?: undefined;
|
|
8032
|
+
_id?: undefined;
|
|
8033
|
+
roleId?: undefined;
|
|
8034
|
+
removeNest?: undefined;
|
|
8035
|
+
partId?: undefined;
|
|
8036
|
+
childId?: undefined;
|
|
8037
|
+
status?: undefined;
|
|
8038
|
+
relation?: undefined;
|
|
8039
|
+
direction?: undefined;
|
|
8040
|
+
targetId?: undefined;
|
|
8041
|
+
name?: undefined;
|
|
8042
|
+
config?: undefined;
|
|
8043
|
+
capabilities?: undefined;
|
|
8044
|
+
exposure?: undefined;
|
|
8045
|
+
authStrategy?: undefined;
|
|
8046
|
+
connectorId?: undefined;
|
|
8047
|
+
ownerType?: undefined;
|
|
8048
|
+
ownerId?: undefined;
|
|
8049
|
+
contentType?: undefined;
|
|
8050
|
+
content?: undefined;
|
|
8051
|
+
dataBase64?: undefined;
|
|
8052
|
+
};
|
|
8053
|
+
required: string[];
|
|
8054
|
+
};
|
|
8055
|
+
} | {
|
|
8056
|
+
annotations: {
|
|
8057
|
+
readOnlyHint: boolean;
|
|
8058
|
+
destructiveHint: boolean;
|
|
8059
|
+
};
|
|
8060
|
+
name: string;
|
|
8061
|
+
description: string;
|
|
8062
|
+
inputSchema: {
|
|
8063
|
+
type: "object";
|
|
8064
|
+
properties: {
|
|
8065
|
+
nestId: {
|
|
8066
|
+
type: string;
|
|
8067
|
+
description: string;
|
|
8068
|
+
};
|
|
8069
|
+
name: {
|
|
8070
|
+
type: string;
|
|
8071
|
+
description: string;
|
|
8072
|
+
};
|
|
8073
|
+
contentType: {
|
|
8074
|
+
type: string;
|
|
8075
|
+
description: string;
|
|
8076
|
+
};
|
|
8077
|
+
content: {
|
|
8078
|
+
type: string;
|
|
8079
|
+
description: string;
|
|
8080
|
+
};
|
|
8081
|
+
dataBase64: {
|
|
8082
|
+
type: string;
|
|
8083
|
+
description: string;
|
|
8084
|
+
};
|
|
8085
|
+
topic?: undefined;
|
|
8086
|
+
search?: undefined;
|
|
8087
|
+
includeImages?: undefined;
|
|
8088
|
+
imageIndexes?: undefined;
|
|
8089
|
+
maxImages?: undefined;
|
|
8090
|
+
sort?: undefined;
|
|
8091
|
+
limit?: undefined;
|
|
8092
|
+
page?: undefined;
|
|
8093
|
+
stripDescription?: undefined;
|
|
8094
|
+
workspaceId?: undefined;
|
|
8095
|
+
title?: undefined;
|
|
8096
|
+
purpose?: undefined;
|
|
8097
|
+
type?: undefined;
|
|
8098
|
+
governance?: undefined;
|
|
8099
|
+
plan?: undefined;
|
|
8100
|
+
apps?: undefined;
|
|
8101
|
+
layout?: undefined;
|
|
8102
|
+
query?: undefined;
|
|
8103
|
+
_listTitle?: undefined;
|
|
8104
|
+
fieldsMetaData?: undefined;
|
|
8105
|
+
hints?: undefined;
|
|
8106
|
+
provenance?: undefined;
|
|
8107
|
+
rights?: undefined;
|
|
8108
|
+
forUser?: undefined;
|
|
8109
|
+
whoCan?: undefined;
|
|
8110
|
+
parentId?: undefined;
|
|
8111
|
+
description?: undefined;
|
|
8112
|
+
labels?: undefined;
|
|
8113
|
+
fields?: undefined;
|
|
8114
|
+
users?: undefined;
|
|
8115
|
+
accountabilities?: undefined;
|
|
8116
|
+
domains?: undefined;
|
|
8117
|
+
data?: undefined;
|
|
8118
|
+
due?: undefined;
|
|
8119
|
+
completed?: undefined;
|
|
8120
|
+
body?: undefined;
|
|
8121
|
+
commentId?: undefined;
|
|
8122
|
+
circleId?: undefined;
|
|
8123
|
+
includeSubCircles?: undefined;
|
|
8124
|
+
userId?: undefined;
|
|
8125
|
+
endDate?: undefined;
|
|
8126
|
+
metricId?: undefined;
|
|
8127
|
+
depth?: undefined;
|
|
8128
|
+
username?: undefined;
|
|
8129
|
+
fullName?: undefined;
|
|
8130
|
+
language?: undefined;
|
|
8131
|
+
labelId?: undefined;
|
|
8132
|
+
from?: undefined;
|
|
8133
|
+
to?: undefined;
|
|
8134
|
+
completedAfter?: undefined;
|
|
8135
|
+
nestIds?: undefined;
|
|
8136
|
+
position?: undefined;
|
|
8137
|
+
relatedNestId?: undefined;
|
|
8138
|
+
color?: undefined;
|
|
8139
|
+
icon?: undefined;
|
|
8140
|
+
withUser?: undefined;
|
|
8141
|
+
fullWorkspaces?: undefined;
|
|
8142
|
+
context?: undefined;
|
|
8143
|
+
skip?: undefined;
|
|
8144
|
+
showRead?: undefined;
|
|
8145
|
+
group?: undefined;
|
|
8146
|
+
feeling?: undefined;
|
|
8147
|
+
needs?: undefined;
|
|
8148
|
+
tensionId?: undefined;
|
|
8149
|
+
_id?: undefined;
|
|
8150
|
+
roleId?: undefined;
|
|
8151
|
+
removeNest?: undefined;
|
|
8152
|
+
partId?: undefined;
|
|
8153
|
+
childId?: undefined;
|
|
8154
|
+
status?: undefined;
|
|
8155
|
+
relation?: undefined;
|
|
8156
|
+
direction?: undefined;
|
|
8157
|
+
targetId?: undefined;
|
|
8158
|
+
config?: undefined;
|
|
8159
|
+
capabilities?: undefined;
|
|
8160
|
+
exposure?: undefined;
|
|
8161
|
+
authStrategy?: undefined;
|
|
8162
|
+
connectorId?: undefined;
|
|
8163
|
+
ownerType?: undefined;
|
|
8164
|
+
ownerId?: undefined;
|
|
8165
|
+
fileId?: undefined;
|
|
6314
8166
|
};
|
|
6315
8167
|
required: string[];
|
|
6316
8168
|
};
|