@databutton/firebase-types 1.40.15 → 1.40.17

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.
@@ -82,10 +82,10 @@ export interface FreePlan extends PlanBase {
82
82
  }
83
83
  export interface PayAsYouGoPlan extends PlanBase {
84
84
  type: "pay-as-you-go";
85
- appExistenceHourPrice: 0.0274;
86
- creditsPerBillingPeriod: 20;
85
+ appExistenceHourPrice: number;
86
+ creditsPerBillingPeriod: number;
87
87
  currency: "USD";
88
- billingPeriodInDays: 30;
88
+ billingPeriodInDays: number;
89
89
  billingPeriodStartDate: Timestamp;
90
90
  }
91
91
  export interface FeatureFlagBase {
@@ -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.15",
3
+ "version": "1.40.17",
4
4
  "main": "./lib/index.js",
5
5
  "type": "module",
6
6
  "engines": {