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.
@@ -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
  }());