@punks/backend-entity-manager 0.0.31 → 0.0.33
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 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/__test__/server/app/auth/auth.actions.d.ts +1 -7
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/user-register/index.d.ts +2 -9
- package/dist/cjs/types/platforms/nest/extensions/authentication/services/authentication/index.d.ts +10 -16
- package/dist/esm/index.js +5 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/__test__/server/app/auth/auth.actions.d.ts +1 -7
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/user-register/index.d.ts +2 -9
- package/dist/esm/types/platforms/nest/extensions/authentication/services/authentication/index.d.ts +10 -16
- package/dist/index.d.ts +69 -77
- package/package.json +1 -1
- package/dist/cjs/types/platforms/nest/extensions/authentication/handlers/index.d.ts +0 -1
- package/dist/esm/types/platforms/nest/extensions/authentication/handlers/index.d.ts +0 -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
|
-
|
|
19381
|
+
await this.userDisableHandler.execute(input);
|
|
19382
19382
|
}
|
|
19383
19383
|
async userEnable(input) {
|
|
19384
|
-
|
|
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
|
-
|
|
19390
|
+
await this.userPasswordChangeHandler.execute(input);
|
|
19391
19391
|
}
|
|
19392
19392
|
async userPasswordResetFinalize(input) {
|
|
19393
|
-
|
|
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
|
-
|
|
19405
|
+
await this.userVerifyCompleteHandler.execute(input);
|
|
19406
19406
|
}
|
|
19407
19407
|
async userTokenVerify(input) {
|
|
19408
19408
|
return await this.userTokenVerifyHandler.execute(input);
|