ntk-cms-api 1.2.46 → 1.2.48

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.
@@ -9071,6 +9071,30 @@
9071
9071
  SmsLogOutBoxQueueService.prototype.getModuleControllerUrl = function () {
9072
9072
  return 'SmsLogOutBoxQueue';
9073
9073
  };
9074
+ SmsLogOutBoxQueueService.prototype.ServiceGetAllReadyToSend = function (model) {
9075
+ var _this = this;
9076
+ return this.http
9077
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllReadyToSend/', model, {
9078
+ headers: this.getHeaders(),
9079
+ })
9080
+ .pipe(operators.retry(this.configApiRetry),
9081
+ // catchError(this.handleError)
9082
+ operators.map(function (ret) {
9083
+ return _this.errorExceptionResultCheck(ret);
9084
+ }));
9085
+ };
9086
+ SmsLogOutBoxQueueService.prototype.ServiceGetAllSending = function (model) {
9087
+ var _this = this;
9088
+ return this.http
9089
+ .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetAllSending/', model, {
9090
+ headers: this.getHeaders(),
9091
+ })
9092
+ .pipe(operators.retry(this.configApiRetry),
9093
+ // catchError(this.handleError)
9094
+ operators.map(function (ret) {
9095
+ return _this.errorExceptionResultCheck(ret);
9096
+ }));
9097
+ };
9074
9098
  return SmsLogOutBoxQueueService;
9075
9099
  }(ApiCmsServerBase));
9076
9100
  SmsLogOutBoxQueueService.decorators = [