@semapps/auth 0.4.0-alpha.46 → 0.4.0-alpha.48

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/mixins/auth.js +1 -1
  2. package/package.json +4 -4
package/mixins/auth.js CHANGED
@@ -65,7 +65,7 @@ const AuthMixin = {
65
65
  return Promise.reject(new E.UnAuthorizedError(E.ERR_INVALID_TOKEN));
66
66
  }
67
67
  } else {
68
- // No token, anonymous error
68
+ // No token
69
69
  ctx.meta.webId = 'anon';
70
70
  return Promise.resolve(null);
71
71
  }
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@semapps/auth",
3
- "version": "0.4.0-alpha.46",
3
+ "version": "0.4.0-alpha.48",
4
4
  "description": "Authentification module for SemApps",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Virtual Assembly",
7
7
  "dependencies": {
8
- "@semapps/mime-types": "0.4.0-alpha.46",
9
- "@semapps/triplestore": "0.4.0-alpha.46",
8
+ "@semapps/mime-types": "0.4.0-alpha.48",
9
+ "@semapps/triplestore": "0.4.0-alpha.48",
10
10
  "bcrypt": "^5.0.1",
11
11
  "express-session": "^1.17.0",
12
12
  "jsonwebtoken": "^8.5.1",
@@ -25,5 +25,5 @@
25
25
  "publishConfig": {
26
26
  "access": "public"
27
27
  },
28
- "gitHead": "ac3c794ccf2de716b568efc6aa18ec9f15f0ecd6"
28
+ "gitHead": "14cd7ce88aea586a1eedd028e731a0aacdbe635b"
29
29
  }