ntk-cms-api 1.2.44 → 1.2.46
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/_export.js +2 -1
- package/esm2015/lib/models/entity/sms/smsLogOutBoxQueueModel.js +4 -0
- package/esm2015/lib/service/sms/_export.js +2 -1
- package/esm2015/lib/service/sms/smsLogOutBoxQueue.service.js +11 -0
- package/fesm2015/ntk-cms-api.js +13 -1
- 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/_export.d.ts +1 -0
- package/lib/models/entity/sms/smsLogOutBoxQueueModel.d.ts +18 -0
- package/lib/service/sms/_export.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
|
@@ -8577,6 +8577,14 @@
|
|
|
8577
8577
|
return SmsMainMessageContentModel;
|
|
8578
8578
|
}(BaseModuleEntity));
|
|
8579
8579
|
|
|
8580
|
+
var SmsLogOutBoxQueueModel = /** @class */ (function (_super) {
|
|
8581
|
+
__extends(SmsLogOutBoxQueueModel, _super);
|
|
8582
|
+
function SmsLogOutBoxQueueModel() {
|
|
8583
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
8584
|
+
}
|
|
8585
|
+
return SmsLogOutBoxQueueModel;
|
|
8586
|
+
}(BaseModuleEntity));
|
|
8587
|
+
|
|
8580
8588
|
var SmsConfigurationService = /** @class */ (function (_super) {
|
|
8581
8589
|
__extends(SmsConfigurationService, _super);
|
|
8582
8590
|
function SmsConfigurationService() {
|
|
@@ -9055,6 +9063,20 @@
|
|
|
9055
9063
|
{ type: i0.Injectable }
|
|
9056
9064
|
];
|
|
9057
9065
|
|
|
9066
|
+
var SmsLogOutBoxQueueService = /** @class */ (function (_super) {
|
|
9067
|
+
__extends(SmsLogOutBoxQueueService, _super);
|
|
9068
|
+
function SmsLogOutBoxQueueService() {
|
|
9069
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
9070
|
+
}
|
|
9071
|
+
SmsLogOutBoxQueueService.prototype.getModuleControllerUrl = function () {
|
|
9072
|
+
return 'SmsLogOutBoxQueue';
|
|
9073
|
+
};
|
|
9074
|
+
return SmsLogOutBoxQueueService;
|
|
9075
|
+
}(ApiCmsServerBase));
|
|
9076
|
+
SmsLogOutBoxQueueService.decorators = [
|
|
9077
|
+
{ type: i0.Injectable }
|
|
9078
|
+
];
|
|
9079
|
+
|
|
9058
9080
|
var SmsApiSendResultModel = /** @class */ (function () {
|
|
9059
9081
|
function SmsApiSendResultModel() {
|
|
9060
9082
|
}
|
|
@@ -14774,6 +14796,8 @@
|
|
|
14774
14796
|
exports.SmsLogOutBoxDetailModel = SmsLogOutBoxDetailModel;
|
|
14775
14797
|
exports.SmsLogOutBoxDetailService = SmsLogOutBoxDetailService;
|
|
14776
14798
|
exports.SmsLogOutBoxModel = SmsLogOutBoxModel;
|
|
14799
|
+
exports.SmsLogOutBoxQueueModel = SmsLogOutBoxQueueModel;
|
|
14800
|
+
exports.SmsLogOutBoxQueueService = SmsLogOutBoxQueueService;
|
|
14777
14801
|
exports.SmsLogOutBoxService = SmsLogOutBoxService;
|
|
14778
14802
|
exports.SmsMainApiNumberModel = SmsMainApiNumberModel;
|
|
14779
14803
|
exports.SmsMainApiNumberPermissionModel = SmsMainApiNumberPermissionModel;
|