@bubblelab/bubble-core 0.1.51 → 0.1.53

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 (40) hide show
  1. package/dist/bubble-bundle.d.ts +50 -50
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +8 -8
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/airtable.d.ts +72 -72
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +124 -124
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +48 -48
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  10. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +36 -36
  11. package/dist/bubbles/service-bubble/github.d.ts +56 -56
  12. package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
  13. package/dist/bubbles/service-bubble/google-drive.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  15. package/dist/bubbles/service-bubble/jira/jira.d.ts +28 -28
  16. package/dist/bubbles/service-bubble/notion/notion.d.ts +392 -392
  17. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  18. package/dist/bubbles/service-bubble/slack/slack.d.ts +28 -28
  19. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +221 -32
  20. package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
  21. package/dist/bubbles/service-bubble/stripe/stripe.js +61 -0
  22. package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
  23. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +233 -40
  24. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
  25. package/dist/bubbles/service-bubble/stripe/stripe.schema.js +50 -0
  26. package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
  27. package/dist/bubbles/service-bubble/telegram.d.ts +140 -140
  28. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  29. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
  30. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +10 -10
  31. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
  33. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
  34. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  35. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
  36. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
  37. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  38. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
  39. package/dist/bubbles.json +272 -2
  40. package/package.json +2 -2
@@ -223,6 +223,33 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
223
223
  customer?: string | undefined;
224
224
  credentials?: Partial<Record<CredentialType, string>> | undefined;
225
225
  limit?: number | undefined;
226
+ }>, import("zod").ZodObject<{
227
+ operation: import("zod").ZodLiteral<"retrieve_invoice">;
228
+ invoice_id: import("zod").ZodString;
229
+ credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
230
+ }, "strip", import("zod").ZodTypeAny, {
231
+ operation: "retrieve_invoice";
232
+ invoice_id: string;
233
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
234
+ }, {
235
+ operation: "retrieve_invoice";
236
+ invoice_id: string;
237
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
238
+ }>, import("zod").ZodObject<{
239
+ operation: import("zod").ZodLiteral<"finalize_invoice">;
240
+ invoice_id: import("zod").ZodString;
241
+ auto_advance: import("zod").ZodOptional<import("zod").ZodBoolean>;
242
+ credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
243
+ }, "strip", import("zod").ZodTypeAny, {
244
+ operation: "finalize_invoice";
245
+ invoice_id: string;
246
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
247
+ auto_advance?: boolean | undefined;
248
+ }, {
249
+ operation: "finalize_invoice";
250
+ invoice_id: string;
251
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
252
+ auto_advance?: boolean | undefined;
226
253
  }>, import("zod").ZodObject<{
227
254
  operation: import("zod").ZodLiteral<"get_balance">;
228
255
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
@@ -523,18 +550,18 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
523
550
  created: import("zod").ZodNumber;
524
551
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
525
552
  }, "strip", import("zod").ZodTypeAny, {
526
- type: "one_time" | "recurring";
527
553
  id: string;
528
554
  created: number;
555
+ type: "one_time" | "recurring";
529
556
  active: boolean;
530
557
  product: string;
531
558
  unit_amount: number | null;
532
559
  currency: string;
533
560
  metadata?: Record<string, string> | undefined;
534
561
  }, {
535
- type: "one_time" | "recurring";
536
562
  id: string;
537
563
  created: number;
564
+ type: "one_time" | "recurring";
538
565
  active: boolean;
539
566
  product: string;
540
567
  unit_amount: number | null;
@@ -547,9 +574,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
547
574
  success: boolean;
548
575
  error: string;
549
576
  price?: {
550
- type: "one_time" | "recurring";
551
577
  id: string;
552
578
  created: number;
579
+ type: "one_time" | "recurring";
553
580
  active: boolean;
554
581
  product: string;
555
582
  unit_amount: number | null;
@@ -561,9 +588,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
561
588
  success: boolean;
562
589
  error: string;
563
590
  price?: {
564
- type: "one_time" | "recurring";
565
591
  id: string;
566
592
  created: number;
593
+ type: "one_time" | "recurring";
567
594
  active: boolean;
568
595
  product: string;
569
596
  unit_amount: number | null;
@@ -583,18 +610,18 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
583
610
  created: import("zod").ZodNumber;
584
611
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
585
612
  }, "strip", import("zod").ZodTypeAny, {
586
- type: "one_time" | "recurring";
587
613
  id: string;
588
614
  created: number;
615
+ type: "one_time" | "recurring";
589
616
  active: boolean;
590
617
  product: string;
591
618
  unit_amount: number | null;
592
619
  currency: string;
593
620
  metadata?: Record<string, string> | undefined;
594
621
  }, {
595
- type: "one_time" | "recurring";
596
622
  id: string;
597
623
  created: number;
624
+ type: "one_time" | "recurring";
598
625
  active: boolean;
599
626
  product: string;
600
627
  unit_amount: number | null;
@@ -607,9 +634,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
607
634
  success: boolean;
608
635
  error: string;
609
636
  prices?: {
610
- type: "one_time" | "recurring";
611
637
  id: string;
612
638
  created: number;
639
+ type: "one_time" | "recurring";
613
640
  active: boolean;
614
641
  product: string;
615
642
  unit_amount: number | null;
@@ -621,9 +648,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
621
648
  success: boolean;
622
649
  error: string;
623
650
  prices?: {
624
- type: "one_time" | "recurring";
625
651
  id: string;
626
652
  created: number;
653
+ type: "one_time" | "recurring";
627
654
  active: boolean;
628
655
  product: string;
629
656
  unit_amount: number | null;
@@ -685,26 +712,32 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
685
712
  total: import("zod").ZodNumber;
686
713
  currency: import("zod").ZodString;
687
714
  created: import("zod").ZodOptional<import("zod").ZodNumber>;
715
+ due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
688
716
  hosted_invoice_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
717
+ invoice_pdf: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
689
718
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
690
719
  }, "strip", import("zod").ZodTypeAny, {
691
- status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
692
720
  id: string;
721
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
693
722
  currency: string;
694
723
  customer: string | null;
695
724
  total: number;
696
725
  created?: number | undefined;
697
726
  metadata?: Record<string, string> | undefined;
727
+ due_date?: string | null | undefined;
698
728
  hosted_invoice_url?: string | null | undefined;
729
+ invoice_pdf?: string | null | undefined;
699
730
  }, {
700
- status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
701
731
  id: string;
732
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
702
733
  currency: string;
703
734
  customer: string | null;
704
735
  total: number;
705
736
  created?: number | undefined;
706
737
  metadata?: Record<string, string> | undefined;
738
+ due_date?: string | null | undefined;
707
739
  hosted_invoice_url?: string | null | undefined;
740
+ invoice_pdf?: string | null | undefined;
708
741
  }>>;
709
742
  error: import("zod").ZodString;
710
743
  }, "strip", import("zod").ZodTypeAny, {
@@ -712,28 +745,32 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
712
745
  success: boolean;
713
746
  error: string;
714
747
  invoice?: {
715
- status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
716
748
  id: string;
749
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
717
750
  currency: string;
718
751
  customer: string | null;
719
752
  total: number;
720
753
  created?: number | undefined;
721
754
  metadata?: Record<string, string> | undefined;
755
+ due_date?: string | null | undefined;
722
756
  hosted_invoice_url?: string | null | undefined;
757
+ invoice_pdf?: string | null | undefined;
723
758
  } | undefined;
724
759
  }, {
725
760
  operation: "create_invoice";
726
761
  success: boolean;
727
762
  error: string;
728
763
  invoice?: {
729
- status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
730
764
  id: string;
765
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
731
766
  currency: string;
732
767
  customer: string | null;
733
768
  total: number;
734
769
  created?: number | undefined;
735
770
  metadata?: Record<string, string> | undefined;
771
+ due_date?: string | null | undefined;
736
772
  hosted_invoice_url?: string | null | undefined;
773
+ invoice_pdf?: string | null | undefined;
737
774
  } | undefined;
738
775
  }>, import("zod").ZodObject<{
739
776
  operation: import("zod").ZodLiteral<"list_invoices">;
@@ -745,26 +782,32 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
745
782
  total: import("zod").ZodNumber;
746
783
  currency: import("zod").ZodString;
747
784
  created: import("zod").ZodOptional<import("zod").ZodNumber>;
785
+ due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
748
786
  hosted_invoice_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
787
+ invoice_pdf: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
749
788
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
750
789
  }, "strip", import("zod").ZodTypeAny, {
751
- status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
752
790
  id: string;
791
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
753
792
  currency: string;
754
793
  customer: string | null;
755
794
  total: number;
756
795
  created?: number | undefined;
757
796
  metadata?: Record<string, string> | undefined;
797
+ due_date?: string | null | undefined;
758
798
  hosted_invoice_url?: string | null | undefined;
799
+ invoice_pdf?: string | null | undefined;
759
800
  }, {
760
- status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
761
801
  id: string;
802
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
762
803
  currency: string;
763
804
  customer: string | null;
764
805
  total: number;
765
806
  created?: number | undefined;
766
807
  metadata?: Record<string, string> | undefined;
808
+ due_date?: string | null | undefined;
767
809
  hosted_invoice_url?: string | null | undefined;
810
+ invoice_pdf?: string | null | undefined;
768
811
  }>, "many">>;
769
812
  error: import("zod").ZodString;
770
813
  }, "strip", import("zod").ZodTypeAny, {
@@ -772,29 +815,173 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
772
815
  success: boolean;
773
816
  error: string;
774
817
  invoices?: {
775
- status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
776
818
  id: string;
819
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
777
820
  currency: string;
778
821
  customer: string | null;
779
822
  total: number;
780
823
  created?: number | undefined;
781
824
  metadata?: Record<string, string> | undefined;
825
+ due_date?: string | null | undefined;
782
826
  hosted_invoice_url?: string | null | undefined;
827
+ invoice_pdf?: string | null | undefined;
783
828
  }[] | undefined;
784
829
  }, {
785
830
  operation: "list_invoices";
786
831
  success: boolean;
787
832
  error: string;
788
833
  invoices?: {
789
- status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
790
834
  id: string;
835
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
791
836
  currency: string;
792
837
  customer: string | null;
793
838
  total: number;
794
839
  created?: number | undefined;
795
840
  metadata?: Record<string, string> | undefined;
841
+ due_date?: string | null | undefined;
796
842
  hosted_invoice_url?: string | null | undefined;
843
+ invoice_pdf?: string | null | undefined;
797
844
  }[] | undefined;
845
+ }>, import("zod").ZodObject<{
846
+ operation: import("zod").ZodLiteral<"retrieve_invoice">;
847
+ success: import("zod").ZodBoolean;
848
+ invoice: import("zod").ZodOptional<import("zod").ZodObject<{
849
+ id: import("zod").ZodString;
850
+ customer: import("zod").ZodNullable<import("zod").ZodString>;
851
+ status: import("zod").ZodNullable<import("zod").ZodEnum<["draft", "open", "paid", "uncollectible", "void"]>>;
852
+ total: import("zod").ZodNumber;
853
+ currency: import("zod").ZodString;
854
+ created: import("zod").ZodOptional<import("zod").ZodNumber>;
855
+ due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
856
+ hosted_invoice_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
857
+ invoice_pdf: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
858
+ metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
859
+ }, "strip", import("zod").ZodTypeAny, {
860
+ id: string;
861
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
862
+ currency: string;
863
+ customer: string | null;
864
+ total: number;
865
+ created?: number | undefined;
866
+ metadata?: Record<string, string> | undefined;
867
+ due_date?: string | null | undefined;
868
+ hosted_invoice_url?: string | null | undefined;
869
+ invoice_pdf?: string | null | undefined;
870
+ }, {
871
+ id: string;
872
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
873
+ currency: string;
874
+ customer: string | null;
875
+ total: number;
876
+ created?: number | undefined;
877
+ metadata?: Record<string, string> | undefined;
878
+ due_date?: string | null | undefined;
879
+ hosted_invoice_url?: string | null | undefined;
880
+ invoice_pdf?: string | null | undefined;
881
+ }>>;
882
+ error: import("zod").ZodString;
883
+ }, "strip", import("zod").ZodTypeAny, {
884
+ operation: "retrieve_invoice";
885
+ success: boolean;
886
+ error: string;
887
+ invoice?: {
888
+ id: string;
889
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
890
+ currency: string;
891
+ customer: string | null;
892
+ total: number;
893
+ created?: number | undefined;
894
+ metadata?: Record<string, string> | undefined;
895
+ due_date?: string | null | undefined;
896
+ hosted_invoice_url?: string | null | undefined;
897
+ invoice_pdf?: string | null | undefined;
898
+ } | undefined;
899
+ }, {
900
+ operation: "retrieve_invoice";
901
+ success: boolean;
902
+ error: string;
903
+ invoice?: {
904
+ id: string;
905
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
906
+ currency: string;
907
+ customer: string | null;
908
+ total: number;
909
+ created?: number | undefined;
910
+ metadata?: Record<string, string> | undefined;
911
+ due_date?: string | null | undefined;
912
+ hosted_invoice_url?: string | null | undefined;
913
+ invoice_pdf?: string | null | undefined;
914
+ } | undefined;
915
+ }>, import("zod").ZodObject<{
916
+ operation: import("zod").ZodLiteral<"finalize_invoice">;
917
+ success: import("zod").ZodBoolean;
918
+ invoice: import("zod").ZodOptional<import("zod").ZodObject<{
919
+ id: import("zod").ZodString;
920
+ customer: import("zod").ZodNullable<import("zod").ZodString>;
921
+ status: import("zod").ZodNullable<import("zod").ZodEnum<["draft", "open", "paid", "uncollectible", "void"]>>;
922
+ total: import("zod").ZodNumber;
923
+ currency: import("zod").ZodString;
924
+ created: import("zod").ZodOptional<import("zod").ZodNumber>;
925
+ due_date: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
926
+ hosted_invoice_url: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
927
+ invoice_pdf: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
928
+ metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
929
+ }, "strip", import("zod").ZodTypeAny, {
930
+ id: string;
931
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
932
+ currency: string;
933
+ customer: string | null;
934
+ total: number;
935
+ created?: number | undefined;
936
+ metadata?: Record<string, string> | undefined;
937
+ due_date?: string | null | undefined;
938
+ hosted_invoice_url?: string | null | undefined;
939
+ invoice_pdf?: string | null | undefined;
940
+ }, {
941
+ id: string;
942
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
943
+ currency: string;
944
+ customer: string | null;
945
+ total: number;
946
+ created?: number | undefined;
947
+ metadata?: Record<string, string> | undefined;
948
+ due_date?: string | null | undefined;
949
+ hosted_invoice_url?: string | null | undefined;
950
+ invoice_pdf?: string | null | undefined;
951
+ }>>;
952
+ error: import("zod").ZodString;
953
+ }, "strip", import("zod").ZodTypeAny, {
954
+ operation: "finalize_invoice";
955
+ success: boolean;
956
+ error: string;
957
+ invoice?: {
958
+ id: string;
959
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
960
+ currency: string;
961
+ customer: string | null;
962
+ total: number;
963
+ created?: number | undefined;
964
+ metadata?: Record<string, string> | undefined;
965
+ due_date?: string | null | undefined;
966
+ hosted_invoice_url?: string | null | undefined;
967
+ invoice_pdf?: string | null | undefined;
968
+ } | undefined;
969
+ }, {
970
+ operation: "finalize_invoice";
971
+ success: boolean;
972
+ error: string;
973
+ invoice?: {
974
+ id: string;
975
+ status: "draft" | "open" | "paid" | "uncollectible" | "void" | null;
976
+ currency: string;
977
+ customer: string | null;
978
+ total: number;
979
+ created?: number | undefined;
980
+ metadata?: Record<string, string> | undefined;
981
+ due_date?: string | null | undefined;
982
+ hosted_invoice_url?: string | null | undefined;
983
+ invoice_pdf?: string | null | undefined;
984
+ } | undefined;
798
985
  }>, import("zod").ZodObject<{
799
986
  operation: import("zod").ZodLiteral<"get_balance">;
800
987
  success: import("zod").ZodBoolean;
@@ -879,17 +1066,17 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
879
1066
  created: import("zod").ZodNumber;
880
1067
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
881
1068
  }, "strip", import("zod").ZodTypeAny, {
882
- status: "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "canceled" | "succeeded";
883
1069
  id: string;
884
1070
  created: number;
1071
+ status: "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "canceled" | "succeeded";
885
1072
  currency: string;
886
1073
  amount: number;
887
1074
  metadata?: Record<string, string> | undefined;
888
1075
  customer?: string | null | undefined;
889
1076
  }, {
890
- status: "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "canceled" | "succeeded";
891
1077
  id: string;
892
1078
  created: number;
1079
+ status: "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "canceled" | "succeeded";
893
1080
  currency: string;
894
1081
  amount: number;
895
1082
  metadata?: Record<string, string> | undefined;
@@ -901,9 +1088,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
901
1088
  success: boolean;
902
1089
  error: string;
903
1090
  payment_intents?: {
904
- status: "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "canceled" | "succeeded";
905
1091
  id: string;
906
1092
  created: number;
1093
+ status: "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "canceled" | "succeeded";
907
1094
  currency: string;
908
1095
  amount: number;
909
1096
  metadata?: Record<string, string> | undefined;
@@ -914,9 +1101,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
914
1101
  success: boolean;
915
1102
  error: string;
916
1103
  payment_intents?: {
917
- status: "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "canceled" | "succeeded";
918
1104
  id: string;
919
1105
  created: number;
1106
+ status: "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "canceled" | "succeeded";
920
1107
  currency: string;
921
1108
  amount: number;
922
1109
  metadata?: Record<string, string> | undefined;
@@ -935,18 +1122,18 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
935
1122
  created: import("zod").ZodNumber;
936
1123
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
937
1124
  }, "strip", import("zod").ZodTypeAny, {
938
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
939
1125
  id: string;
940
1126
  created: number;
1127
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
941
1128
  customer: string;
942
1129
  cancel_at_period_end: boolean;
943
1130
  metadata?: Record<string, string> | undefined;
944
1131
  current_period_start?: number | undefined;
945
1132
  current_period_end?: number | undefined;
946
1133
  }, {
947
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
948
1134
  id: string;
949
1135
  created: number;
1136
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
950
1137
  customer: string;
951
1138
  cancel_at_period_end: boolean;
952
1139
  metadata?: Record<string, string> | undefined;
@@ -959,9 +1146,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
959
1146
  success: boolean;
960
1147
  error: string;
961
1148
  subscriptions?: {
962
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
963
1149
  id: string;
964
1150
  created: number;
1151
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
965
1152
  customer: string;
966
1153
  cancel_at_period_end: boolean;
967
1154
  metadata?: Record<string, string> | undefined;
@@ -973,9 +1160,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
973
1160
  success: boolean;
974
1161
  error: string;
975
1162
  subscriptions?: {
976
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
977
1163
  id: string;
978
1164
  created: number;
1165
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
979
1166
  customer: string;
980
1167
  cancel_at_period_end: boolean;
981
1168
  metadata?: Record<string, string> | undefined;
@@ -995,18 +1182,18 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
995
1182
  created: import("zod").ZodNumber;
996
1183
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
997
1184
  }, "strip", import("zod").ZodTypeAny, {
998
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
999
1185
  id: string;
1000
1186
  created: number;
1187
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1001
1188
  customer: string;
1002
1189
  cancel_at_period_end: boolean;
1003
1190
  metadata?: Record<string, string> | undefined;
1004
1191
  current_period_start?: number | undefined;
1005
1192
  current_period_end?: number | undefined;
1006
1193
  }, {
1007
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1008
1194
  id: string;
1009
1195
  created: number;
1196
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1010
1197
  customer: string;
1011
1198
  cancel_at_period_end: boolean;
1012
1199
  metadata?: Record<string, string> | undefined;
@@ -1019,9 +1206,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1019
1206
  success: boolean;
1020
1207
  error: string;
1021
1208
  subscription?: {
1022
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1023
1209
  id: string;
1024
1210
  created: number;
1211
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1025
1212
  customer: string;
1026
1213
  cancel_at_period_end: boolean;
1027
1214
  metadata?: Record<string, string> | undefined;
@@ -1033,9 +1220,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1033
1220
  success: boolean;
1034
1221
  error: string;
1035
1222
  subscription?: {
1036
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1037
1223
  id: string;
1038
1224
  created: number;
1225
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1039
1226
  customer: string;
1040
1227
  cancel_at_period_end: boolean;
1041
1228
  metadata?: Record<string, string> | undefined;
@@ -1100,18 +1287,18 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1100
1287
  created: import("zod").ZodNumber;
1101
1288
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
1102
1289
  }, "strip", import("zod").ZodTypeAny, {
1103
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1104
1290
  id: string;
1105
1291
  created: number;
1292
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1106
1293
  customer: string;
1107
1294
  cancel_at_period_end: boolean;
1108
1295
  metadata?: Record<string, string> | undefined;
1109
1296
  current_period_start?: number | undefined;
1110
1297
  current_period_end?: number | undefined;
1111
1298
  }, {
1112
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1113
1299
  id: string;
1114
1300
  created: number;
1301
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1115
1302
  customer: string;
1116
1303
  cancel_at_period_end: boolean;
1117
1304
  metadata?: Record<string, string> | undefined;
@@ -1124,9 +1311,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1124
1311
  success: boolean;
1125
1312
  error: string;
1126
1313
  subscription?: {
1127
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1128
1314
  id: string;
1129
1315
  created: number;
1316
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1130
1317
  customer: string;
1131
1318
  cancel_at_period_end: boolean;
1132
1319
  metadata?: Record<string, string> | undefined;
@@ -1138,9 +1325,9 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1138
1325
  success: boolean;
1139
1326
  error: string;
1140
1327
  subscription?: {
1141
- status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1142
1328
  id: string;
1143
1329
  created: number;
1330
+ status: "active" | "canceled" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | "paused";
1144
1331
  customer: string;
1145
1332
  cancel_at_period_end: boolean;
1146
1333
  metadata?: Record<string, string> | undefined;
@@ -1167,6 +1354,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1167
1354
  private createPaymentLink;
1168
1355
  private createInvoice;
1169
1356
  private listInvoices;
1357
+ private retrieveInvoice;
1358
+ private finalizeInvoice;
1170
1359
  private getBalance;
1171
1360
  private listPaymentIntents;
1172
1361
  private listSubscriptions;
@@ -1 +1 @@
1
- {"version":3,"file":"stripe.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/stripe/stripe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAIL,KAAK,iBAAiB,EACtB,KAAK,YAAY,EAClB,MAAM,oBAAoB,CAAC;AAE5B;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,qBAAa,YAAY,CACvB,CAAC,SAAS,iBAAiB,GAAG,iBAAiB,CAC/C,SAAQ,aAAa,CACrB,CAAC,EACD,OAAO,CAAC,YAAY,EAAE;IAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;CAAE,CAAC,CACrD;IACC,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAG,SAAS,CAAU;IAC1C,MAAM,CAAC,QAAQ,CAAC,OAAO,YAAY;IACnC,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,QAAQ,CAAU;IAC7C,MAAM,CAAC,QAAQ,CAAC,UAAU,YAAY;IACtC,MAAM,CAAC,QAAQ,CAAC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAsB;IAC5C,MAAM,CAAC,QAAQ,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAsB;IAClD,MAAM,CAAC,QAAQ,CAAC,gBAAgB,iEACgC;IAChE,MAAM,CAAC,QAAQ,CAAC,eAAe,yvBAyB7B;IACF,MAAM,CAAC,QAAQ,CAAC,KAAK,cAAc;gBAGjC,MAAM,GAAE,CAGF,EACN,OAAO,CAAC,EAAE,aAAa;IAKZ,cAAc,IAAI,OAAO,CAAC,OAAO,CAAC;YAejC,iBAAiB;IAuC/B,OAAO,CAAC,cAAc;cAqCN,aAAa,CAC3B,OAAO,CAAC,EAAE,aAAa,GACtB,OAAO,CAAC,OAAO,CAAC,YAAY,EAAE;QAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;KAAE,CAAC,CAAC;YAiIlD,cAAc;YAoCd,aAAa;YAuCb,aAAa;YAkCb,YAAY;YAyCZ,WAAW;YA0CX,UAAU;YA8CV,iBAAiB;YAgDjB,aAAa;YAgDb,YAAY;YA8CZ,UAAU;YA8BV,kBAAkB;YAkDlB,iBAAiB;YAkDjB,kBAAkB;YA6DlB,gBAAgB;YAuChB,kBAAkB;IA2DhC,SAAS,CAAC,gBAAgB,IAAI,MAAM,GAAG,SAAS;CAYjD"}
1
+ {"version":3,"file":"stripe.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/stripe/stripe.ts"],"names":[],"mappings":"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"}