@bubblelab/bubble-core 0.1.30 → 0.1.31
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 +48 -48
- package/dist/bubbles/service-bubble/agi-inc.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +156 -156
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +8 -8
- package/dist/bubbles/service-bubble/followupboss.d.ts +78 -78
- package/dist/bubbles/service-bubble/github.d.ts +98 -98
- package/dist/bubbles/service-bubble/gmail.d.ts +30 -30
- package/dist/bubbles/service-bubble/google-calendar.d.ts +88 -88
- package/dist/bubbles/service-bubble/google-drive.d.ts +50 -50
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/index.d.ts +1 -1
- package/dist/bubbles/service-bubble/jira/index.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/index.js.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.d.ts +497 -497
- package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.js +40 -2
- package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +69 -68
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.js +1 -4
- package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/notion/notion.d.ts +148 -148
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
- package/dist/bubbles.json +10 -6
- package/package.json +2 -2
|
@@ -10,15 +10,15 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
10
10
|
ref: z.ZodOptional<z.ZodString>;
|
|
11
11
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
-
path: string;
|
|
14
13
|
operation: "get_file";
|
|
14
|
+
path: string;
|
|
15
15
|
owner: string;
|
|
16
16
|
repo: string;
|
|
17
17
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
18
18
|
ref?: string | undefined;
|
|
19
19
|
}, {
|
|
20
|
-
path: string;
|
|
21
20
|
operation: "get_file";
|
|
21
|
+
path: string;
|
|
22
22
|
owner: string;
|
|
23
23
|
repo: string;
|
|
24
24
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -31,8 +31,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
31
31
|
ref: z.ZodOptional<z.ZodString>;
|
|
32
32
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
33
33
|
}, "strip", z.ZodTypeAny, {
|
|
34
|
-
path: string;
|
|
35
34
|
operation: "get_directory";
|
|
35
|
+
path: string;
|
|
36
36
|
owner: string;
|
|
37
37
|
repo: string;
|
|
38
38
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -55,8 +55,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
55
55
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
56
56
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
-
sort: "created" | "updated" | "popularity" | "long-running";
|
|
59
58
|
operation: "list_pull_requests";
|
|
59
|
+
sort: "created" | "updated" | "popularity" | "long-running";
|
|
60
60
|
owner: string;
|
|
61
61
|
page: number;
|
|
62
62
|
state: "all" | "open" | "closed";
|
|
@@ -100,15 +100,15 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
100
100
|
body: z.ZodString;
|
|
101
101
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
102
102
|
}, "strip", z.ZodTypeAny, {
|
|
103
|
-
body: string;
|
|
104
103
|
operation: "create_pr_comment";
|
|
104
|
+
body: string;
|
|
105
105
|
owner: string;
|
|
106
106
|
repo: string;
|
|
107
107
|
pull_number: number;
|
|
108
108
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
109
109
|
}, {
|
|
110
|
-
body: string;
|
|
111
110
|
operation: "create_pr_comment";
|
|
111
|
+
body: string;
|
|
112
112
|
owner: string;
|
|
113
113
|
repo: string;
|
|
114
114
|
pull_number: number;
|
|
@@ -122,8 +122,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
122
122
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
123
123
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
124
124
|
}, "strip", z.ZodTypeAny, {
|
|
125
|
-
sort: "created" | "updated" | "full_name" | "pushed";
|
|
126
125
|
operation: "list_repositories";
|
|
126
|
+
sort: "created" | "updated" | "full_name" | "pushed";
|
|
127
127
|
page: number;
|
|
128
128
|
visibility: "public" | "private" | "all";
|
|
129
129
|
direction: "asc" | "desc";
|
|
@@ -160,15 +160,15 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
160
160
|
body: z.ZodString;
|
|
161
161
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
|
-
body: string;
|
|
164
163
|
operation: "create_issue_comment";
|
|
164
|
+
body: string;
|
|
165
165
|
owner: string;
|
|
166
166
|
repo: string;
|
|
167
167
|
issue_number: number;
|
|
168
168
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
169
169
|
}, {
|
|
170
|
-
body: string;
|
|
171
170
|
operation: "create_issue_comment";
|
|
171
|
+
body: string;
|
|
172
172
|
owner: string;
|
|
173
173
|
repo: string;
|
|
174
174
|
issue_number: number;
|
|
@@ -185,23 +185,23 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
185
185
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
186
186
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
187
187
|
}, "strip", z.ZodTypeAny, {
|
|
188
|
-
sort: "created" | "updated" | "comments";
|
|
189
188
|
operation: "list_issues";
|
|
189
|
+
sort: "comments" | "created" | "updated";
|
|
190
190
|
owner: string;
|
|
191
191
|
page: number;
|
|
192
192
|
state: "all" | "open" | "closed";
|
|
193
193
|
repo: string;
|
|
194
194
|
direction: "asc" | "desc";
|
|
195
195
|
per_page: number;
|
|
196
|
-
labels?: string | undefined;
|
|
197
196
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
197
|
+
labels?: string | undefined;
|
|
198
198
|
}, {
|
|
199
199
|
operation: "list_issues";
|
|
200
200
|
owner: string;
|
|
201
201
|
repo: string;
|
|
202
|
-
sort?: "
|
|
203
|
-
labels?: string | undefined;
|
|
202
|
+
sort?: "comments" | "created" | "updated" | undefined;
|
|
204
203
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
204
|
+
labels?: string | undefined;
|
|
205
205
|
page?: number | undefined;
|
|
206
206
|
state?: "all" | "open" | "closed" | undefined;
|
|
207
207
|
direction?: "asc" | "desc" | undefined;
|
|
@@ -390,8 +390,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
390
390
|
}, "strip", z.ZodTypeAny, {
|
|
391
391
|
number: number;
|
|
392
392
|
title: string;
|
|
393
|
-
id: number;
|
|
394
393
|
body: string | null;
|
|
394
|
+
id: number;
|
|
395
395
|
user: {
|
|
396
396
|
id: number;
|
|
397
397
|
login: string;
|
|
@@ -425,8 +425,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
425
425
|
}, {
|
|
426
426
|
number: number;
|
|
427
427
|
title: string;
|
|
428
|
-
id: number;
|
|
429
428
|
body: string | null;
|
|
429
|
+
id: number;
|
|
430
430
|
user: {
|
|
431
431
|
id: number;
|
|
432
432
|
login: string;
|
|
@@ -465,8 +465,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
465
465
|
pull_requests?: {
|
|
466
466
|
number: number;
|
|
467
467
|
title: string;
|
|
468
|
-
id: number;
|
|
469
468
|
body: string | null;
|
|
469
|
+
id: number;
|
|
470
470
|
user: {
|
|
471
471
|
id: number;
|
|
472
472
|
login: string;
|
|
@@ -505,8 +505,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
505
505
|
pull_requests?: {
|
|
506
506
|
number: number;
|
|
507
507
|
title: string;
|
|
508
|
-
id: number;
|
|
509
508
|
body: string | null;
|
|
509
|
+
id: number;
|
|
510
510
|
user: {
|
|
511
511
|
id: number;
|
|
512
512
|
login: string;
|
|
@@ -603,9 +603,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
603
603
|
error: string;
|
|
604
604
|
number?: number | undefined;
|
|
605
605
|
title?: string | undefined;
|
|
606
|
-
id?: number | undefined;
|
|
607
|
-
body?: string | null | undefined;
|
|
608
606
|
comments?: number | undefined;
|
|
607
|
+
body?: string | null | undefined;
|
|
608
|
+
id?: number | undefined;
|
|
609
609
|
user?: {
|
|
610
610
|
id: number;
|
|
611
611
|
login: string;
|
|
@@ -641,9 +641,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
641
641
|
error: string;
|
|
642
642
|
number?: number | undefined;
|
|
643
643
|
title?: string | undefined;
|
|
644
|
-
id?: number | undefined;
|
|
645
|
-
body?: string | null | undefined;
|
|
646
644
|
comments?: number | undefined;
|
|
645
|
+
body?: string | null | undefined;
|
|
646
|
+
id?: number | undefined;
|
|
647
647
|
user?: {
|
|
648
648
|
id: number;
|
|
649
649
|
login: string;
|
|
@@ -698,8 +698,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
698
698
|
operation: "create_pr_comment";
|
|
699
699
|
success: boolean;
|
|
700
700
|
error: string;
|
|
701
|
-
id?: number | undefined;
|
|
702
701
|
body?: string | undefined;
|
|
702
|
+
id?: number | undefined;
|
|
703
703
|
user?: {
|
|
704
704
|
id: number;
|
|
705
705
|
login: string;
|
|
@@ -712,8 +712,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
712
712
|
operation: "create_pr_comment";
|
|
713
713
|
success: boolean;
|
|
714
714
|
error: string;
|
|
715
|
-
id?: number | undefined;
|
|
716
715
|
body?: string | undefined;
|
|
716
|
+
id?: number | undefined;
|
|
717
717
|
user?: {
|
|
718
718
|
id: number;
|
|
719
719
|
login: string;
|
|
@@ -764,8 +764,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
764
764
|
visibility: z.ZodOptional<z.ZodString>;
|
|
765
765
|
}, "strip", z.ZodTypeAny, {
|
|
766
766
|
description: string | null;
|
|
767
|
-
id: number;
|
|
768
767
|
name: string;
|
|
768
|
+
id: number;
|
|
769
769
|
size: number;
|
|
770
770
|
private: boolean;
|
|
771
771
|
created_at: string;
|
|
@@ -790,8 +790,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
790
790
|
visibility?: string | undefined;
|
|
791
791
|
}, {
|
|
792
792
|
description: string | null;
|
|
793
|
-
id: number;
|
|
794
793
|
name: string;
|
|
794
|
+
id: number;
|
|
795
795
|
size: number;
|
|
796
796
|
private: boolean;
|
|
797
797
|
created_at: string;
|
|
@@ -821,8 +821,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
821
821
|
error: string;
|
|
822
822
|
repositories?: {
|
|
823
823
|
description: string | null;
|
|
824
|
-
id: number;
|
|
825
824
|
name: string;
|
|
825
|
+
id: number;
|
|
826
826
|
size: number;
|
|
827
827
|
private: boolean;
|
|
828
828
|
created_at: string;
|
|
@@ -852,8 +852,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
852
852
|
error: string;
|
|
853
853
|
repositories?: {
|
|
854
854
|
description: string | null;
|
|
855
|
-
id: number;
|
|
856
855
|
name: string;
|
|
856
|
+
id: number;
|
|
857
857
|
size: number;
|
|
858
858
|
private: boolean;
|
|
859
859
|
created_at: string;
|
|
@@ -922,8 +922,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
922
922
|
success: boolean;
|
|
923
923
|
error: string;
|
|
924
924
|
description?: string | null | undefined;
|
|
925
|
-
id?: number | undefined;
|
|
926
925
|
name?: string | undefined;
|
|
926
|
+
id?: number | undefined;
|
|
927
927
|
size?: number | undefined;
|
|
928
928
|
private?: boolean | undefined;
|
|
929
929
|
created_at?: string | undefined;
|
|
@@ -951,8 +951,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
951
951
|
success: boolean;
|
|
952
952
|
error: string;
|
|
953
953
|
description?: string | null | undefined;
|
|
954
|
-
id?: number | undefined;
|
|
955
954
|
name?: string | undefined;
|
|
955
|
+
id?: number | undefined;
|
|
956
956
|
size?: number | undefined;
|
|
957
957
|
private?: boolean | undefined;
|
|
958
958
|
created_at?: string | undefined;
|
|
@@ -1000,8 +1000,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1000
1000
|
operation: "create_issue_comment";
|
|
1001
1001
|
success: boolean;
|
|
1002
1002
|
error: string;
|
|
1003
|
-
id?: number | undefined;
|
|
1004
1003
|
body?: string | undefined;
|
|
1004
|
+
id?: number | undefined;
|
|
1005
1005
|
user?: {
|
|
1006
1006
|
id: number;
|
|
1007
1007
|
login: string;
|
|
@@ -1014,8 +1014,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1014
1014
|
operation: "create_issue_comment";
|
|
1015
1015
|
success: boolean;
|
|
1016
1016
|
error: string;
|
|
1017
|
-
id?: number | undefined;
|
|
1018
1017
|
body?: string | undefined;
|
|
1018
|
+
id?: number | undefined;
|
|
1019
1019
|
user?: {
|
|
1020
1020
|
id: number;
|
|
1021
1021
|
login: string;
|
|
@@ -1052,13 +1052,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1052
1052
|
description: z.ZodNullable<z.ZodString>;
|
|
1053
1053
|
}, "strip", z.ZodTypeAny, {
|
|
1054
1054
|
description: string | null;
|
|
1055
|
-
id: number;
|
|
1056
1055
|
name: string;
|
|
1056
|
+
id: number;
|
|
1057
1057
|
color: string;
|
|
1058
1058
|
}, {
|
|
1059
1059
|
description: string | null;
|
|
1060
|
-
id: number;
|
|
1061
1060
|
name: string;
|
|
1061
|
+
id: number;
|
|
1062
1062
|
color: string;
|
|
1063
1063
|
}>, "many">;
|
|
1064
1064
|
created_at: z.ZodString;
|
|
@@ -1069,15 +1069,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1069
1069
|
}, "strip", z.ZodTypeAny, {
|
|
1070
1070
|
number: number;
|
|
1071
1071
|
title: string;
|
|
1072
|
-
|
|
1073
|
-
body: string | null;
|
|
1072
|
+
comments: number;
|
|
1074
1073
|
labels: {
|
|
1075
1074
|
description: string | null;
|
|
1076
|
-
id: number;
|
|
1077
1075
|
name: string;
|
|
1076
|
+
id: number;
|
|
1078
1077
|
color: string;
|
|
1079
1078
|
}[];
|
|
1080
|
-
|
|
1079
|
+
body: string | null;
|
|
1080
|
+
id: number;
|
|
1081
1081
|
user: {
|
|
1082
1082
|
id: number;
|
|
1083
1083
|
login: string;
|
|
@@ -1091,15 +1091,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1091
1091
|
}, {
|
|
1092
1092
|
number: number;
|
|
1093
1093
|
title: string;
|
|
1094
|
-
|
|
1095
|
-
body: string | null;
|
|
1094
|
+
comments: number;
|
|
1096
1095
|
labels: {
|
|
1097
1096
|
description: string | null;
|
|
1098
|
-
id: number;
|
|
1099
1097
|
name: string;
|
|
1098
|
+
id: number;
|
|
1100
1099
|
color: string;
|
|
1101
1100
|
}[];
|
|
1102
|
-
|
|
1101
|
+
body: string | null;
|
|
1102
|
+
id: number;
|
|
1103
1103
|
user: {
|
|
1104
1104
|
id: number;
|
|
1105
1105
|
login: string;
|
|
@@ -1118,15 +1118,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1118
1118
|
issues?: {
|
|
1119
1119
|
number: number;
|
|
1120
1120
|
title: string;
|
|
1121
|
-
|
|
1122
|
-
body: string | null;
|
|
1121
|
+
comments: number;
|
|
1123
1122
|
labels: {
|
|
1124
1123
|
description: string | null;
|
|
1125
|
-
id: number;
|
|
1126
1124
|
name: string;
|
|
1125
|
+
id: number;
|
|
1127
1126
|
color: string;
|
|
1128
1127
|
}[];
|
|
1129
|
-
|
|
1128
|
+
body: string | null;
|
|
1129
|
+
id: number;
|
|
1130
1130
|
user: {
|
|
1131
1131
|
id: number;
|
|
1132
1132
|
login: string;
|
|
@@ -1145,15 +1145,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1145
1145
|
issues?: {
|
|
1146
1146
|
number: number;
|
|
1147
1147
|
title: string;
|
|
1148
|
-
|
|
1149
|
-
body: string | null;
|
|
1148
|
+
comments: number;
|
|
1150
1149
|
labels: {
|
|
1151
1150
|
description: string | null;
|
|
1152
|
-
id: number;
|
|
1153
1151
|
name: string;
|
|
1152
|
+
id: number;
|
|
1154
1153
|
color: string;
|
|
1155
1154
|
}[];
|
|
1156
|
-
|
|
1155
|
+
body: string | null;
|
|
1156
|
+
id: number;
|
|
1157
1157
|
user: {
|
|
1158
1158
|
id: number;
|
|
1159
1159
|
login: string;
|
|
@@ -1214,15 +1214,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1214
1214
|
ref: z.ZodOptional<z.ZodString>;
|
|
1215
1215
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1216
1216
|
}, "strip", z.ZodTypeAny, {
|
|
1217
|
-
path: string;
|
|
1218
1217
|
operation: "get_file";
|
|
1218
|
+
path: string;
|
|
1219
1219
|
owner: string;
|
|
1220
1220
|
repo: string;
|
|
1221
1221
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1222
1222
|
ref?: string | undefined;
|
|
1223
1223
|
}, {
|
|
1224
|
-
path: string;
|
|
1225
1224
|
operation: "get_file";
|
|
1225
|
+
path: string;
|
|
1226
1226
|
owner: string;
|
|
1227
1227
|
repo: string;
|
|
1228
1228
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1235,8 +1235,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1235
1235
|
ref: z.ZodOptional<z.ZodString>;
|
|
1236
1236
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1237
1237
|
}, "strip", z.ZodTypeAny, {
|
|
1238
|
-
path: string;
|
|
1239
1238
|
operation: "get_directory";
|
|
1239
|
+
path: string;
|
|
1240
1240
|
owner: string;
|
|
1241
1241
|
repo: string;
|
|
1242
1242
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1259,8 +1259,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1259
1259
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1260
1260
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1261
1261
|
}, "strip", z.ZodTypeAny, {
|
|
1262
|
-
sort: "created" | "updated" | "popularity" | "long-running";
|
|
1263
1262
|
operation: "list_pull_requests";
|
|
1263
|
+
sort: "created" | "updated" | "popularity" | "long-running";
|
|
1264
1264
|
owner: string;
|
|
1265
1265
|
page: number;
|
|
1266
1266
|
state: "all" | "open" | "closed";
|
|
@@ -1304,15 +1304,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1304
1304
|
body: z.ZodString;
|
|
1305
1305
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1306
1306
|
}, "strip", z.ZodTypeAny, {
|
|
1307
|
-
body: string;
|
|
1308
1307
|
operation: "create_pr_comment";
|
|
1308
|
+
body: string;
|
|
1309
1309
|
owner: string;
|
|
1310
1310
|
repo: string;
|
|
1311
1311
|
pull_number: number;
|
|
1312
1312
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1313
1313
|
}, {
|
|
1314
|
-
body: string;
|
|
1315
1314
|
operation: "create_pr_comment";
|
|
1315
|
+
body: string;
|
|
1316
1316
|
owner: string;
|
|
1317
1317
|
repo: string;
|
|
1318
1318
|
pull_number: number;
|
|
@@ -1326,8 +1326,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1326
1326
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1327
1327
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1328
1328
|
}, "strip", z.ZodTypeAny, {
|
|
1329
|
-
sort: "created" | "updated" | "full_name" | "pushed";
|
|
1330
1329
|
operation: "list_repositories";
|
|
1330
|
+
sort: "created" | "updated" | "full_name" | "pushed";
|
|
1331
1331
|
page: number;
|
|
1332
1332
|
visibility: "public" | "private" | "all";
|
|
1333
1333
|
direction: "asc" | "desc";
|
|
@@ -1364,15 +1364,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1364
1364
|
body: z.ZodString;
|
|
1365
1365
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1366
1366
|
}, "strip", z.ZodTypeAny, {
|
|
1367
|
-
body: string;
|
|
1368
1367
|
operation: "create_issue_comment";
|
|
1368
|
+
body: string;
|
|
1369
1369
|
owner: string;
|
|
1370
1370
|
repo: string;
|
|
1371
1371
|
issue_number: number;
|
|
1372
1372
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1373
1373
|
}, {
|
|
1374
|
-
body: string;
|
|
1375
1374
|
operation: "create_issue_comment";
|
|
1375
|
+
body: string;
|
|
1376
1376
|
owner: string;
|
|
1377
1377
|
repo: string;
|
|
1378
1378
|
issue_number: number;
|
|
@@ -1389,23 +1389,23 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1389
1389
|
page: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
1390
1390
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1391
1391
|
}, "strip", z.ZodTypeAny, {
|
|
1392
|
-
sort: "created" | "updated" | "comments";
|
|
1393
1392
|
operation: "list_issues";
|
|
1393
|
+
sort: "comments" | "created" | "updated";
|
|
1394
1394
|
owner: string;
|
|
1395
1395
|
page: number;
|
|
1396
1396
|
state: "all" | "open" | "closed";
|
|
1397
1397
|
repo: string;
|
|
1398
1398
|
direction: "asc" | "desc";
|
|
1399
1399
|
per_page: number;
|
|
1400
|
-
labels?: string | undefined;
|
|
1401
1400
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1401
|
+
labels?: string | undefined;
|
|
1402
1402
|
}, {
|
|
1403
1403
|
operation: "list_issues";
|
|
1404
1404
|
owner: string;
|
|
1405
1405
|
repo: string;
|
|
1406
|
-
sort?: "
|
|
1407
|
-
labels?: string | undefined;
|
|
1406
|
+
sort?: "comments" | "created" | "updated" | undefined;
|
|
1408
1407
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1408
|
+
labels?: string | undefined;
|
|
1409
1409
|
page?: number | undefined;
|
|
1410
1410
|
state?: "all" | "open" | "closed" | undefined;
|
|
1411
1411
|
direction?: "asc" | "desc" | undefined;
|
|
@@ -1594,8 +1594,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1594
1594
|
}, "strip", z.ZodTypeAny, {
|
|
1595
1595
|
number: number;
|
|
1596
1596
|
title: string;
|
|
1597
|
-
id: number;
|
|
1598
1597
|
body: string | null;
|
|
1598
|
+
id: number;
|
|
1599
1599
|
user: {
|
|
1600
1600
|
id: number;
|
|
1601
1601
|
login: string;
|
|
@@ -1629,8 +1629,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1629
1629
|
}, {
|
|
1630
1630
|
number: number;
|
|
1631
1631
|
title: string;
|
|
1632
|
-
id: number;
|
|
1633
1632
|
body: string | null;
|
|
1633
|
+
id: number;
|
|
1634
1634
|
user: {
|
|
1635
1635
|
id: number;
|
|
1636
1636
|
login: string;
|
|
@@ -1669,8 +1669,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1669
1669
|
pull_requests?: {
|
|
1670
1670
|
number: number;
|
|
1671
1671
|
title: string;
|
|
1672
|
-
id: number;
|
|
1673
1672
|
body: string | null;
|
|
1673
|
+
id: number;
|
|
1674
1674
|
user: {
|
|
1675
1675
|
id: number;
|
|
1676
1676
|
login: string;
|
|
@@ -1709,8 +1709,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1709
1709
|
pull_requests?: {
|
|
1710
1710
|
number: number;
|
|
1711
1711
|
title: string;
|
|
1712
|
-
id: number;
|
|
1713
1712
|
body: string | null;
|
|
1713
|
+
id: number;
|
|
1714
1714
|
user: {
|
|
1715
1715
|
id: number;
|
|
1716
1716
|
login: string;
|
|
@@ -1807,9 +1807,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1807
1807
|
error: string;
|
|
1808
1808
|
number?: number | undefined;
|
|
1809
1809
|
title?: string | undefined;
|
|
1810
|
-
id?: number | undefined;
|
|
1811
|
-
body?: string | null | undefined;
|
|
1812
1810
|
comments?: number | undefined;
|
|
1811
|
+
body?: string | null | undefined;
|
|
1812
|
+
id?: number | undefined;
|
|
1813
1813
|
user?: {
|
|
1814
1814
|
id: number;
|
|
1815
1815
|
login: string;
|
|
@@ -1845,9 +1845,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1845
1845
|
error: string;
|
|
1846
1846
|
number?: number | undefined;
|
|
1847
1847
|
title?: string | undefined;
|
|
1848
|
-
id?: number | undefined;
|
|
1849
|
-
body?: string | null | undefined;
|
|
1850
1848
|
comments?: number | undefined;
|
|
1849
|
+
body?: string | null | undefined;
|
|
1850
|
+
id?: number | undefined;
|
|
1851
1851
|
user?: {
|
|
1852
1852
|
id: number;
|
|
1853
1853
|
login: string;
|
|
@@ -1902,8 +1902,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1902
1902
|
operation: "create_pr_comment";
|
|
1903
1903
|
success: boolean;
|
|
1904
1904
|
error: string;
|
|
1905
|
-
id?: number | undefined;
|
|
1906
1905
|
body?: string | undefined;
|
|
1906
|
+
id?: number | undefined;
|
|
1907
1907
|
user?: {
|
|
1908
1908
|
id: number;
|
|
1909
1909
|
login: string;
|
|
@@ -1916,8 +1916,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1916
1916
|
operation: "create_pr_comment";
|
|
1917
1917
|
success: boolean;
|
|
1918
1918
|
error: string;
|
|
1919
|
-
id?: number | undefined;
|
|
1920
1919
|
body?: string | undefined;
|
|
1920
|
+
id?: number | undefined;
|
|
1921
1921
|
user?: {
|
|
1922
1922
|
id: number;
|
|
1923
1923
|
login: string;
|
|
@@ -1968,8 +1968,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1968
1968
|
visibility: z.ZodOptional<z.ZodString>;
|
|
1969
1969
|
}, "strip", z.ZodTypeAny, {
|
|
1970
1970
|
description: string | null;
|
|
1971
|
-
id: number;
|
|
1972
1971
|
name: string;
|
|
1972
|
+
id: number;
|
|
1973
1973
|
size: number;
|
|
1974
1974
|
private: boolean;
|
|
1975
1975
|
created_at: string;
|
|
@@ -1994,8 +1994,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1994
1994
|
visibility?: string | undefined;
|
|
1995
1995
|
}, {
|
|
1996
1996
|
description: string | null;
|
|
1997
|
-
id: number;
|
|
1998
1997
|
name: string;
|
|
1998
|
+
id: number;
|
|
1999
1999
|
size: number;
|
|
2000
2000
|
private: boolean;
|
|
2001
2001
|
created_at: string;
|
|
@@ -2025,8 +2025,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2025
2025
|
error: string;
|
|
2026
2026
|
repositories?: {
|
|
2027
2027
|
description: string | null;
|
|
2028
|
-
id: number;
|
|
2029
2028
|
name: string;
|
|
2029
|
+
id: number;
|
|
2030
2030
|
size: number;
|
|
2031
2031
|
private: boolean;
|
|
2032
2032
|
created_at: string;
|
|
@@ -2056,8 +2056,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2056
2056
|
error: string;
|
|
2057
2057
|
repositories?: {
|
|
2058
2058
|
description: string | null;
|
|
2059
|
-
id: number;
|
|
2060
2059
|
name: string;
|
|
2060
|
+
id: number;
|
|
2061
2061
|
size: number;
|
|
2062
2062
|
private: boolean;
|
|
2063
2063
|
created_at: string;
|
|
@@ -2126,8 +2126,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2126
2126
|
success: boolean;
|
|
2127
2127
|
error: string;
|
|
2128
2128
|
description?: string | null | undefined;
|
|
2129
|
-
id?: number | undefined;
|
|
2130
2129
|
name?: string | undefined;
|
|
2130
|
+
id?: number | undefined;
|
|
2131
2131
|
size?: number | undefined;
|
|
2132
2132
|
private?: boolean | undefined;
|
|
2133
2133
|
created_at?: string | undefined;
|
|
@@ -2155,8 +2155,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2155
2155
|
success: boolean;
|
|
2156
2156
|
error: string;
|
|
2157
2157
|
description?: string | null | undefined;
|
|
2158
|
-
id?: number | undefined;
|
|
2159
2158
|
name?: string | undefined;
|
|
2159
|
+
id?: number | undefined;
|
|
2160
2160
|
size?: number | undefined;
|
|
2161
2161
|
private?: boolean | undefined;
|
|
2162
2162
|
created_at?: string | undefined;
|
|
@@ -2204,8 +2204,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2204
2204
|
operation: "create_issue_comment";
|
|
2205
2205
|
success: boolean;
|
|
2206
2206
|
error: string;
|
|
2207
|
-
id?: number | undefined;
|
|
2208
2207
|
body?: string | undefined;
|
|
2208
|
+
id?: number | undefined;
|
|
2209
2209
|
user?: {
|
|
2210
2210
|
id: number;
|
|
2211
2211
|
login: string;
|
|
@@ -2218,8 +2218,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2218
2218
|
operation: "create_issue_comment";
|
|
2219
2219
|
success: boolean;
|
|
2220
2220
|
error: string;
|
|
2221
|
-
id?: number | undefined;
|
|
2222
2221
|
body?: string | undefined;
|
|
2222
|
+
id?: number | undefined;
|
|
2223
2223
|
user?: {
|
|
2224
2224
|
id: number;
|
|
2225
2225
|
login: string;
|
|
@@ -2256,13 +2256,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2256
2256
|
description: z.ZodNullable<z.ZodString>;
|
|
2257
2257
|
}, "strip", z.ZodTypeAny, {
|
|
2258
2258
|
description: string | null;
|
|
2259
|
-
id: number;
|
|
2260
2259
|
name: string;
|
|
2260
|
+
id: number;
|
|
2261
2261
|
color: string;
|
|
2262
2262
|
}, {
|
|
2263
2263
|
description: string | null;
|
|
2264
|
-
id: number;
|
|
2265
2264
|
name: string;
|
|
2265
|
+
id: number;
|
|
2266
2266
|
color: string;
|
|
2267
2267
|
}>, "many">;
|
|
2268
2268
|
created_at: z.ZodString;
|
|
@@ -2273,15 +2273,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2273
2273
|
}, "strip", z.ZodTypeAny, {
|
|
2274
2274
|
number: number;
|
|
2275
2275
|
title: string;
|
|
2276
|
-
|
|
2277
|
-
body: string | null;
|
|
2276
|
+
comments: number;
|
|
2278
2277
|
labels: {
|
|
2279
2278
|
description: string | null;
|
|
2280
|
-
id: number;
|
|
2281
2279
|
name: string;
|
|
2280
|
+
id: number;
|
|
2282
2281
|
color: string;
|
|
2283
2282
|
}[];
|
|
2284
|
-
|
|
2283
|
+
body: string | null;
|
|
2284
|
+
id: number;
|
|
2285
2285
|
user: {
|
|
2286
2286
|
id: number;
|
|
2287
2287
|
login: string;
|
|
@@ -2295,15 +2295,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2295
2295
|
}, {
|
|
2296
2296
|
number: number;
|
|
2297
2297
|
title: string;
|
|
2298
|
-
|
|
2299
|
-
body: string | null;
|
|
2298
|
+
comments: number;
|
|
2300
2299
|
labels: {
|
|
2301
2300
|
description: string | null;
|
|
2302
|
-
id: number;
|
|
2303
2301
|
name: string;
|
|
2302
|
+
id: number;
|
|
2304
2303
|
color: string;
|
|
2305
2304
|
}[];
|
|
2306
|
-
|
|
2305
|
+
body: string | null;
|
|
2306
|
+
id: number;
|
|
2307
2307
|
user: {
|
|
2308
2308
|
id: number;
|
|
2309
2309
|
login: string;
|
|
@@ -2322,15 +2322,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2322
2322
|
issues?: {
|
|
2323
2323
|
number: number;
|
|
2324
2324
|
title: string;
|
|
2325
|
-
|
|
2326
|
-
body: string | null;
|
|
2325
|
+
comments: number;
|
|
2327
2326
|
labels: {
|
|
2328
2327
|
description: string | null;
|
|
2329
|
-
id: number;
|
|
2330
2328
|
name: string;
|
|
2329
|
+
id: number;
|
|
2331
2330
|
color: string;
|
|
2332
2331
|
}[];
|
|
2333
|
-
|
|
2332
|
+
body: string | null;
|
|
2333
|
+
id: number;
|
|
2334
2334
|
user: {
|
|
2335
2335
|
id: number;
|
|
2336
2336
|
login: string;
|
|
@@ -2349,15 +2349,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2349
2349
|
issues?: {
|
|
2350
2350
|
number: number;
|
|
2351
2351
|
title: string;
|
|
2352
|
-
|
|
2353
|
-
body: string | null;
|
|
2352
|
+
comments: number;
|
|
2354
2353
|
labels: {
|
|
2355
2354
|
description: string | null;
|
|
2356
|
-
id: number;
|
|
2357
2355
|
name: string;
|
|
2356
|
+
id: number;
|
|
2358
2357
|
color: string;
|
|
2359
2358
|
}[];
|
|
2360
|
-
|
|
2359
|
+
body: string | null;
|
|
2360
|
+
id: number;
|
|
2361
2361
|
user: {
|
|
2362
2362
|
id: number;
|
|
2363
2363
|
login: string;
|