@databutton/firebase-types 1.124.0 → 1.126.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.
@@ -1453,6 +1453,7 @@ export interface Project {
1453
1453
  provider: "fly" | "cloudrun";
1454
1454
  cpuCount?: number;
1455
1455
  memoryInGb?: number;
1456
+ diskSizeGb?: number;
1456
1457
  regionHint?: string;
1457
1458
  useVpc?: boolean;
1458
1459
  };
@@ -1468,6 +1469,7 @@ export interface Project {
1468
1469
  export interface ProjectAccess {
1469
1470
  updatedAt?: Timestamp;
1470
1471
  active: boolean;
1472
+ accountId?: string;
1471
1473
  owner: string;
1472
1474
  members: string[] | null;
1473
1475
  devxAppbutlerId?: string | null;
@@ -2104,7 +2106,8 @@ export interface CreditTransactionRecord {
2104
2106
  createdAt: Timestamp;
2105
2107
  projectId: string | null;
2106
2108
  recordedAt: Timestamp;
2107
- type: "creditsPurchased" | "computeHourUsed" | "agentUsed" | "manualAdjustment" | "adminAdjustment" | "monthlyReset";
2109
+ type: "creditsPurchased" | "computeHourUsed" | "agentUsed" | "manualAdjustment" | "adminAdjustment" | "monthlyReset" | "database";
2110
+ provider?: string | null;
2108
2111
  sourceRef: string | null;
2109
2112
  }
2110
2113
  export interface ComputeHourUsageRecord {
@@ -2116,8 +2119,8 @@ export interface ComputeHourUsageRecord {
2116
2119
  export interface NeonUsageRecord {
2117
2120
  projectId: string;
2118
2121
  neonProjectId: string;
2119
- branchId: string;
2120
- branchType: "dev" | "prod";
2122
+ branchId?: string | null;
2123
+ branchType?: "dev" | "prod" | null;
2121
2124
  recordedAt: Timestamp;
2122
2125
  windowStart?: number;
2123
2126
  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.126.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {