ntk-cms-api 20.25.5 → 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.
- package/fesm2022/ntk-cms-api.mjs +24 -14
- package/fesm2022/ntk-cms-api.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +1 -1
package/fesm2022/ntk-cms-api.mjs
CHANGED
|
@@ -4052,7 +4052,10 @@ class CoreModuleSiteCreditService extends ApiCmsServerBase {
|
|
|
4052
4052
|
}
|
|
4053
4053
|
ServiceGetCredit(LinkModuleId) {
|
|
4054
4054
|
return this.http
|
|
4055
|
-
.get(this.getBaseUrl() +
|
|
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() +
|
|
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
|
-
|
|
7191
|
-
|
|
7192
|
-
|
|
7193
|
-
|
|
7194
|
-
|
|
7195
|
-
|
|
7196
|
-
|
|
7197
|
-
|
|
7198
|
-
|
|
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', {
|