@punks/backend-entity-manager 0.0.499 → 0.0.500
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 +5 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/__test__/server/app/appAuth/appAuth.actions.d.ts +4 -1
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-verify-complete/index.d.ts +4 -1
- package/dist/cjs/types/platforms/nest/extensions/authentication/services/authentication/index.d.ts +4 -1
- package/dist/esm/index.js +5 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/__test__/server/app/appAuth/appAuth.actions.d.ts +4 -1
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-verify-complete/index.d.ts +4 -1
- package/dist/esm/types/platforms/nest/extensions/authentication/services/authentication/index.d.ts +4 -1
- package/dist/index.d.ts +8 -2
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -23680,6 +23680,10 @@ let UserVerifyCompleteHandler = class UserVerifyCompleteHandler {
|
|
|
23680
23680
|
verified: true,
|
|
23681
23681
|
verifiedTimestamp: new Date(),
|
|
23682
23682
|
});
|
|
23683
|
+
return {
|
|
23684
|
+
userId: user.id,
|
|
23685
|
+
email: user.email,
|
|
23686
|
+
};
|
|
23683
23687
|
}
|
|
23684
23688
|
async decodeToken(token) {
|
|
23685
23689
|
return await this.jwtProvider.verify(token);
|
|
@@ -23999,7 +24003,7 @@ exports.AuthenticationService = class AuthenticationService {
|
|
|
23999
24003
|
return await this.userVerifyRequestHandler.execute(input);
|
|
24000
24004
|
}
|
|
24001
24005
|
async userVerifyComplete(input) {
|
|
24002
|
-
await this.userVerifyCompleteHandler.execute(input);
|
|
24006
|
+
return await this.userVerifyCompleteHandler.execute(input);
|
|
24003
24007
|
}
|
|
24004
24008
|
async userTokenVerify(input) {
|
|
24005
24009
|
return await this.userTokenVerifyHandler.execute(input);
|