@veloceapps/sdk 10.0.0-20 → 10.0.0-22
Sign up to get free protection for your applications and to get access to all the features.
- package/cms/vendor-map.d.ts +3 -2
- package/core/modules/flow-configuration/services/flow-configuration.service.d.ts +4 -1
- package/esm2020/cms/components/element-tools-panel/element-tools-panel.component.mjs +3 -3
- package/esm2020/cms/vendor-map.mjs +5 -4
- package/esm2020/core/modules/flow-configuration/services/flow-configuration.service.mjs +16 -5
- package/fesm2015/veloceapps-sdk-cms.mjs +4 -3
- package/fesm2015/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk-core.mjs +14 -4
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-cms.mjs +4 -3
- package/fesm2020/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +13 -4
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/package.json +1 -1
package/cms/vendor-map.d.ts
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
+
import { DataSource } from '@angular/cdk/collections';
|
1
2
|
import * as angularCore from '@angular/core';
|
2
3
|
import * as angularForms from '@angular/forms';
|
3
|
-
import { DataSource } from '@angular/cdk/collections';
|
4
4
|
import { CatalogApiService, ConfigurationSettingsApiService, ContractedPriceApiService, DeltaApiService, DocumentAttachmentApiService, DocumentTemplatesApiService, GuidedSellingApiService, PicklistsApiService, PriceApiService, QuoteApiService, RampApiService, SalesforceApiService, ShoppingCartSettingsApiService } from '@veloceapps/api';
|
5
5
|
import { ToastService, ToastType } from '@veloceapps/components';
|
6
|
-
import { ConfigurationContextMode, Operator, parseJsonSafely,
|
6
|
+
import { ConfigurationContextMode, Operator, Predicate, parseJsonSafely, parseJwt } from '@veloceapps/core';
|
7
7
|
import { ActionCodePipe, ConfigurationService, ConfigurationStateService, ContextService, DatePipe, FlowConfigurationService, FlowStateConfigurationService, FlowStateService, IntegrationState, LineItemWorker, NumberPipe, PricePipe, ProductImagesService, QuoteDraftService, RuntimeSettingsService } from '@veloceapps/sdk/core';
|
8
8
|
import lodash from 'lodash';
|
9
9
|
import * as rxjs from 'rxjs';
|
@@ -26,6 +26,7 @@ export declare const vendorMap: {
|
|
26
26
|
Predicate: typeof Predicate;
|
27
27
|
parseJsonSafely: typeof parseJsonSafely;
|
28
28
|
ConfigurationContextMode: typeof ConfigurationContextMode;
|
29
|
+
parseJwt: typeof parseJwt;
|
29
30
|
};
|
30
31
|
'@veloceapps/components': {
|
31
32
|
ToastService: typeof ToastService;
|
@@ -8,6 +8,7 @@ import { ExternalConfigurationProps } from '../../configuration';
|
|
8
8
|
import { ConfigurationService } from '../../configuration/services/configuration.service';
|
9
9
|
import { FlowUpdateParams } from '../types/update.types';
|
10
10
|
import { FlowUpdateService } from './flow-update.service';
|
11
|
+
import { FlowInfoService } from '../../../services';
|
11
12
|
import * as i0 from "@angular/core";
|
12
13
|
export declare class FlowConfigurationService {
|
13
14
|
private proceduresApiService;
|
@@ -15,12 +16,13 @@ export declare class FlowConfigurationService {
|
|
15
16
|
private quoteDraftService;
|
16
17
|
private updateService;
|
17
18
|
private configurationService;
|
19
|
+
private flowInfoService;
|
18
20
|
/**
|
19
21
|
* An event being fired when QuoteDraft was updated
|
20
22
|
*/
|
21
23
|
updated$: Observable<void>;
|
22
24
|
private updatedSubj$;
|
23
|
-
constructor(proceduresApiService: ProceduresApiService, contextService: ContextService, quoteDraftService: QuoteDraftService, updateService: FlowUpdateService, configurationService: ConfigurationService);
|
25
|
+
constructor(proceduresApiService: ProceduresApiService, contextService: ContextService, quoteDraftService: QuoteDraftService, updateService: FlowUpdateService, configurationService: ConfigurationService, flowInfoService: FlowInfoService);
|
24
26
|
calculate$(quoteDraft: QuoteDraft): Observable<void>;
|
25
27
|
calculate(quoteDraft: QuoteDraft): void;
|
26
28
|
update$(updates: FlowUpdateParams[]): Observable<QuoteDraft | null>;
|
@@ -42,6 +44,7 @@ export declare class FlowConfigurationService {
|
|
42
44
|
get contextSnapshot(): ConfigurationContext;
|
43
45
|
get context$(): Observable<ConfigurationContext>;
|
44
46
|
private handleErrorAndBounceBack;
|
47
|
+
private extendedApply$;
|
45
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlowConfigurationService, never>;
|
46
49
|
static ɵprov: i0.ɵɵInjectableDeclaration<FlowConfigurationService>;
|
47
50
|
}
|