ntk-cms-api 1.2.61 → 1.2.62
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 +37 -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/models/dto/estate/_export.js +2 -1
- package/esm2015/lib/models/dto/estate/estatePriceInquiryDtoModel.js +3 -0
- package/esm2015/lib/service/estate/estatePropertyExpertPrice.service.js +31 -1
- package/fesm2015/ntk-cms-api.js +32 -1
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/dto/estate/_export.d.ts +1 -0
- package/lib/models/dto/estate/estatePriceInquiryDtoModel.d.ts +7 -0
- package/lib/service/estate/estatePropertyExpertPrice.service.d.ts +5 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -12231,6 +12231,12 @@
|
|
|
12231
12231
|
{ type: i0.Injectable }
|
|
12232
12232
|
];
|
|
12233
12233
|
|
|
12234
|
+
var EstatePriceInquiryDtoModel = /** @class */ (function () {
|
|
12235
|
+
function EstatePriceInquiryDtoModel() {
|
|
12236
|
+
}
|
|
12237
|
+
return EstatePriceInquiryDtoModel;
|
|
12238
|
+
}());
|
|
12239
|
+
|
|
12234
12240
|
var EstatePropertyExpertPriceService = /** @class */ (function (_super) {
|
|
12235
12241
|
__extends(EstatePropertyExpertPriceService, _super);
|
|
12236
12242
|
function EstatePropertyExpertPriceService() {
|
|
@@ -12239,6 +12245,36 @@
|
|
|
12239
12245
|
EstatePropertyExpertPriceService.prototype.getModuleControllerUrl = function () {
|
|
12240
12246
|
return 'EstatePropertyExpertPrice';
|
|
12241
12247
|
};
|
|
12248
|
+
EstatePropertyExpertPriceService.prototype.ServicePriceInquiryList = function (model) {
|
|
12249
|
+
var _this = this;
|
|
12250
|
+
if (model == null) {
|
|
12251
|
+
model = new EstatePriceInquiryDtoModel();
|
|
12252
|
+
}
|
|
12253
|
+
return this.http
|
|
12254
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/PriceInquiryList', model, {
|
|
12255
|
+
headers: this.getHeaders(),
|
|
12256
|
+
})
|
|
12257
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
12258
|
+
// catchError(this.handleError)
|
|
12259
|
+
operators.map(function (ret) {
|
|
12260
|
+
return _this.errorExceptionResultCheck(ret);
|
|
12261
|
+
}));
|
|
12262
|
+
};
|
|
12263
|
+
EstatePropertyExpertPriceService.prototype.ServicePriceInquiryCalculate = function (model) {
|
|
12264
|
+
var _this = this;
|
|
12265
|
+
if (model == null) {
|
|
12266
|
+
model = new EstatePriceInquiryDtoModel();
|
|
12267
|
+
}
|
|
12268
|
+
return this.http
|
|
12269
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/PriceInquiryCalculate', model, {
|
|
12270
|
+
headers: this.getHeaders(),
|
|
12271
|
+
})
|
|
12272
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
12273
|
+
// catchError(this.handleError)
|
|
12274
|
+
operators.map(function (ret) {
|
|
12275
|
+
return _this.errorExceptionResultCheck(ret);
|
|
12276
|
+
}));
|
|
12277
|
+
};
|
|
12242
12278
|
return EstatePropertyExpertPriceService;
|
|
12243
12279
|
}(ApiCmsServerBase));
|
|
12244
12280
|
EstatePropertyExpertPriceService.decorators = [
|
|
@@ -14986,6 +15022,7 @@
|
|
|
14986
15022
|
exports.EstateModuleSalePropertyAdsCalculateDtoModel = EstateModuleSalePropertyAdsCalculateDtoModel;
|
|
14987
15023
|
exports.EstateModuleSalePropertyAdsPaymentDtoModel = EstateModuleSalePropertyAdsPaymentDtoModel;
|
|
14988
15024
|
exports.EstateModuleSiteStorageValuesModel = EstateModuleSiteStorageValuesModel;
|
|
15025
|
+
exports.EstatePriceInquiryDtoModel = EstatePriceInquiryDtoModel;
|
|
14989
15026
|
exports.EstatePropertyAccountTypeUserModel = EstatePropertyAccountTypeUserModel;
|
|
14990
15027
|
exports.EstatePropertyAccountTypeUserService = EstatePropertyAccountTypeUserService;
|
|
14991
15028
|
exports.EstatePropertyAdsModel = EstatePropertyAdsModel;
|