ntk-cms-api 20.25.4 → 20.25.6

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.
@@ -571,7 +571,7 @@ var SendSmsStatusTypeEnum;
571
571
  (function (SendSmsStatusTypeEnum) {
572
572
  SendSmsStatusTypeEnum[SendSmsStatusTypeEnum["none"] = 0] = "none";
573
573
  SendSmsStatusTypeEnum[SendSmsStatusTypeEnum["Sending"] = 1] = "Sending";
574
- SendSmsStatusTypeEnum[SendSmsStatusTypeEnum["Sended"] = 2] = "Sended";
574
+ SendSmsStatusTypeEnum[SendSmsStatusTypeEnum["Sent"] = 2] = "Sent";
575
575
  SendSmsStatusTypeEnum[SendSmsStatusTypeEnum["SendParameterError"] = 3] = "SendParameterError";
576
576
  SendSmsStatusTypeEnum[SendSmsStatusTypeEnum["SendConnectionError"] = 4] = "SendConnectionError";
577
577
  SendSmsStatusTypeEnum[SendSmsStatusTypeEnum["SendServerApiError"] = 5] = "SendServerApiError";
@@ -581,7 +581,7 @@ var SendEmailStatusTypeEnum;
581
581
  (function (SendEmailStatusTypeEnum) {
582
582
  SendEmailStatusTypeEnum[SendEmailStatusTypeEnum["none"] = 0] = "none";
583
583
  SendEmailStatusTypeEnum[SendEmailStatusTypeEnum["Sending"] = 1] = "Sending";
584
- SendEmailStatusTypeEnum[SendEmailStatusTypeEnum["Sended"] = 2] = "Sended";
584
+ SendEmailStatusTypeEnum[SendEmailStatusTypeEnum["Sent"] = 2] = "Sent";
585
585
  SendEmailStatusTypeEnum[SendEmailStatusTypeEnum["SendParameterError"] = 3] = "SendParameterError";
586
586
  SendEmailStatusTypeEnum[SendEmailStatusTypeEnum["SendConnectionError"] = 4] = "SendConnectionError";
587
587
  SendEmailStatusTypeEnum[SendEmailStatusTypeEnum["SendServerApiError"] = 5] = "SendServerApiError";
@@ -923,7 +923,7 @@ var SendNotificationStatusTypeEnum;
923
923
  (function (SendNotificationStatusTypeEnum) {
924
924
  SendNotificationStatusTypeEnum[SendNotificationStatusTypeEnum["none"] = 0] = "none";
925
925
  SendNotificationStatusTypeEnum[SendNotificationStatusTypeEnum["Sending"] = 1] = "Sending";
926
- SendNotificationStatusTypeEnum[SendNotificationStatusTypeEnum["Sended"] = 2] = "Sended";
926
+ SendNotificationStatusTypeEnum[SendNotificationStatusTypeEnum["Sent"] = 2] = "Sent";
927
927
  SendNotificationStatusTypeEnum[SendNotificationStatusTypeEnum["SendParameterError"] = 3] = "SendParameterError";
928
928
  SendNotificationStatusTypeEnum[SendNotificationStatusTypeEnum["SendConnectionError"] = 4] = "SendConnectionError";
929
929
  SendNotificationStatusTypeEnum[SendNotificationStatusTypeEnum["SendServerApiError"] = 5] = "SendServerApiError";
@@ -4052,7 +4052,10 @@ class CoreModuleSiteCreditService extends ApiCmsServerBase {
4052
4052
  }
4053
4053
  ServiceGetCredit(LinkModuleId) {
4054
4054
  return this.http
4055
- .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetCredit/' + LinkModuleId, {
4055
+ .get(this.getBaseUrl() +
4056
+ this.getModuleControllerUrl() +
4057
+ '/GetCredit/' +
4058
+ LinkModuleId, {
4056
4059
  headers: this.getHeaders(),
4057
4060
  })
4058
4061
  .pipe(retry(this.configApiRetry), map((ret) => {
@@ -4126,7 +4129,10 @@ class CoreModuleSiteUserCreditService extends ApiCmsServerBase {
4126
4129
  }
4127
4130
  ServiceGetCredit(LinkModuleId) {
4128
4131
  return this.http
4129
- .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/GetCredit/' + LinkModuleId, {
4132
+ .get(this.getBaseUrl() +
4133
+ this.getModuleControllerUrl() +
4134
+ '/GetCredit/' +
4135
+ LinkModuleId, {
4130
4136
  headers: this.getHeaders(),
4131
4137
  })
4132
4138
  .pipe(retry(this.configApiRetry), map((ret) => {
@@ -7186,18 +7192,22 @@ class BankPaymentPrivateSiteConfigService extends ApiCmsServerBase {
7186
7192
  return this.errorExceptionResultCheck(ret);
7187
7193
  }));
7188
7194
  }
7189
- ServiceGoToBankPaymentWebSite(model) {
7190
- if (model == null) {
7191
- model = new BankPaymentInjectOnlineTransactionDtoModel();
7192
- }
7193
- return this.http
7194
- .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GoToBankPaymentWebSite', model, {
7195
- headers: this.getHeaders(),
7196
- })
7197
- .pipe(retry(this.configApiRetry), map((ret) => {
7198
- return this.errorExceptionResultCheck(ret);
7199
- }));
7200
- }
7195
+ // ServiceGoToBankPaymentWebSite(model: BankPaymentInjectOnlineTransactionDtoModel):
7196
+ // Observable<ErrorExceptionResult<BankPaymentInjectPaymentGotoBankStep2LandingSitePageModel>> {
7197
+ // if (model == null) {
7198
+ // model = new BankPaymentInjectOnlineTransactionDtoModel();
7199
+ // }
7200
+ // return this.http
7201
+ // .post(this.getBaseUrl() + this.getModuleControllerUrl() + '/GoToBankPaymentWebSite', model, {
7202
+ // headers: this.getHeaders(),
7203
+ // })
7204
+ // .pipe(
7205
+ // retry(this.configApiRetry),
7206
+ // map((ret: any) => {
7207
+ // return this.errorExceptionResultCheck(ret);
7208
+ // }),
7209
+ // );
7210
+ // }
7201
7211
  ServicePaymentGatewayList() {
7202
7212
  return this.http
7203
7213
  .get(this.getBaseUrl() + this.getModuleControllerUrl() + '/PaymentGatewayList', {