monkey-front-core 0.0.505 → 0.0.507
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/lib/core/services/store/monkeyecx-store-base.service.mjs +5 -1
- package/esm2020/lib/core/services/store/monkeyecx-store.service.mjs +7 -2
- package/fesm2015/monkey-front-core.mjs +10 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +10 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.507.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.505.tgz +0 -0
|
@@ -5843,6 +5843,10 @@ class MonkeyEcxCommonsStoreBaseService extends MonkeyEcxCommonsService {
|
|
|
5843
5843
|
}
|
|
5844
5844
|
__decorate([
|
|
5845
5845
|
MonkeyEcxCoreService({
|
|
5846
|
+
httpResponse: {
|
|
5847
|
+
httpCodeIgnore: [412],
|
|
5848
|
+
httpCodeIgnoreRedirect: [412]
|
|
5849
|
+
},
|
|
5846
5850
|
requestInProgress: {
|
|
5847
5851
|
showProgress: true
|
|
5848
5852
|
}
|
|
@@ -6094,11 +6098,12 @@ class MonkeyEcxCommonsStoreService extends MonkeyEcxCommonsService {
|
|
|
6094
6098
|
try {
|
|
6095
6099
|
const data = await this.monkeyecxService?.get(url).toPromise();
|
|
6096
6100
|
this.handleResponseData(data, identifier, updateLinks);
|
|
6101
|
+
this.updateControl({ isLoading: false });
|
|
6097
6102
|
}
|
|
6098
6103
|
catch (e) {
|
|
6104
|
+
this.updateControl({ isLoading: false });
|
|
6099
6105
|
throw new Error(`${e?.message}`);
|
|
6100
6106
|
}
|
|
6101
|
-
this.updateControl({ isLoading: false });
|
|
6102
6107
|
}
|
|
6103
6108
|
async loadPageData(pagination, identifier) {
|
|
6104
6109
|
const { store, selector } = this;
|
|
@@ -6138,6 +6143,10 @@ class MonkeyEcxCommonsStoreService extends MonkeyEcxCommonsService {
|
|
|
6138
6143
|
}
|
|
6139
6144
|
__decorate([
|
|
6140
6145
|
MonkeyEcxCoreService({
|
|
6146
|
+
httpResponse: {
|
|
6147
|
+
httpCodeIgnore: [412],
|
|
6148
|
+
httpCodeIgnoreRedirect: [412]
|
|
6149
|
+
},
|
|
6141
6150
|
requestInProgress: {
|
|
6142
6151
|
showProgress: true
|
|
6143
6152
|
}
|