@databutton/firebase-types 1.62.22 → 1.62.24
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.
|
@@ -120,6 +120,16 @@ export interface PayAsYouGoPlan extends PlanBase {
|
|
|
120
120
|
cancelReason?: string | null;
|
|
121
121
|
cancelComment?: string | null;
|
|
122
122
|
}
|
|
123
|
+
export interface AIPlan extends PlanBase {
|
|
124
|
+
type: "ai-plan";
|
|
125
|
+
stripe_product_id: string;
|
|
126
|
+
credits: number;
|
|
127
|
+
cancelAtPeriodEnd: boolean | null;
|
|
128
|
+
canceledAt?: Timestamp | null;
|
|
129
|
+
cancelFeedback?: string | null;
|
|
130
|
+
cancelReason?: string | null;
|
|
131
|
+
cancelComment?: string | null;
|
|
132
|
+
}
|
|
123
133
|
export interface FeatureFlagBase {
|
|
124
134
|
createdBy: PerformedBy;
|
|
125
135
|
lastChangedBy: PerformedBy;
|