@open-rlb/ng-app 3.0.18 → 3.0.19
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/index.d.ts
CHANGED
|
@@ -701,11 +701,12 @@ declare class AuthenticationService {
|
|
|
701
701
|
private readonly parseJwtService;
|
|
702
702
|
private readonly store;
|
|
703
703
|
private readonly log;
|
|
704
|
+
private readonly localStorage;
|
|
704
705
|
private envConfig;
|
|
705
706
|
private authConfig;
|
|
706
707
|
modal: Window | null;
|
|
707
708
|
private logger;
|
|
708
|
-
constructor(oidcSecurityService: OidcSecurityService, cookiesService: CookiesService, router: Router, parseJwtService: ParseJwtService, store: Store<BaseState>, log: AppLoggerService, envConfig: EnvironmentConfiguration, authConfig: AuthConfiguration);
|
|
709
|
+
constructor(oidcSecurityService: OidcSecurityService, cookiesService: CookiesService, router: Router, parseJwtService: ParseJwtService, store: Store<BaseState>, log: AppLoggerService, localStorage: AppStorageService, envConfig: EnvironmentConfiguration, authConfig: AuthConfiguration);
|
|
709
710
|
get oidc(): OidcSecurityService;
|
|
710
711
|
get config(): AuthConfiguration;
|
|
711
712
|
get currentProvider(): _open_rlb_ng_app.ProviderConfiguration | undefined;
|
|
@@ -720,7 +721,7 @@ declare class AuthenticationService {
|
|
|
720
721
|
get refreshToken$(): Observable<string | undefined>;
|
|
721
722
|
get roles$(): Observable<string[]>;
|
|
722
723
|
matchRoles(roles: string[]): Observable<boolean>;
|
|
723
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationService, [null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
724
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationService, [null, null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
724
725
|
static ɵprov: i0.ɵɵInjectableDeclaration<AuthenticationService>;
|
|
725
726
|
}
|
|
726
727
|
|