ntk-cms-api 1.0.372 → 1.0.376

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,10 +2558,22 @@
2558
2558
  CoreSiteService.prototype.getModuleCotrolerUrl = function () {
2559
2559
  return 'CoreSite';
2560
2560
  };
2561
- CoreSiteService.prototype.ServiceOptimaze = function (linkSiteId) {
2561
+ CoreSiteService.prototype.ServiceModuleDataOptimaze = function (linkSiteId) {
2562
2562
  var _this = this;
2563
2563
  return this.http
2564
- .get(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/Optimaze/' + linkSiteId, {
2564
+ .get(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/DataOptimaze/' + 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
+ };
2573
+ CoreSiteService.prototype.ServiceModuleDataInfo = function (linkSiteId) {
2574
+ var _this = this;
2575
+ return this.http
2576
+ .get(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/DataInfo/' + linkSiteId, {
2565
2577
  headers: this.getHeaders(),
2566
2578
  })
2567
2579
  .pipe(operators.retry(this.configApiRetry),
@@ -4011,6 +4023,24 @@
4011
4023
  return RessellerChartModel;
4012
4024
  }());
4013
4025
 
4026
+ var ProcessModuleSiteDataInfoOutputModel = /** @class */ (function () {
4027
+ function ProcessModuleSiteDataInfoOutputModel() {
4028
+ }
4029
+ return ProcessModuleSiteDataInfoOutputModel;
4030
+ }());
4031
+
4032
+ var ProcessModuleSiteDataRemoveOutputModel = /** @class */ (function () {
4033
+ function ProcessModuleSiteDataRemoveOutputModel() {
4034
+ }
4035
+ return ProcessModuleSiteDataRemoveOutputModel;
4036
+ }());
4037
+
4038
+ var ProcessModuleSiteDataOptimazeOutputModel = /** @class */ (function () {
4039
+ function ProcessModuleSiteDataOptimazeOutputModel() {
4040
+ }
4041
+ return ProcessModuleSiteDataOptimazeOutputModel;
4042
+ }());
4043
+
4014
4044
  var CoreModuleTagService = /** @class */ (function (_super) {
4015
4045
  __extends(CoreModuleTagService, _super);
4016
4046
  function CoreModuleTagService() {
@@ -11772,6 +11802,9 @@
11772
11802
  exports.PollingOptionService = PollingOptionService;
11773
11803
  exports.PollingVoteModel = PollingVoteModel;
11774
11804
  exports.PollingVoteService = PollingVoteService;
11805
+ exports.ProcessModuleSiteDataInfoOutputModel = ProcessModuleSiteDataInfoOutputModel;
11806
+ exports.ProcessModuleSiteDataOptimazeOutputModel = ProcessModuleSiteDataOptimazeOutputModel;
11807
+ exports.ProcessModuleSiteDataRemoveOutputModel = ProcessModuleSiteDataRemoveOutputModel;
11775
11808
  exports.RenderModelApplicationSendNotificationInput = RenderModelApplicationSendNotificationInput;
11776
11809
  exports.RessellerChartModel = RessellerChartModel;
11777
11810
  exports.SET_IN_PROCESSING_LIST = SET_IN_PROCESSING_LIST;