react-native-bootpay-api 4.1.1 → 4.1.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-bootpay-api",
3
- "version": "4.1.1",
3
+ "version": "4.1.4",
4
4
  "description": "React Native를 위한 bootpay 라이브러리 입니다.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -87,7 +87,7 @@
87
87
  "selenium-webdriver": "4.0.0-alpha.7",
88
88
  "semantic-release": "15.13.24",
89
89
  "typescript": "^4.0.0",
90
- "react-native-webview-bootpay": "^11.18.15",
90
+ "react-native-webview-bootpay": "^11.18.16",
91
91
  "react-native-device-info": "^8.7.0",
92
92
  "react-native-sensitive-info": "^5.5.8",
93
93
  "react-native-base64": "^0.2.1",
@@ -11,7 +11,7 @@ export class BootpayWebView extends Component {
11
11
 
12
12
  webView = useRef<WebView>(null);
13
13
 
14
- _VERSION = "4.1.1";
14
+ _VERSION = "4.1.2";
15
15
  _DEBUG = false;
16
16
  _payload = {};
17
17
 
@@ -260,7 +260,7 @@ export class BootpayWebView extends Component {
260
260
  }
261
261
  break;
262
262
  case 'issued':
263
- if(this.props.onIssued != undefined) this.props.onIssued(data.data);
263
+ if(this.props.onIssued != undefined) this.props.onIssued(data);
264
264
  if(show_success == false) {
265
265
  this.closeDismiss();
266
266
  }
@@ -269,7 +269,7 @@ export class BootpayWebView extends Component {
269
269
  if(this.props.onConfirm != undefined) this.props.onConfirm(data);
270
270
  break;
271
271
  case 'done':
272
- if(this.props.onDone != undefined) this.props.onDone(data.data);
272
+ if(this.props.onDone != undefined) this.props.onDone(data);
273
273
  if(show_success == false) {
274
274
  this.closeDismiss();
275
275
  }