@bubblelab/bubble-core 0.1.146 → 0.1.147
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 +76 -76
- package/dist/bubbles/service-bubble/agi-inc.d.ts +28 -28
- package/dist/bubbles/service-bubble/ai-agent.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +112 -112
- package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +37 -37
- package/dist/bubbles/service-bubble/confluence/confluence.d.ts +21 -21
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +394 -394
- package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +60 -60
- package/dist/bubbles/service-bubble/github.d.ts +210 -210
- package/dist/bubbles/service-bubble/gmail.d.ts +410 -410
- package/dist/bubbles/service-bubble/google-calendar.d.ts +2 -2
- package/dist/bubbles/service-bubble/google-drive.d.ts +48 -48
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
- package/dist/bubbles/service-bubble/jira/jira.d.ts +18 -18
- package/dist/bubbles/service-bubble/notion/notion.d.ts +13738 -9223
- package/dist/bubbles/service-bubble/notion/notion.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/notion/notion.js +55 -2
- package/dist/bubbles/service-bubble/notion/notion.js.map +1 -1
- package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +504 -504
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +25 -25
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-accept-invitations/tool.d.ts +7 -7
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-connection/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-received-invitations/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-sent-invitations/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +386 -386
- package/dist/bubbles/tool-bubble/list-airtable-bases-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/list-airtable-tables-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +46 -46
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +44 -44
- package/dist/bubbles.json +732 -3
- package/package.json +2 -2
|
@@ -57,11 +57,11 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
58
|
operation: "list_pull_requests";
|
|
59
59
|
sort: "created" | "updated" | "popularity" | "long-running";
|
|
60
|
-
state: "all" | "open" | "closed";
|
|
61
|
-
owner: string;
|
|
62
60
|
page: number;
|
|
63
|
-
repo: string;
|
|
64
61
|
direction: "asc" | "desc";
|
|
62
|
+
owner: string;
|
|
63
|
+
state: "all" | "open" | "closed";
|
|
64
|
+
repo: string;
|
|
65
65
|
per_page: number;
|
|
66
66
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
67
67
|
}, {
|
|
@@ -70,9 +70,9 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
70
70
|
repo: string;
|
|
71
71
|
sort?: "created" | "updated" | "popularity" | "long-running" | undefined;
|
|
72
72
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
73
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
74
73
|
page?: number | undefined;
|
|
75
74
|
direction?: "asc" | "desc" | undefined;
|
|
75
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
76
76
|
per_page?: number | undefined;
|
|
77
77
|
}>, z.ZodObject<{
|
|
78
78
|
operation: z.ZodLiteral<"get_pull_request">;
|
|
@@ -101,15 +101,15 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
101
101
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
102
102
|
}, "strip", z.ZodTypeAny, {
|
|
103
103
|
operation: "create_pr_comment";
|
|
104
|
-
body: string;
|
|
105
104
|
owner: string;
|
|
105
|
+
body: string;
|
|
106
106
|
repo: string;
|
|
107
107
|
pull_number: number;
|
|
108
108
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
109
109
|
}, {
|
|
110
110
|
operation: "create_pr_comment";
|
|
111
|
-
body: string;
|
|
112
111
|
owner: string;
|
|
112
|
+
body: string;
|
|
113
113
|
repo: string;
|
|
114
114
|
pull_number: number;
|
|
115
115
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -125,8 +125,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
125
125
|
operation: "list_repositories";
|
|
126
126
|
sort: "created" | "updated" | "full_name" | "pushed";
|
|
127
127
|
page: number;
|
|
128
|
-
visibility: "all" | "public" | "private";
|
|
129
128
|
direction: "asc" | "desc";
|
|
129
|
+
visibility: "public" | "private" | "all";
|
|
130
130
|
per_page: number;
|
|
131
131
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
132
132
|
}, {
|
|
@@ -134,8 +134,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
134
134
|
sort?: "created" | "updated" | "full_name" | "pushed" | undefined;
|
|
135
135
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
136
136
|
page?: number | undefined;
|
|
137
|
-
visibility?: "all" | "public" | "private" | undefined;
|
|
138
137
|
direction?: "asc" | "desc" | undefined;
|
|
138
|
+
visibility?: "public" | "private" | "all" | undefined;
|
|
139
139
|
per_page?: number | undefined;
|
|
140
140
|
}>, z.ZodObject<{
|
|
141
141
|
operation: z.ZodLiteral<"get_repository">;
|
|
@@ -161,15 +161,15 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
161
161
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
163
|
operation: "create_issue_comment";
|
|
164
|
-
body: string;
|
|
165
164
|
owner: string;
|
|
165
|
+
body: string;
|
|
166
166
|
repo: string;
|
|
167
167
|
issue_number: number;
|
|
168
168
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
169
169
|
}, {
|
|
170
170
|
operation: "create_issue_comment";
|
|
171
|
-
body: string;
|
|
172
171
|
owner: string;
|
|
172
|
+
body: string;
|
|
173
173
|
repo: string;
|
|
174
174
|
issue_number: number;
|
|
175
175
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -186,12 +186,12 @@ 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
|
operation: "list_issues";
|
|
189
|
-
sort: "
|
|
190
|
-
state: "all" | "open" | "closed";
|
|
191
|
-
owner: string;
|
|
189
|
+
sort: "comments" | "created" | "updated";
|
|
192
190
|
page: number;
|
|
193
|
-
repo: string;
|
|
194
191
|
direction: "asc" | "desc";
|
|
192
|
+
owner: string;
|
|
193
|
+
state: "all" | "open" | "closed";
|
|
194
|
+
repo: string;
|
|
195
195
|
per_page: number;
|
|
196
196
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
197
197
|
labels?: string | undefined;
|
|
@@ -199,12 +199,12 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
199
199
|
operation: "list_issues";
|
|
200
200
|
owner: string;
|
|
201
201
|
repo: string;
|
|
202
|
-
sort?: "
|
|
202
|
+
sort?: "comments" | "created" | "updated" | undefined;
|
|
203
203
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
204
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
205
|
-
labels?: string | undefined;
|
|
206
204
|
page?: number | undefined;
|
|
207
205
|
direction?: "asc" | "desc" | undefined;
|
|
206
|
+
labels?: string | undefined;
|
|
207
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
208
208
|
per_page?: number | undefined;
|
|
209
209
|
}>]>;
|
|
210
210
|
declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
|
|
@@ -229,30 +229,30 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
229
229
|
error: string;
|
|
230
230
|
path?: string | undefined;
|
|
231
231
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
232
|
+
url?: string | undefined;
|
|
232
233
|
name?: string | undefined;
|
|
233
234
|
content?: string | undefined;
|
|
234
|
-
url?: string | undefined;
|
|
235
|
-
encoding?: string | undefined;
|
|
236
235
|
size?: number | undefined;
|
|
237
236
|
sha?: string | undefined;
|
|
238
237
|
html_url?: string | undefined;
|
|
239
238
|
git_url?: string | undefined;
|
|
240
239
|
download_url?: string | null | undefined;
|
|
240
|
+
encoding?: string | undefined;
|
|
241
241
|
}, {
|
|
242
242
|
operation: "get_file";
|
|
243
243
|
success: boolean;
|
|
244
244
|
error: string;
|
|
245
245
|
path?: string | undefined;
|
|
246
246
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
247
|
+
url?: string | undefined;
|
|
247
248
|
name?: string | undefined;
|
|
248
249
|
content?: string | undefined;
|
|
249
|
-
url?: string | undefined;
|
|
250
|
-
encoding?: string | undefined;
|
|
251
250
|
size?: number | undefined;
|
|
252
251
|
sha?: string | undefined;
|
|
253
252
|
html_url?: string | undefined;
|
|
254
253
|
git_url?: string | undefined;
|
|
255
254
|
download_url?: string | null | undefined;
|
|
255
|
+
encoding?: string | undefined;
|
|
256
256
|
}>, z.ZodObject<{
|
|
257
257
|
operation: z.ZodLiteral<"get_directory">;
|
|
258
258
|
success: z.ZodBoolean;
|
|
@@ -272,8 +272,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
272
272
|
}, "strip", z.ZodTypeAny, {
|
|
273
273
|
path: string;
|
|
274
274
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
275
|
-
name: string;
|
|
276
275
|
url: string;
|
|
276
|
+
name: string;
|
|
277
277
|
size: number;
|
|
278
278
|
sha: string;
|
|
279
279
|
html_url: string;
|
|
@@ -284,8 +284,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
284
284
|
}, {
|
|
285
285
|
path: string;
|
|
286
286
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
287
|
-
name: string;
|
|
288
287
|
url: string;
|
|
288
|
+
name: string;
|
|
289
289
|
size: number;
|
|
290
290
|
sha: string;
|
|
291
291
|
html_url: string;
|
|
@@ -301,8 +301,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
301
301
|
contents?: {
|
|
302
302
|
path: string;
|
|
303
303
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
304
|
-
name: string;
|
|
305
304
|
url: string;
|
|
305
|
+
name: string;
|
|
306
306
|
size: number;
|
|
307
307
|
sha: string;
|
|
308
308
|
html_url: string;
|
|
@@ -318,8 +318,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
318
318
|
contents?: {
|
|
319
319
|
path: string;
|
|
320
320
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
321
|
-
name: string;
|
|
322
321
|
url: string;
|
|
322
|
+
name: string;
|
|
323
323
|
size: number;
|
|
324
324
|
sha: string;
|
|
325
325
|
html_url: string;
|
|
@@ -349,12 +349,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
349
349
|
avatar_url: z.ZodString;
|
|
350
350
|
}, "strip", z.ZodTypeAny, {
|
|
351
351
|
id: number;
|
|
352
|
-
login: string;
|
|
353
352
|
avatar_url: string;
|
|
353
|
+
login: string;
|
|
354
354
|
}, {
|
|
355
355
|
id: number;
|
|
356
|
-
login: string;
|
|
357
356
|
avatar_url: string;
|
|
357
|
+
login: string;
|
|
358
358
|
}>;
|
|
359
359
|
html_url: z.ZodString;
|
|
360
360
|
draft: z.ZodBoolean;
|
|
@@ -390,16 +390,16 @@ 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
|
-
body: string | null;
|
|
395
393
|
id: number;
|
|
396
394
|
user: {
|
|
397
395
|
id: number;
|
|
398
|
-
login: string;
|
|
399
396
|
avatar_url: string;
|
|
397
|
+
login: string;
|
|
400
398
|
};
|
|
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,16 +425,16 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
425
425
|
}, {
|
|
426
426
|
number: number;
|
|
427
427
|
title: string;
|
|
428
|
-
state: "open" | "closed";
|
|
429
|
-
body: string | null;
|
|
430
428
|
id: number;
|
|
431
429
|
user: {
|
|
432
430
|
id: number;
|
|
433
|
-
login: string;
|
|
434
431
|
avatar_url: string;
|
|
432
|
+
login: string;
|
|
435
433
|
};
|
|
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,16 +465,16 @@ 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
|
-
body: string | null;
|
|
470
468
|
id: number;
|
|
471
469
|
user: {
|
|
472
470
|
id: number;
|
|
473
|
-
login: string;
|
|
474
471
|
avatar_url: string;
|
|
472
|
+
login: string;
|
|
475
473
|
};
|
|
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,16 +505,16 @@ 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
|
-
body: string | null;
|
|
510
508
|
id: number;
|
|
511
509
|
user: {
|
|
512
510
|
id: number;
|
|
513
|
-
login: string;
|
|
514
511
|
avatar_url: string;
|
|
512
|
+
login: string;
|
|
515
513
|
};
|
|
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;
|
|
@@ -559,12 +559,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
559
559
|
avatar_url: z.ZodString;
|
|
560
560
|
}, "strip", z.ZodTypeAny, {
|
|
561
561
|
id: number;
|
|
562
|
-
login: string;
|
|
563
562
|
avatar_url: string;
|
|
563
|
+
login: string;
|
|
564
564
|
}, {
|
|
565
565
|
id: number;
|
|
566
|
-
login: string;
|
|
567
566
|
avatar_url: string;
|
|
567
|
+
login: string;
|
|
568
568
|
}>>;
|
|
569
569
|
html_url: z.ZodOptional<z.ZodString>;
|
|
570
570
|
draft: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -603,17 +603,17 @@ 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
|
-
body?: string | null | undefined;
|
|
608
606
|
id?: number | undefined;
|
|
609
607
|
user?: {
|
|
610
608
|
id: number;
|
|
611
|
-
login: string;
|
|
612
609
|
avatar_url: string;
|
|
610
|
+
login: string;
|
|
613
611
|
} | undefined;
|
|
612
|
+
comments?: number | undefined;
|
|
613
|
+
body?: string | null | undefined;
|
|
614
614
|
created_at?: string | undefined;
|
|
615
615
|
draft?: boolean | undefined;
|
|
616
|
-
|
|
616
|
+
state?: "open" | "closed" | undefined;
|
|
617
617
|
html_url?: string | undefined;
|
|
618
618
|
node_id?: string | undefined;
|
|
619
619
|
updated_at?: string | undefined;
|
|
@@ -641,17 +641,17 @@ 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
|
-
body?: string | null | undefined;
|
|
646
644
|
id?: number | undefined;
|
|
647
645
|
user?: {
|
|
648
646
|
id: number;
|
|
649
|
-
login: string;
|
|
650
647
|
avatar_url: string;
|
|
648
|
+
login: string;
|
|
651
649
|
} | undefined;
|
|
650
|
+
comments?: number | undefined;
|
|
651
|
+
body?: string | null | undefined;
|
|
652
652
|
created_at?: string | undefined;
|
|
653
653
|
draft?: boolean | undefined;
|
|
654
|
-
|
|
654
|
+
state?: "open" | "closed" | undefined;
|
|
655
655
|
html_url?: string | undefined;
|
|
656
656
|
node_id?: string | undefined;
|
|
657
657
|
updated_at?: string | undefined;
|
|
@@ -698,12 +698,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
698
698
|
operation: "create_pr_comment";
|
|
699
699
|
success: boolean;
|
|
700
700
|
error: string;
|
|
701
|
-
body?: string | undefined;
|
|
702
701
|
id?: number | undefined;
|
|
703
702
|
user?: {
|
|
704
703
|
id: number;
|
|
705
704
|
login: string;
|
|
706
705
|
} | undefined;
|
|
706
|
+
body?: string | undefined;
|
|
707
707
|
created_at?: string | undefined;
|
|
708
708
|
html_url?: string | undefined;
|
|
709
709
|
node_id?: string | undefined;
|
|
@@ -712,12 +712,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
712
712
|
operation: "create_pr_comment";
|
|
713
713
|
success: boolean;
|
|
714
714
|
error: string;
|
|
715
|
-
body?: string | undefined;
|
|
716
715
|
id?: number | undefined;
|
|
717
716
|
user?: {
|
|
718
717
|
id: number;
|
|
719
718
|
login: string;
|
|
720
719
|
} | undefined;
|
|
720
|
+
body?: string | undefined;
|
|
721
721
|
created_at?: string | undefined;
|
|
722
722
|
html_url?: string | undefined;
|
|
723
723
|
node_id?: string | undefined;
|
|
@@ -739,14 +739,14 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
739
739
|
html_url: z.ZodString;
|
|
740
740
|
}, "strip", z.ZodTypeAny, {
|
|
741
741
|
id: number;
|
|
742
|
+
avatar_url: string;
|
|
742
743
|
html_url: string;
|
|
743
744
|
login: string;
|
|
744
|
-
avatar_url: string;
|
|
745
745
|
}, {
|
|
746
746
|
id: number;
|
|
747
|
+
avatar_url: string;
|
|
747
748
|
html_url: string;
|
|
748
749
|
login: string;
|
|
749
|
-
avatar_url: string;
|
|
750
750
|
}>;
|
|
751
751
|
html_url: z.ZodString;
|
|
752
752
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -764,17 +764,17 @@ 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
|
-
name: string;
|
|
768
767
|
id: number;
|
|
769
|
-
|
|
770
|
-
private: boolean;
|
|
771
|
-
created_at: string;
|
|
768
|
+
name: string;
|
|
772
769
|
owner: {
|
|
773
770
|
id: number;
|
|
771
|
+
avatar_url: string;
|
|
774
772
|
html_url: string;
|
|
775
773
|
login: string;
|
|
776
|
-
avatar_url: string;
|
|
777
774
|
};
|
|
775
|
+
size: number;
|
|
776
|
+
private: boolean;
|
|
777
|
+
created_at: string;
|
|
778
778
|
full_name: string;
|
|
779
779
|
language: string | null;
|
|
780
780
|
html_url: string;
|
|
@@ -790,17 +790,17 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
790
790
|
visibility?: string | undefined;
|
|
791
791
|
}, {
|
|
792
792
|
description: string | null;
|
|
793
|
-
name: string;
|
|
794
793
|
id: number;
|
|
795
|
-
|
|
796
|
-
private: boolean;
|
|
797
|
-
created_at: string;
|
|
794
|
+
name: string;
|
|
798
795
|
owner: {
|
|
799
796
|
id: number;
|
|
797
|
+
avatar_url: string;
|
|
800
798
|
html_url: string;
|
|
801
799
|
login: string;
|
|
802
|
-
avatar_url: string;
|
|
803
800
|
};
|
|
801
|
+
size: number;
|
|
802
|
+
private: boolean;
|
|
803
|
+
created_at: string;
|
|
804
804
|
full_name: string;
|
|
805
805
|
language: string | null;
|
|
806
806
|
html_url: string;
|
|
@@ -821,17 +821,17 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
821
821
|
error: string;
|
|
822
822
|
repositories?: {
|
|
823
823
|
description: string | null;
|
|
824
|
-
name: string;
|
|
825
824
|
id: number;
|
|
826
|
-
|
|
827
|
-
private: boolean;
|
|
828
|
-
created_at: string;
|
|
825
|
+
name: string;
|
|
829
826
|
owner: {
|
|
830
827
|
id: number;
|
|
828
|
+
avatar_url: string;
|
|
831
829
|
html_url: string;
|
|
832
830
|
login: string;
|
|
833
|
-
avatar_url: string;
|
|
834
831
|
};
|
|
832
|
+
size: number;
|
|
833
|
+
private: boolean;
|
|
834
|
+
created_at: string;
|
|
835
835
|
full_name: string;
|
|
836
836
|
language: string | null;
|
|
837
837
|
html_url: string;
|
|
@@ -852,17 +852,17 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
852
852
|
error: string;
|
|
853
853
|
repositories?: {
|
|
854
854
|
description: string | null;
|
|
855
|
-
name: string;
|
|
856
855
|
id: number;
|
|
857
|
-
|
|
858
|
-
private: boolean;
|
|
859
|
-
created_at: string;
|
|
856
|
+
name: string;
|
|
860
857
|
owner: {
|
|
861
858
|
id: number;
|
|
859
|
+
avatar_url: string;
|
|
862
860
|
html_url: string;
|
|
863
861
|
login: string;
|
|
864
|
-
avatar_url: string;
|
|
865
862
|
};
|
|
863
|
+
size: number;
|
|
864
|
+
private: boolean;
|
|
865
|
+
created_at: string;
|
|
866
866
|
full_name: string;
|
|
867
867
|
language: string | null;
|
|
868
868
|
html_url: string;
|
|
@@ -894,14 +894,14 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
894
894
|
html_url: z.ZodString;
|
|
895
895
|
}, "strip", z.ZodTypeAny, {
|
|
896
896
|
id: number;
|
|
897
|
+
avatar_url: string;
|
|
897
898
|
html_url: string;
|
|
898
899
|
login: string;
|
|
899
|
-
avatar_url: string;
|
|
900
900
|
}, {
|
|
901
901
|
id: number;
|
|
902
|
+
avatar_url: string;
|
|
902
903
|
html_url: string;
|
|
903
904
|
login: string;
|
|
904
|
-
avatar_url: string;
|
|
905
905
|
}>>;
|
|
906
906
|
html_url: z.ZodOptional<z.ZodString>;
|
|
907
907
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -922,17 +922,17 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
922
922
|
success: boolean;
|
|
923
923
|
error: string;
|
|
924
924
|
description?: string | null | undefined;
|
|
925
|
-
name?: string | undefined;
|
|
926
925
|
id?: number | undefined;
|
|
927
|
-
|
|
928
|
-
private?: boolean | undefined;
|
|
929
|
-
created_at?: string | undefined;
|
|
926
|
+
name?: string | undefined;
|
|
930
927
|
owner?: {
|
|
931
928
|
id: number;
|
|
929
|
+
avatar_url: string;
|
|
932
930
|
html_url: string;
|
|
933
931
|
login: string;
|
|
934
|
-
avatar_url: string;
|
|
935
932
|
} | undefined;
|
|
933
|
+
size?: number | undefined;
|
|
934
|
+
private?: boolean | undefined;
|
|
935
|
+
created_at?: string | undefined;
|
|
936
936
|
full_name?: string | undefined;
|
|
937
937
|
language?: string | null | undefined;
|
|
938
938
|
html_url?: string | undefined;
|
|
@@ -951,17 +951,17 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
951
951
|
success: boolean;
|
|
952
952
|
error: string;
|
|
953
953
|
description?: string | null | undefined;
|
|
954
|
-
name?: string | undefined;
|
|
955
954
|
id?: number | undefined;
|
|
956
|
-
|
|
957
|
-
private?: boolean | undefined;
|
|
958
|
-
created_at?: string | undefined;
|
|
955
|
+
name?: string | undefined;
|
|
959
956
|
owner?: {
|
|
960
957
|
id: number;
|
|
958
|
+
avatar_url: string;
|
|
961
959
|
html_url: string;
|
|
962
960
|
login: string;
|
|
963
|
-
avatar_url: string;
|
|
964
961
|
} | undefined;
|
|
962
|
+
size?: number | undefined;
|
|
963
|
+
private?: boolean | undefined;
|
|
964
|
+
created_at?: string | undefined;
|
|
965
965
|
full_name?: string | undefined;
|
|
966
966
|
language?: string | null | undefined;
|
|
967
967
|
html_url?: string | undefined;
|
|
@@ -1000,12 +1000,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1000
1000
|
operation: "create_issue_comment";
|
|
1001
1001
|
success: boolean;
|
|
1002
1002
|
error: string;
|
|
1003
|
-
body?: string | undefined;
|
|
1004
1003
|
id?: number | undefined;
|
|
1005
1004
|
user?: {
|
|
1006
1005
|
id: number;
|
|
1007
1006
|
login: string;
|
|
1008
1007
|
} | undefined;
|
|
1008
|
+
body?: string | undefined;
|
|
1009
1009
|
created_at?: string | undefined;
|
|
1010
1010
|
html_url?: string | undefined;
|
|
1011
1011
|
node_id?: string | undefined;
|
|
@@ -1014,12 +1014,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1014
1014
|
operation: "create_issue_comment";
|
|
1015
1015
|
success: boolean;
|
|
1016
1016
|
error: string;
|
|
1017
|
-
body?: string | undefined;
|
|
1018
1017
|
id?: number | undefined;
|
|
1019
1018
|
user?: {
|
|
1020
1019
|
id: number;
|
|
1021
1020
|
login: string;
|
|
1022
1021
|
} | undefined;
|
|
1022
|
+
body?: string | undefined;
|
|
1023
1023
|
created_at?: string | undefined;
|
|
1024
1024
|
html_url?: string | undefined;
|
|
1025
1025
|
node_id?: string | undefined;
|
|
@@ -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
|
-
name: string;
|
|
1056
1055
|
id: number;
|
|
1056
|
+
name: string;
|
|
1057
1057
|
color: string;
|
|
1058
1058
|
}, {
|
|
1059
1059
|
description: string | null;
|
|
1060
|
-
name: string;
|
|
1061
1060
|
id: number;
|
|
1061
|
+
name: string;
|
|
1062
1062
|
color: string;
|
|
1063
1063
|
}>, "many">;
|
|
1064
1064
|
created_at: z.ZodString;
|
|
@@ -1069,21 +1069,21 @@ 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
|
-
body: string | null;
|
|
1074
1072
|
id: number;
|
|
1075
1073
|
user: {
|
|
1076
1074
|
id: number;
|
|
1077
1075
|
login: string;
|
|
1078
1076
|
};
|
|
1077
|
+
comments: number;
|
|
1078
|
+
body: string | null;
|
|
1079
1079
|
created_at: string;
|
|
1080
1080
|
labels: {
|
|
1081
1081
|
description: string | null;
|
|
1082
|
-
name: string;
|
|
1083
1082
|
id: number;
|
|
1083
|
+
name: string;
|
|
1084
1084
|
color: string;
|
|
1085
1085
|
}[];
|
|
1086
|
-
|
|
1086
|
+
state: "open" | "closed";
|
|
1087
1087
|
html_url: string;
|
|
1088
1088
|
node_id: string;
|
|
1089
1089
|
updated_at: string;
|
|
@@ -1091,21 +1091,21 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1091
1091
|
}, {
|
|
1092
1092
|
number: number;
|
|
1093
1093
|
title: string;
|
|
1094
|
-
state: "open" | "closed";
|
|
1095
|
-
body: string | null;
|
|
1096
1094
|
id: number;
|
|
1097
1095
|
user: {
|
|
1098
1096
|
id: number;
|
|
1099
1097
|
login: string;
|
|
1100
1098
|
};
|
|
1099
|
+
comments: number;
|
|
1100
|
+
body: string | null;
|
|
1101
1101
|
created_at: string;
|
|
1102
1102
|
labels: {
|
|
1103
1103
|
description: string | null;
|
|
1104
|
-
name: string;
|
|
1105
1104
|
id: number;
|
|
1105
|
+
name: string;
|
|
1106
1106
|
color: string;
|
|
1107
1107
|
}[];
|
|
1108
|
-
|
|
1108
|
+
state: "open" | "closed";
|
|
1109
1109
|
html_url: string;
|
|
1110
1110
|
node_id: string;
|
|
1111
1111
|
updated_at: string;
|
|
@@ -1118,21 +1118,21 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1118
1118
|
issues?: {
|
|
1119
1119
|
number: number;
|
|
1120
1120
|
title: string;
|
|
1121
|
-
state: "open" | "closed";
|
|
1122
|
-
body: string | null;
|
|
1123
1121
|
id: number;
|
|
1124
1122
|
user: {
|
|
1125
1123
|
id: number;
|
|
1126
1124
|
login: string;
|
|
1127
1125
|
};
|
|
1126
|
+
comments: number;
|
|
1127
|
+
body: string | null;
|
|
1128
1128
|
created_at: string;
|
|
1129
1129
|
labels: {
|
|
1130
1130
|
description: string | null;
|
|
1131
|
-
name: string;
|
|
1132
1131
|
id: number;
|
|
1132
|
+
name: string;
|
|
1133
1133
|
color: string;
|
|
1134
1134
|
}[];
|
|
1135
|
-
|
|
1135
|
+
state: "open" | "closed";
|
|
1136
1136
|
html_url: string;
|
|
1137
1137
|
node_id: string;
|
|
1138
1138
|
updated_at: string;
|
|
@@ -1145,21 +1145,21 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1145
1145
|
issues?: {
|
|
1146
1146
|
number: number;
|
|
1147
1147
|
title: string;
|
|
1148
|
-
state: "open" | "closed";
|
|
1149
|
-
body: string | null;
|
|
1150
1148
|
id: number;
|
|
1151
1149
|
user: {
|
|
1152
1150
|
id: number;
|
|
1153
1151
|
login: string;
|
|
1154
1152
|
};
|
|
1153
|
+
comments: number;
|
|
1154
|
+
body: string | null;
|
|
1155
1155
|
created_at: string;
|
|
1156
1156
|
labels: {
|
|
1157
1157
|
description: string | null;
|
|
1158
|
-
name: string;
|
|
1159
1158
|
id: number;
|
|
1159
|
+
name: string;
|
|
1160
1160
|
color: string;
|
|
1161
1161
|
}[];
|
|
1162
|
-
|
|
1162
|
+
state: "open" | "closed";
|
|
1163
1163
|
html_url: string;
|
|
1164
1164
|
node_id: string;
|
|
1165
1165
|
updated_at: string;
|
|
@@ -1261,11 +1261,11 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1261
1261
|
}, "strip", z.ZodTypeAny, {
|
|
1262
1262
|
operation: "list_pull_requests";
|
|
1263
1263
|
sort: "created" | "updated" | "popularity" | "long-running";
|
|
1264
|
-
state: "all" | "open" | "closed";
|
|
1265
|
-
owner: string;
|
|
1266
1264
|
page: number;
|
|
1267
|
-
repo: string;
|
|
1268
1265
|
direction: "asc" | "desc";
|
|
1266
|
+
owner: string;
|
|
1267
|
+
state: "all" | "open" | "closed";
|
|
1268
|
+
repo: string;
|
|
1269
1269
|
per_page: number;
|
|
1270
1270
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1271
1271
|
}, {
|
|
@@ -1274,9 +1274,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1274
1274
|
repo: string;
|
|
1275
1275
|
sort?: "created" | "updated" | "popularity" | "long-running" | undefined;
|
|
1276
1276
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1277
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
1278
1277
|
page?: number | undefined;
|
|
1279
1278
|
direction?: "asc" | "desc" | undefined;
|
|
1279
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
1280
1280
|
per_page?: number | undefined;
|
|
1281
1281
|
}>, z.ZodObject<{
|
|
1282
1282
|
operation: z.ZodLiteral<"get_pull_request">;
|
|
@@ -1305,15 +1305,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1305
1305
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1306
1306
|
}, "strip", z.ZodTypeAny, {
|
|
1307
1307
|
operation: "create_pr_comment";
|
|
1308
|
-
body: string;
|
|
1309
1308
|
owner: string;
|
|
1309
|
+
body: string;
|
|
1310
1310
|
repo: string;
|
|
1311
1311
|
pull_number: number;
|
|
1312
1312
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1313
1313
|
}, {
|
|
1314
1314
|
operation: "create_pr_comment";
|
|
1315
|
-
body: string;
|
|
1316
1315
|
owner: string;
|
|
1316
|
+
body: string;
|
|
1317
1317
|
repo: string;
|
|
1318
1318
|
pull_number: number;
|
|
1319
1319
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1329,8 +1329,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1329
1329
|
operation: "list_repositories";
|
|
1330
1330
|
sort: "created" | "updated" | "full_name" | "pushed";
|
|
1331
1331
|
page: number;
|
|
1332
|
-
visibility: "all" | "public" | "private";
|
|
1333
1332
|
direction: "asc" | "desc";
|
|
1333
|
+
visibility: "public" | "private" | "all";
|
|
1334
1334
|
per_page: number;
|
|
1335
1335
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1336
1336
|
}, {
|
|
@@ -1338,8 +1338,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1338
1338
|
sort?: "created" | "updated" | "full_name" | "pushed" | undefined;
|
|
1339
1339
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1340
1340
|
page?: number | undefined;
|
|
1341
|
-
visibility?: "all" | "public" | "private" | undefined;
|
|
1342
1341
|
direction?: "asc" | "desc" | undefined;
|
|
1342
|
+
visibility?: "public" | "private" | "all" | undefined;
|
|
1343
1343
|
per_page?: number | undefined;
|
|
1344
1344
|
}>, z.ZodObject<{
|
|
1345
1345
|
operation: z.ZodLiteral<"get_repository">;
|
|
@@ -1365,15 +1365,15 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1365
1365
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1366
1366
|
}, "strip", z.ZodTypeAny, {
|
|
1367
1367
|
operation: "create_issue_comment";
|
|
1368
|
-
body: string;
|
|
1369
1368
|
owner: string;
|
|
1369
|
+
body: string;
|
|
1370
1370
|
repo: string;
|
|
1371
1371
|
issue_number: number;
|
|
1372
1372
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1373
1373
|
}, {
|
|
1374
1374
|
operation: "create_issue_comment";
|
|
1375
|
-
body: string;
|
|
1376
1375
|
owner: string;
|
|
1376
|
+
body: string;
|
|
1377
1377
|
repo: string;
|
|
1378
1378
|
issue_number: number;
|
|
1379
1379
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1390,12 +1390,12 @@ 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
|
operation: "list_issues";
|
|
1393
|
-
sort: "
|
|
1394
|
-
state: "all" | "open" | "closed";
|
|
1395
|
-
owner: string;
|
|
1393
|
+
sort: "comments" | "created" | "updated";
|
|
1396
1394
|
page: number;
|
|
1397
|
-
repo: string;
|
|
1398
1395
|
direction: "asc" | "desc";
|
|
1396
|
+
owner: string;
|
|
1397
|
+
state: "all" | "open" | "closed";
|
|
1398
|
+
repo: string;
|
|
1399
1399
|
per_page: number;
|
|
1400
1400
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1401
1401
|
labels?: string | undefined;
|
|
@@ -1403,12 +1403,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1403
1403
|
operation: "list_issues";
|
|
1404
1404
|
owner: string;
|
|
1405
1405
|
repo: string;
|
|
1406
|
-
sort?: "
|
|
1406
|
+
sort?: "comments" | "created" | "updated" | undefined;
|
|
1407
1407
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1408
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
1409
|
-
labels?: string | undefined;
|
|
1410
1408
|
page?: number | undefined;
|
|
1411
1409
|
direction?: "asc" | "desc" | undefined;
|
|
1410
|
+
labels?: string | undefined;
|
|
1411
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
1412
1412
|
per_page?: number | undefined;
|
|
1413
1413
|
}>]>;
|
|
1414
1414
|
static readonly resultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
|
|
@@ -1433,30 +1433,30 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1433
1433
|
error: string;
|
|
1434
1434
|
path?: string | undefined;
|
|
1435
1435
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
1436
|
+
url?: string | undefined;
|
|
1436
1437
|
name?: string | undefined;
|
|
1437
1438
|
content?: string | undefined;
|
|
1438
|
-
url?: string | undefined;
|
|
1439
|
-
encoding?: string | undefined;
|
|
1440
1439
|
size?: number | undefined;
|
|
1441
1440
|
sha?: string | undefined;
|
|
1442
1441
|
html_url?: string | undefined;
|
|
1443
1442
|
git_url?: string | undefined;
|
|
1444
1443
|
download_url?: string | null | undefined;
|
|
1444
|
+
encoding?: string | undefined;
|
|
1445
1445
|
}, {
|
|
1446
1446
|
operation: "get_file";
|
|
1447
1447
|
success: boolean;
|
|
1448
1448
|
error: string;
|
|
1449
1449
|
path?: string | undefined;
|
|
1450
1450
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
1451
|
+
url?: string | undefined;
|
|
1451
1452
|
name?: string | undefined;
|
|
1452
1453
|
content?: string | undefined;
|
|
1453
|
-
url?: string | undefined;
|
|
1454
|
-
encoding?: string | undefined;
|
|
1455
1454
|
size?: number | undefined;
|
|
1456
1455
|
sha?: string | undefined;
|
|
1457
1456
|
html_url?: string | undefined;
|
|
1458
1457
|
git_url?: string | undefined;
|
|
1459
1458
|
download_url?: string | null | undefined;
|
|
1459
|
+
encoding?: string | undefined;
|
|
1460
1460
|
}>, z.ZodObject<{
|
|
1461
1461
|
operation: z.ZodLiteral<"get_directory">;
|
|
1462
1462
|
success: z.ZodBoolean;
|
|
@@ -1476,8 +1476,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1476
1476
|
}, "strip", z.ZodTypeAny, {
|
|
1477
1477
|
path: string;
|
|
1478
1478
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1479
|
-
name: string;
|
|
1480
1479
|
url: string;
|
|
1480
|
+
name: string;
|
|
1481
1481
|
size: number;
|
|
1482
1482
|
sha: string;
|
|
1483
1483
|
html_url: string;
|
|
@@ -1488,8 +1488,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1488
1488
|
}, {
|
|
1489
1489
|
path: string;
|
|
1490
1490
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1491
|
-
name: string;
|
|
1492
1491
|
url: string;
|
|
1492
|
+
name: string;
|
|
1493
1493
|
size: number;
|
|
1494
1494
|
sha: string;
|
|
1495
1495
|
html_url: string;
|
|
@@ -1505,8 +1505,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1505
1505
|
contents?: {
|
|
1506
1506
|
path: string;
|
|
1507
1507
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1508
|
-
name: string;
|
|
1509
1508
|
url: string;
|
|
1509
|
+
name: string;
|
|
1510
1510
|
size: number;
|
|
1511
1511
|
sha: string;
|
|
1512
1512
|
html_url: string;
|
|
@@ -1522,8 +1522,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1522
1522
|
contents?: {
|
|
1523
1523
|
path: string;
|
|
1524
1524
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1525
|
-
name: string;
|
|
1526
1525
|
url: string;
|
|
1526
|
+
name: string;
|
|
1527
1527
|
size: number;
|
|
1528
1528
|
sha: string;
|
|
1529
1529
|
html_url: string;
|
|
@@ -1553,12 +1553,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1553
1553
|
avatar_url: z.ZodString;
|
|
1554
1554
|
}, "strip", z.ZodTypeAny, {
|
|
1555
1555
|
id: number;
|
|
1556
|
-
login: string;
|
|
1557
1556
|
avatar_url: string;
|
|
1557
|
+
login: string;
|
|
1558
1558
|
}, {
|
|
1559
1559
|
id: number;
|
|
1560
|
-
login: string;
|
|
1561
1560
|
avatar_url: string;
|
|
1561
|
+
login: string;
|
|
1562
1562
|
}>;
|
|
1563
1563
|
html_url: z.ZodString;
|
|
1564
1564
|
draft: z.ZodBoolean;
|
|
@@ -1594,16 +1594,16 @@ 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
|
-
body: string | null;
|
|
1599
1597
|
id: number;
|
|
1600
1598
|
user: {
|
|
1601
1599
|
id: number;
|
|
1602
|
-
login: string;
|
|
1603
1600
|
avatar_url: string;
|
|
1601
|
+
login: string;
|
|
1604
1602
|
};
|
|
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,16 +1629,16 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1629
1629
|
}, {
|
|
1630
1630
|
number: number;
|
|
1631
1631
|
title: string;
|
|
1632
|
-
state: "open" | "closed";
|
|
1633
|
-
body: string | null;
|
|
1634
1632
|
id: number;
|
|
1635
1633
|
user: {
|
|
1636
1634
|
id: number;
|
|
1637
|
-
login: string;
|
|
1638
1635
|
avatar_url: string;
|
|
1636
|
+
login: string;
|
|
1639
1637
|
};
|
|
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,16 +1669,16 @@ 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
|
-
body: string | null;
|
|
1674
1672
|
id: number;
|
|
1675
1673
|
user: {
|
|
1676
1674
|
id: number;
|
|
1677
|
-
login: string;
|
|
1678
1675
|
avatar_url: string;
|
|
1676
|
+
login: string;
|
|
1679
1677
|
};
|
|
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,16 +1709,16 @@ 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
|
-
body: string | null;
|
|
1714
1712
|
id: number;
|
|
1715
1713
|
user: {
|
|
1716
1714
|
id: number;
|
|
1717
|
-
login: string;
|
|
1718
1715
|
avatar_url: string;
|
|
1716
|
+
login: string;
|
|
1719
1717
|
};
|
|
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;
|
|
@@ -1763,12 +1763,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1763
1763
|
avatar_url: z.ZodString;
|
|
1764
1764
|
}, "strip", z.ZodTypeAny, {
|
|
1765
1765
|
id: number;
|
|
1766
|
-
login: string;
|
|
1767
1766
|
avatar_url: string;
|
|
1767
|
+
login: string;
|
|
1768
1768
|
}, {
|
|
1769
1769
|
id: number;
|
|
1770
|
-
login: string;
|
|
1771
1770
|
avatar_url: string;
|
|
1771
|
+
login: string;
|
|
1772
1772
|
}>>;
|
|
1773
1773
|
html_url: z.ZodOptional<z.ZodString>;
|
|
1774
1774
|
draft: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1807,17 +1807,17 @@ 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
|
-
body?: string | null | undefined;
|
|
1812
1810
|
id?: number | undefined;
|
|
1813
1811
|
user?: {
|
|
1814
1812
|
id: number;
|
|
1815
|
-
login: string;
|
|
1816
1813
|
avatar_url: string;
|
|
1814
|
+
login: string;
|
|
1817
1815
|
} | undefined;
|
|
1816
|
+
comments?: number | undefined;
|
|
1817
|
+
body?: string | null | undefined;
|
|
1818
1818
|
created_at?: string | undefined;
|
|
1819
1819
|
draft?: boolean | undefined;
|
|
1820
|
-
|
|
1820
|
+
state?: "open" | "closed" | undefined;
|
|
1821
1821
|
html_url?: string | undefined;
|
|
1822
1822
|
node_id?: string | undefined;
|
|
1823
1823
|
updated_at?: string | undefined;
|
|
@@ -1845,17 +1845,17 @@ 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
|
-
body?: string | null | undefined;
|
|
1850
1848
|
id?: number | undefined;
|
|
1851
1849
|
user?: {
|
|
1852
1850
|
id: number;
|
|
1853
|
-
login: string;
|
|
1854
1851
|
avatar_url: string;
|
|
1852
|
+
login: string;
|
|
1855
1853
|
} | undefined;
|
|
1854
|
+
comments?: number | undefined;
|
|
1855
|
+
body?: string | null | undefined;
|
|
1856
1856
|
created_at?: string | undefined;
|
|
1857
1857
|
draft?: boolean | undefined;
|
|
1858
|
-
|
|
1858
|
+
state?: "open" | "closed" | undefined;
|
|
1859
1859
|
html_url?: string | undefined;
|
|
1860
1860
|
node_id?: string | undefined;
|
|
1861
1861
|
updated_at?: string | undefined;
|
|
@@ -1902,12 +1902,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1902
1902
|
operation: "create_pr_comment";
|
|
1903
1903
|
success: boolean;
|
|
1904
1904
|
error: string;
|
|
1905
|
-
body?: string | undefined;
|
|
1906
1905
|
id?: number | undefined;
|
|
1907
1906
|
user?: {
|
|
1908
1907
|
id: number;
|
|
1909
1908
|
login: string;
|
|
1910
1909
|
} | undefined;
|
|
1910
|
+
body?: string | undefined;
|
|
1911
1911
|
created_at?: string | undefined;
|
|
1912
1912
|
html_url?: string | undefined;
|
|
1913
1913
|
node_id?: string | undefined;
|
|
@@ -1916,12 +1916,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1916
1916
|
operation: "create_pr_comment";
|
|
1917
1917
|
success: boolean;
|
|
1918
1918
|
error: string;
|
|
1919
|
-
body?: string | undefined;
|
|
1920
1919
|
id?: number | undefined;
|
|
1921
1920
|
user?: {
|
|
1922
1921
|
id: number;
|
|
1923
1922
|
login: string;
|
|
1924
1923
|
} | undefined;
|
|
1924
|
+
body?: string | undefined;
|
|
1925
1925
|
created_at?: string | undefined;
|
|
1926
1926
|
html_url?: string | undefined;
|
|
1927
1927
|
node_id?: string | undefined;
|
|
@@ -1943,14 +1943,14 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1943
1943
|
html_url: z.ZodString;
|
|
1944
1944
|
}, "strip", z.ZodTypeAny, {
|
|
1945
1945
|
id: number;
|
|
1946
|
+
avatar_url: string;
|
|
1946
1947
|
html_url: string;
|
|
1947
1948
|
login: string;
|
|
1948
|
-
avatar_url: string;
|
|
1949
1949
|
}, {
|
|
1950
1950
|
id: number;
|
|
1951
|
+
avatar_url: string;
|
|
1951
1952
|
html_url: string;
|
|
1952
1953
|
login: string;
|
|
1953
|
-
avatar_url: string;
|
|
1954
1954
|
}>;
|
|
1955
1955
|
html_url: z.ZodString;
|
|
1956
1956
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -1968,17 +1968,17 @@ 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
|
-
name: string;
|
|
1972
1971
|
id: number;
|
|
1973
|
-
|
|
1974
|
-
private: boolean;
|
|
1975
|
-
created_at: string;
|
|
1972
|
+
name: string;
|
|
1976
1973
|
owner: {
|
|
1977
1974
|
id: number;
|
|
1975
|
+
avatar_url: string;
|
|
1978
1976
|
html_url: string;
|
|
1979
1977
|
login: string;
|
|
1980
|
-
avatar_url: string;
|
|
1981
1978
|
};
|
|
1979
|
+
size: number;
|
|
1980
|
+
private: boolean;
|
|
1981
|
+
created_at: string;
|
|
1982
1982
|
full_name: string;
|
|
1983
1983
|
language: string | null;
|
|
1984
1984
|
html_url: string;
|
|
@@ -1994,17 +1994,17 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1994
1994
|
visibility?: string | undefined;
|
|
1995
1995
|
}, {
|
|
1996
1996
|
description: string | null;
|
|
1997
|
-
name: string;
|
|
1998
1997
|
id: number;
|
|
1999
|
-
|
|
2000
|
-
private: boolean;
|
|
2001
|
-
created_at: string;
|
|
1998
|
+
name: string;
|
|
2002
1999
|
owner: {
|
|
2003
2000
|
id: number;
|
|
2001
|
+
avatar_url: string;
|
|
2004
2002
|
html_url: string;
|
|
2005
2003
|
login: string;
|
|
2006
|
-
avatar_url: string;
|
|
2007
2004
|
};
|
|
2005
|
+
size: number;
|
|
2006
|
+
private: boolean;
|
|
2007
|
+
created_at: string;
|
|
2008
2008
|
full_name: string;
|
|
2009
2009
|
language: string | null;
|
|
2010
2010
|
html_url: string;
|
|
@@ -2025,17 +2025,17 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2025
2025
|
error: string;
|
|
2026
2026
|
repositories?: {
|
|
2027
2027
|
description: string | null;
|
|
2028
|
-
name: string;
|
|
2029
2028
|
id: number;
|
|
2030
|
-
|
|
2031
|
-
private: boolean;
|
|
2032
|
-
created_at: string;
|
|
2029
|
+
name: string;
|
|
2033
2030
|
owner: {
|
|
2034
2031
|
id: number;
|
|
2032
|
+
avatar_url: string;
|
|
2035
2033
|
html_url: string;
|
|
2036
2034
|
login: string;
|
|
2037
|
-
avatar_url: string;
|
|
2038
2035
|
};
|
|
2036
|
+
size: number;
|
|
2037
|
+
private: boolean;
|
|
2038
|
+
created_at: string;
|
|
2039
2039
|
full_name: string;
|
|
2040
2040
|
language: string | null;
|
|
2041
2041
|
html_url: string;
|
|
@@ -2056,17 +2056,17 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2056
2056
|
error: string;
|
|
2057
2057
|
repositories?: {
|
|
2058
2058
|
description: string | null;
|
|
2059
|
-
name: string;
|
|
2060
2059
|
id: number;
|
|
2061
|
-
|
|
2062
|
-
private: boolean;
|
|
2063
|
-
created_at: string;
|
|
2060
|
+
name: string;
|
|
2064
2061
|
owner: {
|
|
2065
2062
|
id: number;
|
|
2063
|
+
avatar_url: string;
|
|
2066
2064
|
html_url: string;
|
|
2067
2065
|
login: string;
|
|
2068
|
-
avatar_url: string;
|
|
2069
2066
|
};
|
|
2067
|
+
size: number;
|
|
2068
|
+
private: boolean;
|
|
2069
|
+
created_at: string;
|
|
2070
2070
|
full_name: string;
|
|
2071
2071
|
language: string | null;
|
|
2072
2072
|
html_url: string;
|
|
@@ -2098,14 +2098,14 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2098
2098
|
html_url: z.ZodString;
|
|
2099
2099
|
}, "strip", z.ZodTypeAny, {
|
|
2100
2100
|
id: number;
|
|
2101
|
+
avatar_url: string;
|
|
2101
2102
|
html_url: string;
|
|
2102
2103
|
login: string;
|
|
2103
|
-
avatar_url: string;
|
|
2104
2104
|
}, {
|
|
2105
2105
|
id: number;
|
|
2106
|
+
avatar_url: string;
|
|
2106
2107
|
html_url: string;
|
|
2107
2108
|
login: string;
|
|
2108
|
-
avatar_url: string;
|
|
2109
2109
|
}>>;
|
|
2110
2110
|
html_url: z.ZodOptional<z.ZodString>;
|
|
2111
2111
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2126,17 +2126,17 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2126
2126
|
success: boolean;
|
|
2127
2127
|
error: string;
|
|
2128
2128
|
description?: string | null | undefined;
|
|
2129
|
-
name?: string | undefined;
|
|
2130
2129
|
id?: number | undefined;
|
|
2131
|
-
|
|
2132
|
-
private?: boolean | undefined;
|
|
2133
|
-
created_at?: string | undefined;
|
|
2130
|
+
name?: string | undefined;
|
|
2134
2131
|
owner?: {
|
|
2135
2132
|
id: number;
|
|
2133
|
+
avatar_url: string;
|
|
2136
2134
|
html_url: string;
|
|
2137
2135
|
login: string;
|
|
2138
|
-
avatar_url: string;
|
|
2139
2136
|
} | undefined;
|
|
2137
|
+
size?: number | undefined;
|
|
2138
|
+
private?: boolean | undefined;
|
|
2139
|
+
created_at?: string | undefined;
|
|
2140
2140
|
full_name?: string | undefined;
|
|
2141
2141
|
language?: string | null | undefined;
|
|
2142
2142
|
html_url?: string | undefined;
|
|
@@ -2155,17 +2155,17 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2155
2155
|
success: boolean;
|
|
2156
2156
|
error: string;
|
|
2157
2157
|
description?: string | null | undefined;
|
|
2158
|
-
name?: string | undefined;
|
|
2159
2158
|
id?: number | undefined;
|
|
2160
|
-
|
|
2161
|
-
private?: boolean | undefined;
|
|
2162
|
-
created_at?: string | undefined;
|
|
2159
|
+
name?: string | undefined;
|
|
2163
2160
|
owner?: {
|
|
2164
2161
|
id: number;
|
|
2162
|
+
avatar_url: string;
|
|
2165
2163
|
html_url: string;
|
|
2166
2164
|
login: string;
|
|
2167
|
-
avatar_url: string;
|
|
2168
2165
|
} | undefined;
|
|
2166
|
+
size?: number | undefined;
|
|
2167
|
+
private?: boolean | undefined;
|
|
2168
|
+
created_at?: string | undefined;
|
|
2169
2169
|
full_name?: string | undefined;
|
|
2170
2170
|
language?: string | null | undefined;
|
|
2171
2171
|
html_url?: string | undefined;
|
|
@@ -2204,12 +2204,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2204
2204
|
operation: "create_issue_comment";
|
|
2205
2205
|
success: boolean;
|
|
2206
2206
|
error: string;
|
|
2207
|
-
body?: string | undefined;
|
|
2208
2207
|
id?: number | undefined;
|
|
2209
2208
|
user?: {
|
|
2210
2209
|
id: number;
|
|
2211
2210
|
login: string;
|
|
2212
2211
|
} | undefined;
|
|
2212
|
+
body?: string | undefined;
|
|
2213
2213
|
created_at?: string | undefined;
|
|
2214
2214
|
html_url?: string | undefined;
|
|
2215
2215
|
node_id?: string | undefined;
|
|
@@ -2218,12 +2218,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2218
2218
|
operation: "create_issue_comment";
|
|
2219
2219
|
success: boolean;
|
|
2220
2220
|
error: string;
|
|
2221
|
-
body?: string | undefined;
|
|
2222
2221
|
id?: number | undefined;
|
|
2223
2222
|
user?: {
|
|
2224
2223
|
id: number;
|
|
2225
2224
|
login: string;
|
|
2226
2225
|
} | undefined;
|
|
2226
|
+
body?: string | undefined;
|
|
2227
2227
|
created_at?: string | undefined;
|
|
2228
2228
|
html_url?: string | undefined;
|
|
2229
2229
|
node_id?: string | undefined;
|
|
@@ -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
|
-
name: string;
|
|
2260
2259
|
id: number;
|
|
2260
|
+
name: string;
|
|
2261
2261
|
color: string;
|
|
2262
2262
|
}, {
|
|
2263
2263
|
description: string | null;
|
|
2264
|
-
name: string;
|
|
2265
2264
|
id: number;
|
|
2265
|
+
name: string;
|
|
2266
2266
|
color: string;
|
|
2267
2267
|
}>, "many">;
|
|
2268
2268
|
created_at: z.ZodString;
|
|
@@ -2273,21 +2273,21 @@ 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
|
-
body: string | null;
|
|
2278
2276
|
id: number;
|
|
2279
2277
|
user: {
|
|
2280
2278
|
id: number;
|
|
2281
2279
|
login: string;
|
|
2282
2280
|
};
|
|
2281
|
+
comments: number;
|
|
2282
|
+
body: string | null;
|
|
2283
2283
|
created_at: string;
|
|
2284
2284
|
labels: {
|
|
2285
2285
|
description: string | null;
|
|
2286
|
-
name: string;
|
|
2287
2286
|
id: number;
|
|
2287
|
+
name: string;
|
|
2288
2288
|
color: string;
|
|
2289
2289
|
}[];
|
|
2290
|
-
|
|
2290
|
+
state: "open" | "closed";
|
|
2291
2291
|
html_url: string;
|
|
2292
2292
|
node_id: string;
|
|
2293
2293
|
updated_at: string;
|
|
@@ -2295,21 +2295,21 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2295
2295
|
}, {
|
|
2296
2296
|
number: number;
|
|
2297
2297
|
title: string;
|
|
2298
|
-
state: "open" | "closed";
|
|
2299
|
-
body: string | null;
|
|
2300
2298
|
id: number;
|
|
2301
2299
|
user: {
|
|
2302
2300
|
id: number;
|
|
2303
2301
|
login: string;
|
|
2304
2302
|
};
|
|
2303
|
+
comments: number;
|
|
2304
|
+
body: string | null;
|
|
2305
2305
|
created_at: string;
|
|
2306
2306
|
labels: {
|
|
2307
2307
|
description: string | null;
|
|
2308
|
-
name: string;
|
|
2309
2308
|
id: number;
|
|
2309
|
+
name: string;
|
|
2310
2310
|
color: string;
|
|
2311
2311
|
}[];
|
|
2312
|
-
|
|
2312
|
+
state: "open" | "closed";
|
|
2313
2313
|
html_url: string;
|
|
2314
2314
|
node_id: string;
|
|
2315
2315
|
updated_at: string;
|
|
@@ -2322,21 +2322,21 @@ 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
|
-
body: string | null;
|
|
2327
2325
|
id: number;
|
|
2328
2326
|
user: {
|
|
2329
2327
|
id: number;
|
|
2330
2328
|
login: string;
|
|
2331
2329
|
};
|
|
2330
|
+
comments: number;
|
|
2331
|
+
body: string | null;
|
|
2332
2332
|
created_at: string;
|
|
2333
2333
|
labels: {
|
|
2334
2334
|
description: string | null;
|
|
2335
|
-
name: string;
|
|
2336
2335
|
id: number;
|
|
2336
|
+
name: string;
|
|
2337
2337
|
color: string;
|
|
2338
2338
|
}[];
|
|
2339
|
-
|
|
2339
|
+
state: "open" | "closed";
|
|
2340
2340
|
html_url: string;
|
|
2341
2341
|
node_id: string;
|
|
2342
2342
|
updated_at: string;
|
|
@@ -2349,21 +2349,21 @@ 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
|
-
body: string | null;
|
|
2354
2352
|
id: number;
|
|
2355
2353
|
user: {
|
|
2356
2354
|
id: number;
|
|
2357
2355
|
login: string;
|
|
2358
2356
|
};
|
|
2357
|
+
comments: number;
|
|
2358
|
+
body: string | null;
|
|
2359
2359
|
created_at: string;
|
|
2360
2360
|
labels: {
|
|
2361
2361
|
description: string | null;
|
|
2362
|
-
name: string;
|
|
2363
2362
|
id: number;
|
|
2363
|
+
name: string;
|
|
2364
2364
|
color: string;
|
|
2365
2365
|
}[];
|
|
2366
|
-
|
|
2366
|
+
state: "open" | "closed";
|
|
2367
2367
|
html_url: string;
|
|
2368
2368
|
node_id: string;
|
|
2369
2369
|
updated_at: string;
|