@nest-boot/auth 4.0.0-beta.8 → 4.0.0
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.constants.d.ts +2 -0
- package/dist/auth.constants.js +6 -0
- package/dist/auth.constants.js.map +1 -0
- package/dist/auth.guard.d.ts +2 -2
- package/dist/auth.guard.js +19 -13
- package/dist/auth.guard.js.map +1 -1
- package/dist/auth.middleware.js +10 -11
- package/dist/auth.middleware.js.map +1 -1
- package/dist/auth.service.d.ts +4 -4
- package/dist/auth.service.js +11 -10
- package/dist/auth.service.js.map +1 -1
- package/dist/decorators/current-entity.decorator.js +2 -2
- package/dist/decorators/current-entity.decorator.js.map +1 -1
- package/dist/decorators/current-personal-access-token.decorator.d.ts +1 -1
- package/dist/decorators/current-personal-access-token.decorator.js +4 -4
- package/dist/decorators/current-personal-access-token.decorator.js.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/interfaces/{personal-access-token.interface.d.ts → access-token.interface.d.ts} +1 -1
- package/dist/interfaces/{auth-payload.interface.js → access-token.interface.js} +1 -1
- package/dist/interfaces/access-token.interface.js.map +1 -0
- package/dist/interfaces/auth-module-options.interface.d.ts +2 -4
- package/dist/interfaces/index.d.ts +1 -2
- package/dist/interfaces/index.js +1 -2
- package/dist/interfaces/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +13 -11
- package/dist/interfaces/auth-payload.interface.d.ts +0 -6
- package/dist/interfaces/auth-payload.interface.js.map +0 -1
- package/dist/interfaces/personal-access-token.interface.js +0 -3
- package/dist/interfaces/personal-access-token.interface.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nest-boot/auth",
|
|
3
|
-
"version": "4.0.0
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "d4rkcr0w <me@d4rkcr0w.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -25,12 +25,11 @@
|
|
|
25
25
|
"ms": "^2.1.3"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@mikro-orm/
|
|
29
|
-
"@
|
|
30
|
-
"@nest-boot/
|
|
31
|
-
"@nest-boot/
|
|
32
|
-
"@nest-boot/
|
|
33
|
-
"@nest-boot/tsconfig": "4.0.0-beta.1",
|
|
28
|
+
"@mikro-orm/nestjs": "^5.1.6",
|
|
29
|
+
"@nest-boot/database": "4.0.0",
|
|
30
|
+
"@nest-boot/eslint-config": "4.0.0",
|
|
31
|
+
"@nest-boot/request-context": "4.0.0",
|
|
32
|
+
"@nest-boot/tsconfig": "4.0.0",
|
|
34
33
|
"@nestjs/common": "^9.2.1",
|
|
35
34
|
"@nestjs/config": "^2.2.0",
|
|
36
35
|
"@nestjs/core": "^9.2.1",
|
|
@@ -39,25 +38,28 @@
|
|
|
39
38
|
"@types/lodash": "^4.14.191",
|
|
40
39
|
"@types/ms": "^0.7.31",
|
|
41
40
|
"@types/node": "^18.11.18",
|
|
42
|
-
"eslint": "^8.
|
|
41
|
+
"eslint": "^8.32.0",
|
|
43
42
|
"express": "^4.18.2",
|
|
44
43
|
"jest": "^29.3.1",
|
|
45
44
|
"reflect-metadata": "^0.1.13",
|
|
46
45
|
"rxjs": "^7.8.0",
|
|
47
|
-
"ts-jest": "^29.0.
|
|
46
|
+
"ts-jest": "^29.0.5",
|
|
48
47
|
"typescript": "^4.9.4"
|
|
49
48
|
},
|
|
50
49
|
"peerDependencies": {
|
|
51
50
|
"@mikro-orm/core": "^5.0.0",
|
|
52
51
|
"@mikro-orm/nestjs": "^5.1.2",
|
|
53
|
-
"@nest-boot/database": "4.0.0
|
|
54
|
-
"@nest-boot/request-context": "4.0.0
|
|
52
|
+
"@nest-boot/database": "4.0.0",
|
|
53
|
+
"@nest-boot/request-context": "4.0.0",
|
|
55
54
|
"@nestjs/common": "^9.0.0",
|
|
56
55
|
"@nestjs/core": "^9.0.0",
|
|
57
56
|
"express": "^4.0.0",
|
|
58
57
|
"reflect-metadata": "^0.1.13",
|
|
59
58
|
"rxjs": "^7.0.0"
|
|
60
59
|
},
|
|
60
|
+
"optionalDependencies": {
|
|
61
|
+
"@nest-boot/i18n": "5.0.0"
|
|
62
|
+
},
|
|
61
63
|
"publishConfig": {
|
|
62
64
|
"access": "public"
|
|
63
65
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"auth-payload.interface.js","sourceRoot":"","sources":["../../src/interfaces/auth-payload.interface.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"personal-access-token.interface.js","sourceRoot":"","sources":["../../src/interfaces/personal-access-token.interface.ts"],"names":[],"mappings":""}
|