@veloceapps/sdk 9.0.0-1 → 9.0.0-3

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.
@@ -776,7 +776,12 @@ class FlowStateService {
776
776
  if (assets) {
777
777
  this.flowStore = { ...this.flowStore, assets };
778
778
  }
779
- }), switchMap(() => this.executeRequest$(this.getDefaultExecutionRequestDTO())), switchMap(() => this.calculate$()), tap$1(() => this.quoteDraftService.finalizeInit()), map$1(noop));
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;