@databutton/firebase-types 1.40.13 → 1.40.15

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