@astrox/identity-ledgerhq 0.0.11 → 0.0.16

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrox/identity-ledgerhq",
3
- "version": "0.0.11",
3
+ "version": "0.0.16",
4
4
  "author": "DFINITY Stiftung <sdk@astrox.org>",
5
5
  "license": "Apache-2.0",
6
6
  "description": "JavaScript and TypeScript library to manage identity and authentication with the Internet Computer",
@@ -42,9 +42,9 @@
42
42
  "test:coverage": "jest --verbose --collectCoverage"
43
43
  },
44
44
  "dependencies": {
45
- "@astrox/agent": "^0.0.11",
46
- "@astrox/identity": "^0.0.11",
47
- "@astrox/principal": "^0.0.11",
45
+ "@astrox/agent": "^0.0.16",
46
+ "@astrox/identity": "^0.0.16",
47
+ "@astrox/principal": "^0.0.16",
48
48
  "@ledgerhq/hw-transport": "^5.49.0",
49
49
  "@ledgerhq/hw-transport-webhid": "^5.49.0",
50
50
  "@zondax/ledger-dfinity": "0.2.1",
@@ -68,5 +68,5 @@
68
68
  "typescript": "^4.2.3",
69
69
  "whatwg-fetch": "^3.0.0"
70
70
  },
71
- "gitHead": "ca936512f7b0091c3f61ffd8f00eae7570cca608"
71
+ "gitHead": "5a6491f658248c41fb9348790c79dae998cb62d0"
72
72
  }
package/types/borc.d.ts CHANGED
@@ -14,6 +14,6 @@ declare module 'borc' {
14
14
  class Tagged {
15
15
  tag: number;
16
16
  value: any;
17
- constructor(tag: Number, value: any);
17
+ constructor(tag: number, value: any);
18
18
  }
19
19
  }