ntk-cms-api 1.2.73 → 1.2.74
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 +12 -0
- 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/estate/estateProperty.service.js +12 -1
- package/fesm2015/ntk-cms-api.js +11 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/service/estate/estateProperty.service.d.ts +1 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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
|