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.
@@ -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: