ntk-cms-api 1.2.45 → 1.2.47
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 +24 -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/application/applicationSourceModel.js +1 -1
- package/esm2015/lib/models/entity/sms/smsLogOutBoxQueueModel.js +1 -1
- package/esm2015/lib/service/sms/smsLogOutBoxQueue.service.js +24 -1
- package/fesm2015/ntk-cms-api.js +22 -0
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/application/applicationAppModel.d.ts +5 -0
- package/lib/models/entity/application/applicationSourceModel.d.ts +5 -0
- package/lib/models/entity/sms/smsLogOutBoxQueueModel.d.ts +1 -0
- package/lib/service/sms/smsLogOutBoxQueue.service.d.ts +5 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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 = [
|