@punks/backend-entity-manager 0.0.331 → 0.0.333
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 +1 -0
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-login/types.d.ts +1 -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 +1 -0
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-login/types.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1373,6 +1373,7 @@ interface IAuthUser {
|
|
|
1373
1373
|
}
|
|
1374
1374
|
interface IAuthUserContext {
|
|
1375
1375
|
organizationUid?: string;
|
|
1376
|
+
directoryUid?: string;
|
|
1376
1377
|
}
|
|
1377
1378
|
interface IAuthUserTokenData<TContext extends IAuthUserContext> {
|
|
1378
1379
|
userId: string;
|
|
@@ -1623,6 +1624,7 @@ type UserLoginInput<TUserContext extends IAuthUserContext> = {
|
|
|
1623
1624
|
};
|
|
1624
1625
|
type UserLoginResult = {
|
|
1625
1626
|
token?: string;
|
|
1627
|
+
userId?: string;
|
|
1626
1628
|
success: boolean;
|
|
1627
1629
|
};
|
|
1628
1630
|
|