ecrs-auth-core 1.0.22 → 1.0.23

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.
@@ -49,7 +49,7 @@ exports.AuthService = void 0;
49
49
  const common_1 = require("@nestjs/common");
50
50
  const jwt_1 = require("@nestjs/jwt");
51
51
  const bcrypt = __importStar(require("bcrypt"));
52
- const auth_module_1 = require("./auth.module");
52
+ const constants_1 = require("./constants/constants");
53
53
  let AuthService = class AuthService {
54
54
  constructor(jwtService, options) {
55
55
  this.jwtService = jwtService;
@@ -153,6 +153,6 @@ let AuthService = class AuthService {
153
153
  exports.AuthService = AuthService;
154
154
  exports.AuthService = AuthService = __decorate([
155
155
  (0, common_1.Injectable)(),
156
- __param(1, (0, common_1.Inject)(auth_module_1.AUTH_CORE_OPTIONS)),
156
+ __param(1, (0, common_1.Inject)(constants_1.AUTH_CORE_OPTIONS)),
157
157
  __metadata("design:paramtypes", [jwt_1.JwtService, Object])
158
158
  ], AuthService);
@@ -0,0 +1 @@
1
+ export declare const AUTH_CORE_OPTIONS = "AUTH_CORE_OPTIONS";
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AUTH_CORE_OPTIONS = void 0;
4
+ exports.AUTH_CORE_OPTIONS = 'AUTH_CORE_OPTIONS';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecrs-auth-core",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "Centralized authentication and authorization module for ECRS apps",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",