@veloceapps/sdk 7.0.2-26 → 7.0.2-28

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veloceapps/sdk",
3
- "version": "7.0.2-26",
3
+ "version": "7.0.2-28",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": "~15.2.0",
@@ -1,5 +1,5 @@
1
1
  import { ActivatedRouteSnapshot, CanActivate, CanActivateChild, Router } from '@angular/router';
2
- import { ContextService } from '@veloceapps/sdk/core';
2
+ import { ContextService, RuntimeSettingsService } from '@veloceapps/sdk/core';
3
3
  import { Observable } from 'rxjs';
4
4
  import { FlowRouterService } from '../services/flow-router.service';
5
5
  import * as i0 from "@angular/core";
@@ -7,7 +7,8 @@ export declare class ContextGuard implements CanActivate, CanActivateChild {
7
7
  private router;
8
8
  private routerService;
9
9
  private contextService;
10
- constructor(router: Router, routerService: FlowRouterService, contextService: ContextService);
10
+ private runtimeSettingsService;
11
+ constructor(router: Router, routerService: FlowRouterService, contextService: ContextService, runtimeSettingsService: RuntimeSettingsService);
11
12
  checkActivation(route: ActivatedRouteSnapshot): Observable<boolean>;
12
13
  canActivate(route: ActivatedRouteSnapshot): Observable<boolean> | Promise<boolean> | boolean;
13
14
  canActivateChild(childRoute: ActivatedRouteSnapshot): Observable<boolean> | Promise<boolean> | boolean;