ntk-cms-api 1.2.103 → 1.2.105
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/ntk-cms-api.umd.js +15 -2
- package/bundles/ntk-cms-api.umd.js.map +1 -1
- package/bundles/ntk-cms-api.umd.min.js +1 -1
- package/bundles/ntk-cms-api.umd.min.js.map +1 -1
- package/esm2015/lib/service/base/_export.js +2 -1
- package/esm2015/lib/service/base/apiCmsServerBase.service.js +16 -3
- package/esm2015/lib/service/base/iApiCmsServerBase.js +2 -0
- package/fesm2015/ntk-cms-api.js +14 -2
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/service/base/_export.d.ts +1 -0
- package/lib/service/base/apiCmsServerBase.service.d.ts +5 -8
- package/lib/service/base/iApiCmsServerBase.d.ts +19 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2060,10 +2060,10 @@
|
|
|
2060
2060
|
var _this = this;
|
|
2061
2061
|
// this.loadingStatus=true;
|
|
2062
2062
|
if (model == null) {
|
|
2063
|
-
model = new
|
|
2063
|
+
model = new ExportFileModel();
|
|
2064
2064
|
}
|
|
2065
2065
|
return this.http
|
|
2066
|
-
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/ExportFile' + id, model, {
|
|
2066
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/ExportFile/' + id, model, {
|
|
2067
2067
|
headers: this.getHeaders(),
|
|
2068
2068
|
})
|
|
2069
2069
|
.pipe(operators.retry(this.configApiRetry),
|
|
@@ -2150,6 +2150,19 @@
|
|
|
2150
2150
|
return _this.errorExceptionResultCheck(ret);
|
|
2151
2151
|
}));
|
|
2152
2152
|
};
|
|
2153
|
+
ApiCmsServerBase.prototype.ServiceMemoGetAll = function (id) {
|
|
2154
|
+
var _this = this;
|
|
2155
|
+
// this.loadingStatus=true;
|
|
2156
|
+
return this.http
|
|
2157
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/MemoGetAll/' + id, {
|
|
2158
|
+
headers: this.getHeaders(),
|
|
2159
|
+
})
|
|
2160
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
2161
|
+
// catchError(this.handleError)
|
|
2162
|
+
operators.map(function (ret) {
|
|
2163
|
+
return _this.errorExceptionResultCheck(ret);
|
|
2164
|
+
}));
|
|
2165
|
+
};
|
|
2153
2166
|
return ApiCmsServerBase;
|
|
2154
2167
|
}(ApiServerBase));
|
|
2155
2168
|
ApiCmsServerBase.decorators = [
|