ngx-techlify-core 11.4.5-beta.4 → 11.4.5-beta.5
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/bundles/ngx-techlify-core.umd.js +2 -0
- package/bundles/ngx-techlify-core.umd.js.map +1 -1
- package/bundles/ngx-techlify-core.umd.min.js +1 -1
- package/bundles/ngx-techlify-core.umd.min.js.map +1 -1
- package/esm2015/lib/core/config.service.js +1 -1
- package/esm2015/lib/core/error-handler.service.js +1 -1
- package/esm2015/lib/core/techlify-config.model.js +3 -1
- package/fesm2015/ngx-techlify-core.js +2 -0
- package/fesm2015/ngx-techlify-core.js.map +1 -1
- package/lib/core/config.service.d.ts +5 -5
- package/lib/core/techlify-config.model.d.ts +1 -0
- package/package.json +1 -1
|
@@ -747,6 +747,7 @@
|
|
|
747
747
|
this.authClientSecret = '';
|
|
748
748
|
this.authGrantType = '';
|
|
749
749
|
this.apiUrl = '';
|
|
750
|
+
this.isLogoutWhileApiGetsFailed = false;
|
|
750
751
|
this.loadFromMap(data);
|
|
751
752
|
}
|
|
752
753
|
TechlifyConfig.prototype.loadFromMap = function (data) {
|
|
@@ -757,6 +758,7 @@
|
|
|
757
758
|
this.apiUrl = data.apiUrl;
|
|
758
759
|
this.storage = data === null || data === void 0 ? void 0 : data.storage;
|
|
759
760
|
this.rawConfigs = data;
|
|
761
|
+
this.isLogoutWhileApiGetsFailed = data === null || data === void 0 ? void 0 : data.isLogoutWhileApiGetsFailed;
|
|
760
762
|
};
|
|
761
763
|
return TechlifyConfig;
|
|
762
764
|
}());
|