@databutton/firebase-types 1.70.3 → 1.70.4
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.
|
@@ -1303,7 +1303,7 @@ export interface PatchAttemptStrategy {
|
|
|
1303
1303
|
codeModel: string;
|
|
1304
1304
|
config: object;
|
|
1305
1305
|
}
|
|
1306
|
-
interface WriteAttemptStepBase {
|
|
1306
|
+
export interface WriteAttemptStepBase {
|
|
1307
1307
|
original: string;
|
|
1308
1308
|
search: string;
|
|
1309
1309
|
replace: string;
|
|
@@ -1325,7 +1325,10 @@ export interface WriteAttempt {
|
|
|
1325
1325
|
projectId: string;
|
|
1326
1326
|
success: boolean;
|
|
1327
1327
|
failureReason?: string | null;
|
|
1328
|
-
|
|
1328
|
+
messages: {
|
|
1329
|
+
level: "info" | "error" | "warning";
|
|
1330
|
+
message: string;
|
|
1331
|
+
}[];
|
|
1329
1332
|
steps: WriteAttemptStep[];
|
|
1330
1333
|
timings: {
|
|
1331
1334
|
[key: string]: number;
|