@open-rlb/ng-app 3.0.2 → 3.0.4
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/fesm2022/open-rlb-ng-app.mjs +25 -12
- package/fesm2022/open-rlb-ng-app.mjs.map +1 -1
- package/index.d.ts +8 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -699,10 +699,12 @@ declare class AuthenticationService {
|
|
|
699
699
|
private router;
|
|
700
700
|
private readonly parseJwtService;
|
|
701
701
|
private readonly store;
|
|
702
|
+
private readonly log;
|
|
702
703
|
private envConfig;
|
|
703
704
|
private authConfig;
|
|
704
705
|
modal: Window | null;
|
|
705
|
-
|
|
706
|
+
private logger;
|
|
707
|
+
constructor(oidcSecurityService: OidcSecurityService, cookiesService: CookiesService, router: Router, parseJwtService: ParseJwtService, store: Store<BaseState>, log: AppLoggerService, envConfig: EnvironmentConfiguration, authConfig: AuthConfiguration);
|
|
706
708
|
get oidc(): OidcSecurityService;
|
|
707
709
|
get config(): AuthConfiguration;
|
|
708
710
|
get currentProvider(): _open_rlb_ng_app.ProviderConfiguration | undefined;
|
|
@@ -717,7 +719,7 @@ declare class AuthenticationService {
|
|
|
717
719
|
get refreshToken$(): Observable<string | undefined>;
|
|
718
720
|
get roles$(): Observable<string[]>;
|
|
719
721
|
matchRoles(roles: string[]): Observable<boolean>;
|
|
720
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationService, [null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
722
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationService, [null, null, null, null, null, null, { optional: true; }, { optional: true; }]>;
|
|
721
723
|
static ɵprov: i0.ɵɵInjectableDeclaration<AuthenticationService>;
|
|
722
724
|
}
|
|
723
725
|
|
|
@@ -749,9 +751,11 @@ interface Token {
|
|
|
749
751
|
declare class OauthPasswordService implements HttpInterceptor {
|
|
750
752
|
private readonly httpClient;
|
|
751
753
|
private readonly authenticationService;
|
|
754
|
+
private readonly log;
|
|
752
755
|
private timer;
|
|
753
756
|
private _onUpdateToken;
|
|
754
|
-
|
|
757
|
+
private logger;
|
|
758
|
+
constructor(httpClient: HttpClient, authenticationService: AuthenticationService, log: AppLoggerService);
|
|
755
759
|
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
756
760
|
private get access_token();
|
|
757
761
|
private set access_token(value);
|
|
@@ -1045,7 +1049,7 @@ declare class AppTemplateComponent implements OnDestroy {
|
|
|
1045
1049
|
get apps(): _open_rlb_ng_app.AppInfo<any>[];
|
|
1046
1050
|
get separatorVisible$(): rxjs.Observable<boolean>;
|
|
1047
1051
|
loginNav(event: MouseEvent): void;
|
|
1048
|
-
login
|
|
1052
|
+
private login;
|
|
1049
1053
|
onSideBarItemClick(item: SidebarNavigableItem): void;
|
|
1050
1054
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppTemplateComponent, never>;
|
|
1051
1055
|
static ɵcmp: i0.ɵɵComponentDeclaration<AppTemplateComponent, "rlb-app-template", never, { "modalContainerId": { "alias": "modal-container-id"; "required": false; }; "toastContainerIds": { "alias": "toast-container-ids"; "required": false; }; }, {}, never, ["*"], false, never>;
|