@bubblelab/bubble-core 0.1.73 → 0.1.75

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 (60) hide show
  1. package/dist/bubble-bundle.d.ts +109 -109
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +210 -210
  5. package/dist/bubbles/service-bubble/airtable.d.ts.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.js +3 -1
  7. package/dist/bubbles/service-bubble/airtable.js.map +1 -1
  8. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  9. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +134 -134
  10. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +16 -16
  11. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
  12. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +53 -53
  13. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +90 -90
  14. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +30 -30
  15. package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
  16. package/dist/bubbles/service-bubble/firecrawl.d.ts +250 -250
  17. package/dist/bubbles/service-bubble/followupboss.d.ts +236 -236
  18. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
  19. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +30 -30
  20. package/dist/bubbles/service-bubble/github.d.ts +104 -104
  21. package/dist/bubbles/service-bubble/gmail.d.ts +176 -176
  22. package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
  23. package/dist/bubbles/service-bubble/google-drive.d.ts +130 -130
  24. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
  25. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +38 -38
  26. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
  28. package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
  29. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +38 -38
  30. package/dist/bubbles/service-bubble/notion/notion.d.ts +512 -512
  31. package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
  32. package/dist/bubbles/service-bubble/resend.d.ts +12 -12
  33. package/dist/bubbles/service-bubble/slack/slack.d.ts +535 -535
  34. package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
  35. package/dist/bubbles/service-bubble/slack/slack.utils.js +29 -20
  36. package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
  37. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  38. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +80 -80
  39. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +71 -71
  40. package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
  41. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
  42. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +24 -24
  43. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  44. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
  46. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
  47. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +302 -302
  48. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  49. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
  50. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +94 -94
  51. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  52. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  53. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  54. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
  55. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
  56. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  57. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +78 -78
  58. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +76 -76
  59. package/dist/bubbles.json +3 -2
  60. package/package.json +2 -2
@@ -44,16 +44,16 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
44
44
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
45
45
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
46
46
  }, "strip", import("zod").ZodTypeAny, {
47
- name: string;
48
47
  operation: "create_customer";
49
- credentials?: Partial<Record<CredentialType, string>> | undefined;
48
+ name: string;
50
49
  email?: string | undefined;
50
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
51
51
  metadata?: Record<string, string> | undefined;
52
52
  }, {
53
- name: string;
54
53
  operation: "create_customer";
55
- credentials?: Partial<Record<CredentialType, string>> | undefined;
54
+ name: string;
56
55
  email?: string | undefined;
56
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
57
57
  metadata?: Record<string, string> | undefined;
58
58
  }>, import("zod").ZodObject<{
59
59
  operation: import("zod").ZodLiteral<"list_customers">;
@@ -63,12 +63,12 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
63
63
  }, "strip", import("zod").ZodTypeAny, {
64
64
  operation: "list_customers";
65
65
  limit: number;
66
- credentials?: Partial<Record<CredentialType, string>> | undefined;
67
66
  email?: string | undefined;
67
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
68
68
  }, {
69
69
  operation: "list_customers";
70
- credentials?: Partial<Record<CredentialType, string>> | undefined;
71
70
  email?: string | undefined;
71
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
72
72
  limit?: number | undefined;
73
73
  }>, import("zod").ZodObject<{
74
74
  operation: import("zod").ZodLiteral<"create_product">;
@@ -77,14 +77,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
77
77
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
78
78
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
79
79
  }, "strip", import("zod").ZodTypeAny, {
80
- name: string;
81
80
  operation: "create_product";
81
+ name: string;
82
82
  description?: string | undefined;
83
83
  credentials?: Partial<Record<CredentialType, string>> | undefined;
84
84
  metadata?: Record<string, string> | undefined;
85
85
  }, {
86
- name: string;
87
86
  operation: "create_product";
87
+ name: string;
88
88
  description?: string | undefined;
89
89
  credentials?: Partial<Record<CredentialType, string>> | undefined;
90
90
  metadata?: Record<string, string> | undefined;
@@ -136,8 +136,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
136
136
  product: string;
137
137
  unit_amount: number;
138
138
  credentials?: Partial<Record<CredentialType, string>> | undefined;
139
- metadata?: Record<string, string> | undefined;
140
139
  currency?: string | undefined;
140
+ metadata?: Record<string, string> | undefined;
141
141
  recurring?: {
142
142
  interval: "week" | "month" | "year" | "day";
143
143
  interval_count?: number | 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
- subscription_id: string;
303
302
  cancel_at_period_end: boolean;
303
+ subscription_id: string;
304
304
  credentials?: Partial<Record<CredentialType, string>> | undefined;
305
305
  }, {
306
306
  operation: "cancel_subscription";
@@ -371,9 +371,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
371
371
  }>>;
372
372
  error: import("zod").ZodString;
373
373
  }, "strip", import("zod").ZodTypeAny, {
374
+ operation: "create_customer";
374
375
  error: string;
375
376
  success: boolean;
376
- operation: "create_customer";
377
377
  customer?: {
378
378
  id: string;
379
379
  created: number;
@@ -382,9 +382,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
382
382
  metadata?: Record<string, string> | undefined;
383
383
  } | undefined;
384
384
  }, {
385
+ operation: "create_customer";
385
386
  error: string;
386
387
  success: boolean;
387
- operation: "create_customer";
388
388
  customer?: {
389
389
  id: string;
390
390
  created: number;
@@ -416,9 +416,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
416
416
  }>, "many">>;
417
417
  error: import("zod").ZodString;
418
418
  }, "strip", import("zod").ZodTypeAny, {
419
+ operation: "list_customers";
419
420
  error: string;
420
421
  success: boolean;
421
- operation: "list_customers";
422
422
  customers?: {
423
423
  id: string;
424
424
  created: number;
@@ -427,9 +427,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
427
427
  metadata?: Record<string, string> | undefined;
428
428
  }[] | undefined;
429
429
  }, {
430
+ operation: "list_customers";
430
431
  error: string;
431
432
  success: boolean;
432
- operation: "list_customers";
433
433
  customers?: {
434
434
  id: string;
435
435
  created: number;
@@ -464,9 +464,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
464
464
  }>>;
465
465
  error: import("zod").ZodString;
466
466
  }, "strip", import("zod").ZodTypeAny, {
467
+ operation: "create_product";
467
468
  error: string;
468
469
  success: boolean;
469
- operation: "create_product";
470
470
  product?: {
471
471
  name: string;
472
472
  id: string;
@@ -476,9 +476,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
476
476
  metadata?: Record<string, string> | undefined;
477
477
  } | undefined;
478
478
  }, {
479
+ operation: "create_product";
479
480
  error: string;
480
481
  success: boolean;
481
- operation: "create_product";
482
482
  product?: {
483
483
  name: string;
484
484
  id: string;
@@ -514,9 +514,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
514
514
  }>, "many">>;
515
515
  error: import("zod").ZodString;
516
516
  }, "strip", import("zod").ZodTypeAny, {
517
+ operation: "list_products";
517
518
  error: string;
518
519
  success: boolean;
519
- operation: "list_products";
520
520
  products?: {
521
521
  name: string;
522
522
  id: string;
@@ -526,9 +526,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
526
526
  metadata?: Record<string, string> | undefined;
527
527
  }[] | undefined;
528
528
  }, {
529
+ operation: "list_products";
529
530
  error: string;
530
531
  success: boolean;
531
- operation: "list_products";
532
532
  products?: {
533
533
  name: string;
534
534
  id: string;
@@ -550,19 +550,19 @@ 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: "recurring" | "one_time";
553
+ type: "one_time" | "recurring";
554
554
  id: string;
555
- created: number;
556
555
  currency: string;
556
+ created: number;
557
557
  active: boolean;
558
558
  product: string;
559
559
  unit_amount: number | null;
560
560
  metadata?: Record<string, string> | undefined;
561
561
  }, {
562
- type: "recurring" | "one_time";
562
+ type: "one_time" | "recurring";
563
563
  id: string;
564
- created: number;
565
564
  currency: string;
565
+ created: number;
566
566
  active: boolean;
567
567
  product: string;
568
568
  unit_amount: number | null;
@@ -570,28 +570,28 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
570
570
  }>>;
571
571
  error: import("zod").ZodString;
572
572
  }, "strip", import("zod").ZodTypeAny, {
573
+ operation: "create_price";
573
574
  error: string;
574
575
  success: boolean;
575
- operation: "create_price";
576
576
  price?: {
577
- type: "recurring" | "one_time";
577
+ type: "one_time" | "recurring";
578
578
  id: string;
579
- created: number;
580
579
  currency: string;
580
+ created: number;
581
581
  active: boolean;
582
582
  product: string;
583
583
  unit_amount: number | null;
584
584
  metadata?: Record<string, string> | undefined;
585
585
  } | undefined;
586
586
  }, {
587
+ operation: "create_price";
587
588
  error: string;
588
589
  success: boolean;
589
- operation: "create_price";
590
590
  price?: {
591
- type: "recurring" | "one_time";
591
+ type: "one_time" | "recurring";
592
592
  id: string;
593
- created: number;
594
593
  currency: string;
594
+ created: number;
595
595
  active: boolean;
596
596
  product: string;
597
597
  unit_amount: number | null;
@@ -610,19 +610,19 @@ 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: "recurring" | "one_time";
613
+ type: "one_time" | "recurring";
614
614
  id: string;
615
- created: number;
616
615
  currency: string;
616
+ created: number;
617
617
  active: boolean;
618
618
  product: string;
619
619
  unit_amount: number | null;
620
620
  metadata?: Record<string, string> | undefined;
621
621
  }, {
622
- type: "recurring" | "one_time";
622
+ type: "one_time" | "recurring";
623
623
  id: string;
624
- created: number;
625
624
  currency: string;
625
+ created: number;
626
626
  active: boolean;
627
627
  product: string;
628
628
  unit_amount: number | null;
@@ -630,28 +630,28 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
630
630
  }>, "many">>;
631
631
  error: import("zod").ZodString;
632
632
  }, "strip", import("zod").ZodTypeAny, {
633
+ operation: "list_prices";
633
634
  error: string;
634
635
  success: boolean;
635
- operation: "list_prices";
636
636
  prices?: {
637
- type: "recurring" | "one_time";
637
+ type: "one_time" | "recurring";
638
638
  id: string;
639
- created: number;
640
639
  currency: string;
640
+ created: number;
641
641
  active: boolean;
642
642
  product: string;
643
643
  unit_amount: number | null;
644
644
  metadata?: Record<string, string> | undefined;
645
645
  }[] | undefined;
646
646
  }, {
647
+ operation: "list_prices";
647
648
  error: string;
648
649
  success: boolean;
649
- operation: "list_prices";
650
650
  prices?: {
651
- type: "recurring" | "one_time";
651
+ type: "one_time" | "recurring";
652
652
  id: string;
653
- created: number;
654
653
  currency: string;
654
+ created: number;
655
655
  active: boolean;
656
656
  product: string;
657
657
  unit_amount: number | null;
@@ -681,9 +681,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
681
681
  }>>;
682
682
  error: import("zod").ZodString;
683
683
  }, "strip", import("zod").ZodTypeAny, {
684
+ operation: "create_payment_link";
684
685
  error: string;
685
686
  success: boolean;
686
- operation: "create_payment_link";
687
687
  payment_link?: {
688
688
  url: string;
689
689
  id: string;
@@ -692,9 +692,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
692
692
  created?: number | undefined;
693
693
  } | undefined;
694
694
  }, {
695
+ operation: "create_payment_link";
695
696
  error: string;
696
697
  success: boolean;
697
- operation: "create_payment_link";
698
698
  payment_link?: {
699
699
  url: string;
700
700
  id: string;
@@ -719,8 +719,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
719
719
  }, "strip", import("zod").ZodTypeAny, {
720
720
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
721
721
  id: string;
722
- total: number;
723
722
  currency: string;
723
+ total: number;
724
724
  customer: string | null;
725
725
  metadata?: Record<string, string> | undefined;
726
726
  created?: number | undefined;
@@ -730,8 +730,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
730
730
  }, {
731
731
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
732
732
  id: string;
733
- total: number;
734
733
  currency: string;
734
+ total: number;
735
735
  customer: string | null;
736
736
  metadata?: Record<string, string> | undefined;
737
737
  created?: number | undefined;
@@ -741,14 +741,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
741
741
  }>>;
742
742
  error: import("zod").ZodString;
743
743
  }, "strip", import("zod").ZodTypeAny, {
744
+ operation: "create_invoice";
744
745
  error: string;
745
746
  success: boolean;
746
- operation: "create_invoice";
747
747
  invoice?: {
748
748
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
749
749
  id: string;
750
- total: number;
751
750
  currency: string;
751
+ total: number;
752
752
  customer: string | null;
753
753
  metadata?: Record<string, string> | undefined;
754
754
  created?: number | undefined;
@@ -757,14 +757,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
757
757
  invoice_pdf?: string | null | undefined;
758
758
  } | undefined;
759
759
  }, {
760
+ operation: "create_invoice";
760
761
  error: string;
761
762
  success: boolean;
762
- operation: "create_invoice";
763
763
  invoice?: {
764
764
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
765
765
  id: string;
766
- total: number;
767
766
  currency: string;
767
+ total: number;
768
768
  customer: string | null;
769
769
  metadata?: Record<string, string> | undefined;
770
770
  created?: number | undefined;
@@ -789,8 +789,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
789
789
  }, "strip", import("zod").ZodTypeAny, {
790
790
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
791
791
  id: string;
792
- total: number;
793
792
  currency: string;
793
+ total: number;
794
794
  customer: string | null;
795
795
  metadata?: Record<string, string> | undefined;
796
796
  created?: number | undefined;
@@ -800,8 +800,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
800
800
  }, {
801
801
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
802
802
  id: string;
803
- total: number;
804
803
  currency: string;
804
+ total: number;
805
805
  customer: string | null;
806
806
  metadata?: Record<string, string> | undefined;
807
807
  created?: number | undefined;
@@ -811,14 +811,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
811
811
  }>, "many">>;
812
812
  error: import("zod").ZodString;
813
813
  }, "strip", import("zod").ZodTypeAny, {
814
+ operation: "list_invoices";
814
815
  error: string;
815
816
  success: boolean;
816
- operation: "list_invoices";
817
817
  invoices?: {
818
818
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
819
819
  id: string;
820
- total: number;
821
820
  currency: string;
821
+ total: number;
822
822
  customer: string | null;
823
823
  metadata?: Record<string, string> | undefined;
824
824
  created?: number | undefined;
@@ -827,14 +827,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
827
827
  invoice_pdf?: string | null | undefined;
828
828
  }[] | undefined;
829
829
  }, {
830
+ operation: "list_invoices";
830
831
  error: string;
831
832
  success: boolean;
832
- operation: "list_invoices";
833
833
  invoices?: {
834
834
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
835
835
  id: string;
836
- total: number;
837
836
  currency: string;
837
+ total: number;
838
838
  customer: string | null;
839
839
  metadata?: Record<string, string> | undefined;
840
840
  created?: number | undefined;
@@ -859,8 +859,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
859
859
  }, "strip", import("zod").ZodTypeAny, {
860
860
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
861
861
  id: string;
862
- total: number;
863
862
  currency: string;
863
+ total: number;
864
864
  customer: string | null;
865
865
  metadata?: Record<string, string> | undefined;
866
866
  created?: number | undefined;
@@ -870,8 +870,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
870
870
  }, {
871
871
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
872
872
  id: string;
873
- total: number;
874
873
  currency: string;
874
+ total: number;
875
875
  customer: string | null;
876
876
  metadata?: Record<string, string> | undefined;
877
877
  created?: number | undefined;
@@ -881,14 +881,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
881
881
  }>>;
882
882
  error: import("zod").ZodString;
883
883
  }, "strip", import("zod").ZodTypeAny, {
884
+ operation: "retrieve_invoice";
884
885
  error: string;
885
886
  success: boolean;
886
- operation: "retrieve_invoice";
887
887
  invoice?: {
888
888
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
889
889
  id: string;
890
- total: number;
891
890
  currency: string;
891
+ total: number;
892
892
  customer: string | null;
893
893
  metadata?: Record<string, string> | undefined;
894
894
  created?: number | undefined;
@@ -897,14 +897,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
897
897
  invoice_pdf?: string | null | undefined;
898
898
  } | undefined;
899
899
  }, {
900
+ operation: "retrieve_invoice";
900
901
  error: string;
901
902
  success: boolean;
902
- operation: "retrieve_invoice";
903
903
  invoice?: {
904
904
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
905
905
  id: string;
906
- total: number;
907
906
  currency: string;
907
+ total: number;
908
908
  customer: string | null;
909
909
  metadata?: Record<string, string> | undefined;
910
910
  created?: number | undefined;
@@ -929,8 +929,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
929
929
  }, "strip", import("zod").ZodTypeAny, {
930
930
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
931
931
  id: string;
932
- total: number;
933
932
  currency: string;
933
+ total: number;
934
934
  customer: string | null;
935
935
  metadata?: Record<string, string> | undefined;
936
936
  created?: number | undefined;
@@ -940,8 +940,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
940
940
  }, {
941
941
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
942
942
  id: string;
943
- total: number;
944
943
  currency: string;
944
+ total: number;
945
945
  customer: string | null;
946
946
  metadata?: Record<string, string> | undefined;
947
947
  created?: number | undefined;
@@ -951,14 +951,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
951
951
  }>>;
952
952
  error: import("zod").ZodString;
953
953
  }, "strip", import("zod").ZodTypeAny, {
954
+ operation: "finalize_invoice";
954
955
  error: string;
955
956
  success: boolean;
956
- operation: "finalize_invoice";
957
957
  invoice?: {
958
958
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
959
959
  id: string;
960
- total: number;
961
960
  currency: string;
961
+ total: number;
962
962
  customer: string | null;
963
963
  metadata?: Record<string, string> | undefined;
964
964
  created?: number | undefined;
@@ -967,14 +967,14 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
967
967
  invoice_pdf?: string | null | undefined;
968
968
  } | undefined;
969
969
  }, {
970
+ operation: "finalize_invoice";
970
971
  error: string;
971
972
  success: boolean;
972
- operation: "finalize_invoice";
973
973
  invoice?: {
974
974
  status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
975
975
  id: string;
976
- total: number;
977
976
  currency: string;
977
+ total: number;
978
978
  customer: string | null;
979
979
  metadata?: Record<string, string> | undefined;
980
980
  created?: number | undefined;
@@ -1027,9 +1027,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1027
1027
  }>>;
1028
1028
  error: import("zod").ZodString;
1029
1029
  }, "strip", import("zod").ZodTypeAny, {
1030
+ operation: "get_balance";
1030
1031
  error: string;
1031
1032
  success: boolean;
1032
- operation: "get_balance";
1033
1033
  balance?: {
1034
1034
  pending: {
1035
1035
  currency: string;
@@ -1041,9 +1041,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1041
1041
  }[];
1042
1042
  } | undefined;
1043
1043
  }, {
1044
+ operation: "get_balance";
1044
1045
  error: string;
1045
1046
  success: boolean;
1046
- operation: "get_balance";
1047
1047
  balance?: {
1048
1048
  pending: {
1049
1049
  currency: string;
@@ -1068,43 +1068,43 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1068
1068
  }, "strip", import("zod").ZodTypeAny, {
1069
1069
  status: "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "succeeded";
1070
1070
  id: string;
1071
- created: number;
1072
1071
  currency: string;
1072
+ created: number;
1073
1073
  amount: number;
1074
1074
  metadata?: Record<string, string> | undefined;
1075
1075
  customer?: string | null | undefined;
1076
1076
  }, {
1077
1077
  status: "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "succeeded";
1078
1078
  id: string;
1079
- created: number;
1080
1079
  currency: string;
1080
+ created: number;
1081
1081
  amount: number;
1082
1082
  metadata?: Record<string, string> | undefined;
1083
1083
  customer?: string | null | undefined;
1084
1084
  }>, "many">>;
1085
1085
  error: import("zod").ZodString;
1086
1086
  }, "strip", import("zod").ZodTypeAny, {
1087
+ operation: "list_payment_intents";
1087
1088
  error: string;
1088
1089
  success: boolean;
1089
- operation: "list_payment_intents";
1090
1090
  payment_intents?: {
1091
1091
  status: "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "succeeded";
1092
1092
  id: string;
1093
- created: number;
1094
1093
  currency: string;
1094
+ created: number;
1095
1095
  amount: number;
1096
1096
  metadata?: Record<string, string> | undefined;
1097
1097
  customer?: string | null | undefined;
1098
1098
  }[] | undefined;
1099
1099
  }, {
1100
+ operation: "list_payment_intents";
1100
1101
  error: string;
1101
1102
  success: boolean;
1102
- operation: "list_payment_intents";
1103
1103
  payment_intents?: {
1104
1104
  status: "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "succeeded";
1105
1105
  id: string;
1106
- created: number;
1107
1106
  currency: string;
1107
+ created: number;
1108
1108
  amount: number;
1109
1109
  metadata?: Record<string, string> | undefined;
1110
1110
  customer?: string | null | undefined;
@@ -1142,9 +1142,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1142
1142
  }>, "many">>;
1143
1143
  error: import("zod").ZodString;
1144
1144
  }, "strip", import("zod").ZodTypeAny, {
1145
+ operation: "list_subscriptions";
1145
1146
  error: string;
1146
1147
  success: boolean;
1147
- operation: "list_subscriptions";
1148
1148
  subscriptions?: {
1149
1149
  status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
1150
1150
  id: string;
@@ -1156,9 +1156,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1156
1156
  current_period_end?: number | undefined;
1157
1157
  }[] | undefined;
1158
1158
  }, {
1159
+ operation: "list_subscriptions";
1159
1160
  error: string;
1160
1161
  success: boolean;
1161
- operation: "list_subscriptions";
1162
1162
  subscriptions?: {
1163
1163
  status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
1164
1164
  id: string;
@@ -1202,9 +1202,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1202
1202
  }>>;
1203
1203
  error: import("zod").ZodString;
1204
1204
  }, "strip", import("zod").ZodTypeAny, {
1205
+ operation: "cancel_subscription";
1205
1206
  error: string;
1206
1207
  success: boolean;
1207
- operation: "cancel_subscription";
1208
1208
  subscription?: {
1209
1209
  status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
1210
1210
  id: string;
@@ -1216,9 +1216,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1216
1216
  current_period_end?: number | undefined;
1217
1217
  } | undefined;
1218
1218
  }, {
1219
+ operation: "cancel_subscription";
1219
1220
  error: string;
1220
1221
  success: boolean;
1221
- operation: "cancel_subscription";
1222
1222
  subscription?: {
1223
1223
  status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
1224
1224
  id: string;
@@ -1253,9 +1253,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1253
1253
  }>, "many">>;
1254
1254
  error: import("zod").ZodString;
1255
1255
  }, "strip", import("zod").ZodTypeAny, {
1256
+ operation: "list_payment_links";
1256
1257
  error: string;
1257
1258
  success: boolean;
1258
- operation: "list_payment_links";
1259
1259
  payment_links?: {
1260
1260
  url: string;
1261
1261
  id: string;
@@ -1264,9 +1264,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1264
1264
  created?: number | undefined;
1265
1265
  }[] | undefined;
1266
1266
  }, {
1267
+ operation: "list_payment_links";
1267
1268
  error: string;
1268
1269
  success: boolean;
1269
- operation: "list_payment_links";
1270
1270
  payment_links?: {
1271
1271
  url: string;
1272
1272
  id: string;
@@ -1307,9 +1307,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1307
1307
  }>>;
1308
1308
  error: import("zod").ZodString;
1309
1309
  }, "strip", import("zod").ZodTypeAny, {
1310
+ operation: "create_subscription";
1310
1311
  error: string;
1311
1312
  success: boolean;
1312
- operation: "create_subscription";
1313
1313
  subscription?: {
1314
1314
  status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
1315
1315
  id: string;
@@ -1321,9 +1321,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1321
1321
  current_period_end?: number | undefined;
1322
1322
  } | undefined;
1323
1323
  }, {
1324
+ operation: "create_subscription";
1324
1325
  error: string;
1325
1326
  success: boolean;
1326
- operation: "create_subscription";
1327
1327
  subscription?: {
1328
1328
  status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
1329
1329
  id: string;