@databutton/firebase-types 1.70.23 → 1.70.25
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.
|
@@ -1308,10 +1308,11 @@ export interface PatchAttemptStrategy {
|
|
|
1308
1308
|
config: object;
|
|
1309
1309
|
}
|
|
1310
1310
|
export interface WriteAttemptStepBase {
|
|
1311
|
-
original: string;
|
|
1312
1311
|
search: string;
|
|
1312
|
+
refittedSearch?: string;
|
|
1313
1313
|
searchSizeInChars: number;
|
|
1314
1314
|
replace: string;
|
|
1315
|
+
refittedReplace?: string;
|
|
1315
1316
|
replaceSizeInChars: number;
|
|
1316
1317
|
methodsAttempted: string[];
|
|
1317
1318
|
timings: {
|
|
@@ -1320,8 +1321,7 @@ export interface WriteAttemptStepBase {
|
|
|
1320
1321
|
}
|
|
1321
1322
|
export interface WriteAttemptStepSuccess extends WriteAttemptStepBase {
|
|
1322
1323
|
success: true;
|
|
1323
|
-
|
|
1324
|
-
replaceCount: number;
|
|
1324
|
+
diff: string;
|
|
1325
1325
|
successfulMethod: string;
|
|
1326
1326
|
}
|
|
1327
1327
|
export interface WriteAttemptStepFailure extends WriteAttemptStepBase {
|