From c50a08e4fcd186fb4864e553ea33e4d520f1ac34 Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 25 Aug 2025 20:00:40 +0200 Subject: [PATCH] update dependency --- package-lock.json | 12 ++++++------ package.json | 4 ++-- src/password.hasher.module.spec.ts | 3 ++- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5aaa251..c4b5a3c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { "name": "@apihub24/password-hasher", - "version": "1.0.9", + "version": "2.0.0-alpha.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@apihub24/password-hasher", - "version": "1.0.9", + "version": "2.0.0-alpha.0", "license": "MIT", "dependencies": { - "@apihub24/authentication": "^1.0.1", + "@apihub24/authentication": "2.0.0-alpha.0", "@nestjs/common": "^11.1.6", "@nestjs/config": "^4.0.2", "bcrypt": "^6.0.0" @@ -38,9 +38,9 @@ } }, "node_modules/@apihub24/authentication": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@apihub24/authentication/-/authentication-1.0.1.tgz", - "integrity": "sha512-nWw75ofQKHxE0dI7PzvNBQNcQrX/HSrzuAJTYNu42BoCROba1NUz8QAodTn5+3dIeQEzw127gtSb6D7yW0B8Jg==", + "version": "2.0.0-alpha.0", + "resolved": "https://registry.npmjs.org/@apihub24/authentication/-/authentication-2.0.0-alpha.0.tgz", + "integrity": "sha512-e7ZGD2fHSo2LJFuu9/6lJ4JMq52anK1jUe5btusVbNRzAP+8lrFcwytlctLUF2Adtlg/DgLGrLzCgSm+g19TVw==", "license": "MIT" }, "node_modules/@babel/code-frame": { diff --git a/package.json b/package.json index 6dbdfc6..b4de23d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@apihub24/password-hasher", - "version": "1.0.9", + "version": "2.0.0-alpha.0", "description": "", "main": "dist/index.js", "types": "./dist/index.d.ts", @@ -14,7 +14,7 @@ "dependencies": { "@nestjs/common": "^11.1.6", "@nestjs/config": "^4.0.2", - "@apihub24/authentication": "^1.0.1", + "@apihub24/authentication": "2.0.0-alpha.0", "bcrypt": "^6.0.0" }, "devDependencies": { diff --git a/src/password.hasher.module.spec.ts b/src/password.hasher.module.spec.ts index 75ec03f..fbf1b12 100644 --- a/src/password.hasher.module.spec.ts +++ b/src/password.hasher.module.spec.ts @@ -1,5 +1,6 @@ import { Test, TestingModule } from "@nestjs/testing"; import { PasswordHasherModule } from "./"; +import { APIHUB24_PASSWORD_SERVICE } from "@apihub24/authentication"; describe("PasswordHasherModule Tests", () => { let module: TestingModule | null = null; @@ -12,7 +13,7 @@ describe("PasswordHasherModule Tests", () => { it("should get PasswordHasherService by injection Key @apihub24/password_service", () => { expect(module).toBeDefined(); - const service = module?.get("@apihub24/password_service"); + const service = module?.get(APIHUB24_PASSWORD_SERVICE); expect(service).toBeDefined(); }); });