ntk-cms-api 1.2.53 → 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.
- package/bundles/ntk-cms-api.umd.js +55 -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/estate/estatePropertyModel.js +1 -1
- package/esm2015/lib/models/entity/sms/_export.js +2 -1
- package/esm2015/lib/models/entity/sms/smsLogOutBoxTaskSchedulerModel.js +4 -0
- package/esm2015/lib/models/enums/_export.js +2 -1
- package/esm2015/lib/service/sms/_export.js +2 -1
- package/esm2015/lib/service/sms/smsLogOutBoxTaskScheduler.service.js +34 -0
- package/fesm2015/ntk-cms-api.js +43 -1
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/entity/estate/estatePropertyModel.d.ts +2 -0
- package/lib/models/entity/sms/_export.d.ts +1 -0
- package/lib/models/entity/sms/smsLogOutBoxTaskSchedulerModel.d.ts +15 -0
- package/lib/models/enums/_export.d.ts +1 -0
- package/lib/service/sms/_export.d.ts +1 -0
- package/lib/service/sms/smsLogOutBoxTaskScheduler.service.d.ts +10 -0
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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;
|