@veloceapps/sdk 8.0.0-133 → 8.0.0-135
Sign up to get free protection for your applications and to get access to all the features.
- package/core/modules/configuration/configuration.module.d.ts +2 -1
- package/core/modules/flow-configuration/flow-configuration.module.d.ts +2 -1
- package/core/services/context.service.d.ts +1 -0
- package/core/services/flow-state-configuration.service.d.ts +2 -2
- package/esm2020/core/core.module.mjs +18 -2
- package/esm2020/core/modules/configuration/configuration.module.mjs +7 -23
- package/esm2020/core/modules/flow-configuration/flow-configuration.module.mjs +6 -6
- package/esm2020/core/modules/flow-configuration/services/flow-configuration.service.mjs +3 -4
- package/esm2020/core/services/context.service.mjs +14 -14
- package/esm2020/core/services/flow-info.service.mjs +3 -4
- package/esm2020/core/services/flow-state-configuration.service.mjs +5 -6
- package/esm2020/core/services/flow-state.service.mjs +3 -4
- package/esm2020/core/services/integration.state.mjs +3 -4
- package/esm2020/core/services/metric-calculation/metric-calculation.service.mjs +3 -4
- package/esm2020/core/services/product-images.service.mjs +3 -4
- package/esm2020/core/services/quote-draft.service.mjs +3 -4
- package/esm2020/core/services/runtime-settings.service.mjs +4 -5
- package/fesm2015/veloceapps-sdk-core.mjs +56 -65
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +56 -65
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/package.json +1 -1
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
2
2
|
import { Injectable, InjectionToken, Optional, Inject, NgModule, inject, Directive, Input, LOCALE_ID, Pipe } from '@angular/core';
|
3
3
|
import { UUID, ConfigurationContextMode, ConfigurationContext, UITemplateType, isDefined, ConfigurationProcessorTypes, EntityUtil, DEFAULT_CURRENCY_ISO_CODE, DEFAULT_CURRENCY_SYMBOL, validateDateFormat, DEFAULT_DATE_FORMAT, DEFAULT_DECIMALS_COUNT, getSupportedDateFormats, DEFAULT_DECIMAL_SEPARATOR, DEFAULT_THOUSANDS_SEPARATOR, DEFAULT_ACTION_CODE_LABELS, parseJsonSafely, ConfigurationMode, ConfigurationTranslatorUtils, ChargeGroupUtils, RuntimeModel, isNotLegacyUIDefinition, SalesforceIdUtils, DEFAULT_TIME_FORMAT, formatNumber } from '@veloceapps/core';
|
4
4
|
import * as i1 from '@veloceapps/api';
|
5
|
-
import {
|
5
|
+
import { ApiModule } from '@veloceapps/api';
|
6
6
|
import { BehaviorSubject, switchMap, map as map$1, tap as tap$1, noop, catchError, throwError, of, forkJoin, Subject, filter as filter$1, zip, combineLatest, shareReplay as shareReplay$1, finalize, takeUntil, take as take$1, distinctUntilChanged } from 'rxjs';
|
7
7
|
import { map, filter, tap, switchMap as switchMap$1, skip, take, shareReplay, catchError as catchError$1, finalize as finalize$1, first } from 'rxjs/operators';
|
8
8
|
import { merge, isEmpty, flatten, sortBy, map as map$2, omit, isEqual, cloneDeep, assign, uniqBy, transform, uniq } from 'lodash';
|
@@ -103,16 +103,17 @@ class ContextService {
|
|
103
103
|
return this.resolve().properties.mode;
|
104
104
|
}
|
105
105
|
get isEditMode$() {
|
106
|
-
return this.resolve$().pipe(map(() =>
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
return
|
115
|
-
}
|
106
|
+
return this.resolve$().pipe(map(() => this.isEditMode));
|
107
|
+
}
|
108
|
+
get isEditMode() {
|
109
|
+
const context = this.resolve();
|
110
|
+
if (context.mode === ConfigurationContextMode.ACCOUNT) {
|
111
|
+
return true;
|
112
|
+
}
|
113
|
+
if (context.mode === ConfigurationContextMode.QUOTE) {
|
114
|
+
return context.properties.Status === 'Draft';
|
115
|
+
}
|
116
|
+
return false;
|
116
117
|
}
|
117
118
|
resolve() {
|
118
119
|
if (!this.context.value) {
|
@@ -165,10 +166,9 @@ class ContextService {
|
|
165
166
|
}
|
166
167
|
}
|
167
168
|
ContextService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextService, deps: [{ token: i1.ContextApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
168
|
-
ContextService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextService
|
169
|
+
ContextService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextService });
|
169
170
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextService, decorators: [{
|
170
|
-
type: Injectable
|
171
|
-
args: [{ providedIn: 'root' }]
|
171
|
+
type: Injectable
|
172
172
|
}], ctorParameters: function () { return [{ type: i1.ContextApiService }]; } });
|
173
173
|
|
174
174
|
const FLOW_CUSTOMIZATION = new InjectionToken('FLOW_CUSTOMIZATION');
|
@@ -271,10 +271,9 @@ class FlowInfoService {
|
|
271
271
|
}
|
272
272
|
}
|
273
273
|
FlowInfoService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowInfoService, deps: [{ token: i1.FlowsApiService }, { token: i1.UITemplatesApiService }, { token: FLOW_CUSTOMIZATION, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
274
|
-
FlowInfoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowInfoService
|
274
|
+
FlowInfoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowInfoService });
|
275
275
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowInfoService, decorators: [{
|
276
|
-
type: Injectable
|
277
|
-
args: [{ providedIn: 'root' }]
|
276
|
+
type: Injectable
|
278
277
|
}], ctorParameters: function () { return [{ type: i1.FlowsApiService }, { type: i1.UITemplatesApiService }, { type: undefined, decorators: [{
|
279
278
|
type: Optional
|
280
279
|
}, {
|
@@ -544,10 +543,9 @@ class IntegrationState {
|
|
544
543
|
}
|
545
544
|
}
|
546
545
|
IntegrationState.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IntegrationState, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
547
|
-
IntegrationState.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IntegrationState
|
546
|
+
IntegrationState.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IntegrationState });
|
548
547
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IntegrationState, decorators: [{
|
549
|
-
type: Injectable
|
550
|
-
args: [{ providedIn: 'root' }]
|
548
|
+
type: Injectable
|
551
549
|
}] });
|
552
550
|
|
553
551
|
class QuoteDraftService {
|
@@ -788,10 +786,9 @@ class QuoteDraftService {
|
|
788
786
|
}
|
789
787
|
}
|
790
788
|
QuoteDraftService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: QuoteDraftService, deps: [{ token: ContextService }, { token: i1.QuoteApiService }, { token: i1.PriceApiService }, { token: IntegrationState }], target: i0.ɵɵFactoryTarget.Injectable });
|
791
|
-
QuoteDraftService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: QuoteDraftService
|
789
|
+
QuoteDraftService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: QuoteDraftService });
|
792
790
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: QuoteDraftService, decorators: [{
|
793
|
-
type: Injectable
|
794
|
-
args: [{ providedIn: 'root' }]
|
791
|
+
type: Injectable
|
795
792
|
}], ctorParameters: function () { return [{ type: ContextService }, { type: i1.QuoteApiService }, { type: i1.PriceApiService }, { type: IntegrationState }]; } });
|
796
793
|
|
797
794
|
class FlowStateService {
|
@@ -1218,10 +1215,9 @@ class FlowStateService {
|
|
1218
1215
|
}
|
1219
1216
|
}
|
1220
1217
|
FlowStateService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateService, deps: [{ token: ContextService }, { token: QuoteDraftService }, { token: FlowInfoService }, { token: FlowConfigurationService }, { token: i1.ConfigurationProcessorsApiService }, { token: i1.FlowStateApiService }, { token: i1.QuoteApiService }, { token: i6.ToastService }, { token: FLOW_CUSTOMIZATION, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
1221
|
-
FlowStateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateService
|
1218
|
+
FlowStateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateService });
|
1222
1219
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateService, decorators: [{
|
1223
|
-
type: Injectable
|
1224
|
-
args: [{ providedIn: 'root' }]
|
1220
|
+
type: Injectable
|
1225
1221
|
}], ctorParameters: function () { return [{ type: ContextService }, { type: QuoteDraftService }, { type: FlowInfoService }, { type: FlowConfigurationService }, { type: i1.ConfigurationProcessorsApiService }, { type: i1.FlowStateApiService }, { type: i1.QuoteApiService }, { type: i6.ToastService }, { type: undefined, decorators: [{
|
1226
1222
|
type: Optional
|
1227
1223
|
}, {
|
@@ -1326,10 +1322,9 @@ class RuntimeSettingsService {
|
|
1326
1322
|
}
|
1327
1323
|
}
|
1328
1324
|
RuntimeSettingsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RuntimeSettingsService, deps: [{ token: i1.ConfigurationSettingsApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
1329
|
-
RuntimeSettingsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RuntimeSettingsService
|
1325
|
+
RuntimeSettingsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RuntimeSettingsService });
|
1330
1326
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RuntimeSettingsService, decorators: [{
|
1331
|
-
type: Injectable
|
1332
|
-
args: [{ providedIn: 'root' }]
|
1327
|
+
type: Injectable
|
1333
1328
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationSettingsApiService }]; } });
|
1334
1329
|
|
1335
1330
|
class ConfigurationService {
|
@@ -1820,22 +1815,21 @@ class FlowConfigurationService {
|
|
1820
1815
|
}
|
1821
1816
|
}
|
1822
1817
|
FlowConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationService, deps: [{ token: i1.ProceduresApiService }, { token: ContextService }, { token: QuoteDraftService }, { token: FlowUpdateService }, { token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Injectable });
|
1823
|
-
FlowConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationService
|
1818
|
+
FlowConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationService });
|
1824
1819
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationService, decorators: [{
|
1825
|
-
type: Injectable
|
1826
|
-
args: [{ providedIn: 'root' }]
|
1820
|
+
type: Injectable
|
1827
1821
|
}], ctorParameters: function () { return [{ type: i1.ProceduresApiService }, { type: ContextService }, { type: QuoteDraftService }, { type: FlowUpdateService }, { type: ConfigurationService }]; } });
|
1828
1822
|
|
1829
1823
|
class FlowConfigurationModule {
|
1830
1824
|
}
|
1831
1825
|
FlowConfigurationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
1832
|
-
FlowConfigurationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationModule });
|
1833
|
-
FlowConfigurationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationModule, providers: [FlowConfigurationService, FlowUpdateService,
|
1826
|
+
FlowConfigurationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationModule, imports: [ApiModule] });
|
1827
|
+
FlowConfigurationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationModule, providers: [FlowConfigurationService, FlowUpdateService], imports: [ApiModule] });
|
1834
1828
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationModule, decorators: [{
|
1835
1829
|
type: NgModule,
|
1836
1830
|
args: [{
|
1837
|
-
imports: [],
|
1838
|
-
providers: [FlowConfigurationService, FlowUpdateService
|
1831
|
+
imports: [ApiModule],
|
1832
|
+
providers: [FlowConfigurationService, FlowUpdateService],
|
1839
1833
|
}]
|
1840
1834
|
}] });
|
1841
1835
|
|
@@ -1875,10 +1869,9 @@ class FlowStateConfigurationService {
|
|
1875
1869
|
}
|
1876
1870
|
}
|
1877
1871
|
FlowStateConfigurationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateConfigurationService, deps: [{ token: FlowInfoService }, { token: FlowConfigurationService }, { token: i1.FlowStateApiService }, { token: FlowStateService }], target: i0.ɵɵFactoryTarget.Injectable });
|
1878
|
-
FlowStateConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateConfigurationService
|
1872
|
+
FlowStateConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateConfigurationService });
|
1879
1873
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateConfigurationService, decorators: [{
|
1880
|
-
type: Injectable
|
1881
|
-
args: [{ providedIn: 'root' }]
|
1874
|
+
type: Injectable
|
1882
1875
|
}], ctorParameters: function () { return [{ type: FlowInfoService }, { type: FlowConfigurationService }, { type: i1.FlowStateApiService }, { type: FlowStateService }]; } });
|
1883
1876
|
|
1884
1877
|
function calculateMetricByMethod(lineItems, metric, method) {
|
@@ -1991,10 +1984,9 @@ class MetricsCalculationService {
|
|
1991
1984
|
}
|
1992
1985
|
}
|
1993
1986
|
MetricsCalculationService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MetricsCalculationService, deps: [{ token: QuoteDraftService }, { token: FlowConfigurationService }, { token: i1.ConfigurationSettingsApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
1994
|
-
MetricsCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MetricsCalculationService
|
1987
|
+
MetricsCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MetricsCalculationService });
|
1995
1988
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MetricsCalculationService, decorators: [{
|
1996
|
-
type: Injectable
|
1997
|
-
args: [{ providedIn: 'root' }]
|
1989
|
+
type: Injectable
|
1998
1990
|
}], ctorParameters: function () { return [{ type: QuoteDraftService }, { type: FlowConfigurationService }, { type: i1.ConfigurationSettingsApiService }]; } });
|
1999
1991
|
|
2000
1992
|
class ProductImagesService {
|
@@ -2017,10 +2009,9 @@ class ProductImagesService {
|
|
2017
2009
|
}
|
2018
2010
|
}
|
2019
2011
|
ProductImagesService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductImagesService, deps: [{ token: i1.ProductApiService }], target: i0.ɵɵFactoryTarget.Injectable });
|
2020
|
-
ProductImagesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductImagesService
|
2012
|
+
ProductImagesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductImagesService });
|
2021
2013
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductImagesService, decorators: [{
|
2022
|
-
type: Injectable
|
2023
|
-
args: [{ providedIn: 'root' }]
|
2014
|
+
type: Injectable
|
2024
2015
|
}], ctorParameters: function () { return [{ type: i1.ProductApiService }]; } });
|
2025
2016
|
|
2026
2017
|
class RuntimeContextService {
|
@@ -2412,29 +2403,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
2412
2403
|
class ConfigurationModule {
|
2413
2404
|
}
|
2414
2405
|
ConfigurationModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
2415
|
-
ConfigurationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationModule, imports: [ConfirmationDialogModule] });
|
2416
|
-
ConfigurationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationModule, providers: [
|
2417
|
-
ContextApiService,
|
2418
|
-
ProductModelApiService,
|
2419
|
-
ConfigurationApiService,
|
2420
|
-
ConfigurationRuntimeService,
|
2421
|
-
RuntimeContextService,
|
2422
|
-
ConfigurationService,
|
2423
|
-
ConfigurationStateService,
|
2424
|
-
], imports: [ConfirmationDialogModule] });
|
2406
|
+
ConfigurationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationModule, imports: [ConfirmationDialogModule, ApiModule] });
|
2407
|
+
ConfigurationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationModule, providers: [ConfigurationRuntimeService, RuntimeContextService, ConfigurationService, ConfigurationStateService], imports: [ConfirmationDialogModule, ApiModule] });
|
2425
2408
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationModule, decorators: [{
|
2426
2409
|
type: NgModule,
|
2427
2410
|
args: [{
|
2428
|
-
imports: [ConfirmationDialogModule],
|
2429
|
-
providers: [
|
2430
|
-
ContextApiService,
|
2431
|
-
ProductModelApiService,
|
2432
|
-
ConfigurationApiService,
|
2433
|
-
ConfigurationRuntimeService,
|
2434
|
-
RuntimeContextService,
|
2435
|
-
ConfigurationService,
|
2436
|
-
ConfigurationStateService,
|
2437
|
-
],
|
2411
|
+
imports: [ConfirmationDialogModule, ApiModule],
|
2412
|
+
providers: [ConfigurationRuntimeService, RuntimeContextService, ConfigurationService, ConfigurationStateService],
|
2438
2413
|
}]
|
2439
2414
|
}] });
|
2440
2415
|
|
@@ -2451,7 +2426,15 @@ class SdkCoreModule {
|
|
2451
2426
|
SdkCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SdkCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
2452
2427
|
SdkCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: SdkCoreModule, imports: [ConfigurationModule, FlowConfigurationModule] });
|
2453
2428
|
SdkCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SdkCoreModule, providers: [
|
2429
|
+
ContextService,
|
2430
|
+
FlowInfoService,
|
2431
|
+
QuoteDraftService,
|
2432
|
+
ProductImagesService,
|
2454
2433
|
IntegrationState,
|
2434
|
+
FlowStateService,
|
2435
|
+
FlowStateConfigurationService,
|
2436
|
+
MetricsCalculationService,
|
2437
|
+
RuntimeSettingsService,
|
2455
2438
|
{
|
2456
2439
|
provide: FORMATTING_SETTINGS_TOKEN,
|
2457
2440
|
useExisting: RuntimeSettingsService,
|
@@ -2462,7 +2445,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
2462
2445
|
args: [{
|
2463
2446
|
imports: [ConfigurationModule, FlowConfigurationModule],
|
2464
2447
|
providers: [
|
2448
|
+
ContextService,
|
2449
|
+
FlowInfoService,
|
2450
|
+
QuoteDraftService,
|
2451
|
+
ProductImagesService,
|
2465
2452
|
IntegrationState,
|
2453
|
+
FlowStateService,
|
2454
|
+
FlowStateConfigurationService,
|
2455
|
+
MetricsCalculationService,
|
2456
|
+
RuntimeSettingsService,
|
2466
2457
|
{
|
2467
2458
|
provide: FORMATTING_SETTINGS_TOKEN,
|
2468
2459
|
useExisting: RuntimeSettingsService,
|