@nsshunt/stsutils 1.5.1 → 1.5.2

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/authutils.js +1 -1
  2. package/package.json +1 -1
package/authutils.js CHANGED
@@ -97,7 +97,7 @@ class AuthUtils
97
97
  algorithm: ["RS256"] // RSASSA [ "RS256", "RS384", "RS512" ]
98
98
  };
99
99
 
100
- let retVal = jwt.verify(token, this.#publicKey, verifyOptions);
100
+ let retVal = jwt.verify(token, this.publicKey, verifyOptions);
101
101
 
102
102
  req.stsuser = {
103
103
  email: retVal.user.email,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nsshunt/stsutils",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "",
5
5
  "main": "stsutils.js",
6
6
  "scripts": {