ntk-cms-api 1.0.340 → 1.0.345
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 +63 -46
- 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/dto/sms/_export.js +3 -0
- package/esm2015/lib/models/dto/sms/smsApiSendResultModel.js +3 -0
- package/esm2015/lib/models/dto/sms/smsApiSendTestDtoModel.js +3 -0
- package/esm2015/lib/models/entity/core-main/coreSiteModel.js +1 -1
- package/esm2015/lib/models/entity/sms/_export.js +4 -3
- package/esm2015/lib/models/entity/sms/smsMainApiPathAliasJsonModel.js +4 -0
- package/esm2015/lib/models/entity/sms/smsMainApiPathModel.js +1 -1
- package/esm2015/lib/models/entity/sms/smsMainApiPathPublicConfigModel.js +1 -1
- package/esm2015/lib/service/bank-payment/bankPaymentPublicConfig.service.js +2 -2
- package/esm2015/lib/service/sms/_export.js +2 -2
- package/esm2015/lib/service/sms/smsMainApiPath.service.js +28 -1
- package/esm2015/lib/service/sms/smsMainApiPathPublicConfig.service.js +12 -1
- package/esm2015/public-api.js +2 -1
- package/fesm2015/ntk-cms-api.js +47 -28
- package/fesm2015/ntk-cms-api.js.map +1 -1
- package/lib/models/dto/sms/_export.d.ts +2 -0
- package/lib/models/dto/sms/smsApiSendResultModel.d.ts +3 -0
- package/lib/models/dto/sms/smsApiSendTestDtoModel.d.ts +3 -0
- package/lib/models/entity/core-main/coreSiteModel.d.ts +2 -0
- package/lib/models/entity/sms/_export.d.ts +1 -2
- package/lib/models/entity/sms/smsMainApiPathAliasJsonModel.d.ts +5 -0
- package/lib/models/entity/sms/smsMainApiPathModel.d.ts +14 -0
- package/lib/models/entity/sms/smsMainApiPathPublicConfigModel.d.ts +4 -2
- package/lib/service/bank-payment/bankPaymentPublicConfig.service.d.ts +1 -1
- package/lib/service/sms/_export.d.ts +0 -1
- package/lib/service/sms/smsMainApiPath.service.d.ts +6 -0
- package/lib/service/sms/smsMainApiPathPublicConfig.service.d.ts +2 -1
- package/ntk-cms-api.metadata.json +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/esm2015/lib/models/entity/sms/smsMainApiPathPrivateSiteConfigAliasJsonModel.js +0 -4
- package/esm2015/lib/models/entity/sms/smsMainApiPathPrivateSiteConfigModel.js +0 -4
- package/esm2015/lib/service/sms/smsMainApiPathPrivateSiteConfig.service.js +0 -23
- package/lib/models/entity/sms/smsMainApiPathPrivateSiteConfigAliasJsonModel.d.ts +0 -5
- package/lib/models/entity/sms/smsMainApiPathPrivateSiteConfigModel.d.ts +0 -14
- package/lib/service/sms/smsMainApiPathPrivateSiteConfig.service.d.ts +0 -9
|
@@ -6292,7 +6292,7 @@
|
|
|
6292
6292
|
return _this.errorExceptionResultCheck(ret);
|
|
6293
6293
|
}));
|
|
6294
6294
|
};
|
|
6295
|
-
BankPaymentPublicConfigService.prototype.ServiceAutoAdd = function (
|
|
6295
|
+
BankPaymentPublicConfigService.prototype.ServiceAutoAdd = function () {
|
|
6296
6296
|
var _this = this;
|
|
6297
6297
|
return this.http
|
|
6298
6298
|
.get(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/AutoAdd/', {
|
|
@@ -6589,6 +6589,14 @@
|
|
|
6589
6589
|
return SmsMainApiPathModel;
|
|
6590
6590
|
}(BaseModuleEntity));
|
|
6591
6591
|
|
|
6592
|
+
var SmsMainApiPathAliasJsonModel = /** @class */ (function (_super) {
|
|
6593
|
+
__extends(SmsMainApiPathAliasJsonModel, _super);
|
|
6594
|
+
function SmsMainApiPathAliasJsonModel() {
|
|
6595
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
6596
|
+
}
|
|
6597
|
+
return SmsMainApiPathAliasJsonModel;
|
|
6598
|
+
}(SmsMainApiPathModel));
|
|
6599
|
+
|
|
6592
6600
|
var SmsMainApiPathPermissionModel = /** @class */ (function (_super) {
|
|
6593
6601
|
__extends(SmsMainApiPathPermissionModel, _super);
|
|
6594
6602
|
function SmsMainApiPathPermissionModel() {
|
|
@@ -6605,22 +6613,6 @@
|
|
|
6605
6613
|
return SmsMainApiPathPriceServiceModel;
|
|
6606
6614
|
}(BaseModuleEntity));
|
|
6607
6615
|
|
|
6608
|
-
var SmsMainApiPathPrivateSiteConfigModel = /** @class */ (function (_super) {
|
|
6609
|
-
__extends(SmsMainApiPathPrivateSiteConfigModel, _super);
|
|
6610
|
-
function SmsMainApiPathPrivateSiteConfigModel() {
|
|
6611
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
6612
|
-
}
|
|
6613
|
-
return SmsMainApiPathPrivateSiteConfigModel;
|
|
6614
|
-
}(BaseModuleEntity));
|
|
6615
|
-
|
|
6616
|
-
var SmsMainApiPathPrivateSiteConfigAliasJsonModel = /** @class */ (function (_super) {
|
|
6617
|
-
__extends(SmsMainApiPathPrivateSiteConfigAliasJsonModel, _super);
|
|
6618
|
-
function SmsMainApiPathPrivateSiteConfigAliasJsonModel() {
|
|
6619
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
6620
|
-
}
|
|
6621
|
-
return SmsMainApiPathPrivateSiteConfigAliasJsonModel;
|
|
6622
|
-
}(SmsMainApiPathPrivateSiteConfigModel));
|
|
6623
|
-
|
|
6624
6616
|
var SmsMainApiPathProcessFlowLogModel = /** @class */ (function (_super) {
|
|
6625
6617
|
__extends(SmsMainApiPathProcessFlowLogModel, _super);
|
|
6626
6618
|
function SmsMainApiPathProcessFlowLogModel() {
|
|
@@ -6845,6 +6837,12 @@
|
|
|
6845
6837
|
{ type: i0.Injectable }
|
|
6846
6838
|
];
|
|
6847
6839
|
|
|
6840
|
+
var SmsApiSendTestDtoModel = /** @class */ (function () {
|
|
6841
|
+
function SmsApiSendTestDtoModel() {
|
|
6842
|
+
}
|
|
6843
|
+
return SmsApiSendTestDtoModel;
|
|
6844
|
+
}());
|
|
6845
|
+
|
|
6848
6846
|
var SmsMainApiPathService = /** @class */ (function (_super) {
|
|
6849
6847
|
__extends(SmsMainApiPathService, _super);
|
|
6850
6848
|
function SmsMainApiPathService() {
|
|
@@ -6853,6 +6851,33 @@
|
|
|
6853
6851
|
SmsMainApiPathService.prototype.getModuleCotrolerUrl = function () {
|
|
6854
6852
|
return 'SmsMainApiPath';
|
|
6855
6853
|
};
|
|
6854
|
+
SmsMainApiPathService.prototype.ServiceGetOneWithJsonFormatter = function (id) {
|
|
6855
|
+
var _this = this;
|
|
6856
|
+
return this.http
|
|
6857
|
+
.get(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/GetOneWithJsonFormatter/' + id, {
|
|
6858
|
+
headers: this.getHeaders(),
|
|
6859
|
+
})
|
|
6860
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
6861
|
+
// catchError(this.handleError)
|
|
6862
|
+
operators.map(function (ret) {
|
|
6863
|
+
return _this.errorExceptionResultCheck(ret);
|
|
6864
|
+
}));
|
|
6865
|
+
};
|
|
6866
|
+
SmsMainApiPathService.prototype.ServiceTestSend = function (model) {
|
|
6867
|
+
var _this = this;
|
|
6868
|
+
if (model == null) {
|
|
6869
|
+
model = new SmsApiSendTestDtoModel();
|
|
6870
|
+
}
|
|
6871
|
+
return this.http
|
|
6872
|
+
.post(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/TestSend', model, {
|
|
6873
|
+
headers: this.getHeaders(),
|
|
6874
|
+
})
|
|
6875
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
6876
|
+
// catchError(this.handleError)
|
|
6877
|
+
operators.map(function (ret) {
|
|
6878
|
+
return _this.errorExceptionResultCheck(ret);
|
|
6879
|
+
}));
|
|
6880
|
+
};
|
|
6856
6881
|
return SmsMainApiPathService;
|
|
6857
6882
|
}(ApiCmsServerBase));
|
|
6858
6883
|
SmsMainApiPathService.decorators = [
|
|
@@ -6901,32 +6926,6 @@
|
|
|
6901
6926
|
{ type: i0.Injectable }
|
|
6902
6927
|
];
|
|
6903
6928
|
|
|
6904
|
-
var SmsMainApiPathPrivateSiteConfigService = /** @class */ (function (_super) {
|
|
6905
|
-
__extends(SmsMainApiPathPrivateSiteConfigService, _super);
|
|
6906
|
-
function SmsMainApiPathPrivateSiteConfigService() {
|
|
6907
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
6908
|
-
}
|
|
6909
|
-
SmsMainApiPathPrivateSiteConfigService.prototype.getModuleCotrolerUrl = function () {
|
|
6910
|
-
return 'SmsMainApiPathPrivateSiteConfig';
|
|
6911
|
-
};
|
|
6912
|
-
SmsMainApiPathPrivateSiteConfigService.prototype.ServiceGetOneWithJsonFormatter = function (id) {
|
|
6913
|
-
var _this = this;
|
|
6914
|
-
return this.http
|
|
6915
|
-
.get(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/GetOneWithJsonFormatter/' + id, {
|
|
6916
|
-
headers: this.getHeaders(),
|
|
6917
|
-
})
|
|
6918
|
-
.pipe(operators.retry(this.configApiRetry),
|
|
6919
|
-
// catchError(this.handleError)
|
|
6920
|
-
operators.map(function (ret) {
|
|
6921
|
-
return _this.errorExceptionResultCheck(ret);
|
|
6922
|
-
}));
|
|
6923
|
-
};
|
|
6924
|
-
return SmsMainApiPathPrivateSiteConfigService;
|
|
6925
|
-
}(ApiCmsServerBase));
|
|
6926
|
-
SmsMainApiPathPrivateSiteConfigService.decorators = [
|
|
6927
|
-
{ type: i0.Injectable }
|
|
6928
|
-
];
|
|
6929
|
-
|
|
6930
6929
|
var SmsMainApiPathProcessFlowService = /** @class */ (function (_super) {
|
|
6931
6930
|
__extends(SmsMainApiPathProcessFlowService, _super);
|
|
6932
6931
|
function SmsMainApiPathProcessFlowService() {
|
|
@@ -6975,6 +6974,18 @@
|
|
|
6975
6974
|
return _this.errorExceptionResultCheck(ret);
|
|
6976
6975
|
}));
|
|
6977
6976
|
};
|
|
6977
|
+
SmsMainApiPathPublicConfigService.prototype.ServiceAutoAdd = function () {
|
|
6978
|
+
var _this = this;
|
|
6979
|
+
return this.http
|
|
6980
|
+
.get(this.getBaseUrl() + this.getModuleCotrolerUrl() + '/AutoAdd/', {
|
|
6981
|
+
headers: this.getHeaders(),
|
|
6982
|
+
})
|
|
6983
|
+
.pipe(operators.retry(this.configApiRetry),
|
|
6984
|
+
// catchError(this.handleError)
|
|
6985
|
+
operators.map(function (ret) {
|
|
6986
|
+
return _this.errorExceptionResultCheck(ret);
|
|
6987
|
+
}));
|
|
6988
|
+
};
|
|
6978
6989
|
return SmsMainApiPathPublicConfigService;
|
|
6979
6990
|
}(ApiCmsServerBase));
|
|
6980
6991
|
SmsMainApiPathPublicConfigService.decorators = [
|
|
@@ -7009,6 +7020,12 @@
|
|
|
7009
7020
|
{ type: i0.Injectable }
|
|
7010
7021
|
];
|
|
7011
7022
|
|
|
7023
|
+
var SmsApiSendResultModel = /** @class */ (function () {
|
|
7024
|
+
function SmsApiSendResultModel() {
|
|
7025
|
+
}
|
|
7026
|
+
return SmsApiSendResultModel;
|
|
7027
|
+
}());
|
|
7028
|
+
|
|
7012
7029
|
var ApplicationConfigurationService = /** @class */ (function (_super) {
|
|
7013
7030
|
__extends(ApplicationConfigurationService, _super);
|
|
7014
7031
|
function ApplicationConfigurationService() {
|
|
@@ -11409,6 +11426,8 @@
|
|
|
11409
11426
|
exports.SetLoadingState = SetLoadingState;
|
|
11410
11427
|
exports.SetTokenInfoState = SetTokenInfoState;
|
|
11411
11428
|
exports.ShareInfoModel = ShareInfoModel;
|
|
11429
|
+
exports.SmsApiSendResultModel = SmsApiSendResultModel;
|
|
11430
|
+
exports.SmsApiSendTestDtoModel = SmsApiSendTestDtoModel;
|
|
11412
11431
|
exports.SmsConfigurationService = SmsConfigurationService;
|
|
11413
11432
|
exports.SmsEnumService = SmsEnumService;
|
|
11414
11433
|
exports.SmsLogInBoxLockModel = SmsLogInBoxLockModel;
|
|
@@ -11422,6 +11441,7 @@
|
|
|
11422
11441
|
exports.SmsLogOutBoxDetailService = SmsLogOutBoxDetailService;
|
|
11423
11442
|
exports.SmsLogOutBoxModel = SmsLogOutBoxModel;
|
|
11424
11443
|
exports.SmsLogOutBoxService = SmsLogOutBoxService;
|
|
11444
|
+
exports.SmsMainApiPathAliasJsonModel = SmsMainApiPathAliasJsonModel;
|
|
11425
11445
|
exports.SmsMainApiPathAndCustomerNumberModel = SmsMainApiPathAndCustomerNumberModel;
|
|
11426
11446
|
exports.SmsMainApiPathCompanyModel = SmsMainApiPathCompanyModel;
|
|
11427
11447
|
exports.SmsMainApiPathCompanyService = SmsMainApiPathCompanyService;
|
|
@@ -11430,9 +11450,6 @@
|
|
|
11430
11450
|
exports.SmsMainApiPathPermissionService = SmsMainApiPathPermissionService;
|
|
11431
11451
|
exports.SmsMainApiPathPriceServiceModel = SmsMainApiPathPriceServiceModel;
|
|
11432
11452
|
exports.SmsMainApiPathPriceServiceService = SmsMainApiPathPriceServiceService;
|
|
11433
|
-
exports.SmsMainApiPathPrivateSiteConfigAliasJsonModel = SmsMainApiPathPrivateSiteConfigAliasJsonModel;
|
|
11434
|
-
exports.SmsMainApiPathPrivateSiteConfigModel = SmsMainApiPathPrivateSiteConfigModel;
|
|
11435
|
-
exports.SmsMainApiPathPrivateSiteConfigService = SmsMainApiPathPrivateSiteConfigService;
|
|
11436
11453
|
exports.SmsMainApiPathProcessFlowLogModel = SmsMainApiPathProcessFlowLogModel;
|
|
11437
11454
|
exports.SmsMainApiPathProcessFlowLogService = SmsMainApiPathProcessFlowLogService;
|
|
11438
11455
|
exports.SmsMainApiPathProcessFlowModel = SmsMainApiPathProcessFlowModel;
|