@astrox/authentication 0.0.11 → 0.0.13

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/authentication",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
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",
@@ -40,9 +40,9 @@
40
40
  "test:coverage": "jest --verbose --collectCoverage"
41
41
  },
42
42
  "devDependencies": {
43
- "@astrox/agent": "^0.0.11",
44
- "@astrox/identity": "^0.0.11",
45
- "@astrox/principal": "^0.0.11",
43
+ "@astrox/agent": "^0.0.13",
44
+ "@astrox/identity": "^0.0.13",
45
+ "@astrox/principal": "^0.0.13",
46
46
  "@trust/webcrypto": "^0.9.2",
47
47
  "@types/jest": "^24.9.1",
48
48
  "@typescript-eslint/eslint-plugin": "^4.14.2",
@@ -59,5 +59,5 @@
59
59
  "typescript": "^4.2.3",
60
60
  "whatwg-fetch": "^3.0.0"
61
61
  },
62
- "gitHead": "ca936512f7b0091c3f61ffd8f00eae7570cca608"
62
+ "gitHead": "bd8bbdfa92630468257e7c86429170a07b4b889b"
63
63
  }
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
  }