@veloceapps/sdk 8.0.0-174 → 8.0.0-175
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/core/modules/configuration/services/configuration-state.service.mjs +8 -3
- package/fesm2015/veloceapps-sdk-core.mjs +6 -1
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +6 -1
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/package.json +1 -1
@@ -2134,8 +2134,13 @@ class ConfigurationStateService {
|
|
2134
2134
|
}));
|
2135
2135
|
}
|
2136
2136
|
cleanup() {
|
2137
|
-
this.
|
2137
|
+
Object.values(this.subscriptions).forEach(({ data$ }) => data$.complete());
|
2138
|
+
this.subscriptions = {};
|
2139
|
+
if (this.stateId) {
|
2140
|
+
this.cancelConfiguration();
|
2141
|
+
}
|
2138
2142
|
this.configurationStore = {};
|
2143
|
+
this.executedFunctions = {};
|
2139
2144
|
this.configurationService.reset();
|
2140
2145
|
}
|
2141
2146
|
execute$(req, forceSubscriptions) {
|