@databutton/firebase-types 1.86.8 → 1.86.10

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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.86.8",
3
+ "version": "1.86.10",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {