@bubblelab/bubble-core 0.1.209 → 0.1.210
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 +55 -55
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +53 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +112 -112
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/capability-pipeline.js +1 -1
- package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
- package/dist/bubbles/service-bubble/firecrawl.d.ts +176 -176
- package/dist/bubbles/service-bubble/github.d.ts +72 -72
- package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
- package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +2 -2
- package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +98 -98
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +15 -15
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -125,18 +125,18 @@ declare const GithubParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
125
125
|
sort: "created" | "updated" | "full_name" | "pushed";
|
|
126
126
|
operation: "list_repositories";
|
|
127
127
|
page: number;
|
|
128
|
+
visibility: "public" | "private" | "all";
|
|
128
129
|
direction: "asc" | "desc";
|
|
129
130
|
per_page: number;
|
|
130
|
-
visibility: "public" | "private" | "all";
|
|
131
131
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
132
132
|
}, {
|
|
133
133
|
operation: "list_repositories";
|
|
134
134
|
sort?: "created" | "updated" | "full_name" | "pushed" | undefined;
|
|
135
135
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
136
136
|
page?: number | undefined;
|
|
137
|
+
visibility?: "public" | "private" | "all" | undefined;
|
|
137
138
|
direction?: "asc" | "desc" | undefined;
|
|
138
139
|
per_page?: number | undefined;
|
|
139
|
-
visibility?: "public" | "private" | "all" | undefined;
|
|
140
140
|
}>, z.ZodObject<{
|
|
141
141
|
operation: z.ZodLiteral<"get_repository">;
|
|
142
142
|
owner: z.ZodString;
|
|
@@ -254,8 +254,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
254
254
|
error: string;
|
|
255
255
|
success: boolean;
|
|
256
256
|
operation: "get_file";
|
|
257
|
-
path?: string | undefined;
|
|
258
257
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
258
|
+
path?: string | undefined;
|
|
259
259
|
name?: string | undefined;
|
|
260
260
|
content?: string | undefined;
|
|
261
261
|
url?: string | undefined;
|
|
@@ -269,8 +269,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
269
269
|
error: string;
|
|
270
270
|
success: boolean;
|
|
271
271
|
operation: "get_file";
|
|
272
|
-
path?: string | undefined;
|
|
273
272
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
273
|
+
path?: string | undefined;
|
|
274
274
|
name?: string | undefined;
|
|
275
275
|
content?: string | undefined;
|
|
276
276
|
url?: string | undefined;
|
|
@@ -297,8 +297,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
297
297
|
content: z.ZodOptional<z.ZodString>;
|
|
298
298
|
encoding: z.ZodOptional<z.ZodString>;
|
|
299
299
|
}, "strip", z.ZodTypeAny, {
|
|
300
|
-
path: string;
|
|
301
300
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
301
|
+
path: string;
|
|
302
302
|
name: string;
|
|
303
303
|
url: string;
|
|
304
304
|
size: number;
|
|
@@ -309,8 +309,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
309
309
|
content?: string | undefined;
|
|
310
310
|
encoding?: string | undefined;
|
|
311
311
|
}, {
|
|
312
|
-
path: string;
|
|
313
312
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
313
|
+
path: string;
|
|
314
314
|
name: string;
|
|
315
315
|
url: string;
|
|
316
316
|
size: number;
|
|
@@ -326,8 +326,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
326
326
|
success: boolean;
|
|
327
327
|
operation: "get_directory";
|
|
328
328
|
contents?: {
|
|
329
|
-
path: string;
|
|
330
329
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
330
|
+
path: string;
|
|
331
331
|
name: string;
|
|
332
332
|
url: string;
|
|
333
333
|
size: number;
|
|
@@ -343,8 +343,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
343
343
|
success: boolean;
|
|
344
344
|
operation: "get_directory";
|
|
345
345
|
contents?: {
|
|
346
|
-
path: string;
|
|
347
346
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
347
|
+
path: string;
|
|
348
348
|
name: string;
|
|
349
349
|
url: string;
|
|
350
350
|
size: number;
|
|
@@ -389,21 +389,21 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
389
389
|
ref: z.ZodString;
|
|
390
390
|
sha: z.ZodString;
|
|
391
391
|
}, "strip", z.ZodTypeAny, {
|
|
392
|
-
ref: string;
|
|
393
392
|
sha: string;
|
|
394
|
-
}, {
|
|
395
393
|
ref: string;
|
|
394
|
+
}, {
|
|
396
395
|
sha: string;
|
|
396
|
+
ref: string;
|
|
397
397
|
}>;
|
|
398
398
|
base: z.ZodObject<{
|
|
399
399
|
ref: z.ZodString;
|
|
400
400
|
sha: z.ZodString;
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
402
|
-
ref: string;
|
|
403
402
|
sha: string;
|
|
404
|
-
}, {
|
|
405
403
|
ref: string;
|
|
404
|
+
}, {
|
|
406
405
|
sha: string;
|
|
406
|
+
ref: string;
|
|
407
407
|
}>;
|
|
408
408
|
merged: z.ZodOptional<z.ZodBoolean>;
|
|
409
409
|
mergeable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -433,12 +433,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
433
433
|
closed_at: string | null;
|
|
434
434
|
merged_at: string | null;
|
|
435
435
|
head: {
|
|
436
|
-
ref: string;
|
|
437
436
|
sha: string;
|
|
437
|
+
ref: string;
|
|
438
438
|
};
|
|
439
439
|
base: {
|
|
440
|
-
ref: string;
|
|
441
440
|
sha: string;
|
|
441
|
+
ref: string;
|
|
442
442
|
};
|
|
443
443
|
comments?: number | undefined;
|
|
444
444
|
merged?: boolean | undefined;
|
|
@@ -468,12 +468,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
468
468
|
closed_at: string | null;
|
|
469
469
|
merged_at: string | null;
|
|
470
470
|
head: {
|
|
471
|
-
ref: string;
|
|
472
471
|
sha: string;
|
|
472
|
+
ref: string;
|
|
473
473
|
};
|
|
474
474
|
base: {
|
|
475
|
-
ref: string;
|
|
476
475
|
sha: string;
|
|
476
|
+
ref: string;
|
|
477
477
|
};
|
|
478
478
|
comments?: number | undefined;
|
|
479
479
|
merged?: boolean | undefined;
|
|
@@ -508,12 +508,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
508
508
|
closed_at: string | null;
|
|
509
509
|
merged_at: string | null;
|
|
510
510
|
head: {
|
|
511
|
-
ref: string;
|
|
512
511
|
sha: string;
|
|
512
|
+
ref: string;
|
|
513
513
|
};
|
|
514
514
|
base: {
|
|
515
|
-
ref: string;
|
|
516
515
|
sha: string;
|
|
516
|
+
ref: string;
|
|
517
517
|
};
|
|
518
518
|
comments?: number | undefined;
|
|
519
519
|
merged?: boolean | undefined;
|
|
@@ -548,12 +548,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
548
548
|
closed_at: string | null;
|
|
549
549
|
merged_at: string | null;
|
|
550
550
|
head: {
|
|
551
|
-
ref: string;
|
|
552
551
|
sha: string;
|
|
552
|
+
ref: string;
|
|
553
553
|
};
|
|
554
554
|
base: {
|
|
555
|
-
ref: string;
|
|
556
555
|
sha: string;
|
|
556
|
+
ref: string;
|
|
557
557
|
};
|
|
558
558
|
comments?: number | undefined;
|
|
559
559
|
merged?: boolean | undefined;
|
|
@@ -599,21 +599,21 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
599
599
|
ref: z.ZodString;
|
|
600
600
|
sha: z.ZodString;
|
|
601
601
|
}, "strip", z.ZodTypeAny, {
|
|
602
|
-
ref: string;
|
|
603
602
|
sha: string;
|
|
604
|
-
}, {
|
|
605
603
|
ref: string;
|
|
604
|
+
}, {
|
|
606
605
|
sha: string;
|
|
606
|
+
ref: string;
|
|
607
607
|
}>>;
|
|
608
608
|
base: z.ZodOptional<z.ZodObject<{
|
|
609
609
|
ref: z.ZodString;
|
|
610
610
|
sha: z.ZodString;
|
|
611
611
|
}, "strip", z.ZodTypeAny, {
|
|
612
|
-
ref: string;
|
|
613
612
|
sha: string;
|
|
614
|
-
}, {
|
|
615
613
|
ref: string;
|
|
614
|
+
}, {
|
|
616
615
|
sha: string;
|
|
616
|
+
ref: string;
|
|
617
617
|
}>>;
|
|
618
618
|
merged: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
619
619
|
mergeable: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
@@ -647,12 +647,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
647
647
|
closed_at?: string | null | undefined;
|
|
648
648
|
merged_at?: string | null | undefined;
|
|
649
649
|
head?: {
|
|
650
|
-
ref: string;
|
|
651
650
|
sha: string;
|
|
651
|
+
ref: string;
|
|
652
652
|
} | undefined;
|
|
653
653
|
base?: {
|
|
654
|
-
ref: string;
|
|
655
654
|
sha: string;
|
|
655
|
+
ref: string;
|
|
656
656
|
} | undefined;
|
|
657
657
|
merged?: boolean | undefined;
|
|
658
658
|
mergeable?: boolean | null | undefined;
|
|
@@ -685,12 +685,12 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
685
685
|
closed_at?: string | null | undefined;
|
|
686
686
|
merged_at?: string | null | undefined;
|
|
687
687
|
head?: {
|
|
688
|
-
ref: string;
|
|
689
688
|
sha: string;
|
|
689
|
+
ref: string;
|
|
690
690
|
} | undefined;
|
|
691
691
|
base?: {
|
|
692
|
-
ref: string;
|
|
693
692
|
sha: string;
|
|
693
|
+
ref: string;
|
|
694
694
|
} | undefined;
|
|
695
695
|
merged?: boolean | undefined;
|
|
696
696
|
mergeable?: boolean | null | undefined;
|
|
@@ -806,8 +806,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
806
806
|
language: string | null;
|
|
807
807
|
html_url: string;
|
|
808
808
|
node_id: string;
|
|
809
|
-
updated_at: string;
|
|
810
809
|
fork: boolean;
|
|
810
|
+
updated_at: string;
|
|
811
811
|
pushed_at: string;
|
|
812
812
|
stargazers_count: number;
|
|
813
813
|
watchers_count: number;
|
|
@@ -832,8 +832,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
832
832
|
language: string | null;
|
|
833
833
|
html_url: string;
|
|
834
834
|
node_id: string;
|
|
835
|
-
updated_at: string;
|
|
836
835
|
fork: boolean;
|
|
836
|
+
updated_at: string;
|
|
837
837
|
pushed_at: string;
|
|
838
838
|
stargazers_count: number;
|
|
839
839
|
watchers_count: number;
|
|
@@ -863,8 +863,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
863
863
|
language: string | null;
|
|
864
864
|
html_url: string;
|
|
865
865
|
node_id: string;
|
|
866
|
-
updated_at: string;
|
|
867
866
|
fork: boolean;
|
|
867
|
+
updated_at: string;
|
|
868
868
|
pushed_at: string;
|
|
869
869
|
stargazers_count: number;
|
|
870
870
|
watchers_count: number;
|
|
@@ -894,8 +894,8 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
894
894
|
language: string | null;
|
|
895
895
|
html_url: string;
|
|
896
896
|
node_id: string;
|
|
897
|
-
updated_at: string;
|
|
898
897
|
fork: boolean;
|
|
898
|
+
updated_at: string;
|
|
899
899
|
pushed_at: string;
|
|
900
900
|
stargazers_count: number;
|
|
901
901
|
watchers_count: number;
|
|
@@ -962,17 +962,17 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
962
962
|
} | undefined;
|
|
963
963
|
full_name?: string | undefined;
|
|
964
964
|
language?: string | null | undefined;
|
|
965
|
-
visibility?: string | undefined;
|
|
966
965
|
html_url?: string | undefined;
|
|
967
966
|
node_id?: string | undefined;
|
|
968
|
-
updated_at?: string | undefined;
|
|
969
967
|
fork?: boolean | undefined;
|
|
968
|
+
updated_at?: string | undefined;
|
|
970
969
|
pushed_at?: string | undefined;
|
|
971
970
|
stargazers_count?: number | undefined;
|
|
972
971
|
watchers_count?: number | undefined;
|
|
973
972
|
forks_count?: number | undefined;
|
|
974
973
|
open_issues_count?: number | undefined;
|
|
975
974
|
default_branch?: string | undefined;
|
|
975
|
+
visibility?: string | undefined;
|
|
976
976
|
}, {
|
|
977
977
|
error: string;
|
|
978
978
|
success: boolean;
|
|
@@ -991,17 +991,17 @@ declare const GithubResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
991
991
|
} | undefined;
|
|
992
992
|
full_name?: string | undefined;
|
|
993
993
|
language?: string | null | undefined;
|
|
994
|
-
visibility?: string | undefined;
|
|
995
994
|
html_url?: string | undefined;
|
|
996
995
|
node_id?: string | undefined;
|
|
997
|
-
updated_at?: string | undefined;
|
|
998
996
|
fork?: boolean | undefined;
|
|
997
|
+
updated_at?: string | undefined;
|
|
999
998
|
pushed_at?: string | undefined;
|
|
1000
999
|
stargazers_count?: number | undefined;
|
|
1001
1000
|
watchers_count?: number | undefined;
|
|
1002
1001
|
forks_count?: number | undefined;
|
|
1003
1002
|
open_issues_count?: number | undefined;
|
|
1004
1003
|
default_branch?: string | undefined;
|
|
1004
|
+
visibility?: string | undefined;
|
|
1005
1005
|
}>, z.ZodObject<{
|
|
1006
1006
|
operation: z.ZodLiteral<"create_issue_comment">;
|
|
1007
1007
|
success: z.ZodBoolean;
|
|
@@ -1451,18 +1451,18 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1451
1451
|
sort: "created" | "updated" | "full_name" | "pushed";
|
|
1452
1452
|
operation: "list_repositories";
|
|
1453
1453
|
page: number;
|
|
1454
|
+
visibility: "public" | "private" | "all";
|
|
1454
1455
|
direction: "asc" | "desc";
|
|
1455
1456
|
per_page: number;
|
|
1456
|
-
visibility: "public" | "private" | "all";
|
|
1457
1457
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1458
1458
|
}, {
|
|
1459
1459
|
operation: "list_repositories";
|
|
1460
1460
|
sort?: "created" | "updated" | "full_name" | "pushed" | undefined;
|
|
1461
1461
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1462
1462
|
page?: number | undefined;
|
|
1463
|
+
visibility?: "public" | "private" | "all" | undefined;
|
|
1463
1464
|
direction?: "asc" | "desc" | undefined;
|
|
1464
1465
|
per_page?: number | undefined;
|
|
1465
|
-
visibility?: "public" | "private" | "all" | undefined;
|
|
1466
1466
|
}>, z.ZodObject<{
|
|
1467
1467
|
operation: z.ZodLiteral<"get_repository">;
|
|
1468
1468
|
owner: z.ZodString;
|
|
@@ -1580,8 +1580,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1580
1580
|
error: string;
|
|
1581
1581
|
success: boolean;
|
|
1582
1582
|
operation: "get_file";
|
|
1583
|
-
path?: string | undefined;
|
|
1584
1583
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
1584
|
+
path?: string | undefined;
|
|
1585
1585
|
name?: string | undefined;
|
|
1586
1586
|
content?: string | undefined;
|
|
1587
1587
|
url?: string | undefined;
|
|
@@ -1595,8 +1595,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1595
1595
|
error: string;
|
|
1596
1596
|
success: boolean;
|
|
1597
1597
|
operation: "get_file";
|
|
1598
|
-
path?: string | undefined;
|
|
1599
1598
|
type?: "file" | "dir" | "symlink" | "submodule" | undefined;
|
|
1599
|
+
path?: string | undefined;
|
|
1600
1600
|
name?: string | undefined;
|
|
1601
1601
|
content?: string | undefined;
|
|
1602
1602
|
url?: string | undefined;
|
|
@@ -1623,8 +1623,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1623
1623
|
content: z.ZodOptional<z.ZodString>;
|
|
1624
1624
|
encoding: z.ZodOptional<z.ZodString>;
|
|
1625
1625
|
}, "strip", z.ZodTypeAny, {
|
|
1626
|
-
path: string;
|
|
1627
1626
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1627
|
+
path: string;
|
|
1628
1628
|
name: string;
|
|
1629
1629
|
url: string;
|
|
1630
1630
|
size: number;
|
|
@@ -1635,8 +1635,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1635
1635
|
content?: string | undefined;
|
|
1636
1636
|
encoding?: string | undefined;
|
|
1637
1637
|
}, {
|
|
1638
|
-
path: string;
|
|
1639
1638
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1639
|
+
path: string;
|
|
1640
1640
|
name: string;
|
|
1641
1641
|
url: string;
|
|
1642
1642
|
size: number;
|
|
@@ -1652,8 +1652,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1652
1652
|
success: boolean;
|
|
1653
1653
|
operation: "get_directory";
|
|
1654
1654
|
contents?: {
|
|
1655
|
-
path: string;
|
|
1656
1655
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1656
|
+
path: string;
|
|
1657
1657
|
name: string;
|
|
1658
1658
|
url: string;
|
|
1659
1659
|
size: number;
|
|
@@ -1669,8 +1669,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1669
1669
|
success: boolean;
|
|
1670
1670
|
operation: "get_directory";
|
|
1671
1671
|
contents?: {
|
|
1672
|
-
path: string;
|
|
1673
1672
|
type: "file" | "dir" | "symlink" | "submodule";
|
|
1673
|
+
path: string;
|
|
1674
1674
|
name: string;
|
|
1675
1675
|
url: string;
|
|
1676
1676
|
size: number;
|
|
@@ -1715,21 +1715,21 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1715
1715
|
ref: z.ZodString;
|
|
1716
1716
|
sha: z.ZodString;
|
|
1717
1717
|
}, "strip", z.ZodTypeAny, {
|
|
1718
|
-
ref: string;
|
|
1719
1718
|
sha: string;
|
|
1720
|
-
}, {
|
|
1721
1719
|
ref: string;
|
|
1720
|
+
}, {
|
|
1722
1721
|
sha: string;
|
|
1722
|
+
ref: string;
|
|
1723
1723
|
}>;
|
|
1724
1724
|
base: z.ZodObject<{
|
|
1725
1725
|
ref: z.ZodString;
|
|
1726
1726
|
sha: z.ZodString;
|
|
1727
1727
|
}, "strip", z.ZodTypeAny, {
|
|
1728
|
-
ref: string;
|
|
1729
1728
|
sha: string;
|
|
1730
|
-
}, {
|
|
1731
1729
|
ref: string;
|
|
1730
|
+
}, {
|
|
1732
1731
|
sha: string;
|
|
1732
|
+
ref: string;
|
|
1733
1733
|
}>;
|
|
1734
1734
|
merged: z.ZodOptional<z.ZodBoolean>;
|
|
1735
1735
|
mergeable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -1759,12 +1759,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1759
1759
|
closed_at: string | null;
|
|
1760
1760
|
merged_at: string | null;
|
|
1761
1761
|
head: {
|
|
1762
|
-
ref: string;
|
|
1763
1762
|
sha: string;
|
|
1763
|
+
ref: string;
|
|
1764
1764
|
};
|
|
1765
1765
|
base: {
|
|
1766
|
-
ref: string;
|
|
1767
1766
|
sha: string;
|
|
1767
|
+
ref: string;
|
|
1768
1768
|
};
|
|
1769
1769
|
comments?: number | undefined;
|
|
1770
1770
|
merged?: boolean | undefined;
|
|
@@ -1794,12 +1794,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1794
1794
|
closed_at: string | null;
|
|
1795
1795
|
merged_at: string | null;
|
|
1796
1796
|
head: {
|
|
1797
|
-
ref: string;
|
|
1798
1797
|
sha: string;
|
|
1798
|
+
ref: string;
|
|
1799
1799
|
};
|
|
1800
1800
|
base: {
|
|
1801
|
-
ref: string;
|
|
1802
1801
|
sha: string;
|
|
1802
|
+
ref: string;
|
|
1803
1803
|
};
|
|
1804
1804
|
comments?: number | undefined;
|
|
1805
1805
|
merged?: boolean | undefined;
|
|
@@ -1834,12 +1834,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1834
1834
|
closed_at: string | null;
|
|
1835
1835
|
merged_at: string | null;
|
|
1836
1836
|
head: {
|
|
1837
|
-
ref: string;
|
|
1838
1837
|
sha: string;
|
|
1838
|
+
ref: string;
|
|
1839
1839
|
};
|
|
1840
1840
|
base: {
|
|
1841
|
-
ref: string;
|
|
1842
1841
|
sha: string;
|
|
1842
|
+
ref: string;
|
|
1843
1843
|
};
|
|
1844
1844
|
comments?: number | undefined;
|
|
1845
1845
|
merged?: boolean | undefined;
|
|
@@ -1874,12 +1874,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1874
1874
|
closed_at: string | null;
|
|
1875
1875
|
merged_at: string | null;
|
|
1876
1876
|
head: {
|
|
1877
|
-
ref: string;
|
|
1878
1877
|
sha: string;
|
|
1878
|
+
ref: string;
|
|
1879
1879
|
};
|
|
1880
1880
|
base: {
|
|
1881
|
-
ref: string;
|
|
1882
1881
|
sha: string;
|
|
1882
|
+
ref: string;
|
|
1883
1883
|
};
|
|
1884
1884
|
comments?: number | undefined;
|
|
1885
1885
|
merged?: boolean | undefined;
|
|
@@ -1925,21 +1925,21 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1925
1925
|
ref: z.ZodString;
|
|
1926
1926
|
sha: z.ZodString;
|
|
1927
1927
|
}, "strip", z.ZodTypeAny, {
|
|
1928
|
-
ref: string;
|
|
1929
1928
|
sha: string;
|
|
1930
|
-
}, {
|
|
1931
1929
|
ref: string;
|
|
1930
|
+
}, {
|
|
1932
1931
|
sha: string;
|
|
1932
|
+
ref: string;
|
|
1933
1933
|
}>>;
|
|
1934
1934
|
base: z.ZodOptional<z.ZodObject<{
|
|
1935
1935
|
ref: z.ZodString;
|
|
1936
1936
|
sha: z.ZodString;
|
|
1937
1937
|
}, "strip", z.ZodTypeAny, {
|
|
1938
|
-
ref: string;
|
|
1939
1938
|
sha: string;
|
|
1940
|
-
}, {
|
|
1941
1939
|
ref: string;
|
|
1940
|
+
}, {
|
|
1942
1941
|
sha: string;
|
|
1942
|
+
ref: string;
|
|
1943
1943
|
}>>;
|
|
1944
1944
|
merged: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
1945
1945
|
mergeable: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
@@ -1973,12 +1973,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
1973
1973
|
closed_at?: string | null | undefined;
|
|
1974
1974
|
merged_at?: string | null | undefined;
|
|
1975
1975
|
head?: {
|
|
1976
|
-
ref: string;
|
|
1977
1976
|
sha: string;
|
|
1977
|
+
ref: string;
|
|
1978
1978
|
} | undefined;
|
|
1979
1979
|
base?: {
|
|
1980
|
-
ref: string;
|
|
1981
1980
|
sha: string;
|
|
1981
|
+
ref: string;
|
|
1982
1982
|
} | undefined;
|
|
1983
1983
|
merged?: boolean | undefined;
|
|
1984
1984
|
mergeable?: boolean | null | undefined;
|
|
@@ -2011,12 +2011,12 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2011
2011
|
closed_at?: string | null | undefined;
|
|
2012
2012
|
merged_at?: string | null | undefined;
|
|
2013
2013
|
head?: {
|
|
2014
|
-
ref: string;
|
|
2015
2014
|
sha: string;
|
|
2015
|
+
ref: string;
|
|
2016
2016
|
} | undefined;
|
|
2017
2017
|
base?: {
|
|
2018
|
-
ref: string;
|
|
2019
2018
|
sha: string;
|
|
2019
|
+
ref: string;
|
|
2020
2020
|
} | undefined;
|
|
2021
2021
|
merged?: boolean | undefined;
|
|
2022
2022
|
mergeable?: boolean | null | undefined;
|
|
@@ -2132,8 +2132,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2132
2132
|
language: string | null;
|
|
2133
2133
|
html_url: string;
|
|
2134
2134
|
node_id: string;
|
|
2135
|
-
updated_at: string;
|
|
2136
2135
|
fork: boolean;
|
|
2136
|
+
updated_at: string;
|
|
2137
2137
|
pushed_at: string;
|
|
2138
2138
|
stargazers_count: number;
|
|
2139
2139
|
watchers_count: number;
|
|
@@ -2158,8 +2158,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2158
2158
|
language: string | null;
|
|
2159
2159
|
html_url: string;
|
|
2160
2160
|
node_id: string;
|
|
2161
|
-
updated_at: string;
|
|
2162
2161
|
fork: boolean;
|
|
2162
|
+
updated_at: string;
|
|
2163
2163
|
pushed_at: string;
|
|
2164
2164
|
stargazers_count: number;
|
|
2165
2165
|
watchers_count: number;
|
|
@@ -2189,8 +2189,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2189
2189
|
language: string | null;
|
|
2190
2190
|
html_url: string;
|
|
2191
2191
|
node_id: string;
|
|
2192
|
-
updated_at: string;
|
|
2193
2192
|
fork: boolean;
|
|
2193
|
+
updated_at: string;
|
|
2194
2194
|
pushed_at: string;
|
|
2195
2195
|
stargazers_count: number;
|
|
2196
2196
|
watchers_count: number;
|
|
@@ -2220,8 +2220,8 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2220
2220
|
language: string | null;
|
|
2221
2221
|
html_url: string;
|
|
2222
2222
|
node_id: string;
|
|
2223
|
-
updated_at: string;
|
|
2224
2223
|
fork: boolean;
|
|
2224
|
+
updated_at: string;
|
|
2225
2225
|
pushed_at: string;
|
|
2226
2226
|
stargazers_count: number;
|
|
2227
2227
|
watchers_count: number;
|
|
@@ -2288,17 +2288,17 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2288
2288
|
} | undefined;
|
|
2289
2289
|
full_name?: string | undefined;
|
|
2290
2290
|
language?: string | null | undefined;
|
|
2291
|
-
visibility?: string | undefined;
|
|
2292
2291
|
html_url?: string | undefined;
|
|
2293
2292
|
node_id?: string | undefined;
|
|
2294
|
-
updated_at?: string | undefined;
|
|
2295
2293
|
fork?: boolean | undefined;
|
|
2294
|
+
updated_at?: string | undefined;
|
|
2296
2295
|
pushed_at?: string | undefined;
|
|
2297
2296
|
stargazers_count?: number | undefined;
|
|
2298
2297
|
watchers_count?: number | undefined;
|
|
2299
2298
|
forks_count?: number | undefined;
|
|
2300
2299
|
open_issues_count?: number | undefined;
|
|
2301
2300
|
default_branch?: string | undefined;
|
|
2301
|
+
visibility?: string | undefined;
|
|
2302
2302
|
}, {
|
|
2303
2303
|
error: string;
|
|
2304
2304
|
success: boolean;
|
|
@@ -2317,17 +2317,17 @@ export declare class GithubBubble<T extends GithubParams = GithubParams> extends
|
|
|
2317
2317
|
} | undefined;
|
|
2318
2318
|
full_name?: string | undefined;
|
|
2319
2319
|
language?: string | null | undefined;
|
|
2320
|
-
visibility?: string | undefined;
|
|
2321
2320
|
html_url?: string | undefined;
|
|
2322
2321
|
node_id?: string | undefined;
|
|
2323
|
-
updated_at?: string | undefined;
|
|
2324
2322
|
fork?: boolean | undefined;
|
|
2323
|
+
updated_at?: string | undefined;
|
|
2325
2324
|
pushed_at?: string | undefined;
|
|
2326
2325
|
stargazers_count?: number | undefined;
|
|
2327
2326
|
watchers_count?: number | undefined;
|
|
2328
2327
|
forks_count?: number | undefined;
|
|
2329
2328
|
open_issues_count?: number | undefined;
|
|
2330
2329
|
default_branch?: string | undefined;
|
|
2330
|
+
visibility?: string | undefined;
|
|
2331
2331
|
}>, z.ZodObject<{
|
|
2332
2332
|
operation: z.ZodLiteral<"create_issue_comment">;
|
|
2333
2333
|
success: z.ZodBoolean;
|