ntk-cms-api 1.2.186 → 1.2.188

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.
@@ -10106,6 +10106,20 @@ class EstateCustomerOrderService extends ApiCmsServerBase {
10106
10106
  return this.errorExceptionResultCheck(ret);
10107
10107
  }));
10108
10108
  }
10109
+ ServiceGetAllWithResponsiblePropertyId(propertyId, model) {
10110
+ if (model == null) {
10111
+ model = new FilterModel();
10112
+ }
10113
+ return this.http
10114
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllWithResponsiblePropertyId/' + propertyId, model, {
10115
+ headers: this.getHeaders(),
10116
+ })
10117
+ .pipe(retry(this.configApiRetry),
10118
+ // catchError(this.handleError)
10119
+ map((ret) => {
10120
+ return this.errorExceptionResultCheck(ret);
10121
+ }));
10122
+ }
10109
10123
  ServiceGetAllWithResponsibleUserIdExportFile(userId, model) {
10110
10124
  // this.loadingStatus=true;
10111
10125
  if (model == null) {