[BUG]: Missing implementation of 'retrieveCardNetworks' method in the package
Mage111 opened this issue · 3 comments
What happened?
trying to implement Co-badged cards compliance, and custom integration as described here:
https://docs.stripe.com/co-badged-cards-compliance?type=custom-integration#available-networks-for-card-numbers
the method exists on "https://js.stripe.com/v3"
but not exist on @stripe/stripe-js package
I'm using the last version "@stripe/stripe-js": "3.5.0",
but not exist on @stripe/stripe-js package
Can you explain more about what exactly isn't working, such as sharing a code snippet and the error you encounter? This module does not define any methods, so as you note the method exists in Stripe.js it would be usable when loaded via this module.
It's possible you mean that the types are missing this method, which you can temporarily work around with // @ts-ignore
.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
@Mage111 , Did you implement this logic?