@bubblelab/bubble-core 0.1.69 → 0.1.71
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 +78 -78
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +78 -78
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +92 -92
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +42 -42
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +346 -346
- package/dist/bubbles/service-bubble/followupboss.d.ts +320 -320
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +58 -58
- package/dist/bubbles/service-bubble/github.d.ts +36 -36
- package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
- package/dist/bubbles/service-bubble/google-drive.d.ts +63 -2
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +74 -4
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +74 -74
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +9 -9
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +62 -62
- package/dist/bubbles/service-bubble/notion/notion.d.ts +20 -20
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +114 -114
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +11 -11
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +78 -78
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +305 -305
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +32 -32
- package/dist/bubbles.json +69 -4
- package/package.json +2 -2
|
@@ -58,8 +58,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
58
58
|
operation: "list_pull_requests";
|
|
59
59
|
sort: "created" | "updated" | "popularity" | "long-running";
|
|
60
60
|
owner: string;
|
|
61
|
-
page: number;
|
|
62
61
|
state: "all" | "open" | "closed";
|
|
62
|
+
page: number;
|
|
63
63
|
repo: string;
|
|
64
64
|
direction: "asc" | "desc";
|
|
65
65
|
per_page: number;
|
|
@@ -70,8 +70,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
70
70
|
repo: string;
|
|
71
71
|
sort?: "created" | "updated" | "popularity" | "long-running" | undefined;
|
|
72
72
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
73
|
-
page?: number | undefined;
|
|
74
73
|
state?: "all" | "open" | "closed" | undefined;
|
|
74
|
+
page?: number | undefined;
|
|
75
75
|
direction?: "asc" | "desc" | undefined;
|
|
76
76
|
per_page?: number | undefined;
|
|
77
77
|
}>, z.ZodObject<{
|
|
@@ -125,7 +125,7 @@ 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: "
|
|
128
|
+
visibility: "all" | "public" | "private";
|
|
129
129
|
direction: "asc" | "desc";
|
|
130
130
|
per_page: number;
|
|
131
131
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -134,7 +134,7 @@ 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?: "
|
|
137
|
+
visibility?: "all" | "public" | "private" | undefined;
|
|
138
138
|
direction?: "asc" | "desc" | undefined;
|
|
139
139
|
per_page?: number | undefined;
|
|
140
140
|
}>, z.ZodObject<{
|
|
@@ -188,8 +188,8 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
188
188
|
operation: "list_issues";
|
|
189
189
|
sort: "created" | "updated" | "comments";
|
|
190
190
|
owner: string;
|
|
191
|
-
page: number;
|
|
192
191
|
state: "all" | "open" | "closed";
|
|
192
|
+
page: number;
|
|
193
193
|
repo: string;
|
|
194
194
|
direction: "asc" | "desc";
|
|
195
195
|
per_page: number;
|
|
@@ -201,9 +201,9 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
201
201
|
repo: string;
|
|
202
202
|
sort?: "created" | "updated" | "comments" | undefined;
|
|
203
203
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
204
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
204
205
|
labels?: string | undefined;
|
|
205
206
|
page?: number | undefined;
|
|
206
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
207
207
|
direction?: "asc" | "desc" | undefined;
|
|
208
208
|
per_page?: number | undefined;
|
|
209
209
|
}>]>;
|
|
@@ -233,11 +233,11 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
233
233
|
content?: string | undefined;
|
|
234
234
|
url?: string | undefined;
|
|
235
235
|
size?: number | undefined;
|
|
236
|
+
encoding?: string | undefined;
|
|
236
237
|
sha?: string | undefined;
|
|
237
238
|
html_url?: string | undefined;
|
|
238
239
|
git_url?: string | undefined;
|
|
239
240
|
download_url?: string | null | undefined;
|
|
240
|
-
encoding?: string | undefined;
|
|
241
241
|
}, {
|
|
242
242
|
operation: "get_file";
|
|
243
243
|
success: boolean;
|
|
@@ -248,11 +248,11 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
248
248
|
content?: string | undefined;
|
|
249
249
|
url?: string | undefined;
|
|
250
250
|
size?: number | undefined;
|
|
251
|
+
encoding?: string | undefined;
|
|
251
252
|
sha?: string | undefined;
|
|
252
253
|
html_url?: string | undefined;
|
|
253
254
|
git_url?: string | undefined;
|
|
254
255
|
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;
|
|
@@ -397,9 +397,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
397
397
|
};
|
|
398
398
|
id: number;
|
|
399
399
|
body: string | null;
|
|
400
|
+
state: "open" | "closed";
|
|
400
401
|
created_at: string;
|
|
401
402
|
draft: boolean;
|
|
402
|
-
state: "open" | "closed";
|
|
403
403
|
html_url: string;
|
|
404
404
|
node_id: string;
|
|
405
405
|
updated_at: string;
|
|
@@ -432,9 +432,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
432
432
|
};
|
|
433
433
|
id: number;
|
|
434
434
|
body: string | null;
|
|
435
|
+
state: "open" | "closed";
|
|
435
436
|
created_at: string;
|
|
436
437
|
draft: boolean;
|
|
437
|
-
state: "open" | "closed";
|
|
438
438
|
html_url: string;
|
|
439
439
|
node_id: string;
|
|
440
440
|
updated_at: string;
|
|
@@ -472,9 +472,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
472
472
|
};
|
|
473
473
|
id: number;
|
|
474
474
|
body: string | null;
|
|
475
|
+
state: "open" | "closed";
|
|
475
476
|
created_at: string;
|
|
476
477
|
draft: boolean;
|
|
477
|
-
state: "open" | "closed";
|
|
478
478
|
html_url: string;
|
|
479
479
|
node_id: string;
|
|
480
480
|
updated_at: string;
|
|
@@ -512,9 +512,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
512
512
|
};
|
|
513
513
|
id: number;
|
|
514
514
|
body: string | null;
|
|
515
|
+
state: "open" | "closed";
|
|
515
516
|
created_at: string;
|
|
516
517
|
draft: boolean;
|
|
517
|
-
state: "open" | "closed";
|
|
518
518
|
html_url: string;
|
|
519
519
|
node_id: string;
|
|
520
520
|
updated_at: string;
|
|
@@ -610,10 +610,10 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
610
610
|
} | undefined;
|
|
611
611
|
id?: number | undefined;
|
|
612
612
|
body?: string | null | undefined;
|
|
613
|
+
state?: "open" | "closed" | undefined;
|
|
613
614
|
created_at?: string | undefined;
|
|
614
615
|
draft?: boolean | undefined;
|
|
615
616
|
comments?: number | undefined;
|
|
616
|
-
state?: "open" | "closed" | undefined;
|
|
617
617
|
html_url?: string | undefined;
|
|
618
618
|
node_id?: string | undefined;
|
|
619
619
|
updated_at?: string | undefined;
|
|
@@ -648,10 +648,10 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
648
648
|
} | undefined;
|
|
649
649
|
id?: number | undefined;
|
|
650
650
|
body?: string | null | undefined;
|
|
651
|
+
state?: "open" | "closed" | undefined;
|
|
651
652
|
created_at?: string | undefined;
|
|
652
653
|
draft?: boolean | undefined;
|
|
653
654
|
comments?: number | undefined;
|
|
654
|
-
state?: "open" | "closed" | undefined;
|
|
655
655
|
html_url?: string | undefined;
|
|
656
656
|
node_id?: string | undefined;
|
|
657
657
|
updated_at?: string | undefined;
|
|
@@ -1075,6 +1075,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1075
1075
|
};
|
|
1076
1076
|
id: number;
|
|
1077
1077
|
body: string | null;
|
|
1078
|
+
state: "open" | "closed";
|
|
1078
1079
|
created_at: string;
|
|
1079
1080
|
labels: {
|
|
1080
1081
|
description: string | null;
|
|
@@ -1083,7 +1084,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1083
1084
|
color: string;
|
|
1084
1085
|
}[];
|
|
1085
1086
|
comments: number;
|
|
1086
|
-
state: "open" | "closed";
|
|
1087
1087
|
html_url: string;
|
|
1088
1088
|
node_id: string;
|
|
1089
1089
|
updated_at: string;
|
|
@@ -1097,6 +1097,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1097
1097
|
};
|
|
1098
1098
|
id: number;
|
|
1099
1099
|
body: string | null;
|
|
1100
|
+
state: "open" | "closed";
|
|
1100
1101
|
created_at: string;
|
|
1101
1102
|
labels: {
|
|
1102
1103
|
description: string | null;
|
|
@@ -1105,7 +1106,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1105
1106
|
color: string;
|
|
1106
1107
|
}[];
|
|
1107
1108
|
comments: number;
|
|
1108
|
-
state: "open" | "closed";
|
|
1109
1109
|
html_url: string;
|
|
1110
1110
|
node_id: string;
|
|
1111
1111
|
updated_at: string;
|
|
@@ -1124,6 +1124,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1124
1124
|
};
|
|
1125
1125
|
id: number;
|
|
1126
1126
|
body: string | null;
|
|
1127
|
+
state: "open" | "closed";
|
|
1127
1128
|
created_at: string;
|
|
1128
1129
|
labels: {
|
|
1129
1130
|
description: string | null;
|
|
@@ -1132,7 +1133,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1132
1133
|
color: string;
|
|
1133
1134
|
}[];
|
|
1134
1135
|
comments: number;
|
|
1135
|
-
state: "open" | "closed";
|
|
1136
1136
|
html_url: string;
|
|
1137
1137
|
node_id: string;
|
|
1138
1138
|
updated_at: string;
|
|
@@ -1151,6 +1151,7 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1151
1151
|
};
|
|
1152
1152
|
id: number;
|
|
1153
1153
|
body: string | null;
|
|
1154
|
+
state: "open" | "closed";
|
|
1154
1155
|
created_at: string;
|
|
1155
1156
|
labels: {
|
|
1156
1157
|
description: string | null;
|
|
@@ -1159,7 +1160,6 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1159
1160
|
color: string;
|
|
1160
1161
|
}[];
|
|
1161
1162
|
comments: number;
|
|
1162
|
-
state: "open" | "closed";
|
|
1163
1163
|
html_url: string;
|
|
1164
1164
|
node_id: string;
|
|
1165
1165
|
updated_at: string;
|
|
@@ -1262,8 +1262,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1262
1262
|
operation: "list_pull_requests";
|
|
1263
1263
|
sort: "created" | "updated" | "popularity" | "long-running";
|
|
1264
1264
|
owner: string;
|
|
1265
|
-
page: number;
|
|
1266
1265
|
state: "all" | "open" | "closed";
|
|
1266
|
+
page: number;
|
|
1267
1267
|
repo: string;
|
|
1268
1268
|
direction: "asc" | "desc";
|
|
1269
1269
|
per_page: number;
|
|
@@ -1274,8 +1274,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1274
1274
|
repo: string;
|
|
1275
1275
|
sort?: "created" | "updated" | "popularity" | "long-running" | undefined;
|
|
1276
1276
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1277
|
-
page?: number | undefined;
|
|
1278
1277
|
state?: "all" | "open" | "closed" | undefined;
|
|
1278
|
+
page?: number | undefined;
|
|
1279
1279
|
direction?: "asc" | "desc" | undefined;
|
|
1280
1280
|
per_page?: number | undefined;
|
|
1281
1281
|
}>, z.ZodObject<{
|
|
@@ -1329,7 +1329,7 @@ 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: "
|
|
1332
|
+
visibility: "all" | "public" | "private";
|
|
1333
1333
|
direction: "asc" | "desc";
|
|
1334
1334
|
per_page: number;
|
|
1335
1335
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1338,7 +1338,7 @@ 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?: "
|
|
1341
|
+
visibility?: "all" | "public" | "private" | undefined;
|
|
1342
1342
|
direction?: "asc" | "desc" | undefined;
|
|
1343
1343
|
per_page?: number | undefined;
|
|
1344
1344
|
}>, z.ZodObject<{
|
|
@@ -1392,8 +1392,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1392
1392
|
operation: "list_issues";
|
|
1393
1393
|
sort: "created" | "updated" | "comments";
|
|
1394
1394
|
owner: string;
|
|
1395
|
-
page: number;
|
|
1396
1395
|
state: "all" | "open" | "closed";
|
|
1396
|
+
page: number;
|
|
1397
1397
|
repo: string;
|
|
1398
1398
|
direction: "asc" | "desc";
|
|
1399
1399
|
per_page: number;
|
|
@@ -1405,9 +1405,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1405
1405
|
repo: string;
|
|
1406
1406
|
sort?: "created" | "updated" | "comments" | undefined;
|
|
1407
1407
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1408
|
+
state?: "all" | "open" | "closed" | undefined;
|
|
1408
1409
|
labels?: string | undefined;
|
|
1409
1410
|
page?: number | undefined;
|
|
1410
|
-
state?: "all" | "open" | "closed" | undefined;
|
|
1411
1411
|
direction?: "asc" | "desc" | undefined;
|
|
1412
1412
|
per_page?: number | undefined;
|
|
1413
1413
|
}>]>;
|
|
@@ -1437,11 +1437,11 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1437
1437
|
content?: string | undefined;
|
|
1438
1438
|
url?: string | undefined;
|
|
1439
1439
|
size?: number | undefined;
|
|
1440
|
+
encoding?: string | undefined;
|
|
1440
1441
|
sha?: string | undefined;
|
|
1441
1442
|
html_url?: string | undefined;
|
|
1442
1443
|
git_url?: string | undefined;
|
|
1443
1444
|
download_url?: string | null | undefined;
|
|
1444
|
-
encoding?: string | undefined;
|
|
1445
1445
|
}, {
|
|
1446
1446
|
operation: "get_file";
|
|
1447
1447
|
success: boolean;
|
|
@@ -1452,11 +1452,11 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1452
1452
|
content?: string | undefined;
|
|
1453
1453
|
url?: string | undefined;
|
|
1454
1454
|
size?: number | undefined;
|
|
1455
|
+
encoding?: string | undefined;
|
|
1455
1456
|
sha?: string | undefined;
|
|
1456
1457
|
html_url?: string | undefined;
|
|
1457
1458
|
git_url?: string | undefined;
|
|
1458
1459
|
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;
|
|
@@ -1601,9 +1601,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1601
1601
|
};
|
|
1602
1602
|
id: number;
|
|
1603
1603
|
body: string | null;
|
|
1604
|
+
state: "open" | "closed";
|
|
1604
1605
|
created_at: string;
|
|
1605
1606
|
draft: boolean;
|
|
1606
|
-
state: "open" | "closed";
|
|
1607
1607
|
html_url: string;
|
|
1608
1608
|
node_id: string;
|
|
1609
1609
|
updated_at: string;
|
|
@@ -1636,9 +1636,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1636
1636
|
};
|
|
1637
1637
|
id: number;
|
|
1638
1638
|
body: string | null;
|
|
1639
|
+
state: "open" | "closed";
|
|
1639
1640
|
created_at: string;
|
|
1640
1641
|
draft: boolean;
|
|
1641
|
-
state: "open" | "closed";
|
|
1642
1642
|
html_url: string;
|
|
1643
1643
|
node_id: string;
|
|
1644
1644
|
updated_at: string;
|
|
@@ -1676,9 +1676,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1676
1676
|
};
|
|
1677
1677
|
id: number;
|
|
1678
1678
|
body: string | null;
|
|
1679
|
+
state: "open" | "closed";
|
|
1679
1680
|
created_at: string;
|
|
1680
1681
|
draft: boolean;
|
|
1681
|
-
state: "open" | "closed";
|
|
1682
1682
|
html_url: string;
|
|
1683
1683
|
node_id: string;
|
|
1684
1684
|
updated_at: string;
|
|
@@ -1716,9 +1716,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1716
1716
|
};
|
|
1717
1717
|
id: number;
|
|
1718
1718
|
body: string | null;
|
|
1719
|
+
state: "open" | "closed";
|
|
1719
1720
|
created_at: string;
|
|
1720
1721
|
draft: boolean;
|
|
1721
|
-
state: "open" | "closed";
|
|
1722
1722
|
html_url: string;
|
|
1723
1723
|
node_id: string;
|
|
1724
1724
|
updated_at: string;
|
|
@@ -1814,10 +1814,10 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1814
1814
|
} | undefined;
|
|
1815
1815
|
id?: number | undefined;
|
|
1816
1816
|
body?: string | null | undefined;
|
|
1817
|
+
state?: "open" | "closed" | undefined;
|
|
1817
1818
|
created_at?: string | undefined;
|
|
1818
1819
|
draft?: boolean | undefined;
|
|
1819
1820
|
comments?: number | undefined;
|
|
1820
|
-
state?: "open" | "closed" | undefined;
|
|
1821
1821
|
html_url?: string | undefined;
|
|
1822
1822
|
node_id?: string | undefined;
|
|
1823
1823
|
updated_at?: string | undefined;
|
|
@@ -1852,10 +1852,10 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1852
1852
|
} | undefined;
|
|
1853
1853
|
id?: number | undefined;
|
|
1854
1854
|
body?: string | null | undefined;
|
|
1855
|
+
state?: "open" | "closed" | undefined;
|
|
1855
1856
|
created_at?: string | undefined;
|
|
1856
1857
|
draft?: boolean | undefined;
|
|
1857
1858
|
comments?: number | undefined;
|
|
1858
|
-
state?: "open" | "closed" | undefined;
|
|
1859
1859
|
html_url?: string | undefined;
|
|
1860
1860
|
node_id?: string | undefined;
|
|
1861
1861
|
updated_at?: string | undefined;
|
|
@@ -2279,6 +2279,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2279
2279
|
};
|
|
2280
2280
|
id: number;
|
|
2281
2281
|
body: string | null;
|
|
2282
|
+
state: "open" | "closed";
|
|
2282
2283
|
created_at: string;
|
|
2283
2284
|
labels: {
|
|
2284
2285
|
description: string | null;
|
|
@@ -2287,7 +2288,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2287
2288
|
color: string;
|
|
2288
2289
|
}[];
|
|
2289
2290
|
comments: number;
|
|
2290
|
-
state: "open" | "closed";
|
|
2291
2291
|
html_url: string;
|
|
2292
2292
|
node_id: string;
|
|
2293
2293
|
updated_at: string;
|
|
@@ -2301,6 +2301,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2301
2301
|
};
|
|
2302
2302
|
id: number;
|
|
2303
2303
|
body: string | null;
|
|
2304
|
+
state: "open" | "closed";
|
|
2304
2305
|
created_at: string;
|
|
2305
2306
|
labels: {
|
|
2306
2307
|
description: string | null;
|
|
@@ -2309,7 +2310,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2309
2310
|
color: string;
|
|
2310
2311
|
}[];
|
|
2311
2312
|
comments: number;
|
|
2312
|
-
state: "open" | "closed";
|
|
2313
2313
|
html_url: string;
|
|
2314
2314
|
node_id: string;
|
|
2315
2315
|
updated_at: string;
|
|
@@ -2328,6 +2328,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2328
2328
|
};
|
|
2329
2329
|
id: number;
|
|
2330
2330
|
body: string | null;
|
|
2331
|
+
state: "open" | "closed";
|
|
2331
2332
|
created_at: string;
|
|
2332
2333
|
labels: {
|
|
2333
2334
|
description: string | null;
|
|
@@ -2336,7 +2337,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2336
2337
|
color: string;
|
|
2337
2338
|
}[];
|
|
2338
2339
|
comments: number;
|
|
2339
|
-
state: "open" | "closed";
|
|
2340
2340
|
html_url: string;
|
|
2341
2341
|
node_id: string;
|
|
2342
2342
|
updated_at: string;
|
|
@@ -2355,6 +2355,7 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2355
2355
|
};
|
|
2356
2356
|
id: number;
|
|
2357
2357
|
body: string | null;
|
|
2358
|
+
state: "open" | "closed";
|
|
2358
2359
|
created_at: string;
|
|
2359
2360
|
labels: {
|
|
2360
2361
|
description: string | null;
|
|
@@ -2363,7 +2364,6 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2363
2364
|
color: string;
|
|
2364
2365
|
}[];
|
|
2365
2366
|
comments: number;
|
|
2366
|
-
state: "open" | "closed";
|
|
2367
2367
|
html_url: string;
|
|
2368
2368
|
node_id: string;
|
|
2369
2369
|
updated_at: string;
|