ntk-cms-api 1.2.54 → 1.2.55

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.
@@ -1231,6 +1231,13 @@
1231
1231
  EnumManageUserAccessDataTypes[EnumManageUserAccessDataTypes["Editor"] = 3] = "Editor";
1232
1232
  })(exports.EnumManageUserAccessDataTypes || (exports.EnumManageUserAccessDataTypes = {}));
1233
1233
 
1234
+ (function (EnumSiteStatus) {
1235
+ EnumSiteStatus[EnumSiteStatus["Active"] = 1] = "Active";
1236
+ EnumSiteStatus[EnumSiteStatus["Inactive"] = 2] = "Inactive";
1237
+ EnumSiteStatus[EnumSiteStatus["Maintenance"] = 3] = "Maintenance";
1238
+ EnumSiteStatus[EnumSiteStatus["AllowedUser"] = 4] = "AllowedUser";
1239
+ })(exports.EnumSiteStatus || (exports.EnumSiteStatus = {}));
1240
+
1234
1241
  var DataFieldInfoModel = /** @class */ (function () {
1235
1242
  function DataFieldInfoModel() {
1236
1243
  this.accessSearchField = false;
@@ -8569,6 +8576,14 @@
8569
8576
  return SmsLogOutBoxQueueModel;
8570
8577
  }(BaseModuleEntity));
8571
8578
 
8579
+ var SmsLogOutBoxTaskSchedulerModel = /** @class */ (function (_super) {
8580
+ __extends(SmsLogOutBoxTaskSchedulerModel, _super);
8581
+ function SmsLogOutBoxTaskSchedulerModel() {
8582
+ return _super !== null && _super.apply(this, arguments) || this;
8583
+ }
8584
+ return SmsLogOutBoxTaskSchedulerModel;
8585
+ }(BaseModuleEntity));
8586
+
8572
8587
  var SmsConfigurationService = /** @class */ (function (_super) {
8573
8588
  __extends(SmsConfigurationService, _super);
8574
8589
  function SmsConfigurationService() {
@@ -9099,6 +9114,44 @@
9099
9114
  { type: i0.Injectable }
9100
9115
  ];
9101
9116
 
9117
+ var SmsLogOutBoxTaskSchedulerService = /** @class */ (function (_super) {
9118
+ __extends(SmsLogOutBoxTaskSchedulerService, _super);
9119
+ function SmsLogOutBoxTaskSchedulerService() {
9120
+ return _super !== null && _super.apply(this, arguments) || this;
9121
+ }
9122
+ SmsLogOutBoxTaskSchedulerService.prototype.getModuleControllerUrl = function () {
9123
+ return 'SmsLogOutBoxTaskScheduler';
9124
+ };
9125
+ SmsLogOutBoxTaskSchedulerService.prototype.ServiceGetAllReadyToSend = function (model) {
9126
+ var _this = this;
9127
+ return this.http
9128
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllReadyToSend/', model, {
9129
+ headers: this.getHeaders(),
9130
+ })
9131
+ .pipe(operators.retry(this.configApiRetry),
9132
+ // catchError(this.handleError)
9133
+ operators.map(function (ret) {
9134
+ return _this.errorExceptionResultCheck(ret);
9135
+ }));
9136
+ };
9137
+ SmsLogOutBoxTaskSchedulerService.prototype.ServiceGetAllSending = function (model) {
9138
+ var _this = this;
9139
+ return this.http
9140
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllSending/', model, {
9141
+ headers: this.getHeaders(),
9142
+ })
9143
+ .pipe(operators.retry(this.configApiRetry),
9144
+ // catchError(this.handleError)
9145
+ operators.map(function (ret) {
9146
+ return _this.errorExceptionResultCheck(ret);
9147
+ }));
9148
+ };
9149
+ return SmsLogOutBoxTaskSchedulerService;
9150
+ }(ApiCmsServerBase));
9151
+ SmsLogOutBoxTaskSchedulerService.decorators = [
9152
+ { type: i0.Injectable }
9153
+ ];
9154
+
9102
9155
  var SmsApiSendResultModel = /** @class */ (function () {
9103
9156
  function SmsApiSendResultModel() {
9104
9157
  }
@@ -14820,6 +14873,8 @@
14820
14873
  exports.SmsLogOutBoxQueueModel = SmsLogOutBoxQueueModel;
14821
14874
  exports.SmsLogOutBoxQueueService = SmsLogOutBoxQueueService;
14822
14875
  exports.SmsLogOutBoxService = SmsLogOutBoxService;
14876
+ exports.SmsLogOutBoxTaskSchedulerModel = SmsLogOutBoxTaskSchedulerModel;
14877
+ exports.SmsLogOutBoxTaskSchedulerService = SmsLogOutBoxTaskSchedulerService;
14823
14878
  exports.SmsMainApiNumberModel = SmsMainApiNumberModel;
14824
14879
  exports.SmsMainApiNumberPermissionModel = SmsMainApiNumberPermissionModel;
14825
14880
  exports.SmsMainApiNumberPermissionService = SmsMainApiNumberPermissionService;