ntk-cms-api 1.0.458 → 1.0.459

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.
@@ -1972,6 +1972,19 @@
1972
1972
  return _this.errorExceptionResultCheck(ret);
1973
1973
  }));
1974
1974
  };
1975
+ ApiCmsServerBase.prototype.ServiceMemoAdd = function (model) {
1976
+ var _this = this;
1977
+ // this.loadingStatus=true;
1978
+ return this.http
1979
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/MemoAdd', model, {
1980
+ headers: this.getHeaders(),
1981
+ })
1982
+ .pipe(operators.retry(this.configApiRetry),
1983
+ // catchError(this.handleError)
1984
+ operators.map(function (ret) {
1985
+ return _this.errorExceptionResultCheck(ret);
1986
+ }));
1987
+ };
1975
1988
  return ApiCmsServerBase;
1976
1989
  }(ApiServerBase));
1977
1990
  ApiCmsServerBase.decorators = [