@bubblelab/bubble-core 0.1.26 → 0.1.28
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 +60 -60
- package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
- package/dist/bubbles/service-bubble/airtable.d.ts +104 -104
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +22 -22
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +28 -28
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +308 -308
- package/dist/bubbles/service-bubble/followupboss.d.ts +392 -392
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +44 -44
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +55 -55
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +100 -100
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +202 -202
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +512 -512
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +148 -148
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +129 -129
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +217 -217
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +33 -4
- 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/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
- package/dist/bubbles.json +19 -19
- package/package.json +2 -2
|
@@ -57,9 +57,9 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
58
|
sort: "created" | "updated" | "popularity" | "long-running";
|
|
59
59
|
operation: "list_pull_requests";
|
|
60
|
-
state: "all" | "open" | "closed";
|
|
61
60
|
owner: string;
|
|
62
61
|
page: number;
|
|
62
|
+
state: "all" | "open" | "closed";
|
|
63
63
|
repo: string;
|
|
64
64
|
direction: "asc" | "desc";
|
|
65
65
|
per_page: number;
|
|
@@ -70,8 +70,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
70
70
|
repo: string;
|
|
71
71
|
sort?: "created" | "updated" | "popularity" | "long-running" | undefined;
|
|
72
72
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
73
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
74
73
|
page?: number | undefined;
|
|
74
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
75
75
|
direction?: "asc" | "desc" | undefined;
|
|
76
76
|
per_page?: number | undefined;
|
|
77
77
|
}>, z.ZodObject<{
|
|
@@ -187,9 +187,9 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
187
187
|
}, "strip", z.ZodTypeAny, {
|
|
188
188
|
sort: "created" | "updated" | "comments";
|
|
189
189
|
operation: "list_issues";
|
|
190
|
-
state: "all" | "open" | "closed";
|
|
191
190
|
owner: string;
|
|
192
191
|
page: number;
|
|
192
|
+
state: "all" | "open" | "closed";
|
|
193
193
|
repo: string;
|
|
194
194
|
direction: "asc" | "desc";
|
|
195
195
|
per_page: number;
|
|
@@ -201,9 +201,9 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
201
201
|
repo: string;
|
|
202
202
|
sort?: "created" | "updated" | "comments" | undefined;
|
|
203
203
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
204
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
205
204
|
labels?: string | undefined;
|
|
206
205
|
page?: number | undefined;
|
|
206
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
207
207
|
direction?: "asc" | "desc" | undefined;
|
|
208
208
|
per_page?: number | undefined;
|
|
209
209
|
}>]>;
|
|
@@ -224,9 +224,9 @@ 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";
|
|
227
228
|
success: boolean;
|
|
228
229
|
error: string;
|
|
229
|
-
operation: "get_file";
|
|
230
230
|
path?: string | undefined;
|
|
231
231
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
232
232
|
name?: string | undefined;
|
|
@@ -239,9 +239,9 @@ 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";
|
|
242
243
|
success: boolean;
|
|
243
244
|
error: string;
|
|
244
|
-
operation: "get_file";
|
|
245
245
|
path?: string | undefined;
|
|
246
246
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
247
247
|
name?: string | undefined;
|
|
@@ -295,9 +295,9 @@ 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";
|
|
298
299
|
success: boolean;
|
|
299
300
|
error: string;
|
|
300
|
-
operation: "get_directory";
|
|
301
301
|
contents?: {
|
|
302
302
|
path: string;
|
|
303
303
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
@@ -312,9 +312,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
312
312
|
encoding?: string | undefined;
|
|
313
313
|
}[] | undefined;
|
|
314
314
|
}, {
|
|
315
|
+
operation: "get_directory";
|
|
315
316
|
success: boolean;
|
|
316
317
|
error: string;
|
|
317
|
-
operation: "get_directory";
|
|
318
318
|
contents?: {
|
|
319
319
|
path: string;
|
|
320
320
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
@@ -390,7 +390,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
390
390
|
}, "strip", z.ZodTypeAny, {
|
|
391
391
|
number: number;
|
|
392
392
|
title: string;
|
|
393
|
-
state: "open" | "closed";
|
|
394
393
|
user: {
|
|
395
394
|
id: number;
|
|
396
395
|
login: string;
|
|
@@ -400,6 +399,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
400
399
|
body: string | null;
|
|
401
400
|
created_at: string;
|
|
402
401
|
draft: boolean;
|
|
402
|
+
state: "open" | "closed";
|
|
403
403
|
html_url: string;
|
|
404
404
|
node_id: string;
|
|
405
405
|
updated_at: string;
|
|
@@ -425,7 +425,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
425
425
|
}, {
|
|
426
426
|
number: number;
|
|
427
427
|
title: string;
|
|
428
|
-
state: "open" | "closed";
|
|
429
428
|
user: {
|
|
430
429
|
id: number;
|
|
431
430
|
login: string;
|
|
@@ -435,6 +434,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
435
434
|
body: string | null;
|
|
436
435
|
created_at: string;
|
|
437
436
|
draft: boolean;
|
|
437
|
+
state: "open" | "closed";
|
|
438
438
|
html_url: string;
|
|
439
439
|
node_id: string;
|
|
440
440
|
updated_at: string;
|
|
@@ -459,13 +459,12 @@ 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";
|
|
462
463
|
success: boolean;
|
|
463
464
|
error: string;
|
|
464
|
-
operation: "list_pull_requests";
|
|
465
465
|
pull_requests?: {
|
|
466
466
|
number: number;
|
|
467
467
|
title: string;
|
|
468
|
-
state: "open" | "closed";
|
|
469
468
|
user: {
|
|
470
469
|
id: number;
|
|
471
470
|
login: string;
|
|
@@ -475,6 +474,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
475
474
|
body: string | null;
|
|
476
475
|
created_at: string;
|
|
477
476
|
draft: boolean;
|
|
477
|
+
state: "open" | "closed";
|
|
478
478
|
html_url: string;
|
|
479
479
|
node_id: string;
|
|
480
480
|
updated_at: string;
|
|
@@ -499,13 +499,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
499
499
|
changed_files?: number | undefined;
|
|
500
500
|
}[] | undefined;
|
|
501
501
|
}, {
|
|
502
|
+
operation: "list_pull_requests";
|
|
502
503
|
success: boolean;
|
|
503
504
|
error: string;
|
|
504
|
-
operation: "list_pull_requests";
|
|
505
505
|
pull_requests?: {
|
|
506
506
|
number: number;
|
|
507
507
|
title: string;
|
|
508
|
-
state: "open" | "closed";
|
|
509
508
|
user: {
|
|
510
509
|
id: number;
|
|
511
510
|
login: string;
|
|
@@ -515,6 +514,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
515
514
|
body: string | null;
|
|
516
515
|
created_at: string;
|
|
517
516
|
draft: boolean;
|
|
517
|
+
state: "open" | "closed";
|
|
518
518
|
html_url: string;
|
|
519
519
|
node_id: string;
|
|
520
520
|
updated_at: string;
|
|
@@ -598,12 +598,11 @@ 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";
|
|
601
602
|
success: boolean;
|
|
602
603
|
error: string;
|
|
603
|
-
operation: "get_pull_request";
|
|
604
604
|
number?: number | undefined;
|
|
605
605
|
title?: string | undefined;
|
|
606
|
-
state?: "open" | "closed" | undefined;
|
|
607
606
|
user?: {
|
|
608
607
|
id: number;
|
|
609
608
|
login: string;
|
|
@@ -614,6 +613,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
614
613
|
created_at?: string | undefined;
|
|
615
614
|
draft?: boolean | undefined;
|
|
616
615
|
comments?: number | undefined;
|
|
616
|
+
state?: "open" | "closed" | undefined;
|
|
617
617
|
html_url?: string | undefined;
|
|
618
618
|
node_id?: string | undefined;
|
|
619
619
|
updated_at?: string | undefined;
|
|
@@ -636,12 +636,11 @@ 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";
|
|
639
640
|
success: boolean;
|
|
640
641
|
error: string;
|
|
641
|
-
operation: "get_pull_request";
|
|
642
642
|
number?: number | undefined;
|
|
643
643
|
title?: string | undefined;
|
|
644
|
-
state?: "open" | "closed" | undefined;
|
|
645
644
|
user?: {
|
|
646
645
|
id: number;
|
|
647
646
|
login: string;
|
|
@@ -652,6 +651,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
652
651
|
created_at?: string | undefined;
|
|
653
652
|
draft?: boolean | undefined;
|
|
654
653
|
comments?: number | undefined;
|
|
654
|
+
state?: "open" | "closed" | undefined;
|
|
655
655
|
html_url?: string | undefined;
|
|
656
656
|
node_id?: string | undefined;
|
|
657
657
|
updated_at?: string | 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";
|
|
698
699
|
success: boolean;
|
|
699
700
|
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";
|
|
712
713
|
success: boolean;
|
|
713
714
|
error: string;
|
|
714
|
-
operation: "create_pr_comment";
|
|
715
715
|
user?: {
|
|
716
716
|
id: number;
|
|
717
717
|
login: string;
|
|
@@ -816,9 +816,9 @@ 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";
|
|
819
820
|
success: boolean;
|
|
820
821
|
error: string;
|
|
821
|
-
operation: "list_repositories";
|
|
822
822
|
repositories?: {
|
|
823
823
|
description: string | null;
|
|
824
824
|
name: string;
|
|
@@ -847,9 +847,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
847
847
|
visibility?: string | undefined;
|
|
848
848
|
}[] | undefined;
|
|
849
849
|
}, {
|
|
850
|
+
operation: "list_repositories";
|
|
850
851
|
success: boolean;
|
|
851
852
|
error: string;
|
|
852
|
-
operation: "list_repositories";
|
|
853
853
|
repositories?: {
|
|
854
854
|
description: string | null;
|
|
855
855
|
name: string;
|
|
@@ -918,9 +918,9 @@ 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";
|
|
921
922
|
success: boolean;
|
|
922
923
|
error: string;
|
|
923
|
-
operation: "get_repository";
|
|
924
924
|
description?: string | null | undefined;
|
|
925
925
|
name?: string | undefined;
|
|
926
926
|
id?: number | undefined;
|
|
@@ -947,9 +947,9 @@ 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";
|
|
950
951
|
success: boolean;
|
|
951
952
|
error: string;
|
|
952
|
-
operation: "get_repository";
|
|
953
953
|
description?: string | null | undefined;
|
|
954
954
|
name?: string | undefined;
|
|
955
955
|
id?: number | 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";
|
|
1000
1001
|
success: boolean;
|
|
1001
1002
|
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";
|
|
1014
1015
|
success: boolean;
|
|
1015
1016
|
error: string;
|
|
1016
|
-
operation: "create_issue_comment";
|
|
1017
1017
|
user?: {
|
|
1018
1018
|
id: number;
|
|
1019
1019
|
login: string;
|
|
@@ -1069,7 +1069,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1069
1069
|
}, "strip", z.ZodTypeAny, {
|
|
1070
1070
|
number: number;
|
|
1071
1071
|
title: string;
|
|
1072
|
-
state: "open" | "closed";
|
|
1073
1072
|
user: {
|
|
1074
1073
|
id: number;
|
|
1075
1074
|
login: string;
|
|
@@ -1084,6 +1083,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1084
1083
|
color: string;
|
|
1085
1084
|
}[];
|
|
1086
1085
|
comments: number;
|
|
1086
|
+
state: "open" | "closed";
|
|
1087
1087
|
html_url: string;
|
|
1088
1088
|
node_id: string;
|
|
1089
1089
|
updated_at: string;
|
|
@@ -1091,7 +1091,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1091
1091
|
}, {
|
|
1092
1092
|
number: number;
|
|
1093
1093
|
title: string;
|
|
1094
|
-
state: "open" | "closed";
|
|
1095
1094
|
user: {
|
|
1096
1095
|
id: number;
|
|
1097
1096
|
login: string;
|
|
@@ -1106,19 +1105,19 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1106
1105
|
color: string;
|
|
1107
1106
|
}[];
|
|
1108
1107
|
comments: number;
|
|
1108
|
+
state: "open" | "closed";
|
|
1109
1109
|
html_url: string;
|
|
1110
1110
|
node_id: string;
|
|
1111
1111
|
updated_at: string;
|
|
1112
1112
|
closed_at: string | null;
|
|
1113
1113
|
}>, "many">>;
|
|
1114
1114
|
}, "strip", z.ZodTypeAny, {
|
|
1115
|
+
operation: "list_issues";
|
|
1115
1116
|
success: boolean;
|
|
1116
1117
|
error: string;
|
|
1117
|
-
operation: "list_issues";
|
|
1118
1118
|
issues?: {
|
|
1119
1119
|
number: number;
|
|
1120
1120
|
title: string;
|
|
1121
|
-
state: "open" | "closed";
|
|
1122
1121
|
user: {
|
|
1123
1122
|
id: number;
|
|
1124
1123
|
login: string;
|
|
@@ -1133,19 +1132,19 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1133
1132
|
color: string;
|
|
1134
1133
|
}[];
|
|
1135
1134
|
comments: number;
|
|
1135
|
+
state: "open" | "closed";
|
|
1136
1136
|
html_url: string;
|
|
1137
1137
|
node_id: string;
|
|
1138
1138
|
updated_at: string;
|
|
1139
1139
|
closed_at: string | null;
|
|
1140
1140
|
}[] | undefined;
|
|
1141
1141
|
}, {
|
|
1142
|
+
operation: "list_issues";
|
|
1142
1143
|
success: boolean;
|
|
1143
1144
|
error: string;
|
|
1144
|
-
operation: "list_issues";
|
|
1145
1145
|
issues?: {
|
|
1146
1146
|
number: number;
|
|
1147
1147
|
title: string;
|
|
1148
|
-
state: "open" | "closed";
|
|
1149
1148
|
user: {
|
|
1150
1149
|
id: number;
|
|
1151
1150
|
login: string;
|
|
@@ -1160,6 +1159,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1160
1159
|
color: string;
|
|
1161
1160
|
}[];
|
|
1162
1161
|
comments: number;
|
|
1162
|
+
state: "open" | "closed";
|
|
1163
1163
|
html_url: string;
|
|
1164
1164
|
node_id: string;
|
|
1165
1165
|
updated_at: string;
|
|
@@ -1261,9 +1261,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1261
1261
|
}, "strip", z.ZodTypeAny, {
|
|
1262
1262
|
sort: "created" | "updated" | "popularity" | "long-running";
|
|
1263
1263
|
operation: "list_pull_requests";
|
|
1264
|
-
state: "all" | "open" | "closed";
|
|
1265
1264
|
owner: string;
|
|
1266
1265
|
page: number;
|
|
1266
|
+
state: "all" | "open" | "closed";
|
|
1267
1267
|
repo: string;
|
|
1268
1268
|
direction: "asc" | "desc";
|
|
1269
1269
|
per_page: number;
|
|
@@ -1274,8 +1274,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1274
1274
|
repo: string;
|
|
1275
1275
|
sort?: "created" | "updated" | "popularity" | "long-running" | undefined;
|
|
1276
1276
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1277
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
1278
1277
|
page?: number | undefined;
|
|
1278
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
1279
1279
|
direction?: "asc" | "desc" | undefined;
|
|
1280
1280
|
per_page?: number | undefined;
|
|
1281
1281
|
}>, z.ZodObject<{
|
|
@@ -1391,9 +1391,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1391
1391
|
}, "strip", z.ZodTypeAny, {
|
|
1392
1392
|
sort: "created" | "updated" | "comments";
|
|
1393
1393
|
operation: "list_issues";
|
|
1394
|
-
state: "all" | "open" | "closed";
|
|
1395
1394
|
owner: string;
|
|
1396
1395
|
page: number;
|
|
1396
|
+
state: "all" | "open" | "closed";
|
|
1397
1397
|
repo: string;
|
|
1398
1398
|
direction: "asc" | "desc";
|
|
1399
1399
|
per_page: number;
|
|
@@ -1405,9 +1405,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1405
1405
|
repo: string;
|
|
1406
1406
|
sort?: "created" | "updated" | "comments" | undefined;
|
|
1407
1407
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1408
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
1409
1408
|
labels?: string | undefined;
|
|
1410
1409
|
page?: number | undefined;
|
|
1410
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
1411
1411
|
direction?: "asc" | "desc" | undefined;
|
|
1412
1412
|
per_page?: number | undefined;
|
|
1413
1413
|
}>]>;
|
|
@@ -1428,9 +1428,9 @@ 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";
|
|
1431
1432
|
success: boolean;
|
|
1432
1433
|
error: string;
|
|
1433
|
-
operation: "get_file";
|
|
1434
1434
|
path?: string | undefined;
|
|
1435
1435
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
1436
1436
|
name?: string | undefined;
|
|
@@ -1443,9 +1443,9 @@ 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";
|
|
1446
1447
|
success: boolean;
|
|
1447
1448
|
error: string;
|
|
1448
|
-
operation: "get_file";
|
|
1449
1449
|
path?: string | undefined;
|
|
1450
1450
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
1451
1451
|
name?: string | undefined;
|
|
@@ -1499,9 +1499,9 @@ 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";
|
|
1502
1503
|
success: boolean;
|
|
1503
1504
|
error: string;
|
|
1504
|
-
operation: "get_directory";
|
|
1505
1505
|
contents?: {
|
|
1506
1506
|
path: string;
|
|
1507
1507
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
@@ -1516,9 +1516,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1516
1516
|
encoding?: string | undefined;
|
|
1517
1517
|
}[] | undefined;
|
|
1518
1518
|
}, {
|
|
1519
|
+
operation: "get_directory";
|
|
1519
1520
|
success: boolean;
|
|
1520
1521
|
error: string;
|
|
1521
|
-
operation: "get_directory";
|
|
1522
1522
|
contents?: {
|
|
1523
1523
|
path: string;
|
|
1524
1524
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
@@ -1594,7 +1594,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1594
1594
|
}, "strip", z.ZodTypeAny, {
|
|
1595
1595
|
number: number;
|
|
1596
1596
|
title: string;
|
|
1597
|
-
state: "open" | "closed";
|
|
1598
1597
|
user: {
|
|
1599
1598
|
id: number;
|
|
1600
1599
|
login: string;
|
|
@@ -1604,6 +1603,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1604
1603
|
body: string | null;
|
|
1605
1604
|
created_at: string;
|
|
1606
1605
|
draft: boolean;
|
|
1606
|
+
state: "open" | "closed";
|
|
1607
1607
|
html_url: string;
|
|
1608
1608
|
node_id: string;
|
|
1609
1609
|
updated_at: string;
|
|
@@ -1629,7 +1629,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1629
1629
|
}, {
|
|
1630
1630
|
number: number;
|
|
1631
1631
|
title: string;
|
|
1632
|
-
state: "open" | "closed";
|
|
1633
1632
|
user: {
|
|
1634
1633
|
id: number;
|
|
1635
1634
|
login: string;
|
|
@@ -1639,6 +1638,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1639
1638
|
body: string | null;
|
|
1640
1639
|
created_at: string;
|
|
1641
1640
|
draft: boolean;
|
|
1641
|
+
state: "open" | "closed";
|
|
1642
1642
|
html_url: string;
|
|
1643
1643
|
node_id: string;
|
|
1644
1644
|
updated_at: string;
|
|
@@ -1663,13 +1663,12 @@ 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";
|
|
1666
1667
|
success: boolean;
|
|
1667
1668
|
error: string;
|
|
1668
|
-
operation: "list_pull_requests";
|
|
1669
1669
|
pull_requests?: {
|
|
1670
1670
|
number: number;
|
|
1671
1671
|
title: string;
|
|
1672
|
-
state: "open" | "closed";
|
|
1673
1672
|
user: {
|
|
1674
1673
|
id: number;
|
|
1675
1674
|
login: string;
|
|
@@ -1679,6 +1678,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1679
1678
|
body: string | null;
|
|
1680
1679
|
created_at: string;
|
|
1681
1680
|
draft: boolean;
|
|
1681
|
+
state: "open" | "closed";
|
|
1682
1682
|
html_url: string;
|
|
1683
1683
|
node_id: string;
|
|
1684
1684
|
updated_at: string;
|
|
@@ -1703,13 +1703,12 @@ 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";
|
|
1706
1707
|
success: boolean;
|
|
1707
1708
|
error: string;
|
|
1708
|
-
operation: "list_pull_requests";
|
|
1709
1709
|
pull_requests?: {
|
|
1710
1710
|
number: number;
|
|
1711
1711
|
title: string;
|
|
1712
|
-
state: "open" | "closed";
|
|
1713
1712
|
user: {
|
|
1714
1713
|
id: number;
|
|
1715
1714
|
login: string;
|
|
@@ -1719,6 +1718,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1719
1718
|
body: string | null;
|
|
1720
1719
|
created_at: string;
|
|
1721
1720
|
draft: boolean;
|
|
1721
|
+
state: "open" | "closed";
|
|
1722
1722
|
html_url: string;
|
|
1723
1723
|
node_id: string;
|
|
1724
1724
|
updated_at: string;
|
|
@@ -1802,12 +1802,11 @@ 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";
|
|
1805
1806
|
success: boolean;
|
|
1806
1807
|
error: string;
|
|
1807
|
-
operation: "get_pull_request";
|
|
1808
1808
|
number?: number | undefined;
|
|
1809
1809
|
title?: string | undefined;
|
|
1810
|
-
state?: "open" | "closed" | undefined;
|
|
1811
1810
|
user?: {
|
|
1812
1811
|
id: number;
|
|
1813
1812
|
login: string;
|
|
@@ -1818,6 +1817,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1818
1817
|
created_at?: string | undefined;
|
|
1819
1818
|
draft?: boolean | undefined;
|
|
1820
1819
|
comments?: number | undefined;
|
|
1820
|
+
state?: "open" | "closed" | undefined;
|
|
1821
1821
|
html_url?: string | undefined;
|
|
1822
1822
|
node_id?: string | undefined;
|
|
1823
1823
|
updated_at?: string | undefined;
|
|
@@ -1840,12 +1840,11 @@ 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";
|
|
1843
1844
|
success: boolean;
|
|
1844
1845
|
error: string;
|
|
1845
|
-
operation: "get_pull_request";
|
|
1846
1846
|
number?: number | undefined;
|
|
1847
1847
|
title?: string | undefined;
|
|
1848
|
-
state?: "open" | "closed" | undefined;
|
|
1849
1848
|
user?: {
|
|
1850
1849
|
id: number;
|
|
1851
1850
|
login: string;
|
|
@@ -1856,6 +1855,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1856
1855
|
created_at?: string | undefined;
|
|
1857
1856
|
draft?: boolean | undefined;
|
|
1858
1857
|
comments?: number | undefined;
|
|
1858
|
+
state?: "open" | "closed" | undefined;
|
|
1859
1859
|
html_url?: string | undefined;
|
|
1860
1860
|
node_id?: string | undefined;
|
|
1861
1861
|
updated_at?: string | 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";
|
|
1902
1903
|
success: boolean;
|
|
1903
1904
|
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";
|
|
1916
1917
|
success: boolean;
|
|
1917
1918
|
error: string;
|
|
1918
|
-
operation: "create_pr_comment";
|
|
1919
1919
|
user?: {
|
|
1920
1920
|
id: number;
|
|
1921
1921
|
login: string;
|
|
@@ -2020,9 +2020,9 @@ 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";
|
|
2023
2024
|
success: boolean;
|
|
2024
2025
|
error: string;
|
|
2025
|
-
operation: "list_repositories";
|
|
2026
2026
|
repositories?: {
|
|
2027
2027
|
description: string | null;
|
|
2028
2028
|
name: string;
|
|
@@ -2051,9 +2051,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2051
2051
|
visibility?: string | undefined;
|
|
2052
2052
|
}[] | undefined;
|
|
2053
2053
|
}, {
|
|
2054
|
+
operation: "list_repositories";
|
|
2054
2055
|
success: boolean;
|
|
2055
2056
|
error: string;
|
|
2056
|
-
operation: "list_repositories";
|
|
2057
2057
|
repositories?: {
|
|
2058
2058
|
description: string | null;
|
|
2059
2059
|
name: string;
|
|
@@ -2122,9 +2122,9 @@ 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";
|
|
2125
2126
|
success: boolean;
|
|
2126
2127
|
error: string;
|
|
2127
|
-
operation: "get_repository";
|
|
2128
2128
|
description?: string | null | undefined;
|
|
2129
2129
|
name?: string | undefined;
|
|
2130
2130
|
id?: number | undefined;
|
|
@@ -2151,9 +2151,9 @@ 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";
|
|
2154
2155
|
success: boolean;
|
|
2155
2156
|
error: string;
|
|
2156
|
-
operation: "get_repository";
|
|
2157
2157
|
description?: string | null | undefined;
|
|
2158
2158
|
name?: string | undefined;
|
|
2159
2159
|
id?: number | 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";
|
|
2204
2205
|
success: boolean;
|
|
2205
2206
|
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";
|
|
2218
2219
|
success: boolean;
|
|
2219
2220
|
error: string;
|
|
2220
|
-
operation: "create_issue_comment";
|
|
2221
2221
|
user?: {
|
|
2222
2222
|
id: number;
|
|
2223
2223
|
login: string;
|
|
@@ -2273,7 +2273,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2273
2273
|
}, "strip", z.ZodTypeAny, {
|
|
2274
2274
|
number: number;
|
|
2275
2275
|
title: string;
|
|
2276
|
-
state: "open" | "closed";
|
|
2277
2276
|
user: {
|
|
2278
2277
|
id: number;
|
|
2279
2278
|
login: string;
|
|
@@ -2288,6 +2287,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2288
2287
|
color: string;
|
|
2289
2288
|
}[];
|
|
2290
2289
|
comments: number;
|
|
2290
|
+
state: "open" | "closed";
|
|
2291
2291
|
html_url: string;
|
|
2292
2292
|
node_id: string;
|
|
2293
2293
|
updated_at: string;
|
|
@@ -2295,7 +2295,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2295
2295
|
}, {
|
|
2296
2296
|
number: number;
|
|
2297
2297
|
title: string;
|
|
2298
|
-
state: "open" | "closed";
|
|
2299
2298
|
user: {
|
|
2300
2299
|
id: number;
|
|
2301
2300
|
login: string;
|
|
@@ -2310,19 +2309,19 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2310
2309
|
color: string;
|
|
2311
2310
|
}[];
|
|
2312
2311
|
comments: number;
|
|
2312
|
+
state: "open" | "closed";
|
|
2313
2313
|
html_url: string;
|
|
2314
2314
|
node_id: string;
|
|
2315
2315
|
updated_at: string;
|
|
2316
2316
|
closed_at: string | null;
|
|
2317
2317
|
}>, "many">>;
|
|
2318
2318
|
}, "strip", z.ZodTypeAny, {
|
|
2319
|
+
operation: "list_issues";
|
|
2319
2320
|
success: boolean;
|
|
2320
2321
|
error: string;
|
|
2321
|
-
operation: "list_issues";
|
|
2322
2322
|
issues?: {
|
|
2323
2323
|
number: number;
|
|
2324
2324
|
title: string;
|
|
2325
|
-
state: "open" | "closed";
|
|
2326
2325
|
user: {
|
|
2327
2326
|
id: number;
|
|
2328
2327
|
login: string;
|
|
@@ -2337,19 +2336,19 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2337
2336
|
color: string;
|
|
2338
2337
|
}[];
|
|
2339
2338
|
comments: number;
|
|
2339
|
+
state: "open" | "closed";
|
|
2340
2340
|
html_url: string;
|
|
2341
2341
|
node_id: string;
|
|
2342
2342
|
updated_at: string;
|
|
2343
2343
|
closed_at: string | null;
|
|
2344
2344
|
}[] | undefined;
|
|
2345
2345
|
}, {
|
|
2346
|
+
operation: "list_issues";
|
|
2346
2347
|
success: boolean;
|
|
2347
2348
|
error: string;
|
|
2348
|
-
operation: "list_issues";
|
|
2349
2349
|
issues?: {
|
|
2350
2350
|
number: number;
|
|
2351
2351
|
title: string;
|
|
2352
|
-
state: "open" | "closed";
|
|
2353
2352
|
user: {
|
|
2354
2353
|
id: number;
|
|
2355
2354
|
login: string;
|
|
@@ -2364,6 +2363,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2364
2363
|
color: string;
|
|
2365
2364
|
}[];
|
|
2366
2365
|
comments: number;
|
|
2366
|
+
state: "open" | "closed";
|
|
2367
2367
|
html_url: string;
|
|
2368
2368
|
node_id: string;
|
|
2369
2369
|
updated_at: string;
|