@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.
@@ -20977,7 +20977,7 @@ import { homedir } from "os";
20977
20977
  import { mkdir, readFile, writeFile, unlink } from "fs/promises";
20978
20978
 
20979
20979
  // src/version.ts
20980
- var PACKAGE_VERSION = "0.14.8";
20980
+ var PACKAGE_VERSION = "0.14.9";
20981
20981
 
20982
20982
  // src/store.ts
20983
20983
  var match = PACKAGE_VERSION.match(/^([^.]*\.[^.]*)/);
@@ -30838,6 +30838,9 @@ var Database = class {
30838
30838
  }));
30839
30839
  return { rows, clock: head };
30840
30840
  }
30841
+ async allDocuments() {
30842
+ return this.allDocs();
30843
+ }
30841
30844
  subscribe(listener, updates) {
30842
30845
  if (updates) {
30843
30846
  if (!this._listening) {