@fireproof/core 0.14.7 → 0.14.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.7";
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) {