ntk-cms-api 1.2.61 → 1.2.63
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 +49 -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/core-main/coreEnum.service.js +12 -1
- package/esm2015/lib/service/estate/estatePropertyExpertPrice.service.js +31 -1
- package/fesm2015/ntk-cms-api.js +43 -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/core-main/coreEnum.service.d.ts +1 -0
- package/lib/service/estate/estatePropertyExpertPrice.service.d.ts +5 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2407,6 +2407,18 @@
|
|
|
2407
2407
|
return _this.errorExceptionResultCheck(ret);
|
|
2408
2408
|
}));
|
|
2409
2409
|
};
|
|
2410
|
+
CoreEnumService.prototype.ServiceInputDataTypeEnum = function () {
|
|
2411
|
+
var _this = this;
|
|
2412
|
+
return this.http
|
|
2413
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/InputDataTypeEnum', {
|
|
2414
|
+
headers: this.getHeaders(),
|
|
2415
|
+
})
|
|
2416
|
+
.pipe(
|
|
2417
|
+
// catchError(this.handleError)
|
|
2418
|
+
operators.map(function (ret) {
|
|
2419
|
+
return _this.errorExceptionResultCheck(ret);
|
|
2420
|
+
}));
|
|
2421
|
+
};
|
|
2410
2422
|
return CoreEnumService;
|
|
2411
2423
|
}(ApiServerBase));
|
|
2412
2424
|
CoreEnumService.decorators = [
|
|
@@ -12231,6 +12243,12 @@
|
|
|
12231
12243
|
{ type: i0.Injectable }
|
|
12232
12244
|
];
|
|
12233
12245
|
|
|
12246
|
+
var EstatePriceInquiryDtoModel = /** @class */ (function () {
|
|
12247
|
+
function EstatePriceInquiryDtoModel() {
|
|
12248
|
+
}
|
|
12249
|
+
return EstatePriceInquiryDtoModel;
|
|
12250
|
+
}());
|
|
12251
|
+
|
|
12234
12252
|
var EstatePropertyExpertPriceService = /** @class */ (function (_super) {
|
|
12235
12253
|
__extends(EstatePropertyExpertPriceService, _super);
|
|
12236
12254
|
function EstatePropertyExpertPriceService() {
|
|
@@ -12239,6 +12257,36 @@
|
|
|
12239
12257
|
EstatePropertyExpertPriceService.prototype.getModuleControllerUrl = function () {
|
|
12240
12258
|
return 'EstatePropertyExpertPrice';
|
|
12241
12259
|
};
|
|
12260
|
+
EstatePropertyExpertPriceService.prototype.ServicePriceInquiryList = function (model) {
|
|
12261
|
+
var _this = this;
|
|
12262
|
+
if (model == null) {
|
|
12263
|
+
model = new EstatePriceInquiryDtoModel();
|
|
12264
|
+
}
|
|
12265
|
+
return this.http
|
|
12266
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/PriceInquiryList', model, {
|
|
12267
|
+
headers: this.getHeaders(),
|
|
12268
|
+
})
|
|
12269
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
12270
|
+
// catchError(this.handleError)
|
|
12271
|
+
operators.map(function (ret) {
|
|
12272
|
+
return _this.errorExceptionResultCheck(ret);
|
|
12273
|
+
}));
|
|
12274
|
+
};
|
|
12275
|
+
EstatePropertyExpertPriceService.prototype.ServicePriceInquiryCalculate = function (model) {
|
|
12276
|
+
var _this = this;
|
|
12277
|
+
if (model == null) {
|
|
12278
|
+
model = new EstatePriceInquiryDtoModel();
|
|
12279
|
+
}
|
|
12280
|
+
return this.http
|
|
12281
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/PriceInquiryCalculate', model, {
|
|
12282
|
+
headers: this.getHeaders(),
|
|
12283
|
+
})
|
|
12284
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
12285
|
+
// catchError(this.handleError)
|
|
12286
|
+
operators.map(function (ret) {
|
|
12287
|
+
return _this.errorExceptionResultCheck(ret);
|
|
12288
|
+
}));
|
|
12289
|
+
};
|
|
12242
12290
|
return EstatePropertyExpertPriceService;
|
|
12243
12291
|
}(ApiCmsServerBase));
|
|
12244
12292
|
EstatePropertyExpertPriceService.decorators = [
|
|
@@ -14986,6 +15034,7 @@
|
|
|
14986
15034
|
exports.EstateModuleSalePropertyAdsCalculateDtoModel = EstateModuleSalePropertyAdsCalculateDtoModel;
|
|
14987
15035
|
exports.EstateModuleSalePropertyAdsPaymentDtoModel = EstateModuleSalePropertyAdsPaymentDtoModel;
|
|
14988
15036
|
exports.EstateModuleSiteStorageValuesModel = EstateModuleSiteStorageValuesModel;
|
|
15037
|
+
exports.EstatePriceInquiryDtoModel = EstatePriceInquiryDtoModel;
|
|
14989
15038
|
exports.EstatePropertyAccountTypeUserModel = EstatePropertyAccountTypeUserModel;
|
|
14990
15039
|
exports.EstatePropertyAccountTypeUserService = EstatePropertyAccountTypeUserService;
|
|
14991
15040
|
exports.EstatePropertyAdsModel = EstatePropertyAdsModel;
|