vk-payments 0.2.18 → 0.2.19
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/vk-payments.umd.js +2 -0
- package/bundles/vk-payments.umd.js.map +1 -1
- package/bundles/vk-payments.umd.min.js +1 -1
- package/bundles/vk-payments.umd.min.js.map +1 -1
- package/esm2015/lib/modo/components/modo/modo.component.js +3 -1
- package/esm5/lib/modo/components/modo/modo.component.js +3 -1
- package/fesm2015/vk-payments.js +2 -0
- package/fesm2015/vk-payments.js.map +1 -1
- package/fesm5/vk-payments.js +2 -0
- package/fesm5/vk-payments.js.map +1 -1
- package/package.json +1 -1
|
@@ -3583,10 +3583,12 @@
|
|
|
3583
3583
|
case 'native-app':
|
|
3584
3584
|
// Llama a la función nativa para abrir en un navegador externo
|
|
3585
3585
|
this.openOnNativeNavigator(initialData.deeplink);
|
|
3586
|
+
this.statusPay.emit({ success: true, paymentId: initialData.checkoutId });
|
|
3586
3587
|
break;
|
|
3587
3588
|
case 'mobile-browser':
|
|
3588
3589
|
// Abre el deeplink en una nueva pestaña
|
|
3589
3590
|
window.open(initialData.deeplink, '_blank');
|
|
3591
|
+
this.statusPay.emit({ success: true, paymentId: initialData.checkoutId });
|
|
3590
3592
|
break;
|
|
3591
3593
|
case 'desktop':
|
|
3592
3594
|
default:
|