ntk-cms-api 1.2.71 → 1.2.72

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.
@@ -2696,6 +2696,32 @@
2696
2696
  { type: i0.Injectable }
2697
2697
  ];
2698
2698
 
2699
+ var CoreModuleEntityService = /** @class */ (function (_super) {
2700
+ __extends(CoreModuleEntityService, _super);
2701
+ function CoreModuleEntityService() {
2702
+ return _super !== null && _super.apply(this, arguments) || this;
2703
+ }
2704
+ CoreModuleEntityService.prototype.getModuleControllerUrl = function () {
2705
+ return 'CoreModuleEntity';
2706
+ };
2707
+ CoreModuleEntityService.prototype.ServiceAutoAdd = function () {
2708
+ var _this = this;
2709
+ return this.http
2710
+ .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/AutoAdd/', {
2711
+ headers: this.getHeaders(),
2712
+ })
2713
+ .pipe(operators.retry(this.configApiRetry),
2714
+ // catchError(this.handleError)
2715
+ operators.map(function (ret) {
2716
+ return _this.errorExceptionResultCheck(ret);
2717
+ }));
2718
+ };
2719
+ return CoreModuleEntityService;
2720
+ }(ApiCmsServerBase));
2721
+ CoreModuleEntityService.decorators = [
2722
+ { type: i0.Injectable }
2723
+ ];
2724
+
2699
2725
  var CoreModuleProcessService = /** @class */ (function (_super) {
2700
2726
  __extends(CoreModuleProcessService, _super);
2701
2727
  function CoreModuleProcessService() {
@@ -3977,6 +4003,14 @@
3977
4003
  return CoreModuleModel;
3978
4004
  }(BaseEntity));
3979
4005
 
4006
+ var CoreModuleEntityModel = /** @class */ (function (_super) {
4007
+ __extends(CoreModuleEntityModel, _super);
4008
+ function CoreModuleEntityModel() {
4009
+ return _super !== null && _super.apply(this, arguments) || this;
4010
+ }
4011
+ return CoreModuleEntityModel;
4012
+ }(BaseEntity));
4013
+
3980
4014
  var CoreModuleProcessCustomizeModel = /** @class */ (function (_super) {
3981
4015
  __extends(CoreModuleProcessCustomizeModel, _super);
3982
4016
  function CoreModuleProcessCustomizeModel() {
@@ -14880,6 +14914,8 @@
14880
14914
  exports.CoreModuleConfigAdminMainValuesModel = CoreModuleConfigAdminMainValuesModel;
14881
14915
  exports.CoreModuleConfigSiteAccessValuesModel = CoreModuleConfigSiteAccessValuesModel;
14882
14916
  exports.CoreModuleConfigSiteValuesModel = CoreModuleConfigSiteValuesModel;
14917
+ exports.CoreModuleEntityModel = CoreModuleEntityModel;
14918
+ exports.CoreModuleEntityService = CoreModuleEntityService;
14883
14919
  exports.CoreModuleFavoriteDtoModel = CoreModuleFavoriteDtoModel;
14884
14920
  exports.CoreModuleLogContentCountModel = CoreModuleLogContentCountModel;
14885
14921
  exports.CoreModuleLogContentCountService = CoreModuleLogContentCountService;