@quatrain/auth 1.2.5 → 1.2.9
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.js +1 -1
- package/package.json +4 -4
- package/src/Auth.ts +1 -1
package/dist/Auth.js
CHANGED
|
@@ -52,5 +52,5 @@ Auth.logger = _a.addLogger('Auth');
|
|
|
52
52
|
/** Standardized error message for duplicate email constraint violations. */
|
|
53
53
|
Auth.ERROR_EMAIL_EXISTS = `User email already exists`;
|
|
54
54
|
/** Standardized error message for weak password / password complexity violations. */
|
|
55
|
-
Auth.ERROR_WEAK_PASSWORD = `weak_password`;
|
|
55
|
+
Auth.ERROR_WEAK_PASSWORD = `weak_password`; // NOSONAR
|
|
56
56
|
Auth._providers = {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/auth",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.9",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"description": "Auth adapters commons",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
},
|
|
21
21
|
"author": "Quatrain Développement SAS <developers@quatrain.com>",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@quatrain/api": "^1.1.
|
|
24
|
-
"@quatrain/backend": "^1.2.
|
|
23
|
+
"@quatrain/api": "^1.1.7",
|
|
24
|
+
"@quatrain/backend": "^1.2.17",
|
|
25
25
|
"@quatrain/core": "^1.2.16",
|
|
26
|
-
"@quatrain/http": "^1.0.
|
|
26
|
+
"@quatrain/http": "^1.0.4"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@tsconfig/recommended": "^1.0.1",
|
package/src/Auth.ts
CHANGED
|
@@ -49,7 +49,7 @@ export class Auth extends Core {
|
|
|
49
49
|
/** Standardized error message for duplicate email constraint violations. */
|
|
50
50
|
static ERROR_EMAIL_EXISTS = `User email already exists`
|
|
51
51
|
/** Standardized error message for weak password / password complexity violations. */
|
|
52
|
-
static ERROR_WEAK_PASSWORD = `weak_password`
|
|
52
|
+
static ERROR_WEAK_PASSWORD = `weak_password` // NOSONAR
|
|
53
53
|
|
|
54
54
|
protected static _providers: AuthRegistry<any> = {}
|
|
55
55
|
|