You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,14 @@
3
3
## 19.2.0-beta.1 - 2025-10-03
4
4
* Contains bug fixes and improvements from [v19.1.0](https://github.com/stripe/stripe-node/blob/master/CHANGELOG.md#1910---2025-10-03).
5
5
6
+
## 19.1.0 - 2025-10-03
7
+
* [#2453](https://github.com/stripe/stripe-node/pull/2453) add missing fetchEvent type for UnknownEventNotification
8
+
9
+
- Add missing `fetchEvent()` declaration to the `Stripe.Events.UnknownEventNotification` interface
10
+
- Tweak `Stripe.Events.fetchRelatedObject` so that it's always defined and returns `null` if there's no `related_object`. This fixes the situation where the `UnknownEventNotification` says that `fetchRelatedObject()` is defined, but calling it throws an error.
11
+
* [#2447](https://github.com/stripe/stripe-node/pull/2447) Update param in deprecation docs link
12
+
* [#2444](https://github.com/stripe/stripe-node/pull/2444) Update CHANGELOG.md to point to right API version
13
+
6
14
## 19.1.0-beta.1 - 2025-09-30
7
15
This release changes the pinned API version to `2025-09-30.preview`. It is built on top of SDK version 19.0.0 which contains breaking changes. Please review the [changelog for 19.0.0](https://github.com/stripe/stripe-go/blob/master/CHANGELOG.md#1900---2025-09-30) if upgrading from older SDK versions.
* MB WAY is the most popular wallet in Portugal. After entering their phone number in your checkout, customers approve the payment directly in their MB WAY app. Check this [page](https://stripe.com/docs/payments/mb-way) for more details.
* MobilePay is a [single-use](https://stripe.com/docs/payments/payment-methods#usage) card wallet payment method used in Denmark and Finland. It allows customers to [authenticate and approve](https://stripe.com/docs/payments/payment-methods#customer-actions) payments using the MobilePay app. Check this [page](https://stripe.com/docs/payments/mobilepay) for more details.
178
183
*/
@@ -975,6 +980,26 @@ declare module 'stripe' {
975
980
}
976
981
}
977
982
983
+
interfaceMbWay{
984
+
/**
985
+
* Whether or not the payment method should be displayed.
986
+
*/
987
+
display_preference?: MbWay.DisplayPreference;
988
+
}
989
+
990
+
namespaceMbWay{
991
+
interfaceDisplayPreference{
992
+
/**
993
+
* The account's preference for whether or not to display this payment method.
994
+
*/
995
+
preference?: DisplayPreference.Preference;
996
+
}
997
+
998
+
namespaceDisplayPreference{
999
+
typePreference='none'|'off'|'on';
1000
+
}
1001
+
}
1002
+
978
1003
interfaceMobilepay{
979
1004
/**
980
1005
* Whether or not the payment method should be displayed.
* MB WAY is the most popular wallet in Portugal. After entering their phone number in your checkout, customers approve the payment directly in their MB WAY app. Check this [page](https://stripe.com/docs/payments/mb-way) for more details.
* MobilePay is a [single-use](https://stripe.com/docs/payments/payment-methods#usage) card wallet payment method used in Denmark and Finland. It allows customers to [authenticate and approve](https://stripe.com/docs/payments/payment-methods#customer-actions) payments using the MobilePay app. Check this [page](https://stripe.com/docs/payments/mobilepay) for more details.
1684
1714
*/
@@ -2476,6 +2506,26 @@ declare module 'stripe' {
2476
2506
}
2477
2507
}
2478
2508
2509
+
interfaceMbWay{
2510
+
/**
2511
+
* Whether or not the payment method should be displayed.
2512
+
*/
2513
+
display_preference?: MbWay.DisplayPreference;
2514
+
}
2515
+
2516
+
namespaceMbWay{
2517
+
interfaceDisplayPreference{
2518
+
/**
2519
+
* The account's preference for whether or not to display this payment method.
2520
+
*/
2521
+
preference?: DisplayPreference.Preference;
2522
+
}
2523
+
2524
+
namespaceDisplayPreference{
2525
+
typePreference='none'|'off'|'on';
2526
+
}
2527
+
}
2528
+
2479
2529
interfaceMobilepay{
2480
2530
/**
2481
2531
* Whether or not the payment method should be displayed.
Copy file name to clipboardExpand all lines: types/PayoutsResource.d.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -183,7 +183,7 @@ declare module 'stripe' {
183
183
): Promise<Stripe.Response<Stripe.Payout>>;
184
184
185
185
/**
186
-
* Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
186
+
* Reverses a payout by debiting the destination bank account. At this time, you can only reverse payouts for connected accounts to US and Canadian bank accounts. If the payout is manual and in the pending status, use /v1/payouts/:id/cancel instead.
187
187
*
188
188
* By requesting a reversal through /v1/payouts/:id/reverse, you confirm that the authorized signatory of the selected bank account authorizes the debit on the bank account and that no other authorization is required.
0 commit comments