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.
- package/bundles/ntk-cms-api.umd.js +12 -0
- 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/entity/application/applicationAppModel.js +1 -1
- package/esm2015/lib/models/entity/core-main/coreSiteModel.js +1 -1
- package/esm2015/lib/models/entity/core-main/coreUserModel.js +1 -1
- package/esm2015/lib/models/entity/estate/estateAccountUserModel.js +1 -1
- package/esm2015/lib/models/entity/estate/estatePropertyModel.js +1 -1
- package/esm2015/lib/models/entity/member/memberUserModel.js +1 -1
- package/esm2015/lib/service/core-main/coreSite.service.js +12 -1
- package/fesm2015/ntk-cms-api.js +11 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/application/applicationAppModel.d.ts +1 -0
- package/lib/models/entity/core-main/coreSiteModel.d.ts +4 -2
- package/lib/models/entity/core-main/coreUserModel.d.ts +2 -0
- package/lib/models/entity/estate/estateAccountUserModel.d.ts +2 -0
- package/lib/models/entity/estate/estatePropertyModel.d.ts +2 -0
- package/lib/models/entity/member/memberUserModel.d.ts +2 -0
- package/lib/service/core-main/coreSite.service.d.ts +1 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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
|