@veloceapps/sdk 8.0.0-133 → 8.0.0-134
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/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 +3 -4
- 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 +45 -55
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +45 -55
- 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';
|
@@ -165,10 +165,9 @@ class ContextService {
|
|
165
165
|
}
|
166
166
|
}
|
167
167
|
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
|
168
|
+
ContextService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextService });
|
169
169
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ContextService, decorators: [{
|
170
|
-
type: Injectable
|
171
|
-
args: [{ providedIn: 'root' }]
|
170
|
+
type: Injectable
|
172
171
|
}], ctorParameters: function () { return [{ type: i1.ContextApiService }]; } });
|
173
172
|
|
174
173
|
const FLOW_CUSTOMIZATION = new InjectionToken('FLOW_CUSTOMIZATION');
|
@@ -271,10 +270,9 @@ class FlowInfoService {
|
|
271
270
|
}
|
272
271
|
}
|
273
272
|
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
|
273
|
+
FlowInfoService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowInfoService });
|
275
274
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowInfoService, decorators: [{
|
276
|
-
type: Injectable
|
277
|
-
args: [{ providedIn: 'root' }]
|
275
|
+
type: Injectable
|
278
276
|
}], ctorParameters: function () { return [{ type: i1.FlowsApiService }, { type: i1.UITemplatesApiService }, { type: undefined, decorators: [{
|
279
277
|
type: Optional
|
280
278
|
}, {
|
@@ -544,10 +542,9 @@ class IntegrationState {
|
|
544
542
|
}
|
545
543
|
}
|
546
544
|
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
|
545
|
+
IntegrationState.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IntegrationState });
|
548
546
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: IntegrationState, decorators: [{
|
549
|
-
type: Injectable
|
550
|
-
args: [{ providedIn: 'root' }]
|
547
|
+
type: Injectable
|
551
548
|
}] });
|
552
549
|
|
553
550
|
class QuoteDraftService {
|
@@ -788,10 +785,9 @@ class QuoteDraftService {
|
|
788
785
|
}
|
789
786
|
}
|
790
787
|
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
|
788
|
+
QuoteDraftService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: QuoteDraftService });
|
792
789
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: QuoteDraftService, decorators: [{
|
793
|
-
type: Injectable
|
794
|
-
args: [{ providedIn: 'root' }]
|
790
|
+
type: Injectable
|
795
791
|
}], ctorParameters: function () { return [{ type: ContextService }, { type: i1.QuoteApiService }, { type: i1.PriceApiService }, { type: IntegrationState }]; } });
|
796
792
|
|
797
793
|
class FlowStateService {
|
@@ -1218,10 +1214,9 @@ class FlowStateService {
|
|
1218
1214
|
}
|
1219
1215
|
}
|
1220
1216
|
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
|
1217
|
+
FlowStateService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateService });
|
1222
1218
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateService, decorators: [{
|
1223
|
-
type: Injectable
|
1224
|
-
args: [{ providedIn: 'root' }]
|
1219
|
+
type: Injectable
|
1225
1220
|
}], 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
1221
|
type: Optional
|
1227
1222
|
}, {
|
@@ -1326,10 +1321,9 @@ class RuntimeSettingsService {
|
|
1326
1321
|
}
|
1327
1322
|
}
|
1328
1323
|
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
|
1324
|
+
RuntimeSettingsService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RuntimeSettingsService });
|
1330
1325
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: RuntimeSettingsService, decorators: [{
|
1331
|
-
type: Injectable
|
1332
|
-
args: [{ providedIn: 'root' }]
|
1326
|
+
type: Injectable
|
1333
1327
|
}], ctorParameters: function () { return [{ type: i1.ConfigurationSettingsApiService }]; } });
|
1334
1328
|
|
1335
1329
|
class ConfigurationService {
|
@@ -1820,22 +1814,21 @@ class FlowConfigurationService {
|
|
1820
1814
|
}
|
1821
1815
|
}
|
1822
1816
|
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
|
1817
|
+
FlowConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationService });
|
1824
1818
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationService, decorators: [{
|
1825
|
-
type: Injectable
|
1826
|
-
args: [{ providedIn: 'root' }]
|
1819
|
+
type: Injectable
|
1827
1820
|
}], ctorParameters: function () { return [{ type: i1.ProceduresApiService }, { type: ContextService }, { type: QuoteDraftService }, { type: FlowUpdateService }, { type: ConfigurationService }]; } });
|
1828
1821
|
|
1829
1822
|
class FlowConfigurationModule {
|
1830
1823
|
}
|
1831
1824
|
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,
|
1825
|
+
FlowConfigurationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationModule, imports: [ApiModule] });
|
1826
|
+
FlowConfigurationModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationModule, providers: [FlowConfigurationService, FlowUpdateService], imports: [ApiModule] });
|
1834
1827
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowConfigurationModule, decorators: [{
|
1835
1828
|
type: NgModule,
|
1836
1829
|
args: [{
|
1837
|
-
imports: [],
|
1838
|
-
providers: [FlowConfigurationService, FlowUpdateService
|
1830
|
+
imports: [ApiModule],
|
1831
|
+
providers: [FlowConfigurationService, FlowUpdateService],
|
1839
1832
|
}]
|
1840
1833
|
}] });
|
1841
1834
|
|
@@ -1875,10 +1868,9 @@ class FlowStateConfigurationService {
|
|
1875
1868
|
}
|
1876
1869
|
}
|
1877
1870
|
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
|
1871
|
+
FlowStateConfigurationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateConfigurationService });
|
1879
1872
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FlowStateConfigurationService, decorators: [{
|
1880
|
-
type: Injectable
|
1881
|
-
args: [{ providedIn: 'root' }]
|
1873
|
+
type: Injectable
|
1882
1874
|
}], ctorParameters: function () { return [{ type: FlowInfoService }, { type: FlowConfigurationService }, { type: i1.FlowStateApiService }, { type: FlowStateService }]; } });
|
1883
1875
|
|
1884
1876
|
function calculateMetricByMethod(lineItems, metric, method) {
|
@@ -1991,10 +1983,9 @@ class MetricsCalculationService {
|
|
1991
1983
|
}
|
1992
1984
|
}
|
1993
1985
|
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
|
1986
|
+
MetricsCalculationService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MetricsCalculationService });
|
1995
1987
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: MetricsCalculationService, decorators: [{
|
1996
|
-
type: Injectable
|
1997
|
-
args: [{ providedIn: 'root' }]
|
1988
|
+
type: Injectable
|
1998
1989
|
}], ctorParameters: function () { return [{ type: QuoteDraftService }, { type: FlowConfigurationService }, { type: i1.ConfigurationSettingsApiService }]; } });
|
1999
1990
|
|
2000
1991
|
class ProductImagesService {
|
@@ -2017,10 +2008,9 @@ class ProductImagesService {
|
|
2017
2008
|
}
|
2018
2009
|
}
|
2019
2010
|
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
|
2011
|
+
ProductImagesService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductImagesService });
|
2021
2012
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ProductImagesService, decorators: [{
|
2022
|
-
type: Injectable
|
2023
|
-
args: [{ providedIn: 'root' }]
|
2013
|
+
type: Injectable
|
2024
2014
|
}], ctorParameters: function () { return [{ type: i1.ProductApiService }]; } });
|
2025
2015
|
|
2026
2016
|
class RuntimeContextService {
|
@@ -2412,29 +2402,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
2412
2402
|
class ConfigurationModule {
|
2413
2403
|
}
|
2414
2404
|
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] });
|
2405
|
+
ConfigurationModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationModule, imports: [ConfirmationDialogModule, ApiModule] });
|
2406
|
+
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
2407
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: ConfigurationModule, decorators: [{
|
2426
2408
|
type: NgModule,
|
2427
2409
|
args: [{
|
2428
|
-
imports: [ConfirmationDialogModule],
|
2429
|
-
providers: [
|
2430
|
-
ContextApiService,
|
2431
|
-
ProductModelApiService,
|
2432
|
-
ConfigurationApiService,
|
2433
|
-
ConfigurationRuntimeService,
|
2434
|
-
RuntimeContextService,
|
2435
|
-
ConfigurationService,
|
2436
|
-
ConfigurationStateService,
|
2437
|
-
],
|
2410
|
+
imports: [ConfirmationDialogModule, ApiModule],
|
2411
|
+
providers: [ConfigurationRuntimeService, RuntimeContextService, ConfigurationService, ConfigurationStateService],
|
2438
2412
|
}]
|
2439
2413
|
}] });
|
2440
2414
|
|
@@ -2451,7 +2425,15 @@ class SdkCoreModule {
|
|
2451
2425
|
SdkCoreModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SdkCoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
2452
2426
|
SdkCoreModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: SdkCoreModule, imports: [ConfigurationModule, FlowConfigurationModule] });
|
2453
2427
|
SdkCoreModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: SdkCoreModule, providers: [
|
2428
|
+
ContextService,
|
2429
|
+
FlowInfoService,
|
2430
|
+
QuoteDraftService,
|
2431
|
+
ProductImagesService,
|
2454
2432
|
IntegrationState,
|
2433
|
+
FlowStateService,
|
2434
|
+
FlowStateConfigurationService,
|
2435
|
+
MetricsCalculationService,
|
2436
|
+
RuntimeSettingsService,
|
2455
2437
|
{
|
2456
2438
|
provide: FORMATTING_SETTINGS_TOKEN,
|
2457
2439
|
useExisting: RuntimeSettingsService,
|
@@ -2462,7 +2444,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImpor
|
|
2462
2444
|
args: [{
|
2463
2445
|
imports: [ConfigurationModule, FlowConfigurationModule],
|
2464
2446
|
providers: [
|
2447
|
+
ContextService,
|
2448
|
+
FlowInfoService,
|
2449
|
+
QuoteDraftService,
|
2450
|
+
ProductImagesService,
|
2465
2451
|
IntegrationState,
|
2452
|
+
FlowStateService,
|
2453
|
+
FlowStateConfigurationService,
|
2454
|
+
MetricsCalculationService,
|
2455
|
+
RuntimeSettingsService,
|
2466
2456
|
{
|
2467
2457
|
provide: FORMATTING_SETTINGS_TOKEN,
|
2468
2458
|
useExisting: RuntimeSettingsService,
|