@bubblelab/bubble-core 0.1.96 → 0.1.97
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 +66 -66
- package/dist/bubbles/service-bubble/agi-inc.d.ts +68 -68
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +108 -108
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +20 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +25 -25
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +172 -172
- package/dist/bubbles/service-bubble/followupboss.d.ts +144 -144
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/github.d.ts +148 -148
- package/dist/bubbles/service-bubble/gmail.d.ts +138 -138
- package/dist/bubbles/service-bubble/gmail.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/gmail.js +10 -4
- package/dist/bubbles/service-bubble/gmail.js.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.d.ts +30 -30
- package/dist/bubbles/service-bubble/google-drive.d.ts +100 -100
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
- package/dist/bubbles/service-bubble/http.d.ts +10 -10
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +29 -29
- package/dist/bubbles/service-bubble/notion/notion.d.ts +72 -72
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/resend.d.ts +26 -26
- package/dist/bubbles/service-bubble/slack/slack.d.ts +218 -218
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +62 -62
- package/dist/bubbles/service-bubble/telegram.d.ts +56 -56
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +26 -26
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
- package/dist/bubbles.json +6 -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";
|
|
@@ -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
|
direction: "asc" | "desc";
|
|
129
129
|
per_page: number;
|
|
@@ -185,8 +185,8 @@ 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: "created" | "updated" | "comments";
|
|
190
190
|
owner: string;
|
|
191
191
|
page: number;
|
|
192
192
|
state: "all" | "open" | "closed";
|
|
@@ -224,31 +224,31 @@ 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;
|
|
233
|
-
encoding?: string | undefined;
|
|
234
233
|
content?: string | undefined;
|
|
235
234
|
url?: string | undefined;
|
|
236
235
|
size?: number | undefined;
|
|
236
|
+
encoding?: string | undefined;
|
|
237
237
|
sha?: string | undefined;
|
|
238
238
|
html_url?: string | undefined;
|
|
239
239
|
git_url?: string | undefined;
|
|
240
240
|
download_url?: string | null | 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;
|
|
248
|
-
encoding?: string | undefined;
|
|
249
248
|
content?: string | undefined;
|
|
250
249
|
url?: string | undefined;
|
|
251
250
|
size?: number | undefined;
|
|
251
|
+
encoding?: string | undefined;
|
|
252
252
|
sha?: string | undefined;
|
|
253
253
|
html_url?: string | undefined;
|
|
254
254
|
git_url?: string | undefined;
|
|
@@ -279,8 +279,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
279
279
|
html_url: string;
|
|
280
280
|
git_url: string;
|
|
281
281
|
download_url: string | null;
|
|
282
|
-
encoding?: string | undefined;
|
|
283
282
|
content?: string | undefined;
|
|
283
|
+
encoding?: string | undefined;
|
|
284
284
|
}, {
|
|
285
285
|
path: string;
|
|
286
286
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
@@ -291,13 +291,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
291
291
|
html_url: string;
|
|
292
292
|
git_url: string;
|
|
293
293
|
download_url: string | null;
|
|
294
|
-
encoding?: string | undefined;
|
|
295
294
|
content?: string | undefined;
|
|
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";
|
|
@@ -308,13 +308,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
308
308
|
html_url: string;
|
|
309
309
|
git_url: string;
|
|
310
310
|
download_url: string | null;
|
|
311
|
-
encoding?: string | undefined;
|
|
312
311
|
content?: string | undefined;
|
|
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";
|
|
@@ -325,8 +325,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
325
325
|
html_url: string;
|
|
326
326
|
git_url: string;
|
|
327
327
|
download_url: string | null;
|
|
328
|
-
encoding?: string | undefined;
|
|
329
328
|
content?: string | undefined;
|
|
329
|
+
encoding?: string | undefined;
|
|
330
330
|
}[] | undefined;
|
|
331
331
|
}>, z.ZodObject<{
|
|
332
332
|
operation: z.ZodLiteral<"list_pull_requests">;
|
|
@@ -390,15 +390,15 @@ 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
|
+
body: string | null;
|
|
395
|
+
draft: boolean;
|
|
393
396
|
user: {
|
|
394
397
|
id: number;
|
|
395
398
|
login: string;
|
|
396
399
|
avatar_url: string;
|
|
397
400
|
};
|
|
398
|
-
id: number;
|
|
399
401
|
created_at: string;
|
|
400
|
-
body: string | null;
|
|
401
|
-
draft: boolean;
|
|
402
402
|
state: "open" | "closed";
|
|
403
403
|
html_url: string;
|
|
404
404
|
node_id: string;
|
|
@@ -425,15 +425,15 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
425
425
|
}, {
|
|
426
426
|
number: number;
|
|
427
427
|
title: string;
|
|
428
|
+
id: number;
|
|
429
|
+
body: string | null;
|
|
430
|
+
draft: boolean;
|
|
428
431
|
user: {
|
|
429
432
|
id: number;
|
|
430
433
|
login: string;
|
|
431
434
|
avatar_url: string;
|
|
432
435
|
};
|
|
433
|
-
id: number;
|
|
434
436
|
created_at: string;
|
|
435
|
-
body: string | null;
|
|
436
|
-
draft: boolean;
|
|
437
437
|
state: "open" | "closed";
|
|
438
438
|
html_url: string;
|
|
439
439
|
node_id: string;
|
|
@@ -459,21 +459,21 @@ 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
|
+
id: number;
|
|
469
|
+
body: string | null;
|
|
470
|
+
draft: boolean;
|
|
468
471
|
user: {
|
|
469
472
|
id: number;
|
|
470
473
|
login: string;
|
|
471
474
|
avatar_url: string;
|
|
472
475
|
};
|
|
473
|
-
id: number;
|
|
474
476
|
created_at: string;
|
|
475
|
-
body: string | null;
|
|
476
|
-
draft: boolean;
|
|
477
477
|
state: "open" | "closed";
|
|
478
478
|
html_url: string;
|
|
479
479
|
node_id: string;
|
|
@@ -499,21 +499,21 @@ 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
|
+
id: number;
|
|
509
|
+
body: string | null;
|
|
510
|
+
draft: boolean;
|
|
508
511
|
user: {
|
|
509
512
|
id: number;
|
|
510
513
|
login: string;
|
|
511
514
|
avatar_url: string;
|
|
512
515
|
};
|
|
513
|
-
id: number;
|
|
514
516
|
created_at: string;
|
|
515
|
-
body: string | null;
|
|
516
|
-
draft: boolean;
|
|
517
517
|
state: "open" | "closed";
|
|
518
518
|
html_url: string;
|
|
519
519
|
node_id: string;
|
|
@@ -598,20 +598,20 @@ 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
|
+
id?: number | undefined;
|
|
607
|
+
body?: string | null | undefined;
|
|
608
|
+
draft?: boolean | undefined;
|
|
606
609
|
user?: {
|
|
607
610
|
id: number;
|
|
608
611
|
login: string;
|
|
609
612
|
avatar_url: string;
|
|
610
613
|
} | undefined;
|
|
611
|
-
id?: number | undefined;
|
|
612
614
|
created_at?: string | undefined;
|
|
613
|
-
body?: string | null | undefined;
|
|
614
|
-
draft?: boolean | undefined;
|
|
615
615
|
comments?: number | undefined;
|
|
616
616
|
state?: "open" | "closed" | undefined;
|
|
617
617
|
html_url?: string | undefined;
|
|
@@ -636,20 +636,20 @@ 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
|
+
id?: number | undefined;
|
|
645
|
+
body?: string | null | undefined;
|
|
646
|
+
draft?: boolean | undefined;
|
|
644
647
|
user?: {
|
|
645
648
|
id: number;
|
|
646
649
|
login: string;
|
|
647
650
|
avatar_url: string;
|
|
648
651
|
} | undefined;
|
|
649
|
-
id?: number | undefined;
|
|
650
652
|
created_at?: string | undefined;
|
|
651
|
-
body?: string | null | undefined;
|
|
652
|
-
draft?: boolean | undefined;
|
|
653
653
|
comments?: number | undefined;
|
|
654
654
|
state?: "open" | "closed" | undefined;
|
|
655
655
|
html_url?: string | undefined;
|
|
@@ -695,30 +695,30 @@ 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
|
-
|
|
701
|
+
id?: number | undefined;
|
|
702
|
+
body?: string | undefined;
|
|
701
703
|
user?: {
|
|
702
704
|
id: number;
|
|
703
705
|
login: string;
|
|
704
706
|
} | undefined;
|
|
705
|
-
id?: number | undefined;
|
|
706
707
|
created_at?: string | undefined;
|
|
707
|
-
body?: string | undefined;
|
|
708
708
|
html_url?: string | undefined;
|
|
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
|
-
|
|
715
|
+
id?: number | undefined;
|
|
716
|
+
body?: string | undefined;
|
|
715
717
|
user?: {
|
|
716
718
|
id: number;
|
|
717
719
|
login: string;
|
|
718
720
|
} | undefined;
|
|
719
|
-
id?: number | undefined;
|
|
720
721
|
created_at?: string | undefined;
|
|
721
|
-
body?: string | undefined;
|
|
722
722
|
html_url?: string | undefined;
|
|
723
723
|
node_id?: string | undefined;
|
|
724
724
|
updated_at?: string | undefined;
|
|
@@ -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
|
open_issues_count?: number | undefined;
|
|
948
948
|
default_branch?: 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,30 +997,30 @@ 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
|
-
|
|
1003
|
+
id?: number | undefined;
|
|
1004
|
+
body?: string | undefined;
|
|
1003
1005
|
user?: {
|
|
1004
1006
|
id: number;
|
|
1005
1007
|
login: string;
|
|
1006
1008
|
} | undefined;
|
|
1007
|
-
id?: number | undefined;
|
|
1008
1009
|
created_at?: string | undefined;
|
|
1009
|
-
body?: string | undefined;
|
|
1010
1010
|
html_url?: string | undefined;
|
|
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
|
-
|
|
1017
|
+
id?: number | undefined;
|
|
1018
|
+
body?: string | undefined;
|
|
1017
1019
|
user?: {
|
|
1018
1020
|
id: number;
|
|
1019
1021
|
login: string;
|
|
1020
1022
|
} | undefined;
|
|
1021
|
-
id?: number | undefined;
|
|
1022
1023
|
created_at?: string | undefined;
|
|
1023
|
-
body?: string | undefined;
|
|
1024
1024
|
html_url?: string | undefined;
|
|
1025
1025
|
node_id?: string | undefined;
|
|
1026
1026
|
updated_at?: string | undefined;
|
|
@@ -1053,13 +1053,13 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1053
1053
|
}, "strip", z.ZodTypeAny, {
|
|
1054
1054
|
description: string | null;
|
|
1055
1055
|
name: string;
|
|
1056
|
-
color: string;
|
|
1057
1056
|
id: number;
|
|
1057
|
+
color: string;
|
|
1058
1058
|
}, {
|
|
1059
1059
|
description: string | null;
|
|
1060
1060
|
name: string;
|
|
1061
|
-
color: string;
|
|
1062
1061
|
id: number;
|
|
1062
|
+
color: string;
|
|
1063
1063
|
}>, "many">;
|
|
1064
1064
|
created_at: z.ZodString;
|
|
1065
1065
|
updated_at: z.ZodString;
|
|
@@ -1069,19 +1069,19 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1069
1069
|
}, "strip", z.ZodTypeAny, {
|
|
1070
1070
|
number: number;
|
|
1071
1071
|
title: string;
|
|
1072
|
+
id: number;
|
|
1073
|
+
body: string | null;
|
|
1072
1074
|
user: {
|
|
1073
1075
|
id: number;
|
|
1074
1076
|
login: string;
|
|
1075
1077
|
};
|
|
1076
|
-
id: number;
|
|
1077
|
-
created_at: string;
|
|
1078
|
-
body: string | null;
|
|
1079
1078
|
labels: {
|
|
1080
1079
|
description: string | null;
|
|
1081
1080
|
name: string;
|
|
1082
|
-
color: string;
|
|
1083
1081
|
id: number;
|
|
1082
|
+
color: string;
|
|
1084
1083
|
}[];
|
|
1084
|
+
created_at: string;
|
|
1085
1085
|
comments: number;
|
|
1086
1086
|
state: "open" | "closed";
|
|
1087
1087
|
html_url: string;
|
|
@@ -1091,19 +1091,19 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1091
1091
|
}, {
|
|
1092
1092
|
number: number;
|
|
1093
1093
|
title: string;
|
|
1094
|
+
id: number;
|
|
1095
|
+
body: string | null;
|
|
1094
1096
|
user: {
|
|
1095
1097
|
id: number;
|
|
1096
1098
|
login: string;
|
|
1097
1099
|
};
|
|
1098
|
-
id: number;
|
|
1099
|
-
created_at: string;
|
|
1100
|
-
body: string | null;
|
|
1101
1100
|
labels: {
|
|
1102
1101
|
description: string | null;
|
|
1103
1102
|
name: string;
|
|
1104
|
-
color: string;
|
|
1105
1103
|
id: number;
|
|
1104
|
+
color: string;
|
|
1106
1105
|
}[];
|
|
1106
|
+
created_at: string;
|
|
1107
1107
|
comments: number;
|
|
1108
1108
|
state: "open" | "closed";
|
|
1109
1109
|
html_url: string;
|
|
@@ -1112,25 +1112,25 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1112
1112
|
closed_at: string | null;
|
|
1113
1113
|
}>, "many">>;
|
|
1114
1114
|
}, "strip", z.ZodTypeAny, {
|
|
1115
|
+
operation: "list_issues";
|
|
1115
1116
|
success: boolean;
|
|
1116
1117
|
error: string;
|
|
1117
|
-
operation: "list_issues";
|
|
1118
1118
|
issues?: {
|
|
1119
1119
|
number: number;
|
|
1120
1120
|
title: string;
|
|
1121
|
+
id: number;
|
|
1122
|
+
body: string | null;
|
|
1121
1123
|
user: {
|
|
1122
1124
|
id: number;
|
|
1123
1125
|
login: string;
|
|
1124
1126
|
};
|
|
1125
|
-
id: number;
|
|
1126
|
-
created_at: string;
|
|
1127
|
-
body: string | null;
|
|
1128
1127
|
labels: {
|
|
1129
1128
|
description: string | null;
|
|
1130
1129
|
name: string;
|
|
1131
|
-
color: string;
|
|
1132
1130
|
id: number;
|
|
1131
|
+
color: string;
|
|
1133
1132
|
}[];
|
|
1133
|
+
created_at: string;
|
|
1134
1134
|
comments: number;
|
|
1135
1135
|
state: "open" | "closed";
|
|
1136
1136
|
html_url: string;
|
|
@@ -1139,25 +1139,25 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
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
|
+
id: number;
|
|
1149
|
+
body: string | null;
|
|
1148
1150
|
user: {
|
|
1149
1151
|
id: number;
|
|
1150
1152
|
login: string;
|
|
1151
1153
|
};
|
|
1152
|
-
id: number;
|
|
1153
|
-
created_at: string;
|
|
1154
|
-
body: string | null;
|
|
1155
1154
|
labels: {
|
|
1156
1155
|
description: string | null;
|
|
1157
1156
|
name: string;
|
|
1158
|
-
color: string;
|
|
1159
1157
|
id: number;
|
|
1158
|
+
color: string;
|
|
1160
1159
|
}[];
|
|
1160
|
+
created_at: string;
|
|
1161
1161
|
comments: number;
|
|
1162
1162
|
state: "open" | "closed";
|
|
1163
1163
|
html_url: 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";
|
|
@@ -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
|
direction: "asc" | "desc";
|
|
1333
1333
|
per_page: number;
|
|
@@ -1389,8 +1389,8 @@ 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: "created" | "updated" | "comments";
|
|
1394
1394
|
owner: string;
|
|
1395
1395
|
page: number;
|
|
1396
1396
|
state: "all" | "open" | "closed";
|
|
@@ -1428,31 +1428,31 @@ 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;
|
|
1437
|
-
encoding?: string | undefined;
|
|
1438
1437
|
content?: string | undefined;
|
|
1439
1438
|
url?: string | undefined;
|
|
1440
1439
|
size?: number | undefined;
|
|
1440
|
+
encoding?: string | undefined;
|
|
1441
1441
|
sha?: string | undefined;
|
|
1442
1442
|
html_url?: string | undefined;
|
|
1443
1443
|
git_url?: string | undefined;
|
|
1444
1444
|
download_url?: string | null | 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;
|
|
1452
|
-
encoding?: string | undefined;
|
|
1453
1452
|
content?: string | undefined;
|
|
1454
1453
|
url?: string | undefined;
|
|
1455
1454
|
size?: number | undefined;
|
|
1455
|
+
encoding?: string | undefined;
|
|
1456
1456
|
sha?: string | undefined;
|
|
1457
1457
|
html_url?: string | undefined;
|
|
1458
1458
|
git_url?: string | undefined;
|
|
@@ -1483,8 +1483,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1483
1483
|
html_url: string;
|
|
1484
1484
|
git_url: string;
|
|
1485
1485
|
download_url: string | null;
|
|
1486
|
-
encoding?: string | undefined;
|
|
1487
1486
|
content?: string | undefined;
|
|
1487
|
+
encoding?: string | undefined;
|
|
1488
1488
|
}, {
|
|
1489
1489
|
path: string;
|
|
1490
1490
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
@@ -1495,13 +1495,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1495
1495
|
html_url: string;
|
|
1496
1496
|
git_url: string;
|
|
1497
1497
|
download_url: string | null;
|
|
1498
|
-
encoding?: string | undefined;
|
|
1499
1498
|
content?: string | undefined;
|
|
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";
|
|
@@ -1512,13 +1512,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1512
1512
|
html_url: string;
|
|
1513
1513
|
git_url: string;
|
|
1514
1514
|
download_url: string | null;
|
|
1515
|
-
encoding?: string | undefined;
|
|
1516
1515
|
content?: string | undefined;
|
|
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";
|
|
@@ -1529,8 +1529,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1529
1529
|
html_url: string;
|
|
1530
1530
|
git_url: string;
|
|
1531
1531
|
download_url: string | null;
|
|
1532
|
-
encoding?: string | undefined;
|
|
1533
1532
|
content?: string | undefined;
|
|
1533
|
+
encoding?: string | undefined;
|
|
1534
1534
|
}[] | undefined;
|
|
1535
1535
|
}>, z.ZodObject<{
|
|
1536
1536
|
operation: z.ZodLiteral<"list_pull_requests">;
|
|
@@ -1594,15 +1594,15 @@ 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
|
+
body: string | null;
|
|
1599
|
+
draft: boolean;
|
|
1597
1600
|
user: {
|
|
1598
1601
|
id: number;
|
|
1599
1602
|
login: string;
|
|
1600
1603
|
avatar_url: string;
|
|
1601
1604
|
};
|
|
1602
|
-
id: number;
|
|
1603
1605
|
created_at: string;
|
|
1604
|
-
body: string | null;
|
|
1605
|
-
draft: boolean;
|
|
1606
1606
|
state: "open" | "closed";
|
|
1607
1607
|
html_url: string;
|
|
1608
1608
|
node_id: string;
|
|
@@ -1629,15 +1629,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1629
1629
|
}, {
|
|
1630
1630
|
number: number;
|
|
1631
1631
|
title: string;
|
|
1632
|
+
id: number;
|
|
1633
|
+
body: string | null;
|
|
1634
|
+
draft: boolean;
|
|
1632
1635
|
user: {
|
|
1633
1636
|
id: number;
|
|
1634
1637
|
login: string;
|
|
1635
1638
|
avatar_url: string;
|
|
1636
1639
|
};
|
|
1637
|
-
id: number;
|
|
1638
1640
|
created_at: string;
|
|
1639
|
-
body: string | null;
|
|
1640
|
-
draft: boolean;
|
|
1641
1641
|
state: "open" | "closed";
|
|
1642
1642
|
html_url: string;
|
|
1643
1643
|
node_id: string;
|
|
@@ -1663,21 +1663,21 @@ 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
|
+
id: number;
|
|
1673
|
+
body: string | null;
|
|
1674
|
+
draft: boolean;
|
|
1672
1675
|
user: {
|
|
1673
1676
|
id: number;
|
|
1674
1677
|
login: string;
|
|
1675
1678
|
avatar_url: string;
|
|
1676
1679
|
};
|
|
1677
|
-
id: number;
|
|
1678
1680
|
created_at: string;
|
|
1679
|
-
body: string | null;
|
|
1680
|
-
draft: boolean;
|
|
1681
1681
|
state: "open" | "closed";
|
|
1682
1682
|
html_url: string;
|
|
1683
1683
|
node_id: string;
|
|
@@ -1703,21 +1703,21 @@ 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
|
+
id: number;
|
|
1713
|
+
body: string | null;
|
|
1714
|
+
draft: boolean;
|
|
1712
1715
|
user: {
|
|
1713
1716
|
id: number;
|
|
1714
1717
|
login: string;
|
|
1715
1718
|
avatar_url: string;
|
|
1716
1719
|
};
|
|
1717
|
-
id: number;
|
|
1718
1720
|
created_at: string;
|
|
1719
|
-
body: string | null;
|
|
1720
|
-
draft: boolean;
|
|
1721
1721
|
state: "open" | "closed";
|
|
1722
1722
|
html_url: string;
|
|
1723
1723
|
node_id: string;
|
|
@@ -1802,20 +1802,20 @@ 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
|
+
id?: number | undefined;
|
|
1811
|
+
body?: string | null | undefined;
|
|
1812
|
+
draft?: boolean | undefined;
|
|
1810
1813
|
user?: {
|
|
1811
1814
|
id: number;
|
|
1812
1815
|
login: string;
|
|
1813
1816
|
avatar_url: string;
|
|
1814
1817
|
} | undefined;
|
|
1815
|
-
id?: number | undefined;
|
|
1816
1818
|
created_at?: string | undefined;
|
|
1817
|
-
body?: string | null | undefined;
|
|
1818
|
-
draft?: boolean | undefined;
|
|
1819
1819
|
comments?: number | undefined;
|
|
1820
1820
|
state?: "open" | "closed" | undefined;
|
|
1821
1821
|
html_url?: string | undefined;
|
|
@@ -1840,20 +1840,20 @@ 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
|
+
id?: number | undefined;
|
|
1849
|
+
body?: string | null | undefined;
|
|
1850
|
+
draft?: boolean | undefined;
|
|
1848
1851
|
user?: {
|
|
1849
1852
|
id: number;
|
|
1850
1853
|
login: string;
|
|
1851
1854
|
avatar_url: string;
|
|
1852
1855
|
} | undefined;
|
|
1853
|
-
id?: number | undefined;
|
|
1854
1856
|
created_at?: string | undefined;
|
|
1855
|
-
body?: string | null | undefined;
|
|
1856
|
-
draft?: boolean | undefined;
|
|
1857
1857
|
comments?: number | undefined;
|
|
1858
1858
|
state?: "open" | "closed" | undefined;
|
|
1859
1859
|
html_url?: string | undefined;
|
|
@@ -1899,30 +1899,30 @@ 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
|
-
|
|
1905
|
+
id?: number | undefined;
|
|
1906
|
+
body?: string | undefined;
|
|
1905
1907
|
user?: {
|
|
1906
1908
|
id: number;
|
|
1907
1909
|
login: string;
|
|
1908
1910
|
} | undefined;
|
|
1909
|
-
id?: number | undefined;
|
|
1910
1911
|
created_at?: string | undefined;
|
|
1911
|
-
body?: string | undefined;
|
|
1912
1912
|
html_url?: string | undefined;
|
|
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
|
-
|
|
1919
|
+
id?: number | undefined;
|
|
1920
|
+
body?: string | undefined;
|
|
1919
1921
|
user?: {
|
|
1920
1922
|
id: number;
|
|
1921
1923
|
login: string;
|
|
1922
1924
|
} | undefined;
|
|
1923
|
-
id?: number | undefined;
|
|
1924
1925
|
created_at?: string | undefined;
|
|
1925
|
-
body?: string | undefined;
|
|
1926
1926
|
html_url?: string | undefined;
|
|
1927
1927
|
node_id?: string | undefined;
|
|
1928
1928
|
updated_at?: string | undefined;
|
|
@@ -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
|
open_issues_count?: number | undefined;
|
|
2152
2152
|
default_branch?: 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,30 +2201,30 @@ 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
|
-
|
|
2207
|
+
id?: number | undefined;
|
|
2208
|
+
body?: string | undefined;
|
|
2207
2209
|
user?: {
|
|
2208
2210
|
id: number;
|
|
2209
2211
|
login: string;
|
|
2210
2212
|
} | undefined;
|
|
2211
|
-
id?: number | undefined;
|
|
2212
2213
|
created_at?: string | undefined;
|
|
2213
|
-
body?: string | undefined;
|
|
2214
2214
|
html_url?: string | undefined;
|
|
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
|
-
|
|
2221
|
+
id?: number | undefined;
|
|
2222
|
+
body?: string | undefined;
|
|
2221
2223
|
user?: {
|
|
2222
2224
|
id: number;
|
|
2223
2225
|
login: string;
|
|
2224
2226
|
} | undefined;
|
|
2225
|
-
id?: number | undefined;
|
|
2226
2227
|
created_at?: string | undefined;
|
|
2227
|
-
body?: string | undefined;
|
|
2228
2228
|
html_url?: string | undefined;
|
|
2229
2229
|
node_id?: string | undefined;
|
|
2230
2230
|
updated_at?: string | undefined;
|
|
@@ -2257,13 +2257,13 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2257
2257
|
}, "strip", z.ZodTypeAny, {
|
|
2258
2258
|
description: string | null;
|
|
2259
2259
|
name: string;
|
|
2260
|
-
color: string;
|
|
2261
2260
|
id: number;
|
|
2261
|
+
color: string;
|
|
2262
2262
|
}, {
|
|
2263
2263
|
description: string | null;
|
|
2264
2264
|
name: string;
|
|
2265
|
-
color: string;
|
|
2266
2265
|
id: number;
|
|
2266
|
+
color: string;
|
|
2267
2267
|
}>, "many">;
|
|
2268
2268
|
created_at: z.ZodString;
|
|
2269
2269
|
updated_at: z.ZodString;
|
|
@@ -2273,19 +2273,19 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2273
2273
|
}, "strip", z.ZodTypeAny, {
|
|
2274
2274
|
number: number;
|
|
2275
2275
|
title: string;
|
|
2276
|
+
id: number;
|
|
2277
|
+
body: string | null;
|
|
2276
2278
|
user: {
|
|
2277
2279
|
id: number;
|
|
2278
2280
|
login: string;
|
|
2279
2281
|
};
|
|
2280
|
-
id: number;
|
|
2281
|
-
created_at: string;
|
|
2282
|
-
body: string | null;
|
|
2283
2282
|
labels: {
|
|
2284
2283
|
description: string | null;
|
|
2285
2284
|
name: string;
|
|
2286
|
-
color: string;
|
|
2287
2285
|
id: number;
|
|
2286
|
+
color: string;
|
|
2288
2287
|
}[];
|
|
2288
|
+
created_at: string;
|
|
2289
2289
|
comments: number;
|
|
2290
2290
|
state: "open" | "closed";
|
|
2291
2291
|
html_url: string;
|
|
@@ -2295,19 +2295,19 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2295
2295
|
}, {
|
|
2296
2296
|
number: number;
|
|
2297
2297
|
title: string;
|
|
2298
|
+
id: number;
|
|
2299
|
+
body: string | null;
|
|
2298
2300
|
user: {
|
|
2299
2301
|
id: number;
|
|
2300
2302
|
login: string;
|
|
2301
2303
|
};
|
|
2302
|
-
id: number;
|
|
2303
|
-
created_at: string;
|
|
2304
|
-
body: string | null;
|
|
2305
2304
|
labels: {
|
|
2306
2305
|
description: string | null;
|
|
2307
2306
|
name: string;
|
|
2308
|
-
color: string;
|
|
2309
2307
|
id: number;
|
|
2308
|
+
color: string;
|
|
2310
2309
|
}[];
|
|
2310
|
+
created_at: string;
|
|
2311
2311
|
comments: number;
|
|
2312
2312
|
state: "open" | "closed";
|
|
2313
2313
|
html_url: string;
|
|
@@ -2316,25 +2316,25 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2316
2316
|
closed_at: string | null;
|
|
2317
2317
|
}>, "many">>;
|
|
2318
2318
|
}, "strip", z.ZodTypeAny, {
|
|
2319
|
+
operation: "list_issues";
|
|
2319
2320
|
success: boolean;
|
|
2320
2321
|
error: string;
|
|
2321
|
-
operation: "list_issues";
|
|
2322
2322
|
issues?: {
|
|
2323
2323
|
number: number;
|
|
2324
2324
|
title: string;
|
|
2325
|
+
id: number;
|
|
2326
|
+
body: string | null;
|
|
2325
2327
|
user: {
|
|
2326
2328
|
id: number;
|
|
2327
2329
|
login: string;
|
|
2328
2330
|
};
|
|
2329
|
-
id: number;
|
|
2330
|
-
created_at: string;
|
|
2331
|
-
body: string | null;
|
|
2332
2331
|
labels: {
|
|
2333
2332
|
description: string | null;
|
|
2334
2333
|
name: string;
|
|
2335
|
-
color: string;
|
|
2336
2334
|
id: number;
|
|
2335
|
+
color: string;
|
|
2337
2336
|
}[];
|
|
2337
|
+
created_at: string;
|
|
2338
2338
|
comments: number;
|
|
2339
2339
|
state: "open" | "closed";
|
|
2340
2340
|
html_url: string;
|
|
@@ -2343,25 +2343,25 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
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
|
+
id: number;
|
|
2353
|
+
body: string | null;
|
|
2352
2354
|
user: {
|
|
2353
2355
|
id: number;
|
|
2354
2356
|
login: string;
|
|
2355
2357
|
};
|
|
2356
|
-
id: number;
|
|
2357
|
-
created_at: string;
|
|
2358
|
-
body: string | null;
|
|
2359
2358
|
labels: {
|
|
2360
2359
|
description: string | null;
|
|
2361
2360
|
name: string;
|
|
2362
|
-
color: string;
|
|
2363
2361
|
id: number;
|
|
2362
|
+
color: string;
|
|
2364
2363
|
}[];
|
|
2364
|
+
created_at: string;
|
|
2365
2365
|
comments: number;
|
|
2366
2366
|
state: "open" | "closed";
|
|
2367
2367
|
html_url: string;
|