We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The follow code will throw an exception with
Error: Both 'stripeAccount' and 'stripe_account' were provided; please remove 'stripe_account', which is deprecated.
const opts = {stripe_account: "acct_...." } const invoice = await stripe.finalizeInvoice(invoiceId, opts) // here opts = {stripe_account: "acct_...", stripeAccount: "acct_..." } await stripe.paymentIntents.confirm(invoice.payment_intent.id, opts)
Cheers
The text was updated successfully, but these errors were encountered:
Thank you @sktt for reporting this. I agree, ideally opts shouldn't be mutated at all. We're investigating a fix.
opts
Sorry, something went wrong.
Hi @sktt the fix for this is out in 8.112.0, thank you again for reporting.
vcheung-stripe
Successfully merging a pull request may close this issue.
The follow code will throw an exception with
Cheers
The text was updated successfully, but these errors were encountered: