ntk-cms-api 1.0.367 → 1.0.371
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 +61 -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/esm2015/lib/service/link-management/linkManagementBillboard.service.js +16 -1
- package/esm2015/lib/service/link-management/linkManagementTarget.service.js +15 -1
- package/esm2015/lib/service/link-management/linkManagementTargetBillboardLog.service.js +21 -1
- package/fesm2015/ntk-cms-api.js +57 -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 +1 -0
- 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/lib/service/link-management/linkManagementBillboard.service.d.ts +3 -0
- package/lib/service/link-management/linkManagementTarget.service.d.ts +1 -0
- package/lib/service/link-management/linkManagementTargetBillboardLog.service.d.ts +4 -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
|
|
@@ -4543,6 +4555,21 @@
|
|
|
4543
4555
|
LinkManagementBillboardService.prototype.getModuleCotrolerUrl = function () {
|
|
4544
4556
|
return 'LinkManagementBillboard';
|
|
4545
4557
|
};
|
|
4558
|
+
LinkManagementBillboardService.prototype.ServiceGetOneByKey = function (key) {
|
|
4559
|
+
var _this = this;
|
|
4560
|
+
if (!key || key.length === 0) {
|
|
4561
|
+
key = '---';
|
|
4562
|
+
}
|
|
4563
|
+
return this.http
|
|
4564
|
+
.post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/GetOneByKey/', key, {
|
|
4565
|
+
headers: this.getHeaders(),
|
|
4566
|
+
})
|
|
4567
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
4568
|
+
// catchError(this.handleError)
|
|
4569
|
+
operators.map(function (ret) {
|
|
4570
|
+
return _this.errorExceptionResultCheck(ret);
|
|
4571
|
+
}));
|
|
4572
|
+
};
|
|
4546
4573
|
return LinkManagementBillboardService;
|
|
4547
4574
|
}(ApiCmsServerBase));
|
|
4548
4575
|
LinkManagementBillboardService.decorators = [
|
|
@@ -4611,6 +4638,21 @@
|
|
|
4611
4638
|
LinkManagementTargetService.prototype.getModuleCotrolerUrl = function () {
|
|
4612
4639
|
return 'LinkManagementTarget';
|
|
4613
4640
|
};
|
|
4641
|
+
LinkManagementTargetService.prototype.ServiceGetOneByKey = function (key) {
|
|
4642
|
+
var _this = this;
|
|
4643
|
+
if (!key || key.length === 0) {
|
|
4644
|
+
key = '---';
|
|
4645
|
+
}
|
|
4646
|
+
return this.http
|
|
4647
|
+
.post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/GetOneByKey/', key, {
|
|
4648
|
+
headers: this.getHeaders(),
|
|
4649
|
+
})
|
|
4650
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
4651
|
+
// catchError(this.handleError)
|
|
4652
|
+
operators.map(function (ret) {
|
|
4653
|
+
return _this.errorExceptionResultCheck(ret);
|
|
4654
|
+
}));
|
|
4655
|
+
};
|
|
4614
4656
|
LinkManagementTargetService.prototype.ServiceShortLinkSet = function (model) {
|
|
4615
4657
|
var _this = this;
|
|
4616
4658
|
if (model == null) {
|
|
@@ -4655,6 +4697,25 @@
|
|
|
4655
4697
|
LinkManagementTargetBillboardLogService.prototype.getModuleCotrolerUrl = function () {
|
|
4656
4698
|
return 'LinkManagementTargetBillboardLog';
|
|
4657
4699
|
};
|
|
4700
|
+
LinkManagementTargetBillboardLogService.prototype.ServiceGetAllByKey = function (key, model) {
|
|
4701
|
+
var _this = this;
|
|
4702
|
+
// this.loadingStatus=true;
|
|
4703
|
+
if (model == null) {
|
|
4704
|
+
model = new FilterModel();
|
|
4705
|
+
}
|
|
4706
|
+
if (!key || key.length === 0) {
|
|
4707
|
+
key = '---';
|
|
4708
|
+
}
|
|
4709
|
+
return this.http
|
|
4710
|
+
.post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/getAll/' + key, model, {
|
|
4711
|
+
headers: this.getHeaders(),
|
|
4712
|
+
})
|
|
4713
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
4714
|
+
// catchError(this.handleError)
|
|
4715
|
+
operators.map(function (ret) {
|
|
4716
|
+
return _this.errorExceptionResultCheck(ret);
|
|
4717
|
+
}));
|
|
4718
|
+
};
|
|
4658
4719
|
return LinkManagementTargetBillboardLogService;
|
|
4659
4720
|
}(ApiCmsServerBase));
|
|
4660
4721
|
LinkManagementTargetBillboardLogService.decorators = [
|