@ocap/indexdb 1.16.14 → 1.16.17

Sign up to get free protection for your applications and to get access to all the features.
package/lib/db.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable no-unused-vars */
2
- const Ready = require('@ocap/util/lib/ready');
2
+ const { Ready } = require('@ocap/util/lib/ready');
3
3
  const { indexes } = require('@ocap/state');
4
4
 
5
5
  class BaseIndexDB extends Ready {
package/lib/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable no-underscore-dangle */
2
2
  const Kareem = require('kareem');
3
3
  const omit = require('lodash/omit');
4
- const Ready = require('@ocap/util/lib/ready');
4
+ const { Ready } = require('@ocap/util/lib/ready');
5
5
 
6
6
  class BaseIndex extends Ready {
7
7
  constructor(name) {
package/lib/util.js CHANGED
@@ -2,7 +2,7 @@
2
2
  const get = require('lodash/get');
3
3
  const uniq = require('lodash/uniq');
4
4
  const pick = require('lodash/pick');
5
- const createSortedList = require('@ocap/util/lib/create-sorted-list');
5
+ const { createSortedList } = require('@ocap/util/lib/create-sorted-list');
6
6
  const { BN } = require('@ocap/util');
7
7
 
8
8
  const formatTokenMeta = (token, tokenStates) => {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.14",
6
+ "version": "1.16.17",
7
7
  "description": "Defines the basic interface for OCAP IndexDB",
8
8
  "main": "lib/main.js",
9
9
  "files": [
@@ -25,10 +25,10 @@
25
25
  "jest": "^27.3.1"
26
26
  },
27
27
  "dependencies": {
28
- "@ocap/state": "1.16.14",
29
- "@ocap/util": "1.16.14",
28
+ "@ocap/state": "1.16.17",
29
+ "@ocap/util": "1.16.17",
30
30
  "kareem": "^2.3.2",
31
31
  "lodash": "^4.17.21"
32
32
  },
33
- "gitHead": "5f1bb9c7d6044e20c77e9cccea8cda2d6c5ae29f"
33
+ "gitHead": "489ce5e03bce27ddcd535390228b11ab56e7a2e3"
34
34
  }