@fireproof/core 0.14.8 → 0.14.9

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.
@@ -11583,7 +11583,7 @@ replaceTraps((oldTraps) => ({
11583
11583
  }));
11584
11584
 
11585
11585
  // src/version.ts
11586
- var PACKAGE_VERSION = "0.14.8";
11586
+ var PACKAGE_VERSION = "0.14.9";
11587
11587
 
11588
11588
  // src/store.ts
11589
11589
  var match = PACKAGE_VERSION.match(/^([^.]*\.[^.]*)/);
@@ -21493,6 +21493,9 @@ var Database = class {
21493
21493
  }));
21494
21494
  return { rows, clock: head };
21495
21495
  }
21496
+ async allDocuments() {
21497
+ return this.allDocs();
21498
+ }
21496
21499
  subscribe(listener, updates) {
21497
21500
  if (updates) {
21498
21501
  if (!this._listening) {