@punks/backend-entity-manager 0.0.327 → 0.0.329
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/cjs/index.js +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/extensions/authentication/abstractions/index.d.ts +6 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/extensions/authentication/abstractions/index.d.ts +6 -0
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -30,6 +30,11 @@ export interface IAuthOrganization {
|
|
|
30
30
|
name: string;
|
|
31
31
|
tenant: IAuthTenant;
|
|
32
32
|
}
|
|
33
|
+
export interface IAuthDirectory {
|
|
34
|
+
id: string;
|
|
35
|
+
uid: string;
|
|
36
|
+
name: string;
|
|
37
|
+
}
|
|
33
38
|
export interface IAuthApiKey {
|
|
34
39
|
id: string;
|
|
35
40
|
key: string;
|
|
@@ -49,6 +54,7 @@ export interface IAuthUser {
|
|
|
49
54
|
disabled: boolean;
|
|
50
55
|
profile: IAuthUserProfile;
|
|
51
56
|
organization?: IAuthOrganization;
|
|
57
|
+
directory?: IAuthDirectory;
|
|
52
58
|
}
|
|
53
59
|
export interface IAuthUserContext {
|
|
54
60
|
organizationUid?: string;
|
package/dist/esm/index.js
CHANGED
|
@@ -23180,6 +23180,7 @@ let EntityManagerInitializer = EntityManagerInitializer_1 = class EntityManagerI
|
|
|
23180
23180
|
await this.registerBucketProviders();
|
|
23181
23181
|
await this.registerSecretsProviders();
|
|
23182
23182
|
await this.registerCacheInstances();
|
|
23183
|
+
await this.registerOperationLockService();
|
|
23183
23184
|
await this.executeInitializers(app);
|
|
23184
23185
|
await this.executeSeeders();
|
|
23185
23186
|
this.logger.log("Entity manager initialization completed 🚀");
|