From 45e6bfb39cf44d9adf89a0e9170e9d67cf18f4e1 Mon Sep 17 00:00:00 2001 From: itsonlycode Date: Wed, 10 Apr 2019 11:42:41 +0200 Subject: [PATCH] Adding StripeOption "betas" which allows use of Stripe's Checkout Beta Stripe has made a new checkout api that can be used if you include betas: ['checkout_beta_4'] in StripeOptions. https://stripe.com/docs/payments/checkout --- types/stripe-v3/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/stripe-v3/index.d.ts b/types/stripe-v3/index.d.ts index b23b384d45..24a4e75987 100644 --- a/types/stripe-v3/index.d.ts +++ b/types/stripe-v3/index.d.ts @@ -31,6 +31,7 @@ declare namespace stripe { interface StripeOptions { stripeAccount?: string; + betas?: string[]; } interface TokenOptions {