ntk-cms-api 1.2.170 → 1.2.171
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/service/base/apiCmsServerBase.service.mjs +14 -2
- package/esm2020/lib/service/base/iApiCmsServerBase.mjs +1 -1
- package/fesm2015/ntk-cms-api.mjs +13 -1
- package/fesm2015/ntk-cms-api.mjs.map +1 -1
- package/fesm2020/ntk-cms-api.mjs +13 -1
- package/fesm2020/ntk-cms-api.mjs.map +1 -1
- package/lib/service/base/apiCmsServerBase.service.d.ts +2 -1
- package/lib/service/base/iApiCmsServerBase.d.ts +1 -0
- package/package.json +1 -1
package/fesm2020/ntk-cms-api.mjs
CHANGED
|
@@ -1772,7 +1772,19 @@ class ApiCmsServerBase extends ApiServerBase {
|
|
|
1772
1772
|
return this.errorExceptionResultCheck(ret);
|
|
1773
1773
|
}));
|
|
1774
1774
|
}
|
|
1775
|
-
ServiceMemoGetAll(
|
|
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, {
|