@databutton/firebase-types 1.86.8 → 1.86.9
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.
|
@@ -95,6 +95,15 @@ export type CreateCheckoutSessionRequest = {};
|
|
|
95
95
|
export type CreateCheckoutSessionResponse = {
|
|
96
96
|
clientSecret: string;
|
|
97
97
|
};
|
|
98
|
+
export type CreateRiffCheckoutSessionRequest = {
|
|
99
|
+
priceId: string;
|
|
100
|
+
successUrl?: string;
|
|
101
|
+
cancelUrl?: string;
|
|
102
|
+
};
|
|
103
|
+
export type CreateRiffCheckoutSessionResponse = {
|
|
104
|
+
sessionId: string | null;
|
|
105
|
+
url: string;
|
|
106
|
+
};
|
|
98
107
|
export type MobileOnboardingEmailRequest = {
|
|
99
108
|
appName: string;
|
|
100
109
|
};
|