@punks/backend-entity-manager 0.0.32 → 0.0.34

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.
Files changed (24) hide show
  1. package/dist/cjs/index.js +5 -5
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/platforms/nest/__test__/server/app/auth/auth.actions.d.ts +4 -10
  4. package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/index.d.ts +10 -0
  5. package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-password-reset-request/types.d.ts +2 -2
  6. package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-register/index.d.ts +2 -9
  7. package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-register/types.d.ts +2 -2
  8. package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-verify-request/index.d.ts +2 -2
  9. package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-verify-request/types.d.ts +3 -3
  10. package/dist/cjs/types/platforms/nest/extensions/authentication/index.d.ts +1 -0
  11. package/dist/cjs/types/platforms/nest/extensions/authentication/services/authentication/index.d.ts +10 -16
  12. package/dist/esm/index.js +5 -5
  13. package/dist/esm/index.js.map +1 -1
  14. package/dist/esm/types/platforms/nest/__test__/server/app/auth/auth.actions.d.ts +4 -10
  15. package/dist/esm/types/platforms/nest/extensions/authentication/handlers/index.d.ts +10 -0
  16. package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-password-reset-request/types.d.ts +2 -2
  17. package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-register/index.d.ts +2 -9
  18. package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-register/types.d.ts +2 -2
  19. package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-verify-request/index.d.ts +2 -2
  20. package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-verify-request/types.d.ts +3 -3
  21. package/dist/esm/types/platforms/nest/extensions/authentication/index.d.ts +1 -0
  22. package/dist/esm/types/platforms/nest/extensions/authentication/services/authentication/index.d.ts +10 -16
  23. package/dist/index.d.ts +88 -96
  24. package/package.json +1 -1
package/dist/cjs/index.js CHANGED
@@ -19378,19 +19378,19 @@ exports.AuthenticationService = class AuthenticationService {
19378
19378
  this.userVerifyCompleteHandler = userVerifyCompleteHandler;
19379
19379
  }
19380
19380
  async userDisable(input) {
19381
- return await this.userDisableHandler.execute(input);
19381
+ await this.userDisableHandler.execute(input);
19382
19382
  }
19383
19383
  async userEnable(input) {
19384
- return await this.userEnableHandler.execute(input);
19384
+ await this.userEnableHandler.execute(input);
19385
19385
  }
19386
19386
  async userLogin(input) {
19387
19387
  return await this.userLoginHandler.execute(input);
19388
19388
  }
19389
19389
  async userPasswordChange(input) {
19390
- return await this.userPasswordChangeHandler.execute(input);
19390
+ await this.userPasswordChangeHandler.execute(input);
19391
19391
  }
19392
19392
  async userPasswordResetFinalize(input) {
19393
- return await this.userPasswordResetFinalizeHandler.execute(input);
19393
+ await this.userPasswordResetFinalizeHandler.execute(input);
19394
19394
  }
19395
19395
  async userPasswordResetRequest(input) {
19396
19396
  return await this.userPasswordResetRequestHandler.execute(input);
@@ -19402,7 +19402,7 @@ exports.AuthenticationService = class AuthenticationService {
19402
19402
  return await this.userVerifyRequestHandler.execute(input);
19403
19403
  }
19404
19404
  async userVerifyComplete(input) {
19405
- return await this.userVerifyCompleteHandler.execute(input);
19405
+ await this.userVerifyCompleteHandler.execute(input);
19406
19406
  }
19407
19407
  async userTokenVerify(input) {
19408
19408
  return await this.userTokenVerifyHandler.execute(input);