@bubblelab/bubble-core 0.1.75 → 0.1.77
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 +96 -96
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +30 -30
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +1 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +154 -154
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +60 -60
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +22 -22
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +29 -29
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +86 -86
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +20 -20
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +310 -310
- package/dist/bubbles/service-bubble/followupboss.d.ts +228 -228
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/github.d.ts +100 -100
- package/dist/bubbles/service-bubble/gmail.d.ts +282 -282
- package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
- package/dist/bubbles/service-bubble/google-drive.d.ts +126 -126
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +46 -46
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +46 -46
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +56 -56
- package/dist/bubbles/service-bubble/notion/notion.d.ts +528 -528
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +12 -12
- package/dist/bubbles/service-bubble/slack/slack.d.ts +604 -604
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +76 -76
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +77 -77
- package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +22 -22
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +290 -290
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +94 -94
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +42 -42
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +138 -138
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts.map +1 -1
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.js +11 -1
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.js.map +1 -1
- package/dist/bubbles.json +4 -3
- package/package.json +2 -2
|
@@ -418,15 +418,15 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
418
418
|
timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
419
419
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
420
420
|
}, "strip", z.ZodTypeAny, {
|
|
421
|
-
operation: "navigate";
|
|
422
421
|
url: string;
|
|
423
422
|
timeout: number;
|
|
423
|
+
operation: "navigate";
|
|
424
424
|
session_id: string;
|
|
425
425
|
wait_until: "load" | "domcontentloaded" | "networkidle0" | "networkidle2";
|
|
426
426
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
427
427
|
}, {
|
|
428
|
-
operation: "navigate";
|
|
429
428
|
url: string;
|
|
429
|
+
operation: "navigate";
|
|
430
430
|
session_id: string;
|
|
431
431
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
432
432
|
timeout?: number | undefined;
|
|
@@ -439,8 +439,8 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
439
439
|
timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
440
440
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
441
441
|
}, "strip", z.ZodTypeAny, {
|
|
442
|
-
operation: "click";
|
|
443
442
|
timeout: number;
|
|
443
|
+
operation: "click";
|
|
444
444
|
session_id: string;
|
|
445
445
|
selector: string;
|
|
446
446
|
wait_for_navigation: boolean;
|
|
@@ -461,16 +461,16 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
461
461
|
delay: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
462
462
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
463
463
|
}, "strip", z.ZodTypeAny, {
|
|
464
|
-
operation: "type";
|
|
465
464
|
text: string;
|
|
465
|
+
operation: "type";
|
|
466
466
|
session_id: string;
|
|
467
467
|
selector: string;
|
|
468
468
|
delay: number;
|
|
469
469
|
clear_first: boolean;
|
|
470
470
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
471
471
|
}, {
|
|
472
|
-
operation: "type";
|
|
473
472
|
text: string;
|
|
473
|
+
operation: "type";
|
|
474
474
|
session_id: string;
|
|
475
475
|
selector: string;
|
|
476
476
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -482,13 +482,13 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
482
482
|
script: z.ZodString;
|
|
483
483
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
484
484
|
}, "strip", z.ZodTypeAny, {
|
|
485
|
-
operation: "evaluate";
|
|
486
485
|
script: string;
|
|
486
|
+
operation: "evaluate";
|
|
487
487
|
session_id: string;
|
|
488
488
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
489
489
|
}, {
|
|
490
|
-
operation: "evaluate";
|
|
491
490
|
script: string;
|
|
491
|
+
operation: "evaluate";
|
|
492
492
|
session_id: string;
|
|
493
493
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
494
494
|
}>, z.ZodObject<{
|
|
@@ -518,8 +518,8 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
518
518
|
quality: z.ZodOptional<z.ZodNumber>;
|
|
519
519
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
520
520
|
}, "strip", z.ZodTypeAny, {
|
|
521
|
-
operation: "screenshot";
|
|
522
521
|
format: "png" | "jpeg" | "webp";
|
|
522
|
+
operation: "screenshot";
|
|
523
523
|
session_id: string;
|
|
524
524
|
full_page: boolean;
|
|
525
525
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -541,8 +541,8 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
541
541
|
timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
542
542
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
543
543
|
}, "strip", z.ZodTypeAny, {
|
|
544
|
-
operation: "wait";
|
|
545
544
|
timeout: number;
|
|
545
|
+
operation: "wait";
|
|
546
546
|
session_id: string;
|
|
547
547
|
wait_type: "timeout" | "selector" | "navigation";
|
|
548
548
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -593,16 +593,16 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
593
593
|
debug_url: z.ZodOptional<z.ZodString>;
|
|
594
594
|
error: z.ZodString;
|
|
595
595
|
}, "strip", z.ZodTypeAny, {
|
|
596
|
-
operation: "start_session";
|
|
597
596
|
error: string;
|
|
598
597
|
success: boolean;
|
|
598
|
+
operation: "start_session";
|
|
599
599
|
session_id?: string | undefined;
|
|
600
600
|
context_id?: string | undefined;
|
|
601
601
|
debug_url?: string | undefined;
|
|
602
602
|
}, {
|
|
603
|
-
operation: "start_session";
|
|
604
603
|
error: string;
|
|
605
604
|
success: boolean;
|
|
605
|
+
operation: "start_session";
|
|
606
606
|
session_id?: string | undefined;
|
|
607
607
|
context_id?: string | undefined;
|
|
608
608
|
debug_url?: string | undefined;
|
|
@@ -612,53 +612,53 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
612
612
|
url: z.ZodOptional<z.ZodString>;
|
|
613
613
|
error: z.ZodString;
|
|
614
614
|
}, "strip", z.ZodTypeAny, {
|
|
615
|
-
operation: "navigate";
|
|
616
615
|
error: string;
|
|
617
616
|
success: boolean;
|
|
617
|
+
operation: "navigate";
|
|
618
618
|
url?: string | undefined;
|
|
619
619
|
}, {
|
|
620
|
-
operation: "navigate";
|
|
621
620
|
error: string;
|
|
622
621
|
success: boolean;
|
|
622
|
+
operation: "navigate";
|
|
623
623
|
url?: string | undefined;
|
|
624
624
|
}>, z.ZodObject<{
|
|
625
625
|
operation: z.ZodLiteral<"click">;
|
|
626
626
|
success: z.ZodBoolean;
|
|
627
627
|
error: z.ZodString;
|
|
628
628
|
}, "strip", z.ZodTypeAny, {
|
|
629
|
-
operation: "click";
|
|
630
629
|
error: string;
|
|
631
630
|
success: boolean;
|
|
632
|
-
}, {
|
|
633
631
|
operation: "click";
|
|
632
|
+
}, {
|
|
634
633
|
error: string;
|
|
635
634
|
success: boolean;
|
|
635
|
+
operation: "click";
|
|
636
636
|
}>, z.ZodObject<{
|
|
637
637
|
operation: z.ZodLiteral<"type">;
|
|
638
638
|
success: z.ZodBoolean;
|
|
639
639
|
error: z.ZodString;
|
|
640
640
|
}, "strip", z.ZodTypeAny, {
|
|
641
|
-
operation: "type";
|
|
642
641
|
error: string;
|
|
643
642
|
success: boolean;
|
|
644
|
-
}, {
|
|
645
643
|
operation: "type";
|
|
644
|
+
}, {
|
|
646
645
|
error: string;
|
|
647
646
|
success: boolean;
|
|
647
|
+
operation: "type";
|
|
648
648
|
}>, z.ZodObject<{
|
|
649
649
|
operation: z.ZodLiteral<"evaluate">;
|
|
650
650
|
success: z.ZodBoolean;
|
|
651
651
|
result: z.ZodOptional<z.ZodUnknown>;
|
|
652
652
|
error: z.ZodString;
|
|
653
653
|
}, "strip", z.ZodTypeAny, {
|
|
654
|
-
operation: "evaluate";
|
|
655
654
|
error: string;
|
|
656
655
|
success: boolean;
|
|
656
|
+
operation: "evaluate";
|
|
657
657
|
result?: unknown;
|
|
658
658
|
}, {
|
|
659
|
-
operation: "evaluate";
|
|
660
659
|
error: string;
|
|
661
660
|
success: boolean;
|
|
661
|
+
operation: "evaluate";
|
|
662
662
|
result?: unknown;
|
|
663
663
|
}>, z.ZodObject<{
|
|
664
664
|
operation: z.ZodLiteral<"get_content">;
|
|
@@ -666,14 +666,14 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
666
666
|
content: z.ZodOptional<z.ZodString>;
|
|
667
667
|
error: z.ZodString;
|
|
668
668
|
}, "strip", z.ZodTypeAny, {
|
|
669
|
-
operation: "get_content";
|
|
670
669
|
error: string;
|
|
671
670
|
success: boolean;
|
|
671
|
+
operation: "get_content";
|
|
672
672
|
content?: string | undefined;
|
|
673
673
|
}, {
|
|
674
|
-
operation: "get_content";
|
|
675
674
|
error: string;
|
|
676
675
|
success: boolean;
|
|
676
|
+
operation: "get_content";
|
|
677
677
|
content?: string | undefined;
|
|
678
678
|
}>, z.ZodObject<{
|
|
679
679
|
operation: z.ZodLiteral<"screenshot">;
|
|
@@ -682,15 +682,15 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
682
682
|
format: z.ZodOptional<z.ZodString>;
|
|
683
683
|
error: z.ZodString;
|
|
684
684
|
}, "strip", z.ZodTypeAny, {
|
|
685
|
-
operation: "screenshot";
|
|
686
685
|
error: string;
|
|
687
686
|
success: boolean;
|
|
687
|
+
operation: "screenshot";
|
|
688
688
|
format?: string | undefined;
|
|
689
689
|
data?: string | undefined;
|
|
690
690
|
}, {
|
|
691
|
-
operation: "screenshot";
|
|
692
691
|
error: string;
|
|
693
692
|
success: boolean;
|
|
693
|
+
operation: "screenshot";
|
|
694
694
|
format?: string | undefined;
|
|
695
695
|
data?: string | undefined;
|
|
696
696
|
}>, z.ZodObject<{
|
|
@@ -698,13 +698,13 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
698
698
|
success: z.ZodBoolean;
|
|
699
699
|
error: z.ZodString;
|
|
700
700
|
}, "strip", z.ZodTypeAny, {
|
|
701
|
-
operation: "wait";
|
|
702
701
|
error: string;
|
|
703
702
|
success: boolean;
|
|
704
|
-
}, {
|
|
705
703
|
operation: "wait";
|
|
704
|
+
}, {
|
|
706
705
|
error: string;
|
|
707
706
|
success: boolean;
|
|
707
|
+
operation: "wait";
|
|
708
708
|
}>, z.ZodObject<{
|
|
709
709
|
operation: z.ZodLiteral<"get_cookies">;
|
|
710
710
|
success: z.ZodBoolean;
|
|
@@ -735,9 +735,9 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
735
735
|
}>, "many">>;
|
|
736
736
|
error: z.ZodString;
|
|
737
737
|
}, "strip", z.ZodTypeAny, {
|
|
738
|
-
operation: "get_cookies";
|
|
739
738
|
error: string;
|
|
740
739
|
success: boolean;
|
|
740
|
+
operation: "get_cookies";
|
|
741
741
|
cookies?: {
|
|
742
742
|
value: string;
|
|
743
743
|
path: string;
|
|
@@ -748,9 +748,9 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
748
748
|
secure: boolean;
|
|
749
749
|
}[] | undefined;
|
|
750
750
|
}, {
|
|
751
|
-
operation: "get_cookies";
|
|
752
751
|
error: string;
|
|
753
752
|
success: boolean;
|
|
753
|
+
operation: "get_cookies";
|
|
754
754
|
cookies?: {
|
|
755
755
|
value: string;
|
|
756
756
|
path: string;
|
|
@@ -765,13 +765,13 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
765
765
|
success: z.ZodBoolean;
|
|
766
766
|
error: z.ZodString;
|
|
767
767
|
}, "strip", z.ZodTypeAny, {
|
|
768
|
-
operation: "end_session";
|
|
769
768
|
error: string;
|
|
770
769
|
success: boolean;
|
|
771
|
-
}, {
|
|
772
770
|
operation: "end_session";
|
|
771
|
+
}, {
|
|
773
772
|
error: string;
|
|
774
773
|
success: boolean;
|
|
774
|
+
operation: "end_session";
|
|
775
775
|
}>]>;
|
|
776
776
|
export type BrowserBaseParams = z.output<typeof BrowserBaseParamsSchema>;
|
|
777
777
|
export type BrowserBaseParamsInput = z.input<typeof BrowserBaseParamsSchema>;
|