@chilibase/backend 0.1.1 → 0.1.2
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/lib/auth/auth.module.d.ts +2 -0
- package/lib/auth/auth.module.js +22 -7
- package/lib/auth/auth.module.js.map +1 -1
- package/lib/auth/jwt.strategy.js +13 -0
- package/lib/auth/jwt.strategy.js.map +1 -1
- package/lib/auth/local-auth.guard.d.ts +4 -0
- package/lib/auth/local-auth.guard.js +15 -0
- package/lib/auth/local-auth.guard.js.map +1 -0
- package/lib/auth/local-auth.service.d.ts +17 -0
- package/lib/auth/local-auth.service.js +65 -0
- package/lib/auth/local-auth.service.js.map +1 -0
- package/lib/auth/local.strategy.d.ts +11 -0
- package/lib/auth/local.strategy.js +33 -0
- package/lib/auth/local.strategy.js.map +1 -0
- package/lib/serverApi/x-auth-api.d.ts +14 -0
- package/lib/serverApi/x-auth-api.js +2 -0
- package/lib/serverApi/x-auth-api.js.map +1 -0
- package/lib/services/XEnvVars.d.ts +1 -0
- package/lib/services/XEnvVars.js +1 -0
- package/lib/services/XEnvVars.js.map +1 -1
- package/lib/services/XUtils.d.ts +0 -4
- package/lib/services/XUtils.js +0 -1
- package/lib/services/XUtils.js.map +1 -1
- package/lib/services/x-lib.controller.d.ts +10 -2
- package/lib/services/x-lib.controller.js +32 -3
- package/lib/services/x-lib.controller.js.map +1 -1
- package/lib/services/x-lib.module.js +2 -1
- package/lib/services/x-lib.module.js.map +1 -1
- package/lib/services/x-lib.service.d.ts +4 -2
- package/lib/services/x-lib.service.js +14 -2
- package/lib/services/x-lib.service.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -4
- package/lib/serverApi/XPostLoginIfc.d.ts +0 -7
- package/lib/serverApi/XPostLoginIfc.js +0 -2
- package/lib/serverApi/XPostLoginIfc.js.map +0 -1
- package/lib/serverApi/XUserAuthenticationIfc.d.ts +0 -9
- package/lib/serverApi/XUserAuthenticationIfc.js +0 -2
- package/lib/serverApi/XUserAuthenticationIfc.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chilibase/backend",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "Michal Rakus",
|
|
@@ -9,21 +9,23 @@
|
|
|
9
9
|
"node": ">=20"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"bcrypt": "^
|
|
12
|
+
"bcrypt": "^6.0.0",
|
|
13
13
|
"iconv-lite": "^0.6.3",
|
|
14
|
-
"lodash": "^4.17.21"
|
|
14
|
+
"lodash": "^4.17.21",
|
|
15
|
+
"@nestjs/jwt": "^11.0.1"
|
|
15
16
|
},
|
|
16
17
|
"devDependencies": {
|
|
17
18
|
"@nestjs/cli": "^11.0.6",
|
|
18
19
|
"@nestjs/schematics": "^11.0.5",
|
|
19
20
|
"@nestjs/testing": "^11.0.20",
|
|
20
|
-
"@types/bcrypt": "^
|
|
21
|
+
"@types/bcrypt": "^6.0.0",
|
|
21
22
|
"@types/express": "^5.0.0",
|
|
22
23
|
"@types/jest": "29.5.14",
|
|
23
24
|
"@types/lodash": "^4.17.13",
|
|
24
25
|
"@types/multer": "^1.4.12",
|
|
25
26
|
"@types/node": "^22.14.0",
|
|
26
27
|
"@types/passport-jwt": "^4.0.1",
|
|
28
|
+
"@types/passport-local": "^1.0.38",
|
|
27
29
|
"@types/supertest": "^6.0.3",
|
|
28
30
|
"@typescript-eslint/eslint-plugin": "8.30.1",
|
|
29
31
|
"@typescript-eslint/parser": "8.30.1",
|
|
@@ -50,6 +52,7 @@
|
|
|
50
52
|
"jwks-rsa": "^3.2.0",
|
|
51
53
|
"passport": "^0.7.0",
|
|
52
54
|
"passport-jwt": "^4.0.1",
|
|
55
|
+
"passport-local": "^1.0.0",
|
|
53
56
|
"pg": "^8.14.1",
|
|
54
57
|
"pg-query-stream": "^4.8.1",
|
|
55
58
|
"postgres-interval": "^4.0.2",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"XPostLoginIfc.js","sourceRoot":"","sources":["../../src/serverApi/XPostLoginIfc.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"XUserAuthenticationIfc.js","sourceRoot":"","sources":["../../src/serverApi/XUserAuthenticationIfc.ts"],"names":[],"mappings":""}
|