@live-change/db-store-indexeddb 0.9.221 → 0.9.223

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.
Files changed (2) hide show
  1. package/lib/Store.js +8 -0
  2. package/package.json +4 -4
package/lib/Store.js CHANGED
@@ -684,6 +684,14 @@ class Store {
684
684
  return object
685
685
  }
686
686
 
687
+ stat() {
688
+ return {
689
+ available: false,
690
+ entryCount: null,
691
+ usedBytes: null
692
+ }
693
+ }
694
+
687
695
  }
688
696
 
689
697
  export default Store
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/db-store-indexeddb",
3
- "version": "0.9.221",
3
+ "version": "0.9.223",
4
4
  "description": "Database with observable data for live queries",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -26,9 +26,9 @@
26
26
  "tape": "^5.7.4"
27
27
  },
28
28
  "dependencies": {
29
- "@live-change/dao": "^0.9.221",
30
- "@live-change/flatten-interval-tree": "^0.9.221",
29
+ "@live-change/dao": "^0.9.223",
30
+ "@live-change/flatten-interval-tree": "^0.9.223",
31
31
  "broadcast-channel": "^4.2.0"
32
32
  },
33
- "gitHead": "ae6d6ee6938d3aaf0c2eda15fe19660d9a3cf105"
33
+ "gitHead": "bbe8401443d2e2a238362a9e73cd2697ddf2e6e9"
34
34
  }