@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 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.languageId);
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.languageId);
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
  });