@veloceapps/sdk 6.0.0-50 → 6.0.0-51

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-50",
3
+ "version": "6.0.0-51",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/animations": "^12.2.0",
@@ -1,5 +1,5 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
- import { QuoteApiService, SalesforceApiService } from '@veloceapps/api';
2
+ import { QuoteApiService, SalesforceApiService, ShoppingCartSettingsApiService } from '@veloceapps/api';
3
3
  import { ContextProperties, PriceList } from '@veloceapps/core';
4
4
  import { IntegrationState } from '@veloceapps/sdk/cms';
5
5
  import { ContextService, FlowConfigurationService, QuoteDraftService } from '@veloceapps/sdk/core';
@@ -19,6 +19,7 @@ export declare class FlowHeaderComponent implements OnInit, OnDestroy {
19
19
  private routerService;
20
20
  private dialogService;
21
21
  private integrationState;
22
+ private shoppingCartSettingsApiService;
22
23
  objectName$: Observable<string>;
23
24
  contextProperties$: Observable<ContextProperties>;
24
25
  activePriceList$: Observable<PriceList | null>;
@@ -32,10 +33,11 @@ export declare class FlowHeaderComponent implements OnInit, OnDestroy {
32
33
  isEditMode$: Observable<boolean>;
33
34
  isSaveInProgress$: BehaviorSubject<boolean>;
34
35
  isSubmitInProgress$: BehaviorSubject<boolean>;
36
+ dateFormat: string;
35
37
  assetPriceLists$: BehaviorSubject<PriceList[]>;
36
38
  private mode$;
37
39
  private destroyed$;
38
- constructor(contextService: ContextService, quoteDraftService: QuoteDraftService, quoteApiService: QuoteApiService, sfApiService: SalesforceApiService, flowConfiguration: FlowConfigurationService, routerService: FlowRouterService, dialogService: FlowDialogService, integrationState: IntegrationState);
40
+ constructor(contextService: ContextService, quoteDraftService: QuoteDraftService, quoteApiService: QuoteApiService, sfApiService: SalesforceApiService, flowConfiguration: FlowConfigurationService, routerService: FlowRouterService, dialogService: FlowDialogService, integrationState: IntegrationState, shoppingCartSettingsApiService: ShoppingCartSettingsApiService);
39
41
  ngOnInit(): void;
40
42
  ngOnDestroy(): void;
41
43
  get isAccountMode(): boolean;