@ocap/statedb 1.16.16 → 1.17.1

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.
package/lib/db.js CHANGED
@@ -1,4 +1,4 @@
1
- const Ready = require('@ocap/util/lib/ready');
1
+ const { Ready } = require('@ocap/util/lib/ready');
2
2
  const { tables } = require('@ocap/state');
3
3
 
4
4
  class StateDB extends Ready {
package/lib/table.js CHANGED
@@ -2,7 +2,7 @@
2
2
  const Kareem = require('kareem');
3
3
  const omit = require('lodash/omit');
4
4
  const pick = require('lodash/pick');
5
- const Ready = require('@ocap/util/lib/ready');
5
+ const { Ready } = require('@ocap/util/lib/ready');
6
6
 
7
7
  class StateDBTable extends Ready {
8
8
  constructor() {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.16",
6
+ "version": "1.17.1",
7
7
  "description": "Defines the basic interface for OCAP StateDB",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -22,10 +22,10 @@
22
22
  "jest": "^27.3.1"
23
23
  },
24
24
  "dependencies": {
25
- "@ocap/state": "1.16.16",
26
- "@ocap/util": "1.16.16",
25
+ "@ocap/state": "1.17.1",
26
+ "@ocap/util": "1.17.1",
27
27
  "kareem": "^2.3.2",
28
28
  "lodash": "^4.17.21"
29
29
  },
30
- "gitHead": "051f9620995cf24407374cc4811b0fa6ed6dc7ca"
30
+ "gitHead": "ca2ac264d9d6358680d5be99fcdd4685d0c999fc"
31
31
  }