ntk-cms-api 1.2.123 → 1.2.124
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 +24 -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/service/core-main/coreLocation.service.js +23 -1
- package/fesm2015/ntk-cms-api.js +22 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/service/core-main/coreLocation.service.d.ts +2 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2586,6 +2586,30 @@
|
|
|
2586
2586
|
CoreLocationService.prototype.getModuleControllerUrl = function () {
|
|
2587
2587
|
return 'CoreLocation';
|
|
2588
2588
|
};
|
|
2589
|
+
CoreLocationService.prototype.ServiceGetOneIncludeChild = function (id) {
|
|
2590
|
+
var _this = this;
|
|
2591
|
+
return this.http
|
|
2592
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetOneIncludeChild/' + id, {
|
|
2593
|
+
headers: this.getHeaders(),
|
|
2594
|
+
})
|
|
2595
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
2596
|
+
// catchError(this.handleError)
|
|
2597
|
+
operators.map(function (ret) {
|
|
2598
|
+
return _this.errorExceptionResultCheck(ret);
|
|
2599
|
+
}));
|
|
2600
|
+
};
|
|
2601
|
+
CoreLocationService.prototype.ServiceGetOneIncludeParent = function (id) {
|
|
2602
|
+
var _this = this;
|
|
2603
|
+
return this.http
|
|
2604
|
+
.get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetOneIncludeParent/' + id, {
|
|
2605
|
+
headers: this.getHeaders(),
|
|
2606
|
+
})
|
|
2607
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
2608
|
+
// catchError(this.handleError)
|
|
2609
|
+
operators.map(function (ret) {
|
|
2610
|
+
return _this.errorExceptionResultCheck(ret);
|
|
2611
|
+
}));
|
|
2612
|
+
};
|
|
2589
2613
|
CoreLocationService.prototype.ServiceGetAllTree = function (model) {
|
|
2590
2614
|
var _this = this;
|
|
2591
2615
|
if (model == null) {
|