@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.
- package/core/services/flow-state.service.d.ts +1 -0
- package/esm2020/core/services/flow-state.service.mjs +4 -1
- package/fesm2015/veloceapps-sdk-core.mjs +3 -0
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +3 -0
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/package.json +1 -1
@@ -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
|
}
|