@traxionpay/cbsmiddleware 0.0.17 → 0.0.18
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/package.json
CHANGED
|
@@ -283,7 +283,7 @@ export class WelcomeBankService implements BankService {
|
|
|
283
283
|
|
|
284
284
|
AxiosErrorHelper.handleAxiosError(error);
|
|
285
285
|
}
|
|
286
|
-
this.logger.log(`Response Data WelcomeBank Link , ${responseData}`);
|
|
286
|
+
this.logger.log(`Response Data WelcomeBank Link , ${JSON.stringify(responseData)}`);
|
|
287
287
|
|
|
288
288
|
if (responseData.data.status != "00000") {
|
|
289
289
|
throw new HttpException({
|
|
@@ -413,7 +413,7 @@ export class WelcomeBankService implements BankService {
|
|
|
413
413
|
AxiosErrorHelper.handleAxiosError(error);
|
|
414
414
|
}
|
|
415
415
|
|
|
416
|
-
this.logger.log(`Response Data WelcomeBank Validate , ${responseData}`);
|
|
416
|
+
this.logger.log(`Response Data WelcomeBank Validate , ${JSON.stringify(responseData)}`);
|
|
417
417
|
|
|
418
418
|
if (responseData.data.status != "00000") {
|
|
419
419
|
throw new HttpException({
|
|
@@ -542,7 +542,7 @@ export class WelcomeBankService implements BankService {
|
|
|
542
542
|
AxiosErrorHelper.handleAxiosError(error);
|
|
543
543
|
}
|
|
544
544
|
|
|
545
|
-
this.logger.log(`Response Data WelcomeBank Balance Inquiry , ${responseData}`);
|
|
545
|
+
this.logger.log(`Response Data WelcomeBank Balance Inquiry , ${JSON.stringify(responseData)}`);
|
|
546
546
|
|
|
547
547
|
if (responseData.data.status != "00000") {
|
|
548
548
|
throw new HttpException({
|
|
@@ -703,7 +703,7 @@ export class WelcomeBankService implements BankService {
|
|
|
703
703
|
AxiosErrorHelper.handleAxiosError(error);
|
|
704
704
|
}
|
|
705
705
|
|
|
706
|
-
this.logger.log(`Response Data WelcomeBank Cashin , ${responseData}`);
|
|
706
|
+
this.logger.log(`Response Data WelcomeBank Cashin , ${JSON.stringify(responseData)}`);
|
|
707
707
|
|
|
708
708
|
if (responseData.data.status != "00000") {
|
|
709
709
|
throw new HttpException({
|
|
@@ -865,7 +865,7 @@ export class WelcomeBankService implements BankService {
|
|
|
865
865
|
AxiosErrorHelper.handleAxiosError(error);
|
|
866
866
|
}
|
|
867
867
|
|
|
868
|
-
this.logger.log(`Response Data WelcomeBank Deposit , ${responseData}`);
|
|
868
|
+
this.logger.log(`Response Data WelcomeBank Deposit , ${JSON.stringify(responseData)}`);
|
|
869
869
|
|
|
870
870
|
if (responseData.data.status != "00000") {
|
|
871
871
|
throw new HttpException({
|
|
@@ -1070,7 +1070,7 @@ export class WelcomeBankService implements BankService {
|
|
|
1070
1070
|
AxiosErrorHelper.handleAxiosError(error);
|
|
1071
1071
|
}
|
|
1072
1072
|
|
|
1073
|
-
this.logger.log(`Response Data WelcomeBank History , ${responseData}`);
|
|
1073
|
+
this.logger.log(`Response Data WelcomeBank History , ${JSON.stringify(responseData)}`);
|
|
1074
1074
|
|
|
1075
1075
|
if (responseData.data.status != "00000") {
|
|
1076
1076
|
throw new HttpException({
|