@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.
- package/dist/bubble-bundle.d.ts +109 -109
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +210 -210
- package/dist/bubbles/service-bubble/airtable.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/airtable.js +3 -1
- package/dist/bubbles/service-bubble/airtable.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +134 -134
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +53 -53
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +90 -90
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +30 -30
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +250 -250
- package/dist/bubbles/service-bubble/followupboss.d.ts +236 -236
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +30 -30
- package/dist/bubbles/service-bubble/github.d.ts +104 -104
- package/dist/bubbles/service-bubble/gmail.d.ts +176 -176
- package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
- package/dist/bubbles/service-bubble/google-drive.d.ts +130 -130
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/notion/notion.d.ts +512 -512
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +12 -12
- package/dist/bubbles/service-bubble/slack/slack.d.ts +535 -535
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.utils.js +29 -20
- package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +80 -80
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +71 -71
- package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +24 -24
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +302 -302
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +94 -94
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +78 -78
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +76 -76
- package/dist/bubbles.json +3 -2
- package/package.json +2 -2
|
@@ -53,8 +53,8 @@ export declare const StripePriceSchema: z.ZodObject<{
|
|
|
53
53
|
}, "strip", z.ZodTypeAny, {
|
|
54
54
|
type: "one_time" | "recurring";
|
|
55
55
|
id: string;
|
|
56
|
-
created: number;
|
|
57
56
|
currency: string;
|
|
57
|
+
created: number;
|
|
58
58
|
active: boolean;
|
|
59
59
|
product: string;
|
|
60
60
|
unit_amount: number | null;
|
|
@@ -62,8 +62,8 @@ export declare const StripePriceSchema: z.ZodObject<{
|
|
|
62
62
|
}, {
|
|
63
63
|
type: "one_time" | "recurring";
|
|
64
64
|
id: string;
|
|
65
|
-
created: number;
|
|
66
65
|
currency: string;
|
|
66
|
+
created: number;
|
|
67
67
|
active: boolean;
|
|
68
68
|
product: string;
|
|
69
69
|
unit_amount: number | null;
|
|
@@ -102,8 +102,8 @@ export declare const StripeInvoiceSchema: z.ZodObject<{
|
|
|
102
102
|
}, "strip", z.ZodTypeAny, {
|
|
103
103
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
104
104
|
id: string;
|
|
105
|
-
total: number;
|
|
106
105
|
currency: string;
|
|
106
|
+
total: number;
|
|
107
107
|
customer: string | null;
|
|
108
108
|
metadata?: Record<string, string> | undefined;
|
|
109
109
|
created?: number | undefined;
|
|
@@ -113,8 +113,8 @@ export declare const StripeInvoiceSchema: z.ZodObject<{
|
|
|
113
113
|
}, {
|
|
114
114
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
115
115
|
id: string;
|
|
116
|
-
total: number;
|
|
117
116
|
currency: string;
|
|
117
|
+
total: number;
|
|
118
118
|
customer: string | null;
|
|
119
119
|
metadata?: Record<string, string> | undefined;
|
|
120
120
|
created?: number | undefined;
|
|
@@ -173,16 +173,16 @@ export declare const StripePaymentIntentSchema: z.ZodObject<{
|
|
|
173
173
|
}, "strip", z.ZodTypeAny, {
|
|
174
174
|
status: "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "succeeded";
|
|
175
175
|
id: string;
|
|
176
|
-
created: number;
|
|
177
176
|
currency: string;
|
|
177
|
+
created: number;
|
|
178
178
|
amount: number;
|
|
179
179
|
metadata?: Record<string, string> | undefined;
|
|
180
180
|
customer?: string | null | undefined;
|
|
181
181
|
}, {
|
|
182
182
|
status: "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "succeeded";
|
|
183
183
|
id: string;
|
|
184
|
-
created: number;
|
|
185
184
|
currency: string;
|
|
185
|
+
created: number;
|
|
186
186
|
amount: number;
|
|
187
187
|
metadata?: Record<string, string> | undefined;
|
|
188
188
|
customer?: string | null | undefined;
|
|
@@ -314,8 +314,8 @@ export declare const StripeParamsSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
314
314
|
product: string;
|
|
315
315
|
unit_amount: number;
|
|
316
316
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
317
|
-
metadata?: Record<string, string> | undefined;
|
|
318
317
|
currency?: string | undefined;
|
|
318
|
+
metadata?: Record<string, string> | undefined;
|
|
319
319
|
recurring?: {
|
|
320
320
|
interval: "week" | "month" | "year" | "day";
|
|
321
321
|
interval_count?: number | undefined;
|
|
@@ -461,12 +461,12 @@ export declare const StripeParamsSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
461
461
|
}, "strip", z.ZodTypeAny, {
|
|
462
462
|
operation: "list_subscriptions";
|
|
463
463
|
limit: number;
|
|
464
|
-
status?: "
|
|
464
|
+
status?: "canceled" | "all" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | undefined;
|
|
465
465
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
466
466
|
customer?: string | undefined;
|
|
467
467
|
}, {
|
|
468
468
|
operation: "list_subscriptions";
|
|
469
|
-
status?: "
|
|
469
|
+
status?: "canceled" | "all" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid" | undefined;
|
|
470
470
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
471
471
|
limit?: number | undefined;
|
|
472
472
|
customer?: string | undefined;
|
|
@@ -550,8 +550,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
550
550
|
error: z.ZodString;
|
|
551
551
|
}, "strip", z.ZodTypeAny, {
|
|
552
552
|
operation: "create_customer";
|
|
553
|
-
success: boolean;
|
|
554
553
|
error: string;
|
|
554
|
+
success: boolean;
|
|
555
555
|
customer?: {
|
|
556
556
|
id: string;
|
|
557
557
|
created: number;
|
|
@@ -561,8 +561,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
561
561
|
} | undefined;
|
|
562
562
|
}, {
|
|
563
563
|
operation: "create_customer";
|
|
564
|
-
success: boolean;
|
|
565
564
|
error: string;
|
|
565
|
+
success: boolean;
|
|
566
566
|
customer?: {
|
|
567
567
|
id: string;
|
|
568
568
|
created: number;
|
|
@@ -595,8 +595,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
595
595
|
error: z.ZodString;
|
|
596
596
|
}, "strip", z.ZodTypeAny, {
|
|
597
597
|
operation: "list_customers";
|
|
598
|
-
success: boolean;
|
|
599
598
|
error: string;
|
|
599
|
+
success: boolean;
|
|
600
600
|
customers?: {
|
|
601
601
|
id: string;
|
|
602
602
|
created: number;
|
|
@@ -606,8 +606,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
606
606
|
}[] | undefined;
|
|
607
607
|
}, {
|
|
608
608
|
operation: "list_customers";
|
|
609
|
-
success: boolean;
|
|
610
609
|
error: string;
|
|
610
|
+
success: boolean;
|
|
611
611
|
customers?: {
|
|
612
612
|
id: string;
|
|
613
613
|
created: number;
|
|
@@ -643,8 +643,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
643
643
|
error: z.ZodString;
|
|
644
644
|
}, "strip", z.ZodTypeAny, {
|
|
645
645
|
operation: "create_product";
|
|
646
|
-
success: boolean;
|
|
647
646
|
error: string;
|
|
647
|
+
success: boolean;
|
|
648
648
|
product?: {
|
|
649
649
|
name: string;
|
|
650
650
|
id: string;
|
|
@@ -655,8 +655,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
655
655
|
} | undefined;
|
|
656
656
|
}, {
|
|
657
657
|
operation: "create_product";
|
|
658
|
-
success: boolean;
|
|
659
658
|
error: string;
|
|
659
|
+
success: boolean;
|
|
660
660
|
product?: {
|
|
661
661
|
name: string;
|
|
662
662
|
id: string;
|
|
@@ -693,8 +693,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
693
693
|
error: z.ZodString;
|
|
694
694
|
}, "strip", z.ZodTypeAny, {
|
|
695
695
|
operation: "list_products";
|
|
696
|
-
success: boolean;
|
|
697
696
|
error: string;
|
|
697
|
+
success: boolean;
|
|
698
698
|
products?: {
|
|
699
699
|
name: string;
|
|
700
700
|
id: string;
|
|
@@ -705,8 +705,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
705
705
|
}[] | undefined;
|
|
706
706
|
}, {
|
|
707
707
|
operation: "list_products";
|
|
708
|
-
success: boolean;
|
|
709
708
|
error: string;
|
|
709
|
+
success: boolean;
|
|
710
710
|
products?: {
|
|
711
711
|
name: string;
|
|
712
712
|
id: string;
|
|
@@ -730,8 +730,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
730
730
|
}, "strip", z.ZodTypeAny, {
|
|
731
731
|
type: "one_time" | "recurring";
|
|
732
732
|
id: string;
|
|
733
|
-
created: number;
|
|
734
733
|
currency: string;
|
|
734
|
+
created: number;
|
|
735
735
|
active: boolean;
|
|
736
736
|
product: string;
|
|
737
737
|
unit_amount: number | null;
|
|
@@ -739,8 +739,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
739
739
|
}, {
|
|
740
740
|
type: "one_time" | "recurring";
|
|
741
741
|
id: string;
|
|
742
|
-
created: number;
|
|
743
742
|
currency: string;
|
|
743
|
+
created: number;
|
|
744
744
|
active: boolean;
|
|
745
745
|
product: string;
|
|
746
746
|
unit_amount: number | null;
|
|
@@ -749,13 +749,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
749
749
|
error: z.ZodString;
|
|
750
750
|
}, "strip", z.ZodTypeAny, {
|
|
751
751
|
operation: "create_price";
|
|
752
|
-
success: boolean;
|
|
753
752
|
error: string;
|
|
753
|
+
success: boolean;
|
|
754
754
|
price?: {
|
|
755
755
|
type: "one_time" | "recurring";
|
|
756
756
|
id: string;
|
|
757
|
-
created: number;
|
|
758
757
|
currency: string;
|
|
758
|
+
created: number;
|
|
759
759
|
active: boolean;
|
|
760
760
|
product: string;
|
|
761
761
|
unit_amount: number | null;
|
|
@@ -763,13 +763,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
763
763
|
} | undefined;
|
|
764
764
|
}, {
|
|
765
765
|
operation: "create_price";
|
|
766
|
-
success: boolean;
|
|
767
766
|
error: string;
|
|
767
|
+
success: boolean;
|
|
768
768
|
price?: {
|
|
769
769
|
type: "one_time" | "recurring";
|
|
770
770
|
id: string;
|
|
771
|
-
created: number;
|
|
772
771
|
currency: string;
|
|
772
|
+
created: number;
|
|
773
773
|
active: boolean;
|
|
774
774
|
product: string;
|
|
775
775
|
unit_amount: number | null;
|
|
@@ -790,8 +790,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
790
790
|
}, "strip", z.ZodTypeAny, {
|
|
791
791
|
type: "one_time" | "recurring";
|
|
792
792
|
id: string;
|
|
793
|
-
created: number;
|
|
794
793
|
currency: string;
|
|
794
|
+
created: number;
|
|
795
795
|
active: boolean;
|
|
796
796
|
product: string;
|
|
797
797
|
unit_amount: number | null;
|
|
@@ -799,8 +799,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
799
799
|
}, {
|
|
800
800
|
type: "one_time" | "recurring";
|
|
801
801
|
id: string;
|
|
802
|
-
created: number;
|
|
803
802
|
currency: string;
|
|
803
|
+
created: number;
|
|
804
804
|
active: boolean;
|
|
805
805
|
product: string;
|
|
806
806
|
unit_amount: number | null;
|
|
@@ -809,13 +809,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
809
809
|
error: z.ZodString;
|
|
810
810
|
}, "strip", z.ZodTypeAny, {
|
|
811
811
|
operation: "list_prices";
|
|
812
|
-
success: boolean;
|
|
813
812
|
error: string;
|
|
813
|
+
success: boolean;
|
|
814
814
|
prices?: {
|
|
815
815
|
type: "one_time" | "recurring";
|
|
816
816
|
id: string;
|
|
817
|
-
created: number;
|
|
818
817
|
currency: string;
|
|
818
|
+
created: number;
|
|
819
819
|
active: boolean;
|
|
820
820
|
product: string;
|
|
821
821
|
unit_amount: number | null;
|
|
@@ -823,13 +823,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
823
823
|
}[] | undefined;
|
|
824
824
|
}, {
|
|
825
825
|
operation: "list_prices";
|
|
826
|
-
success: boolean;
|
|
827
826
|
error: string;
|
|
827
|
+
success: boolean;
|
|
828
828
|
prices?: {
|
|
829
829
|
type: "one_time" | "recurring";
|
|
830
830
|
id: string;
|
|
831
|
-
created: number;
|
|
832
831
|
currency: string;
|
|
832
|
+
created: number;
|
|
833
833
|
active: boolean;
|
|
834
834
|
product: string;
|
|
835
835
|
unit_amount: number | null;
|
|
@@ -860,8 +860,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
860
860
|
error: z.ZodString;
|
|
861
861
|
}, "strip", z.ZodTypeAny, {
|
|
862
862
|
operation: "create_payment_link";
|
|
863
|
-
success: boolean;
|
|
864
863
|
error: string;
|
|
864
|
+
success: boolean;
|
|
865
865
|
payment_link?: {
|
|
866
866
|
url: string;
|
|
867
867
|
id: string;
|
|
@@ -871,8 +871,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
871
871
|
} | undefined;
|
|
872
872
|
}, {
|
|
873
873
|
operation: "create_payment_link";
|
|
874
|
-
success: boolean;
|
|
875
874
|
error: string;
|
|
875
|
+
success: boolean;
|
|
876
876
|
payment_link?: {
|
|
877
877
|
url: string;
|
|
878
878
|
id: string;
|
|
@@ -897,8 +897,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
897
897
|
}, "strip", z.ZodTypeAny, {
|
|
898
898
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
899
899
|
id: string;
|
|
900
|
-
total: number;
|
|
901
900
|
currency: string;
|
|
901
|
+
total: number;
|
|
902
902
|
customer: string | null;
|
|
903
903
|
metadata?: Record<string, string> | undefined;
|
|
904
904
|
created?: number | undefined;
|
|
@@ -908,8 +908,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
908
908
|
}, {
|
|
909
909
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
910
910
|
id: string;
|
|
911
|
-
total: number;
|
|
912
911
|
currency: string;
|
|
912
|
+
total: number;
|
|
913
913
|
customer: string | null;
|
|
914
914
|
metadata?: Record<string, string> | undefined;
|
|
915
915
|
created?: number | undefined;
|
|
@@ -920,13 +920,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
920
920
|
error: z.ZodString;
|
|
921
921
|
}, "strip", z.ZodTypeAny, {
|
|
922
922
|
operation: "create_invoice";
|
|
923
|
-
success: boolean;
|
|
924
923
|
error: string;
|
|
924
|
+
success: boolean;
|
|
925
925
|
invoice?: {
|
|
926
926
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
927
927
|
id: string;
|
|
928
|
-
total: number;
|
|
929
928
|
currency: string;
|
|
929
|
+
total: number;
|
|
930
930
|
customer: string | null;
|
|
931
931
|
metadata?: Record<string, string> | undefined;
|
|
932
932
|
created?: number | undefined;
|
|
@@ -936,13 +936,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
936
936
|
} | undefined;
|
|
937
937
|
}, {
|
|
938
938
|
operation: "create_invoice";
|
|
939
|
-
success: boolean;
|
|
940
939
|
error: string;
|
|
940
|
+
success: boolean;
|
|
941
941
|
invoice?: {
|
|
942
942
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
943
943
|
id: string;
|
|
944
|
-
total: number;
|
|
945
944
|
currency: string;
|
|
945
|
+
total: number;
|
|
946
946
|
customer: string | null;
|
|
947
947
|
metadata?: Record<string, string> | undefined;
|
|
948
948
|
created?: number | undefined;
|
|
@@ -967,8 +967,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
967
967
|
}, "strip", z.ZodTypeAny, {
|
|
968
968
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
969
969
|
id: string;
|
|
970
|
-
total: number;
|
|
971
970
|
currency: string;
|
|
971
|
+
total: number;
|
|
972
972
|
customer: string | null;
|
|
973
973
|
metadata?: Record<string, string> | undefined;
|
|
974
974
|
created?: number | undefined;
|
|
@@ -978,8 +978,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
978
978
|
}, {
|
|
979
979
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
980
980
|
id: string;
|
|
981
|
-
total: number;
|
|
982
981
|
currency: string;
|
|
982
|
+
total: number;
|
|
983
983
|
customer: string | null;
|
|
984
984
|
metadata?: Record<string, string> | undefined;
|
|
985
985
|
created?: number | undefined;
|
|
@@ -990,13 +990,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
990
990
|
error: z.ZodString;
|
|
991
991
|
}, "strip", z.ZodTypeAny, {
|
|
992
992
|
operation: "list_invoices";
|
|
993
|
-
success: boolean;
|
|
994
993
|
error: string;
|
|
994
|
+
success: boolean;
|
|
995
995
|
invoices?: {
|
|
996
996
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
997
997
|
id: string;
|
|
998
|
-
total: number;
|
|
999
998
|
currency: string;
|
|
999
|
+
total: number;
|
|
1000
1000
|
customer: string | null;
|
|
1001
1001
|
metadata?: Record<string, string> | undefined;
|
|
1002
1002
|
created?: number | undefined;
|
|
@@ -1006,13 +1006,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1006
1006
|
}[] | undefined;
|
|
1007
1007
|
}, {
|
|
1008
1008
|
operation: "list_invoices";
|
|
1009
|
-
success: boolean;
|
|
1010
1009
|
error: string;
|
|
1010
|
+
success: boolean;
|
|
1011
1011
|
invoices?: {
|
|
1012
1012
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
1013
1013
|
id: string;
|
|
1014
|
-
total: number;
|
|
1015
1014
|
currency: string;
|
|
1015
|
+
total: number;
|
|
1016
1016
|
customer: string | null;
|
|
1017
1017
|
metadata?: Record<string, string> | undefined;
|
|
1018
1018
|
created?: number | undefined;
|
|
@@ -1037,8 +1037,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1037
1037
|
}, "strip", z.ZodTypeAny, {
|
|
1038
1038
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
1039
1039
|
id: string;
|
|
1040
|
-
total: number;
|
|
1041
1040
|
currency: string;
|
|
1041
|
+
total: number;
|
|
1042
1042
|
customer: string | null;
|
|
1043
1043
|
metadata?: Record<string, string> | undefined;
|
|
1044
1044
|
created?: number | undefined;
|
|
@@ -1048,8 +1048,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1048
1048
|
}, {
|
|
1049
1049
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
1050
1050
|
id: string;
|
|
1051
|
-
total: number;
|
|
1052
1051
|
currency: string;
|
|
1052
|
+
total: number;
|
|
1053
1053
|
customer: string | null;
|
|
1054
1054
|
metadata?: Record<string, string> | undefined;
|
|
1055
1055
|
created?: number | undefined;
|
|
@@ -1060,13 +1060,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1060
1060
|
error: z.ZodString;
|
|
1061
1061
|
}, "strip", z.ZodTypeAny, {
|
|
1062
1062
|
operation: "retrieve_invoice";
|
|
1063
|
-
success: boolean;
|
|
1064
1063
|
error: string;
|
|
1064
|
+
success: boolean;
|
|
1065
1065
|
invoice?: {
|
|
1066
1066
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
1067
1067
|
id: string;
|
|
1068
|
-
total: number;
|
|
1069
1068
|
currency: string;
|
|
1069
|
+
total: number;
|
|
1070
1070
|
customer: string | null;
|
|
1071
1071
|
metadata?: Record<string, string> | undefined;
|
|
1072
1072
|
created?: number | undefined;
|
|
@@ -1076,13 +1076,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1076
1076
|
} | undefined;
|
|
1077
1077
|
}, {
|
|
1078
1078
|
operation: "retrieve_invoice";
|
|
1079
|
-
success: boolean;
|
|
1080
1079
|
error: string;
|
|
1080
|
+
success: boolean;
|
|
1081
1081
|
invoice?: {
|
|
1082
1082
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
1083
1083
|
id: string;
|
|
1084
|
-
total: number;
|
|
1085
1084
|
currency: string;
|
|
1085
|
+
total: number;
|
|
1086
1086
|
customer: string | null;
|
|
1087
1087
|
metadata?: Record<string, string> | undefined;
|
|
1088
1088
|
created?: number | undefined;
|
|
@@ -1107,8 +1107,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1107
1107
|
}, "strip", z.ZodTypeAny, {
|
|
1108
1108
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
1109
1109
|
id: string;
|
|
1110
|
-
total: number;
|
|
1111
1110
|
currency: string;
|
|
1111
|
+
total: number;
|
|
1112
1112
|
customer: string | null;
|
|
1113
1113
|
metadata?: Record<string, string> | undefined;
|
|
1114
1114
|
created?: number | undefined;
|
|
@@ -1118,8 +1118,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1118
1118
|
}, {
|
|
1119
1119
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
1120
1120
|
id: string;
|
|
1121
|
-
total: number;
|
|
1122
1121
|
currency: string;
|
|
1122
|
+
total: number;
|
|
1123
1123
|
customer: string | null;
|
|
1124
1124
|
metadata?: Record<string, string> | undefined;
|
|
1125
1125
|
created?: number | undefined;
|
|
@@ -1130,13 +1130,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1130
1130
|
error: z.ZodString;
|
|
1131
1131
|
}, "strip", z.ZodTypeAny, {
|
|
1132
1132
|
operation: "finalize_invoice";
|
|
1133
|
-
success: boolean;
|
|
1134
1133
|
error: string;
|
|
1134
|
+
success: boolean;
|
|
1135
1135
|
invoice?: {
|
|
1136
1136
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
1137
1137
|
id: string;
|
|
1138
|
-
total: number;
|
|
1139
1138
|
currency: string;
|
|
1139
|
+
total: number;
|
|
1140
1140
|
customer: string | null;
|
|
1141
1141
|
metadata?: Record<string, string> | undefined;
|
|
1142
1142
|
created?: number | undefined;
|
|
@@ -1146,13 +1146,13 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1146
1146
|
} | undefined;
|
|
1147
1147
|
}, {
|
|
1148
1148
|
operation: "finalize_invoice";
|
|
1149
|
-
success: boolean;
|
|
1150
1149
|
error: string;
|
|
1150
|
+
success: boolean;
|
|
1151
1151
|
invoice?: {
|
|
1152
1152
|
status: "void" | "draft" | "open" | "paid" | "uncollectible" | null;
|
|
1153
1153
|
id: string;
|
|
1154
|
-
total: number;
|
|
1155
1154
|
currency: string;
|
|
1155
|
+
total: number;
|
|
1156
1156
|
customer: string | null;
|
|
1157
1157
|
metadata?: Record<string, string> | undefined;
|
|
1158
1158
|
created?: number | undefined;
|
|
@@ -1206,8 +1206,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1206
1206
|
error: z.ZodString;
|
|
1207
1207
|
}, "strip", z.ZodTypeAny, {
|
|
1208
1208
|
operation: "get_balance";
|
|
1209
|
-
success: boolean;
|
|
1210
1209
|
error: string;
|
|
1210
|
+
success: boolean;
|
|
1211
1211
|
balance?: {
|
|
1212
1212
|
pending: {
|
|
1213
1213
|
currency: string;
|
|
@@ -1220,8 +1220,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1220
1220
|
} | undefined;
|
|
1221
1221
|
}, {
|
|
1222
1222
|
operation: "get_balance";
|
|
1223
|
-
success: boolean;
|
|
1224
1223
|
error: string;
|
|
1224
|
+
success: boolean;
|
|
1225
1225
|
balance?: {
|
|
1226
1226
|
pending: {
|
|
1227
1227
|
currency: string;
|
|
@@ -1246,16 +1246,16 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1246
1246
|
}, "strip", z.ZodTypeAny, {
|
|
1247
1247
|
status: "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "succeeded";
|
|
1248
1248
|
id: string;
|
|
1249
|
-
created: number;
|
|
1250
1249
|
currency: string;
|
|
1250
|
+
created: number;
|
|
1251
1251
|
amount: number;
|
|
1252
1252
|
metadata?: Record<string, string> | undefined;
|
|
1253
1253
|
customer?: string | null | undefined;
|
|
1254
1254
|
}, {
|
|
1255
1255
|
status: "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "succeeded";
|
|
1256
1256
|
id: string;
|
|
1257
|
-
created: number;
|
|
1258
1257
|
currency: string;
|
|
1258
|
+
created: number;
|
|
1259
1259
|
amount: number;
|
|
1260
1260
|
metadata?: Record<string, string> | undefined;
|
|
1261
1261
|
customer?: string | null | undefined;
|
|
@@ -1263,26 +1263,26 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1263
1263
|
error: z.ZodString;
|
|
1264
1264
|
}, "strip", z.ZodTypeAny, {
|
|
1265
1265
|
operation: "list_payment_intents";
|
|
1266
|
-
success: boolean;
|
|
1267
1266
|
error: string;
|
|
1267
|
+
success: boolean;
|
|
1268
1268
|
payment_intents?: {
|
|
1269
1269
|
status: "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "succeeded";
|
|
1270
1270
|
id: string;
|
|
1271
|
-
created: number;
|
|
1272
1271
|
currency: string;
|
|
1272
|
+
created: number;
|
|
1273
1273
|
amount: number;
|
|
1274
1274
|
metadata?: Record<string, string> | undefined;
|
|
1275
1275
|
customer?: string | null | undefined;
|
|
1276
1276
|
}[] | undefined;
|
|
1277
1277
|
}, {
|
|
1278
1278
|
operation: "list_payment_intents";
|
|
1279
|
-
success: boolean;
|
|
1280
1279
|
error: string;
|
|
1280
|
+
success: boolean;
|
|
1281
1281
|
payment_intents?: {
|
|
1282
1282
|
status: "canceled" | "requires_payment_method" | "requires_confirmation" | "requires_action" | "processing" | "requires_capture" | "succeeded";
|
|
1283
1283
|
id: string;
|
|
1284
|
-
created: number;
|
|
1285
1284
|
currency: string;
|
|
1285
|
+
created: number;
|
|
1286
1286
|
amount: number;
|
|
1287
1287
|
metadata?: Record<string, string> | undefined;
|
|
1288
1288
|
customer?: string | null | undefined;
|
|
@@ -1321,8 +1321,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1321
1321
|
error: z.ZodString;
|
|
1322
1322
|
}, "strip", z.ZodTypeAny, {
|
|
1323
1323
|
operation: "list_subscriptions";
|
|
1324
|
-
success: boolean;
|
|
1325
1324
|
error: string;
|
|
1325
|
+
success: boolean;
|
|
1326
1326
|
subscriptions?: {
|
|
1327
1327
|
status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
|
|
1328
1328
|
id: string;
|
|
@@ -1335,8 +1335,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1335
1335
|
}[] | undefined;
|
|
1336
1336
|
}, {
|
|
1337
1337
|
operation: "list_subscriptions";
|
|
1338
|
-
success: boolean;
|
|
1339
1338
|
error: string;
|
|
1339
|
+
success: boolean;
|
|
1340
1340
|
subscriptions?: {
|
|
1341
1341
|
status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
|
|
1342
1342
|
id: string;
|
|
@@ -1381,8 +1381,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1381
1381
|
error: z.ZodString;
|
|
1382
1382
|
}, "strip", z.ZodTypeAny, {
|
|
1383
1383
|
operation: "cancel_subscription";
|
|
1384
|
-
success: boolean;
|
|
1385
1384
|
error: string;
|
|
1385
|
+
success: boolean;
|
|
1386
1386
|
subscription?: {
|
|
1387
1387
|
status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
|
|
1388
1388
|
id: string;
|
|
@@ -1395,8 +1395,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1395
1395
|
} | undefined;
|
|
1396
1396
|
}, {
|
|
1397
1397
|
operation: "cancel_subscription";
|
|
1398
|
-
success: boolean;
|
|
1399
1398
|
error: string;
|
|
1399
|
+
success: boolean;
|
|
1400
1400
|
subscription?: {
|
|
1401
1401
|
status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
|
|
1402
1402
|
id: string;
|
|
@@ -1432,8 +1432,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1432
1432
|
error: z.ZodString;
|
|
1433
1433
|
}, "strip", z.ZodTypeAny, {
|
|
1434
1434
|
operation: "list_payment_links";
|
|
1435
|
-
success: boolean;
|
|
1436
1435
|
error: string;
|
|
1436
|
+
success: boolean;
|
|
1437
1437
|
payment_links?: {
|
|
1438
1438
|
url: string;
|
|
1439
1439
|
id: string;
|
|
@@ -1443,8 +1443,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1443
1443
|
}[] | undefined;
|
|
1444
1444
|
}, {
|
|
1445
1445
|
operation: "list_payment_links";
|
|
1446
|
-
success: boolean;
|
|
1447
1446
|
error: string;
|
|
1447
|
+
success: boolean;
|
|
1448
1448
|
payment_links?: {
|
|
1449
1449
|
url: string;
|
|
1450
1450
|
id: string;
|
|
@@ -1486,8 +1486,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1486
1486
|
error: z.ZodString;
|
|
1487
1487
|
}, "strip", z.ZodTypeAny, {
|
|
1488
1488
|
operation: "create_subscription";
|
|
1489
|
-
success: boolean;
|
|
1490
1489
|
error: string;
|
|
1490
|
+
success: boolean;
|
|
1491
1491
|
subscription?: {
|
|
1492
1492
|
status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
|
|
1493
1493
|
id: string;
|
|
@@ -1500,8 +1500,8 @@ export declare const StripeResultSchema: z.ZodDiscriminatedUnion<"operation", [z
|
|
|
1500
1500
|
} | undefined;
|
|
1501
1501
|
}, {
|
|
1502
1502
|
operation: "create_subscription";
|
|
1503
|
-
success: boolean;
|
|
1504
1503
|
error: string;
|
|
1504
|
+
success: boolean;
|
|
1505
1505
|
subscription?: {
|
|
1506
1506
|
status: "canceled" | "paused" | "active" | "incomplete" | "incomplete_expired" | "trialing" | "past_due" | "unpaid";
|
|
1507
1507
|
id: string;
|