@open-rlb/ng-app 3.0.2 → 3.0.3

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
@@ -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
- constructor(oidcSecurityService: OidcSecurityService, cookiesService: CookiesService, router: Router, parseJwtService: ParseJwtService, store: Store<BaseState>, envConfig: EnvironmentConfiguration, authConfig: AuthConfiguration);
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
- constructor(httpClient: HttpClient, authenticationService: AuthenticationService);
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-rlb/ng-app",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",