stripe 8.203.0 → 8.204.0
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/CHANGELOG.md +6 -0
- package/VERSION +1 -1
- package/package.json +1 -1
- package/types/2020-08-27/Checkout/Sessions.d.ts +2 -4
- package/types/2020-08-27/ExternalAccounts.d.ts +6 -0
- package/types/2020-08-27/PaymentIntents.d.ts +953 -85
- package/types/2020-08-27/Subscriptions.d.ts +6 -0
- package/types/2020-08-27/Terminal/Readers.d.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 8.204.0 - 2022-02-23
|
|
4
|
+
* [#1354](https://github.com/stripe/stripe-node/pull/1354) API Updates
|
|
5
|
+
* Add support for `setup_future_usage` on `PaymentIntentCreateParams.payment_method_options.acss_debit`, `PaymentIntentCreateParams.payment_method_options.afterpay_clearpay`, `PaymentIntentCreateParams.payment_method_options.alipay`, `PaymentIntentCreateParams.payment_method_options.au_becs_debit`, `PaymentIntentCreateParams.payment_method_options.bacs_debit`, `PaymentIntentCreateParams.payment_method_options.bancontact`, `PaymentIntentCreateParams.payment_method_options.boleto`, `PaymentIntentCreateParams.payment_method_options.eps`, `PaymentIntentCreateParams.payment_method_options.fpx`, `PaymentIntentCreateParams.payment_method_options.giropay`, `PaymentIntentCreateParams.payment_method_options.grabpay`, `PaymentIntentCreateParams.payment_method_options.ideal`, `PaymentIntentCreateParams.payment_method_options.klarna`, `PaymentIntentCreateParams.payment_method_options.oxxo`, `PaymentIntentCreateParams.payment_method_options.p24`, `PaymentIntentCreateParams.payment_method_options.sepa_debit`, `PaymentIntentCreateParams.payment_method_options.sofort`, `PaymentIntentCreateParams.payment_method_options.wechat_pay`, `PaymentIntentUpdateParams.payment_method_options.acss_debit`, `PaymentIntentUpdateParams.payment_method_options.afterpay_clearpay`, `PaymentIntentUpdateParams.payment_method_options.alipay`, `PaymentIntentUpdateParams.payment_method_options.au_becs_debit`, `PaymentIntentUpdateParams.payment_method_options.bacs_debit`, `PaymentIntentUpdateParams.payment_method_options.bancontact`, `PaymentIntentUpdateParams.payment_method_options.boleto`, `PaymentIntentUpdateParams.payment_method_options.eps`, `PaymentIntentUpdateParams.payment_method_options.fpx`, `PaymentIntentUpdateParams.payment_method_options.giropay`, `PaymentIntentUpdateParams.payment_method_options.grabpay`, `PaymentIntentUpdateParams.payment_method_options.ideal`, `PaymentIntentUpdateParams.payment_method_options.klarna`, `PaymentIntentUpdateParams.payment_method_options.oxxo`, `PaymentIntentUpdateParams.payment_method_options.p24`, `PaymentIntentUpdateParams.payment_method_options.sepa_debit`, `PaymentIntentUpdateParams.payment_method_options.sofort`, `PaymentIntentUpdateParams.payment_method_options.wechat_pay`, `PaymentIntentConfirmParams.payment_method_options.acss_debit`, `PaymentIntentConfirmParams.payment_method_options.afterpay_clearpay`, `PaymentIntentConfirmParams.payment_method_options.alipay`, `PaymentIntentConfirmParams.payment_method_options.au_becs_debit`, `PaymentIntentConfirmParams.payment_method_options.bacs_debit`, `PaymentIntentConfirmParams.payment_method_options.bancontact`, `PaymentIntentConfirmParams.payment_method_options.boleto`, `PaymentIntentConfirmParams.payment_method_options.eps`, `PaymentIntentConfirmParams.payment_method_options.fpx`, `PaymentIntentConfirmParams.payment_method_options.giropay`, `PaymentIntentConfirmParams.payment_method_options.grabpay`, `PaymentIntentConfirmParams.payment_method_options.ideal`, `PaymentIntentConfirmParams.payment_method_options.klarna`, `PaymentIntentConfirmParams.payment_method_options.oxxo`, `PaymentIntentConfirmParams.payment_method_options.p24`, `PaymentIntentConfirmParams.payment_method_options.sepa_debit`, `PaymentIntentConfirmParams.payment_method_options.sofort`, `PaymentIntentConfirmParams.payment_method_options.wechat_pay`, `PaymentIntent.payment_method_options.acss_debit`, `PaymentIntent.payment_method_options.afterpay_clearpay`, `PaymentIntent.payment_method_options.alipay`, `PaymentIntent.payment_method_options.au_becs_debit`, `PaymentIntent.payment_method_options.bacs_debit`, `PaymentIntent.payment_method_options.bancontact`, `PaymentIntent.payment_method_options.boleto`, `PaymentIntent.payment_method_options.eps`, `PaymentIntent.payment_method_options.fpx`, `PaymentIntent.payment_method_options.giropay`, `PaymentIntent.payment_method_options.grabpay`, `PaymentIntent.payment_method_options.ideal`, `PaymentIntent.payment_method_options.klarna`, `PaymentIntent.payment_method_options.oxxo`, `PaymentIntent.payment_method_options.p24`, `PaymentIntent.payment_method_options.sepa_debit`, `PaymentIntent.payment_method_options.sofort`, and `PaymentIntent.payment_method_options.wechat_pay`
|
|
6
|
+
* Add support for new values `bbpos_wisepad3` and `stripe_m2` on enums `TerminalReaderListParams.device_type` and `Terminal.Reader.device_type`
|
|
7
|
+
* Add support for `object` on `ExternalAccountListParams` (fixes #1351)
|
|
8
|
+
|
|
3
9
|
## 8.203.0 - 2022-02-15
|
|
4
10
|
* [#1350](https://github.com/stripe/stripe-node/pull/1350) API Updates
|
|
5
11
|
* Add support for `verify_microdeposits` method on resources `PaymentIntent` and `SetupIntent`
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
8.
|
|
1
|
+
8.204.0
|
package/package.json
CHANGED
|
@@ -1172,9 +1172,7 @@ declare module 'stripe' {
|
|
|
1172
1172
|
currency?: string;
|
|
1173
1173
|
|
|
1174
1174
|
/**
|
|
1175
|
-
* The description for the line item, to be displayed on the Checkout page.
|
|
1176
|
-
*
|
|
1177
|
-
* If using `price` or `price_data`, will default to the name of the associated product.
|
|
1175
|
+
* [Deprecated] The description for the line item, to be displayed on the Checkout page.
|
|
1178
1176
|
*/
|
|
1179
1177
|
description?: string;
|
|
1180
1178
|
|
|
@@ -1514,7 +1512,7 @@ declare module 'stripe' {
|
|
|
1514
1512
|
oxxo?: PaymentMethodOptions.Oxxo;
|
|
1515
1513
|
|
|
1516
1514
|
/**
|
|
1517
|
-
* contains details about the
|
|
1515
|
+
* contains details about the WeChat Pay payment method options.
|
|
1518
1516
|
*/
|
|
1519
1517
|
wechat_pay?: PaymentMethodOptions.WechatPay;
|
|
1520
1518
|
}
|
|
@@ -121,6 +121,12 @@ declare module 'stripe' {
|
|
|
121
121
|
* Specifies which fields in the response should be expanded.
|
|
122
122
|
*/
|
|
123
123
|
expand?: Array<string>;
|
|
124
|
+
|
|
125
|
+
object?: ExternalAccountListParams.Object;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
namespace ExternalAccountListParams {
|
|
129
|
+
type Object = 'bank_account' | 'card';
|
|
124
130
|
}
|
|
125
131
|
|
|
126
132
|
interface ExternalAccountDeleteParams {}
|