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.
package/dist/auth.service.js
CHANGED
|
@@ -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
|
|
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)(
|
|
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";
|