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.
- package/bundles/ntk-cms-api.umd.js +35 -2
- 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/models/dto/core/_export.js +4 -1
- package/esm2015/lib/models/dto/core/processModuleSiteDataInfoOutputModel.js +3 -0
- package/esm2015/lib/models/dto/core/processModuleSiteDataOptimazeOutputModel.js +3 -0
- package/esm2015/lib/models/dto/core/processModuleSiteDataRemoveOutputModel.js +3 -0
- package/esm2015/lib/models/entity/estate/estateContractModel.js +1 -1
- package/esm2015/lib/models/entity/estate/estatePropertyModel.js +1 -1
- package/esm2015/lib/service/core-main/coreSite.service.js +14 -3
- package/fesm2015/ntk-cms-api.js +23 -3
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/dto/core/_export.d.ts +3 -0
- package/lib/models/dto/core/processModuleSiteDataInfoOutputModel.d.ts +6 -0
- package/lib/models/dto/core/processModuleSiteDataOptimazeOutputModel.d.ts +6 -0
- package/lib/models/dto/core/processModuleSiteDataRemoveOutputModel.d.ts +6 -0
- package/lib/models/entity/estate/estateContractModel.d.ts +1 -0
- package/lib/models/entity/estate/estatePropertyModel.d.ts +2 -0
- package/lib/service/core-main/coreSite.service.d.ts +4 -1
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -2558,10 +2558,22 @@
|
|
|
2558
2558
|
CoreSiteService.prototype.getModuleCotrolerUrl = function () {
|
|
2559
2559
|
return 'CoreSite';
|
|
2560
2560
|
};
|
|
2561
|
-
CoreSiteService.prototype.
|
|
2561
|
+
CoreSiteService.prototype.ServiceModuleDataOptimaze = function (linkSiteId) {
|
|
2562
2562
|
var _this = this;
|
|
2563
2563
|
return this.http
|
|
2564
|
-
.get(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/
|
|
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;
|