@bubblelab/bubble-core 0.1.243 → 0.1.244

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.
Files changed (58) hide show
  1. package/dist/bubble-bundle.d.ts +83 -83
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
  4. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  5. package/dist/bubbles/service-bubble/ai-agent.js +25 -4
  6. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  7. package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
  8. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  9. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +116 -116
  10. package/dist/bubbles/service-bubble/assembled/assembled.d.ts +5 -5
  11. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
  12. package/dist/bubbles/service-bubble/capability-pipeline.js +4 -4
  13. package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
  14. package/dist/bubbles/service-bubble/confluence/confluence.d.ts +14 -14
  15. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
  16. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  17. package/dist/bubbles/service-bubble/firecrawl.d.ts +192 -192
  18. package/dist/bubbles/service-bubble/followupboss.d.ts +58 -58
  19. package/dist/bubbles/service-bubble/github.d.ts +110 -110
  20. package/dist/bubbles/service-bubble/gmail.d.ts +68 -68
  21. package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
  22. package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
  23. package/dist/bubbles/service-bubble/http.d.ts +16 -16
  24. package/dist/bubbles/service-bubble/hubspot/hubspot.d.ts +32 -32
  25. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  26. package/dist/bubbles/service-bubble/jira/jira.d.ts +47 -47
  27. package/dist/bubbles/service-bubble/linear/linear.d.ts +5 -5
  28. package/dist/bubbles/service-bubble/notion/notion.d.ts +368 -368
  29. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  30. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +10 -10
  31. package/dist/bubbles/service-bubble/s3/s3.d.ts +2 -2
  32. package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
  33. package/dist/bubbles/service-bubble/slab/slab.d.ts +18 -18
  34. package/dist/bubbles/service-bubble/slack/slack.d.ts +174 -174
  35. package/dist/bubbles/service-bubble/storage.d.ts +4 -4
  36. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +10 -10
  37. package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +24 -24
  38. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  39. package/dist/bubbles/tool-bubble/app-rankings-tool.d.ts +8 -8
  40. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
  42. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +56 -56
  43. package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
  44. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
  45. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  46. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  47. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  49. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  50. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
  51. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
  52. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  53. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
  54. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +54 -54
  55. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +24 -24
  56. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
  57. package/dist/bubbles.json +1 -1
  58. package/package.json +2 -2
@@ -294,6 +294,7 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
294
294
  object_type: "deals" | "contacts" | "companies" | "tickets";
295
295
  fieldType: "number" | "date" | "text" | "file" | "html" | "checkbox" | "textarea" | "select" | "radio" | "booleancheckbox" | "calculation_equation" | "phonenumber";
296
296
  groupName: string;
297
+ description?: string | undefined;
297
298
  options?: {
298
299
  value: string;
299
300
  label: string;
@@ -301,7 +302,6 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
301
302
  displayOrder?: number | undefined;
302
303
  hidden?: boolean | undefined;
303
304
  }[] | undefined;
304
- description?: string | undefined;
305
305
  credentials?: Partial<Record<CredentialType, string>> | undefined;
306
306
  hasUniqueValue?: boolean | undefined;
307
307
  calculationFormula?: string | undefined;
@@ -313,6 +313,7 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
313
313
  object_type: "deals" | "contacts" | "companies" | "tickets";
314
314
  fieldType: "number" | "date" | "text" | "file" | "html" | "checkbox" | "textarea" | "select" | "radio" | "booleancheckbox" | "calculation_equation" | "phonenumber";
315
315
  groupName: string;
316
+ description?: string | undefined;
316
317
  options?: {
317
318
  value: string;
318
319
  label: string;
@@ -320,7 +321,6 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
320
321
  displayOrder?: number | undefined;
321
322
  hidden?: boolean | undefined;
322
323
  }[] | undefined;
323
- description?: string | undefined;
324
324
  credentials?: Partial<Record<CredentialType, string>> | undefined;
325
325
  hasUniqueValue?: boolean | undefined;
326
326
  calculationFormula?: string | undefined;
@@ -357,6 +357,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
357
357
  operation: "update_property";
358
358
  object_type: "deals" | "contacts" | "companies" | "tickets";
359
359
  property_name: string;
360
+ type?: "string" | "number" | "date" | "datetime" | "enumeration" | "bool" | undefined;
361
+ description?: string | undefined;
360
362
  options?: {
361
363
  value: string;
362
364
  label: string;
@@ -364,8 +366,6 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
364
366
  displayOrder?: number | undefined;
365
367
  hidden?: boolean | undefined;
366
368
  }[] | undefined;
367
- type?: "string" | "number" | "date" | "datetime" | "enumeration" | "bool" | undefined;
368
- description?: string | undefined;
369
369
  credentials?: Partial<Record<CredentialType, string>> | undefined;
370
370
  label?: string | undefined;
371
371
  fieldType?: "number" | "date" | "text" | "file" | "html" | "checkbox" | "textarea" | "select" | "radio" | "booleancheckbox" | "calculation_equation" | "phonenumber" | undefined;
@@ -374,6 +374,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
374
374
  operation: "update_property";
375
375
  object_type: "deals" | "contacts" | "companies" | "tickets";
376
376
  property_name: string;
377
+ type?: "string" | "number" | "date" | "datetime" | "enumeration" | "bool" | undefined;
378
+ description?: string | undefined;
377
379
  options?: {
378
380
  value: string;
379
381
  label: string;
@@ -381,8 +383,6 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
381
383
  displayOrder?: number | undefined;
382
384
  hidden?: boolean | undefined;
383
385
  }[] | undefined;
384
- type?: "string" | "number" | "date" | "datetime" | "enumeration" | "bool" | undefined;
385
- description?: string | undefined;
386
386
  credentials?: Partial<Record<CredentialType, string>> | undefined;
387
387
  label?: string | undefined;
388
388
  fieldType?: "number" | "date" | "text" | "file" | "html" | "checkbox" | "textarea" | "select" | "radio" | "booleancheckbox" | "calculation_equation" | "phonenumber" | undefined;
@@ -559,14 +559,14 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
559
559
  }, "strip", import("zod").ZodTypeAny, {
560
560
  properties: Record<string, unknown>;
561
561
  id: string;
562
- createdAt?: string | undefined;
563
562
  archived?: boolean | undefined;
563
+ createdAt?: string | undefined;
564
564
  updatedAt?: string | undefined;
565
565
  }, {
566
566
  properties: Record<string, unknown>;
567
567
  id: string;
568
- createdAt?: string | undefined;
569
568
  archived?: boolean | undefined;
569
+ createdAt?: string | undefined;
570
570
  updatedAt?: string | undefined;
571
571
  }>>;
572
572
  error: import("zod").ZodString;
@@ -577,8 +577,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
577
577
  record?: {
578
578
  properties: Record<string, unknown>;
579
579
  id: string;
580
- createdAt?: string | undefined;
581
580
  archived?: boolean | undefined;
581
+ createdAt?: string | undefined;
582
582
  updatedAt?: string | undefined;
583
583
  } | undefined;
584
584
  }, {
@@ -588,8 +588,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
588
588
  record?: {
589
589
  properties: Record<string, unknown>;
590
590
  id: string;
591
- createdAt?: string | undefined;
592
591
  archived?: boolean | undefined;
592
+ createdAt?: string | undefined;
593
593
  updatedAt?: string | undefined;
594
594
  } | undefined;
595
595
  }>, import("zod").ZodObject<{
@@ -604,14 +604,14 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
604
604
  }, "strip", import("zod").ZodTypeAny, {
605
605
  properties: Record<string, unknown>;
606
606
  id: string;
607
- createdAt?: string | undefined;
608
607
  archived?: boolean | undefined;
608
+ createdAt?: string | undefined;
609
609
  updatedAt?: string | undefined;
610
610
  }, {
611
611
  properties: Record<string, unknown>;
612
612
  id: string;
613
- createdAt?: string | undefined;
614
613
  archived?: boolean | undefined;
614
+ createdAt?: string | undefined;
615
615
  updatedAt?: string | undefined;
616
616
  }>>;
617
617
  error: import("zod").ZodString;
@@ -622,8 +622,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
622
622
  record?: {
623
623
  properties: Record<string, unknown>;
624
624
  id: string;
625
- createdAt?: string | undefined;
626
625
  archived?: boolean | undefined;
626
+ createdAt?: string | undefined;
627
627
  updatedAt?: string | undefined;
628
628
  } | undefined;
629
629
  }, {
@@ -633,8 +633,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
633
633
  record?: {
634
634
  properties: Record<string, unknown>;
635
635
  id: string;
636
- createdAt?: string | undefined;
637
636
  archived?: boolean | undefined;
637
+ createdAt?: string | undefined;
638
638
  updatedAt?: string | undefined;
639
639
  } | undefined;
640
640
  }>, import("zod").ZodObject<{
@@ -649,14 +649,14 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
649
649
  }, "strip", import("zod").ZodTypeAny, {
650
650
  properties: Record<string, unknown>;
651
651
  id: string;
652
- createdAt?: string | undefined;
653
652
  archived?: boolean | undefined;
653
+ createdAt?: string | undefined;
654
654
  updatedAt?: string | undefined;
655
655
  }, {
656
656
  properties: Record<string, unknown>;
657
657
  id: string;
658
- createdAt?: string | undefined;
659
658
  archived?: boolean | undefined;
659
+ createdAt?: string | undefined;
660
660
  updatedAt?: string | undefined;
661
661
  }>>;
662
662
  error: import("zod").ZodString;
@@ -667,8 +667,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
667
667
  record?: {
668
668
  properties: Record<string, unknown>;
669
669
  id: string;
670
- createdAt?: string | undefined;
671
670
  archived?: boolean | undefined;
671
+ createdAt?: string | undefined;
672
672
  updatedAt?: string | undefined;
673
673
  } | undefined;
674
674
  }, {
@@ -678,8 +678,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
678
678
  record?: {
679
679
  properties: Record<string, unknown>;
680
680
  id: string;
681
- createdAt?: string | undefined;
682
681
  archived?: boolean | undefined;
682
+ createdAt?: string | undefined;
683
683
  updatedAt?: string | undefined;
684
684
  } | undefined;
685
685
  }>, import("zod").ZodObject<{
@@ -706,14 +706,14 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
706
706
  }, "strip", import("zod").ZodTypeAny, {
707
707
  properties: Record<string, unknown>;
708
708
  id: string;
709
- createdAt?: string | undefined;
710
709
  archived?: boolean | undefined;
710
+ createdAt?: string | undefined;
711
711
  updatedAt?: string | undefined;
712
712
  }, {
713
713
  properties: Record<string, unknown>;
714
714
  id: string;
715
- createdAt?: string | undefined;
716
715
  archived?: boolean | undefined;
716
+ createdAt?: string | undefined;
717
717
  updatedAt?: string | undefined;
718
718
  }>, "many">>;
719
719
  total: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -739,14 +739,14 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
739
739
  error: string;
740
740
  success: boolean;
741
741
  operation: "search_records";
742
- total?: number | undefined;
743
742
  results?: {
744
743
  properties: Record<string, unknown>;
745
744
  id: string;
746
- createdAt?: string | undefined;
747
745
  archived?: boolean | undefined;
746
+ createdAt?: string | undefined;
748
747
  updatedAt?: string | undefined;
749
748
  }[] | undefined;
749
+ total?: number | undefined;
750
750
  paging?: {
751
751
  next?: {
752
752
  after: string;
@@ -756,14 +756,14 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
756
756
  error: string;
757
757
  success: boolean;
758
758
  operation: "search_records";
759
- total?: number | undefined;
760
759
  results?: {
761
760
  properties: Record<string, unknown>;
762
761
  id: string;
763
- createdAt?: string | undefined;
764
762
  archived?: boolean | undefined;
763
+ createdAt?: string | undefined;
765
764
  updatedAt?: string | undefined;
766
765
  }[] | undefined;
766
+ total?: number | undefined;
767
767
  paging?: {
768
768
  next?: {
769
769
  after: string;
@@ -781,14 +781,14 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
781
781
  }, "strip", import("zod").ZodTypeAny, {
782
782
  properties: Record<string, unknown>;
783
783
  id: string;
784
- createdAt?: string | undefined;
785
784
  archived?: boolean | undefined;
785
+ createdAt?: string | undefined;
786
786
  updatedAt?: string | undefined;
787
787
  }, {
788
788
  properties: Record<string, unknown>;
789
789
  id: string;
790
- createdAt?: string | undefined;
791
790
  archived?: boolean | undefined;
791
+ createdAt?: string | undefined;
792
792
  updatedAt?: string | undefined;
793
793
  }>, "many">>;
794
794
  error: import("zod").ZodString;
@@ -799,8 +799,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
799
799
  results?: {
800
800
  properties: Record<string, unknown>;
801
801
  id: string;
802
- createdAt?: string | undefined;
803
802
  archived?: boolean | undefined;
803
+ createdAt?: string | undefined;
804
804
  updatedAt?: string | undefined;
805
805
  }[] | undefined;
806
806
  }, {
@@ -810,8 +810,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
810
810
  results?: {
811
811
  properties: Record<string, unknown>;
812
812
  id: string;
813
- createdAt?: string | undefined;
814
813
  archived?: boolean | undefined;
814
+ createdAt?: string | undefined;
815
815
  updatedAt?: string | undefined;
816
816
  }[] | undefined;
817
817
  }>, import("zod").ZodObject<{
@@ -826,14 +826,14 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
826
826
  }, "strip", import("zod").ZodTypeAny, {
827
827
  properties: Record<string, unknown>;
828
828
  id: string;
829
- createdAt?: string | undefined;
830
829
  archived?: boolean | undefined;
830
+ createdAt?: string | undefined;
831
831
  updatedAt?: string | undefined;
832
832
  }, {
833
833
  properties: Record<string, unknown>;
834
834
  id: string;
835
- createdAt?: string | undefined;
836
835
  archived?: boolean | undefined;
836
+ createdAt?: string | undefined;
837
837
  updatedAt?: string | undefined;
838
838
  }>, "many">>;
839
839
  error: import("zod").ZodString;
@@ -844,8 +844,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
844
844
  results?: {
845
845
  properties: Record<string, unknown>;
846
846
  id: string;
847
- createdAt?: string | undefined;
848
847
  archived?: boolean | undefined;
848
+ createdAt?: string | undefined;
849
849
  updatedAt?: string | undefined;
850
850
  }[] | undefined;
851
851
  }, {
@@ -855,8 +855,8 @@ export declare class HubSpotBubble<T extends HubSpotParamsInput = HubSpotParamsI
855
855
  results?: {
856
856
  properties: Record<string, unknown>;
857
857
  id: string;
858
- createdAt?: string | undefined;
859
858
  archived?: boolean | undefined;
859
+ createdAt?: string | undefined;
860
860
  updatedAt?: string | undefined;
861
861
  }[] | undefined;
862
862
  }>, import("zod").ZodObject<{
@@ -13,7 +13,7 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
13
13
  }, "strip", z.ZodTypeAny, {
14
14
  timeout: number;
15
15
  query: string;
16
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
16
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[];
17
17
  parameters: unknown[];
18
18
  maxRows: number;
19
19
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -21,7 +21,7 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
21
21
  query: string;
22
22
  credentials?: Partial<Record<CredentialType, string>> | undefined;
23
23
  timeout?: number | undefined;
24
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
24
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
25
25
  parameters?: unknown[] | undefined;
26
26
  maxRows?: number | undefined;
27
27
  }>;
@@ -87,7 +87,7 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
87
87
  }, "strip", z.ZodTypeAny, {
88
88
  timeout: number;
89
89
  query: string;
90
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
90
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[];
91
91
  parameters: unknown[];
92
92
  maxRows: number;
93
93
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -95,7 +95,7 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
95
95
  query: string;
96
96
  credentials?: Partial<Record<CredentialType, string>> | undefined;
97
97
  timeout?: number | undefined;
98
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
98
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
99
99
  parameters?: unknown[] | undefined;
100
100
  maxRows?: number | undefined;
101
101
  }>;