ntk-cms-api 1.2.62 → 1.2.64
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 +13 -1
- 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/entity/estate/estatePropertyExpertPriceModel.js +1 -1
- package/esm2015/lib/service/core-main/coreEnum.service.js +12 -1
- package/esm2015/lib/service/estate/estatePropertyExpertPrice.service.js +2 -2
- package/fesm2015/ntk-cms-api.js +12 -1
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/estate/estatePropertyExpertPriceModel.d.ts +21 -21
- package/lib/service/core-main/coreEnum.service.d.ts +1 -0
- package/lib/service/estate/estatePropertyExpertPrice.service.d.ts +2 -1
- 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 = [
|
|
@@ -12272,7 +12284,7 @@
|
|
|
12272
12284
|
.pipe(operators.retry(this.configApiRetry),
|
|
12273
12285
|
// catchError(this.handleError)
|
|
12274
12286
|
operators.map(function (ret) {
|
|
12275
|
-
return _this.
|
|
12287
|
+
return _this.errorExceptionResultBaseCheck(ret);
|
|
12276
12288
|
}));
|
|
12277
12289
|
};
|
|
12278
12290
|
return EstatePropertyExpertPriceService;
|