@bubblelab/bubble-core 0.1.25 → 0.1.26
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/dist/bubble-bundle.d.ts +82 -66
- package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
- package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
- package/dist/bubbles/service-bubble/airtable.d.ts +116 -116
- package/dist/bubbles/service-bubble/apify/apify.d.ts +6 -6
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +30 -30
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +64 -64
- package/dist/bubbles/service-bubble/followupboss.d.ts +176 -176
- package/dist/bubbles/service-bubble/github.d.ts +80 -80
- package/dist/bubbles/service-bubble/gmail.d.ts +172 -172
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +56 -56
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +22 -22
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/notion/notion.d.ts +874 -874
- package/dist/bubbles/service-bubble/resend.d.ts +16 -16
- package/dist/bubbles/service-bubble/slack/slack.d.ts +144 -144
- package/dist/bubbles/service-bubble/storage.d.ts +30 -30
- package/dist/bubbles/service-bubble/telegram.d.ts +208 -208
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +138 -138
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +38 -38
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +173 -173
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +22 -6
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +22 -22
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +52 -52
- package/dist/bubbles.json +52054 -6
- package/dist/types/available-tools.d.ts +1 -1
- package/dist/types/available-tools.d.ts.map +1 -1
- package/dist/types/available-tools.js +1 -0
- package/dist/types/available-tools.js.map +1 -1
- package/package.json +3 -3
|
@@ -56,8 +56,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
56
56
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
58
|
sort: "created" | "updated" | "popularity" | "long-running";
|
|
59
|
-
state: "all" | "open" | "closed";
|
|
60
59
|
operation: "list_pull_requests";
|
|
60
|
+
state: "all" | "open" | "closed";
|
|
61
61
|
owner: string;
|
|
62
62
|
page: number;
|
|
63
63
|
repo: string;
|
|
@@ -69,8 +69,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
69
69
|
owner: string;
|
|
70
70
|
repo: string;
|
|
71
71
|
sort?: "created" | "updated" | "popularity" | "long-running" | undefined;
|
|
72
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
73
72
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
73
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
74
74
|
page?: number | undefined;
|
|
75
75
|
direction?: "asc" | "desc" | undefined;
|
|
76
76
|
per_page?: number | undefined;
|
|
@@ -186,8 +186,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
186
186
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
187
187
|
}, "strip", z.ZodTypeAny, {
|
|
188
188
|
sort: "created" | "updated" | "comments";
|
|
189
|
-
state: "all" | "open" | "closed";
|
|
190
189
|
operation: "list_issues";
|
|
190
|
+
state: "all" | "open" | "closed";
|
|
191
191
|
owner: string;
|
|
192
192
|
page: number;
|
|
193
193
|
repo: string;
|
|
@@ -200,8 +200,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
200
200
|
owner: string;
|
|
201
201
|
repo: string;
|
|
202
202
|
sort?: "created" | "updated" | "comments" | undefined;
|
|
203
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
204
203
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
204
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
205
205
|
labels?: string | undefined;
|
|
206
206
|
page?: number | undefined;
|
|
207
207
|
direction?: "asc" | "desc" | undefined;
|
|
@@ -224,12 +224,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
224
224
|
content: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
225
225
|
encoding: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
226
226
|
}, "strip", z.ZodTypeAny, {
|
|
227
|
-
operation: "get_file";
|
|
228
227
|
success: boolean;
|
|
229
228
|
error: string;
|
|
230
|
-
|
|
229
|
+
operation: "get_file";
|
|
231
230
|
path?: string | undefined;
|
|
232
231
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
232
|
+
name?: string | undefined;
|
|
233
233
|
content?: string | undefined;
|
|
234
234
|
url?: string | undefined;
|
|
235
235
|
size?: number | undefined;
|
|
@@ -239,12 +239,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
239
239
|
download_url?: string | null | undefined;
|
|
240
240
|
encoding?: string | undefined;
|
|
241
241
|
}, {
|
|
242
|
-
operation: "get_file";
|
|
243
242
|
success: boolean;
|
|
244
243
|
error: string;
|
|
245
|
-
|
|
244
|
+
operation: "get_file";
|
|
246
245
|
path?: string | undefined;
|
|
247
246
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
247
|
+
name?: string | undefined;
|
|
248
248
|
content?: string | undefined;
|
|
249
249
|
url?: string | undefined;
|
|
250
250
|
size?: number | undefined;
|
|
@@ -270,9 +270,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
270
270
|
content: z.ZodOptional<z.ZodString>;
|
|
271
271
|
encoding: z.ZodOptional<z.ZodString>;
|
|
272
272
|
}, "strip", z.ZodTypeAny, {
|
|
273
|
-
name: string;
|
|
274
273
|
path: string;
|
|
275
274
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
275
|
+
name: string;
|
|
276
276
|
url: string;
|
|
277
277
|
size: number;
|
|
278
278
|
sha: string;
|
|
@@ -282,9 +282,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
282
282
|
content?: string | undefined;
|
|
283
283
|
encoding?: string | undefined;
|
|
284
284
|
}, {
|
|
285
|
-
name: string;
|
|
286
285
|
path: string;
|
|
287
286
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
287
|
+
name: string;
|
|
288
288
|
url: string;
|
|
289
289
|
size: number;
|
|
290
290
|
sha: string;
|
|
@@ -295,13 +295,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
295
295
|
encoding?: string | undefined;
|
|
296
296
|
}>, "many">>;
|
|
297
297
|
}, "strip", z.ZodTypeAny, {
|
|
298
|
-
operation: "get_directory";
|
|
299
298
|
success: boolean;
|
|
300
299
|
error: string;
|
|
300
|
+
operation: "get_directory";
|
|
301
301
|
contents?: {
|
|
302
|
-
name: string;
|
|
303
302
|
path: string;
|
|
304
303
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
304
|
+
name: string;
|
|
305
305
|
url: string;
|
|
306
306
|
size: number;
|
|
307
307
|
sha: string;
|
|
@@ -312,13 +312,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
312
312
|
encoding?: string | undefined;
|
|
313
313
|
}[] | undefined;
|
|
314
314
|
}, {
|
|
315
|
-
operation: "get_directory";
|
|
316
315
|
success: boolean;
|
|
317
316
|
error: string;
|
|
317
|
+
operation: "get_directory";
|
|
318
318
|
contents?: {
|
|
319
|
-
name: string;
|
|
320
319
|
path: string;
|
|
321
320
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
321
|
+
name: string;
|
|
322
322
|
url: string;
|
|
323
323
|
size: number;
|
|
324
324
|
sha: string;
|
|
@@ -459,9 +459,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
459
459
|
changed_files?: number | undefined;
|
|
460
460
|
}>, "many">>;
|
|
461
461
|
}, "strip", z.ZodTypeAny, {
|
|
462
|
-
operation: "list_pull_requests";
|
|
463
462
|
success: boolean;
|
|
464
463
|
error: string;
|
|
464
|
+
operation: "list_pull_requests";
|
|
465
465
|
pull_requests?: {
|
|
466
466
|
number: number;
|
|
467
467
|
title: string;
|
|
@@ -499,9 +499,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
499
499
|
changed_files?: number | undefined;
|
|
500
500
|
}[] | undefined;
|
|
501
501
|
}, {
|
|
502
|
-
operation: "list_pull_requests";
|
|
503
502
|
success: boolean;
|
|
504
503
|
error: string;
|
|
504
|
+
operation: "list_pull_requests";
|
|
505
505
|
pull_requests?: {
|
|
506
506
|
number: number;
|
|
507
507
|
title: string;
|
|
@@ -598,9 +598,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
598
598
|
deletions: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
599
599
|
changed_files: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
600
600
|
}, "strip", z.ZodTypeAny, {
|
|
601
|
-
operation: "get_pull_request";
|
|
602
601
|
success: boolean;
|
|
603
602
|
error: string;
|
|
603
|
+
operation: "get_pull_request";
|
|
604
604
|
number?: number | undefined;
|
|
605
605
|
title?: string | undefined;
|
|
606
606
|
state?: "open" | "closed" | undefined;
|
|
@@ -636,9 +636,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
636
636
|
deletions?: number | undefined;
|
|
637
637
|
changed_files?: number | undefined;
|
|
638
638
|
}, {
|
|
639
|
-
operation: "get_pull_request";
|
|
640
639
|
success: boolean;
|
|
641
640
|
error: string;
|
|
641
|
+
operation: "get_pull_request";
|
|
642
642
|
number?: number | undefined;
|
|
643
643
|
title?: string | undefined;
|
|
644
644
|
state?: "open" | "closed" | undefined;
|
|
@@ -695,9 +695,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
695
695
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
696
696
|
html_url: z.ZodOptional<z.ZodString>;
|
|
697
697
|
}, "strip", z.ZodTypeAny, {
|
|
698
|
-
operation: "create_pr_comment";
|
|
699
698
|
success: boolean;
|
|
700
699
|
error: string;
|
|
700
|
+
operation: "create_pr_comment";
|
|
701
701
|
user?: {
|
|
702
702
|
id: number;
|
|
703
703
|
login: string;
|
|
@@ -709,9 +709,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
709
709
|
node_id?: string | undefined;
|
|
710
710
|
updated_at?: string | undefined;
|
|
711
711
|
}, {
|
|
712
|
-
operation: "create_pr_comment";
|
|
713
712
|
success: boolean;
|
|
714
713
|
error: string;
|
|
714
|
+
operation: "create_pr_comment";
|
|
715
715
|
user?: {
|
|
716
716
|
id: number;
|
|
717
717
|
login: string;
|
|
@@ -763,8 +763,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
763
763
|
default_branch: z.ZodString;
|
|
764
764
|
visibility: z.ZodOptional<z.ZodString>;
|
|
765
765
|
}, "strip", z.ZodTypeAny, {
|
|
766
|
-
name: string;
|
|
767
766
|
description: string | null;
|
|
767
|
+
name: string;
|
|
768
768
|
id: number;
|
|
769
769
|
size: number;
|
|
770
770
|
private: boolean;
|
|
@@ -789,8 +789,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
789
789
|
default_branch: string;
|
|
790
790
|
visibility?: string | undefined;
|
|
791
791
|
}, {
|
|
792
|
-
name: string;
|
|
793
792
|
description: string | null;
|
|
793
|
+
name: string;
|
|
794
794
|
id: number;
|
|
795
795
|
size: number;
|
|
796
796
|
private: boolean;
|
|
@@ -816,12 +816,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
816
816
|
visibility?: string | undefined;
|
|
817
817
|
}>, "many">>;
|
|
818
818
|
}, "strip", z.ZodTypeAny, {
|
|
819
|
-
operation: "list_repositories";
|
|
820
819
|
success: boolean;
|
|
821
820
|
error: string;
|
|
821
|
+
operation: "list_repositories";
|
|
822
822
|
repositories?: {
|
|
823
|
-
name: string;
|
|
824
823
|
description: string | null;
|
|
824
|
+
name: string;
|
|
825
825
|
id: number;
|
|
826
826
|
size: number;
|
|
827
827
|
private: boolean;
|
|
@@ -847,12 +847,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
847
847
|
visibility?: string | undefined;
|
|
848
848
|
}[] | undefined;
|
|
849
849
|
}, {
|
|
850
|
-
operation: "list_repositories";
|
|
851
850
|
success: boolean;
|
|
852
851
|
error: string;
|
|
852
|
+
operation: "list_repositories";
|
|
853
853
|
repositories?: {
|
|
854
|
-
name: string;
|
|
855
854
|
description: string | null;
|
|
855
|
+
name: string;
|
|
856
856
|
id: number;
|
|
857
857
|
size: number;
|
|
858
858
|
private: boolean;
|
|
@@ -918,11 +918,11 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
918
918
|
default_branch: z.ZodOptional<z.ZodString>;
|
|
919
919
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
920
920
|
}, "strip", z.ZodTypeAny, {
|
|
921
|
-
operation: "get_repository";
|
|
922
921
|
success: boolean;
|
|
923
922
|
error: string;
|
|
924
|
-
|
|
923
|
+
operation: "get_repository";
|
|
925
924
|
description?: string | null | undefined;
|
|
925
|
+
name?: string | undefined;
|
|
926
926
|
id?: number | undefined;
|
|
927
927
|
size?: number | undefined;
|
|
928
928
|
private?: boolean | undefined;
|
|
@@ -947,11 +947,11 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
947
947
|
default_branch?: string | undefined;
|
|
948
948
|
visibility?: string | undefined;
|
|
949
949
|
}, {
|
|
950
|
-
operation: "get_repository";
|
|
951
950
|
success: boolean;
|
|
952
951
|
error: string;
|
|
953
|
-
|
|
952
|
+
operation: "get_repository";
|
|
954
953
|
description?: string | null | undefined;
|
|
954
|
+
name?: string | undefined;
|
|
955
955
|
id?: number | undefined;
|
|
956
956
|
size?: number | undefined;
|
|
957
957
|
private?: boolean | undefined;
|
|
@@ -997,9 +997,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
997
997
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
998
998
|
html_url: z.ZodOptional<z.ZodString>;
|
|
999
999
|
}, "strip", z.ZodTypeAny, {
|
|
1000
|
-
operation: "create_issue_comment";
|
|
1001
1000
|
success: boolean;
|
|
1002
1001
|
error: string;
|
|
1002
|
+
operation: "create_issue_comment";
|
|
1003
1003
|
user?: {
|
|
1004
1004
|
id: number;
|
|
1005
1005
|
login: string;
|
|
@@ -1011,9 +1011,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1011
1011
|
node_id?: string | undefined;
|
|
1012
1012
|
updated_at?: string | undefined;
|
|
1013
1013
|
}, {
|
|
1014
|
-
operation: "create_issue_comment";
|
|
1015
1014
|
success: boolean;
|
|
1016
1015
|
error: string;
|
|
1016
|
+
operation: "create_issue_comment";
|
|
1017
1017
|
user?: {
|
|
1018
1018
|
id: number;
|
|
1019
1019
|
login: string;
|
|
@@ -1051,13 +1051,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1051
1051
|
color: z.ZodString;
|
|
1052
1052
|
description: z.ZodNullable<z.ZodString>;
|
|
1053
1053
|
}, "strip", z.ZodTypeAny, {
|
|
1054
|
-
name: string;
|
|
1055
1054
|
description: string | null;
|
|
1055
|
+
name: string;
|
|
1056
1056
|
id: number;
|
|
1057
1057
|
color: string;
|
|
1058
1058
|
}, {
|
|
1059
|
-
name: string;
|
|
1060
1059
|
description: string | null;
|
|
1060
|
+
name: string;
|
|
1061
1061
|
id: number;
|
|
1062
1062
|
color: string;
|
|
1063
1063
|
}>, "many">;
|
|
@@ -1078,8 +1078,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1078
1078
|
body: string | null;
|
|
1079
1079
|
created_at: string;
|
|
1080
1080
|
labels: {
|
|
1081
|
-
name: string;
|
|
1082
1081
|
description: string | null;
|
|
1082
|
+
name: string;
|
|
1083
1083
|
id: number;
|
|
1084
1084
|
color: string;
|
|
1085
1085
|
}[];
|
|
@@ -1100,8 +1100,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1100
1100
|
body: string | null;
|
|
1101
1101
|
created_at: string;
|
|
1102
1102
|
labels: {
|
|
1103
|
-
name: string;
|
|
1104
1103
|
description: string | null;
|
|
1104
|
+
name: string;
|
|
1105
1105
|
id: number;
|
|
1106
1106
|
color: string;
|
|
1107
1107
|
}[];
|
|
@@ -1112,9 +1112,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1112
1112
|
closed_at: string | null;
|
|
1113
1113
|
}>, "many">>;
|
|
1114
1114
|
}, "strip", z.ZodTypeAny, {
|
|
1115
|
-
operation: "list_issues";
|
|
1116
1115
|
success: boolean;
|
|
1117
1116
|
error: string;
|
|
1117
|
+
operation: "list_issues";
|
|
1118
1118
|
issues?: {
|
|
1119
1119
|
number: number;
|
|
1120
1120
|
title: string;
|
|
@@ -1127,8 +1127,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1127
1127
|
body: string | null;
|
|
1128
1128
|
created_at: string;
|
|
1129
1129
|
labels: {
|
|
1130
|
-
name: string;
|
|
1131
1130
|
description: string | null;
|
|
1131
|
+
name: string;
|
|
1132
1132
|
id: number;
|
|
1133
1133
|
color: string;
|
|
1134
1134
|
}[];
|
|
@@ -1139,9 +1139,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1139
1139
|
closed_at: string | null;
|
|
1140
1140
|
}[] | undefined;
|
|
1141
1141
|
}, {
|
|
1142
|
-
operation: "list_issues";
|
|
1143
1142
|
success: boolean;
|
|
1144
1143
|
error: string;
|
|
1144
|
+
operation: "list_issues";
|
|
1145
1145
|
issues?: {
|
|
1146
1146
|
number: number;
|
|
1147
1147
|
title: string;
|
|
@@ -1154,8 +1154,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1154
1154
|
body: string | null;
|
|
1155
1155
|
created_at: string;
|
|
1156
1156
|
labels: {
|
|
1157
|
-
name: string;
|
|
1158
1157
|
description: string | null;
|
|
1158
|
+
name: string;
|
|
1159
1159
|
id: number;
|
|
1160
1160
|
color: string;
|
|
1161
1161
|
}[];
|
|
@@ -1260,8 +1260,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1260
1260
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1261
1261
|
}, "strip", z.ZodTypeAny, {
|
|
1262
1262
|
sort: "created" | "updated" | "popularity" | "long-running";
|
|
1263
|
-
state: "all" | "open" | "closed";
|
|
1264
1263
|
operation: "list_pull_requests";
|
|
1264
|
+
state: "all" | "open" | "closed";
|
|
1265
1265
|
owner: string;
|
|
1266
1266
|
page: number;
|
|
1267
1267
|
repo: string;
|
|
@@ -1273,8 +1273,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1273
1273
|
owner: string;
|
|
1274
1274
|
repo: string;
|
|
1275
1275
|
sort?: "created" | "updated" | "popularity" | "long-running" | undefined;
|
|
1276
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
1277
1276
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1277
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
1278
1278
|
page?: number | undefined;
|
|
1279
1279
|
direction?: "asc" | "desc" | undefined;
|
|
1280
1280
|
per_page?: number | undefined;
|
|
@@ -1390,8 +1390,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1390
1390
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1391
1391
|
}, "strip", z.ZodTypeAny, {
|
|
1392
1392
|
sort: "created" | "updated" | "comments";
|
|
1393
|
-
state: "all" | "open" | "closed";
|
|
1394
1393
|
operation: "list_issues";
|
|
1394
|
+
state: "all" | "open" | "closed";
|
|
1395
1395
|
owner: string;
|
|
1396
1396
|
page: number;
|
|
1397
1397
|
repo: string;
|
|
@@ -1404,8 +1404,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1404
1404
|
owner: string;
|
|
1405
1405
|
repo: string;
|
|
1406
1406
|
sort?: "created" | "updated" | "comments" | undefined;
|
|
1407
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
1408
1407
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1408
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
1409
1409
|
labels?: string | undefined;
|
|
1410
1410
|
page?: number | undefined;
|
|
1411
1411
|
direction?: "asc" | "desc" | undefined;
|
|
@@ -1428,12 +1428,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1428
1428
|
content: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1429
1429
|
encoding: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1430
1430
|
}, "strip", z.ZodTypeAny, {
|
|
1431
|
-
operation: "get_file";
|
|
1432
1431
|
success: boolean;
|
|
1433
1432
|
error: string;
|
|
1434
|
-
|
|
1433
|
+
operation: "get_file";
|
|
1435
1434
|
path?: string | undefined;
|
|
1436
1435
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
1436
|
+
name?: string | undefined;
|
|
1437
1437
|
content?: string | undefined;
|
|
1438
1438
|
url?: string | undefined;
|
|
1439
1439
|
size?: number | undefined;
|
|
@@ -1443,12 +1443,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1443
1443
|
download_url?: string | null | undefined;
|
|
1444
1444
|
encoding?: string | undefined;
|
|
1445
1445
|
}, {
|
|
1446
|
-
operation: "get_file";
|
|
1447
1446
|
success: boolean;
|
|
1448
1447
|
error: string;
|
|
1449
|
-
|
|
1448
|
+
operation: "get_file";
|
|
1450
1449
|
path?: string | undefined;
|
|
1451
1450
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
1451
|
+
name?: string | undefined;
|
|
1452
1452
|
content?: string | undefined;
|
|
1453
1453
|
url?: string | undefined;
|
|
1454
1454
|
size?: number | undefined;
|
|
@@ -1474,9 +1474,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1474
1474
|
content: z.ZodOptional<z.ZodString>;
|
|
1475
1475
|
encoding: z.ZodOptional<z.ZodString>;
|
|
1476
1476
|
}, "strip", z.ZodTypeAny, {
|
|
1477
|
-
name: string;
|
|
1478
1477
|
path: string;
|
|
1479
1478
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1479
|
+
name: string;
|
|
1480
1480
|
url: string;
|
|
1481
1481
|
size: number;
|
|
1482
1482
|
sha: string;
|
|
@@ -1486,9 +1486,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1486
1486
|
content?: string | undefined;
|
|
1487
1487
|
encoding?: string | undefined;
|
|
1488
1488
|
}, {
|
|
1489
|
-
name: string;
|
|
1490
1489
|
path: string;
|
|
1491
1490
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1491
|
+
name: string;
|
|
1492
1492
|
url: string;
|
|
1493
1493
|
size: number;
|
|
1494
1494
|
sha: string;
|
|
@@ -1499,13 +1499,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1499
1499
|
encoding?: string | undefined;
|
|
1500
1500
|
}>, "many">>;
|
|
1501
1501
|
}, "strip", z.ZodTypeAny, {
|
|
1502
|
-
operation: "get_directory";
|
|
1503
1502
|
success: boolean;
|
|
1504
1503
|
error: string;
|
|
1504
|
+
operation: "get_directory";
|
|
1505
1505
|
contents?: {
|
|
1506
|
-
name: string;
|
|
1507
1506
|
path: string;
|
|
1508
1507
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1508
|
+
name: string;
|
|
1509
1509
|
url: string;
|
|
1510
1510
|
size: number;
|
|
1511
1511
|
sha: string;
|
|
@@ -1516,13 +1516,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1516
1516
|
encoding?: string | undefined;
|
|
1517
1517
|
}[] | undefined;
|
|
1518
1518
|
}, {
|
|
1519
|
-
operation: "get_directory";
|
|
1520
1519
|
success: boolean;
|
|
1521
1520
|
error: string;
|
|
1521
|
+
operation: "get_directory";
|
|
1522
1522
|
contents?: {
|
|
1523
|
-
name: string;
|
|
1524
1523
|
path: string;
|
|
1525
1524
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1525
|
+
name: string;
|
|
1526
1526
|
url: string;
|
|
1527
1527
|
size: number;
|
|
1528
1528
|
sha: string;
|
|
@@ -1663,9 +1663,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1663
1663
|
changed_files?: number | undefined;
|
|
1664
1664
|
}>, "many">>;
|
|
1665
1665
|
}, "strip", z.ZodTypeAny, {
|
|
1666
|
-
operation: "list_pull_requests";
|
|
1667
1666
|
success: boolean;
|
|
1668
1667
|
error: string;
|
|
1668
|
+
operation: "list_pull_requests";
|
|
1669
1669
|
pull_requests?: {
|
|
1670
1670
|
number: number;
|
|
1671
1671
|
title: string;
|
|
@@ -1703,9 +1703,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1703
1703
|
changed_files?: number | undefined;
|
|
1704
1704
|
}[] | undefined;
|
|
1705
1705
|
}, {
|
|
1706
|
-
operation: "list_pull_requests";
|
|
1707
1706
|
success: boolean;
|
|
1708
1707
|
error: string;
|
|
1708
|
+
operation: "list_pull_requests";
|
|
1709
1709
|
pull_requests?: {
|
|
1710
1710
|
number: number;
|
|
1711
1711
|
title: string;
|
|
@@ -1802,9 +1802,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1802
1802
|
deletions: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1803
1803
|
changed_files: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1804
1804
|
}, "strip", z.ZodTypeAny, {
|
|
1805
|
-
operation: "get_pull_request";
|
|
1806
1805
|
success: boolean;
|
|
1807
1806
|
error: string;
|
|
1807
|
+
operation: "get_pull_request";
|
|
1808
1808
|
number?: number | undefined;
|
|
1809
1809
|
title?: string | undefined;
|
|
1810
1810
|
state?: "open" | "closed" | undefined;
|
|
@@ -1840,9 +1840,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1840
1840
|
deletions?: number | undefined;
|
|
1841
1841
|
changed_files?: number | undefined;
|
|
1842
1842
|
}, {
|
|
1843
|
-
operation: "get_pull_request";
|
|
1844
1843
|
success: boolean;
|
|
1845
1844
|
error: string;
|
|
1845
|
+
operation: "get_pull_request";
|
|
1846
1846
|
number?: number | undefined;
|
|
1847
1847
|
title?: string | undefined;
|
|
1848
1848
|
state?: "open" | "closed" | undefined;
|
|
@@ -1899,9 +1899,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1899
1899
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1900
1900
|
html_url: z.ZodOptional<z.ZodString>;
|
|
1901
1901
|
}, "strip", z.ZodTypeAny, {
|
|
1902
|
-
operation: "create_pr_comment";
|
|
1903
1902
|
success: boolean;
|
|
1904
1903
|
error: string;
|
|
1904
|
+
operation: "create_pr_comment";
|
|
1905
1905
|
user?: {
|
|
1906
1906
|
id: number;
|
|
1907
1907
|
login: string;
|
|
@@ -1913,9 +1913,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1913
1913
|
node_id?: string | undefined;
|
|
1914
1914
|
updated_at?: string | undefined;
|
|
1915
1915
|
}, {
|
|
1916
|
-
operation: "create_pr_comment";
|
|
1917
1916
|
success: boolean;
|
|
1918
1917
|
error: string;
|
|
1918
|
+
operation: "create_pr_comment";
|
|
1919
1919
|
user?: {
|
|
1920
1920
|
id: number;
|
|
1921
1921
|
login: string;
|
|
@@ -1967,8 +1967,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1967
1967
|
default_branch: z.ZodString;
|
|
1968
1968
|
visibility: z.ZodOptional<z.ZodString>;
|
|
1969
1969
|
}, "strip", z.ZodTypeAny, {
|
|
1970
|
-
name: string;
|
|
1971
1970
|
description: string | null;
|
|
1971
|
+
name: string;
|
|
1972
1972
|
id: number;
|
|
1973
1973
|
size: number;
|
|
1974
1974
|
private: boolean;
|
|
@@ -1993,8 +1993,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1993
1993
|
default_branch: string;
|
|
1994
1994
|
visibility?: string | undefined;
|
|
1995
1995
|
}, {
|
|
1996
|
-
name: string;
|
|
1997
1996
|
description: string | null;
|
|
1997
|
+
name: string;
|
|
1998
1998
|
id: number;
|
|
1999
1999
|
size: number;
|
|
2000
2000
|
private: boolean;
|
|
@@ -2020,12 +2020,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2020
2020
|
visibility?: string | undefined;
|
|
2021
2021
|
}>, "many">>;
|
|
2022
2022
|
}, "strip", z.ZodTypeAny, {
|
|
2023
|
-
operation: "list_repositories";
|
|
2024
2023
|
success: boolean;
|
|
2025
2024
|
error: string;
|
|
2025
|
+
operation: "list_repositories";
|
|
2026
2026
|
repositories?: {
|
|
2027
|
-
name: string;
|
|
2028
2027
|
description: string | null;
|
|
2028
|
+
name: string;
|
|
2029
2029
|
id: number;
|
|
2030
2030
|
size: number;
|
|
2031
2031
|
private: boolean;
|
|
@@ -2051,12 +2051,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2051
2051
|
visibility?: string | undefined;
|
|
2052
2052
|
}[] | undefined;
|
|
2053
2053
|
}, {
|
|
2054
|
-
operation: "list_repositories";
|
|
2055
2054
|
success: boolean;
|
|
2056
2055
|
error: string;
|
|
2056
|
+
operation: "list_repositories";
|
|
2057
2057
|
repositories?: {
|
|
2058
|
-
name: string;
|
|
2059
2058
|
description: string | null;
|
|
2059
|
+
name: string;
|
|
2060
2060
|
id: number;
|
|
2061
2061
|
size: number;
|
|
2062
2062
|
private: boolean;
|
|
@@ -2122,11 +2122,11 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2122
2122
|
default_branch: z.ZodOptional<z.ZodString>;
|
|
2123
2123
|
visibility: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2124
2124
|
}, "strip", z.ZodTypeAny, {
|
|
2125
|
-
operation: "get_repository";
|
|
2126
2125
|
success: boolean;
|
|
2127
2126
|
error: string;
|
|
2128
|
-
|
|
2127
|
+
operation: "get_repository";
|
|
2129
2128
|
description?: string | null | undefined;
|
|
2129
|
+
name?: string | undefined;
|
|
2130
2130
|
id?: number | undefined;
|
|
2131
2131
|
size?: number | undefined;
|
|
2132
2132
|
private?: boolean | undefined;
|
|
@@ -2151,11 +2151,11 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2151
2151
|
default_branch?: string | undefined;
|
|
2152
2152
|
visibility?: string | undefined;
|
|
2153
2153
|
}, {
|
|
2154
|
-
operation: "get_repository";
|
|
2155
2154
|
success: boolean;
|
|
2156
2155
|
error: string;
|
|
2157
|
-
|
|
2156
|
+
operation: "get_repository";
|
|
2158
2157
|
description?: string | null | undefined;
|
|
2158
|
+
name?: string | undefined;
|
|
2159
2159
|
id?: number | undefined;
|
|
2160
2160
|
size?: number | undefined;
|
|
2161
2161
|
private?: boolean | undefined;
|
|
@@ -2201,9 +2201,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2201
2201
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
2202
2202
|
html_url: z.ZodOptional<z.ZodString>;
|
|
2203
2203
|
}, "strip", z.ZodTypeAny, {
|
|
2204
|
-
operation: "create_issue_comment";
|
|
2205
2204
|
success: boolean;
|
|
2206
2205
|
error: string;
|
|
2206
|
+
operation: "create_issue_comment";
|
|
2207
2207
|
user?: {
|
|
2208
2208
|
id: number;
|
|
2209
2209
|
login: string;
|
|
@@ -2215,9 +2215,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2215
2215
|
node_id?: string | undefined;
|
|
2216
2216
|
updated_at?: string | undefined;
|
|
2217
2217
|
}, {
|
|
2218
|
-
operation: "create_issue_comment";
|
|
2219
2218
|
success: boolean;
|
|
2220
2219
|
error: string;
|
|
2220
|
+
operation: "create_issue_comment";
|
|
2221
2221
|
user?: {
|
|
2222
2222
|
id: number;
|
|
2223
2223
|
login: string;
|
|
@@ -2255,13 +2255,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2255
2255
|
color: z.ZodString;
|
|
2256
2256
|
description: z.ZodNullable<z.ZodString>;
|
|
2257
2257
|
}, "strip", z.ZodTypeAny, {
|
|
2258
|
-
name: string;
|
|
2259
2258
|
description: string | null;
|
|
2259
|
+
name: string;
|
|
2260
2260
|
id: number;
|
|
2261
2261
|
color: string;
|
|
2262
2262
|
}, {
|
|
2263
|
-
name: string;
|
|
2264
2263
|
description: string | null;
|
|
2264
|
+
name: string;
|
|
2265
2265
|
id: number;
|
|
2266
2266
|
color: string;
|
|
2267
2267
|
}>, "many">;
|
|
@@ -2282,8 +2282,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2282
2282
|
body: string | null;
|
|
2283
2283
|
created_at: string;
|
|
2284
2284
|
labels: {
|
|
2285
|
-
name: string;
|
|
2286
2285
|
description: string | null;
|
|
2286
|
+
name: string;
|
|
2287
2287
|
id: number;
|
|
2288
2288
|
color: string;
|
|
2289
2289
|
}[];
|
|
@@ -2304,8 +2304,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2304
2304
|
body: string | null;
|
|
2305
2305
|
created_at: string;
|
|
2306
2306
|
labels: {
|
|
2307
|
-
name: string;
|
|
2308
2307
|
description: string | null;
|
|
2308
|
+
name: string;
|
|
2309
2309
|
id: number;
|
|
2310
2310
|
color: string;
|
|
2311
2311
|
}[];
|
|
@@ -2316,9 +2316,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2316
2316
|
closed_at: string | null;
|
|
2317
2317
|
}>, "many">>;
|
|
2318
2318
|
}, "strip", z.ZodTypeAny, {
|
|
2319
|
-
operation: "list_issues";
|
|
2320
2319
|
success: boolean;
|
|
2321
2320
|
error: string;
|
|
2321
|
+
operation: "list_issues";
|
|
2322
2322
|
issues?: {
|
|
2323
2323
|
number: number;
|
|
2324
2324
|
title: string;
|
|
@@ -2331,8 +2331,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2331
2331
|
body: string | null;
|
|
2332
2332
|
created_at: string;
|
|
2333
2333
|
labels: {
|
|
2334
|
-
name: string;
|
|
2335
2334
|
description: string | null;
|
|
2335
|
+
name: string;
|
|
2336
2336
|
id: number;
|
|
2337
2337
|
color: string;
|
|
2338
2338
|
}[];
|
|
@@ -2343,9 +2343,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2343
2343
|
closed_at: string | null;
|
|
2344
2344
|
}[] | undefined;
|
|
2345
2345
|
}, {
|
|
2346
|
-
operation: "list_issues";
|
|
2347
2346
|
success: boolean;
|
|
2348
2347
|
error: string;
|
|
2348
|
+
operation: "list_issues";
|
|
2349
2349
|
issues?: {
|
|
2350
2350
|
number: number;
|
|
2351
2351
|
title: string;
|
|
@@ -2358,8 +2358,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2358
2358
|
body: string | null;
|
|
2359
2359
|
created_at: string;
|
|
2360
2360
|
labels: {
|
|
2361
|
-
name: string;
|
|
2362
2361
|
description: string | null;
|
|
2362
|
+
name: string;
|
|
2363
2363
|
id: number;
|
|
2364
2364
|
color: string;
|
|
2365
2365
|
}[];
|