ntk-cms-api 1.2.122 → 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.
@@ -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) {