@osovitny/anatoly 3.16.54 → 3.16.56
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/esm2022/lib/core/core.module.mjs +1 -4
- package/esm2022/lib/iam/pages/signup.page.mjs +2 -1
- package/esm2022/lib/iam/services/auth.service.mjs +47 -10
- package/fesm2022/osovitny-anatoly.mjs +47 -11
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/iam/services/auth.service.d.ts +7 -0
- package/package.json +1 -1
|
@@ -16,6 +16,10 @@ export declare class AuthService extends ApiServiceBase implements OnDestroy {
|
|
|
16
16
|
private msalBroadcastService;
|
|
17
17
|
private readonly msalDestroying$;
|
|
18
18
|
private initialized;
|
|
19
|
+
private signUpSignInPolicy;
|
|
20
|
+
private signUpPolicy;
|
|
21
|
+
private editProfilePolicy;
|
|
22
|
+
private resetPasswordPolicy;
|
|
19
23
|
constructor(http: HttpClient, router: Router, appContext: AppContextService, msalGuardConfig: MsalGuardConfiguration, msalService: MsalService, msalBroadcastService: MsalBroadcastService);
|
|
20
24
|
ngOnDestroy(): void;
|
|
21
25
|
private init;
|
|
@@ -34,6 +38,9 @@ export declare class AuthService extends ApiServiceBase implements OnDestroy {
|
|
|
34
38
|
isUserAuthenticated(): boolean;
|
|
35
39
|
isUserSignedIn(): boolean;
|
|
36
40
|
isUserAdmin(): boolean;
|
|
41
|
+
signUp(): void;
|
|
42
|
+
editProfile(): void;
|
|
43
|
+
resetPassword(): void;
|
|
37
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
38
45
|
static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
|
|
39
46
|
}
|