ntk-cms-api 1.0.445 → 1.0.448

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.
@@ -12004,6 +12004,18 @@
12004
12004
  return _this.errorExceptionResultBaseCheck(ret);
12005
12005
  }));
12006
12006
  };
12007
+ WebDesignerMainPageService.prototype.ServiceWebRoute = function (id) {
12008
+ var _this = this;
12009
+ return this.http
12010
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/WebRoute/' + id, {
12011
+ headers: this.getHeaders(),
12012
+ })
12013
+ .pipe(operators.retry(this.configApiRetry),
12014
+ // catchError(this.handleError)
12015
+ operators.map(function (ret) {
12016
+ return _this.errorExceptionResultCheck(ret);
12017
+ }));
12018
+ };
12007
12019
  WebDesignerMainPageService.prototype.ServiceGetAllDefaultPagesBySiteCategory = function (model) {
12008
12020
  var _this = this;
12009
12021
  if (model == null) {
@@ -12072,6 +12084,18 @@
12072
12084
  return _this.errorExceptionResultBaseCheck(ret);
12073
12085
  }));
12074
12086
  };
12087
+ WebDesignerMainPageDependencyService.prototype.ServiceWebRoute = function (id) {
12088
+ var _this = this;
12089
+ return this.http
12090
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/WebRoute/' + id, {
12091
+ headers: this.getHeaders(),
12092
+ })
12093
+ .pipe(operators.retry(this.configApiRetry),
12094
+ // catchError(this.handleError)
12095
+ operators.map(function (ret) {
12096
+ return _this.errorExceptionResultCheck(ret);
12097
+ }));
12098
+ };
12075
12099
  return WebDesignerMainPageDependencyService;
12076
12100
  }(ApiCmsServerBase));
12077
12101
  WebDesignerMainPageDependencyService.decorators = [