@autofleet/zehut 1.7.3-beta3 → 1.7.3-beta4

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.
@@ -97,7 +97,7 @@ class ApiUser {
97
97
  getUserAppPermissions(appId) {
98
98
  return __awaiter(this, void 0, void 0, function* () {
99
99
  console.log('getUserAppPermissions1', appId, this.id);
100
- if (!this.id || appId) {
100
+ if (!this.id || !appId) {
101
101
  return;
102
102
  }
103
103
  const currentAppPermission = this.appPermission[appId];
package/lib/user/index.js CHANGED
@@ -139,9 +139,7 @@ exports.appMiddleware = (options) => (req, res, next) => __awaiter(void 0, void
139
139
  errors: ['Server error while parsing token'],
140
140
  });
141
141
  }
142
- console.log('decoded', decoded);
143
142
  const userId = decoded === null || decoded === void 0 ? void 0 : decoded.userId;
144
- console.log('decoded2', userId, decoded);
145
143
  if (userId) {
146
144
  req.headers['X-AF-USER-ID'] = userId;
147
145
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/zehut",
3
- "version": "1.7.3-beta3",
3
+ "version": "1.7.3-beta4",
4
4
  "description": "manage user's identity",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",