@zola_do/authorization 0.1.38 → 0.1.39
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/README.md +6 -2
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -153,6 +153,10 @@ export class AuthService {
|
|
|
153
153
|
|
|
154
154
|
## Related Packages
|
|
155
155
|
|
|
156
|
-
- [@zola_do/core](../core) — Shared types and decorators
|
|
157
|
-
- [@zola_do/interceptors](../interceptors) — TenantInterceptor uses `req.user` from JWT
|
|
158
156
|
- [@zola_do/crud](../crud) — Uses JwtGuard and PermissionsGuard
|
|
157
|
+
|
|
158
|
+
## Community
|
|
159
|
+
|
|
160
|
+
- [Contributing](../../CONTRIBUTING.md)
|
|
161
|
+
- [Code of Conduct](../../CODE_OF_CONDUCT.md)
|
|
162
|
+
- [Security Policy](../../SECURITY.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zola_do/authorization",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.39",
|
|
4
4
|
"description": "JWT auth, guards, strategies for NestJS",
|
|
5
5
|
"author": "zolaDO",
|
|
6
6
|
"license": "ISC",
|
|
@@ -59,6 +59,10 @@
|
|
|
59
59
|
"bugs": {
|
|
60
60
|
"url": "https://github.com/zola0031/zola-nestjs-shared/issues"
|
|
61
61
|
},
|
|
62
|
+
"funding": {
|
|
63
|
+
"type": "github",
|
|
64
|
+
"url": "https://github.com/sponsors/zola0031"
|
|
65
|
+
},
|
|
62
66
|
"keywords": [
|
|
63
67
|
"nestjs",
|
|
64
68
|
"typescript",
|
|
@@ -71,6 +75,7 @@
|
|
|
71
75
|
"jwt",
|
|
72
76
|
"guards",
|
|
73
77
|
"permissions",
|
|
74
|
-
"security"
|
|
78
|
+
"security",
|
|
79
|
+
"nestjs-shared"
|
|
75
80
|
]
|
|
76
81
|
}
|