@veloceapps/sdk 11.0.0-42 → 11.0.0-43
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/modules/configuration/services/configuration-state.service.mjs +3 -3
- package/fesm2015/veloceapps-sdk-core.mjs +2 -2
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +2 -2
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/package.json +1 -1
@@ -6,7 +6,7 @@ import { ApiModule } from '@veloceapps/api';
|
|
6
6
|
import * as i6 from '@veloceapps/components';
|
7
7
|
import { ToastType, ConfirmationDialogModule } from '@veloceapps/components';
|
8
8
|
import * as i1 from '@veloceapps/api/v2';
|
9
|
-
import { tap, BehaviorSubject, map, filter, switchMap, of, forkJoin, throwError, noop, Subject, catchError as catchError$1, combineLatest, finalize as finalize$1, buffer, debounceTime, share, take, distinctUntilChanged, shareReplay, takeUntil } from 'rxjs';
|
9
|
+
import { tap, BehaviorSubject, map, filter, switchMap, of, forkJoin, throwError, noop, Subject, catchError as catchError$1, combineLatest, finalize as finalize$1, buffer, debounceTime, share, take, distinctUntilChanged, shareReplay, takeUntil, first } from 'rxjs';
|
10
10
|
import { uniqBy, flatten, omit, cloneDeep, assign, isEqual } from 'lodash';
|
11
11
|
import * as i2 from 'primeng/api';
|
12
12
|
import { filter as filter$1, map as map$1, catchError, tap as tap$1, finalize } from 'rxjs/operators';
|
@@ -1418,7 +1418,7 @@ class ConfigurationStateService {
|
|
1418
1418
|
}
|
1419
1419
|
executeStateless$(request) {
|
1420
1420
|
this.executionInProgress$.next(true);
|
1421
|
-
return this.configurationService.state$.pipe(switchMap(state => {
|
1421
|
+
return this.configurationService.state$.pipe(first(), switchMap(state => {
|
1422
1422
|
// Apply actions and execute configuration/price call
|
1423
1423
|
// No need to run configuration if no actions in the request
|
1424
1424
|
if (!request.actions?.length) {
|