@databutton/firebase-types 1.70.5 → 1.70.7

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.
@@ -1306,7 +1306,9 @@ export interface PatchAttemptStrategy {
1306
1306
  export interface WriteAttemptStepBase {
1307
1307
  original: string;
1308
1308
  search: string;
1309
+ searchSizeInChars: number;
1309
1310
  replace: string;
1311
+ replaceSizeInChars: number;
1310
1312
  methodsAttempted: string[];
1311
1313
  timings: {
1312
1314
  [key: string]: number;
@@ -1326,7 +1328,7 @@ export interface WriteAttempt {
1326
1328
  createdAt: Timestamp;
1327
1329
  reference: string;
1328
1330
  success: boolean;
1329
- failureReason?: string | null;
1331
+ failureReason: string | null;
1330
1332
  messages: {
1331
1333
  level: "info" | "error" | "warning";
1332
1334
  message: string;
@@ -1337,7 +1339,9 @@ export interface WriteAttempt {
1337
1339
  };
1338
1340
  code: {
1339
1341
  before: string;
1342
+ beforeSizeInChars: number;
1340
1343
  after: string | null;
1344
+ afterSizeInChars: number;
1341
1345
  language: string;
1342
1346
  filepath: string;
1343
1347
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.70.5",
3
+ "version": "1.70.7",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {