@punks/backend-entity-manager 0.0.147 → 0.0.148
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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-register/types.d.ts +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-register/types.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -20525,7 +20525,7 @@ let UserRegistrationHandler = class UserRegistrationHandler {
|
|
|
20525
20525
|
passwordHash,
|
|
20526
20526
|
passwordUpdateTimestamp: new Date(),
|
|
20527
20527
|
});
|
|
20528
|
-
await this.sendRegistrationEmail(user, input.callback, input.
|
|
20528
|
+
await this.sendRegistrationEmail(user, input.callback, input.languageCode);
|
|
20529
20529
|
this.logger.debug(`User already exists but not verified. Sending new verification email: ${input.email} - ${input.userName}`, { user });
|
|
20530
20530
|
return {
|
|
20531
20531
|
success: true,
|
|
@@ -20538,7 +20538,7 @@ let UserRegistrationHandler = class UserRegistrationHandler {
|
|
|
20538
20538
|
passwordHash,
|
|
20539
20539
|
passwordUpdateTimestamp: new Date(),
|
|
20540
20540
|
});
|
|
20541
|
-
await this.sendRegistrationEmail(newUser, input.callback, input.
|
|
20541
|
+
await this.sendRegistrationEmail(newUser, input.callback, input.languageCode);
|
|
20542
20542
|
this.logger.debug(`New user created: ${input.email} - ${input.userName}`, {
|
|
20543
20543
|
user: newUser,
|
|
20544
20544
|
});
|