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.
@@ -2060,10 +2060,10 @@
2060
2060
  var _this = this;
2061
2061
  // this.loadingStatus=true;
2062
2062
  if (model == null) {
2063
- model = new FilterModel();
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 = [