@veloceapps/sdk 9.0.0-1 → 9.0.0-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/core/services/flow-state.service.mjs +7 -2
- package/esm2020/src/components/doc-gen/doc-gen.component.mjs +4 -1
- package/esm2020/src/components/flow-header/flow-header.component.mjs +4 -1
- package/esm2020/src/components/guided-selling/guided-selling.component.mjs +4 -1
- package/fesm2015/veloceapps-sdk-core.mjs +6 -1
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk.mjs +9 -0
- package/fesm2015/veloceapps-sdk.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +6 -1
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk.mjs +9 -0
- package/fesm2020/veloceapps-sdk.mjs.map +1 -1
- package/package.json +1 -1
@@ -776,7 +776,12 @@ class FlowStateService {
|
|
776
776
|
if (assets) {
|
777
777
|
this.flowStore = { ...this.flowStore, assets };
|
778
778
|
}
|
779
|
-
}), switchMap(() =>
|
779
|
+
}), switchMap(() => {
|
780
|
+
if (this.flowInfoService.isLegacy) {
|
781
|
+
return of(null);
|
782
|
+
}
|
783
|
+
return this.executeRequest$(this.getDefaultExecutionRequestDTO());
|
784
|
+
}), switchMap(() => this.calculate$()), tap$1(() => this.quoteDraftService.finalizeInit()), map$1(noop));
|
780
785
|
}
|
781
786
|
calculate$() {
|
782
787
|
const flowState = this.quoteDraftService.quoteDraft;
|