ntk-cms-api 1.0.368 → 1.0.372

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.
@@ -2558,6 +2558,18 @@
2558
2558
  CoreSiteService.prototype.getModuleCotrolerUrl = function () {
2559
2559
  return 'CoreSite';
2560
2560
  };
2561
+ CoreSiteService.prototype.ServiceOptimaze = function (linkSiteId) {
2562
+ var _this = this;
2563
+ return this.http
2564
+ .get(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/Optimaze/' + linkSiteId, {
2565
+ headers: this.getHeaders(),
2566
+ })
2567
+ .pipe(operators.retry(this.configApiRetry),
2568
+ // catchError(this.handleError)
2569
+ operators.map(function (ret) {
2570
+ return _this.errorExceptionResultCheck(ret);
2571
+ }));
2572
+ };
2561
2573
  CoreSiteService.prototype.ServiceWebScreenshot = function (model) {
2562
2574
  var _this = this;
2563
2575
  return this.http