@hichchi/nest-connector 0.0.8 → 0.0.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/CHANGELOG.md +6 -0
- package/README.md +141 -141
- package/package.json +1 -1
- package/src/auth/interfaces/user.interface.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hichchi/nest-connector",
|
|
3
3
|
"description": "Comprehensive NestJS connector library providing standardized HTTP responses, authentication interfaces, CRUD operations, and shared utilities for the Hichchi ecosystem",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.9",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -69,7 +69,7 @@ export interface User<R extends string = string, P extends string = string, T ex
|
|
|
69
69
|
*
|
|
70
70
|
* @see {@link Role} Interface defining user authorization roles
|
|
71
71
|
*/
|
|
72
|
-
role
|
|
72
|
+
role?: Role<R, P> | R | null;
|
|
73
73
|
/**
|
|
74
74
|
* The unique identifier of the user's role.
|
|
75
75
|
*
|
|
@@ -90,7 +90,7 @@ export interface User<R extends string = string, P extends string = string, T ex
|
|
|
90
90
|
*
|
|
91
91
|
* @see {@link Tenant} Interface defining tenant details
|
|
92
92
|
*/
|
|
93
|
-
tenant
|
|
93
|
+
tenant?: Tenant | T | null;
|
|
94
94
|
/**
|
|
95
95
|
* The unique identifier of the user's tenant.
|
|
96
96
|
*
|