@nestr/mcp 0.1.90 → 0.1.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/api/client.d.ts +215 -0
- package/build/api/client.d.ts.map +1 -1
- package/build/api/client.js +116 -0
- package/build/api/client.js.map +1 -1
- package/build/tools/index.d.ts +1567 -100
- package/build/tools/index.d.ts.map +1 -1
- package/build/tools/index.js +395 -3
- 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;
|
|
@@ -174,25 +174,25 @@ export declare const schemas: {
|
|
|
174
174
|
}, "strip", z.ZodTypeAny, {
|
|
175
175
|
title: string;
|
|
176
176
|
parentId: string;
|
|
177
|
-
|
|
177
|
+
workspaceId?: string | undefined;
|
|
178
178
|
description?: string | undefined;
|
|
179
|
+
purpose?: string | undefined;
|
|
179
180
|
labels?: string[] | undefined;
|
|
180
181
|
fields?: Record<string, unknown> | undefined;
|
|
181
182
|
users?: string[] | undefined;
|
|
182
183
|
accountabilities?: string[] | undefined;
|
|
183
184
|
domains?: string[] | undefined;
|
|
184
|
-
workspaceId?: string | undefined;
|
|
185
185
|
}, {
|
|
186
186
|
title: string;
|
|
187
187
|
parentId: string;
|
|
188
|
-
|
|
188
|
+
workspaceId?: string | undefined;
|
|
189
189
|
description?: string | undefined;
|
|
190
|
+
purpose?: string | undefined;
|
|
190
191
|
labels?: unknown;
|
|
191
192
|
fields?: unknown;
|
|
192
193
|
users?: unknown;
|
|
193
194
|
accountabilities?: unknown;
|
|
194
195
|
domains?: unknown;
|
|
195
|
-
workspaceId?: string | undefined;
|
|
196
196
|
}>;
|
|
197
197
|
updateNest: z.ZodObject<{
|
|
198
198
|
nestId: z.ZodString;
|
|
@@ -211,9 +211,10 @@ export declare const schemas: {
|
|
|
211
211
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
212
212
|
}, "strip", z.ZodTypeAny, {
|
|
213
213
|
nestId: string;
|
|
214
|
+
workspaceId?: string | undefined;
|
|
215
|
+
description?: string | undefined;
|
|
214
216
|
title?: string | undefined;
|
|
215
217
|
purpose?: string | undefined;
|
|
216
|
-
description?: string | undefined;
|
|
217
218
|
parentId?: string | undefined;
|
|
218
219
|
labels?: string[] | undefined;
|
|
219
220
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -223,12 +224,12 @@ export declare const schemas: {
|
|
|
223
224
|
users?: string[] | undefined;
|
|
224
225
|
accountabilities?: string[] | undefined;
|
|
225
226
|
domains?: string[] | undefined;
|
|
226
|
-
workspaceId?: string | undefined;
|
|
227
227
|
}, {
|
|
228
228
|
nestId: string;
|
|
229
|
+
workspaceId?: string | undefined;
|
|
230
|
+
description?: string | undefined;
|
|
229
231
|
title?: string | undefined;
|
|
230
232
|
purpose?: string | undefined;
|
|
231
|
-
description?: string | undefined;
|
|
232
233
|
parentId?: string | undefined;
|
|
233
234
|
labels?: unknown;
|
|
234
235
|
fields?: unknown;
|
|
@@ -238,7 +239,6 @@ export declare const schemas: {
|
|
|
238
239
|
users?: unknown;
|
|
239
240
|
accountabilities?: unknown;
|
|
240
241
|
domains?: unknown;
|
|
241
|
-
workspaceId?: string | undefined;
|
|
242
242
|
}>;
|
|
243
243
|
deleteNest: z.ZodObject<{
|
|
244
244
|
nestId: z.ZodString;
|
|
@@ -339,15 +339,15 @@ export declare const schemas: {
|
|
|
339
339
|
endDate: z.ZodOptional<z.ZodString>;
|
|
340
340
|
}, "strip", z.ZodTypeAny, {
|
|
341
341
|
workspaceId: string;
|
|
342
|
+
nestId?: string | undefined;
|
|
342
343
|
includeSubCircles?: boolean | undefined;
|
|
343
344
|
userId?: string | undefined;
|
|
344
|
-
nestId?: string | undefined;
|
|
345
345
|
endDate?: string | undefined;
|
|
346
346
|
}, {
|
|
347
347
|
workspaceId: string;
|
|
348
|
+
nestId?: string | undefined;
|
|
348
349
|
includeSubCircles?: boolean | undefined;
|
|
349
350
|
userId?: string | undefined;
|
|
350
|
-
nestId?: string | undefined;
|
|
351
351
|
endDate?: string | undefined;
|
|
352
352
|
}>;
|
|
353
353
|
getInsight: z.ZodObject<{
|
|
@@ -435,11 +435,11 @@ export declare const schemas: {
|
|
|
435
435
|
workspaceId: z.ZodString;
|
|
436
436
|
userId: z.ZodString;
|
|
437
437
|
}, "strip", z.ZodTypeAny, {
|
|
438
|
-
userId: string;
|
|
439
438
|
workspaceId: string;
|
|
440
|
-
}, {
|
|
441
439
|
userId: string;
|
|
440
|
+
}, {
|
|
442
441
|
workspaceId: string;
|
|
442
|
+
userId: string;
|
|
443
443
|
}>;
|
|
444
444
|
addWorkspaceUser: z.ZodObject<{
|
|
445
445
|
workspaceId: z.ZodString;
|
|
@@ -447,13 +447,13 @@ export declare const schemas: {
|
|
|
447
447
|
fullName: z.ZodOptional<z.ZodString>;
|
|
448
448
|
language: z.ZodOptional<z.ZodString>;
|
|
449
449
|
}, "strip", z.ZodTypeAny, {
|
|
450
|
-
username: string;
|
|
451
450
|
workspaceId: string;
|
|
451
|
+
username: string;
|
|
452
452
|
fullName?: string | undefined;
|
|
453
453
|
language?: string | undefined;
|
|
454
454
|
}, {
|
|
455
|
-
username: string;
|
|
456
455
|
workspaceId: string;
|
|
456
|
+
username: string;
|
|
457
457
|
fullName?: string | undefined;
|
|
458
458
|
language?: string | undefined;
|
|
459
459
|
}>;
|
|
@@ -525,14 +525,14 @@ export declare const schemas: {
|
|
|
525
525
|
data: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
526
526
|
}, "strip", z.ZodTypeAny, {
|
|
527
527
|
nestId: string;
|
|
528
|
-
title?: string | undefined;
|
|
529
528
|
description?: string | undefined;
|
|
529
|
+
title?: string | undefined;
|
|
530
530
|
data?: Record<string, unknown> | undefined;
|
|
531
531
|
completed?: boolean | undefined;
|
|
532
532
|
}, {
|
|
533
533
|
nestId: string;
|
|
534
|
-
title?: string | undefined;
|
|
535
534
|
description?: string | undefined;
|
|
535
|
+
title?: string | undefined;
|
|
536
536
|
data?: unknown;
|
|
537
537
|
completed?: boolean | undefined;
|
|
538
538
|
}>;
|
|
@@ -638,6 +638,26 @@ export declare const schemas: {
|
|
|
638
638
|
}, {
|
|
639
639
|
fullWorkspaces?: boolean | undefined;
|
|
640
640
|
}>;
|
|
641
|
+
myActivity: z.ZodObject<{
|
|
642
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
643
|
+
withUser: z.ZodOptional<z.ZodString>;
|
|
644
|
+
}, "strip", z.ZodTypeAny, {
|
|
645
|
+
limit?: number | undefined;
|
|
646
|
+
withUser?: string | undefined;
|
|
647
|
+
}, {
|
|
648
|
+
limit?: number | undefined;
|
|
649
|
+
withUser?: string | undefined;
|
|
650
|
+
}>;
|
|
651
|
+
userActivity: z.ZodObject<{
|
|
652
|
+
userId: z.ZodString;
|
|
653
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
654
|
+
}, "strip", z.ZodTypeAny, {
|
|
655
|
+
userId: string;
|
|
656
|
+
limit?: number | undefined;
|
|
657
|
+
}, {
|
|
658
|
+
userId: string;
|
|
659
|
+
limit?: number | undefined;
|
|
660
|
+
}>;
|
|
641
661
|
listMyTensions: z.ZodObject<{
|
|
642
662
|
context: z.ZodOptional<z.ZodString>;
|
|
643
663
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -659,14 +679,14 @@ export declare const schemas: {
|
|
|
659
679
|
showRead: z.ZodOptional<z.ZodBoolean>;
|
|
660
680
|
group: z.ZodOptional<z.ZodString>;
|
|
661
681
|
}, "strip", z.ZodTypeAny, {
|
|
662
|
-
limit?: number | undefined;
|
|
663
682
|
type?: "all" | "me" | "relevant" | undefined;
|
|
683
|
+
limit?: number | undefined;
|
|
664
684
|
skip?: number | undefined;
|
|
665
685
|
showRead?: boolean | undefined;
|
|
666
686
|
group?: string | undefined;
|
|
667
687
|
}, {
|
|
668
|
-
limit?: number | undefined;
|
|
669
688
|
type?: "all" | "me" | "relevant" | undefined;
|
|
689
|
+
limit?: number | undefined;
|
|
670
690
|
skip?: number | undefined;
|
|
671
691
|
showRead?: boolean | undefined;
|
|
672
692
|
group?: string | undefined;
|
|
@@ -679,14 +699,14 @@ export declare const schemas: {
|
|
|
679
699
|
feeling: z.ZodOptional<z.ZodString>;
|
|
680
700
|
needs: z.ZodOptional<z.ZodString>;
|
|
681
701
|
}, "strip", z.ZodTypeAny, {
|
|
682
|
-
title: string;
|
|
683
702
|
nestId: string;
|
|
703
|
+
title: string;
|
|
684
704
|
description?: string | undefined;
|
|
685
705
|
feeling?: string | undefined;
|
|
686
706
|
needs?: string | undefined;
|
|
687
707
|
}, {
|
|
688
|
-
title: string;
|
|
689
708
|
nestId: string;
|
|
709
|
+
title: string;
|
|
690
710
|
description?: string | undefined;
|
|
691
711
|
feeling?: string | undefined;
|
|
692
712
|
needs?: string | undefined;
|
|
@@ -733,15 +753,15 @@ export declare const schemas: {
|
|
|
733
753
|
}, "strip", z.ZodTypeAny, {
|
|
734
754
|
nestId: string;
|
|
735
755
|
tensionId: string;
|
|
736
|
-
title?: string | undefined;
|
|
737
756
|
description?: string | undefined;
|
|
757
|
+
title?: string | undefined;
|
|
738
758
|
feeling?: string | undefined;
|
|
739
759
|
needs?: string | undefined;
|
|
740
760
|
}, {
|
|
741
761
|
nestId: string;
|
|
742
762
|
tensionId: string;
|
|
743
|
-
title?: string | undefined;
|
|
744
763
|
description?: string | undefined;
|
|
764
|
+
title?: string | undefined;
|
|
745
765
|
feeling?: string | undefined;
|
|
746
766
|
needs?: string | undefined;
|
|
747
767
|
}>;
|
|
@@ -783,10 +803,10 @@ export declare const schemas: {
|
|
|
783
803
|
}, "strip", z.ZodTypeAny, {
|
|
784
804
|
nestId: string;
|
|
785
805
|
tensionId: string;
|
|
806
|
+
description?: string | undefined;
|
|
786
807
|
_id?: string | undefined;
|
|
787
808
|
title?: string | undefined;
|
|
788
809
|
purpose?: string | undefined;
|
|
789
|
-
description?: string | undefined;
|
|
790
810
|
parentId?: string | undefined;
|
|
791
811
|
labels?: string[] | undefined;
|
|
792
812
|
due?: string | undefined;
|
|
@@ -798,10 +818,10 @@ export declare const schemas: {
|
|
|
798
818
|
}, {
|
|
799
819
|
nestId: string;
|
|
800
820
|
tensionId: string;
|
|
821
|
+
description?: string | undefined;
|
|
801
822
|
_id?: string | undefined;
|
|
802
823
|
title?: string | undefined;
|
|
803
824
|
purpose?: string | undefined;
|
|
804
|
-
description?: string | undefined;
|
|
805
825
|
parentId?: string | undefined;
|
|
806
826
|
labels?: unknown;
|
|
807
827
|
due?: string | undefined;
|
|
@@ -813,10 +833,10 @@ export declare const schemas: {
|
|
|
813
833
|
}>, {
|
|
814
834
|
nestId: string;
|
|
815
835
|
tensionId: string;
|
|
836
|
+
description?: string | undefined;
|
|
816
837
|
_id?: string | undefined;
|
|
817
838
|
title?: string | undefined;
|
|
818
839
|
purpose?: string | undefined;
|
|
819
|
-
description?: string | undefined;
|
|
820
840
|
parentId?: string | undefined;
|
|
821
841
|
labels?: string[] | undefined;
|
|
822
842
|
due?: string | undefined;
|
|
@@ -828,10 +848,10 @@ export declare const schemas: {
|
|
|
828
848
|
}, {
|
|
829
849
|
nestId: string;
|
|
830
850
|
tensionId: string;
|
|
851
|
+
description?: string | undefined;
|
|
831
852
|
_id?: string | undefined;
|
|
832
853
|
title?: string | undefined;
|
|
833
854
|
purpose?: string | undefined;
|
|
834
|
-
description?: string | undefined;
|
|
835
855
|
parentId?: string | undefined;
|
|
836
856
|
labels?: unknown;
|
|
837
857
|
due?: string | undefined;
|
|
@@ -843,10 +863,10 @@ export declare const schemas: {
|
|
|
843
863
|
}>, {
|
|
844
864
|
nestId: string;
|
|
845
865
|
tensionId: string;
|
|
866
|
+
description?: string | undefined;
|
|
846
867
|
_id?: string | undefined;
|
|
847
868
|
title?: string | undefined;
|
|
848
869
|
purpose?: string | undefined;
|
|
849
|
-
description?: string | undefined;
|
|
850
870
|
parentId?: string | undefined;
|
|
851
871
|
labels?: string[] | undefined;
|
|
852
872
|
due?: string | undefined;
|
|
@@ -858,10 +878,10 @@ export declare const schemas: {
|
|
|
858
878
|
}, {
|
|
859
879
|
nestId: string;
|
|
860
880
|
tensionId: string;
|
|
881
|
+
description?: string | undefined;
|
|
861
882
|
_id?: string | undefined;
|
|
862
883
|
title?: string | undefined;
|
|
863
884
|
purpose?: string | undefined;
|
|
864
|
-
description?: string | undefined;
|
|
865
885
|
parentId?: string | undefined;
|
|
866
886
|
labels?: unknown;
|
|
867
887
|
due?: string | undefined;
|
|
@@ -873,10 +893,10 @@ export declare const schemas: {
|
|
|
873
893
|
}>, {
|
|
874
894
|
nestId: string;
|
|
875
895
|
tensionId: string;
|
|
896
|
+
description?: string | undefined;
|
|
876
897
|
_id?: string | undefined;
|
|
877
898
|
title?: string | undefined;
|
|
878
899
|
purpose?: string | undefined;
|
|
879
|
-
description?: string | undefined;
|
|
880
900
|
parentId?: string | undefined;
|
|
881
901
|
labels?: string[] | undefined;
|
|
882
902
|
due?: string | undefined;
|
|
@@ -888,10 +908,10 @@ export declare const schemas: {
|
|
|
888
908
|
}, {
|
|
889
909
|
nestId: string;
|
|
890
910
|
tensionId: string;
|
|
911
|
+
description?: string | undefined;
|
|
891
912
|
_id?: string | undefined;
|
|
892
913
|
title?: string | undefined;
|
|
893
914
|
purpose?: string | undefined;
|
|
894
|
-
description?: string | undefined;
|
|
895
915
|
parentId?: string | undefined;
|
|
896
916
|
labels?: unknown;
|
|
897
917
|
due?: string | undefined;
|
|
@@ -918,9 +938,9 @@ export declare const schemas: {
|
|
|
918
938
|
nestId: string;
|
|
919
939
|
tensionId: string;
|
|
920
940
|
partId: string;
|
|
941
|
+
description?: string | undefined;
|
|
921
942
|
title?: string | undefined;
|
|
922
943
|
purpose?: string | undefined;
|
|
923
|
-
description?: string | undefined;
|
|
924
944
|
parentId?: string | undefined;
|
|
925
945
|
labels?: string[] | undefined;
|
|
926
946
|
due?: string | undefined;
|
|
@@ -931,9 +951,9 @@ export declare const schemas: {
|
|
|
931
951
|
nestId: string;
|
|
932
952
|
tensionId: string;
|
|
933
953
|
partId: string;
|
|
954
|
+
description?: string | undefined;
|
|
934
955
|
title?: string | undefined;
|
|
935
956
|
purpose?: string | undefined;
|
|
936
|
-
description?: string | undefined;
|
|
937
957
|
parentId?: string | undefined;
|
|
938
958
|
labels?: unknown;
|
|
939
959
|
due?: string | undefined;
|
|
@@ -974,14 +994,14 @@ export declare const schemas: {
|
|
|
974
994
|
title: z.ZodString;
|
|
975
995
|
labels: z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>;
|
|
976
996
|
}, "strip", z.ZodTypeAny, {
|
|
997
|
+
nestId: string;
|
|
977
998
|
title: string;
|
|
978
999
|
labels: string[];
|
|
979
|
-
nestId: string;
|
|
980
1000
|
tensionId: string;
|
|
981
1001
|
partId: string;
|
|
982
1002
|
}, {
|
|
983
|
-
title: string;
|
|
984
1003
|
nestId: string;
|
|
1004
|
+
title: string;
|
|
985
1005
|
tensionId: string;
|
|
986
1006
|
partId: string;
|
|
987
1007
|
labels?: unknown;
|
|
@@ -993,14 +1013,14 @@ export declare const schemas: {
|
|
|
993
1013
|
childId: z.ZodString;
|
|
994
1014
|
title: z.ZodString;
|
|
995
1015
|
}, "strip", z.ZodTypeAny, {
|
|
996
|
-
title: string;
|
|
997
1016
|
nestId: string;
|
|
1017
|
+
title: string;
|
|
998
1018
|
tensionId: string;
|
|
999
1019
|
partId: string;
|
|
1000
1020
|
childId: string;
|
|
1001
1021
|
}, {
|
|
1002
|
-
title: string;
|
|
1003
1022
|
nestId: string;
|
|
1023
|
+
title: string;
|
|
1004
1024
|
tensionId: string;
|
|
1005
1025
|
partId: string;
|
|
1006
1026
|
childId: string;
|
|
@@ -1134,6 +1154,112 @@ export declare const schemas: {
|
|
|
1134
1154
|
maxImages?: unknown;
|
|
1135
1155
|
}>;
|
|
1136
1156
|
diagnose: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
1157
|
+
listConnectors: z.ZodObject<{
|
|
1158
|
+
workspaceId: z.ZodString;
|
|
1159
|
+
}, "strip", z.ZodTypeAny, {
|
|
1160
|
+
workspaceId: string;
|
|
1161
|
+
}, {
|
|
1162
|
+
workspaceId: string;
|
|
1163
|
+
}>;
|
|
1164
|
+
registerConnector: z.ZodObject<{
|
|
1165
|
+
workspaceId: z.ZodString;
|
|
1166
|
+
type: z.ZodEnum<["mcp", "cli", "api"]>;
|
|
1167
|
+
name: z.ZodString;
|
|
1168
|
+
config: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1169
|
+
capabilities: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1170
|
+
exposure: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodString, z.ZodUnknown>, Record<string, unknown>, unknown>>;
|
|
1171
|
+
authStrategy: z.ZodOptional<z.ZodEnum<["secret", "oauth2"]>>;
|
|
1172
|
+
}, "strip", z.ZodTypeAny, {
|
|
1173
|
+
workspaceId: string;
|
|
1174
|
+
type: "mcp" | "cli" | "api";
|
|
1175
|
+
name: string;
|
|
1176
|
+
config?: Record<string, unknown> | undefined;
|
|
1177
|
+
capabilities?: Record<string, unknown> | undefined;
|
|
1178
|
+
exposure?: Record<string, unknown> | undefined;
|
|
1179
|
+
authStrategy?: "secret" | "oauth2" | undefined;
|
|
1180
|
+
}, {
|
|
1181
|
+
workspaceId: string;
|
|
1182
|
+
type: "mcp" | "cli" | "api";
|
|
1183
|
+
name: string;
|
|
1184
|
+
config?: unknown;
|
|
1185
|
+
capabilities?: unknown;
|
|
1186
|
+
exposure?: unknown;
|
|
1187
|
+
authStrategy?: "secret" | "oauth2" | undefined;
|
|
1188
|
+
}>;
|
|
1189
|
+
bindConnector: z.ZodObject<{
|
|
1190
|
+
workspaceId: z.ZodString;
|
|
1191
|
+
connectorId: z.ZodString;
|
|
1192
|
+
ownerType: z.ZodEnum<["user", "agent", "workspace", "role-domain"]>;
|
|
1193
|
+
ownerId: z.ZodString;
|
|
1194
|
+
}, "strip", z.ZodTypeAny, {
|
|
1195
|
+
workspaceId: string;
|
|
1196
|
+
connectorId: string;
|
|
1197
|
+
ownerType: "user" | "agent" | "workspace" | "role-domain";
|
|
1198
|
+
ownerId: string;
|
|
1199
|
+
}, {
|
|
1200
|
+
workspaceId: string;
|
|
1201
|
+
connectorId: string;
|
|
1202
|
+
ownerType: "user" | "agent" | "workspace" | "role-domain";
|
|
1203
|
+
ownerId: string;
|
|
1204
|
+
}>;
|
|
1205
|
+
getNestFiles: z.ZodObject<{
|
|
1206
|
+
nestId: z.ZodString;
|
|
1207
|
+
}, "strip", z.ZodTypeAny, {
|
|
1208
|
+
nestId: string;
|
|
1209
|
+
}, {
|
|
1210
|
+
nestId: string;
|
|
1211
|
+
}>;
|
|
1212
|
+
readFile: z.ZodObject<{
|
|
1213
|
+
nestId: z.ZodString;
|
|
1214
|
+
fileId: z.ZodString;
|
|
1215
|
+
}, "strip", z.ZodTypeAny, {
|
|
1216
|
+
nestId: string;
|
|
1217
|
+
fileId: string;
|
|
1218
|
+
}, {
|
|
1219
|
+
nestId: string;
|
|
1220
|
+
fileId: string;
|
|
1221
|
+
}>;
|
|
1222
|
+
uploadFile: z.ZodEffects<z.ZodObject<{
|
|
1223
|
+
nestId: z.ZodString;
|
|
1224
|
+
name: z.ZodString;
|
|
1225
|
+
contentType: z.ZodString;
|
|
1226
|
+
content: z.ZodOptional<z.ZodString>;
|
|
1227
|
+
dataBase64: z.ZodOptional<z.ZodString>;
|
|
1228
|
+
}, "strip", z.ZodTypeAny, {
|
|
1229
|
+
nestId: string;
|
|
1230
|
+
name: string;
|
|
1231
|
+
contentType: string;
|
|
1232
|
+
content?: string | undefined;
|
|
1233
|
+
dataBase64?: string | undefined;
|
|
1234
|
+
}, {
|
|
1235
|
+
nestId: string;
|
|
1236
|
+
name: string;
|
|
1237
|
+
contentType: string;
|
|
1238
|
+
content?: string | undefined;
|
|
1239
|
+
dataBase64?: string | undefined;
|
|
1240
|
+
}>, {
|
|
1241
|
+
nestId: string;
|
|
1242
|
+
name: string;
|
|
1243
|
+
contentType: string;
|
|
1244
|
+
content?: string | undefined;
|
|
1245
|
+
dataBase64?: string | undefined;
|
|
1246
|
+
}, {
|
|
1247
|
+
nestId: string;
|
|
1248
|
+
name: string;
|
|
1249
|
+
contentType: string;
|
|
1250
|
+
content?: string | undefined;
|
|
1251
|
+
dataBase64?: string | undefined;
|
|
1252
|
+
}>;
|
|
1253
|
+
deleteFile: z.ZodObject<{
|
|
1254
|
+
nestId: z.ZodString;
|
|
1255
|
+
fileId: z.ZodString;
|
|
1256
|
+
}, "strip", z.ZodTypeAny, {
|
|
1257
|
+
nestId: string;
|
|
1258
|
+
fileId: string;
|
|
1259
|
+
}, {
|
|
1260
|
+
nestId: string;
|
|
1261
|
+
fileId: string;
|
|
1262
|
+
}>;
|
|
1137
1263
|
};
|
|
1138
1264
|
export declare const toolDefinitions: ({
|
|
1139
1265
|
annotations: {
|
|
@@ -1217,6 +1343,7 @@ export declare const toolDefinitions: ({
|
|
|
1217
1343
|
relatedNestId?: undefined;
|
|
1218
1344
|
color?: undefined;
|
|
1219
1345
|
icon?: undefined;
|
|
1346
|
+
withUser?: undefined;
|
|
1220
1347
|
fullWorkspaces?: undefined;
|
|
1221
1348
|
context?: undefined;
|
|
1222
1349
|
skip?: undefined;
|
|
@@ -1234,6 +1361,18 @@ export declare const toolDefinitions: ({
|
|
|
1234
1361
|
relation?: undefined;
|
|
1235
1362
|
direction?: undefined;
|
|
1236
1363
|
targetId?: undefined;
|
|
1364
|
+
name?: undefined;
|
|
1365
|
+
config?: undefined;
|
|
1366
|
+
capabilities?: undefined;
|
|
1367
|
+
exposure?: undefined;
|
|
1368
|
+
authStrategy?: undefined;
|
|
1369
|
+
connectorId?: undefined;
|
|
1370
|
+
ownerType?: undefined;
|
|
1371
|
+
ownerId?: undefined;
|
|
1372
|
+
fileId?: undefined;
|
|
1373
|
+
contentType?: undefined;
|
|
1374
|
+
content?: undefined;
|
|
1375
|
+
dataBase64?: undefined;
|
|
1237
1376
|
};
|
|
1238
1377
|
required?: undefined;
|
|
1239
1378
|
};
|
|
@@ -1299,6 +1438,7 @@ export declare const toolDefinitions: ({
|
|
|
1299
1438
|
relatedNestId?: undefined;
|
|
1300
1439
|
color?: undefined;
|
|
1301
1440
|
icon?: undefined;
|
|
1441
|
+
withUser?: undefined;
|
|
1302
1442
|
fullWorkspaces?: undefined;
|
|
1303
1443
|
context?: undefined;
|
|
1304
1444
|
skip?: undefined;
|
|
@@ -1316,6 +1456,18 @@ export declare const toolDefinitions: ({
|
|
|
1316
1456
|
relation?: undefined;
|
|
1317
1457
|
direction?: undefined;
|
|
1318
1458
|
targetId?: undefined;
|
|
1459
|
+
name?: undefined;
|
|
1460
|
+
config?: undefined;
|
|
1461
|
+
capabilities?: undefined;
|
|
1462
|
+
exposure?: undefined;
|
|
1463
|
+
authStrategy?: undefined;
|
|
1464
|
+
connectorId?: undefined;
|
|
1465
|
+
ownerType?: undefined;
|
|
1466
|
+
ownerId?: undefined;
|
|
1467
|
+
fileId?: undefined;
|
|
1468
|
+
contentType?: undefined;
|
|
1469
|
+
content?: undefined;
|
|
1470
|
+
dataBase64?: undefined;
|
|
1319
1471
|
};
|
|
1320
1472
|
required?: undefined;
|
|
1321
1473
|
};
|
|
@@ -1396,6 +1548,7 @@ export declare const toolDefinitions: ({
|
|
|
1396
1548
|
relatedNestId?: undefined;
|
|
1397
1549
|
color?: undefined;
|
|
1398
1550
|
icon?: undefined;
|
|
1551
|
+
withUser?: undefined;
|
|
1399
1552
|
fullWorkspaces?: undefined;
|
|
1400
1553
|
context?: undefined;
|
|
1401
1554
|
skip?: undefined;
|
|
@@ -1413,6 +1566,18 @@ export declare const toolDefinitions: ({
|
|
|
1413
1566
|
relation?: undefined;
|
|
1414
1567
|
direction?: undefined;
|
|
1415
1568
|
targetId?: undefined;
|
|
1569
|
+
name?: undefined;
|
|
1570
|
+
config?: undefined;
|
|
1571
|
+
capabilities?: undefined;
|
|
1572
|
+
exposure?: undefined;
|
|
1573
|
+
authStrategy?: undefined;
|
|
1574
|
+
connectorId?: undefined;
|
|
1575
|
+
ownerType?: undefined;
|
|
1576
|
+
ownerId?: undefined;
|
|
1577
|
+
fileId?: undefined;
|
|
1578
|
+
contentType?: undefined;
|
|
1579
|
+
content?: undefined;
|
|
1580
|
+
dataBase64?: undefined;
|
|
1416
1581
|
};
|
|
1417
1582
|
required?: undefined;
|
|
1418
1583
|
};
|
|
@@ -1484,6 +1649,7 @@ export declare const toolDefinitions: ({
|
|
|
1484
1649
|
relatedNestId?: undefined;
|
|
1485
1650
|
color?: undefined;
|
|
1486
1651
|
icon?: undefined;
|
|
1652
|
+
withUser?: undefined;
|
|
1487
1653
|
fullWorkspaces?: undefined;
|
|
1488
1654
|
context?: undefined;
|
|
1489
1655
|
skip?: undefined;
|
|
@@ -1501,6 +1667,18 @@ export declare const toolDefinitions: ({
|
|
|
1501
1667
|
relation?: undefined;
|
|
1502
1668
|
direction?: undefined;
|
|
1503
1669
|
targetId?: undefined;
|
|
1670
|
+
name?: undefined;
|
|
1671
|
+
config?: undefined;
|
|
1672
|
+
capabilities?: undefined;
|
|
1673
|
+
exposure?: undefined;
|
|
1674
|
+
authStrategy?: undefined;
|
|
1675
|
+
connectorId?: undefined;
|
|
1676
|
+
ownerType?: undefined;
|
|
1677
|
+
ownerId?: undefined;
|
|
1678
|
+
fileId?: undefined;
|
|
1679
|
+
contentType?: undefined;
|
|
1680
|
+
content?: undefined;
|
|
1681
|
+
dataBase64?: undefined;
|
|
1504
1682
|
};
|
|
1505
1683
|
required: string[];
|
|
1506
1684
|
};
|
|
@@ -1595,6 +1773,7 @@ export declare const toolDefinitions: ({
|
|
|
1595
1773
|
relatedNestId?: undefined;
|
|
1596
1774
|
color?: undefined;
|
|
1597
1775
|
icon?: undefined;
|
|
1776
|
+
withUser?: undefined;
|
|
1598
1777
|
fullWorkspaces?: undefined;
|
|
1599
1778
|
context?: undefined;
|
|
1600
1779
|
skip?: undefined;
|
|
@@ -1612,6 +1791,18 @@ export declare const toolDefinitions: ({
|
|
|
1612
1791
|
relation?: undefined;
|
|
1613
1792
|
direction?: undefined;
|
|
1614
1793
|
targetId?: undefined;
|
|
1794
|
+
name?: undefined;
|
|
1795
|
+
config?: undefined;
|
|
1796
|
+
capabilities?: undefined;
|
|
1797
|
+
exposure?: undefined;
|
|
1798
|
+
authStrategy?: undefined;
|
|
1799
|
+
connectorId?: undefined;
|
|
1800
|
+
ownerType?: undefined;
|
|
1801
|
+
ownerId?: undefined;
|
|
1802
|
+
fileId?: undefined;
|
|
1803
|
+
contentType?: undefined;
|
|
1804
|
+
content?: undefined;
|
|
1805
|
+
dataBase64?: undefined;
|
|
1615
1806
|
};
|
|
1616
1807
|
required: string[];
|
|
1617
1808
|
};
|
|
@@ -1698,6 +1889,7 @@ export declare const toolDefinitions: ({
|
|
|
1698
1889
|
relatedNestId?: undefined;
|
|
1699
1890
|
color?: undefined;
|
|
1700
1891
|
icon?: undefined;
|
|
1892
|
+
withUser?: undefined;
|
|
1701
1893
|
fullWorkspaces?: undefined;
|
|
1702
1894
|
context?: undefined;
|
|
1703
1895
|
skip?: undefined;
|
|
@@ -1715,6 +1907,18 @@ export declare const toolDefinitions: ({
|
|
|
1715
1907
|
relation?: undefined;
|
|
1716
1908
|
direction?: undefined;
|
|
1717
1909
|
targetId?: undefined;
|
|
1910
|
+
name?: undefined;
|
|
1911
|
+
config?: undefined;
|
|
1912
|
+
capabilities?: undefined;
|
|
1913
|
+
exposure?: undefined;
|
|
1914
|
+
authStrategy?: undefined;
|
|
1915
|
+
connectorId?: undefined;
|
|
1916
|
+
ownerType?: undefined;
|
|
1917
|
+
ownerId?: undefined;
|
|
1918
|
+
fileId?: undefined;
|
|
1919
|
+
contentType?: undefined;
|
|
1920
|
+
content?: undefined;
|
|
1921
|
+
dataBase64?: undefined;
|
|
1718
1922
|
};
|
|
1719
1923
|
required: string[];
|
|
1720
1924
|
};
|
|
@@ -1792,6 +1996,7 @@ export declare const toolDefinitions: ({
|
|
|
1792
1996
|
relatedNestId?: undefined;
|
|
1793
1997
|
color?: undefined;
|
|
1794
1998
|
icon?: undefined;
|
|
1999
|
+
withUser?: undefined;
|
|
1795
2000
|
fullWorkspaces?: undefined;
|
|
1796
2001
|
context?: undefined;
|
|
1797
2002
|
skip?: undefined;
|
|
@@ -1809,6 +2014,18 @@ export declare const toolDefinitions: ({
|
|
|
1809
2014
|
relation?: undefined;
|
|
1810
2015
|
direction?: undefined;
|
|
1811
2016
|
targetId?: undefined;
|
|
2017
|
+
name?: undefined;
|
|
2018
|
+
config?: undefined;
|
|
2019
|
+
capabilities?: undefined;
|
|
2020
|
+
exposure?: undefined;
|
|
2021
|
+
authStrategy?: undefined;
|
|
2022
|
+
connectorId?: undefined;
|
|
2023
|
+
ownerType?: undefined;
|
|
2024
|
+
ownerId?: undefined;
|
|
2025
|
+
fileId?: undefined;
|
|
2026
|
+
contentType?: undefined;
|
|
2027
|
+
content?: undefined;
|
|
2028
|
+
dataBase64?: undefined;
|
|
1812
2029
|
};
|
|
1813
2030
|
required: string[];
|
|
1814
2031
|
};
|
|
@@ -1895,6 +2112,7 @@ export declare const toolDefinitions: ({
|
|
|
1895
2112
|
relatedNestId?: undefined;
|
|
1896
2113
|
color?: undefined;
|
|
1897
2114
|
icon?: undefined;
|
|
2115
|
+
withUser?: undefined;
|
|
1898
2116
|
fullWorkspaces?: undefined;
|
|
1899
2117
|
context?: undefined;
|
|
1900
2118
|
skip?: undefined;
|
|
@@ -1912,6 +2130,18 @@ export declare const toolDefinitions: ({
|
|
|
1912
2130
|
relation?: undefined;
|
|
1913
2131
|
direction?: undefined;
|
|
1914
2132
|
targetId?: undefined;
|
|
2133
|
+
name?: undefined;
|
|
2134
|
+
config?: undefined;
|
|
2135
|
+
capabilities?: undefined;
|
|
2136
|
+
exposure?: undefined;
|
|
2137
|
+
authStrategy?: undefined;
|
|
2138
|
+
connectorId?: undefined;
|
|
2139
|
+
ownerType?: undefined;
|
|
2140
|
+
ownerId?: undefined;
|
|
2141
|
+
fileId?: undefined;
|
|
2142
|
+
contentType?: undefined;
|
|
2143
|
+
content?: undefined;
|
|
2144
|
+
dataBase64?: undefined;
|
|
1915
2145
|
};
|
|
1916
2146
|
required: string[];
|
|
1917
2147
|
};
|
|
@@ -2019,6 +2249,7 @@ export declare const toolDefinitions: ({
|
|
|
2019
2249
|
relatedNestId?: undefined;
|
|
2020
2250
|
color?: undefined;
|
|
2021
2251
|
icon?: undefined;
|
|
2252
|
+
withUser?: undefined;
|
|
2022
2253
|
fullWorkspaces?: undefined;
|
|
2023
2254
|
context?: undefined;
|
|
2024
2255
|
skip?: undefined;
|
|
@@ -2036,6 +2267,18 @@ export declare const toolDefinitions: ({
|
|
|
2036
2267
|
relation?: undefined;
|
|
2037
2268
|
direction?: undefined;
|
|
2038
2269
|
targetId?: undefined;
|
|
2270
|
+
name?: undefined;
|
|
2271
|
+
config?: undefined;
|
|
2272
|
+
capabilities?: undefined;
|
|
2273
|
+
exposure?: undefined;
|
|
2274
|
+
authStrategy?: undefined;
|
|
2275
|
+
connectorId?: undefined;
|
|
2276
|
+
ownerType?: undefined;
|
|
2277
|
+
ownerId?: undefined;
|
|
2278
|
+
fileId?: undefined;
|
|
2279
|
+
contentType?: undefined;
|
|
2280
|
+
content?: undefined;
|
|
2281
|
+
dataBase64?: undefined;
|
|
2039
2282
|
};
|
|
2040
2283
|
required: string[];
|
|
2041
2284
|
};
|
|
@@ -2155,6 +2398,7 @@ export declare const toolDefinitions: ({
|
|
|
2155
2398
|
relatedNestId?: undefined;
|
|
2156
2399
|
color?: undefined;
|
|
2157
2400
|
icon?: undefined;
|
|
2401
|
+
withUser?: undefined;
|
|
2158
2402
|
fullWorkspaces?: undefined;
|
|
2159
2403
|
context?: undefined;
|
|
2160
2404
|
skip?: undefined;
|
|
@@ -2172,6 +2416,18 @@ export declare const toolDefinitions: ({
|
|
|
2172
2416
|
relation?: undefined;
|
|
2173
2417
|
direction?: undefined;
|
|
2174
2418
|
targetId?: undefined;
|
|
2419
|
+
name?: undefined;
|
|
2420
|
+
config?: undefined;
|
|
2421
|
+
capabilities?: undefined;
|
|
2422
|
+
exposure?: undefined;
|
|
2423
|
+
authStrategy?: undefined;
|
|
2424
|
+
connectorId?: undefined;
|
|
2425
|
+
ownerType?: undefined;
|
|
2426
|
+
ownerId?: undefined;
|
|
2427
|
+
fileId?: undefined;
|
|
2428
|
+
contentType?: undefined;
|
|
2429
|
+
content?: undefined;
|
|
2430
|
+
dataBase64?: undefined;
|
|
2175
2431
|
};
|
|
2176
2432
|
required: string[];
|
|
2177
2433
|
};
|
|
@@ -2240,6 +2496,7 @@ export declare const toolDefinitions: ({
|
|
|
2240
2496
|
relatedNestId?: undefined;
|
|
2241
2497
|
color?: undefined;
|
|
2242
2498
|
icon?: undefined;
|
|
2499
|
+
withUser?: undefined;
|
|
2243
2500
|
fullWorkspaces?: undefined;
|
|
2244
2501
|
context?: undefined;
|
|
2245
2502
|
skip?: undefined;
|
|
@@ -2257,6 +2514,18 @@ export declare const toolDefinitions: ({
|
|
|
2257
2514
|
relation?: undefined;
|
|
2258
2515
|
direction?: undefined;
|
|
2259
2516
|
targetId?: undefined;
|
|
2517
|
+
name?: undefined;
|
|
2518
|
+
config?: undefined;
|
|
2519
|
+
capabilities?: undefined;
|
|
2520
|
+
exposure?: undefined;
|
|
2521
|
+
authStrategy?: undefined;
|
|
2522
|
+
connectorId?: undefined;
|
|
2523
|
+
ownerType?: undefined;
|
|
2524
|
+
ownerId?: undefined;
|
|
2525
|
+
fileId?: undefined;
|
|
2526
|
+
contentType?: undefined;
|
|
2527
|
+
content?: undefined;
|
|
2528
|
+
dataBase64?: undefined;
|
|
2260
2529
|
};
|
|
2261
2530
|
required: string[];
|
|
2262
2531
|
};
|
|
@@ -2334,6 +2603,7 @@ export declare const toolDefinitions: ({
|
|
|
2334
2603
|
relatedNestId?: undefined;
|
|
2335
2604
|
color?: undefined;
|
|
2336
2605
|
icon?: undefined;
|
|
2606
|
+
withUser?: undefined;
|
|
2337
2607
|
fullWorkspaces?: undefined;
|
|
2338
2608
|
context?: undefined;
|
|
2339
2609
|
skip?: undefined;
|
|
@@ -2351,6 +2621,18 @@ export declare const toolDefinitions: ({
|
|
|
2351
2621
|
relation?: undefined;
|
|
2352
2622
|
direction?: undefined;
|
|
2353
2623
|
targetId?: undefined;
|
|
2624
|
+
name?: undefined;
|
|
2625
|
+
config?: undefined;
|
|
2626
|
+
capabilities?: undefined;
|
|
2627
|
+
exposure?: undefined;
|
|
2628
|
+
authStrategy?: undefined;
|
|
2629
|
+
connectorId?: undefined;
|
|
2630
|
+
ownerType?: undefined;
|
|
2631
|
+
ownerId?: undefined;
|
|
2632
|
+
fileId?: undefined;
|
|
2633
|
+
contentType?: undefined;
|
|
2634
|
+
content?: undefined;
|
|
2635
|
+
dataBase64?: undefined;
|
|
2354
2636
|
};
|
|
2355
2637
|
required: string[];
|
|
2356
2638
|
};
|
|
@@ -2428,6 +2710,7 @@ export declare const toolDefinitions: ({
|
|
|
2428
2710
|
relatedNestId?: undefined;
|
|
2429
2711
|
color?: undefined;
|
|
2430
2712
|
icon?: undefined;
|
|
2713
|
+
withUser?: undefined;
|
|
2431
2714
|
fullWorkspaces?: undefined;
|
|
2432
2715
|
context?: undefined;
|
|
2433
2716
|
skip?: undefined;
|
|
@@ -2445,6 +2728,18 @@ export declare const toolDefinitions: ({
|
|
|
2445
2728
|
relation?: undefined;
|
|
2446
2729
|
direction?: undefined;
|
|
2447
2730
|
targetId?: undefined;
|
|
2731
|
+
name?: undefined;
|
|
2732
|
+
config?: undefined;
|
|
2733
|
+
capabilities?: undefined;
|
|
2734
|
+
exposure?: undefined;
|
|
2735
|
+
authStrategy?: undefined;
|
|
2736
|
+
connectorId?: undefined;
|
|
2737
|
+
ownerType?: undefined;
|
|
2738
|
+
ownerId?: undefined;
|
|
2739
|
+
fileId?: undefined;
|
|
2740
|
+
contentType?: undefined;
|
|
2741
|
+
content?: undefined;
|
|
2742
|
+
dataBase64?: undefined;
|
|
2448
2743
|
};
|
|
2449
2744
|
required: string[];
|
|
2450
2745
|
};
|
|
@@ -2513,6 +2808,7 @@ export declare const toolDefinitions: ({
|
|
|
2513
2808
|
relatedNestId?: undefined;
|
|
2514
2809
|
color?: undefined;
|
|
2515
2810
|
icon?: undefined;
|
|
2811
|
+
withUser?: undefined;
|
|
2516
2812
|
fullWorkspaces?: undefined;
|
|
2517
2813
|
context?: undefined;
|
|
2518
2814
|
skip?: undefined;
|
|
@@ -2530,6 +2826,18 @@ export declare const toolDefinitions: ({
|
|
|
2530
2826
|
relation?: undefined;
|
|
2531
2827
|
direction?: undefined;
|
|
2532
2828
|
targetId?: undefined;
|
|
2829
|
+
name?: undefined;
|
|
2830
|
+
config?: undefined;
|
|
2831
|
+
capabilities?: undefined;
|
|
2832
|
+
exposure?: undefined;
|
|
2833
|
+
authStrategy?: undefined;
|
|
2834
|
+
connectorId?: undefined;
|
|
2835
|
+
ownerType?: undefined;
|
|
2836
|
+
ownerId?: undefined;
|
|
2837
|
+
fileId?: undefined;
|
|
2838
|
+
contentType?: undefined;
|
|
2839
|
+
content?: undefined;
|
|
2840
|
+
dataBase64?: undefined;
|
|
2533
2841
|
};
|
|
2534
2842
|
required: string[];
|
|
2535
2843
|
};
|
|
@@ -2610,6 +2918,7 @@ export declare const toolDefinitions: ({
|
|
|
2610
2918
|
relatedNestId?: undefined;
|
|
2611
2919
|
color?: undefined;
|
|
2612
2920
|
icon?: undefined;
|
|
2921
|
+
withUser?: undefined;
|
|
2613
2922
|
fullWorkspaces?: undefined;
|
|
2614
2923
|
context?: undefined;
|
|
2615
2924
|
skip?: undefined;
|
|
@@ -2627,6 +2936,18 @@ export declare const toolDefinitions: ({
|
|
|
2627
2936
|
relation?: undefined;
|
|
2628
2937
|
direction?: undefined;
|
|
2629
2938
|
targetId?: undefined;
|
|
2939
|
+
name?: undefined;
|
|
2940
|
+
config?: undefined;
|
|
2941
|
+
capabilities?: undefined;
|
|
2942
|
+
exposure?: undefined;
|
|
2943
|
+
authStrategy?: undefined;
|
|
2944
|
+
connectorId?: undefined;
|
|
2945
|
+
ownerType?: undefined;
|
|
2946
|
+
ownerId?: undefined;
|
|
2947
|
+
fileId?: undefined;
|
|
2948
|
+
contentType?: undefined;
|
|
2949
|
+
content?: undefined;
|
|
2950
|
+
dataBase64?: undefined;
|
|
2630
2951
|
};
|
|
2631
2952
|
required: string[];
|
|
2632
2953
|
};
|
|
@@ -2710,6 +3031,7 @@ export declare const toolDefinitions: ({
|
|
|
2710
3031
|
relatedNestId?: undefined;
|
|
2711
3032
|
color?: undefined;
|
|
2712
3033
|
icon?: undefined;
|
|
3034
|
+
withUser?: undefined;
|
|
2713
3035
|
fullWorkspaces?: undefined;
|
|
2714
3036
|
context?: undefined;
|
|
2715
3037
|
skip?: undefined;
|
|
@@ -2727,6 +3049,18 @@ export declare const toolDefinitions: ({
|
|
|
2727
3049
|
relation?: undefined;
|
|
2728
3050
|
direction?: undefined;
|
|
2729
3051
|
targetId?: undefined;
|
|
3052
|
+
name?: undefined;
|
|
3053
|
+
config?: undefined;
|
|
3054
|
+
capabilities?: undefined;
|
|
3055
|
+
exposure?: undefined;
|
|
3056
|
+
authStrategy?: undefined;
|
|
3057
|
+
connectorId?: undefined;
|
|
3058
|
+
ownerType?: undefined;
|
|
3059
|
+
ownerId?: undefined;
|
|
3060
|
+
fileId?: undefined;
|
|
3061
|
+
contentType?: undefined;
|
|
3062
|
+
content?: undefined;
|
|
3063
|
+
dataBase64?: undefined;
|
|
2730
3064
|
};
|
|
2731
3065
|
required: string[];
|
|
2732
3066
|
};
|
|
@@ -2807,6 +3141,7 @@ export declare const toolDefinitions: ({
|
|
|
2807
3141
|
relatedNestId?: undefined;
|
|
2808
3142
|
color?: undefined;
|
|
2809
3143
|
icon?: undefined;
|
|
3144
|
+
withUser?: undefined;
|
|
2810
3145
|
fullWorkspaces?: undefined;
|
|
2811
3146
|
context?: undefined;
|
|
2812
3147
|
skip?: undefined;
|
|
@@ -2824,6 +3159,18 @@ export declare const toolDefinitions: ({
|
|
|
2824
3159
|
relation?: undefined;
|
|
2825
3160
|
direction?: undefined;
|
|
2826
3161
|
targetId?: undefined;
|
|
3162
|
+
name?: undefined;
|
|
3163
|
+
config?: undefined;
|
|
3164
|
+
capabilities?: undefined;
|
|
3165
|
+
exposure?: undefined;
|
|
3166
|
+
authStrategy?: undefined;
|
|
3167
|
+
connectorId?: undefined;
|
|
3168
|
+
ownerType?: undefined;
|
|
3169
|
+
ownerId?: undefined;
|
|
3170
|
+
fileId?: undefined;
|
|
3171
|
+
contentType?: undefined;
|
|
3172
|
+
content?: undefined;
|
|
3173
|
+
dataBase64?: undefined;
|
|
2827
3174
|
};
|
|
2828
3175
|
required: string[];
|
|
2829
3176
|
};
|
|
@@ -2895,6 +3242,7 @@ export declare const toolDefinitions: ({
|
|
|
2895
3242
|
relatedNestId?: undefined;
|
|
2896
3243
|
color?: undefined;
|
|
2897
3244
|
icon?: undefined;
|
|
3245
|
+
withUser?: undefined;
|
|
2898
3246
|
fullWorkspaces?: undefined;
|
|
2899
3247
|
context?: undefined;
|
|
2900
3248
|
skip?: undefined;
|
|
@@ -2912,6 +3260,18 @@ export declare const toolDefinitions: ({
|
|
|
2912
3260
|
relation?: undefined;
|
|
2913
3261
|
direction?: undefined;
|
|
2914
3262
|
targetId?: undefined;
|
|
3263
|
+
name?: undefined;
|
|
3264
|
+
config?: undefined;
|
|
3265
|
+
capabilities?: undefined;
|
|
3266
|
+
exposure?: undefined;
|
|
3267
|
+
authStrategy?: undefined;
|
|
3268
|
+
connectorId?: undefined;
|
|
3269
|
+
ownerType?: undefined;
|
|
3270
|
+
ownerId?: undefined;
|
|
3271
|
+
fileId?: undefined;
|
|
3272
|
+
contentType?: undefined;
|
|
3273
|
+
content?: undefined;
|
|
3274
|
+
dataBase64?: undefined;
|
|
2915
3275
|
};
|
|
2916
3276
|
required: string[];
|
|
2917
3277
|
};
|
|
@@ -2989,6 +3349,7 @@ export declare const toolDefinitions: ({
|
|
|
2989
3349
|
relatedNestId?: undefined;
|
|
2990
3350
|
color?: undefined;
|
|
2991
3351
|
icon?: undefined;
|
|
3352
|
+
withUser?: undefined;
|
|
2992
3353
|
fullWorkspaces?: undefined;
|
|
2993
3354
|
context?: undefined;
|
|
2994
3355
|
skip?: undefined;
|
|
@@ -3006,6 +3367,18 @@ export declare const toolDefinitions: ({
|
|
|
3006
3367
|
relation?: undefined;
|
|
3007
3368
|
direction?: undefined;
|
|
3008
3369
|
targetId?: undefined;
|
|
3370
|
+
name?: undefined;
|
|
3371
|
+
config?: undefined;
|
|
3372
|
+
capabilities?: undefined;
|
|
3373
|
+
exposure?: undefined;
|
|
3374
|
+
authStrategy?: undefined;
|
|
3375
|
+
connectorId?: undefined;
|
|
3376
|
+
ownerType?: undefined;
|
|
3377
|
+
ownerId?: undefined;
|
|
3378
|
+
fileId?: undefined;
|
|
3379
|
+
contentType?: undefined;
|
|
3380
|
+
content?: undefined;
|
|
3381
|
+
dataBase64?: undefined;
|
|
3009
3382
|
};
|
|
3010
3383
|
required: string[];
|
|
3011
3384
|
};
|
|
@@ -3089,6 +3462,7 @@ export declare const toolDefinitions: ({
|
|
|
3089
3462
|
relatedNestId?: undefined;
|
|
3090
3463
|
color?: undefined;
|
|
3091
3464
|
icon?: undefined;
|
|
3465
|
+
withUser?: undefined;
|
|
3092
3466
|
fullWorkspaces?: undefined;
|
|
3093
3467
|
context?: undefined;
|
|
3094
3468
|
skip?: undefined;
|
|
@@ -3106,6 +3480,18 @@ export declare const toolDefinitions: ({
|
|
|
3106
3480
|
relation?: undefined;
|
|
3107
3481
|
direction?: undefined;
|
|
3108
3482
|
targetId?: undefined;
|
|
3483
|
+
name?: undefined;
|
|
3484
|
+
config?: undefined;
|
|
3485
|
+
capabilities?: undefined;
|
|
3486
|
+
exposure?: undefined;
|
|
3487
|
+
authStrategy?: undefined;
|
|
3488
|
+
connectorId?: undefined;
|
|
3489
|
+
ownerType?: undefined;
|
|
3490
|
+
ownerId?: undefined;
|
|
3491
|
+
fileId?: undefined;
|
|
3492
|
+
contentType?: undefined;
|
|
3493
|
+
content?: undefined;
|
|
3494
|
+
dataBase64?: undefined;
|
|
3109
3495
|
};
|
|
3110
3496
|
required: string[];
|
|
3111
3497
|
};
|
|
@@ -3188,6 +3574,7 @@ export declare const toolDefinitions: ({
|
|
|
3188
3574
|
relatedNestId?: undefined;
|
|
3189
3575
|
color?: undefined;
|
|
3190
3576
|
icon?: undefined;
|
|
3577
|
+
withUser?: undefined;
|
|
3191
3578
|
fullWorkspaces?: undefined;
|
|
3192
3579
|
context?: undefined;
|
|
3193
3580
|
skip?: undefined;
|
|
@@ -3205,6 +3592,18 @@ export declare const toolDefinitions: ({
|
|
|
3205
3592
|
relation?: undefined;
|
|
3206
3593
|
direction?: undefined;
|
|
3207
3594
|
targetId?: undefined;
|
|
3595
|
+
name?: undefined;
|
|
3596
|
+
config?: undefined;
|
|
3597
|
+
capabilities?: undefined;
|
|
3598
|
+
exposure?: undefined;
|
|
3599
|
+
authStrategy?: undefined;
|
|
3600
|
+
connectorId?: undefined;
|
|
3601
|
+
ownerType?: undefined;
|
|
3602
|
+
ownerId?: undefined;
|
|
3603
|
+
fileId?: undefined;
|
|
3604
|
+
contentType?: undefined;
|
|
3605
|
+
content?: undefined;
|
|
3606
|
+
dataBase64?: undefined;
|
|
3208
3607
|
};
|
|
3209
3608
|
required: string[];
|
|
3210
3609
|
};
|
|
@@ -3279,6 +3678,7 @@ export declare const toolDefinitions: ({
|
|
|
3279
3678
|
relatedNestId?: undefined;
|
|
3280
3679
|
color?: undefined;
|
|
3281
3680
|
icon?: undefined;
|
|
3681
|
+
withUser?: undefined;
|
|
3282
3682
|
fullWorkspaces?: undefined;
|
|
3283
3683
|
context?: undefined;
|
|
3284
3684
|
skip?: undefined;
|
|
@@ -3296,6 +3696,18 @@ export declare const toolDefinitions: ({
|
|
|
3296
3696
|
relation?: undefined;
|
|
3297
3697
|
direction?: undefined;
|
|
3298
3698
|
targetId?: undefined;
|
|
3699
|
+
name?: undefined;
|
|
3700
|
+
config?: undefined;
|
|
3701
|
+
capabilities?: undefined;
|
|
3702
|
+
exposure?: undefined;
|
|
3703
|
+
authStrategy?: undefined;
|
|
3704
|
+
connectorId?: undefined;
|
|
3705
|
+
ownerType?: undefined;
|
|
3706
|
+
ownerId?: undefined;
|
|
3707
|
+
fileId?: undefined;
|
|
3708
|
+
contentType?: undefined;
|
|
3709
|
+
content?: undefined;
|
|
3710
|
+
dataBase64?: undefined;
|
|
3299
3711
|
};
|
|
3300
3712
|
required: string[];
|
|
3301
3713
|
};
|
|
@@ -3367,6 +3779,7 @@ export declare const toolDefinitions: ({
|
|
|
3367
3779
|
relatedNestId?: undefined;
|
|
3368
3780
|
color?: undefined;
|
|
3369
3781
|
icon?: undefined;
|
|
3782
|
+
withUser?: undefined;
|
|
3370
3783
|
fullWorkspaces?: undefined;
|
|
3371
3784
|
context?: undefined;
|
|
3372
3785
|
skip?: undefined;
|
|
@@ -3384,6 +3797,18 @@ export declare const toolDefinitions: ({
|
|
|
3384
3797
|
relation?: undefined;
|
|
3385
3798
|
direction?: undefined;
|
|
3386
3799
|
targetId?: undefined;
|
|
3800
|
+
name?: undefined;
|
|
3801
|
+
config?: undefined;
|
|
3802
|
+
capabilities?: undefined;
|
|
3803
|
+
exposure?: undefined;
|
|
3804
|
+
authStrategy?: undefined;
|
|
3805
|
+
connectorId?: undefined;
|
|
3806
|
+
ownerType?: undefined;
|
|
3807
|
+
ownerId?: undefined;
|
|
3808
|
+
fileId?: undefined;
|
|
3809
|
+
contentType?: undefined;
|
|
3810
|
+
content?: undefined;
|
|
3811
|
+
dataBase64?: undefined;
|
|
3387
3812
|
};
|
|
3388
3813
|
required: string[];
|
|
3389
3814
|
};
|
|
@@ -3461,6 +3886,7 @@ export declare const toolDefinitions: ({
|
|
|
3461
3886
|
relatedNestId?: undefined;
|
|
3462
3887
|
color?: undefined;
|
|
3463
3888
|
icon?: undefined;
|
|
3889
|
+
withUser?: undefined;
|
|
3464
3890
|
fullWorkspaces?: undefined;
|
|
3465
3891
|
context?: undefined;
|
|
3466
3892
|
skip?: undefined;
|
|
@@ -3478,6 +3904,18 @@ export declare const toolDefinitions: ({
|
|
|
3478
3904
|
relation?: undefined;
|
|
3479
3905
|
direction?: undefined;
|
|
3480
3906
|
targetId?: undefined;
|
|
3907
|
+
name?: undefined;
|
|
3908
|
+
config?: undefined;
|
|
3909
|
+
capabilities?: undefined;
|
|
3910
|
+
exposure?: undefined;
|
|
3911
|
+
authStrategy?: undefined;
|
|
3912
|
+
connectorId?: undefined;
|
|
3913
|
+
ownerType?: undefined;
|
|
3914
|
+
ownerId?: undefined;
|
|
3915
|
+
fileId?: undefined;
|
|
3916
|
+
contentType?: undefined;
|
|
3917
|
+
content?: undefined;
|
|
3918
|
+
dataBase64?: undefined;
|
|
3481
3919
|
};
|
|
3482
3920
|
required: string[];
|
|
3483
3921
|
};
|
|
@@ -3549,6 +3987,7 @@ export declare const toolDefinitions: ({
|
|
|
3549
3987
|
relatedNestId?: undefined;
|
|
3550
3988
|
color?: undefined;
|
|
3551
3989
|
icon?: undefined;
|
|
3990
|
+
withUser?: undefined;
|
|
3552
3991
|
fullWorkspaces?: undefined;
|
|
3553
3992
|
context?: undefined;
|
|
3554
3993
|
skip?: undefined;
|
|
@@ -3566,6 +4005,18 @@ export declare const toolDefinitions: ({
|
|
|
3566
4005
|
relation?: undefined;
|
|
3567
4006
|
direction?: undefined;
|
|
3568
4007
|
targetId?: undefined;
|
|
4008
|
+
name?: undefined;
|
|
4009
|
+
config?: undefined;
|
|
4010
|
+
capabilities?: undefined;
|
|
4011
|
+
exposure?: undefined;
|
|
4012
|
+
authStrategy?: undefined;
|
|
4013
|
+
connectorId?: undefined;
|
|
4014
|
+
ownerType?: undefined;
|
|
4015
|
+
ownerId?: undefined;
|
|
4016
|
+
fileId?: undefined;
|
|
4017
|
+
contentType?: undefined;
|
|
4018
|
+
content?: undefined;
|
|
4019
|
+
dataBase64?: undefined;
|
|
3569
4020
|
};
|
|
3570
4021
|
required: string[];
|
|
3571
4022
|
};
|
|
@@ -3646,6 +4097,7 @@ export declare const toolDefinitions: ({
|
|
|
3646
4097
|
relatedNestId?: undefined;
|
|
3647
4098
|
color?: undefined;
|
|
3648
4099
|
icon?: undefined;
|
|
4100
|
+
withUser?: undefined;
|
|
3649
4101
|
fullWorkspaces?: undefined;
|
|
3650
4102
|
context?: undefined;
|
|
3651
4103
|
skip?: undefined;
|
|
@@ -3663,6 +4115,18 @@ export declare const toolDefinitions: ({
|
|
|
3663
4115
|
relation?: undefined;
|
|
3664
4116
|
direction?: undefined;
|
|
3665
4117
|
targetId?: undefined;
|
|
4118
|
+
name?: undefined;
|
|
4119
|
+
config?: undefined;
|
|
4120
|
+
capabilities?: undefined;
|
|
4121
|
+
exposure?: undefined;
|
|
4122
|
+
authStrategy?: undefined;
|
|
4123
|
+
connectorId?: undefined;
|
|
4124
|
+
ownerType?: undefined;
|
|
4125
|
+
ownerId?: undefined;
|
|
4126
|
+
fileId?: undefined;
|
|
4127
|
+
contentType?: undefined;
|
|
4128
|
+
content?: undefined;
|
|
4129
|
+
dataBase64?: undefined;
|
|
3666
4130
|
};
|
|
3667
4131
|
required: string[];
|
|
3668
4132
|
};
|
|
@@ -3731,6 +4195,7 @@ export declare const toolDefinitions: ({
|
|
|
3731
4195
|
relatedNestId?: undefined;
|
|
3732
4196
|
color?: undefined;
|
|
3733
4197
|
icon?: undefined;
|
|
4198
|
+
withUser?: undefined;
|
|
3734
4199
|
fullWorkspaces?: undefined;
|
|
3735
4200
|
context?: undefined;
|
|
3736
4201
|
skip?: undefined;
|
|
@@ -3748,6 +4213,18 @@ export declare const toolDefinitions: ({
|
|
|
3748
4213
|
relation?: undefined;
|
|
3749
4214
|
direction?: undefined;
|
|
3750
4215
|
targetId?: undefined;
|
|
4216
|
+
name?: undefined;
|
|
4217
|
+
config?: undefined;
|
|
4218
|
+
capabilities?: undefined;
|
|
4219
|
+
exposure?: undefined;
|
|
4220
|
+
authStrategy?: undefined;
|
|
4221
|
+
connectorId?: undefined;
|
|
4222
|
+
ownerType?: undefined;
|
|
4223
|
+
ownerId?: undefined;
|
|
4224
|
+
fileId?: undefined;
|
|
4225
|
+
contentType?: undefined;
|
|
4226
|
+
content?: undefined;
|
|
4227
|
+
dataBase64?: undefined;
|
|
3751
4228
|
};
|
|
3752
4229
|
required: string[];
|
|
3753
4230
|
};
|
|
@@ -3819,6 +4296,7 @@ export declare const toolDefinitions: ({
|
|
|
3819
4296
|
relatedNestId?: undefined;
|
|
3820
4297
|
color?: undefined;
|
|
3821
4298
|
icon?: undefined;
|
|
4299
|
+
withUser?: undefined;
|
|
3822
4300
|
fullWorkspaces?: undefined;
|
|
3823
4301
|
context?: undefined;
|
|
3824
4302
|
skip?: undefined;
|
|
@@ -3836,6 +4314,18 @@ export declare const toolDefinitions: ({
|
|
|
3836
4314
|
relation?: undefined;
|
|
3837
4315
|
direction?: undefined;
|
|
3838
4316
|
targetId?: undefined;
|
|
4317
|
+
name?: undefined;
|
|
4318
|
+
config?: undefined;
|
|
4319
|
+
capabilities?: undefined;
|
|
4320
|
+
exposure?: undefined;
|
|
4321
|
+
authStrategy?: undefined;
|
|
4322
|
+
connectorId?: undefined;
|
|
4323
|
+
ownerType?: undefined;
|
|
4324
|
+
ownerId?: undefined;
|
|
4325
|
+
fileId?: undefined;
|
|
4326
|
+
contentType?: undefined;
|
|
4327
|
+
content?: undefined;
|
|
4328
|
+
dataBase64?: undefined;
|
|
3839
4329
|
};
|
|
3840
4330
|
required?: undefined;
|
|
3841
4331
|
};
|
|
@@ -3912,6 +4402,7 @@ export declare const toolDefinitions: ({
|
|
|
3912
4402
|
relatedNestId?: undefined;
|
|
3913
4403
|
color?: undefined;
|
|
3914
4404
|
icon?: undefined;
|
|
4405
|
+
withUser?: undefined;
|
|
3915
4406
|
fullWorkspaces?: undefined;
|
|
3916
4407
|
context?: undefined;
|
|
3917
4408
|
skip?: undefined;
|
|
@@ -3929,6 +4420,18 @@ export declare const toolDefinitions: ({
|
|
|
3929
4420
|
relation?: undefined;
|
|
3930
4421
|
direction?: undefined;
|
|
3931
4422
|
targetId?: undefined;
|
|
4423
|
+
name?: undefined;
|
|
4424
|
+
config?: undefined;
|
|
4425
|
+
capabilities?: undefined;
|
|
4426
|
+
exposure?: undefined;
|
|
4427
|
+
authStrategy?: undefined;
|
|
4428
|
+
connectorId?: undefined;
|
|
4429
|
+
ownerType?: undefined;
|
|
4430
|
+
ownerId?: undefined;
|
|
4431
|
+
fileId?: undefined;
|
|
4432
|
+
contentType?: undefined;
|
|
4433
|
+
content?: undefined;
|
|
4434
|
+
dataBase64?: undefined;
|
|
3932
4435
|
};
|
|
3933
4436
|
required: string[];
|
|
3934
4437
|
};
|
|
@@ -4000,6 +4503,7 @@ export declare const toolDefinitions: ({
|
|
|
4000
4503
|
relatedNestId?: undefined;
|
|
4001
4504
|
color?: undefined;
|
|
4002
4505
|
icon?: undefined;
|
|
4506
|
+
withUser?: undefined;
|
|
4003
4507
|
fullWorkspaces?: undefined;
|
|
4004
4508
|
context?: undefined;
|
|
4005
4509
|
skip?: undefined;
|
|
@@ -4017,6 +4521,18 @@ export declare const toolDefinitions: ({
|
|
|
4017
4521
|
relation?: undefined;
|
|
4018
4522
|
direction?: undefined;
|
|
4019
4523
|
targetId?: undefined;
|
|
4524
|
+
name?: undefined;
|
|
4525
|
+
config?: undefined;
|
|
4526
|
+
capabilities?: undefined;
|
|
4527
|
+
exposure?: undefined;
|
|
4528
|
+
authStrategy?: undefined;
|
|
4529
|
+
connectorId?: undefined;
|
|
4530
|
+
ownerType?: undefined;
|
|
4531
|
+
ownerId?: undefined;
|
|
4532
|
+
fileId?: undefined;
|
|
4533
|
+
contentType?: undefined;
|
|
4534
|
+
content?: undefined;
|
|
4535
|
+
dataBase64?: undefined;
|
|
4020
4536
|
};
|
|
4021
4537
|
required: string[];
|
|
4022
4538
|
};
|
|
@@ -4097,6 +4613,7 @@ export declare const toolDefinitions: ({
|
|
|
4097
4613
|
relatedNestId?: undefined;
|
|
4098
4614
|
color?: undefined;
|
|
4099
4615
|
icon?: undefined;
|
|
4616
|
+
withUser?: undefined;
|
|
4100
4617
|
fullWorkspaces?: undefined;
|
|
4101
4618
|
context?: undefined;
|
|
4102
4619
|
skip?: undefined;
|
|
@@ -4114,6 +4631,18 @@ export declare const toolDefinitions: ({
|
|
|
4114
4631
|
relation?: undefined;
|
|
4115
4632
|
direction?: undefined;
|
|
4116
4633
|
targetId?: undefined;
|
|
4634
|
+
name?: undefined;
|
|
4635
|
+
config?: undefined;
|
|
4636
|
+
capabilities?: undefined;
|
|
4637
|
+
exposure?: undefined;
|
|
4638
|
+
authStrategy?: undefined;
|
|
4639
|
+
connectorId?: undefined;
|
|
4640
|
+
ownerType?: undefined;
|
|
4641
|
+
ownerId?: undefined;
|
|
4642
|
+
fileId?: undefined;
|
|
4643
|
+
contentType?: undefined;
|
|
4644
|
+
content?: undefined;
|
|
4645
|
+
dataBase64?: undefined;
|
|
4117
4646
|
};
|
|
4118
4647
|
required: string[];
|
|
4119
4648
|
};
|
|
@@ -4185,6 +4714,7 @@ export declare const toolDefinitions: ({
|
|
|
4185
4714
|
relatedNestId?: undefined;
|
|
4186
4715
|
color?: undefined;
|
|
4187
4716
|
icon?: undefined;
|
|
4717
|
+
withUser?: undefined;
|
|
4188
4718
|
fullWorkspaces?: undefined;
|
|
4189
4719
|
context?: undefined;
|
|
4190
4720
|
skip?: undefined;
|
|
@@ -4202,6 +4732,18 @@ export declare const toolDefinitions: ({
|
|
|
4202
4732
|
relation?: undefined;
|
|
4203
4733
|
direction?: undefined;
|
|
4204
4734
|
targetId?: undefined;
|
|
4735
|
+
name?: undefined;
|
|
4736
|
+
config?: undefined;
|
|
4737
|
+
capabilities?: undefined;
|
|
4738
|
+
exposure?: undefined;
|
|
4739
|
+
authStrategy?: undefined;
|
|
4740
|
+
connectorId?: undefined;
|
|
4741
|
+
ownerType?: undefined;
|
|
4742
|
+
ownerId?: undefined;
|
|
4743
|
+
fileId?: undefined;
|
|
4744
|
+
contentType?: undefined;
|
|
4745
|
+
content?: undefined;
|
|
4746
|
+
dataBase64?: undefined;
|
|
4205
4747
|
};
|
|
4206
4748
|
required: string[];
|
|
4207
4749
|
};
|
|
@@ -4277,6 +4819,7 @@ export declare const toolDefinitions: ({
|
|
|
4277
4819
|
nestIds?: undefined;
|
|
4278
4820
|
color?: undefined;
|
|
4279
4821
|
icon?: undefined;
|
|
4822
|
+
withUser?: undefined;
|
|
4280
4823
|
fullWorkspaces?: undefined;
|
|
4281
4824
|
context?: undefined;
|
|
4282
4825
|
skip?: undefined;
|
|
@@ -4294,6 +4837,18 @@ export declare const toolDefinitions: ({
|
|
|
4294
4837
|
relation?: undefined;
|
|
4295
4838
|
direction?: undefined;
|
|
4296
4839
|
targetId?: undefined;
|
|
4840
|
+
name?: undefined;
|
|
4841
|
+
config?: undefined;
|
|
4842
|
+
capabilities?: undefined;
|
|
4843
|
+
exposure?: undefined;
|
|
4844
|
+
authStrategy?: undefined;
|
|
4845
|
+
connectorId?: undefined;
|
|
4846
|
+
ownerType?: undefined;
|
|
4847
|
+
ownerId?: undefined;
|
|
4848
|
+
fileId?: undefined;
|
|
4849
|
+
contentType?: undefined;
|
|
4850
|
+
content?: undefined;
|
|
4851
|
+
dataBase64?: undefined;
|
|
4297
4852
|
};
|
|
4298
4853
|
required: string[];
|
|
4299
4854
|
};
|
|
@@ -4371,6 +4926,7 @@ export declare const toolDefinitions: ({
|
|
|
4371
4926
|
nestIds?: undefined;
|
|
4372
4927
|
position?: undefined;
|
|
4373
4928
|
relatedNestId?: undefined;
|
|
4929
|
+
withUser?: undefined;
|
|
4374
4930
|
fullWorkspaces?: undefined;
|
|
4375
4931
|
context?: undefined;
|
|
4376
4932
|
skip?: undefined;
|
|
@@ -4388,6 +4944,18 @@ export declare const toolDefinitions: ({
|
|
|
4388
4944
|
relation?: undefined;
|
|
4389
4945
|
direction?: undefined;
|
|
4390
4946
|
targetId?: undefined;
|
|
4947
|
+
name?: undefined;
|
|
4948
|
+
config?: undefined;
|
|
4949
|
+
capabilities?: undefined;
|
|
4950
|
+
exposure?: undefined;
|
|
4951
|
+
authStrategy?: undefined;
|
|
4952
|
+
connectorId?: undefined;
|
|
4953
|
+
ownerType?: undefined;
|
|
4954
|
+
ownerId?: undefined;
|
|
4955
|
+
fileId?: undefined;
|
|
4956
|
+
contentType?: undefined;
|
|
4957
|
+
content?: undefined;
|
|
4958
|
+
dataBase64?: undefined;
|
|
4391
4959
|
};
|
|
4392
4960
|
required: string[];
|
|
4393
4961
|
};
|
|
@@ -4462,6 +5030,7 @@ export declare const toolDefinitions: ({
|
|
|
4462
5030
|
relatedNestId?: undefined;
|
|
4463
5031
|
color?: undefined;
|
|
4464
5032
|
icon?: undefined;
|
|
5033
|
+
withUser?: undefined;
|
|
4465
5034
|
fullWorkspaces?: undefined;
|
|
4466
5035
|
context?: undefined;
|
|
4467
5036
|
skip?: undefined;
|
|
@@ -4479,6 +5048,18 @@ export declare const toolDefinitions: ({
|
|
|
4479
5048
|
relation?: undefined;
|
|
4480
5049
|
direction?: undefined;
|
|
4481
5050
|
targetId?: undefined;
|
|
5051
|
+
name?: undefined;
|
|
5052
|
+
config?: undefined;
|
|
5053
|
+
capabilities?: undefined;
|
|
5054
|
+
exposure?: undefined;
|
|
5055
|
+
authStrategy?: undefined;
|
|
5056
|
+
connectorId?: undefined;
|
|
5057
|
+
ownerType?: undefined;
|
|
5058
|
+
ownerId?: undefined;
|
|
5059
|
+
fileId?: undefined;
|
|
5060
|
+
contentType?: undefined;
|
|
5061
|
+
content?: undefined;
|
|
5062
|
+
dataBase64?: undefined;
|
|
4482
5063
|
};
|
|
4483
5064
|
required: string[];
|
|
4484
5065
|
};
|
|
@@ -4547,6 +5128,7 @@ export declare const toolDefinitions: ({
|
|
|
4547
5128
|
relatedNestId?: undefined;
|
|
4548
5129
|
color?: undefined;
|
|
4549
5130
|
icon?: undefined;
|
|
5131
|
+
withUser?: undefined;
|
|
4550
5132
|
fullWorkspaces?: undefined;
|
|
4551
5133
|
context?: undefined;
|
|
4552
5134
|
skip?: undefined;
|
|
@@ -4564,6 +5146,18 @@ export declare const toolDefinitions: ({
|
|
|
4564
5146
|
relation?: undefined;
|
|
4565
5147
|
direction?: undefined;
|
|
4566
5148
|
targetId?: undefined;
|
|
5149
|
+
name?: undefined;
|
|
5150
|
+
config?: undefined;
|
|
5151
|
+
capabilities?: undefined;
|
|
5152
|
+
exposure?: undefined;
|
|
5153
|
+
authStrategy?: undefined;
|
|
5154
|
+
connectorId?: undefined;
|
|
5155
|
+
ownerType?: undefined;
|
|
5156
|
+
ownerId?: undefined;
|
|
5157
|
+
fileId?: undefined;
|
|
5158
|
+
contentType?: undefined;
|
|
5159
|
+
content?: undefined;
|
|
5160
|
+
dataBase64?: undefined;
|
|
4567
5161
|
};
|
|
4568
5162
|
required?: undefined;
|
|
4569
5163
|
};
|
|
@@ -4582,11 +5176,11 @@ export declare const toolDefinitions: ({
|
|
|
4582
5176
|
inputSchema: {
|
|
4583
5177
|
type: "object";
|
|
4584
5178
|
properties: {
|
|
4585
|
-
|
|
5179
|
+
limit: {
|
|
4586
5180
|
type: string;
|
|
4587
5181
|
description: string;
|
|
4588
5182
|
};
|
|
4589
|
-
|
|
5183
|
+
withUser: {
|
|
4590
5184
|
type: string;
|
|
4591
5185
|
description: string;
|
|
4592
5186
|
};
|
|
@@ -4596,7 +5190,6 @@ export declare const toolDefinitions: ({
|
|
|
4596
5190
|
imageIndexes?: undefined;
|
|
4597
5191
|
maxImages?: undefined;
|
|
4598
5192
|
sort?: undefined;
|
|
4599
|
-
limit?: undefined;
|
|
4600
5193
|
page?: undefined;
|
|
4601
5194
|
stripDescription?: undefined;
|
|
4602
5195
|
workspaceId?: undefined;
|
|
@@ -4609,6 +5202,7 @@ export declare const toolDefinitions: ({
|
|
|
4609
5202
|
layout?: undefined;
|
|
4610
5203
|
query?: undefined;
|
|
4611
5204
|
_listTitle?: undefined;
|
|
5205
|
+
nestId?: undefined;
|
|
4612
5206
|
fieldsMetaData?: undefined;
|
|
4613
5207
|
hints?: undefined;
|
|
4614
5208
|
parentId?: undefined;
|
|
@@ -4632,6 +5226,7 @@ export declare const toolDefinitions: ({
|
|
|
4632
5226
|
username?: undefined;
|
|
4633
5227
|
fullName?: undefined;
|
|
4634
5228
|
language?: undefined;
|
|
5229
|
+
labelId?: undefined;
|
|
4635
5230
|
from?: undefined;
|
|
4636
5231
|
to?: undefined;
|
|
4637
5232
|
completedAfter?: undefined;
|
|
@@ -4657,8 +5252,20 @@ export declare const toolDefinitions: ({
|
|
|
4657
5252
|
relation?: undefined;
|
|
4658
5253
|
direction?: undefined;
|
|
4659
5254
|
targetId?: undefined;
|
|
5255
|
+
name?: undefined;
|
|
5256
|
+
config?: undefined;
|
|
5257
|
+
capabilities?: undefined;
|
|
5258
|
+
exposure?: undefined;
|
|
5259
|
+
authStrategy?: undefined;
|
|
5260
|
+
connectorId?: undefined;
|
|
5261
|
+
ownerType?: undefined;
|
|
5262
|
+
ownerId?: undefined;
|
|
5263
|
+
fileId?: undefined;
|
|
5264
|
+
contentType?: undefined;
|
|
5265
|
+
content?: undefined;
|
|
5266
|
+
dataBase64?: undefined;
|
|
4660
5267
|
};
|
|
4661
|
-
required
|
|
5268
|
+
required?: undefined;
|
|
4662
5269
|
};
|
|
4663
5270
|
} | {
|
|
4664
5271
|
annotations: {
|
|
@@ -4670,7 +5277,11 @@ export declare const toolDefinitions: ({
|
|
|
4670
5277
|
inputSchema: {
|
|
4671
5278
|
type: "object";
|
|
4672
5279
|
properties: {
|
|
4673
|
-
|
|
5280
|
+
userId: {
|
|
5281
|
+
type: string;
|
|
5282
|
+
description: string;
|
|
5283
|
+
};
|
|
5284
|
+
limit: {
|
|
4674
5285
|
type: string;
|
|
4675
5286
|
description: string;
|
|
4676
5287
|
};
|
|
@@ -4680,7 +5291,6 @@ export declare const toolDefinitions: ({
|
|
|
4680
5291
|
imageIndexes?: undefined;
|
|
4681
5292
|
maxImages?: undefined;
|
|
4682
5293
|
sort?: undefined;
|
|
4683
|
-
limit?: undefined;
|
|
4684
5294
|
page?: undefined;
|
|
4685
5295
|
stripDescription?: undefined;
|
|
4686
5296
|
workspaceId?: undefined;
|
|
@@ -4710,7 +5320,6 @@ export declare const toolDefinitions: ({
|
|
|
4710
5320
|
commentId?: undefined;
|
|
4711
5321
|
circleId?: undefined;
|
|
4712
5322
|
includeSubCircles?: undefined;
|
|
4713
|
-
userId?: undefined;
|
|
4714
5323
|
endDate?: undefined;
|
|
4715
5324
|
metricId?: undefined;
|
|
4716
5325
|
depth?: undefined;
|
|
@@ -4726,6 +5335,8 @@ export declare const toolDefinitions: ({
|
|
|
4726
5335
|
relatedNestId?: undefined;
|
|
4727
5336
|
color?: undefined;
|
|
4728
5337
|
icon?: undefined;
|
|
5338
|
+
withUser?: undefined;
|
|
5339
|
+
fullWorkspaces?: undefined;
|
|
4729
5340
|
context?: undefined;
|
|
4730
5341
|
skip?: undefined;
|
|
4731
5342
|
showRead?: undefined;
|
|
@@ -4742,8 +5353,20 @@ export declare const toolDefinitions: ({
|
|
|
4742
5353
|
relation?: undefined;
|
|
4743
5354
|
direction?: undefined;
|
|
4744
5355
|
targetId?: undefined;
|
|
5356
|
+
name?: undefined;
|
|
5357
|
+
config?: undefined;
|
|
5358
|
+
capabilities?: undefined;
|
|
5359
|
+
exposure?: undefined;
|
|
5360
|
+
authStrategy?: undefined;
|
|
5361
|
+
connectorId?: undefined;
|
|
5362
|
+
ownerType?: undefined;
|
|
5363
|
+
ownerId?: undefined;
|
|
5364
|
+
fileId?: undefined;
|
|
5365
|
+
contentType?: undefined;
|
|
5366
|
+
content?: undefined;
|
|
5367
|
+
dataBase64?: undefined;
|
|
4745
5368
|
};
|
|
4746
|
-
required
|
|
5369
|
+
required: string[];
|
|
4747
5370
|
};
|
|
4748
5371
|
} | {
|
|
4749
5372
|
annotations: {
|
|
@@ -4755,7 +5378,11 @@ export declare const toolDefinitions: ({
|
|
|
4755
5378
|
inputSchema: {
|
|
4756
5379
|
type: "object";
|
|
4757
5380
|
properties: {
|
|
4758
|
-
|
|
5381
|
+
nestId: {
|
|
5382
|
+
type: string;
|
|
5383
|
+
description: string;
|
|
5384
|
+
};
|
|
5385
|
+
labelId: {
|
|
4759
5386
|
type: string;
|
|
4760
5387
|
description: string;
|
|
4761
5388
|
};
|
|
@@ -4778,7 +5405,6 @@ export declare const toolDefinitions: ({
|
|
|
4778
5405
|
layout?: undefined;
|
|
4779
5406
|
query?: undefined;
|
|
4780
5407
|
_listTitle?: undefined;
|
|
4781
|
-
nestId?: undefined;
|
|
4782
5408
|
fieldsMetaData?: undefined;
|
|
4783
5409
|
hints?: undefined;
|
|
4784
5410
|
parentId?: undefined;
|
|
@@ -4802,7 +5428,6 @@ export declare const toolDefinitions: ({
|
|
|
4802
5428
|
username?: undefined;
|
|
4803
5429
|
fullName?: undefined;
|
|
4804
5430
|
language?: undefined;
|
|
4805
|
-
labelId?: undefined;
|
|
4806
5431
|
from?: undefined;
|
|
4807
5432
|
to?: undefined;
|
|
4808
5433
|
completedAfter?: undefined;
|
|
@@ -4811,7 +5436,9 @@ export declare const toolDefinitions: ({
|
|
|
4811
5436
|
relatedNestId?: undefined;
|
|
4812
5437
|
color?: undefined;
|
|
4813
5438
|
icon?: undefined;
|
|
5439
|
+
withUser?: undefined;
|
|
4814
5440
|
fullWorkspaces?: undefined;
|
|
5441
|
+
context?: undefined;
|
|
4815
5442
|
skip?: undefined;
|
|
4816
5443
|
showRead?: undefined;
|
|
4817
5444
|
group?: undefined;
|
|
@@ -4827,8 +5454,20 @@ export declare const toolDefinitions: ({
|
|
|
4827
5454
|
relation?: undefined;
|
|
4828
5455
|
direction?: undefined;
|
|
4829
5456
|
targetId?: undefined;
|
|
5457
|
+
name?: undefined;
|
|
5458
|
+
config?: undefined;
|
|
5459
|
+
capabilities?: undefined;
|
|
5460
|
+
exposure?: undefined;
|
|
5461
|
+
authStrategy?: undefined;
|
|
5462
|
+
connectorId?: undefined;
|
|
5463
|
+
ownerType?: undefined;
|
|
5464
|
+
ownerId?: undefined;
|
|
5465
|
+
fileId?: undefined;
|
|
5466
|
+
contentType?: undefined;
|
|
5467
|
+
content?: undefined;
|
|
5468
|
+
dataBase64?: undefined;
|
|
4830
5469
|
};
|
|
4831
|
-
required
|
|
5470
|
+
required: string[];
|
|
4832
5471
|
};
|
|
4833
5472
|
} | {
|
|
4834
5473
|
annotations: {
|
|
@@ -4840,24 +5479,7 @@ export declare const toolDefinitions: ({
|
|
|
4840
5479
|
inputSchema: {
|
|
4841
5480
|
type: "object";
|
|
4842
5481
|
properties: {
|
|
4843
|
-
|
|
4844
|
-
type: string;
|
|
4845
|
-
enum: string[];
|
|
4846
|
-
description: string;
|
|
4847
|
-
};
|
|
4848
|
-
limit: {
|
|
4849
|
-
type: string;
|
|
4850
|
-
description: string;
|
|
4851
|
-
};
|
|
4852
|
-
skip: {
|
|
4853
|
-
type: string;
|
|
4854
|
-
description: string;
|
|
4855
|
-
};
|
|
4856
|
-
showRead: {
|
|
4857
|
-
type: string;
|
|
4858
|
-
description: string;
|
|
4859
|
-
};
|
|
4860
|
-
group: {
|
|
5482
|
+
fullWorkspaces: {
|
|
4861
5483
|
type: string;
|
|
4862
5484
|
description: string;
|
|
4863
5485
|
};
|
|
@@ -4867,11 +5489,13 @@ export declare const toolDefinitions: ({
|
|
|
4867
5489
|
imageIndexes?: undefined;
|
|
4868
5490
|
maxImages?: undefined;
|
|
4869
5491
|
sort?: undefined;
|
|
5492
|
+
limit?: undefined;
|
|
4870
5493
|
page?: undefined;
|
|
4871
5494
|
stripDescription?: undefined;
|
|
4872
5495
|
workspaceId?: undefined;
|
|
4873
5496
|
title?: undefined;
|
|
4874
5497
|
purpose?: undefined;
|
|
5498
|
+
type?: undefined;
|
|
4875
5499
|
governance?: undefined;
|
|
4876
5500
|
plan?: undefined;
|
|
4877
5501
|
apps?: undefined;
|
|
@@ -4911,8 +5535,11 @@ export declare const toolDefinitions: ({
|
|
|
4911
5535
|
relatedNestId?: undefined;
|
|
4912
5536
|
color?: undefined;
|
|
4913
5537
|
icon?: undefined;
|
|
4914
|
-
|
|
5538
|
+
withUser?: undefined;
|
|
4915
5539
|
context?: undefined;
|
|
5540
|
+
skip?: undefined;
|
|
5541
|
+
showRead?: undefined;
|
|
5542
|
+
group?: undefined;
|
|
4916
5543
|
feeling?: undefined;
|
|
4917
5544
|
needs?: undefined;
|
|
4918
5545
|
tensionId?: undefined;
|
|
@@ -4925,6 +5552,18 @@ export declare const toolDefinitions: ({
|
|
|
4925
5552
|
relation?: undefined;
|
|
4926
5553
|
direction?: undefined;
|
|
4927
5554
|
targetId?: undefined;
|
|
5555
|
+
name?: undefined;
|
|
5556
|
+
config?: undefined;
|
|
5557
|
+
capabilities?: undefined;
|
|
5558
|
+
exposure?: undefined;
|
|
5559
|
+
authStrategy?: undefined;
|
|
5560
|
+
connectorId?: undefined;
|
|
5561
|
+
ownerType?: undefined;
|
|
5562
|
+
ownerId?: undefined;
|
|
5563
|
+
fileId?: undefined;
|
|
5564
|
+
contentType?: undefined;
|
|
5565
|
+
content?: undefined;
|
|
5566
|
+
dataBase64?: undefined;
|
|
4928
5567
|
};
|
|
4929
5568
|
required?: undefined;
|
|
4930
5569
|
};
|
|
@@ -4938,23 +5577,7 @@ export declare const toolDefinitions: ({
|
|
|
4938
5577
|
inputSchema: {
|
|
4939
5578
|
type: "object";
|
|
4940
5579
|
properties: {
|
|
4941
|
-
|
|
4942
|
-
type: string;
|
|
4943
|
-
description: string;
|
|
4944
|
-
};
|
|
4945
|
-
title: {
|
|
4946
|
-
type: string;
|
|
4947
|
-
description: string;
|
|
4948
|
-
};
|
|
4949
|
-
description: {
|
|
4950
|
-
type: string;
|
|
4951
|
-
description: string;
|
|
4952
|
-
};
|
|
4953
|
-
feeling: {
|
|
4954
|
-
type: string;
|
|
4955
|
-
description: string;
|
|
4956
|
-
};
|
|
4957
|
-
needs: {
|
|
5580
|
+
context: {
|
|
4958
5581
|
type: string;
|
|
4959
5582
|
description: string;
|
|
4960
5583
|
};
|
|
@@ -4968,6 +5591,7 @@ export declare const toolDefinitions: ({
|
|
|
4968
5591
|
page?: undefined;
|
|
4969
5592
|
stripDescription?: undefined;
|
|
4970
5593
|
workspaceId?: undefined;
|
|
5594
|
+
title?: undefined;
|
|
4971
5595
|
purpose?: undefined;
|
|
4972
5596
|
type?: undefined;
|
|
4973
5597
|
governance?: undefined;
|
|
@@ -4976,9 +5600,11 @@ export declare const toolDefinitions: ({
|
|
|
4976
5600
|
layout?: undefined;
|
|
4977
5601
|
query?: undefined;
|
|
4978
5602
|
_listTitle?: undefined;
|
|
5603
|
+
nestId?: undefined;
|
|
4979
5604
|
fieldsMetaData?: undefined;
|
|
4980
5605
|
hints?: undefined;
|
|
4981
5606
|
parentId?: undefined;
|
|
5607
|
+
description?: undefined;
|
|
4982
5608
|
labels?: undefined;
|
|
4983
5609
|
fields?: undefined;
|
|
4984
5610
|
users?: undefined;
|
|
@@ -5007,11 +5633,13 @@ export declare const toolDefinitions: ({
|
|
|
5007
5633
|
relatedNestId?: undefined;
|
|
5008
5634
|
color?: undefined;
|
|
5009
5635
|
icon?: undefined;
|
|
5636
|
+
withUser?: undefined;
|
|
5010
5637
|
fullWorkspaces?: undefined;
|
|
5011
|
-
context?: undefined;
|
|
5012
5638
|
skip?: undefined;
|
|
5013
5639
|
showRead?: undefined;
|
|
5014
5640
|
group?: undefined;
|
|
5641
|
+
feeling?: undefined;
|
|
5642
|
+
needs?: undefined;
|
|
5015
5643
|
tensionId?: undefined;
|
|
5016
5644
|
_id?: undefined;
|
|
5017
5645
|
roleId?: undefined;
|
|
@@ -5022,8 +5650,20 @@ export declare const toolDefinitions: ({
|
|
|
5022
5650
|
relation?: undefined;
|
|
5023
5651
|
direction?: undefined;
|
|
5024
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;
|
|
5025
5665
|
};
|
|
5026
|
-
required
|
|
5666
|
+
required?: undefined;
|
|
5027
5667
|
};
|
|
5028
5668
|
} | {
|
|
5029
5669
|
annotations: {
|
|
@@ -5035,11 +5675,24 @@ export declare const toolDefinitions: ({
|
|
|
5035
5675
|
inputSchema: {
|
|
5036
5676
|
type: "object";
|
|
5037
5677
|
properties: {
|
|
5038
|
-
|
|
5678
|
+
type: {
|
|
5039
5679
|
type: string;
|
|
5680
|
+
enum: string[];
|
|
5040
5681
|
description: string;
|
|
5041
5682
|
};
|
|
5042
|
-
|
|
5683
|
+
limit: {
|
|
5684
|
+
type: string;
|
|
5685
|
+
description: string;
|
|
5686
|
+
};
|
|
5687
|
+
skip: {
|
|
5688
|
+
type: string;
|
|
5689
|
+
description: string;
|
|
5690
|
+
};
|
|
5691
|
+
showRead: {
|
|
5692
|
+
type: string;
|
|
5693
|
+
description: string;
|
|
5694
|
+
};
|
|
5695
|
+
group: {
|
|
5043
5696
|
type: string;
|
|
5044
5697
|
description: string;
|
|
5045
5698
|
};
|
|
@@ -5049,19 +5702,18 @@ export declare const toolDefinitions: ({
|
|
|
5049
5702
|
imageIndexes?: undefined;
|
|
5050
5703
|
maxImages?: undefined;
|
|
5051
5704
|
sort?: undefined;
|
|
5052
|
-
limit?: undefined;
|
|
5053
5705
|
page?: undefined;
|
|
5054
5706
|
stripDescription?: undefined;
|
|
5055
5707
|
workspaceId?: undefined;
|
|
5056
5708
|
title?: undefined;
|
|
5057
5709
|
purpose?: undefined;
|
|
5058
|
-
type?: undefined;
|
|
5059
5710
|
governance?: undefined;
|
|
5060
5711
|
plan?: undefined;
|
|
5061
5712
|
apps?: undefined;
|
|
5062
5713
|
layout?: undefined;
|
|
5063
5714
|
query?: undefined;
|
|
5064
5715
|
_listTitle?: undefined;
|
|
5716
|
+
nestId?: undefined;
|
|
5065
5717
|
fieldsMetaData?: undefined;
|
|
5066
5718
|
hints?: undefined;
|
|
5067
5719
|
parentId?: undefined;
|
|
@@ -5094,13 +5746,12 @@ export declare const toolDefinitions: ({
|
|
|
5094
5746
|
relatedNestId?: undefined;
|
|
5095
5747
|
color?: undefined;
|
|
5096
5748
|
icon?: undefined;
|
|
5749
|
+
withUser?: undefined;
|
|
5097
5750
|
fullWorkspaces?: undefined;
|
|
5098
5751
|
context?: undefined;
|
|
5099
|
-
skip?: undefined;
|
|
5100
|
-
showRead?: undefined;
|
|
5101
|
-
group?: undefined;
|
|
5102
5752
|
feeling?: undefined;
|
|
5103
5753
|
needs?: undefined;
|
|
5754
|
+
tensionId?: undefined;
|
|
5104
5755
|
_id?: undefined;
|
|
5105
5756
|
roleId?: undefined;
|
|
5106
5757
|
removeNest?: undefined;
|
|
@@ -5110,8 +5761,20 @@ export declare const toolDefinitions: ({
|
|
|
5110
5761
|
relation?: undefined;
|
|
5111
5762
|
direction?: undefined;
|
|
5112
5763
|
targetId?: undefined;
|
|
5764
|
+
name?: undefined;
|
|
5765
|
+
config?: undefined;
|
|
5766
|
+
capabilities?: undefined;
|
|
5767
|
+
exposure?: undefined;
|
|
5768
|
+
authStrategy?: undefined;
|
|
5769
|
+
connectorId?: undefined;
|
|
5770
|
+
ownerType?: undefined;
|
|
5771
|
+
ownerId?: undefined;
|
|
5772
|
+
fileId?: undefined;
|
|
5773
|
+
contentType?: undefined;
|
|
5774
|
+
content?: undefined;
|
|
5775
|
+
dataBase64?: undefined;
|
|
5113
5776
|
};
|
|
5114
|
-
required
|
|
5777
|
+
required?: undefined;
|
|
5115
5778
|
};
|
|
5116
5779
|
} | {
|
|
5117
5780
|
annotations: {
|
|
@@ -5127,19 +5790,230 @@ export declare const toolDefinitions: ({
|
|
|
5127
5790
|
type: string;
|
|
5128
5791
|
description: string;
|
|
5129
5792
|
};
|
|
5130
|
-
|
|
5793
|
+
title: {
|
|
5131
5794
|
type: string;
|
|
5132
5795
|
description: string;
|
|
5133
5796
|
};
|
|
5134
|
-
|
|
5797
|
+
description: {
|
|
5135
5798
|
type: string;
|
|
5136
5799
|
description: string;
|
|
5137
5800
|
};
|
|
5138
|
-
|
|
5801
|
+
feeling: {
|
|
5139
5802
|
type: string;
|
|
5140
5803
|
description: string;
|
|
5141
5804
|
};
|
|
5142
|
-
|
|
5805
|
+
needs: {
|
|
5806
|
+
type: string;
|
|
5807
|
+
description: string;
|
|
5808
|
+
};
|
|
5809
|
+
topic?: undefined;
|
|
5810
|
+
search?: undefined;
|
|
5811
|
+
includeImages?: undefined;
|
|
5812
|
+
imageIndexes?: undefined;
|
|
5813
|
+
maxImages?: undefined;
|
|
5814
|
+
sort?: undefined;
|
|
5815
|
+
limit?: undefined;
|
|
5816
|
+
page?: undefined;
|
|
5817
|
+
stripDescription?: undefined;
|
|
5818
|
+
workspaceId?: undefined;
|
|
5819
|
+
purpose?: undefined;
|
|
5820
|
+
type?: undefined;
|
|
5821
|
+
governance?: undefined;
|
|
5822
|
+
plan?: undefined;
|
|
5823
|
+
apps?: undefined;
|
|
5824
|
+
layout?: undefined;
|
|
5825
|
+
query?: undefined;
|
|
5826
|
+
_listTitle?: undefined;
|
|
5827
|
+
fieldsMetaData?: undefined;
|
|
5828
|
+
hints?: undefined;
|
|
5829
|
+
parentId?: undefined;
|
|
5830
|
+
labels?: undefined;
|
|
5831
|
+
fields?: undefined;
|
|
5832
|
+
users?: undefined;
|
|
5833
|
+
accountabilities?: undefined;
|
|
5834
|
+
domains?: undefined;
|
|
5835
|
+
data?: undefined;
|
|
5836
|
+
due?: undefined;
|
|
5837
|
+
completed?: undefined;
|
|
5838
|
+
body?: undefined;
|
|
5839
|
+
commentId?: undefined;
|
|
5840
|
+
circleId?: undefined;
|
|
5841
|
+
includeSubCircles?: undefined;
|
|
5842
|
+
userId?: undefined;
|
|
5843
|
+
endDate?: undefined;
|
|
5844
|
+
metricId?: undefined;
|
|
5845
|
+
depth?: undefined;
|
|
5846
|
+
username?: undefined;
|
|
5847
|
+
fullName?: undefined;
|
|
5848
|
+
language?: undefined;
|
|
5849
|
+
labelId?: undefined;
|
|
5850
|
+
from?: undefined;
|
|
5851
|
+
to?: undefined;
|
|
5852
|
+
completedAfter?: undefined;
|
|
5853
|
+
nestIds?: undefined;
|
|
5854
|
+
position?: undefined;
|
|
5855
|
+
relatedNestId?: undefined;
|
|
5856
|
+
color?: undefined;
|
|
5857
|
+
icon?: undefined;
|
|
5858
|
+
withUser?: undefined;
|
|
5859
|
+
fullWorkspaces?: undefined;
|
|
5860
|
+
context?: undefined;
|
|
5861
|
+
skip?: undefined;
|
|
5862
|
+
showRead?: undefined;
|
|
5863
|
+
group?: undefined;
|
|
5864
|
+
tensionId?: undefined;
|
|
5865
|
+
_id?: undefined;
|
|
5866
|
+
roleId?: undefined;
|
|
5867
|
+
removeNest?: undefined;
|
|
5868
|
+
partId?: undefined;
|
|
5869
|
+
childId?: undefined;
|
|
5870
|
+
status?: undefined;
|
|
5871
|
+
relation?: undefined;
|
|
5872
|
+
direction?: undefined;
|
|
5873
|
+
targetId?: undefined;
|
|
5874
|
+
name?: undefined;
|
|
5875
|
+
config?: undefined;
|
|
5876
|
+
capabilities?: undefined;
|
|
5877
|
+
exposure?: undefined;
|
|
5878
|
+
authStrategy?: undefined;
|
|
5879
|
+
connectorId?: undefined;
|
|
5880
|
+
ownerType?: undefined;
|
|
5881
|
+
ownerId?: undefined;
|
|
5882
|
+
fileId?: undefined;
|
|
5883
|
+
contentType?: undefined;
|
|
5884
|
+
content?: undefined;
|
|
5885
|
+
dataBase64?: undefined;
|
|
5886
|
+
};
|
|
5887
|
+
required: string[];
|
|
5888
|
+
};
|
|
5889
|
+
} | {
|
|
5890
|
+
annotations: {
|
|
5891
|
+
readOnlyHint: boolean;
|
|
5892
|
+
destructiveHint: boolean;
|
|
5893
|
+
};
|
|
5894
|
+
name: string;
|
|
5895
|
+
description: string;
|
|
5896
|
+
inputSchema: {
|
|
5897
|
+
type: "object";
|
|
5898
|
+
properties: {
|
|
5899
|
+
nestId: {
|
|
5900
|
+
type: string;
|
|
5901
|
+
description: string;
|
|
5902
|
+
};
|
|
5903
|
+
tensionId: {
|
|
5904
|
+
type: string;
|
|
5905
|
+
description: string;
|
|
5906
|
+
};
|
|
5907
|
+
topic?: undefined;
|
|
5908
|
+
search?: undefined;
|
|
5909
|
+
includeImages?: undefined;
|
|
5910
|
+
imageIndexes?: undefined;
|
|
5911
|
+
maxImages?: undefined;
|
|
5912
|
+
sort?: undefined;
|
|
5913
|
+
limit?: undefined;
|
|
5914
|
+
page?: undefined;
|
|
5915
|
+
stripDescription?: undefined;
|
|
5916
|
+
workspaceId?: undefined;
|
|
5917
|
+
title?: undefined;
|
|
5918
|
+
purpose?: undefined;
|
|
5919
|
+
type?: undefined;
|
|
5920
|
+
governance?: undefined;
|
|
5921
|
+
plan?: undefined;
|
|
5922
|
+
apps?: undefined;
|
|
5923
|
+
layout?: undefined;
|
|
5924
|
+
query?: undefined;
|
|
5925
|
+
_listTitle?: undefined;
|
|
5926
|
+
fieldsMetaData?: undefined;
|
|
5927
|
+
hints?: undefined;
|
|
5928
|
+
parentId?: undefined;
|
|
5929
|
+
description?: undefined;
|
|
5930
|
+
labels?: undefined;
|
|
5931
|
+
fields?: undefined;
|
|
5932
|
+
users?: undefined;
|
|
5933
|
+
accountabilities?: undefined;
|
|
5934
|
+
domains?: undefined;
|
|
5935
|
+
data?: undefined;
|
|
5936
|
+
due?: undefined;
|
|
5937
|
+
completed?: undefined;
|
|
5938
|
+
body?: undefined;
|
|
5939
|
+
commentId?: undefined;
|
|
5940
|
+
circleId?: undefined;
|
|
5941
|
+
includeSubCircles?: undefined;
|
|
5942
|
+
userId?: undefined;
|
|
5943
|
+
endDate?: undefined;
|
|
5944
|
+
metricId?: undefined;
|
|
5945
|
+
depth?: undefined;
|
|
5946
|
+
username?: undefined;
|
|
5947
|
+
fullName?: undefined;
|
|
5948
|
+
language?: undefined;
|
|
5949
|
+
labelId?: undefined;
|
|
5950
|
+
from?: undefined;
|
|
5951
|
+
to?: undefined;
|
|
5952
|
+
completedAfter?: undefined;
|
|
5953
|
+
nestIds?: undefined;
|
|
5954
|
+
position?: undefined;
|
|
5955
|
+
relatedNestId?: undefined;
|
|
5956
|
+
color?: undefined;
|
|
5957
|
+
icon?: undefined;
|
|
5958
|
+
withUser?: undefined;
|
|
5959
|
+
fullWorkspaces?: undefined;
|
|
5960
|
+
context?: undefined;
|
|
5961
|
+
skip?: undefined;
|
|
5962
|
+
showRead?: undefined;
|
|
5963
|
+
group?: undefined;
|
|
5964
|
+
feeling?: undefined;
|
|
5965
|
+
needs?: undefined;
|
|
5966
|
+
_id?: undefined;
|
|
5967
|
+
roleId?: undefined;
|
|
5968
|
+
removeNest?: undefined;
|
|
5969
|
+
partId?: undefined;
|
|
5970
|
+
childId?: undefined;
|
|
5971
|
+
status?: undefined;
|
|
5972
|
+
relation?: undefined;
|
|
5973
|
+
direction?: undefined;
|
|
5974
|
+
targetId?: undefined;
|
|
5975
|
+
name?: undefined;
|
|
5976
|
+
config?: undefined;
|
|
5977
|
+
capabilities?: undefined;
|
|
5978
|
+
exposure?: undefined;
|
|
5979
|
+
authStrategy?: undefined;
|
|
5980
|
+
connectorId?: undefined;
|
|
5981
|
+
ownerType?: undefined;
|
|
5982
|
+
ownerId?: undefined;
|
|
5983
|
+
fileId?: undefined;
|
|
5984
|
+
contentType?: undefined;
|
|
5985
|
+
content?: undefined;
|
|
5986
|
+
dataBase64?: undefined;
|
|
5987
|
+
};
|
|
5988
|
+
required: string[];
|
|
5989
|
+
};
|
|
5990
|
+
} | {
|
|
5991
|
+
annotations: {
|
|
5992
|
+
readOnlyHint: boolean;
|
|
5993
|
+
destructiveHint: boolean;
|
|
5994
|
+
};
|
|
5995
|
+
name: string;
|
|
5996
|
+
description: string;
|
|
5997
|
+
inputSchema: {
|
|
5998
|
+
type: "object";
|
|
5999
|
+
properties: {
|
|
6000
|
+
nestId: {
|
|
6001
|
+
type: string;
|
|
6002
|
+
description: string;
|
|
6003
|
+
};
|
|
6004
|
+
search: {
|
|
6005
|
+
type: string;
|
|
6006
|
+
description: string;
|
|
6007
|
+
};
|
|
6008
|
+
sort: {
|
|
6009
|
+
type: string;
|
|
6010
|
+
description: string;
|
|
6011
|
+
};
|
|
6012
|
+
limit: {
|
|
6013
|
+
type: string;
|
|
6014
|
+
description: string;
|
|
6015
|
+
};
|
|
6016
|
+
page: {
|
|
5143
6017
|
type: string;
|
|
5144
6018
|
description: string;
|
|
5145
6019
|
};
|
|
@@ -5190,6 +6064,7 @@ export declare const toolDefinitions: ({
|
|
|
5190
6064
|
relatedNestId?: undefined;
|
|
5191
6065
|
color?: undefined;
|
|
5192
6066
|
icon?: undefined;
|
|
6067
|
+
withUser?: undefined;
|
|
5193
6068
|
fullWorkspaces?: undefined;
|
|
5194
6069
|
context?: undefined;
|
|
5195
6070
|
skip?: undefined;
|
|
@@ -5207,6 +6082,18 @@ export declare const toolDefinitions: ({
|
|
|
5207
6082
|
relation?: undefined;
|
|
5208
6083
|
direction?: undefined;
|
|
5209
6084
|
targetId?: undefined;
|
|
6085
|
+
name?: undefined;
|
|
6086
|
+
config?: undefined;
|
|
6087
|
+
capabilities?: undefined;
|
|
6088
|
+
exposure?: undefined;
|
|
6089
|
+
authStrategy?: undefined;
|
|
6090
|
+
connectorId?: undefined;
|
|
6091
|
+
ownerType?: undefined;
|
|
6092
|
+
ownerId?: undefined;
|
|
6093
|
+
fileId?: undefined;
|
|
6094
|
+
contentType?: undefined;
|
|
6095
|
+
content?: undefined;
|
|
6096
|
+
dataBase64?: undefined;
|
|
5210
6097
|
};
|
|
5211
6098
|
required: string[];
|
|
5212
6099
|
};
|
|
@@ -5293,6 +6180,7 @@ export declare const toolDefinitions: ({
|
|
|
5293
6180
|
relatedNestId?: undefined;
|
|
5294
6181
|
color?: undefined;
|
|
5295
6182
|
icon?: undefined;
|
|
6183
|
+
withUser?: undefined;
|
|
5296
6184
|
fullWorkspaces?: undefined;
|
|
5297
6185
|
context?: undefined;
|
|
5298
6186
|
skip?: undefined;
|
|
@@ -5307,6 +6195,18 @@ export declare const toolDefinitions: ({
|
|
|
5307
6195
|
relation?: undefined;
|
|
5308
6196
|
direction?: undefined;
|
|
5309
6197
|
targetId?: undefined;
|
|
6198
|
+
name?: undefined;
|
|
6199
|
+
config?: undefined;
|
|
6200
|
+
capabilities?: undefined;
|
|
6201
|
+
exposure?: undefined;
|
|
6202
|
+
authStrategy?: undefined;
|
|
6203
|
+
connectorId?: undefined;
|
|
6204
|
+
ownerType?: undefined;
|
|
6205
|
+
ownerId?: undefined;
|
|
6206
|
+
fileId?: undefined;
|
|
6207
|
+
contentType?: undefined;
|
|
6208
|
+
content?: undefined;
|
|
6209
|
+
dataBase64?: undefined;
|
|
5310
6210
|
};
|
|
5311
6211
|
required: string[];
|
|
5312
6212
|
};
|
|
@@ -5430,6 +6330,7 @@ export declare const toolDefinitions: ({
|
|
|
5430
6330
|
relatedNestId?: undefined;
|
|
5431
6331
|
color?: undefined;
|
|
5432
6332
|
icon?: undefined;
|
|
6333
|
+
withUser?: undefined;
|
|
5433
6334
|
fullWorkspaces?: undefined;
|
|
5434
6335
|
context?: undefined;
|
|
5435
6336
|
skip?: undefined;
|
|
@@ -5443,6 +6344,18 @@ export declare const toolDefinitions: ({
|
|
|
5443
6344
|
relation?: undefined;
|
|
5444
6345
|
direction?: undefined;
|
|
5445
6346
|
targetId?: undefined;
|
|
6347
|
+
name?: undefined;
|
|
6348
|
+
config?: undefined;
|
|
6349
|
+
capabilities?: undefined;
|
|
6350
|
+
exposure?: undefined;
|
|
6351
|
+
authStrategy?: undefined;
|
|
6352
|
+
connectorId?: undefined;
|
|
6353
|
+
ownerType?: undefined;
|
|
6354
|
+
ownerId?: undefined;
|
|
6355
|
+
fileId?: undefined;
|
|
6356
|
+
contentType?: undefined;
|
|
6357
|
+
content?: undefined;
|
|
6358
|
+
dataBase64?: undefined;
|
|
5446
6359
|
};
|
|
5447
6360
|
required: string[];
|
|
5448
6361
|
};
|
|
@@ -5558,6 +6471,7 @@ export declare const toolDefinitions: ({
|
|
|
5558
6471
|
relatedNestId?: undefined;
|
|
5559
6472
|
color?: undefined;
|
|
5560
6473
|
icon?: undefined;
|
|
6474
|
+
withUser?: undefined;
|
|
5561
6475
|
fullWorkspaces?: undefined;
|
|
5562
6476
|
context?: undefined;
|
|
5563
6477
|
skip?: undefined;
|
|
@@ -5573,6 +6487,18 @@ export declare const toolDefinitions: ({
|
|
|
5573
6487
|
relation?: undefined;
|
|
5574
6488
|
direction?: undefined;
|
|
5575
6489
|
targetId?: undefined;
|
|
6490
|
+
name?: undefined;
|
|
6491
|
+
config?: undefined;
|
|
6492
|
+
capabilities?: undefined;
|
|
6493
|
+
exposure?: undefined;
|
|
6494
|
+
authStrategy?: undefined;
|
|
6495
|
+
connectorId?: undefined;
|
|
6496
|
+
ownerType?: undefined;
|
|
6497
|
+
ownerId?: undefined;
|
|
6498
|
+
fileId?: undefined;
|
|
6499
|
+
contentType?: undefined;
|
|
6500
|
+
content?: undefined;
|
|
6501
|
+
dataBase64?: undefined;
|
|
5576
6502
|
};
|
|
5577
6503
|
required: string[];
|
|
5578
6504
|
};
|
|
@@ -5649,6 +6575,7 @@ export declare const toolDefinitions: ({
|
|
|
5649
6575
|
relatedNestId?: undefined;
|
|
5650
6576
|
color?: undefined;
|
|
5651
6577
|
icon?: undefined;
|
|
6578
|
+
withUser?: undefined;
|
|
5652
6579
|
fullWorkspaces?: undefined;
|
|
5653
6580
|
context?: undefined;
|
|
5654
6581
|
skip?: undefined;
|
|
@@ -5664,6 +6591,18 @@ export declare const toolDefinitions: ({
|
|
|
5664
6591
|
relation?: undefined;
|
|
5665
6592
|
direction?: undefined;
|
|
5666
6593
|
targetId?: undefined;
|
|
6594
|
+
name?: undefined;
|
|
6595
|
+
config?: undefined;
|
|
6596
|
+
capabilities?: undefined;
|
|
6597
|
+
exposure?: undefined;
|
|
6598
|
+
authStrategy?: undefined;
|
|
6599
|
+
connectorId?: undefined;
|
|
6600
|
+
ownerType?: undefined;
|
|
6601
|
+
ownerId?: undefined;
|
|
6602
|
+
fileId?: undefined;
|
|
6603
|
+
contentType?: undefined;
|
|
6604
|
+
content?: undefined;
|
|
6605
|
+
dataBase64?: undefined;
|
|
5667
6606
|
};
|
|
5668
6607
|
required: string[];
|
|
5669
6608
|
};
|
|
@@ -5736,6 +6675,7 @@ export declare const toolDefinitions: ({
|
|
|
5736
6675
|
relatedNestId?: undefined;
|
|
5737
6676
|
color?: undefined;
|
|
5738
6677
|
icon?: undefined;
|
|
6678
|
+
withUser?: undefined;
|
|
5739
6679
|
fullWorkspaces?: undefined;
|
|
5740
6680
|
context?: undefined;
|
|
5741
6681
|
skip?: undefined;
|
|
@@ -5751,6 +6691,18 @@ export declare const toolDefinitions: ({
|
|
|
5751
6691
|
relation?: undefined;
|
|
5752
6692
|
direction?: undefined;
|
|
5753
6693
|
targetId?: undefined;
|
|
6694
|
+
name?: undefined;
|
|
6695
|
+
config?: undefined;
|
|
6696
|
+
capabilities?: undefined;
|
|
6697
|
+
exposure?: undefined;
|
|
6698
|
+
authStrategy?: undefined;
|
|
6699
|
+
connectorId?: undefined;
|
|
6700
|
+
ownerType?: undefined;
|
|
6701
|
+
ownerId?: undefined;
|
|
6702
|
+
fileId?: undefined;
|
|
6703
|
+
contentType?: undefined;
|
|
6704
|
+
content?: undefined;
|
|
6705
|
+
dataBase64?: undefined;
|
|
5754
6706
|
};
|
|
5755
6707
|
required: string[];
|
|
5756
6708
|
};
|
|
@@ -5832,6 +6784,7 @@ export declare const toolDefinitions: ({
|
|
|
5832
6784
|
relatedNestId?: undefined;
|
|
5833
6785
|
color?: undefined;
|
|
5834
6786
|
icon?: undefined;
|
|
6787
|
+
withUser?: undefined;
|
|
5835
6788
|
fullWorkspaces?: undefined;
|
|
5836
6789
|
context?: undefined;
|
|
5837
6790
|
skip?: undefined;
|
|
@@ -5847,6 +6800,18 @@ export declare const toolDefinitions: ({
|
|
|
5847
6800
|
relation?: undefined;
|
|
5848
6801
|
direction?: undefined;
|
|
5849
6802
|
targetId?: undefined;
|
|
6803
|
+
name?: undefined;
|
|
6804
|
+
config?: undefined;
|
|
6805
|
+
capabilities?: undefined;
|
|
6806
|
+
exposure?: undefined;
|
|
6807
|
+
authStrategy?: undefined;
|
|
6808
|
+
connectorId?: undefined;
|
|
6809
|
+
ownerType?: undefined;
|
|
6810
|
+
ownerId?: undefined;
|
|
6811
|
+
fileId?: undefined;
|
|
6812
|
+
contentType?: undefined;
|
|
6813
|
+
content?: undefined;
|
|
6814
|
+
dataBase64?: undefined;
|
|
5850
6815
|
};
|
|
5851
6816
|
required: string[];
|
|
5852
6817
|
};
|
|
@@ -5926,6 +6891,7 @@ export declare const toolDefinitions: ({
|
|
|
5926
6891
|
relatedNestId?: undefined;
|
|
5927
6892
|
color?: undefined;
|
|
5928
6893
|
icon?: undefined;
|
|
6894
|
+
withUser?: undefined;
|
|
5929
6895
|
fullWorkspaces?: undefined;
|
|
5930
6896
|
context?: undefined;
|
|
5931
6897
|
skip?: undefined;
|
|
@@ -5940,6 +6906,18 @@ export declare const toolDefinitions: ({
|
|
|
5940
6906
|
relation?: undefined;
|
|
5941
6907
|
direction?: undefined;
|
|
5942
6908
|
targetId?: undefined;
|
|
6909
|
+
name?: undefined;
|
|
6910
|
+
config?: undefined;
|
|
6911
|
+
capabilities?: undefined;
|
|
6912
|
+
exposure?: undefined;
|
|
6913
|
+
authStrategy?: undefined;
|
|
6914
|
+
connectorId?: undefined;
|
|
6915
|
+
ownerType?: undefined;
|
|
6916
|
+
ownerId?: undefined;
|
|
6917
|
+
fileId?: undefined;
|
|
6918
|
+
contentType?: undefined;
|
|
6919
|
+
content?: undefined;
|
|
6920
|
+
dataBase64?: undefined;
|
|
5943
6921
|
};
|
|
5944
6922
|
required: string[];
|
|
5945
6923
|
};
|
|
@@ -6016,6 +6994,7 @@ export declare const toolDefinitions: ({
|
|
|
6016
6994
|
relatedNestId?: undefined;
|
|
6017
6995
|
color?: undefined;
|
|
6018
6996
|
icon?: undefined;
|
|
6997
|
+
withUser?: undefined;
|
|
6019
6998
|
fullWorkspaces?: undefined;
|
|
6020
6999
|
context?: undefined;
|
|
6021
7000
|
skip?: undefined;
|
|
@@ -6030,6 +7009,18 @@ export declare const toolDefinitions: ({
|
|
|
6030
7009
|
relation?: undefined;
|
|
6031
7010
|
direction?: undefined;
|
|
6032
7011
|
targetId?: undefined;
|
|
7012
|
+
name?: undefined;
|
|
7013
|
+
config?: undefined;
|
|
7014
|
+
capabilities?: undefined;
|
|
7015
|
+
exposure?: undefined;
|
|
7016
|
+
authStrategy?: undefined;
|
|
7017
|
+
connectorId?: undefined;
|
|
7018
|
+
ownerType?: undefined;
|
|
7019
|
+
ownerId?: undefined;
|
|
7020
|
+
fileId?: undefined;
|
|
7021
|
+
contentType?: undefined;
|
|
7022
|
+
content?: undefined;
|
|
7023
|
+
dataBase64?: undefined;
|
|
6033
7024
|
};
|
|
6034
7025
|
required: string[];
|
|
6035
7026
|
};
|
|
@@ -6107,6 +7098,7 @@ export declare const toolDefinitions: ({
|
|
|
6107
7098
|
relatedNestId?: undefined;
|
|
6108
7099
|
color?: undefined;
|
|
6109
7100
|
icon?: undefined;
|
|
7101
|
+
withUser?: undefined;
|
|
6110
7102
|
fullWorkspaces?: undefined;
|
|
6111
7103
|
context?: undefined;
|
|
6112
7104
|
skip?: undefined;
|
|
@@ -6122,6 +7114,18 @@ export declare const toolDefinitions: ({
|
|
|
6122
7114
|
relation?: undefined;
|
|
6123
7115
|
direction?: undefined;
|
|
6124
7116
|
targetId?: undefined;
|
|
7117
|
+
name?: undefined;
|
|
7118
|
+
config?: undefined;
|
|
7119
|
+
capabilities?: undefined;
|
|
7120
|
+
exposure?: undefined;
|
|
7121
|
+
authStrategy?: undefined;
|
|
7122
|
+
connectorId?: undefined;
|
|
7123
|
+
ownerType?: undefined;
|
|
7124
|
+
ownerId?: undefined;
|
|
7125
|
+
fileId?: undefined;
|
|
7126
|
+
contentType?: undefined;
|
|
7127
|
+
content?: undefined;
|
|
7128
|
+
dataBase64?: undefined;
|
|
6125
7129
|
};
|
|
6126
7130
|
required: string[];
|
|
6127
7131
|
};
|
|
@@ -6205,6 +7209,7 @@ export declare const toolDefinitions: ({
|
|
|
6205
7209
|
relatedNestId?: undefined;
|
|
6206
7210
|
color?: undefined;
|
|
6207
7211
|
icon?: undefined;
|
|
7212
|
+
withUser?: undefined;
|
|
6208
7213
|
fullWorkspaces?: undefined;
|
|
6209
7214
|
context?: undefined;
|
|
6210
7215
|
skip?: undefined;
|
|
@@ -6220,6 +7225,18 @@ export declare const toolDefinitions: ({
|
|
|
6220
7225
|
childId?: undefined;
|
|
6221
7226
|
status?: undefined;
|
|
6222
7227
|
targetId?: undefined;
|
|
7228
|
+
name?: undefined;
|
|
7229
|
+
config?: undefined;
|
|
7230
|
+
capabilities?: undefined;
|
|
7231
|
+
exposure?: undefined;
|
|
7232
|
+
authStrategy?: undefined;
|
|
7233
|
+
connectorId?: undefined;
|
|
7234
|
+
ownerType?: undefined;
|
|
7235
|
+
ownerId?: undefined;
|
|
7236
|
+
fileId?: undefined;
|
|
7237
|
+
contentType?: undefined;
|
|
7238
|
+
content?: undefined;
|
|
7239
|
+
dataBase64?: undefined;
|
|
6223
7240
|
};
|
|
6224
7241
|
required: string[];
|
|
6225
7242
|
};
|
|
@@ -6296,6 +7313,7 @@ export declare const toolDefinitions: ({
|
|
|
6296
7313
|
relatedNestId?: undefined;
|
|
6297
7314
|
color?: undefined;
|
|
6298
7315
|
icon?: undefined;
|
|
7316
|
+
withUser?: undefined;
|
|
6299
7317
|
fullWorkspaces?: undefined;
|
|
6300
7318
|
context?: undefined;
|
|
6301
7319
|
skip?: undefined;
|
|
@@ -6311,6 +7329,455 @@ export declare const toolDefinitions: ({
|
|
|
6311
7329
|
childId?: undefined;
|
|
6312
7330
|
status?: undefined;
|
|
6313
7331
|
direction?: undefined;
|
|
7332
|
+
name?: undefined;
|
|
7333
|
+
config?: undefined;
|
|
7334
|
+
capabilities?: undefined;
|
|
7335
|
+
exposure?: undefined;
|
|
7336
|
+
authStrategy?: undefined;
|
|
7337
|
+
connectorId?: undefined;
|
|
7338
|
+
ownerType?: undefined;
|
|
7339
|
+
ownerId?: undefined;
|
|
7340
|
+
fileId?: undefined;
|
|
7341
|
+
contentType?: undefined;
|
|
7342
|
+
content?: undefined;
|
|
7343
|
+
dataBase64?: undefined;
|
|
7344
|
+
};
|
|
7345
|
+
required: string[];
|
|
7346
|
+
};
|
|
7347
|
+
} | {
|
|
7348
|
+
annotations: {
|
|
7349
|
+
readOnlyHint: boolean;
|
|
7350
|
+
destructiveHint: boolean;
|
|
7351
|
+
};
|
|
7352
|
+
name: string;
|
|
7353
|
+
description: string;
|
|
7354
|
+
inputSchema: {
|
|
7355
|
+
type: "object";
|
|
7356
|
+
properties: {
|
|
7357
|
+
workspaceId: {
|
|
7358
|
+
type: string;
|
|
7359
|
+
description: string;
|
|
7360
|
+
};
|
|
7361
|
+
type: {
|
|
7362
|
+
type: string;
|
|
7363
|
+
enum: string[];
|
|
7364
|
+
description: string;
|
|
7365
|
+
};
|
|
7366
|
+
name: {
|
|
7367
|
+
type: string;
|
|
7368
|
+
description: string;
|
|
7369
|
+
};
|
|
7370
|
+
config: {
|
|
7371
|
+
type: string;
|
|
7372
|
+
description: string;
|
|
7373
|
+
};
|
|
7374
|
+
capabilities: {
|
|
7375
|
+
type: string;
|
|
7376
|
+
description: string;
|
|
7377
|
+
};
|
|
7378
|
+
exposure: {
|
|
7379
|
+
type: string;
|
|
7380
|
+
description: string;
|
|
7381
|
+
};
|
|
7382
|
+
authStrategy: {
|
|
7383
|
+
type: string;
|
|
7384
|
+
enum: string[];
|
|
7385
|
+
description: string;
|
|
7386
|
+
};
|
|
7387
|
+
topic?: undefined;
|
|
7388
|
+
search?: undefined;
|
|
7389
|
+
includeImages?: undefined;
|
|
7390
|
+
imageIndexes?: undefined;
|
|
7391
|
+
maxImages?: undefined;
|
|
7392
|
+
sort?: undefined;
|
|
7393
|
+
limit?: undefined;
|
|
7394
|
+
page?: undefined;
|
|
7395
|
+
stripDescription?: undefined;
|
|
7396
|
+
title?: undefined;
|
|
7397
|
+
purpose?: undefined;
|
|
7398
|
+
governance?: undefined;
|
|
7399
|
+
plan?: undefined;
|
|
7400
|
+
apps?: undefined;
|
|
7401
|
+
layout?: undefined;
|
|
7402
|
+
query?: undefined;
|
|
7403
|
+
_listTitle?: undefined;
|
|
7404
|
+
nestId?: undefined;
|
|
7405
|
+
fieldsMetaData?: undefined;
|
|
7406
|
+
hints?: undefined;
|
|
7407
|
+
parentId?: undefined;
|
|
7408
|
+
description?: undefined;
|
|
7409
|
+
labels?: undefined;
|
|
7410
|
+
fields?: undefined;
|
|
7411
|
+
users?: undefined;
|
|
7412
|
+
accountabilities?: undefined;
|
|
7413
|
+
domains?: undefined;
|
|
7414
|
+
data?: undefined;
|
|
7415
|
+
due?: undefined;
|
|
7416
|
+
completed?: undefined;
|
|
7417
|
+
body?: undefined;
|
|
7418
|
+
commentId?: undefined;
|
|
7419
|
+
circleId?: undefined;
|
|
7420
|
+
includeSubCircles?: undefined;
|
|
7421
|
+
userId?: undefined;
|
|
7422
|
+
endDate?: undefined;
|
|
7423
|
+
metricId?: undefined;
|
|
7424
|
+
depth?: undefined;
|
|
7425
|
+
username?: undefined;
|
|
7426
|
+
fullName?: undefined;
|
|
7427
|
+
language?: undefined;
|
|
7428
|
+
labelId?: undefined;
|
|
7429
|
+
from?: undefined;
|
|
7430
|
+
to?: undefined;
|
|
7431
|
+
completedAfter?: undefined;
|
|
7432
|
+
nestIds?: undefined;
|
|
7433
|
+
position?: undefined;
|
|
7434
|
+
relatedNestId?: undefined;
|
|
7435
|
+
color?: undefined;
|
|
7436
|
+
icon?: undefined;
|
|
7437
|
+
withUser?: undefined;
|
|
7438
|
+
fullWorkspaces?: undefined;
|
|
7439
|
+
context?: undefined;
|
|
7440
|
+
skip?: undefined;
|
|
7441
|
+
showRead?: undefined;
|
|
7442
|
+
group?: undefined;
|
|
7443
|
+
feeling?: undefined;
|
|
7444
|
+
needs?: undefined;
|
|
7445
|
+
tensionId?: undefined;
|
|
7446
|
+
_id?: undefined;
|
|
7447
|
+
roleId?: undefined;
|
|
7448
|
+
removeNest?: undefined;
|
|
7449
|
+
partId?: undefined;
|
|
7450
|
+
childId?: undefined;
|
|
7451
|
+
status?: undefined;
|
|
7452
|
+
relation?: undefined;
|
|
7453
|
+
direction?: undefined;
|
|
7454
|
+
targetId?: undefined;
|
|
7455
|
+
connectorId?: undefined;
|
|
7456
|
+
ownerType?: undefined;
|
|
7457
|
+
ownerId?: undefined;
|
|
7458
|
+
fileId?: undefined;
|
|
7459
|
+
contentType?: undefined;
|
|
7460
|
+
content?: undefined;
|
|
7461
|
+
dataBase64?: undefined;
|
|
7462
|
+
};
|
|
7463
|
+
required: string[];
|
|
7464
|
+
};
|
|
7465
|
+
} | {
|
|
7466
|
+
annotations: {
|
|
7467
|
+
readOnlyHint: boolean;
|
|
7468
|
+
destructiveHint: boolean;
|
|
7469
|
+
};
|
|
7470
|
+
name: string;
|
|
7471
|
+
description: string;
|
|
7472
|
+
inputSchema: {
|
|
7473
|
+
type: "object";
|
|
7474
|
+
properties: {
|
|
7475
|
+
workspaceId: {
|
|
7476
|
+
type: string;
|
|
7477
|
+
description: string;
|
|
7478
|
+
};
|
|
7479
|
+
connectorId: {
|
|
7480
|
+
type: string;
|
|
7481
|
+
description: string;
|
|
7482
|
+
};
|
|
7483
|
+
ownerType: {
|
|
7484
|
+
type: string;
|
|
7485
|
+
enum: string[];
|
|
7486
|
+
description: string;
|
|
7487
|
+
};
|
|
7488
|
+
ownerId: {
|
|
7489
|
+
type: string;
|
|
7490
|
+
description: string;
|
|
7491
|
+
};
|
|
7492
|
+
topic?: undefined;
|
|
7493
|
+
search?: undefined;
|
|
7494
|
+
includeImages?: undefined;
|
|
7495
|
+
imageIndexes?: undefined;
|
|
7496
|
+
maxImages?: undefined;
|
|
7497
|
+
sort?: undefined;
|
|
7498
|
+
limit?: undefined;
|
|
7499
|
+
page?: undefined;
|
|
7500
|
+
stripDescription?: undefined;
|
|
7501
|
+
title?: undefined;
|
|
7502
|
+
purpose?: undefined;
|
|
7503
|
+
type?: undefined;
|
|
7504
|
+
governance?: undefined;
|
|
7505
|
+
plan?: undefined;
|
|
7506
|
+
apps?: undefined;
|
|
7507
|
+
layout?: undefined;
|
|
7508
|
+
query?: undefined;
|
|
7509
|
+
_listTitle?: undefined;
|
|
7510
|
+
nestId?: undefined;
|
|
7511
|
+
fieldsMetaData?: undefined;
|
|
7512
|
+
hints?: undefined;
|
|
7513
|
+
parentId?: undefined;
|
|
7514
|
+
description?: undefined;
|
|
7515
|
+
labels?: undefined;
|
|
7516
|
+
fields?: undefined;
|
|
7517
|
+
users?: undefined;
|
|
7518
|
+
accountabilities?: undefined;
|
|
7519
|
+
domains?: undefined;
|
|
7520
|
+
data?: undefined;
|
|
7521
|
+
due?: undefined;
|
|
7522
|
+
completed?: undefined;
|
|
7523
|
+
body?: undefined;
|
|
7524
|
+
commentId?: undefined;
|
|
7525
|
+
circleId?: undefined;
|
|
7526
|
+
includeSubCircles?: undefined;
|
|
7527
|
+
userId?: undefined;
|
|
7528
|
+
endDate?: undefined;
|
|
7529
|
+
metricId?: undefined;
|
|
7530
|
+
depth?: undefined;
|
|
7531
|
+
username?: undefined;
|
|
7532
|
+
fullName?: undefined;
|
|
7533
|
+
language?: undefined;
|
|
7534
|
+
labelId?: undefined;
|
|
7535
|
+
from?: undefined;
|
|
7536
|
+
to?: undefined;
|
|
7537
|
+
completedAfter?: undefined;
|
|
7538
|
+
nestIds?: undefined;
|
|
7539
|
+
position?: undefined;
|
|
7540
|
+
relatedNestId?: undefined;
|
|
7541
|
+
color?: undefined;
|
|
7542
|
+
icon?: undefined;
|
|
7543
|
+
withUser?: undefined;
|
|
7544
|
+
fullWorkspaces?: undefined;
|
|
7545
|
+
context?: undefined;
|
|
7546
|
+
skip?: undefined;
|
|
7547
|
+
showRead?: undefined;
|
|
7548
|
+
group?: undefined;
|
|
7549
|
+
feeling?: undefined;
|
|
7550
|
+
needs?: undefined;
|
|
7551
|
+
tensionId?: undefined;
|
|
7552
|
+
_id?: undefined;
|
|
7553
|
+
roleId?: undefined;
|
|
7554
|
+
removeNest?: undefined;
|
|
7555
|
+
partId?: undefined;
|
|
7556
|
+
childId?: undefined;
|
|
7557
|
+
status?: undefined;
|
|
7558
|
+
relation?: undefined;
|
|
7559
|
+
direction?: undefined;
|
|
7560
|
+
targetId?: undefined;
|
|
7561
|
+
name?: undefined;
|
|
7562
|
+
config?: undefined;
|
|
7563
|
+
capabilities?: undefined;
|
|
7564
|
+
exposure?: undefined;
|
|
7565
|
+
authStrategy?: undefined;
|
|
7566
|
+
fileId?: undefined;
|
|
7567
|
+
contentType?: undefined;
|
|
7568
|
+
content?: undefined;
|
|
7569
|
+
dataBase64?: undefined;
|
|
7570
|
+
};
|
|
7571
|
+
required: string[];
|
|
7572
|
+
};
|
|
7573
|
+
} | {
|
|
7574
|
+
annotations: {
|
|
7575
|
+
readOnlyHint: boolean;
|
|
7576
|
+
destructiveHint: boolean;
|
|
7577
|
+
};
|
|
7578
|
+
name: string;
|
|
7579
|
+
description: string;
|
|
7580
|
+
inputSchema: {
|
|
7581
|
+
type: "object";
|
|
7582
|
+
properties: {
|
|
7583
|
+
nestId: {
|
|
7584
|
+
type: string;
|
|
7585
|
+
description: string;
|
|
7586
|
+
};
|
|
7587
|
+
fileId: {
|
|
7588
|
+
type: string;
|
|
7589
|
+
description: string;
|
|
7590
|
+
};
|
|
7591
|
+
topic?: undefined;
|
|
7592
|
+
search?: undefined;
|
|
7593
|
+
includeImages?: undefined;
|
|
7594
|
+
imageIndexes?: undefined;
|
|
7595
|
+
maxImages?: undefined;
|
|
7596
|
+
sort?: undefined;
|
|
7597
|
+
limit?: undefined;
|
|
7598
|
+
page?: undefined;
|
|
7599
|
+
stripDescription?: undefined;
|
|
7600
|
+
workspaceId?: undefined;
|
|
7601
|
+
title?: undefined;
|
|
7602
|
+
purpose?: undefined;
|
|
7603
|
+
type?: undefined;
|
|
7604
|
+
governance?: undefined;
|
|
7605
|
+
plan?: undefined;
|
|
7606
|
+
apps?: undefined;
|
|
7607
|
+
layout?: undefined;
|
|
7608
|
+
query?: undefined;
|
|
7609
|
+
_listTitle?: undefined;
|
|
7610
|
+
fieldsMetaData?: undefined;
|
|
7611
|
+
hints?: undefined;
|
|
7612
|
+
parentId?: undefined;
|
|
7613
|
+
description?: undefined;
|
|
7614
|
+
labels?: undefined;
|
|
7615
|
+
fields?: undefined;
|
|
7616
|
+
users?: undefined;
|
|
7617
|
+
accountabilities?: undefined;
|
|
7618
|
+
domains?: undefined;
|
|
7619
|
+
data?: undefined;
|
|
7620
|
+
due?: undefined;
|
|
7621
|
+
completed?: undefined;
|
|
7622
|
+
body?: undefined;
|
|
7623
|
+
commentId?: undefined;
|
|
7624
|
+
circleId?: undefined;
|
|
7625
|
+
includeSubCircles?: undefined;
|
|
7626
|
+
userId?: undefined;
|
|
7627
|
+
endDate?: undefined;
|
|
7628
|
+
metricId?: undefined;
|
|
7629
|
+
depth?: undefined;
|
|
7630
|
+
username?: undefined;
|
|
7631
|
+
fullName?: undefined;
|
|
7632
|
+
language?: undefined;
|
|
7633
|
+
labelId?: undefined;
|
|
7634
|
+
from?: undefined;
|
|
7635
|
+
to?: undefined;
|
|
7636
|
+
completedAfter?: undefined;
|
|
7637
|
+
nestIds?: undefined;
|
|
7638
|
+
position?: undefined;
|
|
7639
|
+
relatedNestId?: undefined;
|
|
7640
|
+
color?: undefined;
|
|
7641
|
+
icon?: undefined;
|
|
7642
|
+
withUser?: undefined;
|
|
7643
|
+
fullWorkspaces?: undefined;
|
|
7644
|
+
context?: undefined;
|
|
7645
|
+
skip?: undefined;
|
|
7646
|
+
showRead?: undefined;
|
|
7647
|
+
group?: undefined;
|
|
7648
|
+
feeling?: undefined;
|
|
7649
|
+
needs?: undefined;
|
|
7650
|
+
tensionId?: undefined;
|
|
7651
|
+
_id?: undefined;
|
|
7652
|
+
roleId?: undefined;
|
|
7653
|
+
removeNest?: undefined;
|
|
7654
|
+
partId?: undefined;
|
|
7655
|
+
childId?: undefined;
|
|
7656
|
+
status?: undefined;
|
|
7657
|
+
relation?: undefined;
|
|
7658
|
+
direction?: undefined;
|
|
7659
|
+
targetId?: undefined;
|
|
7660
|
+
name?: undefined;
|
|
7661
|
+
config?: undefined;
|
|
7662
|
+
capabilities?: undefined;
|
|
7663
|
+
exposure?: undefined;
|
|
7664
|
+
authStrategy?: undefined;
|
|
7665
|
+
connectorId?: undefined;
|
|
7666
|
+
ownerType?: undefined;
|
|
7667
|
+
ownerId?: undefined;
|
|
7668
|
+
contentType?: undefined;
|
|
7669
|
+
content?: undefined;
|
|
7670
|
+
dataBase64?: undefined;
|
|
7671
|
+
};
|
|
7672
|
+
required: string[];
|
|
7673
|
+
};
|
|
7674
|
+
} | {
|
|
7675
|
+
annotations: {
|
|
7676
|
+
readOnlyHint: boolean;
|
|
7677
|
+
destructiveHint: boolean;
|
|
7678
|
+
};
|
|
7679
|
+
name: string;
|
|
7680
|
+
description: string;
|
|
7681
|
+
inputSchema: {
|
|
7682
|
+
type: "object";
|
|
7683
|
+
properties: {
|
|
7684
|
+
nestId: {
|
|
7685
|
+
type: string;
|
|
7686
|
+
description: string;
|
|
7687
|
+
};
|
|
7688
|
+
name: {
|
|
7689
|
+
type: string;
|
|
7690
|
+
description: string;
|
|
7691
|
+
};
|
|
7692
|
+
contentType: {
|
|
7693
|
+
type: string;
|
|
7694
|
+
description: string;
|
|
7695
|
+
};
|
|
7696
|
+
content: {
|
|
7697
|
+
type: string;
|
|
7698
|
+
description: string;
|
|
7699
|
+
};
|
|
7700
|
+
dataBase64: {
|
|
7701
|
+
type: string;
|
|
7702
|
+
description: string;
|
|
7703
|
+
};
|
|
7704
|
+
topic?: undefined;
|
|
7705
|
+
search?: undefined;
|
|
7706
|
+
includeImages?: undefined;
|
|
7707
|
+
imageIndexes?: undefined;
|
|
7708
|
+
maxImages?: undefined;
|
|
7709
|
+
sort?: undefined;
|
|
7710
|
+
limit?: undefined;
|
|
7711
|
+
page?: undefined;
|
|
7712
|
+
stripDescription?: undefined;
|
|
7713
|
+
workspaceId?: undefined;
|
|
7714
|
+
title?: undefined;
|
|
7715
|
+
purpose?: undefined;
|
|
7716
|
+
type?: undefined;
|
|
7717
|
+
governance?: undefined;
|
|
7718
|
+
plan?: undefined;
|
|
7719
|
+
apps?: undefined;
|
|
7720
|
+
layout?: undefined;
|
|
7721
|
+
query?: undefined;
|
|
7722
|
+
_listTitle?: undefined;
|
|
7723
|
+
fieldsMetaData?: undefined;
|
|
7724
|
+
hints?: undefined;
|
|
7725
|
+
parentId?: undefined;
|
|
7726
|
+
description?: undefined;
|
|
7727
|
+
labels?: undefined;
|
|
7728
|
+
fields?: undefined;
|
|
7729
|
+
users?: undefined;
|
|
7730
|
+
accountabilities?: undefined;
|
|
7731
|
+
domains?: undefined;
|
|
7732
|
+
data?: undefined;
|
|
7733
|
+
due?: undefined;
|
|
7734
|
+
completed?: undefined;
|
|
7735
|
+
body?: undefined;
|
|
7736
|
+
commentId?: undefined;
|
|
7737
|
+
circleId?: undefined;
|
|
7738
|
+
includeSubCircles?: undefined;
|
|
7739
|
+
userId?: undefined;
|
|
7740
|
+
endDate?: undefined;
|
|
7741
|
+
metricId?: undefined;
|
|
7742
|
+
depth?: undefined;
|
|
7743
|
+
username?: undefined;
|
|
7744
|
+
fullName?: undefined;
|
|
7745
|
+
language?: undefined;
|
|
7746
|
+
labelId?: undefined;
|
|
7747
|
+
from?: undefined;
|
|
7748
|
+
to?: undefined;
|
|
7749
|
+
completedAfter?: undefined;
|
|
7750
|
+
nestIds?: undefined;
|
|
7751
|
+
position?: undefined;
|
|
7752
|
+
relatedNestId?: undefined;
|
|
7753
|
+
color?: undefined;
|
|
7754
|
+
icon?: undefined;
|
|
7755
|
+
withUser?: undefined;
|
|
7756
|
+
fullWorkspaces?: undefined;
|
|
7757
|
+
context?: undefined;
|
|
7758
|
+
skip?: undefined;
|
|
7759
|
+
showRead?: undefined;
|
|
7760
|
+
group?: undefined;
|
|
7761
|
+
feeling?: undefined;
|
|
7762
|
+
needs?: undefined;
|
|
7763
|
+
tensionId?: undefined;
|
|
7764
|
+
_id?: undefined;
|
|
7765
|
+
roleId?: undefined;
|
|
7766
|
+
removeNest?: undefined;
|
|
7767
|
+
partId?: undefined;
|
|
7768
|
+
childId?: undefined;
|
|
7769
|
+
status?: undefined;
|
|
7770
|
+
relation?: undefined;
|
|
7771
|
+
direction?: undefined;
|
|
7772
|
+
targetId?: undefined;
|
|
7773
|
+
config?: undefined;
|
|
7774
|
+
capabilities?: undefined;
|
|
7775
|
+
exposure?: undefined;
|
|
7776
|
+
authStrategy?: undefined;
|
|
7777
|
+
connectorId?: undefined;
|
|
7778
|
+
ownerType?: undefined;
|
|
7779
|
+
ownerId?: undefined;
|
|
7780
|
+
fileId?: undefined;
|
|
6314
7781
|
};
|
|
6315
7782
|
required: string[];
|
|
6316
7783
|
};
|