@stripe/stripe-js 1.54.0 → 1.54.1
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/dist/pure.esm.js +1 -1
- package/dist/pure.js +1 -1
- package/dist/stripe.esm.js +1 -1
- package/dist/stripe.js +1 -1
- package/package.json +1 -1
- package/types/stripe-js/elements-group.d.ts +6 -6
package/dist/pure.esm.js
CHANGED
package/dist/pure.js
CHANGED
package/dist/stripe.esm.js
CHANGED
package/dist/stripe.js
CHANGED
package/package.json
CHANGED
|
@@ -700,14 +700,14 @@ export interface StripeElementsOptionsMode extends BaseStripeElementsOptions {
|
|
|
700
700
|
*
|
|
701
701
|
* @docs https://stripe.com/docs/api/payment_intents/create#create_payment_intent-setup_future_usage
|
|
702
702
|
*/
|
|
703
|
-
setupFutureUsage?: 'off_session' | 'on_session';
|
|
703
|
+
setupFutureUsage?: 'off_session' | 'on_session' | null;
|
|
704
704
|
|
|
705
705
|
/**
|
|
706
706
|
* Indicates that you intend to make future payments with this PaymentIntent’s payment method.
|
|
707
707
|
*
|
|
708
708
|
* @docs https://stripe.com/docs/api/payment_intents/create#create_payment_intent-setup_future_usage
|
|
709
709
|
*/
|
|
710
|
-
setup_future_usage?: 'off_session' | 'on_session';
|
|
710
|
+
setup_future_usage?: 'off_session' | 'on_session' | null;
|
|
711
711
|
|
|
712
712
|
/**
|
|
713
713
|
* Controls when the funds will be captured from the customer’s account.
|
|
@@ -794,16 +794,16 @@ export interface StripeElementsUpdateOptions {
|
|
|
794
794
|
/**
|
|
795
795
|
* Indicates that you intend to make future payments with this PaymentIntent’s payment method.
|
|
796
796
|
*
|
|
797
|
-
* @docs https://stripe.com/docs/api/payment_intents/
|
|
797
|
+
* @docs https://stripe.com/docs/api/payment_intents/update#update_payment_intent-setup_future_usage
|
|
798
798
|
*/
|
|
799
|
-
setupFutureUsage?: 'off_session' | 'on_session';
|
|
799
|
+
setupFutureUsage?: 'off_session' | 'on_session' | null;
|
|
800
800
|
|
|
801
801
|
/**
|
|
802
802
|
* Indicates that you intend to make future payments with this PaymentIntent’s payment method.
|
|
803
803
|
*
|
|
804
|
-
* @docs https://stripe.com/docs/api/payment_intents/
|
|
804
|
+
* @docs https://stripe.com/docs/api/payment_intents/update#update_payment_intent-setup_future_usage
|
|
805
805
|
*/
|
|
806
|
-
setup_future_usage?: 'off_session' | 'on_session';
|
|
806
|
+
setup_future_usage?: 'off_session' | 'on_session' | null;
|
|
807
807
|
|
|
808
808
|
/**
|
|
809
809
|
* Controls when the funds will be captured from the customer’s account.
|