@softheon/armature 15.23.7 → 15.23.9

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.
@@ -1,5 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
2
3
  import { TranslateService } from '@ngx-translate/core';
4
+ import { OAuthService } from 'angular-oauth2-oidc';
3
5
  import { Observable } from 'rxjs';
4
6
  import { HeaderAuthSettings } from '../../../header/models/header-auth.settings';
5
7
  import { HeaderLanguageSettings } from '../../../header/models/header-language.settings';
@@ -15,6 +17,8 @@ export declare class AppTemplateComponent implements OnInit {
15
17
  private readonly configService;
16
18
  private readonly translateService;
17
19
  private readonly federatedModuleService;
20
+ private readonly router;
21
+ private readonly oauthService;
18
22
  /** The config observable */
19
23
  config$: Observable<BaseConfig>;
20
24
  /** The header settings */
@@ -47,7 +51,7 @@ export declare class AppTemplateComponent implements OnInit {
47
51
  * @param translateService The translate service
48
52
  * @param federatedModuleService The federated module service
49
53
  */
50
- constructor(configService: BaseConfigService, translateService: TranslateService, federatedModuleService: FederatedModuleService);
54
+ constructor(configService: BaseConfigService, translateService: TranslateService, federatedModuleService: FederatedModuleService, router: Router, oauthService: OAuthService);
51
55
  /** Life cycle hook for component initialization */
52
56
  ngOnInit(): void;
53
57
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@softheon/armature",
3
- "version": "15.23.7",
3
+ "version": "15.23.9",
4
4
  "dependencies": {
5
5
  "tslib": "^2.5.0"
6
6
  },