@databutton/firebase-types 1.40.14 → 1.40.16

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.
@@ -74,13 +74,13 @@ export type Plan = TeamPlan | PayAsYouGoPlan | FreePlan;
74
74
  interface PlanBase {
75
75
  lastChangedBy: PerformedBy;
76
76
  }
77
- interface TeamPlan extends PlanBase {
77
+ export interface TeamPlan extends PlanBase {
78
78
  type: "team";
79
79
  }
80
- interface FreePlan extends PlanBase {
80
+ export interface FreePlan extends PlanBase {
81
81
  type: "free";
82
82
  }
83
- interface PayAsYouGoPlan extends PlanBase {
83
+ export interface PayAsYouGoPlan extends PlanBase {
84
84
  type: "pay-as-you-go";
85
85
  appExistenceHourPrice: 0.0274;
86
86
  creditsPerBillingPeriod: 20;
@@ -814,6 +814,7 @@ export interface UsageRecordBase {
814
814
  recordedAt: Timestamp;
815
815
  }
816
816
  export interface AppHourUsageRecord extends UsageRecordBase {
817
+ type: "app-hour";
817
818
  appCount: number;
818
819
  projectIds: string[];
819
820
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.40.14",
3
+ "version": "1.40.16",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {