@bubblelab/bubble-core 0.1.71 → 0.1.72

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 (33) hide show
  1. package/dist/bubble-bundle.d.ts +47 -47
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +40 -40
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +80 -80
  9. package/dist/bubbles/service-bubble/firecrawl.d.ts +274 -274
  10. package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
  11. package/dist/bubbles/service-bubble/github.d.ts +36 -36
  12. package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
  13. package/dist/bubbles/service-bubble/google-drive.d.ts +1 -62
  14. package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
  15. package/dist/bubbles/service-bubble/google-drive.js +0 -58
  16. package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
  17. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  18. package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/slack/slack.d.ts +216 -216
  22. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +11 -11
  23. package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
  24. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
  25. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +234 -234
  26. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
  27. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  28. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
  29. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
  30. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +16 -16
  31. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
  32. package/dist/bubbles.json +2 -67
  33. package/package.json +2 -2
@@ -283,12 +283,12 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
283
283
  }, "strip", import("zod").ZodTypeAny, {
284
284
  operation: "list_subscriptions";
285
285
  limit: number;
286
- status?: "all" | "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | undefined;
286
+ status?: "canceled" | "all" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | undefined;
287
287
  credentials?: Partial<Record<CredentialType, string>> | undefined;
288
288
  customer?: string | undefined;
289
289
  }, {
290
290
  operation: "list_subscriptions";
291
- status?: "all" | "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | undefined;
291
+ status?: "canceled" | "all" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | undefined;
292
292
  credentials?: Partial<Record<CredentialType, string>> | undefined;
293
293
  limit?: number | undefined;
294
294
  customer?: string | undefined;
@@ -299,8 +299,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
299
299
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
300
300
  }, "strip", import("zod").ZodTypeAny, {
301
301
  operation: "cancel_subscription";
302
- cancel_at_period_end: boolean;
303
302
  subscription_id: string;
303
+ cancel_at_period_end: boolean;
304
304
  credentials?: Partial<Record<CredentialType, string>> | undefined;
305
305
  }, {
306
306
  operation: "cancel_subscription";
@@ -550,7 +550,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
550
550
  created: import("zod").ZodNumber;
551
551
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
552
552
  }, "strip", import("zod").ZodTypeAny, {
553
- type: "one_time" | "recurring";
553
+ type: "recurring" | "one_time";
554
554
  id: string;
555
555
  created: number;
556
556
  currency: string;
@@ -559,7 +559,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
559
559
  unit_amount: number | null;
560
560
  metadata?: Record<string, string> | undefined;
561
561
  }, {
562
- type: "one_time" | "recurring";
562
+ type: "recurring" | "one_time";
563
563
  id: string;
564
564
  created: number;
565
565
  currency: string;
@@ -574,7 +574,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
574
574
  success: boolean;
575
575
  error: string;
576
576
  price?: {
577
- type: "one_time" | "recurring";
577
+ type: "recurring" | "one_time";
578
578
  id: string;
579
579
  created: number;
580
580
  currency: string;
@@ -588,7 +588,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
588
588
  success: boolean;
589
589
  error: string;
590
590
  price?: {
591
- type: "one_time" | "recurring";
591
+ type: "recurring" | "one_time";
592
592
  id: string;
593
593
  created: number;
594
594
  currency: string;
@@ -610,7 +610,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
610
610
  created: import("zod").ZodNumber;
611
611
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
612
612
  }, "strip", import("zod").ZodTypeAny, {
613
- type: "one_time" | "recurring";
613
+ type: "recurring" | "one_time";
614
614
  id: string;
615
615
  created: number;
616
616
  currency: string;
@@ -619,7 +619,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
619
619
  unit_amount: number | null;
620
620
  metadata?: Record<string, string> | undefined;
621
621
  }, {
622
- type: "one_time" | "recurring";
622
+ type: "recurring" | "one_time";
623
623
  id: string;
624
624
  created: number;
625
625
  currency: string;
@@ -634,7 +634,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
634
634
  success: boolean;
635
635
  error: string;
636
636
  prices?: {
637
- type: "one_time" | "recurring";
637
+ type: "recurring" | "one_time";
638
638
  id: string;
639
639
  created: number;
640
640
  currency: string;
@@ -648,7 +648,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
648
648
  success: boolean;
649
649
  error: string;
650
650
  prices?: {
651
- type: "one_time" | "recurring";
651
+ type: "recurring" | "one_time";
652
652
  id: string;
653
653
  created: number;
654
654
  currency: string;
@@ -820,8 +820,8 @@ declare const TelegramParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
820
820
  operation: "get_updates";
821
821
  credentials?: Partial<Record<CredentialType, string>> | undefined;
822
822
  timeout?: number | undefined;
823
- offset?: number | undefined;
824
823
  limit?: number | undefined;
824
+ offset?: number | undefined;
825
825
  allowed_updates?: string[] | undefined;
826
826
  }>, z.ZodObject<{
827
827
  operation: z.ZodLiteral<"send_chat_action">;
@@ -4681,8 +4681,8 @@ export declare class TelegramBubble<T extends TelegramParams = TelegramParams> e
4681
4681
  operation: "get_updates";
4682
4682
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4683
4683
  timeout?: number | undefined;
4684
- offset?: number | undefined;
4685
4684
  limit?: number | undefined;
4685
+ offset?: number | undefined;
4686
4686
  allowed_updates?: string[] | undefined;
4687
4687
  }>, z.ZodObject<{
4688
4688
  operation: z.ZodLiteral<"send_chat_action">;
@@ -68,8 +68,8 @@ declare const ContactSchema: z.ZodObject<{
68
68
  name: string | null;
69
69
  role: "founder" | "cxo" | "decision_maker";
70
70
  location: string | null;
71
- headline: string | null;
72
71
  summary: string | null;
72
+ headline: string | null;
73
73
  emails: string[] | null;
74
74
  linkedinUrl: string | null;
75
75
  languages: string[] | null;
@@ -99,8 +99,8 @@ declare const ContactSchema: z.ZodObject<{
99
99
  name: string | null;
100
100
  role: "founder" | "cxo" | "decision_maker";
101
101
  location: string | null;
102
- headline: string | null;
103
102
  summary: string | null;
103
+ headline: string | null;
104
104
  emails: string[] | null;
105
105
  linkedinUrl: string | null;
106
106
  languages: string[] | null;
@@ -206,8 +206,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
206
206
  name: string | null;
207
207
  role: "founder" | "cxo" | "decision_maker";
208
208
  location: string | null;
209
- headline: string | null;
210
209
  summary: string | null;
210
+ headline: string | null;
211
211
  emails: string[] | null;
212
212
  linkedinUrl: string | null;
213
213
  languages: string[] | null;
@@ -237,8 +237,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
237
237
  name: string | null;
238
238
  role: "founder" | "cxo" | "decision_maker";
239
239
  location: string | null;
240
- headline: string | null;
241
240
  summary: string | null;
241
+ headline: string | null;
242
242
  emails: string[] | null;
243
243
  linkedinUrl: string | null;
244
244
  languages: string[] | null;
@@ -325,8 +325,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
325
325
  name: string | null;
326
326
  role: "founder" | "cxo" | "decision_maker";
327
327
  location: string | null;
328
- headline: string | null;
329
328
  summary: string | null;
329
+ headline: string | null;
330
330
  emails: string[] | null;
331
331
  linkedinUrl: string | null;
332
332
  languages: string[] | null;
@@ -374,8 +374,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
374
374
  name: string | null;
375
375
  role: "founder" | "cxo" | "decision_maker";
376
376
  location: string | null;
377
- headline: string | null;
378
377
  summary: string | null;
378
+ headline: string | null;
379
379
  emails: string[] | null;
380
380
  linkedinUrl: string | null;
381
381
  languages: string[] | null;
@@ -507,8 +507,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
507
507
  name: string | null;
508
508
  role: "founder" | "cxo" | "decision_maker";
509
509
  location: string | null;
510
- headline: string | null;
511
510
  summary: string | null;
511
+ headline: string | null;
512
512
  emails: string[] | null;
513
513
  linkedinUrl: string | null;
514
514
  languages: string[] | null;
@@ -538,8 +538,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
538
538
  name: string | null;
539
539
  role: "founder" | "cxo" | "decision_maker";
540
540
  location: string | null;
541
- headline: string | null;
542
541
  summary: string | null;
542
+ headline: string | null;
543
543
  emails: string[] | null;
544
544
  linkedinUrl: string | null;
545
545
  languages: string[] | null;
@@ -626,8 +626,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
626
626
  name: string | null;
627
627
  role: "founder" | "cxo" | "decision_maker";
628
628
  location: string | null;
629
- headline: string | null;
630
629
  summary: string | null;
630
+ headline: string | null;
631
631
  emails: string[] | null;
632
632
  linkedinUrl: string | null;
633
633
  languages: string[] | null;
@@ -675,8 +675,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
675
675
  name: string | null;
676
676
  role: "founder" | "cxo" | "decision_maker";
677
677
  location: string | null;
678
- headline: string | null;
679
678
  summary: string | null;
679
+ headline: string | null;
680
680
  emails: string[] | null;
681
681
  linkedinUrl: string | null;
682
682
  languages: string[] | null;