@bubblelab/bubble-core 0.1.51 → 0.1.53
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 +50 -50
- package/dist/bubbles/service-bubble/agi-inc.d.ts +8 -8
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +124 -124
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +48 -48
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +36 -36
- package/dist/bubbles/service-bubble/github.d.ts +56 -56
- package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
- package/dist/bubbles/service-bubble/google-drive.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.d.ts +28 -28
- package/dist/bubbles/service-bubble/notion/notion.d.ts +392 -392
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +28 -28
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +221 -32
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +61 -0
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +233 -40
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +50 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +140 -140
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +272 -2
- package/package.json +2 -2
|
@@ -227,9 +227,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
227
227
|
operation: "get_file";
|
|
228
228
|
success: boolean;
|
|
229
229
|
error: string;
|
|
230
|
+
name?: string | undefined;
|
|
230
231
|
path?: string | undefined;
|
|
231
232
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
232
|
-
name?: string | undefined;
|
|
233
233
|
url?: string | undefined;
|
|
234
234
|
content?: string | undefined;
|
|
235
235
|
size?: number | undefined;
|
|
@@ -242,9 +242,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
242
242
|
operation: "get_file";
|
|
243
243
|
success: boolean;
|
|
244
244
|
error: string;
|
|
245
|
+
name?: string | undefined;
|
|
245
246
|
path?: string | undefined;
|
|
246
247
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
247
|
-
name?: string | undefined;
|
|
248
248
|
url?: string | undefined;
|
|
249
249
|
content?: string | undefined;
|
|
250
250
|
size?: number | undefined;
|
|
@@ -270,9 +270,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
270
270
|
content: z.ZodOptional<z.ZodString>;
|
|
271
271
|
encoding: z.ZodOptional<z.ZodString>;
|
|
272
272
|
}, "strip", z.ZodTypeAny, {
|
|
273
|
+
name: string;
|
|
273
274
|
path: string;
|
|
274
275
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
275
|
-
name: string;
|
|
276
276
|
url: string;
|
|
277
277
|
size: number;
|
|
278
278
|
sha: string;
|
|
@@ -282,9 +282,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
282
282
|
content?: string | undefined;
|
|
283
283
|
encoding?: string | undefined;
|
|
284
284
|
}, {
|
|
285
|
+
name: string;
|
|
285
286
|
path: string;
|
|
286
287
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
287
|
-
name: string;
|
|
288
288
|
url: string;
|
|
289
289
|
size: number;
|
|
290
290
|
sha: string;
|
|
@@ -299,9 +299,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
299
299
|
success: boolean;
|
|
300
300
|
error: string;
|
|
301
301
|
contents?: {
|
|
302
|
+
name: string;
|
|
302
303
|
path: string;
|
|
303
304
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
304
|
-
name: string;
|
|
305
305
|
url: string;
|
|
306
306
|
size: number;
|
|
307
307
|
sha: string;
|
|
@@ -316,9 +316,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
316
316
|
success: boolean;
|
|
317
317
|
error: string;
|
|
318
318
|
contents?: {
|
|
319
|
+
name: string;
|
|
319
320
|
path: string;
|
|
320
321
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
321
|
-
name: string;
|
|
322
322
|
url: string;
|
|
323
323
|
size: number;
|
|
324
324
|
sha: string;
|
|
@@ -389,8 +389,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
389
389
|
changed_files: z.ZodOptional<z.ZodNumber>;
|
|
390
390
|
}, "strip", z.ZodTypeAny, {
|
|
391
391
|
number: number;
|
|
392
|
-
title: string;
|
|
393
392
|
id: number;
|
|
393
|
+
title: string;
|
|
394
394
|
draft: boolean;
|
|
395
395
|
user: {
|
|
396
396
|
id: number;
|
|
@@ -424,8 +424,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
424
424
|
changed_files?: number | undefined;
|
|
425
425
|
}, {
|
|
426
426
|
number: number;
|
|
427
|
-
title: string;
|
|
428
427
|
id: number;
|
|
428
|
+
title: string;
|
|
429
429
|
draft: boolean;
|
|
430
430
|
user: {
|
|
431
431
|
id: number;
|
|
@@ -464,8 +464,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
464
464
|
error: string;
|
|
465
465
|
pull_requests?: {
|
|
466
466
|
number: number;
|
|
467
|
-
title: string;
|
|
468
467
|
id: number;
|
|
468
|
+
title: string;
|
|
469
469
|
draft: boolean;
|
|
470
470
|
user: {
|
|
471
471
|
id: number;
|
|
@@ -504,8 +504,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
504
504
|
error: string;
|
|
505
505
|
pull_requests?: {
|
|
506
506
|
number: number;
|
|
507
|
-
title: string;
|
|
508
507
|
id: number;
|
|
508
|
+
title: string;
|
|
509
509
|
draft: boolean;
|
|
510
510
|
user: {
|
|
511
511
|
id: number;
|
|
@@ -602,8 +602,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
602
602
|
success: boolean;
|
|
603
603
|
error: string;
|
|
604
604
|
number?: number | undefined;
|
|
605
|
-
title?: string | undefined;
|
|
606
605
|
id?: number | undefined;
|
|
606
|
+
title?: string | undefined;
|
|
607
607
|
draft?: boolean | undefined;
|
|
608
608
|
user?: {
|
|
609
609
|
id: number;
|
|
@@ -640,8 +640,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
640
640
|
success: boolean;
|
|
641
641
|
error: string;
|
|
642
642
|
number?: number | undefined;
|
|
643
|
-
title?: string | undefined;
|
|
644
643
|
id?: number | undefined;
|
|
644
|
+
title?: string | undefined;
|
|
645
645
|
draft?: boolean | undefined;
|
|
646
646
|
user?: {
|
|
647
647
|
id: number;
|
|
@@ -763,9 +763,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
763
763
|
default_branch: z.ZodString;
|
|
764
764
|
visibility: z.ZodOptional<z.ZodString>;
|
|
765
765
|
}, "strip", z.ZodTypeAny, {
|
|
766
|
-
description: string | null;
|
|
767
766
|
id: number;
|
|
768
767
|
name: string;
|
|
768
|
+
description: string | null;
|
|
769
769
|
size: number;
|
|
770
770
|
private: boolean;
|
|
771
771
|
created_at: string;
|
|
@@ -789,9 +789,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
789
789
|
default_branch: string;
|
|
790
790
|
visibility?: string | undefined;
|
|
791
791
|
}, {
|
|
792
|
-
description: string | null;
|
|
793
792
|
id: number;
|
|
794
793
|
name: string;
|
|
794
|
+
description: string | null;
|
|
795
795
|
size: number;
|
|
796
796
|
private: boolean;
|
|
797
797
|
created_at: string;
|
|
@@ -820,9 +820,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
820
820
|
success: boolean;
|
|
821
821
|
error: string;
|
|
822
822
|
repositories?: {
|
|
823
|
-
description: string | null;
|
|
824
823
|
id: number;
|
|
825
824
|
name: string;
|
|
825
|
+
description: string | null;
|
|
826
826
|
size: number;
|
|
827
827
|
private: boolean;
|
|
828
828
|
created_at: string;
|
|
@@ -851,9 +851,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
851
851
|
success: boolean;
|
|
852
852
|
error: string;
|
|
853
853
|
repositories?: {
|
|
854
|
-
description: string | null;
|
|
855
854
|
id: number;
|
|
856
855
|
name: string;
|
|
856
|
+
description: string | null;
|
|
857
857
|
size: number;
|
|
858
858
|
private: boolean;
|
|
859
859
|
created_at: string;
|
|
@@ -921,9 +921,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
921
921
|
operation: "get_repository";
|
|
922
922
|
success: boolean;
|
|
923
923
|
error: string;
|
|
924
|
-
description?: string | null | undefined;
|
|
925
924
|
id?: number | undefined;
|
|
926
925
|
name?: string | undefined;
|
|
926
|
+
description?: string | null | undefined;
|
|
927
927
|
size?: number | undefined;
|
|
928
928
|
private?: boolean | undefined;
|
|
929
929
|
created_at?: string | undefined;
|
|
@@ -950,9 +950,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
950
950
|
operation: "get_repository";
|
|
951
951
|
success: boolean;
|
|
952
952
|
error: string;
|
|
953
|
-
description?: string | null | undefined;
|
|
954
953
|
id?: number | undefined;
|
|
955
954
|
name?: string | undefined;
|
|
955
|
+
description?: string | null | undefined;
|
|
956
956
|
size?: number | undefined;
|
|
957
957
|
private?: boolean | undefined;
|
|
958
958
|
created_at?: string | undefined;
|
|
@@ -1051,14 +1051,14 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1051
1051
|
color: z.ZodString;
|
|
1052
1052
|
description: z.ZodNullable<z.ZodString>;
|
|
1053
1053
|
}, "strip", z.ZodTypeAny, {
|
|
1054
|
-
description: string | null;
|
|
1055
1054
|
id: number;
|
|
1056
1055
|
name: string;
|
|
1056
|
+
description: string | null;
|
|
1057
1057
|
color: string;
|
|
1058
1058
|
}, {
|
|
1059
|
-
description: string | null;
|
|
1060
1059
|
id: number;
|
|
1061
1060
|
name: string;
|
|
1061
|
+
description: string | null;
|
|
1062
1062
|
color: string;
|
|
1063
1063
|
}>, "many">;
|
|
1064
1064
|
created_at: z.ZodString;
|
|
@@ -1068,8 +1068,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1068
1068
|
comments: z.ZodNumber;
|
|
1069
1069
|
}, "strip", z.ZodTypeAny, {
|
|
1070
1070
|
number: number;
|
|
1071
|
-
title: string;
|
|
1072
1071
|
id: number;
|
|
1072
|
+
title: string;
|
|
1073
1073
|
user: {
|
|
1074
1074
|
id: number;
|
|
1075
1075
|
login: string;
|
|
@@ -1077,9 +1077,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1077
1077
|
body: string | null;
|
|
1078
1078
|
created_at: string;
|
|
1079
1079
|
labels: {
|
|
1080
|
-
description: string | null;
|
|
1081
1080
|
id: number;
|
|
1082
1081
|
name: string;
|
|
1082
|
+
description: string | null;
|
|
1083
1083
|
color: string;
|
|
1084
1084
|
}[];
|
|
1085
1085
|
comments: number;
|
|
@@ -1090,8 +1090,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1090
1090
|
closed_at: string | null;
|
|
1091
1091
|
}, {
|
|
1092
1092
|
number: number;
|
|
1093
|
-
title: string;
|
|
1094
1093
|
id: number;
|
|
1094
|
+
title: string;
|
|
1095
1095
|
user: {
|
|
1096
1096
|
id: number;
|
|
1097
1097
|
login: string;
|
|
@@ -1099,9 +1099,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1099
1099
|
body: string | null;
|
|
1100
1100
|
created_at: string;
|
|
1101
1101
|
labels: {
|
|
1102
|
-
description: string | null;
|
|
1103
1102
|
id: number;
|
|
1104
1103
|
name: string;
|
|
1104
|
+
description: string | null;
|
|
1105
1105
|
color: string;
|
|
1106
1106
|
}[];
|
|
1107
1107
|
comments: number;
|
|
@@ -1117,8 +1117,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1117
1117
|
error: string;
|
|
1118
1118
|
issues?: {
|
|
1119
1119
|
number: number;
|
|
1120
|
-
title: string;
|
|
1121
1120
|
id: number;
|
|
1121
|
+
title: string;
|
|
1122
1122
|
user: {
|
|
1123
1123
|
id: number;
|
|
1124
1124
|
login: string;
|
|
@@ -1126,9 +1126,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1126
1126
|
body: string | null;
|
|
1127
1127
|
created_at: string;
|
|
1128
1128
|
labels: {
|
|
1129
|
-
description: string | null;
|
|
1130
1129
|
id: number;
|
|
1131
1130
|
name: string;
|
|
1131
|
+
description: string | null;
|
|
1132
1132
|
color: string;
|
|
1133
1133
|
}[];
|
|
1134
1134
|
comments: number;
|
|
@@ -1144,8 +1144,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1144
1144
|
error: string;
|
|
1145
1145
|
issues?: {
|
|
1146
1146
|
number: number;
|
|
1147
|
-
title: string;
|
|
1148
1147
|
id: number;
|
|
1148
|
+
title: string;
|
|
1149
1149
|
user: {
|
|
1150
1150
|
id: number;
|
|
1151
1151
|
login: string;
|
|
@@ -1153,9 +1153,9 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
1153
1153
|
body: string | null;
|
|
1154
1154
|
created_at: string;
|
|
1155
1155
|
labels: {
|
|
1156
|
-
description: string | null;
|
|
1157
1156
|
id: number;
|
|
1158
1157
|
name: string;
|
|
1158
|
+
description: string | null;
|
|
1159
1159
|
color: string;
|
|
1160
1160
|
}[];
|
|
1161
1161
|
comments: number;
|
|
@@ -1431,9 +1431,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1431
1431
|
operation: "get_file";
|
|
1432
1432
|
success: boolean;
|
|
1433
1433
|
error: string;
|
|
1434
|
+
name?: string | undefined;
|
|
1434
1435
|
path?: string | undefined;
|
|
1435
1436
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
1436
|
-
name?: string | undefined;
|
|
1437
1437
|
url?: string | undefined;
|
|
1438
1438
|
content?: string | undefined;
|
|
1439
1439
|
size?: number | undefined;
|
|
@@ -1446,9 +1446,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1446
1446
|
operation: "get_file";
|
|
1447
1447
|
success: boolean;
|
|
1448
1448
|
error: string;
|
|
1449
|
+
name?: string | undefined;
|
|
1449
1450
|
path?: string | undefined;
|
|
1450
1451
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
1451
|
-
name?: string | undefined;
|
|
1452
1452
|
url?: string | undefined;
|
|
1453
1453
|
content?: string | undefined;
|
|
1454
1454
|
size?: number | undefined;
|
|
@@ -1474,9 +1474,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1474
1474
|
content: z.ZodOptional<z.ZodString>;
|
|
1475
1475
|
encoding: z.ZodOptional<z.ZodString>;
|
|
1476
1476
|
}, "strip", z.ZodTypeAny, {
|
|
1477
|
+
name: string;
|
|
1477
1478
|
path: string;
|
|
1478
1479
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1479
|
-
name: string;
|
|
1480
1480
|
url: string;
|
|
1481
1481
|
size: number;
|
|
1482
1482
|
sha: string;
|
|
@@ -1486,9 +1486,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1486
1486
|
content?: string | undefined;
|
|
1487
1487
|
encoding?: string | undefined;
|
|
1488
1488
|
}, {
|
|
1489
|
+
name: string;
|
|
1489
1490
|
path: string;
|
|
1490
1491
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1491
|
-
name: string;
|
|
1492
1492
|
url: string;
|
|
1493
1493
|
size: number;
|
|
1494
1494
|
sha: string;
|
|
@@ -1503,9 +1503,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1503
1503
|
success: boolean;
|
|
1504
1504
|
error: string;
|
|
1505
1505
|
contents?: {
|
|
1506
|
+
name: string;
|
|
1506
1507
|
path: string;
|
|
1507
1508
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1508
|
-
name: string;
|
|
1509
1509
|
url: string;
|
|
1510
1510
|
size: number;
|
|
1511
1511
|
sha: string;
|
|
@@ -1520,9 +1520,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1520
1520
|
success: boolean;
|
|
1521
1521
|
error: string;
|
|
1522
1522
|
contents?: {
|
|
1523
|
+
name: string;
|
|
1523
1524
|
path: string;
|
|
1524
1525
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1525
|
-
name: string;
|
|
1526
1526
|
url: string;
|
|
1527
1527
|
size: number;
|
|
1528
1528
|
sha: string;
|
|
@@ -1593,8 +1593,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1593
1593
|
changed_files: z.ZodOptional<z.ZodNumber>;
|
|
1594
1594
|
}, "strip", z.ZodTypeAny, {
|
|
1595
1595
|
number: number;
|
|
1596
|
-
title: string;
|
|
1597
1596
|
id: number;
|
|
1597
|
+
title: string;
|
|
1598
1598
|
draft: boolean;
|
|
1599
1599
|
user: {
|
|
1600
1600
|
id: number;
|
|
@@ -1628,8 +1628,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1628
1628
|
changed_files?: number | undefined;
|
|
1629
1629
|
}, {
|
|
1630
1630
|
number: number;
|
|
1631
|
-
title: string;
|
|
1632
1631
|
id: number;
|
|
1632
|
+
title: string;
|
|
1633
1633
|
draft: boolean;
|
|
1634
1634
|
user: {
|
|
1635
1635
|
id: number;
|
|
@@ -1668,8 +1668,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1668
1668
|
error: string;
|
|
1669
1669
|
pull_requests?: {
|
|
1670
1670
|
number: number;
|
|
1671
|
-
title: string;
|
|
1672
1671
|
id: number;
|
|
1672
|
+
title: string;
|
|
1673
1673
|
draft: boolean;
|
|
1674
1674
|
user: {
|
|
1675
1675
|
id: number;
|
|
@@ -1708,8 +1708,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1708
1708
|
error: string;
|
|
1709
1709
|
pull_requests?: {
|
|
1710
1710
|
number: number;
|
|
1711
|
-
title: string;
|
|
1712
1711
|
id: number;
|
|
1712
|
+
title: string;
|
|
1713
1713
|
draft: boolean;
|
|
1714
1714
|
user: {
|
|
1715
1715
|
id: number;
|
|
@@ -1806,8 +1806,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1806
1806
|
success: boolean;
|
|
1807
1807
|
error: string;
|
|
1808
1808
|
number?: number | undefined;
|
|
1809
|
-
title?: string | undefined;
|
|
1810
1809
|
id?: number | undefined;
|
|
1810
|
+
title?: string | undefined;
|
|
1811
1811
|
draft?: boolean | undefined;
|
|
1812
1812
|
user?: {
|
|
1813
1813
|
id: number;
|
|
@@ -1844,8 +1844,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1844
1844
|
success: boolean;
|
|
1845
1845
|
error: string;
|
|
1846
1846
|
number?: number | undefined;
|
|
1847
|
-
title?: string | undefined;
|
|
1848
1847
|
id?: number | undefined;
|
|
1848
|
+
title?: string | undefined;
|
|
1849
1849
|
draft?: boolean | undefined;
|
|
1850
1850
|
user?: {
|
|
1851
1851
|
id: number;
|
|
@@ -1967,9 +1967,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1967
1967
|
default_branch: z.ZodString;
|
|
1968
1968
|
visibility: z.ZodOptional<z.ZodString>;
|
|
1969
1969
|
}, "strip", z.ZodTypeAny, {
|
|
1970
|
-
description: string | null;
|
|
1971
1970
|
id: number;
|
|
1972
1971
|
name: string;
|
|
1972
|
+
description: string | null;
|
|
1973
1973
|
size: number;
|
|
1974
1974
|
private: boolean;
|
|
1975
1975
|
created_at: string;
|
|
@@ -1993,9 +1993,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1993
1993
|
default_branch: string;
|
|
1994
1994
|
visibility?: string | undefined;
|
|
1995
1995
|
}, {
|
|
1996
|
-
description: string | null;
|
|
1997
1996
|
id: number;
|
|
1998
1997
|
name: string;
|
|
1998
|
+
description: string | null;
|
|
1999
1999
|
size: number;
|
|
2000
2000
|
private: boolean;
|
|
2001
2001
|
created_at: string;
|
|
@@ -2024,9 +2024,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2024
2024
|
success: boolean;
|
|
2025
2025
|
error: string;
|
|
2026
2026
|
repositories?: {
|
|
2027
|
-
description: string | null;
|
|
2028
2027
|
id: number;
|
|
2029
2028
|
name: string;
|
|
2029
|
+
description: string | null;
|
|
2030
2030
|
size: number;
|
|
2031
2031
|
private: boolean;
|
|
2032
2032
|
created_at: string;
|
|
@@ -2055,9 +2055,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2055
2055
|
success: boolean;
|
|
2056
2056
|
error: string;
|
|
2057
2057
|
repositories?: {
|
|
2058
|
-
description: string | null;
|
|
2059
2058
|
id: number;
|
|
2060
2059
|
name: string;
|
|
2060
|
+
description: string | null;
|
|
2061
2061
|
size: number;
|
|
2062
2062
|
private: boolean;
|
|
2063
2063
|
created_at: string;
|
|
@@ -2125,9 +2125,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2125
2125
|
operation: "get_repository";
|
|
2126
2126
|
success: boolean;
|
|
2127
2127
|
error: string;
|
|
2128
|
-
description?: string | null | undefined;
|
|
2129
2128
|
id?: number | undefined;
|
|
2130
2129
|
name?: string | undefined;
|
|
2130
|
+
description?: string | null | undefined;
|
|
2131
2131
|
size?: number | undefined;
|
|
2132
2132
|
private?: boolean | undefined;
|
|
2133
2133
|
created_at?: string | undefined;
|
|
@@ -2154,9 +2154,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2154
2154
|
operation: "get_repository";
|
|
2155
2155
|
success: boolean;
|
|
2156
2156
|
error: string;
|
|
2157
|
-
description?: string | null | undefined;
|
|
2158
2157
|
id?: number | undefined;
|
|
2159
2158
|
name?: string | undefined;
|
|
2159
|
+
description?: string | null | undefined;
|
|
2160
2160
|
size?: number | undefined;
|
|
2161
2161
|
private?: boolean | undefined;
|
|
2162
2162
|
created_at?: string | undefined;
|
|
@@ -2255,14 +2255,14 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2255
2255
|
color: z.ZodString;
|
|
2256
2256
|
description: z.ZodNullable<z.ZodString>;
|
|
2257
2257
|
}, "strip", z.ZodTypeAny, {
|
|
2258
|
-
description: string | null;
|
|
2259
2258
|
id: number;
|
|
2260
2259
|
name: string;
|
|
2260
|
+
description: string | null;
|
|
2261
2261
|
color: string;
|
|
2262
2262
|
}, {
|
|
2263
|
-
description: string | null;
|
|
2264
2263
|
id: number;
|
|
2265
2264
|
name: string;
|
|
2265
|
+
description: string | null;
|
|
2266
2266
|
color: string;
|
|
2267
2267
|
}>, "many">;
|
|
2268
2268
|
created_at: z.ZodString;
|
|
@@ -2272,8 +2272,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2272
2272
|
comments: z.ZodNumber;
|
|
2273
2273
|
}, "strip", z.ZodTypeAny, {
|
|
2274
2274
|
number: number;
|
|
2275
|
-
title: string;
|
|
2276
2275
|
id: number;
|
|
2276
|
+
title: string;
|
|
2277
2277
|
user: {
|
|
2278
2278
|
id: number;
|
|
2279
2279
|
login: string;
|
|
@@ -2281,9 +2281,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2281
2281
|
body: string | null;
|
|
2282
2282
|
created_at: string;
|
|
2283
2283
|
labels: {
|
|
2284
|
-
description: string | null;
|
|
2285
2284
|
id: number;
|
|
2286
2285
|
name: string;
|
|
2286
|
+
description: string | null;
|
|
2287
2287
|
color: string;
|
|
2288
2288
|
}[];
|
|
2289
2289
|
comments: number;
|
|
@@ -2294,8 +2294,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2294
2294
|
closed_at: string | null;
|
|
2295
2295
|
}, {
|
|
2296
2296
|
number: number;
|
|
2297
|
-
title: string;
|
|
2298
2297
|
id: number;
|
|
2298
|
+
title: string;
|
|
2299
2299
|
user: {
|
|
2300
2300
|
id: number;
|
|
2301
2301
|
login: string;
|
|
@@ -2303,9 +2303,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2303
2303
|
body: string | null;
|
|
2304
2304
|
created_at: string;
|
|
2305
2305
|
labels: {
|
|
2306
|
-
description: string | null;
|
|
2307
2306
|
id: number;
|
|
2308
2307
|
name: string;
|
|
2308
|
+
description: string | null;
|
|
2309
2309
|
color: string;
|
|
2310
2310
|
}[];
|
|
2311
2311
|
comments: number;
|
|
@@ -2321,8 +2321,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2321
2321
|
error: string;
|
|
2322
2322
|
issues?: {
|
|
2323
2323
|
number: number;
|
|
2324
|
-
title: string;
|
|
2325
2324
|
id: number;
|
|
2325
|
+
title: string;
|
|
2326
2326
|
user: {
|
|
2327
2327
|
id: number;
|
|
2328
2328
|
login: string;
|
|
@@ -2330,9 +2330,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2330
2330
|
body: string | null;
|
|
2331
2331
|
created_at: string;
|
|
2332
2332
|
labels: {
|
|
2333
|
-
description: string | null;
|
|
2334
2333
|
id: number;
|
|
2335
2334
|
name: string;
|
|
2335
|
+
description: string | null;
|
|
2336
2336
|
color: string;
|
|
2337
2337
|
}[];
|
|
2338
2338
|
comments: number;
|
|
@@ -2348,8 +2348,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2348
2348
|
error: string;
|
|
2349
2349
|
issues?: {
|
|
2350
2350
|
number: number;
|
|
2351
|
-
title: string;
|
|
2352
2351
|
id: number;
|
|
2352
|
+
title: string;
|
|
2353
2353
|
user: {
|
|
2354
2354
|
id: number;
|
|
2355
2355
|
login: string;
|
|
@@ -2357,9 +2357,9 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2357
2357
|
body: string | null;
|
|
2358
2358
|
created_at: string;
|
|
2359
2359
|
labels: {
|
|
2360
|
-
description: string | null;
|
|
2361
2360
|
id: number;
|
|
2362
2361
|
name: string;
|
|
2362
|
+
description: string | null;
|
|
2363
2363
|
color: string;
|
|
2364
2364
|
}[];
|
|
2365
2365
|
comments: number;
|