@bubblelab/bubble-core 0.1.25 → 0.1.27
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 +84 -68
- package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +8 -8
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +102 -102
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
- package/dist/bubbles/service-bubble/firecrawl.d.ts +288 -288
- package/dist/bubbles/service-bubble/followupboss.d.ts +264 -264
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +108 -108
- package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-drive.d.ts +20 -20
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +33 -33
- 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/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +601 -601
- 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 +168 -168
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +602 -602
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +82 -82
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +132 -132
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +104 -104
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +55 -10
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +20 -20
- 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 +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-scrape-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 +14 -14
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
- package/dist/bubbles.json +52057 -9
- 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,10 +56,10 @@ 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";
|
|
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;
|
|
@@ -69,9 +69,9 @@ 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;
|
|
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<{
|
|
@@ -186,10 +186,10 @@ 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";
|
|
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;
|
|
@@ -200,10 +200,10 @@ 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;
|
|
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
|
}>]>;
|
|
@@ -227,9 +227,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
227
227
|
operation: "get_file";
|
|
228
228
|
success: boolean;
|
|
229
229
|
error: string;
|
|
230
|
-
name?: string | undefined;
|
|
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;
|
|
@@ -242,9 +242,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
242
242
|
operation: "get_file";
|
|
243
243
|
success: boolean;
|
|
244
244
|
error: string;
|
|
245
|
-
name?: string | undefined;
|
|
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;
|
|
@@ -299,9 +299,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
299
299
|
success: boolean;
|
|
300
300
|
error: string;
|
|
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;
|
|
@@ -316,9 +316,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
316
316
|
success: boolean;
|
|
317
317
|
error: string;
|
|
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;
|
|
@@ -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;
|
|
@@ -465,7 +465,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
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;
|
|
@@ -505,7 +505,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
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;
|
|
@@ -603,7 +603,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
603
603
|
error: string;
|
|
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;
|
|
@@ -641,7 +641,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
641
641
|
error: string;
|
|
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;
|
|
@@ -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;
|
|
@@ -820,8 +820,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
820
820
|
success: boolean;
|
|
821
821
|
error: string;
|
|
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;
|
|
@@ -851,8 +851,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
851
851
|
success: boolean;
|
|
852
852
|
error: string;
|
|
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;
|
|
@@ -921,8 +921,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
921
921
|
operation: "get_repository";
|
|
922
922
|
success: boolean;
|
|
923
923
|
error: string;
|
|
924
|
-
name?: string | undefined;
|
|
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;
|
|
@@ -950,8 +950,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
950
950
|
operation: "get_repository";
|
|
951
951
|
success: boolean;
|
|
952
952
|
error: string;
|
|
953
|
-
name?: string | undefined;
|
|
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;
|
|
@@ -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">;
|
|
@@ -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;
|
|
@@ -1078,12 +1077,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1078
1077
|
body: string | null;
|
|
1079
1078
|
created_at: string;
|
|
1080
1079
|
labels: {
|
|
1081
|
-
name: string;
|
|
1082
1080
|
description: string | null;
|
|
1081
|
+
name: string;
|
|
1083
1082
|
id: number;
|
|
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;
|
|
@@ -1100,12 +1099,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1100
1099
|
body: string | null;
|
|
1101
1100
|
created_at: string;
|
|
1102
1101
|
labels: {
|
|
1103
|
-
name: string;
|
|
1104
1102
|
description: string | null;
|
|
1103
|
+
name: string;
|
|
1105
1104
|
id: number;
|
|
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;
|
|
@@ -1118,7 +1118,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
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;
|
|
@@ -1127,12 +1126,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1127
1126
|
body: string | null;
|
|
1128
1127
|
created_at: string;
|
|
1129
1128
|
labels: {
|
|
1130
|
-
name: string;
|
|
1131
1129
|
description: string | null;
|
|
1130
|
+
name: string;
|
|
1132
1131
|
id: number;
|
|
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;
|
|
@@ -1145,7 +1145,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
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;
|
|
@@ -1154,12 +1153,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1154
1153
|
body: string | null;
|
|
1155
1154
|
created_at: string;
|
|
1156
1155
|
labels: {
|
|
1157
|
-
name: string;
|
|
1158
1156
|
description: string | null;
|
|
1157
|
+
name: string;
|
|
1159
1158
|
id: number;
|
|
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;
|
|
@@ -1260,10 +1260,10 @@ 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";
|
|
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;
|
|
@@ -1273,9 +1273,9 @@ 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;
|
|
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<{
|
|
@@ -1390,10 +1390,10 @@ 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";
|
|
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;
|
|
@@ -1404,10 +1404,10 @@ 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;
|
|
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
|
}>]>;
|
|
@@ -1431,9 +1431,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1431
1431
|
operation: "get_file";
|
|
1432
1432
|
success: boolean;
|
|
1433
1433
|
error: string;
|
|
1434
|
-
name?: string | undefined;
|
|
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;
|
|
@@ -1446,9 +1446,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1446
1446
|
operation: "get_file";
|
|
1447
1447
|
success: boolean;
|
|
1448
1448
|
error: string;
|
|
1449
|
-
name?: string | undefined;
|
|
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;
|
|
@@ -1503,9 +1503,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1503
1503
|
success: boolean;
|
|
1504
1504
|
error: string;
|
|
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;
|
|
@@ -1520,9 +1520,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1520
1520
|
success: boolean;
|
|
1521
1521
|
error: string;
|
|
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;
|
|
@@ -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;
|
|
@@ -1669,7 +1669,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
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;
|
|
@@ -1709,7 +1709,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
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;
|
|
@@ -1807,7 +1807,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1807
1807
|
error: string;
|
|
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;
|
|
@@ -1845,7 +1845,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1845
1845
|
error: string;
|
|
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;
|
|
@@ -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;
|
|
@@ -2024,8 +2024,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2024
2024
|
success: boolean;
|
|
2025
2025
|
error: string;
|
|
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;
|
|
@@ -2055,8 +2055,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2055
2055
|
success: boolean;
|
|
2056
2056
|
error: string;
|
|
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;
|
|
@@ -2125,8 +2125,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2125
2125
|
operation: "get_repository";
|
|
2126
2126
|
success: boolean;
|
|
2127
2127
|
error: string;
|
|
2128
|
-
name?: string | undefined;
|
|
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;
|
|
@@ -2154,8 +2154,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2154
2154
|
operation: "get_repository";
|
|
2155
2155
|
success: boolean;
|
|
2156
2156
|
error: string;
|
|
2157
|
-
name?: string | undefined;
|
|
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;
|
|
@@ -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">;
|
|
@@ -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;
|
|
@@ -2282,12 +2281,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2282
2281
|
body: string | null;
|
|
2283
2282
|
created_at: string;
|
|
2284
2283
|
labels: {
|
|
2285
|
-
name: string;
|
|
2286
2284
|
description: string | null;
|
|
2285
|
+
name: string;
|
|
2287
2286
|
id: number;
|
|
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;
|
|
@@ -2304,12 +2303,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2304
2303
|
body: string | null;
|
|
2305
2304
|
created_at: string;
|
|
2306
2305
|
labels: {
|
|
2307
|
-
name: string;
|
|
2308
2306
|
description: string | null;
|
|
2307
|
+
name: string;
|
|
2309
2308
|
id: number;
|
|
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;
|
|
@@ -2322,7 +2322,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
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;
|
|
@@ -2331,12 +2330,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2331
2330
|
body: string | null;
|
|
2332
2331
|
created_at: string;
|
|
2333
2332
|
labels: {
|
|
2334
|
-
name: string;
|
|
2335
2333
|
description: string | null;
|
|
2334
|
+
name: string;
|
|
2336
2335
|
id: number;
|
|
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;
|
|
@@ -2349,7 +2349,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
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;
|
|
@@ -2358,12 +2357,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2358
2357
|
body: string | null;
|
|
2359
2358
|
created_at: string;
|
|
2360
2359
|
labels: {
|
|
2361
|
-
name: string;
|
|
2362
2360
|
description: string | null;
|
|
2361
|
+
name: string;
|
|
2363
2362
|
id: number;
|
|
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;
|