ntk-cms-api 1.2.170 → 1.2.172

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.
@@ -1772,7 +1772,19 @@ class ApiCmsServerBase extends ApiServerBase {
1772
1772
  return this.errorExceptionResultCheck(ret);
1773
1773
  }));
1774
1774
  }
1775
- ServiceMemoGetAll(id) {
1775
+ ServiceMemoGetAll() {
1776
+ // this.loadingStatus=true;
1777
+ return this.http
1778
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/MemoGetAll/', {
1779
+ headers: this.getHeaders(),
1780
+ })
1781
+ .pipe(retry(this.configApiRetry),
1782
+ // catchError(this.handleError)
1783
+ map((ret) => {
1784
+ return this.errorExceptionResultCheck(ret);
1785
+ }));
1786
+ }
1787
+ ServiceMemoGetAllEntity(id) {
1776
1788
  // this.loadingStatus=true;
1777
1789
  return this.http
1778
1790
  .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/MemoGetAll/' + id, {