@stripe/stripe-js 2.1.5 → 2.1.6
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/payment-intents.d.ts +7 -0
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
|
@@ -1424,6 +1424,13 @@ export interface ConfirmPaymentData extends PaymentIntentConfirmParams {
|
|
|
1424
1424
|
billing_details?: PaymentMethodCreateParams.BillingDetails;
|
|
1425
1425
|
};
|
|
1426
1426
|
|
|
1427
|
+
/**
|
|
1428
|
+
* Optional `id` of an existing [PaymentMethod](https://stripe.com/docs/api/payment_methods).
|
|
1429
|
+
*
|
|
1430
|
+
* @docs https://stripe.com/docs/js/payment_intents/confirm_payment#confirm_payment_intent-options-confirmParams-payment_method
|
|
1431
|
+
*/
|
|
1432
|
+
payment_method?: string;
|
|
1433
|
+
|
|
1427
1434
|
/**
|
|
1428
1435
|
* Specifies which fields in the response should be expanded.
|
|
1429
1436
|
*/
|