@punks/backend-entity-manager 0.0.332 → 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/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/handlers/user-login/types.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -22604,6 +22604,7 @@ let UserLoginHandler = class UserLoginHandler {
|
|
|
22604
22604
|
return {
|
|
22605
22605
|
success: true,
|
|
22606
22606
|
token: await this.generateUserJwtToken(user, input.context),
|
|
22607
|
+
userId: user.id,
|
|
22607
22608
|
};
|
|
22608
22609
|
}
|
|
22609
22610
|
async generateUserJwtToken(user, context) {
|