@veloceapps/sdk 6.0.0-99 → 7.0.0-0

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": "6.0.0-99",
3
+ "version": "7.0.0-0",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": "^12.2.0",
@@ -9,9 +9,9 @@
9
9
  "@angular/forms": "^12.2.0",
10
10
  "@angular/platform-browser-dynamic": "^12.2.0",
11
11
  "@angular/platform-browser": "^12.2.0",
12
- "@veloceapps/core": "^6.0.0-0",
13
- "@veloceapps/api": "^6.0.0-0",
14
- "@veloceapps/components": "^6.0.0-0",
12
+ "@veloceapps/core": "^7.0.0-0",
13
+ "@veloceapps/api": "^7.0.0-0",
14
+ "@veloceapps/components": "^7.0.0-0",
15
15
  "ionicons": "^4.6.3",
16
16
  "rxjs": "^7.3.0",
17
17
  "zone.js": "~0.11.4",
@@ -1,4 +1,5 @@
1
1
  import { ActivatedRouteSnapshot, Resolve, Router } from '@angular/router';
2
+ import { IntegrationState } from '@veloceapps/sdk/cms';
2
3
  import { ContextService, FlowConfigurationService, QuoteDraftService } from '@veloceapps/sdk/core';
3
4
  import { Observable } from 'rxjs';
4
5
  import { FlowRouterService } from '../services/flow-router.service';
@@ -9,13 +10,15 @@ export declare class QuoteResolver implements Resolve<void | boolean> {
9
10
  private routerService;
10
11
  private contextService;
11
12
  private flowConfiguration;
12
- constructor(router: Router, quoteDraftService: QuoteDraftService, routerService: FlowRouterService, contextService: ContextService, flowConfiguration: FlowConfigurationService);
13
+ private integrationState;
14
+ constructor(router: Router, quoteDraftService: QuoteDraftService, routerService: FlowRouterService, contextService: ContextService, flowConfiguration: FlowConfigurationService, integrationState: IntegrationState);
13
15
  private handleError;
14
16
  private calculate$;
15
17
  resolve(route: ActivatedRouteSnapshot): Observable<void | boolean>;
16
18
  private changeNavigation;
17
19
  private shouldNavigateToAssets;
18
20
  private accountHasNotAssets;
21
+ private initializeModifiedAssetsMap;
19
22
  static ɵfac: i0.ɵɵFactoryDeclaration<QuoteResolver, never>;
20
23
  static ɵprov: i0.ɵɵInjectableDeclaration<QuoteResolver>;
21
24
  }