@databutton/firebase-types 1.41.3 → 1.41.5
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.
|
@@ -78,6 +78,7 @@ interface PlanBase {
|
|
|
78
78
|
endedAt: Timestamp | null;
|
|
79
79
|
status: "active" | "canceled" | "trialing" | "past_due" | "unpaid" | "incomplete" | "incomplete_expired" | "paused" | null;
|
|
80
80
|
startDate: Timestamp | null;
|
|
81
|
+
subscriptionId: string | null;
|
|
81
82
|
}
|
|
82
83
|
export interface TeamPlan extends PlanBase {
|
|
83
84
|
type: "team";
|
|
@@ -811,7 +812,7 @@ export interface WorkspaceConfigVersion {
|
|
|
811
812
|
};
|
|
812
813
|
}
|
|
813
814
|
export interface UsageRecordBase {
|
|
814
|
-
|
|
815
|
+
customerId: string;
|
|
815
816
|
recordedAt: Timestamp;
|
|
816
817
|
}
|
|
817
818
|
export interface AppHourUsageRecord extends UsageRecordBase {
|