@databutton/firebase-types 1.70.24 → 1.71.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.
@@ -1309,8 +1309,10 @@ export interface PatchAttemptStrategy {
1309
1309
  }
1310
1310
  export interface WriteAttemptStepBase {
1311
1311
  search: string;
1312
+ refittedSearch?: string;
1312
1313
  searchSizeInChars: number;
1313
1314
  replace: string;
1315
+ refittedReplace?: string;
1314
1316
  replaceSizeInChars: number;
1315
1317
  methodsAttempted: string[];
1316
1318
  timings: {
@@ -1434,4 +1436,16 @@ export interface PatchAttempt {
1434
1436
  [name: string]: number;
1435
1437
  };
1436
1438
  }
1439
+ export interface Commit {
1440
+ createdBy: PerformedBy;
1441
+ message: string;
1442
+ tags: string[];
1443
+ parentIds: string[];
1444
+ versionRefs: string[];
1445
+ }
1446
+ export interface Branch {
1447
+ createdBy: PerformedBy;
1448
+ updatedBy: PerformedBy;
1449
+ commitRef: string;
1450
+ }
1437
1451
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databutton/firebase-types",
3
- "version": "1.70.24",
3
+ "version": "1.71.0",
4
4
  "main": "lib/types/published/index.js",
5
5
  "type": "module",
6
6
  "engines": {