ntk-cms-api 1.2.73 → 1.2.75

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.
@@ -12091,6 +12091,18 @@
12091
12091
  EstatePropertyService.prototype.getModuleControllerUrl = function () {
12092
12092
  return 'EstateProperty';
12093
12093
  };
12094
+ EstatePropertyService.prototype.ServiceActionSendSmsToCustomerOrder = function (Id) {
12095
+ var _this = this;
12096
+ return this.http
12097
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/ActionSendSmsToCustomerOrder/' + Id, {
12098
+ headers: this.getHeaders(),
12099
+ })
12100
+ .pipe(operators.retry(this.configApiRetry),
12101
+ // catchError(this.handleError)
12102
+ operators.map(function (ret) {
12103
+ return _this.errorExceptionResultBaseCheck(ret);
12104
+ }));
12105
+ };
12094
12106
  EstatePropertyService.prototype.ServiceFavoriteAdd = function (Id) {
12095
12107
  var _this = this;
12096
12108
  return this.http