@veloceapps/sdk 8.0.0-158 → 8.0.0-159

Sign up to get free protection for your applications and to get access to all the features.
@@ -901,6 +901,9 @@ class FlowStateService {
901
901
  get stateId() {
902
902
  return this.stateId$.value;
903
903
  }
904
+ get isExecutionInProgress$() {
905
+ return this.statefulExecutionInProgress$.asObservable();
906
+ }
904
907
  isInitialized$() {
905
908
  return combineLatest([this.stateId$, this.quoteDraftService.isInitialized$]).pipe(map$1(values => values.some(Boolean)));
906
909
  }