@databutton/firebase-types 1.124.0 → 1.125.0

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.
@@ -2104,7 +2104,8 @@ export interface CreditTransactionRecord {
2104
2104
  createdAt: Timestamp;
2105
2105
  projectId: string | null;
2106
2106
  recordedAt: Timestamp;
2107
- type: "creditsPurchased" | "computeHourUsed" | "agentUsed" | "manualAdjustment" | "adminAdjustment" | "monthlyReset";
2107
+ type: "creditsPurchased" | "computeHourUsed" | "agentUsed" | "manualAdjustment" | "adminAdjustment" | "monthlyReset" | "database";
2108
+ provider?: string | null;
2108
2109
  sourceRef: string | null;
2109
2110
  }
2110
2111
  export interface ComputeHourUsageRecord {
@@ -2116,8 +2117,8 @@ export interface ComputeHourUsageRecord {
2116
2117
  export interface NeonUsageRecord {
2117
2118
  projectId: string;
2118
2119
  neonProjectId: string;
2119
- branchId: string;
2120
- branchType: "dev" | "prod";
2120
+ branchId?: string | null;
2121
+ branchType?: "dev" | "prod" | null;
2121
2122
  recordedAt: Timestamp;
2122
2123
  windowStart?: number;
2123
2124
  computeTimeSeconds: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.124.0",
3
+ "version": "1.125.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {