ntk-cms-api 1.2.75 → 1.2.77

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.
@@ -3098,25 +3098,10 @@
3098
3098
  CoreSiteUserService.prototype.getModuleControllerUrl = function () {
3099
3099
  return 'CoreSiteUser';
3100
3100
  };
3101
- CoreSiteUserService.prototype.ServiceGetAllSiteUser = function (model) {
3102
- var _this = this;
3103
- if (model == null) {
3104
- model = new FilterModel();
3105
- }
3106
- return this.http
3107
- .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllSiteUser', model, {
3108
- headers: this.getHeaders(),
3109
- })
3110
- .pipe(operators.retry(this.configApiRetry),
3111
- // catchError(this.handleError)
3112
- operators.map(function (ret) {
3113
- return _this.errorExceptionResultCheck(ret);
3114
- }));
3115
- };
3116
- CoreSiteUserService.prototype.ServiceGetCurrentSiteUsers = function () {
3101
+ CoreSiteUserService.prototype.ServiceGetAllSiteCurrentUser = function () {
3117
3102
  var _this = this;
3118
3103
  return this.http
3119
- .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetCurrentSiteUsers', {
3104
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllSiteCurrentUser', {
3120
3105
  headers: this.getHeaders(),
3121
3106
  })
3122
3107
  .pipe(operators.retry(this.configApiRetry),
@@ -12376,6 +12361,20 @@
12376
12361
  { type: i0.Injectable }
12377
12362
  ];
12378
12363
 
12364
+ var EstateCustomerOrderResultService = /** @class */ (function (_super) {
12365
+ __extends(EstateCustomerOrderResultService, _super);
12366
+ function EstateCustomerOrderResultService() {
12367
+ return _super !== null && _super.apply(this, arguments) || this;
12368
+ }
12369
+ EstateCustomerOrderResultService.prototype.getModuleControllerUrl = function () {
12370
+ return 'EstateCustomerOrderResult';
12371
+ };
12372
+ return EstateCustomerOrderResultService;
12373
+ }(ApiCmsServerBase));
12374
+ EstateCustomerOrderResultService.decorators = [
12375
+ { type: i0.Injectable }
12376
+ ];
12377
+
12379
12378
  var EstateModuleConfigAdminMainValuesModel = /** @class */ (function (_super) {
12380
12379
  __extends(EstateModuleConfigAdminMainValuesModel, _super);
12381
12380
  function EstateModuleConfigAdminMainValuesModel() {
@@ -12609,6 +12608,14 @@
12609
12608
  return EstatePropertyExpertPriceModel;
12610
12609
  }(BaseModuleEntity));
12611
12610
 
12611
+ var EstateCustomerOrderResultModel = /** @class */ (function (_super) {
12612
+ __extends(EstateCustomerOrderResultModel, _super);
12613
+ function EstateCustomerOrderResultModel() {
12614
+ return _super !== null && _super.apply(this, arguments) || this;
12615
+ }
12616
+ return EstateCustomerOrderResultModel;
12617
+ }(BaseModuleEntity));
12618
+
12612
12619
  (function (EstateUserTypeEnum) {
12613
12620
  EstateUserTypeEnum[EstateUserTypeEnum["Customer"] = 1] = "Customer";
12614
12621
  EstateUserTypeEnum[EstateUserTypeEnum["Agent"] = 2] = "Agent";
@@ -15111,6 +15118,8 @@
15111
15118
  exports.EstateContractTypeModel = EstateContractTypeModel;
15112
15119
  exports.EstateContractTypeService = EstateContractTypeService;
15113
15120
  exports.EstateCustomerOrderModel = EstateCustomerOrderModel;
15121
+ exports.EstateCustomerOrderResultModel = EstateCustomerOrderResultModel;
15122
+ exports.EstateCustomerOrderResultService = EstateCustomerOrderResultService;
15114
15123
  exports.EstateCustomerOrderService = EstateCustomerOrderService;
15115
15124
  exports.EstateEnumService = EstateEnumService;
15116
15125
  exports.EstateModuleConfigAdminMainValuesModel = EstateModuleConfigAdminMainValuesModel;