ntk-cms-api 1.2.27 → 1.2.28
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 +15 -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/entity/estate/estatePropertyModel.js +1 -1
- package/esm2015/lib/models/entity/file/fileContentModel.js +1 -1
- package/esm2015/lib/models/entity/news/newsContentModel.js +1 -1
- package/esm2015/lib/service/core-main/coreLocation.service.js +15 -1
- package/fesm2015/ntk-cms-api.js +14 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/estate/estatePropertyModel.d.ts +2 -0
- package/lib/models/entity/file/fileContentModel.d.ts +1 -0
- package/lib/service/core-main/coreLocation.service.d.ts +1 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2440,6 +2440,21 @@
|
|
|
2440
2440
|
return _this.errorExceptionResultCheck(ret);
|
|
2441
2441
|
}));
|
|
2442
2442
|
};
|
|
2443
|
+
CoreLocationService.prototype.ServiceGetAllCountry = function (model) {
|
|
2444
|
+
var _this = this;
|
|
2445
|
+
if (model == null) {
|
|
2446
|
+
model = new FilterModel();
|
|
2447
|
+
}
|
|
2448
|
+
return this.http
|
|
2449
|
+
.post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllCountry', model, {
|
|
2450
|
+
headers: this.getHeaders(),
|
|
2451
|
+
})
|
|
2452
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
2453
|
+
// catchError(this.handleError)
|
|
2454
|
+
operators.map(function (ret) {
|
|
2455
|
+
return _this.errorExceptionResultCheck(ret);
|
|
2456
|
+
}));
|
|
2457
|
+
};
|
|
2443
2458
|
return CoreLocationService;
|
|
2444
2459
|
}(ApiCmsServerBase));
|
|
2445
2460
|
CoreLocationService.decorators = [
|