@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
|
|
2120
|
-
branchType
|
|
2120
|
+
branchId?: string | null;
|
|
2121
|
+
branchType?: "dev" | "prod" | null;
|
|
2121
2122
|
recordedAt: Timestamp;
|
|
2122
2123
|
windowStart?: number;
|
|
2123
2124
|
computeTimeSeconds: number;
|