ntk-cms-api 1.0.366 → 1.0.370

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.
Files changed (28) hide show
  1. package/bundles/ntk-cms-api.umd.js +49 -0
  2. package/bundles/ntk-cms-api.umd.js.map +1 -1
  3. package/bundles/ntk-cms-api.umd.min.js +1 -1
  4. package/bundles/ntk-cms-api.umd.min.js.map +1 -1
  5. package/esm2015/lib/models/entity/application/applicationAppModel.js +1 -1
  6. package/esm2015/lib/models/entity/core-main/coreSiteModel.js +1 -1
  7. package/esm2015/lib/models/entity/core-main/coreUserModel.js +1 -1
  8. package/esm2015/lib/models/entity/estate/estateAccountUserModel.js +1 -1
  9. package/esm2015/lib/models/entity/estate/estateCustomerOrderModel.js +1 -1
  10. package/esm2015/lib/models/entity/estate/estatePropertyModel.js +1 -1
  11. package/esm2015/lib/models/entity/member/memberUserModel.js +1 -1
  12. package/esm2015/lib/service/link-management/linkManagementBillboard.service.js +16 -1
  13. package/esm2015/lib/service/link-management/linkManagementTarget.service.js +15 -1
  14. package/esm2015/lib/service/link-management/linkManagementTargetBillboardLog.service.js +21 -1
  15. package/fesm2015/ntk-cms-api.js +46 -0
  16. package/fesm2015/ntk-cms-api.js.map +1 -1
  17. package/lib/models/entity/application/applicationAppModel.d.ts +1 -0
  18. package/lib/models/entity/core-main/coreSiteModel.d.ts +1 -0
  19. package/lib/models/entity/core-main/coreUserModel.d.ts +2 -0
  20. package/lib/models/entity/estate/estateAccountUserModel.d.ts +2 -0
  21. package/lib/models/entity/estate/estateCustomerOrderModel.d.ts +3 -0
  22. package/lib/models/entity/estate/estatePropertyModel.d.ts +2 -0
  23. package/lib/models/entity/member/memberUserModel.d.ts +2 -0
  24. package/lib/service/link-management/linkManagementBillboard.service.d.ts +3 -0
  25. package/lib/service/link-management/linkManagementTarget.service.d.ts +1 -0
  26. package/lib/service/link-management/linkManagementTargetBillboardLog.service.d.ts +4 -0
  27. package/ntk-cms-api.metadata.json +1 -1
  28. package/package.json +1 -1
@@ -4543,6 +4543,21 @@
4543
4543
  LinkManagementBillboardService.prototype.getModuleCotrolerUrl = function () {
4544
4544
  return 'LinkManagementBillboard';
4545
4545
  };
4546
+ LinkManagementBillboardService.prototype.ServiceGetOneByKey = function (key) {
4547
+ var _this = this;
4548
+ if (!key || key.length === 0) {
4549
+ key = '---';
4550
+ }
4551
+ return this.http
4552
+ .post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/GetOneByKey/', key, {
4553
+ headers: this.getHeaders(),
4554
+ })
4555
+ .pipe(operators.retry(this.configApiRetry),
4556
+ // catchError(this.handleError)
4557
+ operators.map(function (ret) {
4558
+ return _this.errorExceptionResultCheck(ret);
4559
+ }));
4560
+ };
4546
4561
  return LinkManagementBillboardService;
4547
4562
  }(ApiCmsServerBase));
4548
4563
  LinkManagementBillboardService.decorators = [
@@ -4611,6 +4626,21 @@
4611
4626
  LinkManagementTargetService.prototype.getModuleCotrolerUrl = function () {
4612
4627
  return 'LinkManagementTarget';
4613
4628
  };
4629
+ LinkManagementTargetService.prototype.ServiceGetOneByKey = function (key) {
4630
+ var _this = this;
4631
+ if (!key || key.length === 0) {
4632
+ key = '---';
4633
+ }
4634
+ return this.http
4635
+ .post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/GetOneByKey/', key, {
4636
+ headers: this.getHeaders(),
4637
+ })
4638
+ .pipe(operators.retry(this.configApiRetry),
4639
+ // catchError(this.handleError)
4640
+ operators.map(function (ret) {
4641
+ return _this.errorExceptionResultCheck(ret);
4642
+ }));
4643
+ };
4614
4644
  LinkManagementTargetService.prototype.ServiceShortLinkSet = function (model) {
4615
4645
  var _this = this;
4616
4646
  if (model == null) {
@@ -4655,6 +4685,25 @@
4655
4685
  LinkManagementTargetBillboardLogService.prototype.getModuleCotrolerUrl = function () {
4656
4686
  return 'LinkManagementTargetBillboardLog';
4657
4687
  };
4688
+ LinkManagementTargetBillboardLogService.prototype.ServiceGetAllByKey = function (key, model) {
4689
+ var _this = this;
4690
+ // this.loadingStatus=true;
4691
+ if (model == null) {
4692
+ model = new FilterModel();
4693
+ }
4694
+ if (!key || key.length === 0) {
4695
+ key = '---';
4696
+ }
4697
+ return this.http
4698
+ .post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/getAll/' + key, model, {
4699
+ headers: this.getHeaders(),
4700
+ })
4701
+ .pipe(operators.retry(this.configApiRetry),
4702
+ // catchError(this.handleError)
4703
+ operators.map(function (ret) {
4704
+ return _this.errorExceptionResultCheck(ret);
4705
+ }));
4706
+ };
4658
4707
  return LinkManagementTargetBillboardLogService;
4659
4708
  }(ApiCmsServerBase));
4660
4709
  LinkManagementTargetBillboardLogService.decorators = [