stripe 20.5.0-alpha.4 → 21.0.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.
Files changed (666) hide show
  1. package/CHANGELOG.md +75 -2209
  2. package/OPENAPI_VERSION +1 -1
  3. package/README.md +2 -3
  4. package/VERSION +1 -1
  5. package/cjs/Decimal.js +854 -0
  6. package/cjs/Error.js +89 -130
  7. package/cjs/RequestSender.js +10 -19
  8. package/cjs/StripeResource.js +20 -8
  9. package/cjs/V2Coercion.js +109 -0
  10. package/cjs/Webhooks.js +11 -2
  11. package/cjs/apiVersion.js +3 -2
  12. package/cjs/net/FetchHttpClient.js +4 -1
  13. package/cjs/resources/Accounts.js +0 -4
  14. package/cjs/resources/Checkout/Sessions.js +508 -5
  15. package/cjs/resources/Climate/Orders.js +36 -1
  16. package/cjs/resources/Climate/Products.js +16 -0
  17. package/cjs/resources/CreditNotes.js +226 -4
  18. package/cjs/resources/Customers.js +468 -2
  19. package/cjs/resources/FinancialConnections/Accounts.js +0 -5
  20. package/cjs/resources/InvoiceItems.js +106 -1
  21. package/cjs/resources/Invoices.js +712 -8
  22. package/cjs/resources/Issuing/Authorizations.js +818 -0
  23. package/cjs/resources/Issuing/Transactions.js +254 -0
  24. package/cjs/resources/Mandates.js +0 -5
  25. package/cjs/resources/PaymentAttemptRecords.js +0 -24
  26. package/cjs/resources/PaymentIntents.js +0 -12
  27. package/cjs/resources/PaymentLinks.js +394 -1
  28. package/cjs/resources/PaymentMethods.js +0 -4
  29. package/cjs/resources/Plans.js +127 -3
  30. package/cjs/resources/Prices.js +328 -3
  31. package/cjs/resources/Products.js +34 -1
  32. package/cjs/resources/Quotes.js +792 -37
  33. package/cjs/resources/SubscriptionItems.js +353 -1
  34. package/cjs/resources/SubscriptionSchedules.js +74 -4
  35. package/cjs/resources/Subscriptions.js +846 -9
  36. package/cjs/resources/TestHelpers/Issuing/Authorizations.js +1257 -0
  37. package/cjs/resources/TestHelpers/Issuing/Transactions.js +344 -0
  38. package/cjs/resources/Treasury/TransactionEntries.js +376 -0
  39. package/cjs/resources/Treasury/Transactions.js +430 -0
  40. package/cjs/resources/V2/Core/AccountTokens.js +23 -1
  41. package/cjs/resources/V2/Core/Accounts/PersonTokens.js +9 -0
  42. package/cjs/resources/V2/Core/Accounts/Persons.js +62 -0
  43. package/cjs/resources/V2/Core/Accounts.js +153 -3
  44. package/cjs/resources/V2/Core/Events.js +9 -3
  45. package/cjs/resources.js +12 -200
  46. package/cjs/stripe.cjs.node.js +2 -0
  47. package/cjs/stripe.cjs.worker.js +2 -0
  48. package/cjs/stripe.core.js +19 -6
  49. package/cjs/utils.js +3 -4
  50. package/esm/Decimal.js +850 -0
  51. package/esm/Error.js +80 -113
  52. package/esm/RequestSender.js +11 -20
  53. package/esm/StripeResource.js +20 -8
  54. package/esm/V2Coercion.js +104 -0
  55. package/esm/Webhooks.js +11 -2
  56. package/esm/apiVersion.js +2 -1
  57. package/esm/net/FetchHttpClient.js +4 -1
  58. package/esm/resources/Accounts.js +0 -4
  59. package/esm/resources/Checkout/Sessions.js +508 -5
  60. package/esm/resources/Climate/Orders.js +36 -1
  61. package/esm/resources/Climate/Products.js +16 -0
  62. package/esm/resources/CreditNotes.js +226 -4
  63. package/esm/resources/Customers.js +468 -2
  64. package/esm/resources/FinancialConnections/Accounts.js +0 -5
  65. package/esm/resources/InvoiceItems.js +106 -1
  66. package/esm/resources/Invoices.js +712 -8
  67. package/esm/resources/Issuing/Authorizations.js +818 -0
  68. package/esm/resources/Issuing/Transactions.js +254 -0
  69. package/esm/resources/Mandates.js +0 -5
  70. package/esm/resources/PaymentAttemptRecords.js +0 -24
  71. package/esm/resources/PaymentIntents.js +0 -12
  72. package/esm/resources/PaymentLinks.js +394 -1
  73. package/esm/resources/PaymentMethods.js +0 -4
  74. package/esm/resources/Plans.js +127 -3
  75. package/esm/resources/Prices.js +328 -3
  76. package/esm/resources/Products.js +34 -1
  77. package/esm/resources/Quotes.js +792 -37
  78. package/esm/resources/SubscriptionItems.js +353 -1
  79. package/esm/resources/SubscriptionSchedules.js +74 -4
  80. package/esm/resources/Subscriptions.js +846 -9
  81. package/esm/resources/TestHelpers/Issuing/Authorizations.js +1257 -0
  82. package/esm/resources/TestHelpers/Issuing/Transactions.js +344 -0
  83. package/esm/resources/Treasury/TransactionEntries.js +376 -0
  84. package/esm/resources/Treasury/Transactions.js +430 -0
  85. package/esm/resources/V2/Core/AccountTokens.js +23 -1
  86. package/esm/resources/V2/Core/Accounts/PersonTokens.js +9 -0
  87. package/esm/resources/V2/Core/Accounts/Persons.js +62 -0
  88. package/esm/resources/V2/Core/Accounts.js +153 -3
  89. package/esm/resources/V2/Core/Events.js +9 -3
  90. package/esm/resources.js +0 -181
  91. package/esm/stripe.core.js +19 -6
  92. package/esm/stripe.esm.node.js +1 -0
  93. package/esm/stripe.esm.worker.js +1 -0
  94. package/esm/utils.js +3 -4
  95. package/package.json +3 -3
  96. package/types/AccountLinksResource.d.ts +1 -10
  97. package/types/AccountSessions.d.ts +1 -136
  98. package/types/AccountSessionsResource.d.ts +0 -350
  99. package/types/Accounts.d.ts +9 -282
  100. package/types/AccountsResource.d.ts +18 -886
  101. package/types/ApplePayDomains.d.ts +1 -1
  102. package/types/ApplicationFees.d.ts +2 -31
  103. package/types/Apps/Secrets.d.ts +1 -1
  104. package/types/Balance.d.ts +1 -83
  105. package/types/BalanceTransactions.d.ts +1 -3
  106. package/types/BankAccounts.d.ts +0 -2
  107. package/types/Billing/AlertTriggereds.d.ts +2 -67
  108. package/types/Billing/Alerts.d.ts +2 -255
  109. package/types/Billing/AlertsResource.d.ts +2 -251
  110. package/types/Billing/CreditBalanceSummary.d.ts +3 -142
  111. package/types/Billing/CreditBalanceSummaryResource.d.ts +0 -12
  112. package/types/Billing/CreditBalanceTransactions.d.ts +3 -119
  113. package/types/Billing/CreditGrants.d.ts +2 -72
  114. package/types/Billing/CreditGrantsResource.d.ts +1 -32
  115. package/types/Billing/MeterEventAdjustments.d.ts +1 -1
  116. package/types/Billing/MeterEventSummaries.d.ts +1 -8
  117. package/types/Billing/MeterEvents.d.ts +1 -1
  118. package/types/Billing/Meters.d.ts +1 -6
  119. package/types/Billing/MetersResource.d.ts +0 -17
  120. package/types/BillingPortal/Configurations.d.ts +1 -1
  121. package/types/BillingPortal/Sessions.d.ts +1 -1
  122. package/types/Capabilities.d.ts +0 -2
  123. package/types/Cards.d.ts +0 -19
  124. package/types/CashBalances.d.ts +1 -1
  125. package/types/Charges.d.ts +11 -210
  126. package/types/ChargesResource.d.ts +74 -3854
  127. package/types/Checkout/Sessions.d.ts +60 -539
  128. package/types/Checkout/SessionsResource.d.ts +95 -530
  129. package/types/Climate/Orders.d.ts +1 -1
  130. package/types/Climate/OrdersResource.d.ts +1 -1
  131. package/types/Climate/Products.d.ts +1 -1
  132. package/types/Climate/Suppliers.d.ts +2 -1
  133. package/types/ConfirmationTokens.d.ts +11 -139
  134. package/types/ConnectCollectionTransfers.d.ts +1 -1
  135. package/types/Coupons.d.ts +3 -60
  136. package/types/CouponsResource.d.ts +1 -66
  137. package/types/CreditNoteLineItems.d.ts +7 -19
  138. package/types/CreditNotes.d.ts +1 -1
  139. package/types/CreditNotesResource.d.ts +18 -3
  140. package/types/CustomerBalanceTransactions.d.ts +1 -1
  141. package/types/CustomerCashBalanceTransactions.d.ts +1 -1
  142. package/types/CustomerSessions.d.ts +1 -42
  143. package/types/CustomerSessionsResource.d.ts +0 -41
  144. package/types/Customers.d.ts +1 -1
  145. package/types/CustomersResource.d.ts +2 -8
  146. package/types/Discounts.d.ts +0 -24
  147. package/types/Disputes.d.ts +1 -46
  148. package/types/DisputesResource.d.ts +0 -16
  149. package/types/Entitlements/ActiveEntitlementSummaries.d.ts +1 -1
  150. package/types/Entitlements/ActiveEntitlements.d.ts +1 -1
  151. package/types/Entitlements/Features.d.ts +1 -1
  152. package/types/EphemeralKeys.d.ts +1 -1
  153. package/types/Errors.d.ts +67 -82
  154. package/types/EventTypes.d.ts +0 -664
  155. package/types/Events.d.ts +1 -100
  156. package/types/FileLinks.d.ts +1 -1
  157. package/types/FinancialConnections/Accounts.d.ts +2 -71
  158. package/types/FinancialConnections/AccountsResource.d.ts +3 -35
  159. package/types/FinancialConnections/Sessions.d.ts +2 -120
  160. package/types/FinancialConnections/SessionsResource.d.ts +6 -83
  161. package/types/FinancialConnections/Transactions.d.ts +1 -1
  162. package/types/Forwarding/Requests.d.ts +1 -1
  163. package/types/FundingInstructions.d.ts +1 -1
  164. package/types/Identity/VerificationReports.d.ts +1 -11
  165. package/types/Identity/VerificationReportsResource.d.ts +0 -5
  166. package/types/Identity/VerificationSessions.d.ts +1 -1
  167. package/types/InvoiceItems.d.ts +10 -137
  168. package/types/InvoiceItemsResource.d.ts +16 -104
  169. package/types/InvoiceLineItems.d.ts +11 -222
  170. package/types/InvoicePayments.d.ts +1 -1
  171. package/types/InvoiceRenderingTemplates.d.ts +1 -1
  172. package/types/Invoices.d.ts +8 -219
  173. package/types/InvoicesResource.d.ts +176 -2554
  174. package/types/Issuing/Authorizations.d.ts +7 -355
  175. package/types/Issuing/Cardholders.d.ts +2 -2
  176. package/types/Issuing/CardholdersResource.d.ts +7 -8
  177. package/types/Issuing/Cards.d.ts +19 -11
  178. package/types/Issuing/CardsResource.d.ts +21 -33
  179. package/types/Issuing/Disputes.d.ts +1 -1
  180. package/types/Issuing/PersonalizationDesigns.d.ts +1 -1
  181. package/types/Issuing/PhysicalBundles.d.ts +1 -1
  182. package/types/Issuing/Tokens.d.ts +2 -2
  183. package/types/Issuing/Transactions.d.ts +7 -12
  184. package/types/Issuing/TransactionsResource.d.ts +0 -5
  185. package/types/LineItems.d.ts +2 -36
  186. package/types/Mandates.d.ts +22 -62
  187. package/types/MandatesResource.d.ts +0 -31
  188. package/types/PaymentAttemptRecords.d.ts +51 -152
  189. package/types/PaymentAttemptRecordsResource.d.ts +0 -302
  190. package/types/PaymentIntents.d.ts +62 -1882
  191. package/types/PaymentIntentsResource.d.ts +7240 -19881
  192. package/types/PaymentLinks.d.ts +2 -6
  193. package/types/PaymentLinksResource.d.ts +3 -30
  194. package/types/PaymentMethodConfigurations.d.ts +15 -159
  195. package/types/PaymentMethodConfigurationsResource.d.ts +34 -234
  196. package/types/PaymentMethodDomains.d.ts +1 -1
  197. package/types/PaymentMethods.d.ts +11 -154
  198. package/types/PaymentMethodsResource.d.ts +42 -147
  199. package/types/PaymentRecords.d.ts +51 -152
  200. package/types/PaymentRecordsResource.d.ts +16 -61
  201. package/types/Payouts.d.ts +1 -1
  202. package/types/PayoutsResource.d.ts +1 -1
  203. package/types/Persons.d.ts +0 -30
  204. package/types/Plans.d.ts +4 -9
  205. package/types/PlansResource.d.ts +3 -22
  206. package/types/Prices.d.ts +7 -34
  207. package/types/PricesResource.d.ts +9 -50
  208. package/types/ProductFeatures.d.ts +1 -1
  209. package/types/Products.d.ts +1 -1
  210. package/types/ProductsResource.d.ts +4 -38
  211. package/types/PromotionCodes.d.ts +1 -1
  212. package/types/Quotes.d.ts +2 -873
  213. package/types/QuotesResource.d.ts +300 -3782
  214. package/types/Radar/EarlyFraudWarnings.d.ts +1 -1
  215. package/types/Radar/PaymentEvaluations.d.ts +43 -36
  216. package/types/Radar/ValueListItems.d.ts +1 -1
  217. package/types/Radar/ValueLists.d.ts +3 -2
  218. package/types/Radar/ValueListsResource.d.ts +2 -1
  219. package/types/Refunds.d.ts +0 -14
  220. package/types/Reporting/ReportTypes.d.ts +1 -1
  221. package/types/Reserve/Holds.d.ts +1 -1
  222. package/types/Reserve/Plans.d.ts +1 -1
  223. package/types/Reserve/Releases.d.ts +1 -1
  224. package/types/Reviews.d.ts +1 -1
  225. package/types/SetupAttempts.d.ts +6 -42
  226. package/types/SetupIntents.d.ts +59 -159
  227. package/types/SetupIntentsResource.d.ts +227 -686
  228. package/types/ShippingRates.d.ts +1 -1
  229. package/types/Sigma/ScheduledQueryRuns.d.ts +1 -1
  230. package/types/SourceMandateNotifications.d.ts +1 -1
  231. package/types/SourceTransactions.d.ts +1 -1
  232. package/types/Sources.d.ts +1 -30
  233. package/types/SubscriptionItems.d.ts +0 -39
  234. package/types/SubscriptionItemsResource.d.ts +5 -282
  235. package/types/SubscriptionSchedules.d.ts +1 -441
  236. package/types/SubscriptionSchedulesResource.d.ts +65 -2059
  237. package/types/Subscriptions.d.ts +12 -299
  238. package/types/SubscriptionsResource.d.ts +42 -1158
  239. package/types/Tax/CalculationLineItems.d.ts +6 -19
  240. package/types/Tax/Calculations.d.ts +9 -25
  241. package/types/Tax/CalculationsResource.d.ts +2 -7
  242. package/types/Tax/Registrations.d.ts +2 -92
  243. package/types/Tax/RegistrationsResource.d.ts +1 -22
  244. package/types/Tax/Settings.d.ts +1 -1
  245. package/types/Tax/TransactionLineItems.d.ts +3 -3
  246. package/types/Tax/Transactions.d.ts +6 -14
  247. package/types/Tax/TransactionsResource.d.ts +5 -5
  248. package/types/TaxCodes.d.ts +0 -18
  249. package/types/TaxIds.d.ts +1 -1
  250. package/types/TaxRates.d.ts +1 -1
  251. package/types/Terminal/Configurations.d.ts +1 -10
  252. package/types/Terminal/ConfigurationsResource.d.ts +0 -28
  253. package/types/Terminal/Locations.d.ts +1 -1
  254. package/types/Terminal/Readers.d.ts +1 -21
  255. package/types/TestHelpers/ConfirmationTokensResource.d.ts +41 -103
  256. package/types/TestHelpers/Issuing/AuthorizationsResource.d.ts +23 -23
  257. package/types/TestHelpers/Issuing/TransactionsResource.d.ts +14 -14
  258. package/types/TestHelpers/TestClocks.d.ts +1 -1
  259. package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +0 -26
  260. package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +0 -26
  261. package/types/Tokens.d.ts +1 -1
  262. package/types/TokensResource.d.ts +0 -68
  263. package/types/Topups.d.ts +2 -2
  264. package/types/Transfers.d.ts +1 -10
  265. package/types/TransfersResource.d.ts +0 -7
  266. package/types/Treasury/CreditReversals.d.ts +1 -1
  267. package/types/Treasury/DebitReversals.d.ts +1 -1
  268. package/types/Treasury/FinancialAccountFeatures.d.ts +0 -7
  269. package/types/Treasury/FinancialAccounts.d.ts +1 -6
  270. package/types/Treasury/FinancialAccountsResource.d.ts +0 -37
  271. package/types/Treasury/InboundTransfers.d.ts +1 -1
  272. package/types/Treasury/OutboundPayments.d.ts +1 -1
  273. package/types/Treasury/OutboundTransfers.d.ts +1 -27
  274. package/types/Treasury/OutboundTransfersResource.d.ts +0 -26
  275. package/types/Treasury/ReceivedCredits.d.ts +1 -27
  276. package/types/Treasury/ReceivedDebits.d.ts +1 -32
  277. package/types/Treasury/TransactionEntries.d.ts +1 -1
  278. package/types/Treasury/Transactions.d.ts +1 -1
  279. package/types/V2/Core/AccountLinks.d.ts +3 -109
  280. package/types/V2/Core/AccountLinksResource.d.ts +3 -109
  281. package/types/V2/Core/AccountPersons.d.ts +1 -1
  282. package/types/V2/Core/AccountTokensResource.d.ts +3 -288
  283. package/types/V2/Core/Accounts/PersonTokensResource.d.ts +1 -1
  284. package/types/V2/Core/Accounts/PersonsResource.d.ts +2 -2
  285. package/types/V2/Core/Accounts.d.ts +20 -3429
  286. package/types/V2/Core/AccountsResource.d.ts +216 -3729
  287. package/types/V2/Core/EventDestinations.d.ts +6 -4
  288. package/types/V2/Core/EventDestinationsResource.d.ts +6 -4
  289. package/types/V2/Core/EventTypes.d.ts +274 -5312
  290. package/types/V2/Core/Events.d.ts +0 -61
  291. package/types/V2/Core/EventsResource.d.ts +1 -11
  292. package/types/WebhookEndpoints.d.ts +1 -1
  293. package/types/WebhookEndpointsResource.d.ts +2 -83
  294. package/types/Webhooks.d.ts +0 -2
  295. package/types/apiVersion.d.ts +2 -1
  296. package/types/index.d.ts +0 -300
  297. package/types/lib.d.ts +89 -0
  298. package/cjs/resources/AccountNotices.js +0 -21
  299. package/cjs/resources/BalanceTransfers.js +0 -9
  300. package/cjs/resources/Billing/Analytics/MeterUsage.js +0 -12
  301. package/cjs/resources/Capital/FinancingOffers.js +0 -21
  302. package/cjs/resources/Capital/FinancingSummary.js +0 -12
  303. package/cjs/resources/Capital/FinancingTransactions.js +0 -17
  304. package/cjs/resources/DelegatedCheckout/RequestedSessions.js +0 -28
  305. package/cjs/resources/ExternalAccounts.js +0 -23
  306. package/cjs/resources/FinancialConnections/Authorizations.js +0 -12
  307. package/cjs/resources/FinancialConnections/Institutions.js +0 -17
  308. package/cjs/resources/FrMealVouchersOnboardings.js +0 -25
  309. package/cjs/resources/FxQuotes.js +0 -15
  310. package/cjs/resources/Identity/BlocklistEntries.js +0 -25
  311. package/cjs/resources/Issuing/CreditUnderwritingRecords.js +0 -33
  312. package/cjs/resources/Issuing/DisputeSettlementDetails.js +0 -17
  313. package/cjs/resources/Issuing/FraudLiabilityDebits.js +0 -17
  314. package/cjs/resources/Issuing/Programs.js +0 -22
  315. package/cjs/resources/Margins.js +0 -22
  316. package/cjs/resources/Orchestration/PaymentAttempts.js +0 -12
  317. package/cjs/resources/Orders.js +0 -17
  318. package/cjs/resources/Privacy/RedactionJobs.js +0 -42
  319. package/cjs/resources/ProductCatalog/TrialOffers.js +0 -12
  320. package/cjs/resources/Radar/AccountEvaluations.js +0 -20
  321. package/cjs/resources/Radar/CustomerEvaluations.js +0 -16
  322. package/cjs/resources/Radar/IssuingAuthorizationEvaluations.js +0 -12
  323. package/cjs/resources/Reserve/Holds.js +0 -14
  324. package/cjs/resources/Reserve/Plans.js +0 -9
  325. package/cjs/resources/Reserve/Releases.js +0 -17
  326. package/cjs/resources/SharedPayment/GrantedTokens.js +0 -12
  327. package/cjs/resources/Tax/Forms.js +0 -20
  328. package/cjs/resources/Tax/Locations.js +0 -18
  329. package/cjs/resources/Terminal/ReaderCollectedData.js +0 -12
  330. package/cjs/resources/TestHelpers/Capital/FinancingOffers.js +0 -16
  331. package/cjs/resources/TestHelpers/PaymentIntents.js +0 -12
  332. package/cjs/resources/TestHelpers/SharedPayment/GrantedTokens.js +0 -16
  333. package/cjs/resources/V2/Billing/BillSettings/Versions.js +0 -17
  334. package/cjs/resources/V2/Billing/BillSettings.js +0 -27
  335. package/cjs/resources/V2/Billing/Cadences/SpendModifierRules.js +0 -17
  336. package/cjs/resources/V2/Billing/Cadences.js +0 -28
  337. package/cjs/resources/V2/Billing/CollectionSettings/Versions.js +0 -17
  338. package/cjs/resources/V2/Billing/CollectionSettings.js +0 -30
  339. package/cjs/resources/V2/Billing/CustomPricingUnits.js +0 -25
  340. package/cjs/resources/V2/Billing/Intents/Actions.js +0 -17
  341. package/cjs/resources/V2/Billing/Intents.js +0 -36
  342. package/cjs/resources/V2/Billing/LicenseFeeSubscriptions.js +0 -12
  343. package/cjs/resources/V2/Billing/LicenseFees/Versions.js +0 -17
  344. package/cjs/resources/V2/Billing/LicenseFees.js +0 -27
  345. package/cjs/resources/V2/Billing/LicensedItems.js +0 -25
  346. package/cjs/resources/V2/Billing/MeteredItems.js +0 -22
  347. package/cjs/resources/V2/Billing/OneTimeItems.js +0 -25
  348. package/cjs/resources/V2/Billing/PricingPlanSubscriptions/Components.js +0 -12
  349. package/cjs/resources/V2/Billing/PricingPlanSubscriptions.js +0 -26
  350. package/cjs/resources/V2/Billing/PricingPlans/Components.js +0 -29
  351. package/cjs/resources/V2/Billing/PricingPlans/Versions.js +0 -17
  352. package/cjs/resources/V2/Billing/PricingPlans.js +0 -29
  353. package/cjs/resources/V2/Billing/Profiles.js +0 -19
  354. package/cjs/resources/V2/Billing/RateCardSubscriptions.js +0 -29
  355. package/cjs/resources/V2/Billing/RateCards/CustomPricingUnitOverageRates.js +0 -25
  356. package/cjs/resources/V2/Billing/RateCards/Rates.js +0 -25
  357. package/cjs/resources/V2/Billing/RateCards/Versions.js +0 -17
  358. package/cjs/resources/V2/Billing/RateCards.js +0 -31
  359. package/cjs/resources/V2/Billing/ServiceActions.js +0 -20
  360. package/cjs/resources/V2/Core/ClaimableSandboxes.js +0 -16
  361. package/cjs/resources/V2/Core/ConnectionSessions.js +0 -16
  362. package/cjs/resources/V2/Core/Vault/GbBankAccounts.js +0 -33
  363. package/cjs/resources/V2/Core/Vault/UsBankAccounts.js +0 -37
  364. package/cjs/resources/V2/Iam/ApiKeys.js +0 -24
  365. package/cjs/resources/V2/MoneyManagement/Adjustments.js +0 -17
  366. package/cjs/resources/V2/MoneyManagement/CurrencyConversions.js +0 -21
  367. package/cjs/resources/V2/MoneyManagement/FinancialAccounts.js +0 -29
  368. package/cjs/resources/V2/MoneyManagement/FinancialAddresses.js +0 -21
  369. package/cjs/resources/V2/MoneyManagement/InboundTransfers.js +0 -21
  370. package/cjs/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +0 -16
  371. package/cjs/resources/V2/MoneyManagement/OutboundPayments.js +0 -25
  372. package/cjs/resources/V2/MoneyManagement/OutboundSetupIntents.js +0 -29
  373. package/cjs/resources/V2/MoneyManagement/OutboundTransfers.js +0 -25
  374. package/cjs/resources/V2/MoneyManagement/PayoutMethods.js +0 -25
  375. package/cjs/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +0 -12
  376. package/cjs/resources/V2/MoneyManagement/ReceivedCredits.js +0 -17
  377. package/cjs/resources/V2/MoneyManagement/ReceivedDebits.js +0 -17
  378. package/cjs/resources/V2/MoneyManagement/RecipientVerifications.js +0 -20
  379. package/cjs/resources/V2/MoneyManagement/TransactionEntries.js +0 -17
  380. package/cjs/resources/V2/MoneyManagement/Transactions.js +0 -17
  381. package/cjs/resources/V2/Payments/OffSessionPayments.js +0 -29
  382. package/cjs/resources/V2/Payments/SettlementAllocationIntents/Splits.js +0 -25
  383. package/cjs/resources/V2/Payments/SettlementAllocationIntents.js +0 -38
  384. package/cjs/resources/V2/Reporting/ReportRuns.js +0 -13
  385. package/cjs/resources/V2/Reporting/Reports.js +0 -12
  386. package/cjs/resources/V2/Tax/ManualRules.js +0 -23
  387. package/cjs/resources/V2/TestHelpers/FinancialAddresses.js +0 -16
  388. package/cjs/resources/V2/TestHelpers/MoneyManagement.js +0 -12
  389. package/esm/resources/AccountNotices.js +0 -18
  390. package/esm/resources/BalanceTransfers.js +0 -6
  391. package/esm/resources/Billing/Analytics/MeterUsage.js +0 -9
  392. package/esm/resources/Capital/FinancingOffers.js +0 -18
  393. package/esm/resources/Capital/FinancingSummary.js +0 -9
  394. package/esm/resources/Capital/FinancingTransactions.js +0 -14
  395. package/esm/resources/DelegatedCheckout/RequestedSessions.js +0 -25
  396. package/esm/resources/ExternalAccounts.js +0 -20
  397. package/esm/resources/FinancialConnections/Authorizations.js +0 -9
  398. package/esm/resources/FinancialConnections/Institutions.js +0 -14
  399. package/esm/resources/FrMealVouchersOnboardings.js +0 -22
  400. package/esm/resources/FxQuotes.js +0 -12
  401. package/esm/resources/Identity/BlocklistEntries.js +0 -22
  402. package/esm/resources/Issuing/CreditUnderwritingRecords.js +0 -30
  403. package/esm/resources/Issuing/DisputeSettlementDetails.js +0 -14
  404. package/esm/resources/Issuing/FraudLiabilityDebits.js +0 -14
  405. package/esm/resources/Issuing/Programs.js +0 -19
  406. package/esm/resources/Margins.js +0 -19
  407. package/esm/resources/Orchestration/PaymentAttempts.js +0 -9
  408. package/esm/resources/Orders.js +0 -14
  409. package/esm/resources/Privacy/RedactionJobs.js +0 -39
  410. package/esm/resources/ProductCatalog/TrialOffers.js +0 -9
  411. package/esm/resources/Radar/AccountEvaluations.js +0 -17
  412. package/esm/resources/Radar/CustomerEvaluations.js +0 -13
  413. package/esm/resources/Radar/IssuingAuthorizationEvaluations.js +0 -9
  414. package/esm/resources/Reserve/Holds.js +0 -11
  415. package/esm/resources/Reserve/Plans.js +0 -6
  416. package/esm/resources/Reserve/Releases.js +0 -14
  417. package/esm/resources/SharedPayment/GrantedTokens.js +0 -9
  418. package/esm/resources/Tax/Forms.js +0 -17
  419. package/esm/resources/Tax/Locations.js +0 -15
  420. package/esm/resources/Terminal/ReaderCollectedData.js +0 -9
  421. package/esm/resources/TestHelpers/Capital/FinancingOffers.js +0 -13
  422. package/esm/resources/TestHelpers/PaymentIntents.js +0 -9
  423. package/esm/resources/TestHelpers/SharedPayment/GrantedTokens.js +0 -13
  424. package/esm/resources/V2/Billing/BillSettings/Versions.js +0 -14
  425. package/esm/resources/V2/Billing/BillSettings.js +0 -24
  426. package/esm/resources/V2/Billing/Cadences/SpendModifierRules.js +0 -14
  427. package/esm/resources/V2/Billing/Cadences.js +0 -25
  428. package/esm/resources/V2/Billing/CollectionSettings/Versions.js +0 -14
  429. package/esm/resources/V2/Billing/CollectionSettings.js +0 -27
  430. package/esm/resources/V2/Billing/CustomPricingUnits.js +0 -22
  431. package/esm/resources/V2/Billing/Intents/Actions.js +0 -14
  432. package/esm/resources/V2/Billing/Intents.js +0 -33
  433. package/esm/resources/V2/Billing/LicenseFeeSubscriptions.js +0 -9
  434. package/esm/resources/V2/Billing/LicenseFees/Versions.js +0 -14
  435. package/esm/resources/V2/Billing/LicenseFees.js +0 -24
  436. package/esm/resources/V2/Billing/LicensedItems.js +0 -22
  437. package/esm/resources/V2/Billing/MeteredItems.js +0 -19
  438. package/esm/resources/V2/Billing/OneTimeItems.js +0 -22
  439. package/esm/resources/V2/Billing/PricingPlanSubscriptions/Components.js +0 -9
  440. package/esm/resources/V2/Billing/PricingPlanSubscriptions.js +0 -23
  441. package/esm/resources/V2/Billing/PricingPlans/Components.js +0 -26
  442. package/esm/resources/V2/Billing/PricingPlans/Versions.js +0 -14
  443. package/esm/resources/V2/Billing/PricingPlans.js +0 -26
  444. package/esm/resources/V2/Billing/Profiles.js +0 -16
  445. package/esm/resources/V2/Billing/RateCardSubscriptions.js +0 -26
  446. package/esm/resources/V2/Billing/RateCards/CustomPricingUnitOverageRates.js +0 -22
  447. package/esm/resources/V2/Billing/RateCards/Rates.js +0 -22
  448. package/esm/resources/V2/Billing/RateCards/Versions.js +0 -14
  449. package/esm/resources/V2/Billing/RateCards.js +0 -28
  450. package/esm/resources/V2/Billing/ServiceActions.js +0 -17
  451. package/esm/resources/V2/Core/ClaimableSandboxes.js +0 -13
  452. package/esm/resources/V2/Core/ConnectionSessions.js +0 -13
  453. package/esm/resources/V2/Core/Vault/GbBankAccounts.js +0 -30
  454. package/esm/resources/V2/Core/Vault/UsBankAccounts.js +0 -34
  455. package/esm/resources/V2/Iam/ApiKeys.js +0 -21
  456. package/esm/resources/V2/MoneyManagement/Adjustments.js +0 -14
  457. package/esm/resources/V2/MoneyManagement/CurrencyConversions.js +0 -18
  458. package/esm/resources/V2/MoneyManagement/FinancialAccounts.js +0 -26
  459. package/esm/resources/V2/MoneyManagement/FinancialAddresses.js +0 -18
  460. package/esm/resources/V2/MoneyManagement/InboundTransfers.js +0 -18
  461. package/esm/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +0 -13
  462. package/esm/resources/V2/MoneyManagement/OutboundPayments.js +0 -22
  463. package/esm/resources/V2/MoneyManagement/OutboundSetupIntents.js +0 -26
  464. package/esm/resources/V2/MoneyManagement/OutboundTransfers.js +0 -22
  465. package/esm/resources/V2/MoneyManagement/PayoutMethods.js +0 -22
  466. package/esm/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +0 -9
  467. package/esm/resources/V2/MoneyManagement/ReceivedCredits.js +0 -14
  468. package/esm/resources/V2/MoneyManagement/ReceivedDebits.js +0 -14
  469. package/esm/resources/V2/MoneyManagement/RecipientVerifications.js +0 -17
  470. package/esm/resources/V2/MoneyManagement/TransactionEntries.js +0 -14
  471. package/esm/resources/V2/MoneyManagement/Transactions.js +0 -14
  472. package/esm/resources/V2/Payments/OffSessionPayments.js +0 -26
  473. package/esm/resources/V2/Payments/SettlementAllocationIntents/Splits.js +0 -22
  474. package/esm/resources/V2/Payments/SettlementAllocationIntents.js +0 -35
  475. package/esm/resources/V2/Reporting/ReportRuns.js +0 -10
  476. package/esm/resources/V2/Reporting/Reports.js +0 -9
  477. package/esm/resources/V2/Tax/ManualRules.js +0 -20
  478. package/esm/resources/V2/TestHelpers/FinancialAddresses.js +0 -13
  479. package/esm/resources/V2/TestHelpers/MoneyManagement.js +0 -9
  480. package/types/AccountNotices.d.ts +0 -113
  481. package/types/AccountNoticesResource.d.ts +0 -98
  482. package/types/AccountSignals.d.ts +0 -111
  483. package/types/BalanceTransfers.d.ts +0 -122
  484. package/types/BalanceTransfersResource.d.ts +0 -87
  485. package/types/Billing/AlertRecovereds.d.ts +0 -57
  486. package/types/Billing/Analytics/MeterUsage.d.ts +0 -31
  487. package/types/Billing/Analytics/MeterUsageResource.d.ts +0 -694
  488. package/types/Billing/Analytics/MeterUsageRows.d.ts +0 -58
  489. package/types/Capital/FinancingOffers.d.ts +0 -188
  490. package/types/Capital/FinancingOffersResource.d.ts +0 -97
  491. package/types/Capital/FinancingSummary.d.ts +0 -109
  492. package/types/Capital/FinancingSummaryResource.d.ts +0 -27
  493. package/types/Capital/FinancingTransactions.d.ts +0 -135
  494. package/types/Capital/FinancingTransactionsResource.d.ts +0 -68
  495. package/types/DelegatedCheckout/RequestedSessions.d.ts +0 -669
  496. package/types/DelegatedCheckout/RequestedSessionsResource.d.ts +0 -938
  497. package/types/ExternalAccountsResource.d.ts +0 -304
  498. package/types/FinancialConnections/AccountInferredBalances.d.ts +0 -38
  499. package/types/FinancialConnections/Authorizations.d.ts +0 -93
  500. package/types/FinancialConnections/AuthorizationsResource.d.ts +0 -29
  501. package/types/FinancialConnections/Institutions.d.ts +0 -98
  502. package/types/FinancialConnections/InstitutionsResource.d.ts +0 -47
  503. package/types/FrMealVouchersOnboardings.d.ts +0 -143
  504. package/types/FrMealVouchersOnboardingsResource.d.ts +0 -108
  505. package/types/FxQuotes.d.ts +0 -155
  506. package/types/FxQuotesResource.d.ts +0 -130
  507. package/types/Identity/BlocklistEntries.d.ts +0 -78
  508. package/types/Identity/BlocklistEntriesResource.d.ts +0 -146
  509. package/types/Issuing/CreditUnderwritingRecords.d.ts +0 -451
  510. package/types/Issuing/CreditUnderwritingRecordsResource.d.ts +0 -1032
  511. package/types/Issuing/DisputeSettlementDetails.d.ts +0 -85
  512. package/types/Issuing/DisputeSettlementDetailsResource.d.ts +0 -52
  513. package/types/Issuing/FraudLiabilityDebits.d.ts +0 -52
  514. package/types/Issuing/FraudLiabilityDebitsResource.d.ts +0 -52
  515. package/types/Issuing/Programs.d.ts +0 -42
  516. package/types/Issuing/ProgramsResource.d.ts +0 -96
  517. package/types/Issuing/Settlements.d.ts +0 -113
  518. package/types/Margins.d.ts +0 -56
  519. package/types/MarginsResource.d.ts +0 -114
  520. package/types/Orchestration/PaymentAttempts.d.ts +0 -32
  521. package/types/Orchestration/PaymentAttemptsResource.d.ts +0 -29
  522. package/types/Orders.d.ts +0 -1165
  523. package/types/OrdersResource.d.ts +0 -5449
  524. package/types/PaymentMethodBalances.d.ts +0 -63
  525. package/types/Privacy/RedactionJobValidationErrors.d.ts +0 -60
  526. package/types/Privacy/RedactionJobs.d.ts +0 -111
  527. package/types/Privacy/RedactionJobsResource.d.ts +0 -230
  528. package/types/ProductCatalog/TrialOffers.d.ts +0 -82
  529. package/types/ProductCatalog/TrialOffersResource.d.ts +0 -85
  530. package/types/Profiles.d.ts +0 -48
  531. package/types/QuoteLines.d.ts +0 -883
  532. package/types/QuotePreviewInvoices.d.ts +0 -1845
  533. package/types/QuotePreviewSubscriptionSchedules.d.ts +0 -1150
  534. package/types/Radar/AccountEvaluations.d.ts +0 -114
  535. package/types/Radar/AccountEvaluationsResource.d.ts +0 -188
  536. package/types/Radar/CustomerEvaluations.d.ts +0 -134
  537. package/types/Radar/CustomerEvaluationsResource.d.ts +0 -172
  538. package/types/Radar/IssuingAuthorizationEvaluations.d.ts +0 -347
  539. package/types/Radar/IssuingAuthorizationEvaluationsResource.d.ts +0 -282
  540. package/types/Reserve/HoldsResource.d.ts +0 -76
  541. package/types/Reserve/PlansResource.d.ts +0 -29
  542. package/types/Reserve/ReleasesResource.d.ts +0 -60
  543. package/types/SharedPayment/GrantedTokens.d.ts +0 -102
  544. package/types/SharedPayment/GrantedTokensResource.d.ts +0 -29
  545. package/types/Tax/Forms.d.ts +0 -220
  546. package/types/Tax/FormsResource.d.ts +0 -107
  547. package/types/Tax/Locations.d.ts +0 -34
  548. package/types/Tax/LocationsResource.d.ts +0 -117
  549. package/types/Terminal/ReaderCollectedData.d.ts +0 -51
  550. package/types/Terminal/ReaderCollectedDataResource.d.ts +0 -29
  551. package/types/TestHelpers/Capital/FinancingOffersResource.d.ts +0 -130
  552. package/types/TestHelpers/PaymentIntentsResource.d.ts +0 -49
  553. package/types/TestHelpers/SharedPayment/GrantedTokensResource.d.ts +0 -100
  554. package/types/TransitBalances.d.ts +0 -40
  555. package/types/V2/Billing/BillSettingVersions.d.ts +0 -97
  556. package/types/V2/Billing/BillSettings/VersionsResource.d.ts +0 -58
  557. package/types/V2/Billing/BillSettings.d.ts +0 -120
  558. package/types/V2/Billing/BillSettingsResource.d.ts +0 -241
  559. package/types/V2/Billing/CadenceSpendModifiers.d.ts +0 -108
  560. package/types/V2/Billing/Cadences/SpendModifierRulesResource.d.ts +0 -63
  561. package/types/V2/Billing/Cadences.d.ts +0 -735
  562. package/types/V2/Billing/CadencesResource.d.ts +0 -518
  563. package/types/V2/Billing/CollectionSettingVersions.d.ts +0 -318
  564. package/types/V2/Billing/CollectionSettings/VersionsResource.d.ts +0 -62
  565. package/types/V2/Billing/CollectionSettings.d.ts +0 -341
  566. package/types/V2/Billing/CollectionSettingsResource.d.ts +0 -683
  567. package/types/V2/Billing/CustomPricingUnits.d.ts +0 -56
  568. package/types/V2/Billing/CustomPricingUnitsResource.d.ts +0 -122
  569. package/types/V2/Billing/IntentActions.d.ts +0 -712
  570. package/types/V2/Billing/Intents/ActionsResource.d.ts +0 -58
  571. package/types/V2/Billing/Intents.d.ts +0 -395
  572. package/types/V2/Billing/IntentsResource.d.ts +0 -1115
  573. package/types/V2/Billing/LicenseFeeSubscriptions.d.ts +0 -66
  574. package/types/V2/Billing/LicenseFeeSubscriptionsResource.d.ts +0 -28
  575. package/types/V2/Billing/LicenseFeeVersions.d.ts +0 -108
  576. package/types/V2/Billing/LicenseFees/VersionsResource.d.ts +0 -58
  577. package/types/V2/Billing/LicenseFees.d.ts +0 -166
  578. package/types/V2/Billing/LicenseFeesResource.d.ts +0 -290
  579. package/types/V2/Billing/LicensedItems.d.ts +0 -73
  580. package/types/V2/Billing/LicensedItemsResource.d.ts +0 -157
  581. package/types/V2/Billing/MeteredItems.d.ts +0 -101
  582. package/types/V2/Billing/MeteredItemsResource.d.ts +0 -189
  583. package/types/V2/Billing/OneTimeItems.d.ts +0 -73
  584. package/types/V2/Billing/OneTimeItemsResource.d.ts +0 -157
  585. package/types/V2/Billing/PricingPlanComponents.d.ts +0 -111
  586. package/types/V2/Billing/PricingPlanSubscriptionComponents.d.ts +0 -57
  587. package/types/V2/Billing/PricingPlanSubscriptions/ComponentsResource.d.ts +0 -40
  588. package/types/V2/Billing/PricingPlanSubscriptions.d.ts +0 -180
  589. package/types/V2/Billing/PricingPlanSubscriptionsResource.d.ts +0 -120
  590. package/types/V2/Billing/PricingPlanVersions.d.ts +0 -51
  591. package/types/V2/Billing/PricingPlans/ComponentsResource.d.ts +0 -197
  592. package/types/V2/Billing/PricingPlans/VersionsResource.d.ts +0 -58
  593. package/types/V2/Billing/PricingPlans.d.ts +0 -86
  594. package/types/V2/Billing/PricingPlansResource.d.ts +0 -151
  595. package/types/V2/Billing/Profiles.d.ts +0 -70
  596. package/types/V2/Billing/ProfilesResource.d.ts +0 -150
  597. package/types/V2/Billing/RateCardCustomPricingUnitOverageRates.d.ts +0 -67
  598. package/types/V2/Billing/RateCardRates.d.ts +0 -146
  599. package/types/V2/Billing/RateCardSubscriptions.d.ts +0 -146
  600. package/types/V2/Billing/RateCardSubscriptionsResource.d.ts +0 -157
  601. package/types/V2/Billing/RateCardVersions.d.ts +0 -41
  602. package/types/V2/Billing/RateCards/CustomPricingUnitOverageRatesResource.d.ts +0 -135
  603. package/types/V2/Billing/RateCards/RatesResource.d.ts +0 -199
  604. package/types/V2/Billing/RateCards/VersionsResource.d.ts +0 -58
  605. package/types/V2/Billing/RateCards.d.ts +0 -98
  606. package/types/V2/Billing/RateCardsResource.d.ts +0 -163
  607. package/types/V2/Billing/ServiceActions.d.ts +0 -298
  608. package/types/V2/Billing/ServiceActionsResource.d.ts +0 -394
  609. package/types/V2/Core/ClaimableSandboxes.d.ts +0 -132
  610. package/types/V2/Core/ClaimableSandboxesResource.d.ts +0 -74
  611. package/types/V2/Core/ConnectionSessions.d.ts +0 -73
  612. package/types/V2/Core/ConnectionSessionsResource.d.ts +0 -55
  613. package/types/V2/Core/Vault/GbBankAccounts.d.ts +0 -181
  614. package/types/V2/Core/Vault/GbBankAccountsResource.d.ts +0 -194
  615. package/types/V2/Core/Vault/UsBankAccounts.d.ts +0 -142
  616. package/types/V2/Core/Vault/UsBankAccountsResource.d.ts +0 -198
  617. package/types/V2/FinancialAddressCreditSimulations.d.ts +0 -27
  618. package/types/V2/FinancialAddressGeneratedMicrodeposits.d.ts +0 -46
  619. package/types/V2/Iam/ApiKeys.d.ts +0 -154
  620. package/types/V2/Iam/ApiKeysResource.d.ts +0 -215
  621. package/types/V2/MoneyManagement/Adjustments.d.ts +0 -127
  622. package/types/V2/MoneyManagement/AdjustmentsResource.d.ts +0 -83
  623. package/types/V2/MoneyManagement/CurrencyConversions.d.ts +0 -98
  624. package/types/V2/MoneyManagement/CurrencyConversionsResource.d.ts +0 -141
  625. package/types/V2/MoneyManagement/FinancialAccounts.d.ts +0 -281
  626. package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +0 -188
  627. package/types/V2/MoneyManagement/FinancialAddresses.d.ts +0 -188
  628. package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +0 -126
  629. package/types/V2/MoneyManagement/InboundTransfers.d.ts +0 -250
  630. package/types/V2/MoneyManagement/InboundTransfersResource.d.ts +0 -156
  631. package/types/V2/MoneyManagement/OutboundPaymentQuotes.d.ts +0 -230
  632. package/types/V2/MoneyManagement/OutboundPaymentQuotesResource.d.ts +0 -134
  633. package/types/V2/MoneyManagement/OutboundPayments.d.ts +0 -455
  634. package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +0 -297
  635. package/types/V2/MoneyManagement/OutboundSetupIntents.d.ts +0 -97
  636. package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +0 -332
  637. package/types/V2/MoneyManagement/OutboundTransfers.d.ts +0 -296
  638. package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +0 -225
  639. package/types/V2/MoneyManagement/PayoutMethods.d.ts +0 -243
  640. package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpec.d.ts +0 -93
  641. package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecResource.d.ts +0 -41
  642. package/types/V2/MoneyManagement/PayoutMethodsResource.d.ts +0 -115
  643. package/types/V2/MoneyManagement/ReceivedCredits.d.ts +0 -395
  644. package/types/V2/MoneyManagement/ReceivedCreditsResource.d.ts +0 -78
  645. package/types/V2/MoneyManagement/ReceivedDebits.d.ts +0 -325
  646. package/types/V2/MoneyManagement/ReceivedDebitsResource.d.ts +0 -48
  647. package/types/V2/MoneyManagement/RecipientVerifications.d.ts +0 -112
  648. package/types/V2/MoneyManagement/RecipientVerificationsResource.d.ts +0 -77
  649. package/types/V2/MoneyManagement/TransactionEntries.d.ts +0 -308
  650. package/types/V2/MoneyManagement/TransactionEntriesResource.d.ts +0 -82
  651. package/types/V2/MoneyManagement/Transactions.d.ts +0 -335
  652. package/types/V2/MoneyManagement/TransactionsResource.d.ts +0 -83
  653. package/types/V2/Payments/OffSessionPayments.d.ts +0 -254
  654. package/types/V2/Payments/OffSessionPaymentsResource.d.ts +0 -374
  655. package/types/V2/Payments/SettlementAllocationIntentSplits.d.ts +0 -111
  656. package/types/V2/Payments/SettlementAllocationIntents/SplitsResource.d.ts +0 -163
  657. package/types/V2/Payments/SettlementAllocationIntents.d.ts +0 -122
  658. package/types/V2/Payments/SettlementAllocationIntentsResource.d.ts +0 -232
  659. package/types/V2/Reporting/ReportRuns.d.ts +0 -154
  660. package/types/V2/Reporting/ReportRunsResource.d.ts +0 -75
  661. package/types/V2/Reporting/Reports.d.ts +0 -120
  662. package/types/V2/Reporting/ReportsResource.d.ts +0 -30
  663. package/types/V2/Tax/ManualRules.d.ts +0 -142
  664. package/types/V2/Tax/ManualRulesResource.d.ts +0 -292
  665. package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +0 -85
  666. package/types/V2/TestHelpers/MoneyManagementResource.d.ts +0 -49
package/CHANGELOG.md CHANGED
@@ -1,133 +1,69 @@
1
1
  # Changelog
2
2
 
3
- ## 20.5.0-alpha.4 - 2026-03-18
4
- * [#2605](https://github.com/stripe/stripe-node/pull/2605) Update generated code for private-preview
5
- * Add support for `simulate_crypto_deposit` test helper method on resource `PaymentIntent`
6
- * Add support for `deposit_options` and `mode` on `PaymentIntent.payment_method_options.crypto`, `PaymentIntentConfirmParams.payment_method_options.crypto`, `PaymentIntentCreateParams.payment_method_options.crypto`, and `PaymentIntentUpdateParams.payment_method_options.crypto`
7
- * Add support for `crypto_display_details` on `PaymentIntent.next_action`
8
- * [#2599](https://github.com/stripe/stripe-node/pull/2599) Update generated code for private-preview
9
- * Add support for new resources `Orchestration.PaymentAttempt` and `Radar.CustomerEvaluation`
10
- * Add support for `retrieve` method on resource `Orchestration.PaymentAttempt`
11
- * Add support for `create` and `update` methods on resource `Radar.CustomerEvaluation`
12
- * Add support for `approve` method on resource `Checkout.Session`
13
- * Add support for `report_authenticated`, `report_canceled`, `report_failed`, `report_guaranteed`, `report_informational`, and `report_refund` methods on resource `PaymentAttemptRecord`
14
- * Add support for `create_us_paper_check_on_application` on `AccountSessionCreateParams.components.check_scanning.features`
15
- * ⚠️ Change `AccountSignals.delinquency` to be optional
16
- * Add support for `approval_method` on `Checkout.SessionCreateParams` and `Checkout.Session`
17
- * Add support for `current_attempt` on `Checkout.Session`
18
- * Add support for `selected_fulfillment_option_overrides` on `DelegatedCheckout.RequestedSessionUpdateParams.fulfillment_details`
19
- * Add support for `pricing_plan_subscription_details` on `InvoiceItem.parent` and `InvoiceLineItem.parent`
20
- * ⚠️ Remove support for `license_fee_subscription_details` on `InvoiceItem.parent` and `InvoiceLineItem.parent`
21
- * ⚠️ Remove support for `pricing_plan_subscription` and `pricing_plan_version` on `InvoiceItem.parent.rate_card_subscription_details` and `InvoiceLineItem.parent.rate_card_subscription_details`
22
- * Add support for new value `pricing_plan_subscription_details` on enum `InvoiceItem.parent.type`
23
- * ⚠️ Remove support for value `license_fee_subscription_details` from enum `InvoiceItem.parent.type`
24
- * Add support for new value `discounts` on enum `InvoiceItem.frozen_fields`
25
- * Add support for new value `pricing_plan_subscription_details` on enum `InvoiceLineItem.parent.type`
26
- * ⚠️ Remove support for value `license_fee_subscription_details` from enum `InvoiceLineItem.parent.type`
27
- * Add support for `token_details` on `Issuing.Authorization`
28
- * Add support for `failure_code` on `PaymentRecordReportPaymentAttemptFailedParams`, `PaymentRecordReportPaymentAttemptParams.failed`, and `PaymentRecordReportPaymentParams.failed`
29
- * Change `PaymentRecordReportPaymentAttemptCanceledParams.canceled_at` to be optional
30
- * Change `PaymentRecordReportPaymentAttemptFailedParams.failed_at` to be optional
31
- * Change `PaymentRecordReportPaymentAttemptGuaranteedParams.guaranteed_at` to be optional
32
- * Change `PaymentRecordReportRefundParams.refunded` to be optional
33
- * ⚠️ Remove support for value `now` from enums `QuoteCreateParams.subscription_data.billing_schedules[].bill_from.type`, `QuoteCreateParams.subscription_data_overrides[].billing_schedules[].bill_from.type`, `QuoteUpdateParams.subscription_data.billing_schedules[].bill_from.type`, and `QuoteUpdateParams.subscription_data_overrides[].billing_schedules[].bill_from.type`
34
- * ⚠️ Change `Radar.IssuingAuthorizationEvaluationCreateParams.card_details.bin_country` to be required
35
- * Add support for `recurring_interval` on `SharedPayment.GrantedTokenCreateParams.testHelpers.usage_limits`
36
- * Change `SharedPayment.GrantedTokenCreateParams.testHelpers.usage_limits.expires_at` to be optional
37
- * Add support for `home_rule_tax` on `Tax.Registration.country_options.us` and `Tax.RegistrationCreateParams.country_options.us`
38
- * Add support for new value `home_rule_tax` on enums `Tax.Registration.country_options.us.type` and `Tax.RegistrationCreateParams.country_options.us.type`
39
-
40
- ## 20.5.0-alpha.3 - 2026-03-11
41
- * [#2594](https://github.com/stripe/stripe-node/pull/2594) Update generated code for private-preview
42
- * Add support for new resource `Radar.IssuingAuthorizationEvaluation`
43
- * Add support for `create` method on resource `Radar.IssuingAuthorizationEvaluation`
44
- * Add support for new value `fee_credits` on enum `BalanceTransaction.balance_type`
45
- * ⚠️ Rename `affiliate_attributions` to `affiliate_attribution` on `DelegatedCheckout.RequestedSessionConfirmParams` and `DelegatedCheckout.RequestedSessionCreateParams`
46
- * Add support for `amount_to_counter` on `Dispute`
47
- * Add support for `frozen_fields` on `InvoiceItem`
48
- * Add support for new value `next_billing_period_start` on enums `V2.Billing.IntentAction.apply.effective_at.type` and `V2.Billing.IntentCreateParams.actions[].apply.effective_at.type`
49
- * Add support for `consumer` on `V2.Core.Account.configuration.card_creator.capabilities`, `V2.Core.Account.identity.attestations.terms_of_service.card_creator`, `V2.Core.AccountCreateParams.configuration.card_creator.capabilities`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.card_creator`, `V2.Core.AccountUpdateParams.configuration.card_creator.capabilities`, and `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.card_creator`
50
- * Add support for `fifth_third` on `V2.Core.Account.configuration.card_creator.capabilities.commercial`, `V2.Core.Account.identity.attestations.terms_of_service.card_creator.commercial`, `V2.Core.AccountCreateParams.configuration.card_creator.capabilities.commercial`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.card_creator.commercial`, `V2.Core.AccountUpdateParams.configuration.card_creator.capabilities.commercial`, and `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.card_creator.commercial`
51
- * Add support for `prepaid_card` on `V2.Core.Account.configuration.card_creator.capabilities.commercial.cross_river_bank`, `V2.Core.Account.identity.attestations.terms_of_service.card_creator.commercial.cross_river_bank`, `V2.Core.AccountCreateParams.configuration.card_creator.capabilities.commercial.cross_river_bank`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.card_creator.commercial.cross_river_bank`, `V2.Core.AccountUpdateParams.configuration.card_creator.capabilities.commercial.cross_river_bank`, and `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.card_creator.commercial.cross_river_bank`
52
- * Add support for new values `commercial.cross_river_bank.prepaid_card`, `commercial.fifth_third.charge_card`, `consumer.celtic.revolving_credit_card`, `consumer.cross_river_bank.prepaid_card`, and `consumer.lead.prepaid_card` on enums `V2.Core.Account.future_requirements.entries[].impact.restricts_capabilities[].capability` and `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
53
- * Add support for `payment_method_data` on `V2.Payments.OffSessionPaymentCreateParams`
54
- * Change `V2.Payments.OffSessionPaymentCreateParams.payment_method` to be optional
55
- * Add support for new values `commercial.cross_river_bank.prepaid_card`, `commercial.fifth_third.charge_card`, `consumer.celtic.revolving_credit_card`, `consumer.cross_river_bank.prepaid_card`, and `consumer.lead.prepaid_card` on enum `EventsV2CoreAccountIncludingConfigurationCardCreatorCapabilityStatusUpdatedEvent.updated_capability`
56
-
57
- ## 20.5.0-alpha.2 - 2026-03-04
58
- This release changes the pinned API version to `2026-03-04.preview`.
59
-
60
- * [#2586](https://github.com/stripe/stripe-node/pull/2586) Update generated code for private-preview
61
- * Add support for new resources `Billing.AlertRecovered` and `Profile`
62
- * Add support for `reauthorize` method on resource `PaymentIntent`
63
- * Add support for `smart_disputes` on `Account.settings`, `AccountCreateParams.settings`, `AccountUpdateParams.settings`, `V2.Core.Account.configuration.merchant`, `V2.Core.AccountCreateParams.configuration.merchant`, and `V2.Core.AccountUpdateParams.configuration.merchant`
64
- * Add support for `email_customers_on_successful_payment` on `Account.settings.payments`, `AccountCreateParams.settings.payments`, and `AccountUpdateParams.settings.payments`
65
- * Add support for `settings` on `QuoteLine.actions[].add_discount`, `QuoteLine.actions[].add_item.discounts[]`, `QuoteLine.actions[].set_discounts[]`, `QuoteLine.actions[].set_items[].discounts[]`, `QuotePreviewSubscriptionSchedule.phases[].discounts[]`, `QuotePreviewSubscriptionSchedule.phases[].items[].discounts[]`, `SubscriptionSchedule.phases[].discounts[]`, and `SubscriptionSchedule.phases[].items[].discounts[]`
66
- * Add support for `balance_update_details` on `Billing.CreditBalanceSummary.balances[]`
67
- * Add support for `reauthorization` and `reauthorize_before` on `Charge.payment_method_details.card_present`, `Charge.payment_method_details.card`, `ConfirmationToken.payment_method_preview.card.generated_from.payment_method_details.card_present`, `PaymentAttemptRecord.payment_method_details.card_present`, `PaymentMethod.card.generated_from.payment_method_details.card_present`, and `PaymentRecord.payment_method_details.card_present`
68
- * Add support for `location` and `reader` on `Charge.payment_method_details.card_present`, `Charge.payment_method_details.interac_present`, `ConfirmationToken.payment_method_preview.card.generated_from.payment_method_details.card_present`, `PaymentAttemptRecord.payment_method_details.card_present`, `PaymentAttemptRecord.payment_method_details.interac_present`, `PaymentMethod.card.generated_from.payment_method_details.card_present`, `PaymentRecord.payment_method_details.card_present`, and `PaymentRecord.payment_method_details.interac_present`
69
- * Add support for `managed_payments` on `Checkout.SessionCreateParams`, `Checkout.Session`, `PaymentIntent`, `SetupIntent`, and `Subscription`
70
- * Add support for new value `lk_vat` on enums `Checkout.Session.collected_information.tax_ids[].type`, `Checkout.Session.customer_details.tax_ids[].type`, `Invoice.customer_tax_ids[].type`, `Order.tax_details.tax_ids[].type`, `QuotePreviewInvoice.customer_tax_ids[].type`, `Tax.Calculation.customer_details.tax_ids[].type`, `Tax.Transaction.customer_details.tax_ids[].type`, and `TaxId.type`
71
- * Add support for new value `lk_vat` on enums `CustomerCreateParams.tax_id_data[].type`, `CustomerCreateTaxIdParams.type`, `InvoiceCreatePreviewParams.customer_details.tax_ids[].type`, `OrderCreateParams.tax_details.tax_ids[].type`, `OrderUpdateParams.tax_details.tax_ids[].type`, `Tax.CalculationCreateParams.customer_details.tax_ids[].type`, and `TaxIdCreateParams.type`
72
- * Add support for `digital` on `DelegatedCheckout.RequestedSession.fulfillment_details.fulfillment_options[]`, `DelegatedCheckout.RequestedSession.fulfillment_details.selected_fulfillment_option`, and `DelegatedCheckout.RequestedSessionUpdateParams.fulfillment_details.selected_fulfillment_option`
73
- * Change `DelegatedCheckout.RequestedSessionUpdateParams.fulfillment_details.selected_fulfillment_option.shipping` to be optional
74
- * Add support for `affiliate_attributions` on `DelegatedCheckout.RequestedSessionConfirmParams`, `DelegatedCheckout.RequestedSessionCreateParams`, and `DelegatedCheckout.RequestedSession`
75
- * Add support for `fulfillment_type` on `DelegatedCheckout.RequestedSession.line_item_details[]`
76
- * Add support for `marketplace_seller_details`, `network_profile`, `privacy_notice_url`, `return_policy_url`, `store_policy_url`, and `terms_of_service_url` on `DelegatedCheckout.RequestedSession.seller_details`
77
- * Add support for `amount_to_counter` on `DisputeUpdateParams`
78
- * Add support for new values `reserve.hold.created`, `reserve.hold.updated`, `reserve.plan.created`, `reserve.plan.disabled`, `reserve.plan.expired`, `reserve.plan.updated`, and `reserve.release.created` on enum `Event.type`
79
- * Add support for new values `terminal_wifi_certificate` and `terminal_wifi_private_key` on enums `File.purpose` and `FileListParams.purpose`
80
- * Add support for new values `terminal_wifi_certificate` and `terminal_wifi_private_key` on enum `FileCreateParams.purpose`
81
- * Add support for new value `pay_by_bank` on enums `Invoice.payment_settings.payment_method_types`, `InvoiceCreateParams.payment_settings.payment_method_types`, `InvoiceUpdateParams.payment_settings.payment_method_types`, `QuotePreviewInvoice.payment_settings.payment_method_types`, `Subscription.payment_settings.payment_method_types`, `SubscriptionCreateParams.payment_settings.payment_method_types`, and `SubscriptionUpdateParams.payment_settings.payment_method_types`
82
- * Add support for `display_name` and `service_user_number` on `Mandate.payment_method_details.bacs_debit`
83
- * ⚠️ Change type of `PaymentAttemptRecord.payment_method_details.boleto.tax_id` and `PaymentRecord.payment_method_details.boleto.tax_id` from `string` to `string | null`
84
- * Change type of `PaymentAttemptRecord.payment_method_details.us_bank_account.expected_debit_date` and `PaymentRecord.payment_method_details.us_bank_account.expected_debit_date` from `string | null` to `string`
85
- * Add support for `request_reauthorization` on `PaymentIntent.payment_method_options.card_present`, `PaymentIntent.payment_method_options.card`, `PaymentIntentConfirmParams.payment_method_options.card_present`, `PaymentIntentConfirmParams.payment_method_options.card`, `PaymentIntentCreateParams.payment_method_options.card_present`, `PaymentIntentCreateParams.payment_method_options.card`, `PaymentIntentUpdateParams.payment_method_options.card_present`, and `PaymentIntentUpdateParams.payment_method_options.card`
86
- * Add support for `transaction_purpose` on `PaymentIntent.payment_method_options.us_bank_account`, `PaymentIntentConfirmParams.payment_method_options.us_bank_account`, `PaymentIntentCreateParams.payment_method_options.us_bank_account`, and `PaymentIntentUpdateParams.payment_method_options.us_bank_account`
87
- * Add support for new value `requires_reauthorization` on enum `PaymentIntent.status`
88
- * Add support for `optional_items` on `PaymentLinkUpdateParams`
89
- * Add support for new value `billing_schedules_invalid` on enum `Quote.status_details.stale.last_reason.type`
90
- * ⚠️ Remove support for `card_issuer_decline` on `Radar.PaymentEvaluation.insights`
91
- * Add support for `payment_behavior` on `SubscriptionItemDeleteParams`
92
- * Add support for `billing_cycle_anchor` on `Subscription.trial_settings.end_behavior`
93
- * Add support for `lk` on `Tax.Registration.country_options` and `Tax.RegistrationCreateParams.country_options`
94
- * Add support for `cellular` and `stripe_s710` on `Terminal.ConfigurationCreateParams`, `Terminal.ConfigurationUpdateParams`, and `Terminal.Configuration`
95
- * Add support for new values `simulated_stripe_s710` and `stripe_s710` on enums `Terminal.Reader.device_type` and `Terminal.ReaderListParams.device_type`
96
- * Add support for new values `reserve.hold.created`, `reserve.hold.updated`, `reserve.plan.created`, `reserve.plan.disabled`, `reserve.plan.expired`, `reserve.plan.updated`, and `reserve.release.created` on enums `WebhookEndpointCreateParams.enabled_events` and `WebhookEndpointUpdateParams.enabled_events`
97
- * Add support for new value `2026-02-25.clover` on enum `WebhookEndpointCreateParams.api_version`
98
- * Add support for new values `ar_bank_account`, `bt_bank_account`, `co_bank_account`, `cr_bank_account`, `do_bank_account`, `gt_bank_account`, `md_bank_account`, `mk_bank_account`, `mo_bank_account`, `mz_bank_account`, `pe_bank_account`, `pk_bank_account`, `tw_bank_account`, and `uz_bank_account` on enums `V2.Account.configuration.recipient_data.default_outbound_destination.type` and `V2.Core.Account.configuration.recipient.default_outbound_destination.type`
99
- * Add support for `recipient_onboarding` and `recipient_update` on `V2.Core.AccountLink.use_case` and `V2.Core.AccountLinkCreateParams.use_case`
100
- * Add support for new values `recipient_onboarding` and `recipient_update` on enums `V2.Core.AccountLink.use_case.type` and `V2.Core.AccountLinkCreateParams.use_case.type`
101
- * Add support for `consumer` on `V2.Core.Account.configuration.storer.capabilities`, `V2.Core.AccountCreateParams.configuration.storer.capabilities`, and `V2.Core.AccountUpdateParams.configuration.storer.capabilities`
102
- * Add support for new value `consumer.holds_currencies.usd` on enums `V2.Core.Account.future_requirements.entries[].impact.restricts_capabilities[].capability` and `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
103
- * Add support for `funds_usage_type` on `V2.MoneyManagement.FinancialAccount.storage` and `V2.MoneyManagement.FinancialAccountCreateParams.storage`
104
- * Add support for `purpose` on `V2.MoneyManagement.OutboundPaymentCreateParams` and `V2.MoneyManagement.OutboundPayment`
105
- * Add support for `branch_number` and `swift_code` on `V2.MoneyManagement.PayoutMethod.bank_account`
106
- * Add support for new values `dispute`, `inbound_payment_failure`, `inbound_payment`, `india_mdr_processing_fee`, `payment_method_passthrough_fee`, `refund`, and `tax_withholding` on enums `V2.MoneyManagement.Transaction.category` and `V2.MoneyManagement.TransactionEntry.transaction_details.category`
107
- * ⚠️ Remove support for values `charge_failure` and `charge` from enums `V2.MoneyManagement.Transaction.category` and `V2.MoneyManagement.TransactionEntry.transaction_details.category`
108
- * ⚠️ Change `V2.MoneyManagement.Transaction.flow` and `V2.MoneyManagement.TransactionEntry.transaction_details.flow` to be optional
109
- * Add support for new value `consumer.holds_currencies.usd` on enum `EventsV2CoreAccountIncludingConfigurationStorerCapabilityStatusUpdatedEvent.updated_capability`
110
- * Add support for snapshot event `BillingAlertRecoveredEvent` with resource `Billing.AlertRecovered`
111
- * Add support for snapshot events `ReserveHoldCreatedEvent` and `ReserveHoldUpdatedEvent` with resource `Reserve.Hold`
112
- * Add support for snapshot events `ReservePlanCreatedEvent`, `ReservePlanDisabledEvent`, `ReservePlanExpiredEvent`, and `ReservePlanUpdatedEvent` with resource `Reserve.Plan`
113
- * Add support for snapshot event `ReserveReleaseCreatedEvent` with resource `Reserve.Release`
114
- * Add support for event notification `V2BillingRateCardCustomPricingUnitOverageRateCreatedEvent` with related object `V2.Billing.RateCardCustomPricingUnitOverageRate`
115
- * Add support for event notifications `V2IamStripeAccessGrantApprovedEvent`, `V2IamStripeAccessGrantCanceledEvent`, `V2IamStripeAccessGrantDeniedEvent`, `V2IamStripeAccessGrantRemovedEvent`, `V2IamStripeAccessGrantRequestedEvent`, and `V2IamStripeAccessGrantUpdatedEvent`
116
- * Add support for error codes `storer_capability_missing` and `storer_capability_not_active` on `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `QuotePreviewInvoice.last_finalization_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
117
-
118
- ## 20.5.0-alpha.1 - 2026-02-25
119
- This release uses the API version `2026-01-28.preview`.
120
-
121
- * [#2578](https://github.com/stripe/stripe-node/pull/2578) Update generated code for private-preview
122
- * Add support for new resource `AccountSignals`
123
- * Add support for `retrieve` method on resource `AccountSignals`
124
- * Add support for `aggregation_period`, `group_by`, and `triggered_at` on `Billing.AlertTriggered`
125
- * Add support for `external_account_collection` on `AccountLinkCreateParams.collection_options`
126
- * Add support for `funding_source` on `ApplicationFee`
127
- * Change `DelegatedCheckout.RequestedSessionConfirmParams.payment_method_data.billing_details.address.line1`, `DelegatedCheckout.RequestedSessionCreateParams.fulfillment_details.address.line1`, `DelegatedCheckout.RequestedSessionCreateParams.payment_method_data.billing_details.address.line1`, `DelegatedCheckout.RequestedSessionUpdateParams.fulfillment_details.address.line1`, and `DelegatedCheckout.RequestedSessionUpdateParams.payment_method_data.billing_details.address.line1` to be optional
128
- * Add support for `hosted` and `ui_mode` on `FinancialConnections.SessionCreateParams` and `FinancialConnections.Session`
129
- * Add support for `url` on `FinancialConnections.Session`
130
- * Add support for `billing_cycle_anchor` on `SubscriptionCreateParams.trial_settings.end_behavior` and `SubscriptionUpdateParams.trial_settings.end_behavior`
3
+ ## 21.0.0 - 2026-03-25
4
+
5
+ This release changes the pinned API version to `2026-03-25.dahlia` and contains breaking changes (prefixed with ⚠️ below). There's also a [detailed migration guide](https://github.com/stripe/stripe-node/wiki/Migration-guide-for-v21) to simplify your upgrade process.
6
+
7
+ Please review details for the breaking changes and alternatives in the [Stripe API changelog](https://docs.stripe.com/changelog/dahlia) before upgrading.
8
+
9
+ > Note: we're releasing another major version very soon that overhauls and improves the package's structure and typescript types. That will also use `2026-03-25.dahlia` as an API version and will _mostly_ be a drop-in replacement.
10
+
11
+ * ⚠️ **Breaking change:** [#2617](https://github.com/stripe/stripe-node/pull/2617) Add decimal_string support with vendored Decimal type
12
+ - All `decimal_string` fields changed type from `string` to `Stripe.Decimal` in both request params and response objects. Code that reads or writes these fields as `string` will need to use `Stripe.Decimal` instead (construct via `Decimal.from("1.23")`, serialize via `.toString()`). Affected fields across v1 and v2 APIs:
13
+ - **Checkout.Session**: `currency_conversion.fx_rate`
14
+ - **Climate.Order**: `metric_tons`; **Climate.Product**: `metric_tons_available`
15
+ - **CreditNoteLineItem**: `unit_amount_decimal`
16
+ - **InvoiceItem**: `quantity_decimal`, `unit_amount_decimal`
17
+ - **InvoiceLineItem**: `quantity_decimal`, `unit_amount_decimal`
18
+ - **Issuing.Authorization** / **Issuing.Transaction** (and TestHelpers): `quantity_decimal`, `unit_cost_decimal`, `gross_amount_decimal`, `local_amount_decimal`, `national_amount_decimal`
19
+ - **Plan**: `amount_decimal`, `flat_amount_decimal`, `unit_amount_decimal`
20
+ - **Price**: `unit_amount_decimal`, `flat_amount_decimal` (including `currency_options` and `tiers`)
21
+ - **V2.Core.Account** / **V2.Core.AccountPerson**: `percent_ownership`
22
+ - Request params on **Invoice**, **Product**, **Quote**, **Subscription**, **SubscriptionItem**, **SubscriptionSchedule**, **PaymentLink**: `unit_amount_decimal`, `flat_amount_decimal`, `quantity_decimal` (where applicable)
23
+ * ⚠️ **Breaking change:** [#2618](https://github.com/stripe/stripe-node/pull/2618)[#2616](https://github.com/stripe/stripe-node/pull/2616) Throw an error when using the wrong webhook parsing method
24
+ * ⚠️ **Breaking change:** [#2604](https://github.com/stripe/stripe-node/pull/2604) Add new OAuth Error classes
25
+ * ⚠️ **Breaking change:** [#2609](https://github.com/stripe/stripe-node/pull/2609) Drop support for Node 16
26
+ * [#2612](https://github.com/stripe/stripe-node/pull/2612) add manual amount type
27
+ * [#2600](https://github.com/stripe/stripe-node/pull/2600) Add runtime support for V2 int64 string-encoded fields
28
+
29
+ ### ⚠️ Breaking changes due to changes in the Stripe API
30
+
31
+ * Generated changes from [#2611](https://github.com/stripe/stripe-node/pull/2611), [#2620](https://github.com/stripe/stripe-node/pull/2620), [#2618](https://github.com/stripe/stripe-node/pull/2618)
32
+ * Add support for `upi_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
33
+ * Add support for `upi` on `Charge.payment_method_details`, `Checkout.Session.payment_method_options`, `Checkout.SessionCreateParams.payment_method_options`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `Mandate.payment_method_details`, `PaymentAttemptRecord.payment_method_details`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, `PaymentMethodConfiguration`, `PaymentMethodCreateParams`, `PaymentMethod`, `PaymentRecord.payment_method_details`, `SetupAttempt.payment_method_details`, `SetupIntent.payment_method_options`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentConfirmParams.payment_method_options`, `SetupIntentCreateParams.payment_method_data`, `SetupIntentCreateParams.payment_method_options`, `SetupIntentUpdateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_options`
34
+ * Add support for new value `tempo` on enums `Charge.payment_method_details.crypto.network`, `PaymentAttemptRecord.payment_method_details.crypto.network`, and `PaymentRecord.payment_method_details.crypto.network`
35
+ * Add support for `integration_identifier` on `Checkout.SessionCreateParams` and `Checkout.Session`
36
+ * Add support for new value `upi` on enums `Checkout.SessionCreateParams.excluded_payment_method_types`, `PaymentIntent.excluded_payment_method_types`, `PaymentIntentConfirmParams.excluded_payment_method_types`, `PaymentIntentCreateParams.excluded_payment_method_types`, `PaymentIntentUpdateParams.excluded_payment_method_types`, `SetupIntent.excluded_payment_method_types`, `SetupIntentCreateParams.excluded_payment_method_types`, and `SetupIntentUpdateParams.excluded_payment_method_types`
37
+ * Add support for `crypto` on `Checkout.SessionCreateParams.payment_method_options`
38
+ * Add support for new value `upi` on enum `Checkout.SessionCreateParams.payment_method_types`
39
+ * Add support for `pending_invoice_item_interval` on `Checkout.SessionCreateParams.subscription_data`
40
+ * Add support for new values `elements`, `embedded_page`, `form`, and `hosted_page` on enums `Checkout.Session.ui_mode` and `Checkout.SessionCreateParams.ui_mode`
41
+ * Add support for new value `marine_carbon_removal` on enum `Climate.Supplier.removal_pathway`
42
+ * Add support for new value `upi` on enums `ConfirmationTokenCreateParams.testHelpers.payment_method_data.type`, `PaymentIntentConfirmParams.payment_method_data.type`, `PaymentIntentCreateParams.payment_method_data.type`, `PaymentIntentUpdateParams.payment_method_data.type`, `SetupIntentConfirmParams.payment_method_data.type`, `SetupIntentCreateParams.payment_method_data.type`, and `SetupIntentUpdateParams.payment_method_data.type`
43
+ * Add support for new value `upi` on enums `ConfirmationToken.payment_method_preview.type` and `PaymentMethod.type`
44
+ * Add support for `metadata` on `CreditNoteCreateParams.lines[]`, `CreditNoteLineItem`, `CreditNotePreviewLinesParams.lines[]`, and `CreditNotePreviewParams.lines[]`
45
+ * Add support for new value `upi` on enums `CustomerListPaymentMethodsParams.type`, `PaymentMethodCreateParams.type`, and `PaymentMethodListParams.type`
46
+ * Add support for `quantity_decimal` on `InvoiceAddLinesParams.lines[]`, `InvoiceCreatePreviewParams.invoice_items[]`, `InvoiceItemCreateParams`, `InvoiceItemUpdateParams`, `InvoiceItem`, `InvoiceLineItemUpdateParams`, `InvoiceLineItem`, and `InvoiceUpdateLinesParams.lines[]`
47
+ * ⚠️ Add support for `level` on `Issuing.AuthorizationCreateParams.testHelpers.risk_assessment.card_testing_risk` and `Issuing.AuthorizationCreateParams.testHelpers.risk_assessment.merchant_dispute_risk`
48
+ * ⚠️ Remove support for `risk_level` on `Issuing.AuthorizationCreateParams.testHelpers.risk_assessment.card_testing_risk` and `Issuing.AuthorizationCreateParams.testHelpers.risk_assessment.merchant_dispute_risk`
49
+ * Add support for `lifecycle_controls` on `Issuing.CardCreateParams` and `Issuing.Card`
50
+ * ⚠️ Change type of `Issuing.Token.network_data.visa.card_reference_id` from `string` to `string | null`
51
+ * ⚠️ Change type of `PaymentAttemptRecord.payment_method_details.card.brand` and `PaymentRecord.payment_method_details.card.brand` from `enum` to `enum | null`
52
+ * ⚠️ Change type of `PaymentAttemptRecord.payment_method_details.card.exp_month` and `PaymentRecord.payment_method_details.card.exp_month` from `longInteger` to `longInteger | null`
53
+ * ⚠️ Change type of `PaymentAttemptRecord.payment_method_details.card.exp_year` and `PaymentRecord.payment_method_details.card.exp_year` from `longInteger` to `longInteger | null`
54
+ * ⚠️ Change type of `PaymentAttemptRecord.payment_method_details.card.funding` and `PaymentRecord.payment_method_details.card.funding` from `enum('credit'|'debit'|'prepaid'|'unknown')` to `enum('credit'|'debit'|'prepaid'|'unknown') | null`
55
+ * ⚠️ Change type of `PaymentAttemptRecord.payment_method_details.card.last4` and `PaymentRecord.payment_method_details.card.last4` from `string` to `string | null`
56
+ * ⚠️ Change type of `PaymentAttemptRecord.payment_method_details.card.moto` and `PaymentRecord.payment_method_details.card.moto` from `boolean` to `boolean | null`
57
+ * Add support for `cryptogram`, `electronic_commerce_indicator`, `exemption_indicator_applied`, and `exemption_indicator` on `PaymentAttemptRecord.payment_method_details.card.three_d_secure` and `PaymentRecord.payment_method_details.card.three_d_secure`
58
+ * Add support for `upi_handle_redirect_or_display_qr_code` on `PaymentIntent.next_action` and `SetupIntent.next_action`
59
+ * Add support for new value `upi` on enums `PaymentLink.payment_method_types`, `PaymentLinkCreateParams.payment_method_types`, and `PaymentLinkUpdateParams.payment_method_types`
60
+ * Add support for `recommended_action` and `signals` on `Radar.PaymentEvaluation`
61
+ * ⚠️ Remove support for `insights` on `Radar.PaymentEvaluation`
62
+ * Add support for new value `crypto_fingerprint` on enums `Radar.ValueList.item_type` and `Radar.ValueListCreateParams.item_type`
63
+ * Add support for new value `canceled_by_retention_policy` on enum `Subscription.cancellation_details.reason`
64
+ * Add support for new value `2026-03-25.dahlia` on enum `WebhookEndpointCreateParams.api_version`
65
+ * ⚠️ Change type of `V2.Core.EventDestination.events_from` and `V2.Core.EventDestinationCreateParams.events_from` from `enum('other_accounts'|'self')` to `string`
66
+ * Add support for error code `service_period_coupon_with_metered_tiered_item_unsupported` on `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
131
67
 
132
68
  ## 20.4.1 - 2026-03-06
133
69
  * [#2590](https://github.com/stripe/stripe-node/pull/2590) Add Stripe-Request-Trigger header
@@ -162,86 +98,6 @@ This release changes the pinned API version to `2026-02-25.clover`.
162
98
  * Add support for snapshot event `ReserveReleaseCreatedEvent` with resource `Reserve.Release`
163
99
  * Add support for error codes `storer_capability_missing` and `storer_capability_not_active` on `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
164
100
 
165
- ## 20.4.0-alpha.4 - 2026-02-19
166
- * [#2574](https://github.com/stripe/stripe-node/pull/2574) Update generated code for private-preview
167
- * ⚠️ Add support for new value `spend_threshold` on enums `Billing.Alert.alert_type`, `Billing.AlertCreateParams.alert_type`, and `Billing.AlertListParams.alert_type`
168
- * Add support for `spend_threshold` on `Billing.AlertCreateParams` and `Billing.Alert`
169
- * Add support for `invoice_item`, `proration_details`, `proration`, and `subscription` on `InvoiceLineItem.parent.schedule_details`
170
- * Add support for `custom` on `PaymentMethodUpdateParams`
171
- * Add support for `payment_method_reference` and `usage` on `PaymentMethod.custom`
172
- * Add support for `outstanding_usage_through` and `unused_time_from` on `SubscriptionPauseParams.bill_for`
173
- * ⚠️ Remove support for `outstanding_usage` and `unused_time` on `SubscriptionPauseParams.bill_for`
174
- * ⚠️ Remove support for `payment_behavior` on `SubscriptionResumeParams`
175
-
176
- ## 20.4.0-alpha.3 - 2026-02-11
177
- * [#2572](https://github.com/stripe/stripe-node/pull/2572) Update generated code for private-preview
178
- * Add support for new resources `V2.Billing.CadenceSpendModifier`, `V2.Billing.OneTimeItem`, and `V2.Billing.RateCardCustomPricingUnitOverageRate`
179
- * Add support for `create`, `del`, `list`, and `retrieve` methods on resource `V2.Billing.RateCardCustomPricingUnitOverageRate`
180
- * Add support for `create`, `list`, `retrieve`, and `update` methods on resource `V2.Billing.OneTimeItem`
181
- * Add support for `retrieve` method on resource `V2.Billing.CadenceSpendModifier`
182
- * Change `EventsV2CoreHealthFraudRateIncreasedEvent.impact.realized_fraud_amount.value`, `EventsV2CoreHealthIssuingAuthorizationRequestErrorsFiringEvent.impact.approved_amount.value`, `EventsV2CoreHealthIssuingAuthorizationRequestErrorsFiringEvent.impact.declined_amount.value`, `EventsV2CoreHealthIssuingAuthorizationRequestErrorsResolvedEvent.impact.approved_amount.value`, `EventsV2CoreHealthIssuingAuthorizationRequestErrorsResolvedEvent.impact.declined_amount.value`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutFiringEvent.impact.approved_amount.value`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutFiringEvent.impact.declined_amount.value`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutResolvedEvent.impact.approved_amount.value`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutResolvedEvent.impact.declined_amount.value`, `V2.Billing.ServiceAction.credit_grant.amount.monetary.value`, `V2.Billing.ServiceAction.credit_grant_per_tenant.amount.monetary.value`, `V2.Billing.ServiceActionCreateParams.credit_grant.amount.monetary.value`, `V2.Billing.ServiceActionCreateParams.credit_grant_per_tenant.amount.monetary.value`, `V2.Core.Account.identity.business_details.annual_revenue.amount.value`, `V2.Core.Account.identity.business_details.monthly_estimated_revenue.amount.value`, `V2.Core.AccountCreateParams.identity.business_details.annual_revenue.amount.value`, `V2.Core.AccountCreateParams.identity.business_details.monthly_estimated_revenue.amount.value`, `V2.Core.AccountTokenCreateParams.identity.business_details.annual_revenue.amount.value`, `V2.Core.AccountTokenCreateParams.identity.business_details.monthly_estimated_revenue.amount.value`, `V2.Core.AccountUpdateParams.identity.business_details.annual_revenue.amount.value`, `V2.Core.AccountUpdateParams.identity.business_details.monthly_estimated_revenue.amount.value`, `V2.FinancialAddressCreditSimulationCreditParams.amount.value`, `V2.FinancialAddressGeneratedMicrodeposits.amounts[].value`, `V2.MoneyManagement.Adjustment.amount.value`, `V2.MoneyManagement.CurrencyConversion.from.amount.value`, `V2.MoneyManagement.CurrencyConversion.to.amount.value`, `V2.MoneyManagement.CurrencyConversionCreateParams.from.amount.value`, `V2.MoneyManagement.CurrencyConversionCreateParams.to.amount.value`, `V2.MoneyManagement.FinancialAccount.balance.available.value.value`, `V2.MoneyManagement.FinancialAccount.balance.inbound_pending.value.value`, `V2.MoneyManagement.FinancialAccount.balance.outbound_pending.value.value`, `V2.MoneyManagement.FinancialAccount.payments.starting_balance.available.value.value`, `V2.MoneyManagement.InboundTransfer.amount.value`, `V2.MoneyManagement.InboundTransfer.from.debited.value`, `V2.MoneyManagement.InboundTransfer.to.credited.value`, `V2.MoneyManagement.InboundTransferCreateParams.amount.value`, `V2.MoneyManagement.OutboundPayment.amount.value`, `V2.MoneyManagement.OutboundPayment.from.debited.value`, `V2.MoneyManagement.OutboundPayment.to.credited.value`, `V2.MoneyManagement.OutboundPaymentCreateParams.amount.value`, `V2.MoneyManagement.OutboundPaymentQuote.amount.value`, `V2.MoneyManagement.OutboundPaymentQuote.estimated_fees[].amount.value`, `V2.MoneyManagement.OutboundPaymentQuote.from.debited.value`, `V2.MoneyManagement.OutboundPaymentQuote.to.credited.value`, `V2.MoneyManagement.OutboundPaymentQuoteCreateParams.amount.value`, `V2.MoneyManagement.OutboundTransfer.amount.value`, `V2.MoneyManagement.OutboundTransfer.from.debited.value`, `V2.MoneyManagement.OutboundTransfer.to.credited.value`, `V2.MoneyManagement.OutboundTransferCreateParams.amount.value`, `V2.MoneyManagement.ReceivedCredit.amount.value`, `V2.MoneyManagement.ReceivedCredit.external_amount.value`, `V2.MoneyManagement.ReceivedDebit.amount.value`, `V2.MoneyManagement.ReceivedDebit.card_spend.authorization.amount.value`, `V2.MoneyManagement.ReceivedDebit.card_spend.card_transactions[].amount.value`, `V2.MoneyManagement.ReceivedDebit.external_amount.value`, `V2.MoneyManagement.Transaction.amount.value`, `V2.MoneyManagement.Transaction.balance_impact.available.value`, `V2.MoneyManagement.Transaction.balance_impact.inbound_pending.value`, `V2.MoneyManagement.Transaction.balance_impact.outbound_pending.value`, `V2.MoneyManagement.TransactionEntry.balance_impact.available.value`, `V2.MoneyManagement.TransactionEntry.balance_impact.inbound_pending.value`, `V2.MoneyManagement.TransactionEntry.balance_impact.outbound_pending.value`, `V2.Payments.OffSessionPayment.amount_capturable.value`, `V2.Payments.OffSessionPayment.amount_requested.value`, `V2.Payments.OffSessionPaymentCreateParams.amount.value`, `V2.Payments.SettlementAllocationIntent.amount.value`, `V2.Payments.SettlementAllocationIntentCreateParams.amount.value`, `V2.Payments.SettlementAllocationIntentSplit.amount.value`, `V2.Payments.SettlementAllocationIntentSplitCreateParams.amount.value`, and `V2.Payments.SettlementAllocationIntentUpdateParams.amount.value` to be required
183
- * Change `EventsV2CoreHealthFraudRateIncreasedEvent.impact.realized_fraud_amount.currency`, `EventsV2CoreHealthIssuingAuthorizationRequestErrorsFiringEvent.impact.approved_amount.currency`, `EventsV2CoreHealthIssuingAuthorizationRequestErrorsFiringEvent.impact.declined_amount.currency`, `EventsV2CoreHealthIssuingAuthorizationRequestErrorsResolvedEvent.impact.approved_amount.currency`, `EventsV2CoreHealthIssuingAuthorizationRequestErrorsResolvedEvent.impact.declined_amount.currency`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutFiringEvent.impact.approved_amount.currency`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutFiringEvent.impact.declined_amount.currency`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutResolvedEvent.impact.approved_amount.currency`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutResolvedEvent.impact.declined_amount.currency`, `V2.Billing.ServiceAction.credit_grant.amount.monetary.currency`, `V2.Billing.ServiceAction.credit_grant_per_tenant.amount.monetary.currency`, `V2.Billing.ServiceActionCreateParams.credit_grant.amount.monetary.currency`, `V2.Billing.ServiceActionCreateParams.credit_grant_per_tenant.amount.monetary.currency`, `V2.Core.Account.identity.business_details.annual_revenue.amount.currency`, `V2.Core.Account.identity.business_details.monthly_estimated_revenue.amount.currency`, `V2.Core.AccountCreateParams.identity.business_details.annual_revenue.amount.currency`, `V2.Core.AccountCreateParams.identity.business_details.monthly_estimated_revenue.amount.currency`, `V2.Core.AccountTokenCreateParams.identity.business_details.annual_revenue.amount.currency`, `V2.Core.AccountTokenCreateParams.identity.business_details.monthly_estimated_revenue.amount.currency`, `V2.Core.AccountUpdateParams.identity.business_details.annual_revenue.amount.currency`, `V2.Core.AccountUpdateParams.identity.business_details.monthly_estimated_revenue.amount.currency`, `V2.FinancialAddressCreditSimulationCreditParams.amount.currency`, `V2.FinancialAddressGeneratedMicrodeposits.amounts[].currency`, `V2.MoneyManagement.Adjustment.amount.currency`, `V2.MoneyManagement.CurrencyConversion.from.amount.currency`, `V2.MoneyManagement.CurrencyConversion.to.amount.currency`, `V2.MoneyManagement.CurrencyConversionCreateParams.from.amount.currency`, `V2.MoneyManagement.CurrencyConversionCreateParams.to.amount.currency`, `V2.MoneyManagement.FinancialAccount.balance.available.value.currency`, `V2.MoneyManagement.FinancialAccount.balance.inbound_pending.value.currency`, `V2.MoneyManagement.FinancialAccount.balance.outbound_pending.value.currency`, `V2.MoneyManagement.FinancialAccount.payments.starting_balance.available.value.currency`, `V2.MoneyManagement.InboundTransfer.amount.currency`, `V2.MoneyManagement.InboundTransfer.from.debited.currency`, `V2.MoneyManagement.InboundTransfer.to.credited.currency`, `V2.MoneyManagement.InboundTransferCreateParams.amount.currency`, `V2.MoneyManagement.OutboundPayment.amount.currency`, `V2.MoneyManagement.OutboundPayment.from.debited.currency`, `V2.MoneyManagement.OutboundPayment.to.credited.currency`, `V2.MoneyManagement.OutboundPaymentCreateParams.amount.currency`, `V2.MoneyManagement.OutboundPaymentQuote.amount.currency`, `V2.MoneyManagement.OutboundPaymentQuote.estimated_fees[].amount.currency`, `V2.MoneyManagement.OutboundPaymentQuote.from.debited.currency`, `V2.MoneyManagement.OutboundPaymentQuote.to.credited.currency`, `V2.MoneyManagement.OutboundPaymentQuoteCreateParams.amount.currency`, `V2.MoneyManagement.OutboundTransfer.amount.currency`, `V2.MoneyManagement.OutboundTransfer.from.debited.currency`, `V2.MoneyManagement.OutboundTransfer.to.credited.currency`, `V2.MoneyManagement.OutboundTransferCreateParams.amount.currency`, `V2.MoneyManagement.ReceivedCredit.amount.currency`, `V2.MoneyManagement.ReceivedCredit.external_amount.currency`, `V2.MoneyManagement.ReceivedDebit.amount.currency`, `V2.MoneyManagement.ReceivedDebit.card_spend.authorization.amount.currency`, `V2.MoneyManagement.ReceivedDebit.card_spend.card_transactions[].amount.currency`, `V2.MoneyManagement.ReceivedDebit.external_amount.currency`, `V2.MoneyManagement.Transaction.amount.currency`, `V2.MoneyManagement.Transaction.balance_impact.available.currency`, `V2.MoneyManagement.Transaction.balance_impact.inbound_pending.currency`, `V2.MoneyManagement.Transaction.balance_impact.outbound_pending.currency`, `V2.MoneyManagement.TransactionEntry.balance_impact.available.currency`, `V2.MoneyManagement.TransactionEntry.balance_impact.inbound_pending.currency`, `V2.MoneyManagement.TransactionEntry.balance_impact.outbound_pending.currency`, `V2.Payments.OffSessionPayment.amount_capturable.currency`, `V2.Payments.OffSessionPayment.amount_requested.currency`, `V2.Payments.OffSessionPaymentCreateParams.amount.currency`, `V2.Payments.SettlementAllocationIntent.amount.currency`, `V2.Payments.SettlementAllocationIntentCreateParams.amount.currency`, `V2.Payments.SettlementAllocationIntentSplit.amount.currency`, `V2.Payments.SettlementAllocationIntentSplitCreateParams.amount.currency`, and `V2.Payments.SettlementAllocationIntentUpdateParams.amount.currency` to be required
184
- * Add support for `settlement_type` on `ApplicationFee`
185
- * Add support for `rate_card_custom_pricing_unit_overage_rate_details` on `InvoiceItem.pricing` and `InvoiceLineItem.pricing`
186
- * Add support for new value `rate_card_custom_pricing_unit_overage_rate_details` on enums `InvoiceItem.pricing.type` and `InvoiceLineItem.pricing.type`
187
- * Add support for `default_settings` on `InvoiceCreatePreviewParams.schedule_details`
188
- * Change type of `QuoteUpdateParams.subscription_data_overrides[].billing_schedules` from `emptyable(array(billing_schedules_update_specs))` to `array(billing_schedules_update_specs)`
189
- * Add support for `payment_behavior` on `SubscriptionResumeParams`
190
- * Add support for `effective_at` and `spend_modifier_rule` on `V2.Billing.IntentAction.apply`, `V2.Billing.IntentAction.remove`, `V2.Billing.IntentCreateParams.actions[].apply`, and `V2.Billing.IntentCreateParams.actions[].remove`
191
- * Change type of `V2.Billing.IntentAction.apply.type`, `V2.Billing.IntentAction.remove.type`, `V2.Billing.IntentCreateParams.actions[].apply.type`, and `V2.Billing.IntentCreateParams.actions[].remove.type` from `literal('invoice_discount_rule')` to `enum('invoice_discount_rule'|'spend_modifier_rule')`
192
-
193
- ## 20.4.0-alpha.2 - 2026-02-04
194
- * [#2567](https://github.com/stripe/stripe-node/pull/2567) Update generated code for private-preview
195
- * Add support for new resource `V2.Core.ConnectionSession`
196
- * Add support for `create` and `retrieve` methods on resource `V2.Core.ConnectionSession`
197
- * Add support for `list` method on resources `V2.Payments.SettlementAllocationIntentSplit` and `V2.Payments.SettlementAllocationIntent`
198
- * Add support for `agentic_commerce_settings` on `AccountSessionCreateParams.components`
199
- * Add support for `terminal_hardware_orders` and `terminal_hardware_shop` on `AccountSession.components` and `AccountSessionCreateParams.components`
200
- * Add support for `network_cost_passthrough_report` on `AccountSession.components`
201
- * Add support for new values `ae_bank_account`, `ag_bank_account`, `bh_bank_account`, `gm_bank_account`, `hk_bank_account`, `kh_bank_account`, `lc_bank_account`, `mc_bank_account`, `mg_bank_account`, `my_bank_account`, `qa_bank_account`, `rw_bank_account`, `th_bank_account`, `tt_bank_account`, and `vn_bank_account` on enums `V2.Account.configuration.recipient_data.default_outbound_destination.type` and `V2.Core.Account.configuration.recipient.default_outbound_destination.type`
202
- * Add support for `cadence_data` on `V2.Billing.IntentCreateParams` and `V2.Billing.Intent`
203
- * Add support for `cancellation_details` on `V2.Billing.IntentAction.deactivate`, `V2.Billing.IntentCreateParams.actions[].deactivate`, and `V2.Billing.PricingPlanSubscription`
204
- * Add support for `contact_phone` on `V2.Core.AccountCreateParams`, `V2.Core.AccountTokenCreateParams`, `V2.Core.AccountUpdateParams`, and `V2.Core.Account`
205
- * Add support for `registration_date` on `V2.Core.Account.identity.business_details`, `V2.Core.AccountCreateParams.identity.business_details`, `V2.Core.AccountTokenCreateParams.identity.business_details`, and `V2.Core.AccountUpdateParams.identity.business_details`
206
- * Add support for new value `gb_vat` on enums `V2.Core.Account.identity.business_details.id_numbers[].type`, `V2.Core.AccountCreateParams.identity.business_details.id_numbers[].type`, `V2.Core.AccountTokenCreateParams.identity.business_details.id_numbers[].type`, and `V2.Core.AccountUpdateParams.identity.business_details.id_numbers[].type`
207
- * Add support for `reference` on `V2.MoneyManagement.Adjustment`
208
- * Add support for `accrued_fees` on `V2.MoneyManagement.FinancialAccount`
209
- * Add support for `starting_balance` on `V2.MoneyManagement.FinancialAccount.payments`
210
- * Add support for new value `accrued_fees` on enum `V2.MoneyManagement.FinancialAccount.type`
211
- * Add support for `account_holder_address` and `account_holder_name` on `V2.MoneyManagement.FinancialAddress.credentials.us_bank_account`
212
- * Add support for `fingerprint` on `V2.MoneyManagement.PayoutMethod.card`
213
- * Add support for `card_spend` on `V2.MoneyManagement.ReceivedCredit` and `V2.MoneyManagement.ReceivedDebit`
214
- * Add support for new value `card_spend` on enum `V2.MoneyManagement.ReceivedCredit.type`
215
- * Add support for new value `card_spend` on enum `V2.MoneyManagement.ReceivedDebit.type`
216
- * Add support for new values `advance`, `anticipation_repayment`, `balance_transfer`, `charge_failure`, `charge`, `climate_order_purchase`, `climate_order_refund`, `connect_collection_transfer`, `connect_reserved_funds`, `contribution`, `dispute_reversal`, `financing_paydown_reversal`, `financing_paydown`, `inbound_transfer_reversal`, `issuing_dispute_fraud_liability_debit`, `issuing_dispute_provisional_credit_reversal`, `issuing_dispute_provisional_credit`, `issuing_dispute`, `minimum_balance_hold`, `network_cost`, `obligation`, `outbound_payment_reversal`, `outbound_transfer_reversal`, `partial_capture_reversal`, `payment_network_reserved_funds`, `platform_earning_refund`, `platform_earning`, `platform_fee`, `received_credit_reversal`, `received_debit_reversal`, `refund_failure`, `risk_reserved_funds`, `stripe_balance_payment_debit_reversal`, `stripe_balance_payment_debit`, `stripe_fee_tax`, `transfer_reversal`, and `unreconciled_customer_funds` on enums `V2.MoneyManagement.Transaction.category` and `V2.MoneyManagement.TransactionEntry.transaction_details.category`
217
- * Add support for `application_fee_refund`, `application_fee`, `charge`, `dispute`, `payout`, `refund`, `reserve_hold`, `reserve_release`, `topup`, `transfer_reversal`, and `transfer` on `V2.MoneyManagement.Transaction.flow` and `V2.MoneyManagement.TransactionEntry.transaction_details.flow`
218
- * Add support for new values `application_fee_refund`, `application_fee`, `charge`, `dispute`, `payout`, `refund`, `reserve_hold`, `reserve_release`, `topup`, `transfer_reversal`, and `transfer` on enums `V2.MoneyManagement.Transaction.flow.type` and `V2.MoneyManagement.TransactionEntry.transaction_details.flow.type`
219
- * Change `V2.Payments.SettlementAllocationIntentSplit.flow` to be optional
220
- * Add support for new value `accrued_fees` on enum `V2.MoneyManagement.FinancialAccountListParams.types`
221
- * Change `V2.Billing.RateCardRateCreateParams.metered_item` to be required
222
- * Add support for error codes `blocked_payout_method` and `unsupported_payout_method` on `BlockedByStripeError`
223
- * Add support for error code `invalid_payout_method_data` on `InvalidPayoutMethodError`
224
- * Add support for error code `limit_payout_method` on `QuotaExceededError`
225
-
226
- ## 20.4.0-alpha.1 - 2026-01-28
227
- This release changes the pinned API version to `2026-01-28.preview`.
228
-
229
- * [#2565](https://github.com/stripe/stripe-node/pull/2565) Update generated code for private-preview
230
- * Add support for new resources `FrMealVouchersOnboarding`, `Reserve.Hold`, `Reserve.Plan`, and `Reserve.Release`
231
- * Add support for `create`, `list`, `retrieve`, and `update` methods on resource `FrMealVouchersOnboarding`
232
- * Add support for `list` and `retrieve` methods on resources `Reserve.Hold` and `Reserve.Release`
233
- * Add support for `retrieve` method on resource `Reserve.Plan`
234
- * Add support for `pause` method on resource `Subscription`
235
- * Add support for `service_period_details` on `Discount`
236
- * Add support for `agentic_commerce_settings` on `AccountSession.components`
237
- * Add support for new value `risk_reserved` on enum `BalanceTransaction.balance_type`
238
- * Add support for new value `service_period` on enums `Checkout.SessionCreateParams.discounts[].coupon_data.duration`, `Checkout.SessionUpdateParams.discounts[].coupon_data.duration`, `Coupon.duration`, and `CouponCreateParams.duration`
239
- * Add support for `service_period` on `CouponCreateParams` and `Coupon`
240
- * Change type of `InvoiceItem.pricing.price_details.price` and `InvoiceLineItem.pricing.price_details.price` from `string` to `expandable(Price)`
241
- * Add support for `settings` on `InvoiceCreatePreviewParams.discounts[]`, `InvoiceCreatePreviewParams.schedule_details.amendments[].discount_actions[].add`, `InvoiceCreatePreviewParams.schedule_details.amendments[].discount_actions[].set`, `InvoiceCreatePreviewParams.schedule_details.amendments[].item_actions[].add.discounts[]`, `InvoiceCreatePreviewParams.schedule_details.amendments[].item_actions[].set.discounts[]`, `InvoiceCreatePreviewParams.schedule_details.phases[].discounts[]`, `InvoiceCreatePreviewParams.schedule_details.phases[].items[].discounts[]`, `InvoiceCreatePreviewParams.subscription_details.items[].discounts[]`, `QuoteCreateParams.lines[].actions[].add_discount`, `QuoteCreateParams.lines[].actions[].add_item.discounts[]`, `QuoteCreateParams.lines[].actions[].set_discounts[]`, `QuoteCreateParams.lines[].actions[].set_items[].discounts[]`, `QuoteUpdateParams.lines[].actions[].add_discount`, `QuoteUpdateParams.lines[].actions[].add_item.discounts[]`, `QuoteUpdateParams.lines[].actions[].set_discounts[]`, `QuoteUpdateParams.lines[].actions[].set_items[].discounts[]`, `SubscriptionCreateParams.discounts[]`, `SubscriptionCreateParams.items[].discounts[]`, `SubscriptionItemCreateParams.discounts[]`, `SubscriptionItemUpdateParams.discounts[]`, `SubscriptionScheduleAmendParams.amendments[].discount_actions[].add`, `SubscriptionScheduleAmendParams.amendments[].discount_actions[].set`, `SubscriptionScheduleAmendParams.amendments[].item_actions[].add.discounts[]`, `SubscriptionScheduleAmendParams.amendments[].item_actions[].set.discounts[]`, `SubscriptionScheduleCreateParams.phases[].discounts[]`, `SubscriptionScheduleCreateParams.phases[].items[].discounts[]`, `SubscriptionScheduleUpdateParams.phases[].discounts[]`, `SubscriptionScheduleUpdateParams.phases[].items[].discounts[]`, `SubscriptionUpdateParams.discounts[]`, and `SubscriptionUpdateParams.items[].discounts[]`
242
- * Add support for `subtotal` on `InvoiceLineItem`
243
- * Add support for `billing_cadence` on `SubscriptionListParams`
244
-
245
101
  ## 20.3.1 - 2026-02-05
246
102
  * [#2571](https://github.com/stripe/stripe-node/pull/2571) Fix `UnhandledPromiseRejection` error on failed V2 List operations
247
103
  - Fixes a bug where any error returned from the Stripe API on a V2 List call (e.g. a 4xx or 5xx) would crash Node due to an `UnhandledPromiseRejection`
@@ -273,90 +129,12 @@ This release changes the pinned API version to `2026-01-28.clover`.
273
129
  - Remove the `qs` dependency, addressing [Issue #2117](https://github.com/stripe/stripe-node/issues/2117).
274
130
  * [#2562](https://github.com/stripe/stripe-node/pull/2562) Document usage of undocumented API parameters
275
131
 
276
- ## 20.3.0-alpha.1 - 2026-01-21
277
- * [#2559](https://github.com/stripe/stripe-node/pull/2559) Update generated code for private-preview
278
- * Remove support for `pause` method on resource `Subscription`
279
- * Change type of `Quote.subscription_data.phase_effective_at` and `Quote.subscription_data_overrides[].phase_effective_at` from `enum('billing_period_start'|'phase_start')` to `enum('billing_period_start'|'phase_start') | null`
280
-
281
132
  ## 20.2.0 - 2026-01-16
282
133
  * [#2551](https://github.com/stripe/stripe-node/pull/2551) Update generated code
283
134
  * Add support for event notifications `V2CoreAccountClosedEvent`, `V2CoreAccountCreatedEvent`, `V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEvent`, `V2CoreAccountIncludingConfigurationCustomerUpdatedEvent`, `V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEvent`, `V2CoreAccountIncludingConfigurationMerchantUpdatedEvent`, `V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent`, `V2CoreAccountIncludingConfigurationRecipientUpdatedEvent`, `V2CoreAccountIncludingDefaultsUpdatedEvent`, `V2CoreAccountIncludingFutureRequirementsUpdatedEvent`, `V2CoreAccountIncludingIdentityUpdatedEvent`, `V2CoreAccountIncludingRequirementsUpdatedEvent`, and `V2CoreAccountUpdatedEvent` with related object `V2.Core.Account`
284
135
  * Add support for event notification `V2CoreAccountLinkReturnedEvent`
285
136
  * Add support for event notifications `V2CoreAccountPersonCreatedEvent`, `V2CoreAccountPersonDeletedEvent`, and `V2CoreAccountPersonUpdatedEvent` with related object `V2.Core.AccountPerson`
286
137
 
287
- ## 20.2.0-alpha.6 - 2026-01-14
288
- * [#2544](https://github.com/stripe/stripe-node/pull/2544) Update generated code for private-preview
289
- * Add support for `risk_details` on `DelegatedCheckout.RequestedSession`
290
- * Remove support for `description`, `images`, and `name` on `DelegatedCheckout.RequestedSession.line_item_details[]`
291
- * Add support for `name` on `ProductCatalog.TrialOfferCreateParams` and `ProductCatalog.TrialOffer`
292
- * Add support for `login_failed` and `registration_failed` on `Radar.AccountEvaluation.events[]` and `Radar.AccountEvaluationUpdateParams`
293
- * Change type of `Radar.AccountEvaluationUpdateParams.type` from `literal('registration_succeeded')` to `enum('login_failed'|'login_succeeded'|'registration_failed'|'registration_succeeded')`
294
-
295
- ## 20.2.0-alpha.2 - 2026-01-07
296
- * [#2537](https://github.com/stripe/stripe-node/pull/2537) Update generated code for private-preview
297
- * Add support for `tracking_details` on `V2.MoneyManagement.OutboundPayment`
298
- * Add support for `paper_check` on `V2.MoneyManagement.OutboundPayment.delivery_options` and `V2.MoneyManagement.OutboundPaymentCreateParams.delivery_options`
299
- * Add support for event notification `V2CoreAccountIncludingFutureRequirementsUpdatedEvent` with related object `V2.Core.Account`
300
- * Add support for error code `account_rate_limit_exceeded` on `RateLimitError`
301
- * [#2524](https://github.com/stripe/stripe-node/pull/2524) Update generated code for private-preview
302
- * Add support for new resource `Tax.Location`
303
- * Add support for `create`, `list`, and `retrieve` methods on resource `Tax.Location`
304
- * Add support for `pause` method on resource `Subscription`
305
- * Add support for `performance_location` on `Checkout.SessionCreateParams.line_items[].price_data.product_data.tax_details`, `Checkout.SessionUpdateParams.line_items[].price_data.product_data.tax_details`, `InvoiceAddLinesParams.lines[].price_data.product_data.tax_details`, `InvoiceLineItemUpdateParams.price_data.product_data.tax_details`, `InvoiceUpdateLinesParams.lines[].price_data.product_data.tax_details`, `PaymentLinkCreateParams.line_items[].price_data.product_data.tax_details`, `ProductCreateParams.tax_details`, `ProductUpdateParams.tax_details`, `Tax.CalculationCreateParams.line_items[]`, and `Tax.CalculationLineItem`
306
- * Add support for new value `performance` on enums `Tax.Calculation.shipping_cost.tax_breakdown[].sourcing`, `Tax.CalculationLineItem.tax_breakdown[].sourcing`, and `Tax.Transaction.shipping_cost.tax_breakdown[].sourcing`
307
- * Add support for new values `admissions_tax`, `attendance_tax`, `entertainment_tax`, `gross_receipts_tax`, `hospitality_tax`, `luxury_tax`, `resort_tax`, and `tourism_tax` on enums `Tax.Calculation.shipping_cost.tax_breakdown[].tax_rate_details.tax_type`, `Tax.Calculation.tax_breakdown[].tax_rate_details.tax_type`, `Tax.CalculationLineItem.tax_breakdown[].tax_rate_details.tax_type`, and `Tax.Transaction.shipping_cost.tax_breakdown[].tax_rate_details.tax_type`
308
- * Change type of `DelegatedCheckout.RequestedSessionUpdateParams.metadata` from `map(string: string)` to `emptyable(map(string: string))`
309
- * Change type of `DelegatedCheckout.RequestedSessionUpdateParams.payment_method_data` from `payment_method_data` to `emptyable(payment_method_data)`
310
- * Change type of `DelegatedCheckout.RequestedSessionUpdateParams.shared_metadata` from `map(string: string)` to `emptyable(map(string: string))`
311
- * Add support for `subscription` on `Invoice.parent.schedule_details` and `QuotePreviewInvoice.parent.schedule_details`
312
- * Change type of `PaymentIntentConfirmParams.payment_details.benefit.fr_meal_voucher`, `PaymentIntentCreateParams.payment_details.benefit.fr_meal_voucher`, `PaymentIntentUpdateParams.payment_details.benefit.fr_meal_voucher`, `SetupIntentConfirmParams.setup_details.benefit.fr_meal_voucher`, `SetupIntentCreateParams.setup_details.benefit.fr_meal_voucher`, and `SetupIntentUpdateParams.setup_details.benefit.fr_meal_voucher` from `payment_details_benefit_fr_meal_voucher` to `emptyable(payment_details_benefit_fr_meal_voucher)`
313
- * Add support for `tax_details` on `PlanCreateParams.product[0]` and `PriceCreateParams.product_data`
314
- * Add support for `external_reference` on `Plan` and `Price`
315
- * Add support for new value `phase_start` on enums `Quote.subscription_data.phase_effective_at`, `Quote.subscription_data_overrides[].phase_effective_at`, `QuoteCreateParams.subscription_data.phase_effective_at`, `QuoteCreateParams.subscription_data_overrides[].phase_effective_at`, `QuoteUpdateParams.subscription_data.phase_effective_at`, and `QuoteUpdateParams.subscription_data_overrides[].phase_effective_at`
316
- * Remove support for value `line_start` from enums `Quote.subscription_data.phase_effective_at`, `Quote.subscription_data_overrides[].phase_effective_at`, `QuoteCreateParams.subscription_data.phase_effective_at`, `QuoteCreateParams.subscription_data_overrides[].phase_effective_at`, `QuoteUpdateParams.subscription_data.phase_effective_at`, and `QuoteUpdateParams.subscription_data_overrides[].phase_effective_at`
317
- * Add support for new values `admissions_tax`, `attendance_tax`, `entertainment_tax`, `gross_receipts_tax`, `hospitality_tax`, `luxury_tax`, `resort_tax`, and `tourism_tax` on enums `Tax.Registration.country_options.us.type` and `Tax.RegistrationCreateParams.country_options.us.type`
318
- * Add support for `admissions_tax`, `attendance_tax`, `entertainment_tax`, `gross_receipts_tax`, `hospitality_tax`, `luxury_tax`, `resort_tax`, and `tourism_tax` on `Tax.Registration.country_options.us`
319
- * Add support for `requirements` on `TaxCode`
320
-
321
- ## 20.2.0-alpha.1 - 2025-12-14
322
- * [#2520](https://github.com/stripe/stripe-node/pull/2520) Update generated code for private-preview
323
- * Add support for new resources `SharedPayment.GrantedToken`, `V2.Iam.ApiKey`, `V2.Payments.SettlementAllocationIntentSplit`, `V2.Payments.SettlementAllocationIntent`, and `V2.Tax.ManualRule`
324
- * Add support for `retrieve` method on resource `SharedPayment.GrantedToken`
325
- * Add support for `create` and `update` test helper methods on resource `SharedPayment.GrantedToken`
326
- * Add support for `create`, `deactivate`, `list`, `retrieve`, and `update` methods on resource `V2.Tax.ManualRule`
327
- * Add support for `cancel`, `create`, `retrieve`, `submit`, and `update` methods on resource `V2.Payments.SettlementAllocationIntent`
328
- * Add support for `cancel`, `create`, and `retrieve` methods on resource `V2.Payments.SettlementAllocationIntentSplit`
329
- * Add support for `create`, `expire`, `list`, `retrieve`, `rotate`, and `update` methods on resource `V2.Iam.ApiKey`
330
- * Add support for `check_scanning` on `AccountSessionCreateParams.components`
331
- * Add support for `tax_details` on `Checkout.SessionCreateParams.line_items[].price_data.product_data`, `Checkout.SessionUpdateParams.line_items[].price_data.product_data`, `InvoiceAddLinesParams.lines[].price_data.product_data`, `InvoiceLineItemUpdateParams.price_data.product_data`, `InvoiceUpdateLinesParams.lines[].price_data.product_data`, `PaymentLinkCreateParams.line_items[].price_data.product_data`, `ProductCreateParams`, and `ProductUpdateParams`
332
- * Add support for `payment_method_data` on `DelegatedCheckout.RequestedSessionConfirmParams`
333
- * Add support for `product_details` on `DelegatedCheckout.RequestedSession.line_item_details[]`
334
- * Add support for `wallets` on `Issuing.CardListParams`
335
- * Add support for `primary_account_identifier` on `Issuing.Card.wallets.apple_pay` and `Issuing.Card.wallets.google_pay`
336
- * Add support for `shared_payment_granted_token` on `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, and `PaymentIntent`
337
- * Change `ProductCatalog.TrialOffer.duration.relative` to be optional
338
- * Add support for new values `al_bank_account`, `am_bank_account`, `bn_bank_account`, `bw_bank_account`, `dz_bank_account`, `gy_bank_account`, `jm_bank_account`, `jo_bank_account`, `kw_bank_account`, `lk_bank_account`, `ma_bank_account`, `om_bank_account`, and `tz_bank_account` on enum `V2.Account.configuration.recipient_data.default_outbound_destination.type`
339
- * Add support for `instant` on `V2.Account.configuration.recipient_data.features.bank_accounts`, `V2.AccountCreateParams.configuration.recipient_data.features.bank_accounts`, `V2.AccountUpdateParams.configuration.recipient_data.features.bank_accounts`, `V2.Core.Account.configuration.recipient.capabilities.bank_accounts`, `V2.Core.AccountCreateParams.configuration.recipient.capabilities.bank_accounts`, and `V2.Core.AccountUpdateParams.configuration.recipient.capabilities.bank_accounts`
340
- * Add support for new value `bank_accounts.instant` on enum `V2.Account.requirements[].impact.required_for_features`
341
- * Add support for `collect_at` on `V2.Billing.IntentAction.deactivate`, `V2.Billing.IntentAction.modify`, `V2.Billing.IntentAction.subscribe`, `V2.Billing.IntentCreateParams.actions[].deactivate`, `V2.Billing.IntentCreateParams.actions[].modify`, and `V2.Billing.IntentCreateParams.actions[].subscribe`
342
- * Remove support for `billing_details` on `V2.Billing.IntentAction.deactivate`, `V2.Billing.IntentAction.modify`, `V2.Billing.IntentAction.subscribe`, `V2.Billing.IntentCreateParams.actions[].deactivate`, `V2.Billing.IntentCreateParams.actions[].modify`, and `V2.Billing.IntentCreateParams.actions[].subscribe`
343
- * Add support for `overrides` on `V2.Billing.IntentAction.deactivate.pricing_plan_subscription_details`, `V2.Billing.IntentAction.modify.pricing_plan_subscription_details`, `V2.Billing.IntentAction.subscribe.pricing_plan_subscription_details`, `V2.Billing.IntentCreateParams.actions[].deactivate.pricing_plan_subscription_details`, `V2.Billing.IntentCreateParams.actions[].modify.pricing_plan_subscription_details`, and `V2.Billing.IntentCreateParams.actions[].subscribe.pricing_plan_subscription_details`
344
- * Remove support for `requested` on `V2.Core.Account.configuration.card_creator.capabilities.commercial.celtic.charge_card`, `V2.Core.Account.configuration.card_creator.capabilities.commercial.celtic.spend_card`, `V2.Core.Account.configuration.card_creator.capabilities.commercial.cross_river_bank.charge_card`, `V2.Core.Account.configuration.card_creator.capabilities.commercial.cross_river_bank.spend_card`, `V2.Core.Account.configuration.card_creator.capabilities.commercial.lead.prepaid_card`, `V2.Core.Account.configuration.card_creator.capabilities.commercial.stripe.charge_card`, `V2.Core.Account.configuration.card_creator.capabilities.commercial.stripe.prepaid_card`, `V2.Core.Account.configuration.recipient.capabilities.crypto_wallets`, `V2.Core.Account.configuration.storer.capabilities.financial_addresses.crypto_wallets`, `V2.Core.Account.configuration.storer.capabilities.holds_currencies.usdc`, `V2.Core.Account.configuration.storer.capabilities.outbound_payments.crypto_wallets`, and `V2.Core.Account.configuration.storer.capabilities.outbound_transfers.crypto_wallets`
345
- * Add support for new value `bank_accounts.instant` on enums `V2.Core.Account.future_requirements.entries[].impact.restricts_capabilities[].capability` and `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
346
- * Add support for `alternative_reference` on `V2.Core.Vault.GbBankAccount`, `V2.Core.Vault.UsBankAccount`, and `V2.MoneyManagement.PayoutMethod`
347
- * Add support for `managed_by` and `payments` on `V2.MoneyManagement.FinancialAccount`
348
- * Add support for new value `payments` on enum `V2.MoneyManagement.FinancialAccount.type`
349
- * Add support for `speed` on `V2.MoneyManagement.OutboundPayment.delivery_options`, `V2.MoneyManagement.OutboundPaymentCreateParams.delivery_options`, `V2.MoneyManagement.OutboundPaymentQuote.delivery_options`, and `V2.MoneyManagement.OutboundPaymentQuoteCreateParams.delivery_options`
350
- * Add support for new value `real_time_payout_fee` on enum `V2.MoneyManagement.OutboundPaymentQuote.estimated_fees[].type`
351
- * Add support for `types` on `V2.MoneyManagement.FinancialAccountListParams`
352
- * Change type of `V2.Core.AccountListParams.applied_configurations` from `string` to `enum`
353
- * Add support for new value `bank_accounts.instant` on enum `EventsV2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent.updated_capability`
354
- * Add support for `top_impacted_accounts` on `EventsV2CoreHealthApiErrorFiringEvent.impact`, `EventsV2CoreHealthApiErrorResolvedEvent.impact`, `EventsV2CoreHealthApiLatencyFiringEvent.impact`, `EventsV2CoreHealthApiLatencyResolvedEvent.impact`, `EventsV2CoreHealthPaymentMethodErrorFiringEvent.impact`, and `EventsV2CoreHealthPaymentMethodErrorResolvedEvent.impact`
355
- * Add support for event notifications `V2CoreHealthSepaDebitDelayedFiringEvent`, `V2CoreHealthSepaDebitDelayedResolvedEvent`, and `V2PaymentsSettlementAllocationIntentNotFoundEvent`
356
- * Add support for event notifications `V2PaymentsSettlementAllocationIntentCanceledEvent`, `V2PaymentsSettlementAllocationIntentCreatedEvent`, `V2PaymentsSettlementAllocationIntentErroredEvent`, `V2PaymentsSettlementAllocationIntentFundsNotReceivedEvent`, `V2PaymentsSettlementAllocationIntentMatchedEvent`, `V2PaymentsSettlementAllocationIntentSettledEvent`, and `V2PaymentsSettlementAllocationIntentSubmittedEvent` with related object `V2.Payments.SettlementAllocationIntent`
357
- * Add support for event notifications `V2PaymentsSettlementAllocationIntentSplitCanceledEvent`, `V2PaymentsSettlementAllocationIntentSplitCreatedEvent`, and `V2PaymentsSettlementAllocationIntentSplitSettledEvent` with related object `V2.Payments.SettlementAllocationIntentSplit`
358
- * Remove support for error code `account_rate_limit_exceeded` on `RateLimitError`
359
-
360
138
  ## 20.1.2 - 2026-01-07
361
139
  * [#2542](https://github.com/stripe/stripe-node/pull/2542) Fix content length calculations for multipart file uploads. This fixes the bug reported in [2538](https://github.com/stripe/stripe-node/issues/2538) around file uploads.
362
140
  * [#2539](https://github.com/stripe/stripe-node/pull/2539) Delete API_VERSION file as it is no longer needed
@@ -404,209 +182,6 @@ This release changes the pinned API version to `2025-12-15.clover`.
404
182
  * Add support for `changes` on `V2.Core.Event`
405
183
  * Add support for error code `account_token_required_for_v2_account` on `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
406
184
 
407
- ## 20.1.0-beta.1 - 2025-11-18
408
- This release changes the pinned API version to `2025-11-17.preview`.
409
-
410
- * [#2487](https://github.com/stripe/stripe-node/pull/2487) Update generated code for beta
411
- * Add support for new resources `V2.Core.AccountPersonToken` and `V2.Core.AccountToken`
412
- * Remove support for resource `V2.Payments.OffSessionPayment`
413
- * Add support for `create` and `retrieve` methods on resources `V2.Core.AccountPersonToken` and `V2.Core.AccountToken`
414
- * Remove support for `cancel`, `capture`, `create`, `list`, and `retrieve` methods on resource `V2.Payments.OffSessionPayment`
415
- * Add support for `specified_commercial_transactions_act_url` on `Account.business_profile`, `AccountCreateParams.business_profile`, and `AccountUpdateParams.business_profile`
416
- * Add support for `paypay_payments` on `Account.settings`, `AccountCreateParams.settings`, and `AccountUpdateParams.settings`
417
- * Change `Tax.Association.tax_transaction_attempts` to be required
418
- * Change type of `Billing.Analytics.MeterUsageRetrieveParams.meters[].dimension_filters` from `string` to `array(string)`
419
- * Change type of `Billing.Analytics.MeterUsageRetrieveParams.meters[].tenant_filters` from `string` to `array(string)`
420
- * Add support for `car_rental_data`, `flight_data`, and `lodging_data` on `ChargeCaptureParams.payment_details`, `ChargeUpdateParams.payment_details`, `PaymentIntentCaptureParams.payment_details`, `PaymentIntentConfirmParams.payment_details`, `PaymentIntentCreateParams.payment_details`, and `PaymentIntentUpdateParams.payment_details`
421
- * Add support for `supplementary_purchase_data` on `OrderCreateParams.payment.settings.payment_method_options.klarna`, `OrderUpdateParams.payment.settings.payment_method_options.klarna`, `PaymentIntentConfirmParams.payment_method_options.klarna`, `PaymentIntentCreateParams.payment_method_options.klarna`, and `PaymentIntentUpdateParams.payment_method_options.klarna`
422
- * Add support for `allow_redisplay` and `customer_account` on `PaymentMethodListParams`
423
- * Add support for `future_requirements` on `V2.Core.Account`
424
- * Add support for `konbini_payments` and `script_statement_descriptor` on `V2.Core.Account.configuration.merchant`, `V2.Core.AccountCreateParams.configuration.merchant`, and `V2.Core.AccountUpdateParams.configuration.merchant`
425
- * Add support for `eur` on `V2.Core.Account.configuration.storer.capabilities.holds_currencies`, `V2.Core.AccountCreateParams.configuration.storer.capabilities.holds_currencies`, and `V2.Core.AccountUpdateParams.configuration.storer.capabilities.holds_currencies`
426
- * Add support for `requirements_collector` on `V2.Core.Account.defaults.responsibilities`
427
- * Add support for new value `ar_cuit` on enums `V2.Core.Account.identity.business_details.id_numbers[].type`, `V2.Core.AccountCreateParams.identity.business_details.id_numbers[].type`, and `V2.Core.AccountUpdateParams.identity.business_details.id_numbers[].type`
428
- * Add support for new value `ar_dni` on enums `V2.Core.Account.identity.individual.id_numbers[].type`, `V2.Core.AccountCreateParams.identity.individual.id_numbers[].type`, `V2.Core.AccountPerson.id_numbers[].type`, `V2.Core.AccountPersonCreateParams.id_numbers[].type`, `V2.Core.AccountPersonUpdateParams.id_numbers[].type`, and `V2.Core.AccountUpdateParams.identity.individual.id_numbers[].type`
429
- * Remove support for `collector` on `V2.Core.Account.requirements`
430
- * Add support for new value `holds_currencies.eur` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
431
- * Add support for new values `payment_method` and `person` on enum `V2.Core.Account.requirements.entries[].reference.type`
432
- * Remove support for value `resource` from enum `V2.Core.Account.requirements.entries[].reference.type`
433
- * Remove support for value `future_requirements` from enum `V2.Core.Account.requirements.entries[].requested_reasons[].code`
434
- * Add support for `changes` on `V2.Core.Event`
435
- * Remove support for value `sepa_bank_account` from enums `V2.MoneyManagement.FinancialAddress.credentials.type` and `V2.MoneyManagement.FinancialAddressCreateParams.type`
436
- * Add support for `account_token` on `V2.Core.AccountCreateParams` and `V2.Core.AccountUpdateParams`
437
- * Add support for new value `future_requirements` on enums `V2.Core.AccountCreateParams.include`, `V2.Core.AccountRetrieveParams.include`, and `V2.Core.AccountUpdateParams.include`
438
- * Add support for `person_token` on `V2.Core.AccountPersonCreateParams` and `V2.Core.AccountPersonUpdateParams`
439
- * Add support for `changes` on `v2.core.Event`
440
- * Add support for thin event `V2CoreHealthEventGenerationFailureResolvedEvent`
441
- * Remove support for thin events `V2PaymentsOffSessionPaymentAuthorizationAttemptFailedEvent`, `V2PaymentsOffSessionPaymentAuthorizationAttemptStartedEvent`, `V2PaymentsOffSessionPaymentCanceledEvent`, `V2PaymentsOffSessionPaymentCreatedEvent`, `V2PaymentsOffSessionPaymentFailedEvent`, `V2PaymentsOffSessionPaymentRequiresCaptureEvent`, and `V2PaymentsOffSessionPaymentSucceededEvent` with related object `V2.Payments.OffSessionPayment`
442
-
443
- ## 20.1.0-alpha.4 - 2025-12-04
444
- * [#2519](https://github.com/stripe/stripe-node/pull/2519) Update generated code for private-preview
445
- * Add support for event notifications `V2IamApiKeyCreatedEvent`, `V2IamApiKeyDefaultSecretRevealedEvent`, `V2IamApiKeyExpiredEvent`, `V2IamApiKeyPermissionsUpdatedEvent`, `V2IamApiKeyRotatedEvent`, and `V2IamApiKeyUpdatedEvent`
446
- * [#2517](https://github.com/stripe/stripe-node/pull/2517) Update generated code for private-preview
447
- * Add support for `check_scanning` on `AccountSession.components`
448
- * Add support for `client` on `V2.Core.Event.reason.request`
449
- * Add support for `stripe_balance_payment` on `V2.MoneyManagement.ReceivedCredit` and `V2.MoneyManagement.ReceivedDebit`
450
- * Add support for new value `stripe_balance_payment` on enum `V2.MoneyManagement.ReceivedCredit.type`
451
- * Add support for `balance_transfer` on `V2.MoneyManagement.ReceivedDebit`
452
- * Add support for new values `balance_transfer` and `stripe_balance_payment` on enum `V2.MoneyManagement.ReceivedDebit.type`
453
- * Add support for `include` on `V2.Core.EventListParams` and `V2.Core.EventRetrieveParams`
454
-
455
- ## 20.1.0-alpha.3 - 2025-11-24
456
- * [#2512](https://github.com/stripe/stripe-node/pull/2512) Update generated code for private-preview
457
- * Add support for new resource `ProductCatalog.TrialOffer`
458
- * Add support for `create` method on resource `ProductCatalog.TrialOffer`
459
- * Remove support for `amount_subtotal_after_discount` on `DelegatedCheckout.RequestedSession.line_item_details[]` and `DelegatedCheckout.RequestedSession.total_details`
460
- * Remove support for `amount_total`, `unit_amount_after_discount`, and `unit_discount` on `DelegatedCheckout.RequestedSession.line_item_details[]`
461
- * Add support for `amount_cart_discount` and `amount_items_discount` on `DelegatedCheckout.RequestedSession.total_details`
462
- * Remove support for `amount_discount` on `DelegatedCheckout.RequestedSession.total_details`
463
- * Add support for `payments_orchestration` on `PaymentIntentCreateParams` and `PaymentIntent`
464
-
465
- ## 20.1.0-alpha.2 - 2025-11-20
466
- This release changes the pinned API version to `2025-11-17.preview`.
467
-
468
- * [#2510](https://github.com/stripe/stripe-node/pull/2510) Update generated code for private-preview
469
- * Add support for new resources `V2.Core.AccountPersonToken`, `V2.Core.AccountToken`, and `V2.MoneyManagement.CurrencyConversion`
470
- * Add support for `create`, `list`, and `retrieve` methods on resource `V2.MoneyManagement.CurrencyConversion`
471
- * Add support for `create` and `retrieve` methods on resources `V2.Core.AccountPersonToken` and `V2.Core.AccountToken`
472
- * Add support for `effective_at` on `InvoiceCreatePreviewParams.schedule_details.amendments[]`, `InvoiceCreatePreviewParams.schedule_details.phases[]`, `QuoteCreateParams.lines[]`, `QuoteLine`, `QuotePreviewSubscriptionSchedule.phases[]`, `QuoteUpdateParams.lines[]`, `SubscriptionSchedule.phases[]`, `SubscriptionScheduleAmendParams.amendments[]`, `SubscriptionScheduleCreateParams.phases[]`, and `SubscriptionScheduleUpdateParams.phases[]`
473
- * Add support for `trial_offer` on `InvoiceCreatePreviewParams.schedule_details.amendments[].item_actions[].add`, `InvoiceCreatePreviewParams.schedule_details.amendments[].item_actions[].set`, `InvoiceCreatePreviewParams.schedule_details.phases[].items[]`, `QuoteCreateParams.lines[].actions[].add_item`, `QuoteCreateParams.lines[].actions[].set_items[]`, `QuoteLine.actions[].add_item`, `QuoteLine.actions[].set_items[]`, `QuotePreviewSubscriptionSchedule.phases[].items[]`, `QuoteUpdateParams.lines[].actions[].add_item`, `QuoteUpdateParams.lines[].actions[].set_items[]`, `SubscriptionSchedule.phases[].items[]`, `SubscriptionScheduleAmendParams.amendments[].item_actions[].add`, `SubscriptionScheduleAmendParams.amendments[].item_actions[].set`, `SubscriptionScheduleCreateParams.phases[].items[]`, and `SubscriptionScheduleUpdateParams.phases[].items[]`
474
- * Change type of `DelegatedCheckout.RequestedSession.amount_subtotal` from `longInteger` to `longInteger | null`
475
- * Change type of `DelegatedCheckout.RequestedSession.amount_total` from `longInteger` to `longInteger | null`
476
- * Add support for `amount_discount`, `amount_subtotal`, `amount_total`, `unit_amount_after_discount`, and `unit_discount` on `DelegatedCheckout.RequestedSession.line_item_details[]`
477
- * Add support for `amount_subtotal_after_discount` on `DelegatedCheckout.RequestedSession.line_item_details[]` and `DelegatedCheckout.RequestedSession.total_details`
478
- * Change type of `InvoiceCreatePreviewParams.schedule_details.billing_schedules` from `array(billing_schedules_update_params)` to `emptyable(array(billing_schedules_update_params))`
479
- * Remove support for values `amendment_end`, `line_ends_at`, `schedule_end`, and `upcoming_invoice` from enums `InvoiceCreatePreviewParams.subscription_details.billing_schedules[].bill_until.type`, `Subscription.billing_schedules[].bill_until.type`, `SubscriptionCreateParams.billing_schedules[].bill_until.type`, `SubscriptionScheduleCreateParams.billing_schedules[].bill_until.type`, `SubscriptionScheduleUpdateParams.billing_schedules[].bill_until.type`, and `SubscriptionUpdateParams.billing_schedules[].bill_until.type`
480
- * Add support for `current_trial` on `InvoiceCreatePreviewParams.subscription_details.items[]`, `SubscriptionCreateParams.items[]`, `SubscriptionItemCreateParams`, `SubscriptionItemUpdateParams`, `SubscriptionItem`, and `SubscriptionUpdateParams.items[]`
481
- * Change type of `QuoteCreateParams.subscription_data.billing_schedules` and `QuoteCreateParams.subscription_data_overrides[].billing_schedules` from `emptyable(array(billing_schedules_create_specs))` to `array(billing_schedules_create_specs)`
482
- * Add support for new value `line_start` on enums `QuoteCreateParams.subscription_data.phase_effective_at`, `QuoteCreateParams.subscription_data_overrides[].phase_effective_at`, `QuoteUpdateParams.subscription_data.phase_effective_at`, and `QuoteUpdateParams.subscription_data_overrides[].phase_effective_at`
483
- * Remove support for value `phase_start` from enums `QuoteCreateParams.subscription_data.phase_effective_at`, `QuoteCreateParams.subscription_data_overrides[].phase_effective_at`, `QuoteUpdateParams.subscription_data.phase_effective_at`, and `QuoteUpdateParams.subscription_data_overrides[].phase_effective_at`
484
- * Change type of `Quote.subscription_data.billing_schedules` and `Quote.subscription_data_overrides[].billing_schedules` from `array(SubscriptionsResourceBillingSchedules) | null` to `array(QuotesResourceSubscriptionDataBillingSchedules)`
485
- * Change type of `Quote.subscription_data.phase_effective_at` and `Quote.subscription_data_overrides[].phase_effective_at` from `enum('billing_period_start'|'phase_start') | null` to `enum('billing_period_start'|'line_start')`
486
- * Change type of `QuotePreviewSubscriptionSchedule.default_settings.phase_effective_at` and `SubscriptionSchedule.default_settings.phase_effective_at` from `enum('billing_period_start'|'phase_start') | null` to `enum('billing_period_start'|'phase_start')`
487
- * Change type of `QuotePreviewSubscriptionSchedule.billing_schedules` and `SubscriptionSchedule.billing_schedules` from `array(SubscriptionsResourceBillingSchedules) | null` to `array(SubscriptionsResourceBillingSchedules)`
488
- * Remove support for `amendment_start`, `line_starts_at`, and `relative` on `Subscription.billing_schedules[].bill_from`
489
- * Change type of `Subscription.billing_schedules[].bill_from.computed_timestamp` from `DateTime | null` to `DateTime`
490
- * Change type of `Subscription.billing_schedules[].bill_from.type` from `enum` to `literal('timestamp')`
491
- * Remove support for `amendment_end` and `line_ends_at` on `Subscription.billing_schedules[].bill_until`
492
- * Change type of `V2.Billing.ServiceAction.credit_grant.amount.monetary`, `V2.Billing.ServiceAction.credit_grant_per_tenant.amount.monetary`, `V2.Billing.ServiceActionCreateParams.credit_grant.amount.monetary`, and `V2.Billing.ServiceActionCreateParams.credit_grant_per_tenant.amount.monetary` from `amount` to `an object`
493
- * Add support for `future_requirements` on `V2.Core.Account`
494
- * Add support for `konbini_payments` and `script_statement_descriptor` on `V2.Core.Account.configuration.merchant`, `V2.Core.AccountCreateParams.configuration.merchant`, and `V2.Core.AccountUpdateParams.configuration.merchant`
495
- * Add support for `eur` on `V2.Core.Account.configuration.storer.capabilities.holds_currencies`, `V2.Core.AccountCreateParams.configuration.storer.capabilities.holds_currencies`, and `V2.Core.AccountUpdateParams.configuration.storer.capabilities.holds_currencies`
496
- * Add support for `requirements_collector` on `V2.Core.Account.defaults.responsibilities`
497
- * Add support for new value `ar_cuit` on enums `V2.Core.Account.identity.business_details.id_numbers[].type`, `V2.Core.AccountCreateParams.identity.business_details.id_numbers[].type`, and `V2.Core.AccountUpdateParams.identity.business_details.id_numbers[].type`
498
- * Add support for new value `ar_dni` on enums `V2.Core.Account.identity.individual.id_numbers[].type`, `V2.Core.AccountCreateParams.identity.individual.id_numbers[].type`, `V2.Core.AccountPerson.id_numbers[].type`, `V2.Core.AccountPersonCreateParams.id_numbers[].type`, `V2.Core.AccountPersonUpdateParams.id_numbers[].type`, and `V2.Core.AccountUpdateParams.identity.individual.id_numbers[].type`
499
- * Remove support for `collector` on `V2.Core.Account.requirements`
500
- * Add support for new value `holds_currencies.eur` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
501
- * Add support for new values `payment_method` and `person` on enum `V2.Core.Account.requirements.entries[].reference.type`
502
- * Remove support for value `resource` from enum `V2.Core.Account.requirements.entries[].reference.type`
503
- * Remove support for value `future_requirements` from enum `V2.Core.Account.requirements.entries[].requested_reasons[].code`
504
- * Remove support for `v1_event_id` on `V2.Core.Event`
505
- * Remove support for `amount_details` and `capture_method` on `V2.Payments.OffSessionPaymentCreateParams` and `V2.Payments.OffSessionPayment`
506
- * Change type of `V2.Payments.OffSessionPayment.amount_capturable` from `amount` to `an object`
507
- * Change type of `V2.Payments.OffSessionPayment.amount_requested` from `amount` to `an object`
508
- * Change type of `V2.Payments.OffSessionPaymentCreateParams.amount` from `amount` to `an object`
509
- * Add support for new value `best_available` on enum `V2.Payments.OffSessionPaymentCreateParams.retry_details.retry_strategy`
510
- * Remove support for values `heuristic`, `scheduled`, and `smart` from enum `V2.Payments.OffSessionPaymentCreateParams.retry_details.retry_strategy`
511
- * Change `V2.Payments.OffSessionPaymentCreateParams.retry_details.retry_strategy` to be optional
512
- * Remove support for `destination` on `V2.Payments.OffSessionPaymentCaptureParams.transfer_data`
513
- * Change `V2.Payments.OffSessionPaymentCaptureParams.amount_to_capture` to be optional
514
- * Add support for `created` on `V2.Core.EventListParams`
515
- * Remove support for `gt`, `gte`, `lt`, and `lte` on `V2.Core.EventListParams`
516
- * Add support for `account_token` on `V2.Core.AccountCreateParams` and `V2.Core.AccountUpdateParams`
517
- * Add support for new value `future_requirements` on enums `V2.Core.AccountCreateParams.include`, `V2.Core.AccountRetrieveParams.include`, and `V2.Core.AccountUpdateParams.include`
518
- * Add support for `person_token` on `V2.Core.AccountPersonCreateParams` and `V2.Core.AccountPersonUpdateParams`
519
- * Add support for `impacted_requests_percentage` on `EventsV2CoreHealthApiErrorFiringEvent.impact`, `EventsV2CoreHealthApiErrorResolvedEvent.impact`, `EventsV2CoreHealthApiLatencyFiringEvent.impact`, `EventsV2CoreHealthApiLatencyResolvedEvent.impact`, `EventsV2CoreHealthPaymentMethodErrorFiringEvent.impact`, and `EventsV2CoreHealthPaymentMethodErrorResolvedEvent.impact`
520
- * Add support for `context` and `related_object` on `EventsV2CoreHealthEventGenerationFailureResolvedEvent.impact`
521
- * Remove support for `account`, `livemode`, `missing_delivery_attempts`, and `related_object_id` on `EventsV2CoreHealthEventGenerationFailureResolvedEvent.impact`
522
- * Change type of `EventsV2CoreHealthFraudRateIncreasedEvent.impact.realized_fraud_amount` from `amount` to `an object`
523
- * Change type of `EventsV2CoreHealthIssuingAuthorizationRequestErrorsFiringEvent.impact.approved_amount`, `EventsV2CoreHealthIssuingAuthorizationRequestErrorsResolvedEvent.impact.approved_amount`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutFiringEvent.impact.approved_amount`, and `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutResolvedEvent.impact.approved_amount` from `amount` to `an object`
524
- * Change type of `EventsV2CoreHealthIssuingAuthorizationRequestErrorsFiringEvent.impact.declined_amount`, `EventsV2CoreHealthIssuingAuthorizationRequestErrorsResolvedEvent.impact.declined_amount`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutFiringEvent.impact.declined_amount`, and `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutResolvedEvent.impact.declined_amount` from `amount` to `an object`
525
- * Add support for thin events `V2PaymentsOffSessionPaymentAttemptFailedEvent` and `V2PaymentsOffSessionPaymentAttemptStartedEvent` with related object `V2.Payments.OffSessionPayment`
526
- * Remove support for thin event `V1AccountUpdatedEvent` with related object `Account`
527
- * Remove support for thin events `V1ApplicationFeeCreatedEvent` and `V1ApplicationFeeRefundedEvent` with related object `ApplicationFee`
528
- * Remove support for thin events `V1BillingPortalConfigurationCreatedEvent` and `V1BillingPortalConfigurationUpdatedEvent` with related object `BillingPortal.Configuration`
529
- * Remove support for thin event `V1CapabilityUpdatedEvent` with related object `Capability`
530
- * Remove support for thin events `V1ChargeCapturedEvent`, `V1ChargeExpiredEvent`, `V1ChargeFailedEvent`, `V1ChargePendingEvent`, `V1ChargeRefundedEvent`, `V1ChargeSucceededEvent`, and `V1ChargeUpdatedEvent` with related object `Charge`
531
- * Remove support for thin events `V1ChargeDisputeClosedEvent`, `V1ChargeDisputeCreatedEvent`, `V1ChargeDisputeFundsReinstatedEvent`, `V1ChargeDisputeFundsWithdrawnEvent`, and `V1ChargeDisputeUpdatedEvent` with related object `Dispute`
532
- * Remove support for thin events `V1ChargeRefundUpdatedEvent`, `V1RefundCreatedEvent`, `V1RefundFailedEvent`, and `V1RefundUpdatedEvent` with related object `Refund`
533
- * Remove support for thin events `V1CheckoutSessionAsyncPaymentFailedEvent`, `V1CheckoutSessionAsyncPaymentSucceededEvent`, `V1CheckoutSessionCompletedEvent`, and `V1CheckoutSessionExpiredEvent` with related object `Checkout.Session`
534
- * Remove support for thin events `V1ClimateOrderCanceledEvent`, `V1ClimateOrderCreatedEvent`, `V1ClimateOrderDelayedEvent`, `V1ClimateOrderDeliveredEvent`, and `V1ClimateOrderProductSubstitutedEvent` with related object `Climate.Order`
535
- * Remove support for thin events `V1ClimateProductCreatedEvent` and `V1ClimateProductPricingUpdatedEvent` with related object `Climate.Product`
536
- * Remove support for thin events `V1CouponCreatedEvent`, `V1CouponDeletedEvent`, and `V1CouponUpdatedEvent` with related object `Coupon`
537
- * Remove support for thin events `V1CreditNoteCreatedEvent`, `V1CreditNoteUpdatedEvent`, and `V1CreditNoteVoidedEvent` with related object `CreditNote`
538
- * Remove support for thin events `V1CustomerCreatedEvent`, `V1CustomerDeletedEvent`, and `V1CustomerUpdatedEvent` with related object `Customer`
539
- * Remove support for thin events `V1CustomerSubscriptionCreatedEvent`, `V1CustomerSubscriptionDeletedEvent`, `V1CustomerSubscriptionPausedEvent`, `V1CustomerSubscriptionPendingUpdateAppliedEvent`, `V1CustomerSubscriptionPendingUpdateExpiredEvent`, `V1CustomerSubscriptionResumedEvent`, `V1CustomerSubscriptionTrialWillEndEvent`, and `V1CustomerSubscriptionUpdatedEvent` with related object `Subscription`
540
- * Remove support for thin events `V1CustomerTaxIdCreatedEvent`, `V1CustomerTaxIdDeletedEvent`, and `V1CustomerTaxIdUpdatedEvent` with related object `TaxId`
541
- * Remove support for thin event `V1FileCreatedEvent` with related object `File`
542
- * Remove support for thin events `V1FinancialConnectionsAccountCreatedEvent`, `V1FinancialConnectionsAccountDeactivatedEvent`, `V1FinancialConnectionsAccountDisconnectedEvent`, `V1FinancialConnectionsAccountReactivatedEvent`, `V1FinancialConnectionsAccountRefreshedBalanceEvent`, `V1FinancialConnectionsAccountRefreshedOwnershipEvent`, and `V1FinancialConnectionsAccountRefreshedTransactionsEvent` with related object `FinancialConnections.Account`
543
- * Remove support for thin events `V1IdentityVerificationSessionCanceledEvent`, `V1IdentityVerificationSessionCreatedEvent`, `V1IdentityVerificationSessionProcessingEvent`, `V1IdentityVerificationSessionRedactedEvent`, `V1IdentityVerificationSessionRequiresInputEvent`, and `V1IdentityVerificationSessionVerifiedEvent` with related object `Identity.VerificationSession`
544
- * Remove support for thin events `V1InvoiceCreatedEvent`, `V1InvoiceDeletedEvent`, `V1InvoiceFinalizationFailedEvent`, `V1InvoiceFinalizedEvent`, `V1InvoiceMarkedUncollectibleEvent`, `V1InvoiceOverdueEvent`, `V1InvoiceOverpaidEvent`, `V1InvoicePaidEvent`, `V1InvoicePaymentActionRequiredEvent`, `V1InvoicePaymentFailedEvent`, `V1InvoicePaymentSucceededEvent`, `V1InvoiceSentEvent`, `V1InvoiceUpcomingEvent`, `V1InvoiceUpdatedEvent`, `V1InvoiceVoidedEvent`, and `V1InvoiceWillBeDueEvent` with related object `Invoice`
545
- * Remove support for thin event `V1InvoicePaymentPaidEvent` with related object `InvoicePayment`
546
- * Remove support for thin events `V1InvoiceitemCreatedEvent` and `V1InvoiceitemDeletedEvent` with related object `InvoiceItem`
547
- * Remove support for thin events `V1IssuingAuthorizationCreatedEvent`, `V1IssuingAuthorizationRequestEvent`, and `V1IssuingAuthorizationUpdatedEvent` with related object `Issuing.Authorization`
548
- * Remove support for thin events `V1IssuingCardCreatedEvent` and `V1IssuingCardUpdatedEvent` with related object `Issuing.Card`
549
- * Remove support for thin events `V1IssuingCardholderCreatedEvent` and `V1IssuingCardholderUpdatedEvent` with related object `Issuing.Cardholder`
550
- * Remove support for thin events `V1IssuingDisputeClosedEvent`, `V1IssuingDisputeCreatedEvent`, `V1IssuingDisputeFundsReinstatedEvent`, `V1IssuingDisputeFundsRescindedEvent`, `V1IssuingDisputeSubmittedEvent`, and `V1IssuingDisputeUpdatedEvent` with related object `Issuing.Dispute`
551
- * Remove support for thin events `V1IssuingPersonalizationDesignActivatedEvent`, `V1IssuingPersonalizationDesignDeactivatedEvent`, `V1IssuingPersonalizationDesignRejectedEvent`, and `V1IssuingPersonalizationDesignUpdatedEvent` with related object `Issuing.PersonalizationDesign`
552
- * Remove support for thin events `V1IssuingTokenCreatedEvent` and `V1IssuingTokenUpdatedEvent` with related object `Issuing.Token`
553
- * Remove support for thin events `V1IssuingTransactionCreatedEvent`, `V1IssuingTransactionPurchaseDetailsReceiptUpdatedEvent`, and `V1IssuingTransactionUpdatedEvent` with related object `Issuing.Transaction`
554
- * Remove support for thin event `V1MandateUpdatedEvent` with related object `Mandate`
555
- * Remove support for thin events `V1PaymentIntentAmountCapturableUpdatedEvent`, `V1PaymentIntentCanceledEvent`, `V1PaymentIntentCreatedEvent`, `V1PaymentIntentPartiallyFundedEvent`, `V1PaymentIntentPaymentFailedEvent`, `V1PaymentIntentProcessingEvent`, `V1PaymentIntentRequiresActionEvent`, and `V1PaymentIntentSucceededEvent` with related object `PaymentIntent`
556
- * Remove support for thin events `V1PaymentLinkCreatedEvent` and `V1PaymentLinkUpdatedEvent` with related object `PaymentLink`
557
- * Remove support for thin events `V1PaymentMethodAttachedEvent`, `V1PaymentMethodAutomaticallyUpdatedEvent`, `V1PaymentMethodDetachedEvent`, and `V1PaymentMethodUpdatedEvent` with related object `PaymentMethod`
558
- * Remove support for thin events `V1PayoutCanceledEvent`, `V1PayoutCreatedEvent`, `V1PayoutFailedEvent`, `V1PayoutPaidEvent`, `V1PayoutReconciliationCompletedEvent`, and `V1PayoutUpdatedEvent` with related object `Payout`
559
- * Remove support for thin events `V1PersonCreatedEvent`, `V1PersonDeletedEvent`, and `V1PersonUpdatedEvent` with related object `Person`
560
- * Remove support for thin events `V1PlanCreatedEvent`, `V1PlanDeletedEvent`, and `V1PlanUpdatedEvent` with related object `Plan`
561
- * Remove support for thin events `V1PriceCreatedEvent`, `V1PriceDeletedEvent`, and `V1PriceUpdatedEvent` with related object `Price`
562
- * Remove support for thin events `V1ProductCreatedEvent`, `V1ProductDeletedEvent`, and `V1ProductUpdatedEvent` with related object `Product`
563
- * Remove support for thin events `V1PromotionCodeCreatedEvent` and `V1PromotionCodeUpdatedEvent` with related object `PromotionCode`
564
- * Remove support for thin events `V1QuoteAcceptedEvent`, `V1QuoteCanceledEvent`, `V1QuoteCreatedEvent`, and `V1QuoteFinalizedEvent` with related object `Quote`
565
- * Remove support for thin events `V1RadarEarlyFraudWarningCreatedEvent` and `V1RadarEarlyFraudWarningUpdatedEvent` with related object `Radar.EarlyFraudWarning`
566
- * Remove support for thin events `V1ReviewClosedEvent` and `V1ReviewOpenedEvent` with related object `Review`
567
- * Remove support for thin events `V1SetupIntentCanceledEvent`, `V1SetupIntentCreatedEvent`, `V1SetupIntentRequiresActionEvent`, `V1SetupIntentSetupFailedEvent`, and `V1SetupIntentSucceededEvent` with related object `SetupIntent`
568
- * Remove support for thin event `V1SigmaScheduledQueryRunCreatedEvent` with related object `Sigma.ScheduledQueryRun`
569
- * Remove support for thin events `V1SourceCanceledEvent`, `V1SourceChargeableEvent`, `V1SourceFailedEvent`, and `V1SourceRefundAttributesRequiredEvent` with related object `Source`
570
- * Remove support for thin events `V1SubscriptionScheduleAbortedEvent`, `V1SubscriptionScheduleCanceledEvent`, `V1SubscriptionScheduleCompletedEvent`, `V1SubscriptionScheduleCreatedEvent`, `V1SubscriptionScheduleExpiringEvent`, `V1SubscriptionScheduleReleasedEvent`, and `V1SubscriptionScheduleUpdatedEvent` with related object `SubscriptionSchedule`
571
- * Remove support for thin events `V1TaxRateCreatedEvent` and `V1TaxRateUpdatedEvent` with related object `TaxRate`
572
- * Remove support for thin events `V1TerminalReaderActionFailedEvent`, `V1TerminalReaderActionSucceededEvent`, and `V1TerminalReaderActionUpdatedEvent` with related object `Terminal.Reader`
573
- * Remove support for thin events `V1TestHelpersTestClockAdvancingEvent`, `V1TestHelpersTestClockCreatedEvent`, `V1TestHelpersTestClockDeletedEvent`, `V1TestHelpersTestClockInternalFailureEvent`, and `V1TestHelpersTestClockReadyEvent` with related object `TestHelpers.TestClock`
574
- * Remove support for thin events `V1TopupCanceledEvent`, `V1TopupCreatedEvent`, `V1TopupFailedEvent`, `V1TopupReversedEvent`, and `V1TopupSucceededEvent` with related object `Topup`
575
- * Remove support for thin events `V1TransferCreatedEvent`, `V1TransferReversedEvent`, and `V1TransferUpdatedEvent` with related object `Transfer`
576
-
577
- ## 20.1.0-alpha.1 - 2025-11-18
578
- * [#2505](https://github.com/stripe/stripe-node/pull/2505) Update generated code for private-preview
579
- * Add support for `billing_schedules_actions` on `InvoiceCreatePreviewParams.schedule_details.amendments[]` and `SubscriptionScheduleAmendParams.amendments[]`
580
- * [#2504](https://github.com/stripe/stripe-node/pull/2504) Update generated code for private-preview
581
- * Add support for new resources `BalanceTransfer` and `Radar.AccountEvaluation`
582
- * Add support for `create` method on resource `BalanceTransfer`
583
- * Add support for `create`, `retrieve`, and `update` methods on resource `Radar.AccountEvaluation`
584
- * Add support for `specified_commercial_transactions_act_url` on `Account.business_profile`, `AccountCreateParams.business_profile`, and `AccountUpdateParams.business_profile`
585
- * Add support for `paypay_payments` on `Account.settings`, `AccountCreateParams.settings`, and `AccountUpdateParams.settings`
586
- * Change `Tax.Association.tax_transaction_attempts` to be required
587
- * Change type of `Billing.Analytics.MeterUsageRetrieveParams.meters[].dimension_filters` from `string` to `array(string)`
588
- * Change type of `Billing.Analytics.MeterUsageRetrieveParams.meters[].tenant_filters` from `string` to `array(string)`
589
- * Add support for `payment_method_configuration` on `BillingPortal.Configuration.features.payment_method_update`
590
- * Add support for `car_rental_data`, `flight_data`, and `lodging_data` on `ChargeCaptureParams.payment_details`, `ChargeUpdateParams.payment_details`, `PaymentIntentCaptureParams.payment_details`, `PaymentIntentConfirmParams.payment_details`, `PaymentIntentCreateParams.payment_details`, and `PaymentIntentUpdateParams.payment_details`
591
- * Add support for `transaction_id` on `Charge.payment_method_details.ideal`, `PaymentAttemptRecord.payment_method_details.ideal`, and `PaymentRecord.payment_method_details.ideal`
592
- * Add support for new value `finom` on enums `Charge.payment_method_details.ideal.bank`, `ConfirmationToken.payment_method_preview.ideal.bank`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data.ideal.bank`, `PaymentAttemptRecord.payment_method_details.ideal.bank`, `PaymentIntentConfirmParams.payment_method_data.ideal.bank`, `PaymentIntentCreateParams.payment_method_data.ideal.bank`, `PaymentIntentUpdateParams.payment_method_data.ideal.bank`, `PaymentMethod.ideal.bank`, `PaymentMethodCreateParams.ideal.bank`, `PaymentRecord.payment_method_details.ideal.bank`, `SetupAttempt.payment_method_details.ideal.bank`, `SetupIntentConfirmParams.payment_method_data.ideal.bank`, `SetupIntentCreateParams.payment_method_data.ideal.bank`, and `SetupIntentUpdateParams.payment_method_data.ideal.bank`
593
- * Add support for new value `FNOMNL22` on enums `Charge.payment_method_details.ideal.bic`, `ConfirmationToken.payment_method_preview.ideal.bic`, `PaymentAttemptRecord.payment_method_details.ideal.bic`, `PaymentMethod.ideal.bic`, `PaymentRecord.payment_method_details.ideal.bic`, and `SetupAttempt.payment_method_details.ideal.bic`
594
- * Add support for new value `tokenized_account_number_deactivated` on enums `ConfirmationToken.payment_method_preview.us_bank_account.status_details.blocked.reason` and `PaymentMethod.us_bank_account.status_details.blocked.reason`
595
- * Add support for `created` on `CustomerListCustomerBalanceTransactionsParams` and `InvoicePaymentListParams`
596
- * Add support for new values `capital.financing_offer.accepted_other_offer`, `financial_connections.account.account_numbers_updated`, and `financial_connections.account.upcoming_account_number_expiry` on enum `Event.type`
597
- * Add support for `account_numbers` on `FinancialConnections.Account`
598
- * Change type of `FinancialConnections.Session.client_secret` from `string` to `string | null`
599
- * Add support for `fraud_risk` on `Issuing.AuthorizationCreateParams.testHelpers.risk_assessment`
600
- * Add support for `latest_fraud_warning` on `Issuing.Card`
601
- * Add support for `supplementary_purchase_data` on `OrderCreateParams.payment.settings.payment_method_options.klarna`, `OrderUpdateParams.payment.settings.payment_method_options.klarna`, `PaymentIntentConfirmParams.payment_method_options.klarna`, `PaymentIntentCreateParams.payment_method_options.klarna`, and `PaymentIntentUpdateParams.payment_method_options.klarna`
602
- * Add support for `capture_method` on `PaymentIntent.payment_method_options.card_present`, `PaymentIntentConfirmParams.payment_method_options.card_present`, `PaymentIntentCreateParams.payment_method_options.card_present`, and `PaymentIntentUpdateParams.payment_method_options.card_present`
603
- * Add support for `allow_redisplay` and `customer_account` on `PaymentMethodListParams`
604
- * Add support for `mb_way` and `twint` on `Refund.destination_details`
605
- * Change type of `SubscriptionScheduleUpdateParams.billing_schedules` from `array(billing_schedules_update_params)` to `emptyable(array(billing_schedules_update_params))`
606
- * Add support for new values `capital.financing_offer.accepted_other_offer`, `financial_connections.account.account_numbers_updated`, and `financial_connections.account.upcoming_account_number_expiry` on enums `WebhookEndpointCreateParams.enabled_events` and `WebhookEndpointUpdateParams.enabled_events`
607
- * Add support for new value `2025-11-17.clover` on enum `WebhookEndpointCreateParams.api_version`
608
- * Add support for snapshot events `FinancialConnectionsAccountAccountNumbersUpdatedEvent` and `FinancialConnectionsAccountUpcomingAccountNumberExpiryEvent` with resource `FinancialConnections.Account`
609
-
610
185
  ## 20.0.0 - 2025-11-18
611
186
  This release changes the pinned API version to `2025-11-17.clover`.
612
187
 
@@ -634,39 +209,6 @@ This release changes the pinned API version to `2025-11-17.clover`.
634
209
  * Add support for new values `financial_connections.account.account_numbers_updated` and `financial_connections.account.upcoming_account_number_expiry` on enums `WebhookEndpointCreateParams.enabled_events` and `WebhookEndpointUpdateParams.enabled_events`
635
210
  * Add support for snapshot events `FinancialConnectionsAccountAccountNumbersUpdatedEvent` and `FinancialConnectionsAccountUpcomingAccountNumberExpiryEvent` with resource `FinancialConnections.Account`
636
211
 
637
- ## 19.4.0-alpha.2 - 2025-11-13
638
- This release changes the pinned API version to `2025-10-29.preview`.
639
-
640
- * [#2501](https://github.com/stripe/stripe-node/pull/2501) Update generated code for private-preview
641
- * Add support for new resource `Issuing.Program`
642
- * Add support for `create`, `list`, `retrieve`, and `update` methods on resource `Issuing.Program`
643
- * Add support for `schedule` on `Discount`
644
- * Add support for `applicable_fees` on `DelegatedCheckout.RequestedSession.total_details`
645
- * Add support for `schedule_details` on `Invoice.parent`, `InvoiceItem.parent`, `InvoiceLineItem.parent`, and `QuotePreviewInvoice.parent`
646
- * Add support for new value `schedule_details` on enum `InvoiceItem.parent.type`
647
- * Add support for `billing_schedules` on `InvoiceCreatePreviewParams.schedule_details`, `QuotePreviewSubscriptionSchedule`, `SubscriptionScheduleCreateParams`, `SubscriptionScheduleUpdateParams`, and `SubscriptionSchedule`
648
- * Add support for new value `schedule_details` on enums `Invoice.parent.type` and `QuotePreviewInvoice.parent.type`
649
- * Add support for new value `schedule_details` on enum `InvoiceLineItem.parent.type`
650
- * Add support for `latest_invoice` on `QuotePreviewSubscriptionSchedule` and `SubscriptionSchedule`
651
- * Add support for `phase_effective_at` on `QuotePreviewSubscriptionSchedule.default_settings`, `SubscriptionSchedule.default_settings`, `SubscriptionScheduleCreateParams.default_settings`, and `SubscriptionScheduleUpdateParams.default_settings`
652
- * [#2494](https://github.com/stripe/stripe-node/pull/2494) Update generated code for private-preview
653
- * Remove support for resource `V2.Tax.AutomaticRule`
654
- * Remove support for `create`, `deactivate`, `find`, `retrieve`, and `update` methods on resource `V2.Tax.AutomaticRule`
655
- * Add support for `self_reported_income` and `self_reported_monthly_housing_payment` on `AccountCreateParams.individual`, `AccountCreatePersonParams`, `AccountUpdateParams.individual`, `AccountUpdatePersonParams`, `Person`, `TokenCreateParams.account.individual`, and `TokenCreateParams.person`
656
- * Add support for new values `amendment_end`, `line_ends_at`, `schedule_end`, and `upcoming_invoice` on enums `InvoiceCreatePreviewParams.subscription_details.billing_schedules[].bill_until.type`, `Subscription.billing_schedules[].bill_until.type`, `SubscriptionCreateParams.billing_schedules[].bill_until.type`, and `SubscriptionUpdateParams.billing_schedules[].bill_until.type`
657
- * Add support for `billing_schedules` and `phase_effective_at` on `Quote.subscription_data_overrides[]`, `Quote.subscription_data`, `QuoteCreateParams.subscription_data_overrides[]`, `QuoteCreateParams.subscription_data`, `QuoteUpdateParams.subscription_data_overrides[]`, and `QuoteUpdateParams.subscription_data`
658
- * Add support for `bill_from` on `Subscription.billing_schedules[]`
659
- * Add support for `amendment_end` and `line_ends_at` on `Subscription.billing_schedules[].bill_until`
660
-
661
- ## 19.4.0-alpha.1 - 2025-11-06
662
- * [#2489](https://github.com/stripe/stripe-node/pull/2489) Update generated code for private-preview
663
- * Add support for new resources `TransitBalance`, `V2.Reporting.ReportRun`, `V2.Reporting.Report`
664
- * Add support for `create` and `retrieve` methods on resource `V2.Reporting.ReportRun`
665
- * Add support for `retrieve` method on resource `V2.Reporting.Report`
666
- * Add support for `create` and `refill` test helper methods on resource `Capital.FinancingOffer`
667
- * Add support for `allocated_funds` on `Charge`, `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, and `PaymentIntentUpdateParams`
668
- * Add support for thin events `V2ReportingReportRunCreatedEvent`, `V2ReportingReportRunFailedEvent`, `V2ReportingReportRunSucceededEvent`, and `V2ReportingReportRunUpdatedEvent` with related object `V2.Reporting.ReportRun`
669
-
670
212
  ## 19.3.1 - 2025-11-12
671
213
  * [#2500](https://github.com/stripe/stripe-node/pull/2500) Use `TextEncoder` instead of `Buffer` to ensure support in other JS environments
672
214
  * Fixes issues like [#2499](https://github.com/stripe/stripe-node/issues/2499) and [#2493](https://github.com/stripe/stripe-node/issues/2493) where use of `Buffer.byteLength` was causing errors in some runtime environments.
@@ -675,102 +217,6 @@ This release changes the pinned API version to `2025-10-29.preview`.
675
217
  * [#2488](https://github.com/stripe/stripe-node/pull/2488) Update generated code
676
218
  * Add support for `capture_method` on `PaymentIntent.payment_method_options.card_present`, `PaymentIntentConfirmParams.payment_method_options.card_present`, `PaymentIntentCreateParams.payment_method_options.card_present`, and `PaymentIntentUpdateParams.payment_method_options.card_present`
677
219
 
678
- ## 19.3.0-beta.1 - 2025-10-29
679
-
680
- This release changes the pinned API version to `2025-10-29.preview`.
681
-
682
- * [#2475](https://github.com/stripe/stripe-node/pull/2475) Update generated code for beta
683
- * Add support for `crypto_storer` on `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service`
684
- * [#2443](https://github.com/stripe/stripe-node/pull/2443) Update generated code for beta
685
- * Add support for `update` method on resource `V2.MoneyManagement.FinancialAccount`
686
- * Add support for `confirm_microdeposits`, `list`, and `send_microdeposits` methods on resource `V2.Core.Vault.UsBankAccount`
687
- * Add support for `list` method on resource `V2.Core.Vault.GbBankAccount`
688
- * Add support for new value `verification_data_not_found` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `BankAccount.future_requirements.errors[].code`, `BankAccount.requirements.errors[].code`, `Capability.future_requirements.errors[].code`, `Capability.requirements.errors[].code`, `Person.future_requirements.errors[].code`, and `Person.requirements.errors[].code`
689
- * Add support for `payment_portal_url` on `Charge.payment_method_details.rechnung`, `PaymentAttemptRecord.payment_method_details.rechnung`, and `PaymentRecord.payment_method_details.rechnung`
690
- * Add support for `tax_id_element` on `CustomerSession.components` and `CustomerSessionCreateParams.components`
691
- * Add support for `starting_after` on `PaymentAttemptRecordListParams`
692
- * Add support for new value `solana` on enums `PaymentAttemptRecord.payment_method_details.crypto.network` and `PaymentRecord.payment_method_details.crypto.network`
693
- * Add support for `reference` on `PaymentIntentAmountDetailsLineItem.payment_method_options.klarna`, `PaymentIntentCaptureParams.amount_details.line_items[].payment_method_options.klarna`, `PaymentIntentConfirmParams.amount_details.line_items[].payment_method_options.klarna`, `PaymentIntentCreateParams.amount_details.line_items[].payment_method_options.klarna`, `PaymentIntentIncrementAuthorizationParams.amount_details.line_items[].payment_method_options.klarna`, and `PaymentIntentUpdateParams.amount_details.line_items[].payment_method_options.klarna`
694
- * Change `PaymentIntent.payment_details.customer_reference` to be required
695
- * Change `PaymentIntent.payment_details.order_reference` to be required
696
- * Add support for `subscription_reference` on `PaymentIntentAmountDetailsLineItem.payment_method_options.klarna`
697
- * Add support for `closed` on `V2.Core.AccountListParams` and `V2.Core.Account`
698
- * Add support for new value `payment_method` on enums `V2.Core.Account.configuration.customer.automatic_indirect_tax.location_source`, `V2.Core.AccountCreateParams.configuration.customer.automatic_indirect_tax.location_source`, and `V2.Core.AccountUpdateParams.configuration.customer.automatic_indirect_tax.location_source`
699
- * Add support for `usd` on `V2.Core.Account.configuration.storer.capabilities.holds_currencies`, `V2.Core.AccountCreateParams.configuration.storer.capabilities.holds_currencies`, and `V2.Core.AccountUpdateParams.configuration.storer.capabilities.holds_currencies`
700
- * Add support for new values `application_custom` and `application_express` on enums `V2.Core.Account.defaults.responsibilities.fees_collector`, `V2.Core.AccountCreateParams.defaults.responsibilities.fees_collector`, and `V2.Core.AccountUpdateParams.defaults.responsibilities.fees_collector`
701
- * Add support for `representative_declaration` on `V2.Core.Account.identity.attestations`, `V2.Core.AccountCreateParams.identity.attestations`, and `V2.Core.AccountUpdateParams.identity.attestations`
702
- * Add support for new value `holds_currencies.usd` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
703
- * Add support for `verification` on `V2.Core.Vault.UsBankAccount`
704
- * Add support for `v1_id` on `EventsV2MoneyManagementTransactionCreatedEvent`
705
- * Remove support for thin event `V2BillingBillSettingUpdatedEvent` with related object `V2.Billing.BillSetting`
706
- * Add support for error code `payment_intent_rate_limit_exceeded` on `QuotePreviewInvoice.last_finalization_error`
707
- * Add support for error codes `blocked_payout_method_crypto_wallet` and `unsupported_payout_method_crypto_wallet` on `BlockedByStripeError`
708
- * Add support for error code `outbound_flow_from_closed_financial_account_unsupported` on `FeatureNotEnabledError`
709
- * Add support for error code `limit_payout_method_crypto_wallet` on `QuotaExceededError`
710
-
711
- ## 19.3.0-alpha.2 - 2025-10-30
712
- * [#2484](https://github.com/stripe/stripe-node/pull/2484) Update generated code for private-preview
713
- * Change `DelegatedCheckout.RequestedSessionUpdateParams.line_item_details[].quantity` to be required
714
- * Add support for `payment_method_preview` on `DelegatedCheckout.RequestedSession`
715
- * Add support for `order_id` on `DelegatedCheckout.RequestedSession.order_details`
716
- * Add support for `lead` on `V2.Core.Account.configuration.card_creator.capabilities.commercial`, `V2.Core.Account.identity.attestations.terms_of_service.card_creator.commercial`, `V2.Core.AccountCreateParams.configuration.card_creator.capabilities.commercial`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.card_creator.commercial`, `V2.Core.AccountUpdateParams.configuration.card_creator.capabilities.commercial`, and `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.card_creator.commercial`
717
- * Add support for `global_account_holder` on `V2.Core.Account.identity.attestations.terms_of_service.card_creator.commercial`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.card_creator.commercial`, and `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.card_creator.commercial`
718
- * Add support for new value `commercial.lead.prepaid_card` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
719
- * Add support for new value `commercial.lead.prepaid_card` on enum `EventsV2CoreAccountIncludingConfigurationCardCreatorCapabilityStatusUpdatedEvent.updated_capability`
720
-
721
- ## 19.3.0-alpha.1 - 2025-10-29
722
-
723
- * [#2476](https://github.com/stripe/stripe-node/pull/2476) Update generated code for private-preview
724
- * Add support for `report_refund` method on resource `PaymentRecord`
725
- * Add support for `representative_declaration` on `Account.company`, `AccountCreateParams.company`, `AccountUpdateParams.company`, and `TokenCreateParams.account.company`
726
- * Add support for new value `verification_data_not_found` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `BankAccount.future_requirements.errors[].code`, `BankAccount.requirements.errors[].code`, `Capability.future_requirements.errors[].code`, `Capability.requirements.errors[].code`, `Person.future_requirements.errors[].code`, and `Person.requirements.errors[].code`
727
- * Add support for `tenants` on `Billing.Analytics.MeterUsageRow`
728
- * Add support for `transfer` on `ApplicationFee.fee_source`
729
- * Add support for new value `transfer` on enum `ApplicationFee.fee_source.type`
730
- * Add support for `transit_balances_total` on `Balance`
731
- * Add support for new value `transit` on enum `BalanceTransaction.balance_type`
732
- * Add support for `tenant_group_by_keys` on `Billing.Analytics.MeterUsageRetrieveParams.meters[]`
733
- * Change `Billing.CreditGrantCreateParams.category` to be optional
734
- * Add support for `payment_method_configuration` on `BillingPortal.ConfigurationCreateParams.features.payment_method_update` and `BillingPortal.ConfigurationUpdateParams.features.payment_method_update`
735
- * Add support for new value `solana` on enums `Charge.payment_method_details.crypto.network`, `PaymentAttemptRecord.payment_method_details.crypto.network`, and `PaymentRecord.payment_method_details.crypto.network`
736
- * Add support for `payment_portal_url` on `Charge.payment_method_details.rechnung`, `PaymentAttemptRecord.payment_method_details.rechnung`, and `PaymentRecord.payment_method_details.rechnung`
737
- * Add support for `twint` on `Checkout.Session.payment_method_options` and `Checkout.SessionCreateParams.payment_method_options`
738
- * Add support for new value `custom` on enums `ConfirmationToken.payment_method_preview.type` and `PaymentMethod.type`
739
- * Change `CreditNote.refunds[].payment_record_refund` to be required
740
- * Change `CreditNote.refunds[].type` to be required
741
- * Add support for `customer_sheet`, `mobile_payment_element`, and `tax_id_element` on `CustomerSession.components` and `CustomerSessionCreateParams.components`
742
- * Add support for new value `custom` on enums `CustomerListPaymentMethodsParams.type`, `PaymentMethodCreateParams.type`, and `PaymentMethodListParams.type`
743
- * Add support for `provider` on `Customer.tax`
744
- * Remove support for `risk_details` on `DelegatedCheckout.RequestedSessionCreateParams`
745
- * Add support for `risk_details` on `DelegatedCheckout.RequestedSessionConfirmParams`
746
- * Add support for new value `platform_terms_of_service` on enums `File.purpose` and `FileListParams.purpose`
747
- * Add support for new value `platform_terms_of_service` on enum `FileCreateParams.purpose`
748
- * Add support for `starting_after` on `PaymentAttemptRecordListParams`
749
- * Add support for `reference` on `PaymentIntentAmountDetailsLineItem.payment_method_options.klarna`, `PaymentIntentCaptureParams.amount_details.line_items[].payment_method_options.klarna`, `PaymentIntentConfirmParams.amount_details.line_items[].payment_method_options.klarna`, `PaymentIntentCreateParams.amount_details.line_items[].payment_method_options.klarna`, `PaymentIntentIncrementAuthorizationParams.amount_details.line_items[].payment_method_options.klarna`, and `PaymentIntentUpdateParams.amount_details.line_items[].payment_method_options.klarna`
750
- * Add support for `allocated_funds` on `PaymentIntent`
751
- * Change `PaymentIntent.payment_details.customer_reference` to be required
752
- * Change `PaymentIntent.payment_details.order_reference` to be required
753
- * Add support for `subscription_reference` on `PaymentIntentAmountDetailsLineItem.payment_method_options.klarna`
754
- * Add support for `name_collection` on `PaymentLinkCreateParams`, `PaymentLinkUpdateParams`, and `PaymentLink`
755
- * Add support for `crypto` on `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, `PaymentMethodConfiguration`, and `Refund.destination_details`
756
- * Add support for `mb_way` on `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, and `PaymentMethodConfiguration`
757
- * Add support for `custom` on `PaymentMethodCreateParams` and `PaymentMethod`
758
- * Add support for `excluded_payment_method_types` on `SetupIntentCreateParams`, `SetupIntentUpdateParams`, and `SetupIntent`
759
- * Change `SetupIntent.flow_directions` to be optional
760
- * Add support for `tw` on `Tax.Registration.country_options` and `Tax.RegistrationCreateParams.country_options`
761
- * Add support for `gip` on `Terminal.Configuration.tipping`, `Terminal.ConfigurationCreateParams.tipping`, and `Terminal.ConfigurationUpdateParams.tipping`
762
- * Add support for `last_seen_at` on `Terminal.Reader`
763
- * Add support for `application_fee_amount` on `TransferCreateParams` and `Transfer`
764
- * Add support for `application_fee` on `Transfer`
765
- * Add support for new value `2025-10-29.clover` on enum `WebhookEndpointCreateParams.api_version`
766
- * Add support for `high_risk_activities_description`, `high_risk_activities`, `money_services_description`, `operates_in_prohibited_countries`, `participates_in_regulated_activity`, `purpose_of_funds_description`, `purpose_of_funds`, `regulated_activity`, `source_of_funds_description`, and `source_of_funds` on `V2.Core.Account.configuration.storer`, `V2.Core.AccountCreateParams.configuration.storer`, and `V2.Core.AccountUpdateParams.configuration.storer`
767
- * Add support for `crypto_wallets` on `V2.Core.Account.configuration.storer.capabilities.financial_addresses`, `V2.Core.Account.configuration.storer.capabilities.outbound_payments`, `V2.Core.Account.configuration.storer.capabilities.outbound_transfers`, `V2.Core.AccountCreateParams.configuration.storer.capabilities.financial_addresses`, `V2.Core.AccountCreateParams.configuration.storer.capabilities.outbound_payments`, `V2.Core.AccountCreateParams.configuration.storer.capabilities.outbound_transfers`, `V2.Core.AccountUpdateParams.configuration.storer.capabilities.financial_addresses`, `V2.Core.AccountUpdateParams.configuration.storer.capabilities.outbound_payments`, and `V2.Core.AccountUpdateParams.configuration.storer.capabilities.outbound_transfers`
768
- * Add support for `usdc` on `V2.Core.Account.configuration.storer.capabilities.holds_currencies`, `V2.Core.AccountCreateParams.configuration.storer.capabilities.holds_currencies`, and `V2.Core.AccountUpdateParams.configuration.storer.capabilities.holds_currencies`
769
- * Add support for `crypto_storer` on `V2.Core.Account.identity.attestations.terms_of_service` and `V2.Core.AccountCreateParams.identity.attestations.terms_of_service`
770
- * Add support for `compliance_screening_description` on `V2.Core.Account.identity.business_details`, `V2.Core.AccountCreateParams.identity.business_details`, and `V2.Core.AccountUpdateParams.identity.business_details`
771
- * Add support for `external_amount` on `V2.MoneyManagement.ReceivedCredit` and `V2.MoneyManagement.ReceivedDebit`
772
- * Add support for error code `payment_intent_rate_limit_exceeded` on `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `QuotePreviewInvoice.last_finalization_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
773
-
774
220
  ## 19.2.1 - 2025-11-04
775
221
  * [#2492](https://github.com/stripe/stripe-node/pull/2492) Add support for value `payment_record` to enum `InvoicePayment.payment.type`
776
222
  * [#2485](https://github.com/stripe/stripe-node/pull/2485) correctly calculate content-length for JSON bodies that contain unicode
@@ -824,47 +270,6 @@ This release changes the pinned API version to `2025-10-29.clover`.
824
270
  * Add support for snapshot event `InvoicePaymentAttemptRequiredEvent` with resource `Invoice`
825
271
  * Add support for error code `payment_intent_rate_limit_exceeded` on `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
826
272
 
827
- ## 19.2.0-alpha.4 - 2025-10-23
828
- * [#2471](https://github.com/stripe/stripe-node/pull/2471) Update generated code for private-preview
829
- * Add support for new resource `V2.Billing.PricingPlanSubscriptionComponents`
830
- * Add support for `retrieve` method on resource `V2.Billing.PricingPlanSubscriptionComponents`
831
- * Add support for `dimension_payload_keys` on `Billing.MeterCreateParams` and `Billing.Meter`
832
- * Add support for `dimension_filters` and `dimension_group_by_keys` on `Billing.MeterListMeterEventSummariesParams`
833
- * Add support for `dimensions` on `Billing.MeterEventSummary`
834
- * Add support for `fulfillment_details` and `payment_method_data` on `DelegatedCheckout.RequestedSessionCreateParams` and `DelegatedCheckout.RequestedSessionUpdateParams`
835
- * Add support for `line_item_details`, `metadata`, `payment_method`, and `shared_metadata` on `DelegatedCheckout.RequestedSessionCreateParams`, `DelegatedCheckout.RequestedSessionUpdateParams`, and `DelegatedCheckout.RequestedSession`
836
- * Add support for `currency`, `customer`, and `risk_details` on `DelegatedCheckout.RequestedSessionCreateParams`
837
- * Add support for `seller_details` and `setup_future_usage` on `DelegatedCheckout.RequestedSessionCreateParams` and `DelegatedCheckout.RequestedSession`
838
- * Add support for `amount_subtotal`, `amount_total`, `created_at`, `expires_at`, `order_details`, `shared_payment_issued_token`, `status`, `total_details`, and `updated_at` on `DelegatedCheckout.RequestedSession`
839
- * Add support for `address`, `email`, `fulfillment_options`, `name`, `phone`, and `selected_fulfillment_option` on `DelegatedCheckout.RequestedSession.fulfillment_details`
840
- * Add support for new values `billie`, `crypto`, `kr_card`, `kriya`, `mb_way`, `mondu`, `ng_bank_transfer`, `ng_bank`, `ng_card`, `ng_market`, `ng_ussd`, `ng_wallet`, `payco`, `paypay`, `rechnung`, `samsung_pay`, `satispay`, `scalapay`, `sequra`, `sunbit`, `us_bank_account`, and `vipps` on enums `EventsV2CoreHealthAuthorizationRateDropFiringEvent.impact.payment_method_type`, `EventsV2CoreHealthAuthorizationRateDropResolvedEvent.impact.payment_method_type`, `EventsV2CoreHealthPaymentMethodErrorFiringEvent.impact.payment_method_type`, and `EventsV2CoreHealthPaymentMethodErrorResolvedEvent.impact.payment_method_type`
841
-
842
- ## 19.2.0-alpha.3 - 2025-10-17
843
- * [#2463](https://github.com/stripe/stripe-node/pull/2463) Update generated code for private-preview
844
- * Add support for new resources `DelegatedCheckout.RequestedSession` and `Identity.BlocklistEntry`
845
- * Add support for `confirm`, `create`, `expire`, `retrieve`, and `update` methods on resource `DelegatedCheckout.RequestedSession`
846
- * Add support for `create`, `disable`, `list`, and `retrieve` methods on resource `Identity.BlocklistEntry`
847
- * Add support for `blocked_by_entry` on `Identity.VerificationReport.document`, `Identity.VerificationReport.selfie`, and `Identity.VerificationReportListParams`
848
-
849
- ## 19.2.0-alpha.2 - 2025-10-09
850
- * [#2457](https://github.com/stripe/stripe-node/pull/2457) Update generated code for private-preview
851
- * Add support for new resource `PaymentMethodBalance`
852
- * Add support for `check_balance` method on resource `PaymentMethod`
853
- * Add support for `benefits` on `Card`, `Charge.payment_method_details.card`, `ConfirmationToken.payment_method_preview.card`, and `PaymentMethod.card`
854
- * Add support for `benefit` on `PaymentIntent.payment_details`, `PaymentIntentConfirmParams.payment_details`, `PaymentIntentCreateParams.payment_details`, and `PaymentIntentUpdateParams.payment_details`
855
- * Add support for `setup_details` on `SetupIntentConfirmParams`, `SetupIntentCreateParams`, `SetupIntentUpdateParams`, and `SetupIntent`
856
- * Add support for new value `card_creator` on enums `V2.Core.Account.applied_configurations` and `V2.Core.AccountCloseParams.applied_configurations`
857
- * Add support for `card_creator` on `V2.Core.Account.configuration`, `V2.Core.Account.identity.attestations.terms_of_service`, `V2.Core.AccountCreateParams.configuration`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service`, `V2.Core.AccountUpdateParams.configuration`, and `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service`
858
- * Add support for new values `commercial.celtic.charge_card`, `commercial.celtic.spend_card`, `commercial.cross_river_bank.charge_card`, `commercial.cross_river_bank.spend_card`, `commercial.stripe.charge_card`, and `commercial.stripe.prepaid_card` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
859
- * Add support for new value `card_creator` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].configuration`
860
- * Add support for new value `configuration.card_creator` on enums `V2.Core.AccountCreateParams.include`, `V2.Core.AccountRetrieveParams.include`, and `V2.Core.AccountUpdateParams.include`
861
- * Add support for thin events `V2CoreAccountIncludingConfigurationCardCreatorCapabilityStatusUpdatedEvent` and `V2CoreAccountIncludingConfigurationCardCreatorUpdatedEvent` with related object `V2.Core.Account`
862
- * Remove support for thin events `V1CustomerDiscountCreatedEvent`, `V1CustomerDiscountDeletedEvent`, and `V1CustomerDiscountUpdatedEvent` with related object `Discount`
863
- * [#2449](https://github.com/stripe/stripe-node/pull/2449) Update changelog for private preview
864
-
865
- ## 19.2.0-alpha.1 - 2025-10-03
866
- * Contains bug fixes and improvements from [v19.1.0](https://github.com/stripe/stripe-node/blob/master/CHANGELOG.md#1910---2025-10-03).
867
-
868
273
  ## 19.1.0 - 2025-10-03
869
274
  * [#2453](https://github.com/stripe/stripe-node/pull/2453) add missing fetchEvent type for UnknownEventNotification
870
275
 
@@ -873,127 +278,6 @@ This release changes the pinned API version to `2025-10-29.clover`.
873
278
  * [#2447](https://github.com/stripe/stripe-node/pull/2447) Update param in deprecation docs link
874
279
  * [#2444](https://github.com/stripe/stripe-node/pull/2444) Update CHANGELOG.md to point to right API version
875
280
 
876
- ## 19.1.0-beta.1 - 2025-09-30
877
- 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.
878
-
879
- * [#2422](https://github.com/stripe/stripe-node/pull/2422) Update generated code for beta
880
- * Add support for `attach_cadence` method on resource `Subscription`
881
- * Add support for `billing_cadence` on `InvoiceCreatePreviewParams`, `SubscriptionCreateParams`, `SubscriptionUpdateParams`, and `Subscription`
882
- * Add support for `billing_cadence_details` on `Invoice.parent` and `QuotePreviewInvoice.parent`
883
- * Add support for new value `billing_cadence_details` on enums `Invoice.parent.type` and `QuotePreviewInvoice.parent.type`
884
- * [#2410](https://github.com/stripe/stripe-node/pull/2410) Update generated code for beta
885
- * Add support for new resources `V2.Billing.BillSettingVersion`, `V2.Billing.BillSetting`, `V2.Billing.Cadence`, `V2.Billing.CollectionSettingVersion`, `V2.Billing.CollectionSetting`, and `V2.Billing.Profile`
886
- * Add support for `create`, `list`, `retrieve`, and `update` methods on resources `V2.Billing.BillSetting`, `V2.Billing.CollectionSetting`, and `V2.Billing.Profile`
887
- * Add support for `list` and `retrieve` methods on resources `V2.Billing.BillSettingVersion` and `V2.Billing.CollectionSettingVersion`
888
- * Add support for `cancel`, `create`, `list`, `retrieve`, and `update` methods on resource `V2.Billing.Cadence`
889
- * Add support for new value `crypto_wallet` on enum `V2.Core.Account.configuration.recipient.default_outbound_destination.type`
890
- * Add support for `profile` on `V2.Core.Account.defaults`, `V2.Core.AccountCreateParams.defaults`, and `V2.Core.AccountUpdateParams.defaults`
891
- * Add support for `i_p` on `V2.Core.Account.identity.attestations.directorship_declaration`, `V2.Core.Account.identity.attestations.ownership_declaration`, `V2.Core.Account.identity.attestations.terms_of_service.account`, `V2.Core.Account.identity.attestations.terms_of_service.storer`, `V2.Core.Account.identity.individual.additional_terms_of_service.account`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.account`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.storer`, `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.account`, `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.storer`, `V2.Core.Person.additional_terms_of_service.account`, `V2.Core.PersonCreateParams.additional_terms_of_service.account`, and `V2.Core.PersonUpdateParams.additional_terms_of_service.account`
892
- * Remove support for `ip` on `V2.Core.Account.identity.attestations.directorship_declaration`, `V2.Core.Account.identity.attestations.ownership_declaration`, `V2.Core.Account.identity.attestations.terms_of_service.account`, `V2.Core.Account.identity.attestations.terms_of_service.storer`, `V2.Core.Account.identity.individual.additional_terms_of_service.account`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.account`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service.storer`, `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.account`, `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service.storer`, `V2.Core.Person.additional_terms_of_service.account`, `V2.Core.PersonCreateParams.additional_terms_of_service.account`, and `V2.Core.PersonUpdateParams.additional_terms_of_service.account`
893
- * Remove support for `doing_business_as`, `product_description`, and `url` on `V2.Core.Account.identity.business_details`, `V2.Core.AccountCreateParams.identity.business_details`, and `V2.Core.AccountUpdateParams.identity.business_details`
894
- * Add support for `settlement_currency` on `V2.MoneyManagement.FinancialAddress`
895
- * Add support for `sepa_bank_account` on `V2.MoneyManagement.FinancialAddress.credentials` and `V2.MoneyManagement.ReceivedCredit.bank_transfer`
896
- * Add support for new value `sepa_bank_account` on enum `V2.MoneyManagement.FinancialAddress.credentials.type`
897
- * Add support for `amount_details` and `payments_orchestration` on `V2.Payments.OffSessionPaymentCreateParams` and `V2.Payments.OffSessionPayment`
898
- * Add support for new value `authorization_expired` on enum `V2.Payments.OffSessionPayment.failure_reason`
899
- * Add support for `retry_policy` on `V2.Payments.OffSessionPayment.retry_details` and `V2.Payments.OffSessionPaymentCreateParams.retry_details`
900
- * Add support for new values `heuristic` and `scheduled` on enums `V2.Payments.OffSessionPayment.retry_details.retry_strategy` and `V2.Payments.OffSessionPaymentCreateParams.retry_details.retry_strategy`
901
- * Change type of `V2.MoneyManagement.OutboundPaymentQuote.fx_quote.lock_duration` from `literal('five_minutes')` to `enum('five_minutes'|'none')`
902
- * Change type of `V2.MoneyManagement.OutboundPaymentQuote.fx_quote.lock_expires_at` from `DateTime` to `DateTime | null`
903
- * Add support for new value `none` on enum `V2.MoneyManagement.OutboundPaymentQuote.fx_quote.lock_status`
904
- * Add support for new value `crypto_wallet` on enums `V2.MoneyManagement.OutboundSetupIntentCreateParams.payout_method_data.type`, `V2.MoneyManagement.OutboundSetupIntentUpdateParams.payout_method_data.type`, and `V2.MoneyManagement.PayoutMethod.type`
905
- * Add support for `origin_type` on `V2.MoneyManagement.ReceivedCredit.bank_transfer`
906
- * Remove support for `payment_method_type` on `V2.MoneyManagement.ReceivedCredit.bank_transfer`
907
- * Add support for new value `prevented` on enum `Dispute.status`
908
- * Add support for `mandate_data` and `payment_method_options` on `V2.Payments.OffSessionPaymentCreateParams`
909
- * Add support for `type` on `V2.MoneyManagement.FinancialAddressCreateParams`
910
- * Remove support for `currency` on `V2.MoneyManagement.FinancialAddressCreateParams`
911
- * Add support for new values `financial_addressses.crypto_wallets`, `holds_currencies.usdc`, `outbound_payments.crypto_wallets`, and `outbound_transfers.crypto_wallets` on enum `EventsV2CoreAccountIncludingConfigurationStorerCapabilityStatusUpdatedEvent.updated_capability`
912
- * Add support for thin event `V2BillingBillSettingUpdatedEvent` with related object `V2.Billing.BillSetting`
913
- * Add support for error type `RateLimitError`
914
- * Add support for error code `invalid_payout_method_crypto_wallet` on `InvalidPayoutMethodError`
915
- * [#2397](https://github.com/stripe/stripe-node/pull/2397) Update generated code for beta
916
- * Add support for new resources `Billing.Analytics.MeterUsageRow` and `Billing.Analytics.MeterUsage`
917
- * Remove support for resources `Billing.MeterUsageRow` and `Billing.MeterUsage`
918
- * Add support for `retrieve` method on resource `Billing.Analytics.MeterUsage`
919
- * Remove support for `retrieve` method on resource `Billing.MeterUsage`
920
- * Add support for `report_payment_attempt_informational` method on resource `PaymentRecord`
921
- * Add support for `minimum_balance_by_currency` on `BalanceSettingUpdateParams.payments.payouts` and `BalanceSettings.payments.payouts`
922
- * Remove support for values `saturday` and `sunday` from enums `BalanceSettingUpdateParams.payments.payouts.schedule.weekly_payout_days` and `BalanceSettings.payments.payouts.schedule.weekly_payout_days`
923
- * Change type of `BalanceSettingUpdateParams.payments.settlement_timing.delay_days_override` from `longInteger` to `emptyable(longInteger)`
924
- * Change `BalanceSettingUpdateParams.payments` to be optional
925
- * Add support for `delay_days_override` on `BalanceSettings.payments.settlement_timing`
926
- * Add support for `automatic_tax` and `invoice_creation` on `Checkout.SessionUpdateParams`
927
- * Add support for `unit_label` on `Checkout.SessionUpdateParams.line_items[].price_data.product_data`
928
- * Add support for `invoice_settings` on `Checkout.SessionUpdateParams.subscription_data`
929
- * Change `Checkout.Session.collected_information.business_name` to be required
930
- * Add support for `intended_submission_method` on `DisputeUpdateParams` and `Dispute`
931
- * Change type of `Dispute.smart_disputes.recommended_evidence` from `string` to `array(string)`
932
- * Add support for `pix` on `Invoice.payment_settings.payment_method_options`, `InvoiceCreateParams.payment_settings.payment_method_options`, `InvoiceUpdateParams.payment_settings.payment_method_options`, `QuotePreviewInvoice.payment_settings.payment_method_options`, `Subscription.payment_settings.payment_method_options`, `SubscriptionCreateParams.payment_settings.payment_method_options`, and `SubscriptionUpdateParams.payment_settings.payment_method_options`
933
- * Add support for new value `pix` on enums `Invoice.payment_settings.payment_method_types`, `InvoiceCreateParams.payment_settings.payment_method_types`, `InvoiceUpdateParams.payment_settings.payment_method_types`, `QuotePreviewInvoice.payment_settings.payment_method_types`, `Subscription.payment_settings.payment_method_types`, `SubscriptionCreateParams.payment_settings.payment_method_types`, and `SubscriptionUpdateParams.payment_settings.payment_method_types`
934
- * Add support for `billing_schedules` on `InvoiceCreatePreviewParams.subscription_details`, `SubscriptionCreateParams`, `SubscriptionUpdateParams`, and `Subscription`
935
- * Add support for `paypay` on `PaymentAttemptRecord.payment_method_details` and `PaymentRecord.payment_method_details`
936
- * Add support for `wallet` on `PaymentAttemptRecord.payment_method_details.card` and `PaymentRecord.payment_method_details.card`
937
- * Change type of `PaymentAttemptRecord.processor_details.custom.payment_reference` and `PaymentRecord.processor_details.custom.payment_reference` from `string` to `string | null`
938
- * Add support for `flexible` on `QuotePreviewSubscriptionSchedule.billing_mode`
939
- * Add support for `billed_until` on `SubscriptionItem`
940
- * Add support for error codes `financial_connections_account_pending_account_numbers` and `financial_connections_account_unavailable_account_numbers` on `QuotePreviewInvoice.last_finalization_error`
941
-
942
- ## 19.1.0-alpha.1 - 2025-09-30
943
- This release changes the pinned API version to `2025-09-30.preview`. It is built on top of SDK version 19.0.0 and 19.1.0-beta.1 which contain breaking changes. Please review the changelog for these versions if upgrading from older SDK versions.
944
-
945
- * [#2417](https://github.com/stripe/stripe-node/pull/2417) parseThinEvent__experimental is no longer needed
946
- * ⚠️ Remove the `StripeClient.parseThinEvent__experimental` and `PushedThinEvent` classes. They've been replaced with `StripeClient.parseEventNotification` and the *`EventNotification` classes respectively.
947
- * [#2419](https://github.com/stripe/stripe-node/pull/2419) Update generated code for private-preview
948
- * Add support for `paypay_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
949
- * Remove support for values `saturday` and `sunday` from enums `Account.settings.payouts.schedule.weekly_payout_days`, `AccountCreateParams.settings.payouts.schedule.weekly_payout_days`, `AccountUpdateParams.settings.payouts.schedule.weekly_payout_days`
950
- * Add support for `credit_grants` on `Billing.AlertCreateParams.credit_balance_threshold.filters[]`
951
- * Add support for `paypay` on `Charge.payment_method_details`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, `PaymentMethodConfiguration`, `PaymentMethodCreateParams`, `PaymentMethod`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
952
- * Add support for `location` and `reader` on `Charge.payment_method_details.paynow`
953
- * Add support for new value `paypay` on enum `Checkout.SessionCreateParams.payment_method_types`
954
- * Add support for new value `paypay` on enums `ConfirmationTokenCreateParams.testHelpers.payment_method_data.type`, `PaymentIntentConfirmParams.payment_method_data.type`, `PaymentIntentCreateParams.payment_method_data.type`, `PaymentIntentUpdateParams.payment_method_data.type`, `SetupIntentConfirmParams.payment_method_data.type`, `SetupIntentCreateParams.payment_method_data.type`, and `SetupIntentUpdateParams.payment_method_data.type`
955
- * Add support for new value `paypay` on enums `ConfirmationToken.payment_method_preview.type` and `PaymentMethod.type`
956
- * Add support for new value `paypay` on enums `CustomerListPaymentMethodsParams.type`, `PaymentMethodCreateParams.type`, and `PaymentMethodListParams.type`
957
- * Add support for new value `paypay` on enums `PaymentIntent.excluded_payment_method_types` and `PaymentIntentCreateParams.excluded_payment_method_types`
958
- * Add support for new value `paypay` on enums `PaymentLink.payment_method_types`, `PaymentLinkCreateParams.payment_method_types`, and `PaymentLinkUpdateParams.payment_method_types`
959
- * Add support for `billing_cadence` on `InvoiceListParams`
960
- * Add support for `payment_record_refund` and `type` on `CreditNote.refunds[]`, `CreditNoteCreateParams.refunds[]`, `CreditNotePreviewLinesParams.refunds[]`, and `CreditNotePreviewParams.refunds[]`
961
- * [#2409](https://github.com/stripe/stripe-node/pull/2409) Update generated code for private-preview
962
- * Add support for new resource `V2.MoneyManagement.RecipientVerification`
963
- * Add support for `acknowledge`, `create`, `recipient_verifications`, and `retrieve` methods on resource `V2.MoneyManagement.RecipientVerification`
964
- * Add support for `update` method on resources `V2.Billing.PricingPlanSubscription` and `V2.Billing.ServiceAction`
965
- * Add support for `crypto_wallets` on `V2.Account.configuration.recipient_data.features`, `V2.AccountCreateParams.configuration.recipient_data.features`, `V2.AccountUpdateParams.configuration.recipient_data.features`, `V2.Core.Account.configuration.recipient.capabilities`, `V2.Core.AccountCreateParams.configuration.recipient.capabilities`, and `V2.Core.AccountUpdateParams.configuration.recipient.capabilities`
966
- * Add support for new value `crypto` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
967
- * Add support for new value `crypto_wallet` on enum `V2.Account.configuration.recipient_data.default_outbound_destination.type`
968
- * Add support for new value `crypto_wallets` on enum `V2.Account.configuration.supportable_features.recipient_data`
969
- * Add support for new value `crypto_wallets` on enum `V2.Account.requirements[].impact.required_for_features`
970
- * Add support for `lookup_key` on `V2.Billing.CadenceCreateParams`, `V2.Billing.CadenceUpdateParams`, and `V2.Billing.Cadence`
971
- * Add support for `settings_data` on `V2.Billing.Cadence`
972
- * Change type of `V2.Billing.Cadence.payer.billing_profile` from `string | null` to `string`
973
- * Add support for `v1_event_id` on `V2.Core.Event`
974
- * Add support for `recipient_verification` on `V2.MoneyManagement.OutboundPaymentCreateParams`, `V2.MoneyManagement.OutboundPayment`, `V2.MoneyManagement.OutboundTransferCreateParams`, and `V2.MoneyManagement.OutboundTransfer`
975
- * Add support for `crypto_wallet` on `V2.MoneyManagement.OutboundSetupIntentCreateParams.payout_method_data` and `V2.MoneyManagement.PayoutMethod`
976
- * Add support for `custom_pricing_unit_details` on `V2.Billing.RateCardRate.custom_pricing_unit_amount`, `V2.Billing.ServiceAction.credit_grant.amount.custom_pricing_unit`, and `V2.Billing.ServiceAction.credit_grant_per_tenant.amount.custom_pricing_unit`
977
- * Add support for `origin_type` on `V2.MoneyManagement.ReceivedDebit.bank_transfer`
978
- * Add support for new value `sepa_credit_transfer` on enum `V2.FinancialAddressCreditSimulationCreditParams.network`
979
- * Add support for new value `credentials.sepa_bank_account.iban` on enums `V2.MoneyManagement.FinancialAddressListParams.include` and `V2.MoneyManagement.FinancialAddressRetrieveParams.include`
980
- * Add support for `sepa_bank_account` on `V2.MoneyManagement.FinancialAddressCreateParams`
981
- * Remove support for `price` on `V2.Billing.RateCardRateCreateParams`
982
- * Add support for `lookup_keys` on `V2.Billing.CadenceListParams`
983
- * Change type of `V2.Billing.CadenceCancelParams.include`, `V2.Billing.CadenceCreateParams.include`, `V2.Billing.CadenceListParams.include`, `V2.Billing.CadenceRetrieveParams.include`, and `V2.Billing.CadenceUpdateParams.include` from `literal('invoice_discount_rules')` to `enum('invoice_discount_rules'|'settings_data')`
984
- * Remove support for `customer` and `type` on `V2.Billing.CadenceCreateParams.payer`
985
- * Change `V2.Billing.CadenceCreateParams.payer.billing_profile` to be required
986
- * Add support for new value `crypto_wallets` on enum `EventsAccountConfigurationRecipientDataFeatureStatusUpdatedEvent.feature_name`
987
- * Add support for new value `crypto_wallets_v2` on enum `EventsV2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent.updated_capability`
988
- * Remove support for `alert_id` on `EventsV2CoreHealthApiErrorResolvedEvent`, `EventsV2CoreHealthApiLatencyResolvedEvent`, `EventsV2CoreHealthAuthorizationRateDropResolvedEvent`, `EventsV2CoreHealthIssuingAuthorizationRequestTimeoutResolvedEvent`, `EventsV2CoreHealthPaymentMethodErrorResolvedEvent`, `EventsV2CoreHealthTrafficVolumeDropResolvedEvent`, and `EventsV2CoreHealthWebhookLatencyResolvedEvent`
989
- * Add support for thin event `V1AccountUpdatedEvent` with related object `V2.Account`
990
- * Add support for thin events `V1ApplicationFeeCreatedEvent`, `V1ApplicationFeeRefundedEvent`, `V1BillingPortalConfigurationCreatedEvent`, `V1BillingPortalConfigurationUpdatedEvent`, `V1CapabilityUpdatedEvent`, `V1ChargeCapturedEvent`, `V1ChargeDisputeClosedEvent`, `V1ChargeDisputeCreatedEvent`, `V1ChargeDisputeFundsReinstatedEvent`, `V1ChargeDisputeFundsWithdrawnEvent`, `V1ChargeDisputeUpdatedEvent`, `V1ChargeExpiredEvent`, `V1ChargeFailedEvent`, `V1ChargePendingEvent`, `V1ChargeRefundUpdatedEvent`, `V1ChargeRefundedEvent`, `V1ChargeSucceededEvent`, `V1ChargeUpdatedEvent`, `V1CheckoutSessionAsyncPaymentFailedEvent`, `V1CheckoutSessionAsyncPaymentSucceededEvent`, `V1CheckoutSessionCompletedEvent`, `V1CheckoutSessionExpiredEvent`, `V1ClimateOrderCanceledEvent`, `V1ClimateOrderCreatedEvent`, `V1ClimateOrderDelayedEvent`, `V1ClimateOrderDeliveredEvent`, `V1ClimateOrderProductSubstitutedEvent`, `V1ClimateProductCreatedEvent`, `V1ClimateProductPricingUpdatedEvent`, `V1CouponCreatedEvent`, `V1CouponDeletedEvent`, `V1CouponUpdatedEvent`, `V1CreditNoteCreatedEvent`, `V1CreditNoteUpdatedEvent`, `V1CreditNoteVoidedEvent`, `V1CustomerCreatedEvent`, `V1CustomerDeletedEvent`, `V1CustomerDiscountCreatedEvent`, `V1CustomerDiscountDeletedEvent`, `V1CustomerDiscountUpdatedEvent`, `V1CustomerSubscriptionCreatedEvent`, `V1CustomerSubscriptionDeletedEvent`, `V1CustomerSubscriptionPausedEvent`, `V1CustomerSubscriptionPendingUpdateAppliedEvent`, `V1CustomerSubscriptionPendingUpdateExpiredEvent`, `V1CustomerSubscriptionResumedEvent`, `V1CustomerSubscriptionTrialWillEndEvent`, `V1CustomerSubscriptionUpdatedEvent`, `V1CustomerTaxIdCreatedEvent`, `V1CustomerTaxIdDeletedEvent`, `V1CustomerTaxIdUpdatedEvent`, `V1CustomerUpdatedEvent`, `V1FileCreatedEvent`, `V1FinancialConnectionsAccountCreatedEvent`, `V1FinancialConnectionsAccountDeactivatedEvent`, `V1FinancialConnectionsAccountDisconnectedEvent`, `V1FinancialConnectionsAccountReactivatedEvent`, `V1FinancialConnectionsAccountRefreshedBalanceEvent`, `V1FinancialConnectionsAccountRefreshedOwnershipEvent`, `V1FinancialConnectionsAccountRefreshedTransactionsEvent`, `V1IdentityVerificationSessionCanceledEvent`, `V1IdentityVerificationSessionCreatedEvent`, `V1IdentityVerificationSessionProcessingEvent`, `V1IdentityVerificationSessionRedactedEvent`, `V1IdentityVerificationSessionRequiresInputEvent`, `V1IdentityVerificationSessionVerifiedEvent`, `V1InvoiceCreatedEvent`, `V1InvoiceDeletedEvent`, `V1InvoiceFinalizationFailedEvent`, `V1InvoiceFinalizedEvent`, `V1InvoiceMarkedUncollectibleEvent`, `V1InvoiceOverdueEvent`, `V1InvoiceOverpaidEvent`, `V1InvoicePaidEvent`, `V1InvoicePaymentActionRequiredEvent`, `V1InvoicePaymentFailedEvent`, `V1InvoicePaymentPaidEvent`, `V1InvoicePaymentSucceededEvent`, `V1InvoiceSentEvent`, `V1InvoiceUpcomingEvent`, `V1InvoiceUpdatedEvent`, `V1InvoiceVoidedEvent`, `V1InvoiceWillBeDueEvent`, `V1InvoiceitemCreatedEvent`, `V1InvoiceitemDeletedEvent`, `V1IssuingAuthorizationCreatedEvent`, `V1IssuingAuthorizationRequestEvent`, `V1IssuingAuthorizationUpdatedEvent`, `V1IssuingCardCreatedEvent`, `V1IssuingCardUpdatedEvent`, `V1IssuingCardholderCreatedEvent`, `V1IssuingCardholderUpdatedEvent`, `V1IssuingDisputeClosedEvent`, `V1IssuingDisputeCreatedEvent`, `V1IssuingDisputeFundsReinstatedEvent`, `V1IssuingDisputeFundsRescindedEvent`, `V1IssuingDisputeSubmittedEvent`, `V1IssuingDisputeUpdatedEvent`, `V1IssuingPersonalizationDesignActivatedEvent`, `V1IssuingPersonalizationDesignDeactivatedEvent`, `V1IssuingPersonalizationDesignRejectedEvent`, `V1IssuingPersonalizationDesignUpdatedEvent`, `V1IssuingTokenCreatedEvent`, `V1IssuingTokenUpdatedEvent`, `V1IssuingTransactionCreatedEvent`, `V1IssuingTransactionPurchaseDetailsReceiptUpdatedEvent`, `V1IssuingTransactionUpdatedEvent`, `V1MandateUpdatedEvent`, `V1PaymentIntentAmountCapturableUpdatedEvent`, `V1PaymentIntentCanceledEvent`, `V1PaymentIntentCreatedEvent`, `V1PaymentIntentPartiallyFundedEvent`, `V1PaymentIntentPaymentFailedEvent`, `V1PaymentIntentProcessingEvent`, `V1PaymentIntentRequiresActionEvent`, `V1PaymentIntentSucceededEvent`, `V1PaymentLinkCreatedEvent`, `V1PaymentLinkUpdatedEvent`, `V1PaymentMethodAttachedEvent`, `V1PaymentMethodAutomaticallyUpdatedEvent`, `V1PaymentMethodDetachedEvent`, `V1PaymentMethodUpdatedEvent`, `V1PayoutCanceledEvent`, `V1PayoutCreatedEvent`, `V1PayoutFailedEvent`, `V1PayoutPaidEvent`, `V1PayoutReconciliationCompletedEvent`, `V1PayoutUpdatedEvent`, `V1PersonCreatedEvent`, `V1PersonDeletedEvent`, `V1PersonUpdatedEvent`, `V1PlanCreatedEvent`, `V1PlanDeletedEvent`, `V1PlanUpdatedEvent`, `V1PriceCreatedEvent`, `V1PriceDeletedEvent`, `V1PriceUpdatedEvent`, `V1ProductCreatedEvent`, `V1ProductDeletedEvent`, `V1ProductUpdatedEvent`, `V1PromotionCodeCreatedEvent`, `V1PromotionCodeUpdatedEvent`, `V1QuoteAcceptedEvent`, `V1QuoteCanceledEvent`, `V1QuoteCreatedEvent`, `V1QuoteFinalizedEvent`, `V1RadarEarlyFraudWarningCreatedEvent`, `V1RadarEarlyFraudWarningUpdatedEvent`, `V1RefundCreatedEvent`, `V1RefundFailedEvent`, `V1RefundUpdatedEvent`, `V1ReviewClosedEvent`, `V1ReviewOpenedEvent`, `V1SetupIntentCanceledEvent`, `V1SetupIntentCreatedEvent`, `V1SetupIntentRequiresActionEvent`, `V1SetupIntentSetupFailedEvent`, `V1SetupIntentSucceededEvent`, `V1SigmaScheduledQueryRunCreatedEvent`, `V1SourceCanceledEvent`, `V1SourceChargeableEvent`, `V1SourceFailedEvent`, `V1SourceRefundAttributesRequiredEvent`, `V1SubscriptionScheduleAbortedEvent`, `V1SubscriptionScheduleCanceledEvent`, `V1SubscriptionScheduleCompletedEvent`, `V1SubscriptionScheduleCreatedEvent`, `V1SubscriptionScheduleExpiringEvent`, `V1SubscriptionScheduleReleasedEvent`, `V1SubscriptionScheduleUpdatedEvent`, `V1TaxRateCreatedEvent`, `V1TaxRateUpdatedEvent`, `V1TerminalReaderActionFailedEvent`, `V1TerminalReaderActionSucceededEvent`, `V1TerminalReaderActionUpdatedEvent`, `V1TestHelpersTestClockAdvancingEvent`, `V1TestHelpersTestClockCreatedEvent`, `V1TestHelpersTestClockDeletedEvent`, `V1TestHelpersTestClockInternalFailureEvent`, `V1TestHelpersTestClockReadyEvent`, `V1TopupCanceledEvent`, `V1TopupCreatedEvent`, `V1TopupFailedEvent`, `V1TopupReversedEvent`, `V1TopupSucceededEvent`, `V1TransferCreatedEvent`, `V1TransferReversedEvent`, `V1TransferUpdatedEvent`, `V2CoreHealthIssuingAuthorizationRequestErrorsFiringEvent`, and `V2CoreHealthIssuingAuthorizationRequestErrorsResolvedEvent`
991
- * Add support for thin event `V2CoreClaimableSandboxCreatedEvent` with related object `V2.Core.ClaimableSandbox`
992
- * Add support for thin events `V2MoneyManagementRecipientVerificationCreatedEvent` and `V2MoneyManagementRecipientVerificationUpdatedEvent` with related object `V2.MoneyManagement.RecipientVerification`
993
- * Add support for error code `account_rate_limit_exceeded` on `RateLimitError`
994
- * Remove support for resources `V2.Reporting.ReportRun`, `V2.Reporting.Report`
995
- * Remove support for thin events `V2ReportingReportRunCreatedEvent`, `V2ReportingReportRunFailedEvent`, `V2ReportingReportRunSucceededEvent`, and `V2ReportingReportRunUpdatedEvent` with related object `V2.Reporting.ReportRun`
996
-
997
281
  ## 19.0.0 - 2025-09-30
998
282
  This release changes the pinned API version to `2025-09-30.clover` and contains breaking changes (prefixed with ⚠️ below)
999
283
 
@@ -1066,108 +350,6 @@ This release changes the pinned API version to `2025-09-30.clover` and contains
1066
350
  * Add support for new value `2025-09-30.clover` on enum `WebhookEndpointCreateParams.api_version`
1067
351
  * Add support for error codes `financial_connections_account_pending_account_numbers` and `financial_connections_account_unavailable_account_numbers` on `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
1068
352
 
1069
- ## 18.6.0-alpha.2 - 2025-09-17
1070
-
1071
- * [#2404](https://github.com/stripe/stripe-node/pull/2404) Update generated code for private-preview
1072
- * Add support for `retrieve` method on resource `V2.Core.ClaimableSandbox`
1073
- * Add support for `month_of_year` on `V2.Billing.Cadence.billing_cycle.month` and `V2.Billing.CadenceCreateParams.billing_cycle.month`
1074
- * Add support for `claimed_at`, `expires_at`, `sandbox_details`, and `status` on `V2.Core.ClaimableSandbox`
1075
- * Remove support for `api_keys` on `V2.Core.ClaimableSandbox`
1076
- * Change type of `V2.Core.ClaimableSandbox.claim_url` from `string` to `string | null`
1077
- * Add support for new value `current_billing_period_end` on enums `V2.Billing.IntentAction.deactivate.effective_at.type` and `V2.Billing.IntentCreateParams.actions[].deactivate.effective_at.type`
1078
- * Add support for `will_activate_at` and `will_cancel_at` on `V2.Billing.PricingPlanSubscription.servicing_status_transitions` and `V2.Billing.RateCardSubscription.servicing_status_transitions`
1079
- * Add support for `category` and `priority` on `V2.Billing.ServiceAction.credit_grant_per_tenant`, `V2.Billing.ServiceAction.credit_grant`, `V2.Billing.ServiceActionCreateParams.credit_grant_per_tenant`, and `V2.Billing.ServiceActionCreateParams.credit_grant`
1080
- * Change `V2.Billing.LicenseFeeUpdateParams.display_name` to be optional
1081
- * Add support for `invoices` on `EventsV2BillingCadenceBilledEvent`
1082
- * Add support for thin events `V2CoreClaimableSandboxClaimedEvent`, `V2CoreClaimableSandboxExpiredEvent`, `V2CoreClaimableSandboxExpiringEvent`, and `V2CoreClaimableSandboxSandboxDetailsOwnerAccountUpdatedEvent` with related object `V2.Core.ClaimableSandbox`
1083
- * Remove support for thin event `V2BillingCadenceErroredEvent` with related object `V2.Billing.Cadence`
1084
-
1085
- ## 18.6.0-alpha.1 - 2025-08-27
1086
- It is built on top of SDK version 18.6.0-beta.1 which contains breaking changes. Please review the changelog for it if upgrading from older SDK versions.
1087
-
1088
- * [#2390](https://github.com/stripe/stripe-node/pull/2390) Update generated code for private-preview
1089
- * Add support for `attach_cadence` method on resource `Subscription`
1090
- * Add support for `currency` and `external_customer_id` on `Billing.AlertTriggered`
1091
- * Add support for `custom_pricing_unit` on `Billing.AlertTriggered`, `Billing.CreditBalanceSummary.balances[].available_balance`, `Billing.CreditBalanceSummary.balances[].ledger_balance`, `Billing.CreditBalanceTransaction.credit.amount`, `Billing.CreditBalanceTransaction.debit.amount`, `Billing.CreditGrant.amount`, and `Billing.CreditGrantCreateParams.amount`
1092
- * Add support for `customer` on `Billing.AlertListParams`
1093
- * Change type of `Billing.Alert.alert_type`, `Billing.AlertCreateParams.alert_type`, and `Billing.AlertListParams.alert_type` from `literal('usage_threshold')` to `enum('credit_balance_threshold'|'usage_threshold')`
1094
- * Add support for `credit_balance_threshold` on `Billing.AlertCreateParams` and `Billing.Alert`
1095
- * Add support for `billable_items` on `Billing.CreditBalanceSummaryRetrieveParams.filter.applicability_scope`, `Billing.CreditGrant.applicability_config.scope`, and `Billing.CreditGrantCreateParams.applicability_config.scope`
1096
- * Change type of `Billing.CreditBalanceSummary.balances[].available_balance.type`, `Billing.CreditBalanceSummary.balances[].ledger_balance.type`, `Billing.CreditBalanceTransaction.credit.amount.type`, `Billing.CreditBalanceTransaction.debit.amount.type`, `Billing.CreditGrant.amount.type`, and `Billing.CreditGrantCreateParams.amount.type` from `literal('monetary')` to `enum('custom_pricing_unit'|'monetary')`
1097
- * Add support for `license_fee_subscription_details` and `rate_card_subscription_details` on `InvoiceItem.parent` and `InvoiceLineItem.parent`
1098
- * Change type of `InvoiceItem.parent.type` from `literal('subscription_details')` to `enum('license_fee_subscription_details'|'rate_card_subscription_details'|'subscription_details')`
1099
- * Add support for `license_fee_details` and `rate_card_rate_details` on `InvoiceItem.pricing` and `InvoiceLineItem.pricing`
1100
- * Change type of `InvoiceItem.pricing.type` and `InvoiceLineItem.pricing.type` from `literal('price_details')` to `enum('license_fee_details'|'price_details'|'rate_card_rate_details')`
1101
- * Add support for `billing_cadence` on `InvoiceCreatePreviewParams`, `SubscriptionCreateParams`, and `Subscription`
1102
- * Add support for `billing_cadence_details` on `Invoice.parent` and `QuotePreviewInvoice.parent`
1103
- * Add support for new value `billing_cadence_details` on enums `Invoice.parent.type` and `QuotePreviewInvoice.parent.type`
1104
- * Add support for new values `license_fee_subscription_details` and `rate_card_subscription_details` on enum `InvoiceLineItem.parent.type`
1105
- * Add support for new resources `V2.Billing.BillSettingVersion`, `V2.Billing.BillSetting`, `V2.Billing.Cadence`, `V2.Billing.CollectionSettingVersion`, `V2.Billing.CollectionSetting`, `V2.Billing.CustomPricingUnit`, `V2.Billing.IntentAction`, `V2.Billing.Intent`, `V2.Billing.LicenseFeeSubscription`, `V2.Billing.LicenseFeeVersion`, `V2.Billing.LicenseFee`, `V2.Billing.LicensedItem`, `V2.Billing.MeteredItem`, `V2.Billing.PricingPlanComponent`, `V2.Billing.PricingPlanSubscription`, `V2.Billing.PricingPlanVersion`, `V2.Billing.PricingPlan`, `V2.Billing.Profile`, `V2.Billing.RateCardRate`, `V2.Billing.RateCardSubscription`, `V2.Billing.RateCardVersion`, `V2.Billing.RateCard`, `V2.Billing.ServiceAction`, `V2.Core.ClaimableSandbox`, `V2.Reporting.ReportRun`, `V2.Reporting.Report`, and `V2.Tax.AutomaticRule`
1106
- * Add support for `create`, `deactivate`, `find`, `retrieve`, and `update` methods on resource `V2.Tax.AutomaticRule`
1107
- * Add support for `create` and `retrieve` methods on resources `V2.Billing.ServiceAction` and `V2.Reporting.ReportRun`
1108
- * Add support for `retrieve` method on resources `V2.Billing.LicenseFeeSubscription` and `V2.Reporting.Report`
1109
- * Add support for `create` method on resources `V2.Core.ClaimableSandbox`
1110
- * Add support for `cancel`, `create`, `list`, `retrieve`, and `update` methods on resources `V2.Billing.Cadence` and `V2.Billing.RateCardSubscription`
1111
- * Add support for `create`, `list`, `retrieve`, and `update` methods on resources `V2.Billing.BillSetting`, `V2.Billing.CollectionSetting`, `V2.Billing.CustomPricingUnit`, `V2.Billing.LicenseFee`, `V2.Billing.LicensedItem`, `V2.Billing.MeteredItem`, `V2.Billing.PricingPlan`, `V2.Billing.Profile`, and `V2.Billing.RateCard`
1112
- * Add support for `list` and `retrieve` methods on resources `V2.Billing.BillSettingVersion`, `V2.Billing.CollectionSettingVersion`, `V2.Billing.IntentAction`, `V2.Billing.LicenseFeeVersion`, `V2.Billing.PricingPlanSubscription`, `V2.Billing.PricingPlanVersion`, and `V2.Billing.RateCardVersion`
1113
- * Add support for `create`, `del`, `list`, and `retrieve` methods on resource `V2.Billing.RateCardRate`
1114
- * Add support for `create`, `del`, `list`, `retrieve`, and `update` methods on resource `V2.Billing.PricingPlanComponent`
1115
- * Add support for `cancel`, `commit`, `create`, `list`, `release_reservation`, `reserve`, and `retrieve` methods on resource `V2.Billing.Intent`
1116
- * Add support for `changes` on `V2.Event`
1117
- * Add support for thin events `V2BillingCadenceBilledEvent`, `V2BillingCadenceCanceledEvent`, `V2BillingCadenceCreatedEvent`, and `V2BillingCadenceErroredEvent` with related object `V2.Billing.Cadence`
1118
- * Add support for thin events `V2BillingLicenseFeeCreatedEvent` and `V2BillingLicenseFeeUpdatedEvent` with related object `V2.Billing.LicenseFee`
1119
- * Add support for thin event `V2BillingLicenseFeeVersionCreatedEvent` with related object `V2.Billing.LicenseFeeVersion`
1120
- * Add support for thin events `V2BillingLicensedItemCreatedEvent` and `V2BillingLicensedItemUpdatedEvent` with related object `V2.Billing.LicensedItem`
1121
- * Add support for thin events `V2BillingMeteredItemCreatedEvent` and `V2BillingMeteredItemUpdatedEvent` with related object `V2.Billing.MeteredItem`
1122
- * Add support for thin events `V2BillingPricingPlanCreatedEvent` and `V2BillingPricingPlanUpdatedEvent` with related object `V2.Billing.PricingPlan`
1123
- * Add support for thin events `V2BillingPricingPlanComponentCreatedEvent` and `V2BillingPricingPlanComponentUpdatedEvent` with related object `V2.Billing.PricingPlanComponent`
1124
- * Add support for thin events `V2BillingPricingPlanSubscriptionCollectionAwaitingCustomerActionEvent`, `V2BillingPricingPlanSubscriptionCollectionCurrentEvent`, `V2BillingPricingPlanSubscriptionCollectionPastDueEvent`, `V2BillingPricingPlanSubscriptionCollectionPausedEvent`, `V2BillingPricingPlanSubscriptionCollectionUnpaidEvent`, `V2BillingPricingPlanSubscriptionServicingActivatedEvent`, `V2BillingPricingPlanSubscriptionServicingCanceledEvent`, and `V2BillingPricingPlanSubscriptionServicingPausedEvent` with related object `V2.Billing.PricingPlanSubscription`
1125
- * Add support for thin event `V2BillingPricingPlanVersionCreatedEvent` with related object `V2.Billing.PricingPlanVersion`
1126
- * Add support for thin events `V2BillingRateCardCreatedEvent` and `V2BillingRateCardUpdatedEvent` with related object `V2.Billing.RateCard`
1127
- * Add support for thin event `V2BillingRateCardRateCreatedEvent` with related object `V2.Billing.RateCardRate`
1128
- * Add support for thin events `V2BillingRateCardSubscriptionActivatedEvent`, `V2BillingRateCardSubscriptionCanceledEvent`, `V2BillingRateCardSubscriptionCollectionAwaitingCustomerActionEvent`, `V2BillingRateCardSubscriptionCollectionCurrentEvent`, `V2BillingRateCardSubscriptionCollectionPastDueEvent`, `V2BillingRateCardSubscriptionCollectionPausedEvent`, `V2BillingRateCardSubscriptionCollectionUnpaidEvent`, `V2BillingRateCardSubscriptionServicingActivatedEvent`, `V2BillingRateCardSubscriptionServicingCanceledEvent`, and `V2BillingRateCardSubscriptionServicingPausedEvent` with related object `V2.Billing.RateCardSubscription`
1129
- * Add support for thin event `V2BillingRateCardVersionCreatedEvent` with related object `V2.Billing.RateCardVersion`
1130
- * Add support for thin events `V2CoreHealthApiErrorFiringEvent`, `V2CoreHealthApiErrorResolvedEvent`, `V2CoreHealthApiLatencyFiringEvent`, `V2CoreHealthApiLatencyResolvedEvent`, `V2CoreHealthAuthorizationRateDropFiringEvent`, `V2CoreHealthAuthorizationRateDropResolvedEvent`, `V2CoreHealthEventGenerationFailureResolvedEvent`, `V2CoreHealthFraudRateIncreasedEvent`, `V2CoreHealthIssuingAuthorizationRequestTimeoutFiringEvent`, `V2CoreHealthIssuingAuthorizationRequestTimeoutResolvedEvent`, `V2CoreHealthPaymentMethodErrorFiringEvent`, `V2CoreHealthPaymentMethodErrorResolvedEvent`, `V2CoreHealthTrafficVolumeDropFiringEvent`, `V2CoreHealthTrafficVolumeDropResolvedEvent`, `V2CoreHealthWebhookLatencyFiringEvent`, and `V2CoreHealthWebhookLatencyResolvedEvent`
1131
- * Add support for thin events `V2ReportingReportRunCreatedEvent`, `V2ReportingReportRunFailedEvent`, `V2ReportingReportRunSucceededEvent`, and `V2ReportingReportRunUpdatedEvent` with related object `V2.Reporting.ReportRun`
1132
- * Add support for error type `RateLimitError`
1133
-
1134
- ## 18.6.0-beta.1 - 2025-08-27
1135
- This release changes the pinned API version to `2025-08-27.preview`.
1136
-
1137
- * [#2381](https://github.com/stripe/stripe-node/pull/2381) Update generated code for beta
1138
- * Add support for `list` and `retrieve` methods on resource `InvoicePayment`
1139
- * Add support for `list` method on resource `Mandate`
1140
- * Add support for `applied` on `V2.Core.Account.configuration.customer`, `V2.Core.Account.configuration.merchant`, `V2.Core.Account.configuration.recipient`, `V2.Core.Account.configuration.storer`, `V2.Core.AccountUpdateParams.configuration.customer`, `V2.Core.AccountUpdateParams.configuration.merchant`, `V2.Core.AccountUpdateParams.configuration.recipient`, and `V2.Core.AccountUpdateParams.configuration.storer`
1141
- * Add support for new values `ao_nif`, `az_tin`, `bd_etin`, `cr_cpj`, `cr_nite`, `do_rcn`, `gt_nit`, `kz_bin`, `mz_nuit`, `pe_ruc`, `pk_ntn`, `sa_crn`, and `sa_tin` on enums `V2.Core.Account.identity.business_details.id_numbers[].type`, `V2.Core.AccountCreateParams.identity.business_details.id_numbers[].type`, and `V2.Core.AccountUpdateParams.identity.business_details.id_numbers[].type`
1142
- * Add support for new values `ao_nif`, `az_tin`, `bd_brc`, `bd_etin`, `bd_nid`, `cr_cpf`, `cr_dimex`, `cr_nite`, `do_rcn`, `gt_nit`, `kz_iin`, `mz_nuit`, `pe_dni`, `pk_cnic`, `pk_snic`, and `sa_tin` on enums `V2.Core.Account.identity.individual.id_numbers[].type`, `V2.Core.AccountCreateParams.identity.individual.id_numbers[].type`, `V2.Core.AccountUpdateParams.identity.individual.id_numbers[].type`, `V2.Core.Person.id_numbers[].type`, `V2.Core.PersonCreateParams.id_numbers[].type`, and `V2.Core.PersonUpdateParams.id_numbers[].type`
1143
- * Change type of `Billing.AlertTriggered.value` from `longInteger` to `decimal_string`
1144
- * Add support for `display_name` on `V2.MoneyManagement.FinancialAccountCreateParams` and `V2.MoneyManagement.FinancialAccount`
1145
- * Add support for new value `currency_conversion` on enums `V2.MoneyManagement.Transaction.category` and `V2.MoneyManagement.TransactionEntry.transaction_details.category`
1146
- * Add support for `currency_conversion` on `V2.MoneyManagement.Transaction.flow` and `V2.MoneyManagement.TransactionEntry.transaction_details.flow`
1147
- * Add support for new value `currency_conversion` on enums `V2.MoneyManagement.Transaction.flow.type` and `V2.MoneyManagement.TransactionEntry.transaction_details.flow.type`
1148
- * Add support for `payments` on `BalanceSettingUpdateParams` and `BalanceSettings`
1149
- * Remove support for `debit_negative_balances`, `payouts`, and `settlement_timing` on `BalanceSettingUpdateParams` and `BalanceSettings`
1150
- * Add support for `mandate` on `Charge.payment_method_details.pix`, `PaymentAttemptRecord.payment_method_details.pix`, and `PaymentRecord.payment_method_details.pix`
1151
- * Add support for `coupon_data` on `Checkout.SessionCreateParams.discounts[]`
1152
- * Add support for `mandate_options` on `Checkout.Session.payment_method_options.pix`, `Checkout.SessionCreateParams.payment_method_options.pix`, `PaymentIntent.payment_method_options.pix`, `PaymentIntentConfirmParams.payment_method_options.pix`, `PaymentIntentCreateParams.payment_method_options.pix`, and `PaymentIntentUpdateParams.payment_method_options.pix`
1153
- * Change type of `Checkout.Session.payment_method_options.pix.setup_future_usage`, `Checkout.SessionCreateParams.payment_method_options.pix.setup_future_usage`, `PaymentIntent.payment_method_options.pix.setup_future_usage`, `PaymentIntentConfirmParams.payment_method_options.pix.setup_future_usage`, `PaymentIntentCreateParams.payment_method_options.pix.setup_future_usage`, and `PaymentIntentUpdateParams.payment_method_options.pix.setup_future_usage` from `literal('none')` to `enum('none'|'off_session')`
1154
- * Add support for `amount` on `Mandate.multi_use`, `PaymentAttemptRecord`, and `PaymentRecord`
1155
- * Add support for `currency` on `Mandate.multi_use`
1156
- * Add support for `pix` on `Mandate.payment_method_details`, `SetupAttempt.payment_method_details`, `SetupIntent.payment_method_options`, `SetupIntentConfirmParams.payment_method_options`, `SetupIntentCreateParams.payment_method_options`, and `SetupIntentUpdateParams.payment_method_options`
1157
- * Add support for `limit` on `PaymentAttemptRecordListParams`
1158
- * Add support for `amount_authorized`, `amount_refunded`, and `application` on `PaymentAttemptRecord` and `PaymentRecord`
1159
- * Add support for `processor_details` on `PaymentAttemptRecord`, `PaymentRecordReportPaymentParams`, and `PaymentRecord`
1160
- * Remove support for `payment_reference` on `PaymentAttemptRecord`, `PaymentRecordReportPaymentParams`, and `PaymentRecord`
1161
- * Add support for `installments` on `PaymentAttemptRecord.payment_method_details.alma` and `PaymentRecord.payment_method_details.alma`
1162
- * Add support for `transaction_id` on `PaymentAttemptRecord.payment_method_details.alma`, `PaymentAttemptRecord.payment_method_details.amazon_pay`, `PaymentAttemptRecord.payment_method_details.billie`, `PaymentAttemptRecord.payment_method_details.kakao_pay`, `PaymentAttemptRecord.payment_method_details.kr_card`, `PaymentAttemptRecord.payment_method_details.naver_pay`, `PaymentAttemptRecord.payment_method_details.payco`, `PaymentAttemptRecord.payment_method_details.revolut_pay`, `PaymentAttemptRecord.payment_method_details.samsung_pay`, `PaymentAttemptRecord.payment_method_details.satispay`, `PaymentRecord.payment_method_details.alma`, `PaymentRecord.payment_method_details.amazon_pay`, `PaymentRecord.payment_method_details.billie`, `PaymentRecord.payment_method_details.kakao_pay`, `PaymentRecord.payment_method_details.kr_card`, `PaymentRecord.payment_method_details.naver_pay`, `PaymentRecord.payment_method_details.payco`, `PaymentRecord.payment_method_details.revolut_pay`, `PaymentRecord.payment_method_details.samsung_pay`, and `PaymentRecord.payment_method_details.satispay`
1163
- * Add support for `location` and `reader` on `PaymentAttemptRecord.payment_method_details.paynow` and `PaymentRecord.payment_method_details.paynow`
1164
- * Add support for `latest_active_mandate` on `PaymentMethod`
1165
- * Change `Payout.payout_method` to be required
1166
- * Add support for `metadata` and `period` on `QuotePreviewSubscriptionSchedule.phases[].add_invoice_items[]`
1167
- * Add support for `pix_display_qr_code` on `SetupIntent.next_action`
1168
- * Add support for `reader_security` on `Terminal.ConfigurationCreateParams`, `Terminal.ConfigurationUpdateParams`, and `Terminal.Configuration`
1169
- * Add support for error codes `customer_session_expired` and `india_recurring_payment_mandate_canceled` on `QuotePreviewInvoice.last_finalization_error`
1170
-
1171
353
  ## 18.5.0 - 2025-08-27
1172
354
  This release changes the pinned API version to `2025-08-27.basil`.
1173
355
 
@@ -1193,39 +375,6 @@ This release changes the pinned API version to `2025-08-27.basil`.
1193
375
  * Add support for error codes `customer_session_expired` and `india_recurring_payment_mandate_canceled` on `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
1194
376
  * [#2389](https://github.com/stripe/stripe-node/pull/2389) fix(example): expires_at is in milliseconds
1195
377
 
1196
- ## 18.5.0-beta.2 - 2025-08-06
1197
- * [#2383](https://github.com/stripe/stripe-node/pull/2383) Bring back GA invoice payments APIs that were missing in the public preview SDKs
1198
- * Add support for new resource `InvoicePayment`
1199
- * Add support for `list` and `retrieve` methods on resource `InvoicePayment`
1200
-
1201
- ## 18.5.0-beta.1 - 2025-07-30
1202
- This release changes the pinned API version to `2025-07-30.preview`.
1203
-
1204
- * [#2363](https://github.com/stripe/stripe-node/pull/2363) Update generated code for beta
1205
- * Add support for new resources `Billing.MeterUsageRow`, `Billing.MeterUsage`, and `Terminal.OnboardingLink`
1206
- * Add support for `retrieve` method on resource `Billing.MeterUsage`
1207
- * Add support for `create` method on resource `Terminal.OnboardingLink`
1208
- * Add support for `monthly_payout_days` and `weekly_payout_days` on `BalanceSettingUpdateParams.payouts.schedule` and `BalanceSettings.payouts.schedule`
1209
- * Remove support for `monthly_anchor` and `weekly_anchor` on `BalanceSettingUpdateParams.payouts.schedule` and `BalanceSettings.payouts.schedule`
1210
- * Add support for `delay_days_override` on `BalanceSettingUpdateParams.settlement_timing`
1211
- * Remove support for `delay_days` on `BalanceSettingUpdateParams.settlement_timing`
1212
- * Add support for `update_discounts` on `Checkout.SessionCreateParams.permissions`
1213
- * Add support for `discounts` and `subscription_data` on `Checkout.SessionUpdateParams`
1214
- * Add support for `smart_disputes` on `Dispute`
1215
- * Add support for `upi` on `Invoice.payment_settings.payment_method_options`, `InvoiceCreateParams.payment_settings.payment_method_options`, `InvoiceUpdateParams.payment_settings.payment_method_options`, `QuotePreviewInvoice.payment_settings.payment_method_options`, `Subscription.payment_settings.payment_method_options`, `SubscriptionCreateParams.payment_settings.payment_method_options`, and `SubscriptionUpdateParams.payment_settings.payment_method_options`
1216
- * Add support for new value `upi` on enums `Invoice.payment_settings.payment_method_types`, `InvoiceCreateParams.payment_settings.payment_method_types`, `InvoiceUpdateParams.payment_settings.payment_method_types`, `QuotePreviewInvoice.payment_settings.payment_method_types`, `Subscription.payment_settings.payment_method_types`, `SubscriptionCreateParams.payment_settings.payment_method_types`, and `SubscriptionUpdateParams.payment_settings.payment_method_types`
1217
- * Add support for `transaction_id` on `PaymentAttemptRecord.payment_method_details.cashapp` and `PaymentRecord.payment_method_details.cashapp`
1218
- * Add support for `amount_details` on `PaymentIntentCaptureParams`, `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `PaymentIntentIncrementAuthorizationParams`, and `PaymentIntentUpdateParams`
1219
- * Add support for `payment_details` on `PaymentIntentIncrementAuthorizationParams`
1220
- * Add support for `storer` on `V2.Core.Account.identity.attestations.terms_of_service`, `V2.Core.AccountCreateParams.identity.attestations.terms_of_service`, and `V2.Core.AccountUpdateParams.identity.attestations.terms_of_service`
1221
- * Add support for `collection_options` on `V2.Core.AccountLink.use_case.account_onboarding`, `V2.Core.AccountLink.use_case.account_update`, `V2.Core.AccountLinkCreateParams.use_case.account_onboarding`, and `V2.Core.AccountLinkCreateParams.use_case.account_update`
1222
- * Change type of `V2.Core.AccountLink.use_case.account_onboarding.configurations`, `V2.Core.AccountLink.use_case.account_update.configurations`, `V2.Core.AccountLinkCreateParams.use_case.account_onboarding.configurations`, and `V2.Core.AccountLinkCreateParams.use_case.account_update.configurations` from `literal('recipient')` to `enum('customer'|'merchant'|'recipient'|'storer')`
1223
- * Add support for `bank_account_type` on `V2.MoneyManagement.PayoutMethod.bank_account`
1224
- * Add support for thin event `V2CoreAccountLinkReturnedEvent`
1225
- * Add support for thin event `V2MoneyManagementPayoutMethodUpdatedEvent` with related object `V2.MoneyManagement.PayoutMethod`
1226
- * Remove support for thin event `V2CoreAccountLinkCompletedEvent`
1227
- * Remove support for thin event `V2OffSessionPaymentRequiresCaptureEvent` with related object `V2.Payments.OffSessionPayment`
1228
-
1229
378
  ## 18.4.0 - 2025-07-30
1230
379
  This release changes the pinned API version to `2025-07-30.basil`.
1231
380
 
@@ -1251,57 +400,6 @@ This release changes the pinned API version to `2025-07-30.basil`.
1251
400
  * Add support for new value `2025-07-30.basil` on enum `WebhookEndpointCreateParams.api_version`
1252
401
  * [#2365](https://github.com/stripe/stripe-node/pull/2365) Expose the API version pinned in the SDK via `Stripe.API_VERSION`
1253
402
 
1254
- ## 18.4.0-beta.2 - 2025-07-09
1255
- * [#2367](https://github.com/stripe/stripe-node/pull/2367) Pull in V2 FinancialAccount changes for June release
1256
- * Add support for `close` and `create` methods on resource `V2.MoneyManagement.FinancialAccount`
1257
- * Add support for new value `storer` on enums `V2.Core.Account.applied_configurations` and `V2.Core.AccountCloseParams.applied_configurations`
1258
- * Add support for `storer` on `V2.Core.Account.configuration`, `V2.Core.AccountCreateParams.configuration`, and `V2.Core.AccountUpdateParams.configuration`
1259
- * Add support for new values `financial_addresses.bank_accounts`, `holds_currencies.gbp`, `inbound_transfers.financial_accounts`, `outbound_payments.bank_accounts`, `outbound_payments.cards`, `outbound_payments.financial_accounts`, `outbound_transfers.bank_accounts`, and `outbound_transfers.financial_accounts` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].capability`
1260
- * Add support for new value `storer` on enum `V2.Core.Account.requirements.entries[].impact.restricts_capabilities[].configuration`
1261
- * Add support for `status_details` on `V2.MoneyManagement.FinancialAccount`
1262
- * Add support for `status` on `V2.MoneyManagement.FinancialAccountListParams`
1263
- * Add support for new value `configuration.storer` on enums `V2.Core.AccountCreateParams.include`, `V2.Core.AccountRetrieveParams.include`, and `V2.Core.AccountUpdateParams.include`
1264
- * Add support for thin events `V2CoreAccountIncludingConfigurationStorerCapabilityStatusUpdatedEvent` and `V2CoreAccountIncludingConfigurationStorerUpdatedEvent` with related object `V2.Core.Account`
1265
- * Add support for error types `AlreadyExistsError` and `NonZeroBalanceError`
1266
-
1267
- ## 18.4.0-beta.1 - 2025-07-01
1268
- This release changes the pinned API version to `2025-06-30.preview`.
1269
-
1270
- * [#2344](https://github.com/stripe/stripe-node/pull/2344) Update generated code for beta
1271
- * Change type of `Checkout.SessionCreateParams.subscription_data.billing_mode`, `InvoiceCreatePreviewParams.schedule_details.billing_mode`, `InvoiceCreatePreviewParams.subscription_details.billing_mode`, `Quote.subscription_data.billing_mode`, `QuoteCreateParams.subscription_data.billing_mode`, `SubscriptionCreateParams.billing_mode`, and `SubscriptionScheduleCreateParams.billing_mode` from `enum('classic'|'flexible')` to `billing_mode`
1272
- * Add support for `submission_method` on `Dispute.evidence_details`
1273
- * Add support for `on_demand` and `subscriptions` on `OrderCreateParams.payment.settings.payment_method_options.klarna` and `OrderUpdateParams.payment.settings.payment_method_options.klarna`
1274
- * Change type of `Order.payment.settings.payment_method_options.klarna.setup_future_usage`, `OrderCreateParams.payment.settings.payment_method_options.klarna.setup_future_usage`, and `OrderUpdateParams.payment.settings.payment_method_options.klarna.setup_future_usage` from `literal('none')` to `enum('none'|'off_session'|'on_session')`
1275
- * Add support for `crypto` on `PaymentAttemptRecord.payment_method_details` and `PaymentRecord.payment_method_details`
1276
- * Add support for new value `buut` on enums `PaymentAttemptRecord.payment_method_details.ideal.bank` and `PaymentRecord.payment_method_details.ideal.bank`
1277
- * Add support for new value `BUUTNL2A` on enums `PaymentAttemptRecord.payment_method_details.ideal.bic` and `PaymentRecord.payment_method_details.ideal.bic`
1278
- * Change type of `PaymentIntent.payment_method_options.gopay.setup_future_usage`, `PaymentIntentConfirmParams.payment_method_options.gopay.setup_future_usage`, `PaymentIntentCreateParams.payment_method_options.gopay.setup_future_usage`, and `PaymentIntentUpdateParams.payment_method_options.gopay.setup_future_usage` from `literal('none')` to `enum('none'|'off_session')`
1279
- * Change `Quote.subscription_data.billing_mode`, `QuotePreviewSubscriptionSchedule.billing_mode`, `Subscription.billing_mode`, and `SubscriptionSchedule.billing_mode` to be required
1280
- * Add support for new value `crypto` on enum `QuotePreviewInvoice.payment_settings.payment_method_types`
1281
- * Change type of `QuotePreviewSubscriptionSchedule.billing_mode`, `Subscription.billing_mode`, and `SubscriptionSchedule.billing_mode` from `enum('classic'|'flexible')` to `SubscriptionsResourceBillingMode`
1282
- * Change type of `SubscriptionMigrateParams.billing_mode` from `literal('flexible')` to `billing_mode_migrate`
1283
- * Remove support for `billing_mode_details` on `Subscription`
1284
- * Add support for new value `xx` on enums `V2.Core.Account.configuration.customer.automatic_indirect_tax.location.country`, `V2.Core.Account.configuration.customer.shipping.address.country`, `V2.Core.Account.configuration.merchant.support.address.country`, `V2.Core.Account.identity.business_details.address.country`, `V2.Core.Account.identity.business_details.script_addresses.kana.country`, `V2.Core.Account.identity.business_details.script_addresses.kanji.country`, `V2.Core.Account.identity.country`, `V2.Core.Account.identity.individual.additional_addresses[].country`, `V2.Core.Account.identity.individual.address.country`, `V2.Core.Account.identity.individual.script_addresses.kana.country`, `V2.Core.Account.identity.individual.script_addresses.kanji.country`, `V2.Core.AccountCreateParams.configuration.customer.shipping.address.country`, `V2.Core.AccountCreateParams.configuration.merchant.support.address.country`, `V2.Core.AccountCreateParams.identity.business_details.address.country`, `V2.Core.AccountCreateParams.identity.business_details.script_addresses.kana.country`, `V2.Core.AccountCreateParams.identity.business_details.script_addresses.kanji.country`, `V2.Core.AccountCreateParams.identity.country`, `V2.Core.AccountCreateParams.identity.individual.additional_addresses[].country`, `V2.Core.AccountCreateParams.identity.individual.address.country`, `V2.Core.AccountCreateParams.identity.individual.script_addresses.kana.country`, `V2.Core.AccountCreateParams.identity.individual.script_addresses.kanji.country`, `V2.Core.AccountUpdateParams.configuration.customer.shipping.address.country`, `V2.Core.AccountUpdateParams.configuration.merchant.support.address.country`, `V2.Core.AccountUpdateParams.identity.business_details.address.country`, `V2.Core.AccountUpdateParams.identity.business_details.script_addresses.kana.country`, `V2.Core.AccountUpdateParams.identity.business_details.script_addresses.kanji.country`, `V2.Core.AccountUpdateParams.identity.country`, `V2.Core.AccountUpdateParams.identity.individual.additional_addresses[].country`, `V2.Core.AccountUpdateParams.identity.individual.address.country`, `V2.Core.AccountUpdateParams.identity.individual.script_addresses.kana.country`, `V2.Core.AccountUpdateParams.identity.individual.script_addresses.kanji.country`, `V2.Core.Person.additional_addresses[].country`, `V2.Core.Person.address.country`, `V2.Core.Person.script_addresses.kana.country`, `V2.Core.Person.script_addresses.kanji.country`, `V2.Core.PersonCreateParams.additional_addresses[].country`, `V2.Core.PersonCreateParams.address.country`, `V2.Core.PersonCreateParams.script_addresses.kana.country`, `V2.Core.PersonCreateParams.script_addresses.kanji.country`, `V2.Core.PersonUpdateParams.additional_addresses[].country`, `V2.Core.PersonUpdateParams.address.country`, `V2.Core.PersonUpdateParams.script_addresses.kana.country`, `V2.Core.PersonUpdateParams.script_addresses.kanji.country`, and `V2.MoneyManagement.FinancialAccount.country`
1285
- * Add support for new value `unsupported_entity_type` on enums `V2.Core.Account.configuration.customer.capabilities.automatic_indirect_tax.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.ach_debit_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.acss_debit_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.affirm_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.afterpay_clearpay_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.alma_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.amazon_pay_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.au_becs_debit_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.bacs_debit_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.bancontact_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.blik_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.boleto_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.card_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.cartes_bancaires_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.cashapp_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.eps_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.fpx_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.gb_bank_transfer_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.grabpay_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.ideal_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.jcb_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.jp_bank_transfer_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.kakao_pay_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.klarna_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.konbini_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.kr_card_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.link_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.mobilepay_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.multibanco_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.mx_bank_transfer_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.naver_pay_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.oxxo_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.p24_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.pay_by_bank_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.payco_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.paynow_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.promptpay_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.revolut_pay_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.samsung_pay_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.sepa_bank_transfer_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.sepa_debit_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.stripe_balance.payouts.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.swish_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.twint_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.us_bank_transfer_payments.status_details[].code`, `V2.Core.Account.configuration.merchant.capabilities.zip_payments.status_details[].code`, `V2.Core.Account.configuration.recipient.capabilities.bank_accounts.local.status_details[].code`, `V2.Core.Account.configuration.recipient.capabilities.bank_accounts.wire.status_details[].code`, `V2.Core.Account.configuration.recipient.capabilities.cards.status_details[].code`, `V2.Core.Account.configuration.recipient.capabilities.stripe_balance.payouts.status_details[].code`, and `V2.Core.Account.configuration.recipient.capabilities.stripe_balance.stripe_transfers.status_details[].code`
1286
- * Add support for `proof_of_address` on `V2.Core.Account.identity.business_details.documents`, `V2.Core.AccountCreateParams.identity.business_details.documents`, and `V2.Core.AccountUpdateParams.identity.business_details.documents`
1287
- * Add support for new value `xx` on enums `V2.Core.Account.identity.individual.nationalities`, `V2.Core.AccountCreateParams.identity.individual.nationalities`, `V2.Core.AccountUpdateParams.identity.individual.nationalities`, `V2.Core.Person.nationalities`, `V2.Core.PersonCreateParams.nationalities`, and `V2.Core.PersonUpdateParams.nationalities`
1288
- * Add support for `metadata` on `V2.MoneyManagement.FinancialAccount`
1289
- * Remove support for `description` on `V2.MoneyManagement.FinancialAccount`
1290
- * Add support for new value `pending` on enum `V2.MoneyManagement.FinancialAccount.status`
1291
- * Remove support for `attempts` on `V2.Payments.OffSessionPayment`
1292
- * Change type of `V2.Payments.OffSessionPayment.transfer_data.amount` from `integer` to `integer | null`
1293
- * Add support for `from_account`, `outbound_payment`, and `outbound_transfer` on `V2.MoneyManagement.ReceivedCredit.balance_transfer`
1294
- * Change type of `V2.MoneyManagement.ReceivedCredit.balance_transfer.type` from `literal('payout_v1')` to `enum('outbound_payment'|'outbound_transfer'|'payout_v1')`
1295
- * Change type of `V2.MoneyManagement.ReceivedCredit.balance_transfer.payout_v1` from `string` to `string | null`
1296
- * Change `V2.Payments.OffSessionPaymentCreateParams.transfer_data.amount` to be optional
1297
- * Add support for error codes `recipient_feature_not_active`, `storer_capability_missing`, and `storer_capability_not_active` on `FeatureNotEnabledError`
1298
- * Remove support for error code `outbound_payment_recipient_feature_not_active` on `FeatureNotEnabledError`
1299
- * Add support for error code `insufficient_funds` on `InsufficientFundsError`
1300
- * Remove support for error codes `outbound_payment_insufficient_funds` and `outbound_transfer_insufficient_funds` on `InsufficientFundsError`
1301
- * Add support for error codes `recipient_amount_limit_exceeded` and `recipient_count_limit_exceeded` on `QuotaExceededError`
1302
- * Remove support for error codes `outbound_payment_recipient_amount_limit_exceeded` and `outbound_payment_recipient_count_limit_exceeded` on `QuotaExceededError`
1303
- * Add support for error code `recipient_email_does_not_exist` on `RecipientNotNotifiableError`
1304
- * Remove support for error code `outbound_payment_recipient_email_does_not_exist` on `RecipientNotNotifiableError`
1305
403
 
1306
404
  ## 18.3.0 - 2025-07-01
1307
405
  This release changes the pinned API version to `2025-06-30.basil`.
@@ -1344,55 +442,6 @@ This release changes the pinned API version to `2025-06-30.basil`.
1344
442
  * [#2354](https://github.com/stripe/stripe-node/pull/2354) Add stripeContext to RequestOptions interface
1345
443
  - Add `stripeContext` to the`RequestOptions` and `StripeConfig` interfaces.
1346
444
 
1347
- ## 18.3.0-beta.2 - 2025-06-26
1348
- * [#2358](https://github.com/stripe/stripe-node/pull/2358) Pull in OffSessionPayment changes for the May release
1349
-
1350
- ## 18.3.0-beta.1 - 2025-05-29
1351
- This release changes the pinned API version to 2025-05-28.preview.
1352
-
1353
- * [#2324](https://github.com/stripe/stripe-node/pull/2324) Update generated code for beta
1354
- ### Breaking changes
1355
- * Remove support for deprecated previews
1356
- * Remove support for resources `Billing.MeterErrorReport`, `GiftCards.Card`, and `GiftCards.Transaction`
1357
- * Remove support for `create`, `list`, `retrieve`, `update`, and `validate` methods on resource `GiftCards.Card`
1358
- * Remove support for `cancel`, `confirm`, `create`, `list`, `retrieve`, and `update` methods on resource `GiftCards.Transaction`
1359
- * Remove support for `provisioning` on `ProductCreateParams` and `Product`
1360
- * Remove support for snapshot event `BillingMeterErrorReportTriggeredEvent` with resource `Billing.MeterErrorReport`
1361
- * Remove support for error codes `gift_card_balance_insufficient`, `gift_card_code_exists`, and `gift_card_inactive` on `QuotePreviewInvoice.last_finalization_error` and `StripeError`
1362
- * Remove support for values `credits_attributed_to_debits` and `legacy_prorations` from enums `Checkout.SessionCreateParams.subscription_data.billing_mode`, `InvoiceCreatePreviewParams.schedule_details.billing_mode`, `InvoiceCreatePreviewParams.subscription_details.billing_mode`, `Quote.subscription_data.billing_mode`, `QuoteCreateParams.subscription_data.billing_mode`, `QuotePreviewSubscriptionSchedule.billing_mode`, `Subscription.billing_mode`, `SubscriptionCreateParams.billing_mode`, `SubscriptionSchedule.billing_mode`, and `SubscriptionScheduleCreateParams.billing_mode`
1363
- * Change type of `Checkout.SessionUpdateParams.line_items[].quantity` from `emptyable(longInteger)` to `longInteger`
1364
- * Change `CreditNote.post_payment_amount` to be required
1365
- * Change `CreditNote.pre_payment_amount` to be required
1366
- * Change type of `InvoiceCreatePreviewParams.subscription_details.cancel_at`, `SubscriptionCreateParams.cancel_at`, and `SubscriptionUpdateParams.cancel_at` from `DateTime` to `DateTime | enum('max_period_end'|'min_period_end')`
1367
- * Remove support for `credits` on `OrderCreateParams`, `OrderUpdateParams`, and `Order`
1368
- * Remove support for `amount_remaining` on `Order`
1369
- * Remove support for `amount_credit` on `Order.total_details`
1370
- * Change type of `PaymentAttemptRecord.metadata` and `PaymentRecord.metadata` from `map(string: string) | null` to `map(string: string)`
1371
- * Change type of `PaymentRecordReportPaymentAttemptCanceledParams.metadata`, `PaymentRecordReportPaymentAttemptFailedParams.metadata`, `PaymentRecordReportPaymentAttemptGuaranteedParams.metadata`, `PaymentRecordReportPaymentAttemptParams.metadata`, and `PaymentRecordReportPaymentParams.metadata` from `map(string: string)` to `emptyable(map(string: string))`
1372
- * Change type of `Privacy.RedactionJob.status` from `string` to `enum`
1373
- * Change type of `Privacy.RedactionJob.validation_behavior` from `string` to `enum('error'|'fix')`
1374
- * Change type of `Privacy.RedactionJobValidationError.code` from `string` to `enum`
1375
- * Change type of `Privacy.RedactionJobValidationError.erroring_object` from `map(string: string)` to `RedactionResourceErroringObject`
1376
- * Remove support for `status_details` and `status` on `Tax.Association`
1377
-
1378
- ### Other changes
1379
- * Add support for `migrate` method on resource `Subscription`
1380
- * Add support for `distance`, `pickup_location_name`, `return_location_name`, and `vehicle_identification_number` on `ChargeCaptureParams.payment_details.car_rental`, `ChargeUpdateParams.payment_details.car_rental`, `PaymentIntent.payment_details.car_rental`, `PaymentIntentCaptureParams.payment_details.car_rental`, `PaymentIntentConfirmParams.payment_details.car_rental`, `PaymentIntentCreateParams.payment_details.car_rental`, and `PaymentIntentUpdateParams.payment_details.car_rental`
1381
- * Add support for `driver_identification_number` and `driver_tax_number` on `ChargeCaptureParams.payment_details.car_rental.drivers[]`, `ChargeUpdateParams.payment_details.car_rental.drivers[]`, `PaymentIntent.payment_details.car_rental.drivers[]`, `PaymentIntentCaptureParams.payment_details.car_rental.drivers[]`, `PaymentIntentConfirmParams.payment_details.car_rental.drivers[]`, `PaymentIntentCreateParams.payment_details.car_rental.drivers[]`, and `PaymentIntentUpdateParams.payment_details.car_rental.drivers[]`
1382
- * Add support for new values `classic` and `flexible` on enums `Checkout.SessionCreateParams.subscription_data.billing_mode`, `InvoiceCreatePreviewParams.schedule_details.billing_mode`, `InvoiceCreatePreviewParams.subscription_details.billing_mode`, `Quote.subscription_data.billing_mode`, `QuoteCreateParams.subscription_data.billing_mode`, `QuotePreviewSubscriptionSchedule.billing_mode`, `Subscription.billing_mode`, `SubscriptionCreateParams.billing_mode`, `SubscriptionSchedule.billing_mode`, and `SubscriptionScheduleCreateParams.billing_mode`
1383
- * Add support for `institution` on `FinancialConnections.Account`
1384
- * Add support for `countries` on `FinancialConnections.Institution`
1385
- * Add support for `location` and `reader` on `PaymentAttemptRecord.payment_method_details.affirm`, `PaymentAttemptRecord.payment_method_details.wechat_pay`, `PaymentRecord.payment_method_details.affirm`, and `PaymentRecord.payment_method_details.wechat_pay`
1386
- * Add support for `hooks` on `PaymentIntentCaptureParams`, `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `PaymentIntentDecrementAuthorizationParams`, `PaymentIntentIncrementAuthorizationParams`, `PaymentIntentUpdateParams`, and `PaymentIntent`
1387
- * Remove support for `async_workflows` on `PaymentIntentCaptureParams`, `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `PaymentIntentDecrementAuthorizationParams`, `PaymentIntentIncrementAuthorizationParams`, `PaymentIntentUpdateParams`, and `PaymentIntent`
1388
- * Add support for `card_present` on `PaymentIntentAmountDetailsLineItem.payment_method_options`
1389
- * Add support for `livemode` on `Privacy.RedactionJob`
1390
- * Add support for `billing_thresholds` on `QuotePreviewSubscriptionSchedule.default_settings`, `QuotePreviewSubscriptionSchedule.phases[].items[]`, and `QuotePreviewSubscriptionSchedule.phases[]`
1391
- * Add support for `billing_mode_details` on `Subscription`
1392
- * Add support for `tax_transaction_attempts` on `Tax.Association`
1393
- * Add support for `confirm_config` on `Terminal.Reader.action.confirm_payment_intent` and `Terminal.ReaderConfirmPaymentIntentParams`
1394
- * Add support for error code `forwarding_api_upstream_error` on `QuotePreviewInvoice.last_finalization_error`
1395
-
1396
445
  ## 18.2.1 - 2025-06-02
1397
446
  * [#2346](https://github.com/stripe/stripe-node/pull/2346) Allow data to be set in only `POST` rawRequests
1398
447
  * Fix bug where `rawRequest` incorrectly emits a warning when sending v2 GET requests
@@ -1432,18 +481,6 @@ This release changes the pinned API version to 2025-05-28.preview.
1432
481
  * Add support for snapshot event `InvoicePaymentPaidEvent` with resource `InvoicePayment`
1433
482
  * Add support for error code `forwarding_api_upstream_error` on `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
1434
483
 
1435
- ## 18.2.0-beta.1 - 2025-04-30
1436
- * [#2307](https://github.com/stripe/stripe-node/pull/2307) Update generated code for beta
1437
- This release changes the pinned API version to `2025-04-30.preview`.
1438
-
1439
- * Add support for `billing_mode` on `Checkout.SessionCreateParams.subscription_data`, `InvoiceCreatePreviewParams.schedule_details`, `InvoiceCreatePreviewParams.subscription_details`, `Quote.subscription_data`, `QuoteCreateParams.subscription_data`, `QuotePreviewSubscriptionSchedule`, `SubscriptionCreateParams`, `SubscriptionScheduleCreateParams`, `SubscriptionSchedule`, and `Subscription`
1440
- * Add support for new values `aw_tin`, `az_tin`, `bd_bin`, `bf_ifu`, `bj_ifu`, `cm_niu`, `cv_nif`, `et_tin`, `kg_tin`, and `la_tin` on enums `Checkout.Session.collected_information.tax_ids[].type`, `Order.tax_details.tax_ids[].type`, and `QuotePreviewInvoice.customer_tax_ids[].type`
1441
- * Change `Checkout.Session.automatic_tax.provider`, `Invoice.automatic_tax.provider`, `Quote.automatic_tax.provider`, and `QuotePreviewInvoice.automatic_tax.provider` to be required
1442
- * Add support for `account_number` on `ConfirmationToken.payment_method_preview.acss_debit` and `PaymentMethod.acss_debit`
1443
- * Add support for new value `balance_settings.updated` on enum `Event.type`
1444
- * Add support for new values `aw_tin`, `az_tin`, `bd_bin`, `bf_ifu`, `bj_ifu`, `cm_niu`, `cv_nif`, `et_tin`, `kg_tin`, and `la_tin` on enums `OrderCreateParams.tax_details.tax_ids[].type` and `OrderUpdateParams.tax_details.tax_ids[].type`
1445
- * Add support for new value `balance_settings.updated` on enums `WebhookEndpointUpdateParams.enabled_events`
1446
-
1447
484
  ## 18.1.1 - 2025-05-19
1448
485
  * [#2308](https://github.com/stripe/stripe-node/pull/2308) RawRequest now allows you set `host` and `streaming` in request options.
1449
486
  ```typescript
@@ -1489,137 +526,6 @@ This release changes the pinned API version to 2025-05-28.preview.
1489
526
  * [#2164](https://github.com/stripe/stripe-node/pull/2164) Bump micromatch from 4.0.5 to 4.0.8
1490
527
  * [#2230](https://github.com/stripe/stripe-node/pull/2230) Bump cross-spawn from 7.0.3 to 7.0.6
1491
528
 
1492
- ## 18.1.0-beta.3 - 2025-04-17
1493
- * [#2302](https://github.com/stripe/stripe-node/pull/2302) Update generated code for beta
1494
- * Add support for new resources `FxQuote` and `PaymentIntentAmountDetailsLineItem`
1495
- * Add support for `create`, `list`, and `retrieve` methods on resource `FxQuote`
1496
- * Remove support for `attach_payment_intent` method on resource `Invoice`
1497
- * Add support for `registration_date` on `Account.company`, `AccountCreateParams.company`, `AccountUpdateParams.company`, and `TokenCreateParams.account.company`
1498
- * Add support for `customer_reference` and `order_reference` on `ChargeCaptureParams.payment_details`, `ChargeUpdateParams.payment_details`, `PaymentIntent.payment_details`, `PaymentIntentCaptureParams.payment_details`, `PaymentIntentConfirmParams.payment_details`, `PaymentIntentCreateParams.payment_details`, and `PaymentIntentUpdateParams.payment_details`
1499
- * Add support for `tax_id` on `Charge.billing_details`, `ConfirmationToken.payment_method_preview.billing_details`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data.billing_details`, `PaymentIntentConfirmParams.payment_method_data.billing_details`, `PaymentIntentCreateParams.payment_method_data.billing_details`, `PaymentIntentUpdateParams.payment_method_data.billing_details`, `PaymentMethod.billing_details`, `PaymentMethodCreateParams.billing_details`, `PaymentMethodUpdateParams.billing_details`, `SetupIntentConfirmParams.payment_method_data.billing_details`, `SetupIntentCreateParams.payment_method_data.billing_details`, `SetupIntentUpdateParams.payment_method_data.billing_details`, and `Treasury.OutboundPaymentCreateParams.destination_payment_method_data.billing_details`
1500
- * Add support for `price_data` on `Checkout.SessionUpdateParams.line_items[]`
1501
- * Change type of `Checkout.SessionUpdateParams.line_items[].quantity` from `longInteger` to `emptyable(longInteger)`
1502
- * Add support for `script` on `CouponCreateParams` and `Coupon`
1503
- * Add support for `type` on `Coupon`
1504
- * Add support for new value `fx_quote.expired` on enum `Event.type`
1505
- * Add support for new value `affirm` on enums `Invoice.payment_settings.payment_method_types`, `InvoiceCreateParams.payment_settings.payment_method_types`, `InvoiceUpdateParams.payment_settings.payment_method_types`, `QuotePreviewInvoice.payment_settings.payment_method_types`, `Subscription.payment_settings.payment_method_types`, `SubscriptionCreateParams.payment_settings.payment_method_types`, and `SubscriptionUpdateParams.payment_settings.payment_method_types`
1506
- * Add support for `fx_quote` on `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `PaymentIntentUpdateParams`, `PaymentIntent`, `TransferCreateParams`, and `Transfer`
1507
- * Add support for `discount_amount`, `line_items`, `shipping`, and `tax` on `PaymentIntent.amount_details`
1508
- * Add support for `pix` on `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, and `PaymentMethodConfiguration`
1509
- * Add support for `us_cfpb_data` on `Person` and `TokenCreateParams.person`
1510
- * Add support for `pending_reason` on `Refund`
1511
- * Add support for `aw`, `az`, `bd`, `bj`, `et`, `kg`, `la`, and `ph` on `Tax.Registration.country_options` and `Tax.RegistrationCreateParams.country_options`
1512
- * Add support for new value `fx_quote.expired` on enums `WebhookEndpointCreateParams.enabled_events` and `WebhookEndpointUpdateParams.enabled_events`
1513
- * Add support for snapshot event `FxQuoteExpiredEvent` with resource `FxQuote`
1514
-
1515
- ## 18.1.0-beta.2 - 2025-04-10
1516
- * [#2298](https://github.com/stripe/stripe-node/pull/2298) Update generated code for beta
1517
-
1518
- ### Breaking changes
1519
- * Change type of `V2.MoneyManagement.ReceivedDebit.status_transitions` from `an object` to `an object | null`
1520
- * Remove support for values `bank_accounts.local_uk`, `bank_accounts.wire_uk`, `cards_uk`, and `crypto_wallets_v2` from enum `EventsV2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent.updated_capability`
1521
-
1522
- ### Additions
1523
- * Add support for new resources `Privacy.RedactionJobRootObjects`, `Privacy.RedactionJobValidationError`, and `Privacy.RedactionJob`
1524
- * Add support for `cancel`, `create`, `list`, `retrieve`, `run`, `update`, and `validate` methods on resource `RedactionJob`
1525
- * Add support for `list` and `retrieve` methods on resource `RedactionJobValidationError`
1526
- * Add support for `minority_owned_business_designation` on `Account.business_profile`, `AccountCreateParams.business_profile`, and `AccountUpdateParams.business_profile`
1527
- * Add support for new value `verification_legal_entity_structure_mismatch` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `AccountCapability.future_requirements.errors[].code`, `AccountCapability.requirements.errors[].code`, `AccountPerson.future_requirements.errors[].code`, `AccountPerson.requirements.errors[].code`, `BankAccount.future_requirements.errors[].code`, and `BankAccount.requirements.errors[].code`
1528
- * Add support for `export_tax_transactions` and `payment_disputes` on `AccountSessionCreateParams.components`
1529
- * Add support for new value `tax_id_prohibited` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `QuotePreviewInvoice.last_finalization_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
1530
- * Add support for new value `fixed_term_loan` on enum `Capital.FinancingOffer.type`
1531
- * Add support for `wallet_options` on `Checkout.SessionCreateParams` and `Checkout.Session`
1532
- * Add support for new values `privacy.redaction_job.canceled`, `privacy.redaction_job.created`, `privacy.redaction_job.ready`, `privacy.redaction_job.succeeded`, and `privacy.redaction_job.validation_error` on enum `Event.type`
1533
- * Add support for `klarna` on `PaymentMethodDomain`
1534
- * Change type of `Tax.CalculationLineItem.reference` from `string | null` to `string`
1535
- * Add support for `in` on `Tax.Registration.country_options` and `Tax.RegistrationCreateParams.country_options`
1536
- * Add support for new values `privacy.redaction_job.canceled`, `privacy.redaction_job.created`, `privacy.redaction_job.ready`, `privacy.redaction_job.succeeded`, and `privacy.redaction_job.validation_error` on enums `WebhookEndpointCreateParams.enabled_events` and `WebhookEndpointUpdateParams.enabled_events`
1537
- * [#2300](https://github.com/stripe/stripe-node/pull/2300) Handle external_resource field
1538
- - Changes `external_account` field in `ExternalAccountsCreateParams` from a `string` to a union type.
1539
-
1540
- ## 18.1.0-beta.1 - 2025-04-02
1541
- * [#2288](https://github.com/stripe/stripe-node/pull/2288) Update generated code for beta
1542
- This release changes the pinned API version to `2025-03-31.preview`
1543
-
1544
- ### Breaking Changes
1545
- * Remove support for `amount_overpaid` on `InvoicePayment`
1546
- * Remove support for values `out_of_band_payment` and `payment_record` from enum `InvoicePayment.payment.type`
1547
- * Remove support for `interchange_fees`, `net_total`, `network_fees`, and `transaction_volume` on `Issuing.Settlement`
1548
- * Remove support for `billing_thresholds` on `QuotePreviewSubscriptionSchedule.default_settings`, `QuotePreviewSubscriptionSchedule.phases[].items[]`, and `QuotePreviewSubscriptionSchedule.phases[]`
1549
- * Remove support for `coupon` on `QuotePreviewSubscriptionSchedule.phases[]`
1550
- * Remove support for `value` on `Terminal.Reader.action.collect_inputs.inputs[].selection.choices[]`, `Terminal.Reader.action.collect_inputs.inputs[].selection`, and `Terminal.ReaderCollectInputsParams.inputs[].selection.choices[]`
1551
- * Change `Checkout.Session.permissions.update` to be optional
1552
- * Change type of `InvoicePayment.is_default` from `boolean | null` to `boolean`
1553
- * Change `Invoice.amount_overpaid` and `QuotePreviewInvoice.amount_overpaid` to be required
1554
- * Change type of `PaymentAttemptRecord.payment_method_details.type` and `PaymentRecord.payment_method_details.type` from `literal('custom')` to `string`
1555
- * Change type of `PaymentAttemptRecord.payment_record` from `string` to `string | null`
1556
- * Change `PaymentAttemptRecord.payment_method_details.custom` and `PaymentRecord.payment_method_details.custom` to be optional
1557
- * Change `PaymentRecordReportPaymentParams.payment_reference` to be optional
1558
- * Change type of `PaymentRecord.latest_payment_attempt_record` from `string` to `string | null`
1559
-
1560
- ### Additions
1561
- * Add support for new resources `BalanceSettings`
1562
- * Add support for `retrieve` and `update` methods on resource `BalanceSettings`
1563
- * Add support for `create`, `del`, `list`, `retrieve`, and `update` methods on a new `ExternalAccountService` class to access cards and bank accounts made available in the new path `v1/external_accounts`. Access this via `StripeClient.externalAccounts`
1564
- * Add support for `stripe_balance_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
1565
- * Add support for `customer_account` on `Billing.CreditBalanceSummaryRetrieveParams`, `Billing.CreditBalanceSummary`, `Billing.CreditBalanceTransactionListParams`, `Billing.CreditGrantCreateParams`, `Billing.CreditGrantListParams`, `Billing.CreditGrant`, `BillingPortal.SessionCreateParams`, `BillingPortal.Session`, `Checkout.SessionCreateParams`, `Checkout.SessionListParams`, `Checkout.Session`, `ConfirmationToken.payment_method_preview`, `CreditNoteListParams`, `CreditNote`, `CustomerBalanceTransaction`, `CustomerCashBalanceTransaction`, `CustomerCashBalance`, `CustomerPaymentMethod`, `CustomerSessionCreateParams`, `CustomerSession`, `CustomerTaxId.owner`, `CustomerTaxId`, `Customer`, `Discount`, `FinancialConnections.Account.account_holder`, `FinancialConnections.AccountListParams.account_holder`, `FinancialConnections.Session.account_holder`, `FinancialConnections.SessionCreateParams.account_holder`, `InvoiceCreateParams`, `InvoiceCreatePreviewParams`, `InvoiceItemCreateParams`, `InvoiceItemListParams`, `InvoiceItem`, `InvoiceListParams`, `Invoice`, `PaymentIntentCreateParams`, `PaymentIntentListParams`, `PaymentIntentUpdateParams`, `PaymentIntent`, `PaymentMethodAttachParams`, `PaymentMethod`, `PromotionCodeCreateParams`, `PromotionCodeListParams`, `PromotionCode`, `QuoteCreateParams`, `QuoteListParams`, `QuotePreviewInvoice`, `QuotePreviewSubscriptionSchedule`, `QuoteUpdateParams`, `Quote`, `SetupAttempt`, `SetupIntentCreateParams`, `SetupIntentListParams`, `SetupIntentUpdateParams`, `SetupIntent`, `SubscriptionCreateParams`, `SubscriptionListParams`, `SubscriptionScheduleCreateParams`, `SubscriptionScheduleListParams`, `SubscriptionSchedule`, `Subscription`, `TaxId.owner`, `TaxIdCreateParams.owner`, `TaxIdListParams.owner`, and `TaxId`
1566
- * Add support for `stripe_balance` on `Charge.payment_method_details`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `CustomerPaymentMethod`, `PaymentAttemptRecord.payment_method_details`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethod`, `PaymentRecord.payment_method_details`, `SetupAttempt.payment_method_details`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
1567
- * Add support for `update_line_items` and `update_shipping_details` on `Checkout.Session.permissions` and `Checkout.SessionCreateParams.permissions`
1568
- * Add support for `provider` on `Checkout.Session.automatic_tax`, `Invoice.automatic_tax`, `Quote.automatic_tax`, and `QuotePreviewInvoice.automatic_tax`
1569
- * Add support for `tax_calculation_reference` on `CreditNoteLineItem`, `CreditNotePreviewLines`, `InvoiceLineItem`, `LineItem`, `PaymentLinkLineItem`, `QuoteComputedUpfrontLineItems`, `QuoteLineItem`, and `SessionLineItem`
1570
- * Add support for `payment_method_options` on `ConfirmationTokenCreateParams.testHelpers`
1571
- * Add support for `installments` on `ConfirmationToken.payment_method_options.card`
1572
- * Add support for `context` on `Event`
1573
- * Add support for `related_customer_account` on `Identity.VerificationSession`, `identity.VerificationSessionCreateParams`, and `identity.VerificationSessionListParams`
1574
- * Add support for `network_data` on `Issuing.DisputeSettlementDetail`
1575
- * Add support for `interchange_fees_amount`, `net_total_amount`, `network_fees_amount`, `other_fees_amount`, `other_fees_count`, and `transaction_amount` on `Issuing.Settlement`
1576
- * Add support for `reported_by` on `PaymentAttemptRecord`
1577
- * Add support for `ach_credit_transfer`, `ach_debit`, `acss_debit`, `affirm`, `afterpay_clearpay`, `alipay`, `alma`, `amazon_pay`, `au_becs_debit`, `bacs_debit`, `bancontact`, `blik`, `boleto`, `card_present`, `card`, `cashapp`, `customer_balance`, `eps`, `fpx`, `giropay`, `gopay`, `grabpay`, `id_bank_transfer`, `ideal`, `interac_present`, `kakao_pay`, `klarna`, `konbini`, `kr_card`, `link`, `mb_way`, `mobilepay`, `multibanco`, `naver_pay`, `nz_bank_account`, `oxxo`, `p24`, `pay_by_bank`, `payco`, `paynow`, `paypal`, `payto`, `pix`, `promptpay`, `qris`, `rechnung`, `revolut_pay`, `samsung_pay`, `satispay`, `sepa_credit_transfer`, `sepa_debit`, `shopeepay`, `sofort`, `stripe_account`, `swish`, `twint`, `us_bank_account`, `wechat_pay`, `wechat`, and `zip` on `PaymentAttemptRecord.payment_method_details` and `PaymentRecord.payment_method_details`
1578
- * Add support for `payout_method` on `PayoutCreateParams` and `Payout`
1579
- * Add support for `confirmation_secret`, `parent`, and `total_taxes` on `QuotePreviewInvoice`
1580
- * Add support for new values `forwarding_api_retryable_upstream_error`, `setup_intent_mobile_wallet_unsupported`, `v2_account_disconnection_unsupported`, and `v2_account_missing_configuration` on enum `QuotePreviewInvoice.last_finalization_error.code`
1581
- * Add support for new values `klarna`, `nz_bank_account`, and `stripe_balance` on enum `QuotePreviewInvoice.payment_settings.payment_method_types`
1582
- * Add support for `id` and `text` on `Terminal.Reader.action.collect_inputs.inputs[].selection.choices[]`, `Terminal.Reader.action.collect_inputs.inputs[].selection`, and `Terminal.ReaderCollectInputsParams.inputs[].selection.choices[]`
1583
-
1584
- #### New APIs for Money CardManagement
1585
-
1586
- * Add support for new resources `V2.FinancialAddressCreditSimulation`, `V2.FinancialAddressGeneratedMicrodeposits`, `V2.MoneyManagement.Adjustment`, `V2.MoneyManagement.FinancialAccount`, `V2.MoneyManagement.FinancialAddress`, `V2.MoneyManagement.InboundTransfer`, `V2.MoneyManagement.OutboundPaymentQuote`, `V2.MoneyManagement.OutboundPayment`, `V2.MoneyManagement.OutboundSetupIntent`, `V2.MoneyManagement.OutboundTransfer`, `V2.MoneyManagement.PayoutMethod`, `V2.MoneyManagement.PayoutMethodsBankAccountSpec`, `V2.MoneyManagement.ReceivedCredit`, `V2.MoneyManagement.ReceivedDebit`, `V2.MoneyManagement.TransactionEntry`, and `V2.MoneyManagement.Transaction`
1587
- * Add support for `create` method on resource `V2.MoneyManagement.OutboundPaymentQuote`
1588
- * Add support for `list` and `retrieve` methods on resources `V2.MoneyManagement.Adjustment`, `V2.MoneyManagement.FinancialAccount`, `V2.MoneyManagement.ReceivedCredit`, `V2.MoneyManagement.ReceivedDebit`, `V2.MoneyManagement.TransactionEntry`, and `V2.MoneyManagement.Transaction`
1589
- * Add support for `create`, `list`, and `retrieve` methods on resources `V2.MoneyManagement.FinancialAddress` and `V2.MoneyManagement.InboundTransfer`
1590
- * Add support for `cancel`, `create`, `list`, and `retrieve` methods on resources `V2.MoneyManagement.OutboundPayment` and `V2.MoneyManagement.OutboundTransfer`
1591
- * Add support for `archive`, `list`, `retrieve`, and `unarchive` methods on resource `V2.MoneyManagement.PayoutMethod`
1592
- * Add support for `cancel`, `create`, `list`, `retrieve`, and `update` methods on resource `V2.MoneyManagement.OutboundSetupIntent`
1593
- * Add support for `retrieve` method on resource `V2.MoneyManagement.PayoutMethodsBankAccountSpec`
1594
- * Add support for new values `account_number`, `fedwire_routing_number`, and `routing_number` on enum `invalid_payment_method.invalid_param`
1595
- * Add support for new thin event `V2MoneyManagementFinancialAccountCreatedEvent` with related object `V2.MoneyManagement.FinancialAccount`
1596
- * Add support for new thin events `V2MoneyManagementFinancialAddressActivatedEvent` and `V2MoneyManagementFinancialAddressFailedEvent` with related object `V2.MoneyManagement.FinancialAddress`
1597
- * Add support for new thin events `V2MoneyManagementInboundTransferAvailableEvent`, `V2MoneyManagementInboundTransferBankDebitFailedEvent`, `V2MoneyManagementInboundTransferBankDebitProcessingEvent`, `V2MoneyManagementInboundTransferBankDebitQueuedEvent`, `V2MoneyManagementInboundTransferBankDebitReturnedEvent`, and `V2MoneyManagementInboundTransferBankDebitSucceededEvent` with related object `V2.MoneyManagement.InboundTransfer`
1598
- * Add support for new thin events `V2MoneyManagementOutboundPaymentCanceledEvent`, `V2MoneyManagementOutboundPaymentCreatedEvent`, `V2MoneyManagementOutboundPaymentFailedEvent`, `V2MoneyManagementOutboundPaymentPostedEvent`, and `V2MoneyManagementOutboundPaymentReturnedEvent` with related object `V2.MoneyManagement.OutboundPayment`
1599
- * Add support for new thin events `V2MoneyManagementOutboundTransferCanceledEvent`, `V2MoneyManagementOutboundTransferCreatedEvent`, `V2MoneyManagementOutboundTransferFailedEvent`, `V2MoneyManagementOutboundTransferPostedEvent`, and `V2MoneyManagementOutboundTransferReturnedEvent` with related object `V2.MoneyManagement.OutboundTransfer`
1600
- * Add support for new thin events `V2MoneyManagementReceivedCreditAvailableEvent`, `V2MoneyManagementReceivedCreditFailedEvent`, `V2MoneyManagementReceivedCreditReturnedEvent`, and `V2MoneyManagementReceivedCreditSucceededEvent` with related object `V2.MoneyManagement.ReceivedCredit`
1601
- * Add support for new thin events `V2MoneyManagementReceivedDebitCanceledEvent`, `V2MoneyManagementReceivedDebitFailedEvent`, `V2MoneyManagementReceivedDebitPendingEvent`, `V2MoneyManagementReceivedDebitSucceededEvent`, and `V2MoneyManagementReceivedDebitUpdatedEvent` with related object `V2.MoneyManagement.ReceivedDebit`
1602
- * Add support for new error types `AlreadyCanceledError`, `BlockedByStripeError`, `ControlledByDashboardError`, `FeatureNotEnabledError`, `FinancialAccountNotOpenError`, `InsufficientFundsError`, `InvalidPayoutMethodError`, `NotCancelableError`, and `RecipientNotNotifiableError`
1603
-
1604
-
1605
- #### New APIs for Accounts v2 in private preview
1606
- See [SaaS platform payments with subscription billing using Accounts v2](https://docs.stripe.com/connect/accounts-v2/saas-platform-payments-billing)
1607
-
1608
- * Add support for new resources `V2.Core.AccountLink`, `V2.Core.Account`, `V2.Core.Person`, `V2.Core.Vault.GbBankAccount`, `V2.Core.Vault.UsBankAccount`
1609
- * Add support for `close`, `create`, `list`, `retrieve`, and `update` methods on resource `V2.Core.Account`
1610
- * Add support for `create` method on resource `V2.Core.AccountLink`
1611
- * Add support for `acknowledge_confirmation_of_payee`, `archive`, `create`, `initiate_confirmation_of_payee`, and `retrieve` methods on resource `V2.Core.Vault.GbBankAccount`
1612
- * Add support for `archive`, `create`, `retrieve`, and `update` methods on resource `V2.Core.Vault.UsBankAccount`
1613
- * Add support for new thin events `V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEvent`, `V2CoreAccountIncludingConfigurationCustomerUpdatedEvent`, `V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEvent`, `V2CoreAccountIncludingConfigurationMerchantUpdatedEvent`, `V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent`, `V2CoreAccountIncludingConfigurationRecipientUpdatedEvent`, `V2CoreAccountIncludingIdentityUpdatedEvent`, and `V2CoreAccountIncludingRequirementsUpdatedEvent`
1614
- * Add support for new thin event `V2CoreAccountLinkCompletedEvent` with related object `V2.Core.AccountLink`
1615
- * Add support for new thin events `V2CoreAccountPersonCreatedEvent`, `V2CoreAccountPersonDeletedEvent`, and `V2CoreAccountPersonUpdatedEvent` with related object `V2.Core.Person`
1616
-
1617
- ### Changes
1618
- * Change `Billing.CreditBalanceSummaryRetrieveParams.customer`, `Billing.CreditBalanceTransactionListParams.customer`, `Billing.CreditGrantCreateParams.customer`, `BillingPortal.SessionCreateParams.customer`, `CustomerSessionCreateParams.customer`, `InvoiceItemCreateParams.customer`, `PaymentMethodAttachParams.customer`, and `SubscriptionCreateParams.customer` to be optional
1619
- * Change `CreditNote.refunds` to be required
1620
- * Change type of `PaymentAttemptRecord.payment_method_details.custom` and `PaymentRecord.payment_method_details.custom` from `PaymentsPrimitivesPaymentRecordsResourcePaymentMethodCustomDetails | null` to `PaymentsPrimitivesPaymentRecordsResourcePaymentMethodCustomDetails`
1621
- * Change `OrderCreateParams.payment.settings.payment_method_options.wechat_pay.client` and `OrderUpdateParams.payment.settings.payment_method_options.wechat_pay.client` to be optional
1622
-
1623
529
  ## 18.0.0 - 2025-04-01
1624
530
  * [#2279](https://github.com/stripe/stripe-node/pull/2279) Support for APIs in the new API version 2025-03-31.basil
1625
531
 
@@ -1759,15 +665,6 @@ This release changes the pinned API version to 2025-05-28.preview.
1759
665
  * Remove `TransferReversalRetrieveParams` in favor of `TransferRetrieveReversalParams`
1760
666
  * Remove `TransferReversalUpdateParams` in favor of `TransferUpdateReversalParams`
1761
667
 
1762
- ## 17.8.0-beta.1 - 2025-03-18
1763
- * [#2271](https://github.com/stripe/stripe-node/pull/2271) Beta SDK updates between Open API versions 1473 and 1505
1764
-
1765
- * Add support for `succeed_input_collection` and `timeout_input_collection` test helper methods on resource `Terminal.Reader`
1766
- * Change type of `Account.risk_controls.rejected_reason` from enum to enum | null
1767
- * Change `Checkout.Session.collected_information.shipping_details` and `Checkout.Session.collected_information` to be required
1768
- * Add support for `target_date` on `Order.payment.settings.payment_method_options.acss_debit`, `Order.payment.settings.payment_method_options.sepa_debit`, `OrderCreateParams.payment.settings.payment_method_options.acss_debit`, `OrderCreateParams.payment.settings.payment_method_options.sepa_debit`, `OrderUpdateParams.payment.settings.payment_method_options.acss_debit`, and `OrderUpdateParams.payment.settings.payment_method_options.sepa_debit`
1769
- * [#2272](https://github.com/stripe/stripe-node/pull/2272) Merge master
1770
-
1771
668
  ## 17.7.0 - 2025-02-24
1772
669
  * [#2256](https://github.com/stripe/stripe-node/pull/2256) Update generated code
1773
670
  * Add support for `prices` on `Billing.CreditBalanceSummaryRetrieveParams.filter.applicability_scope`, `Billing.CreditGrant.applicability_config.scope`, and `Billing.CreditGrantCreateParams.applicability_config.scope`
@@ -1783,17 +680,6 @@ This release changes the pinned API version to 2025-05-28.preview.
1783
680
  * [#2259](https://github.com/stripe/stripe-node/pull/2259) Add Next.js App Router webhook example that leverages Route Handlers
1784
681
  * [#2257](https://github.com/stripe/stripe-node/pull/2257) Include `OPENAPI_VERSION` into npm bundle
1785
682
 
1786
- ## 17.7.0-beta.1 - 2025-02-07
1787
- * [#2254](https://github.com/stripe/stripe-node/pull/2254) Update generated code for beta
1788
- * Add support for `rejected_reason` on `Account.risk_controls`
1789
- * Add support for `product_tax_code_selector` on `AccountSessionCreateParams.components`
1790
- * Add support for `prices` on `Billing.CreditBalanceSummaryRetrieveParams.filter.applicability_scope`, `Billing.CreditGrant.applicability_config.scope`, and `Billing.CreditGrantCreateParams.applicability_config.scope`
1791
- * Change `Billing.CreditGrant.applicability_config.scope.price_type`, `Checkout.Session.collected_information.business_name`, `Checkout.Session.collected_information.email`, `Checkout.Session.collected_information.phone`, `Checkout.Session.collected_information.shipping_details`, and `Checkout.Session.collected_information.tax_ids` to be optional
1792
- * Add support for `brand_product` on `Charge.payment_method_details.amazon_pay.funding.card` and `Charge.payment_method_details.revolut_pay.funding.card`
1793
- * Add support for `restrictions` on `Checkout.Session.payment_method_options.card` and `Checkout.SessionCreateParams.payment_method_options.card`
1794
- * Change `Checkout.Session.discounts` to be required
1795
- * Change type of `TokenCreateParams.person.political_exposure` from `string` to `enum('existing'|'none')`
1796
-
1797
683
  ## 17.6.0 - 2025-01-27
1798
684
  * [#2250](https://github.com/stripe/stripe-node/pull/2250) Update generated code
1799
685
  * Add support for `close` method on resource `Treasury.FinancialAccount`
@@ -1826,53 +712,6 @@ This release changes the pinned API version to 2025-05-28.preview.
1826
712
  * [#2252](https://github.com/stripe/stripe-node/pull/2252) Added CONTRIBUTING.md file
1827
713
  * [#2242](https://github.com/stripe/stripe-node/pull/2242) Added pull request template
1828
714
 
1829
- ## 17.6.0-beta.3 - 2025-01-23
1830
- * [#2253](https://github.com/stripe/stripe-node/pull/2253) Update generated code for beta
1831
- * Change `Refund.destination_details.blik.network_decline_code` and `Refund.destination_details.swish.network_decline_code` to be required
1832
- * Remove support for `stripe_account` on `Terminal.Reader.action.collect_payment_method`, `Terminal.Reader.action.confirm_payment_intent`, `Terminal.Reader.action.process_payment_intent`, and `Terminal.Reader.action.refund_payment`
1833
-
1834
- ## 17.6.0-beta.2 - 2025-01-17
1835
- * [#2247](https://github.com/stripe/stripe-node/pull/2247) Update generated code for beta
1836
- * Add support for `pay_by_bank_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
1837
- * Add support for `directorship_declaration` on `AccountCreateParams.company`, `AccountUpdateParams.company`, and `TokenCreateParams.account.company`
1838
- * Add support for `proof_of_ultimate_beneficial_ownership` on `AccountCreateParams.documents` and `AccountUpdateParams.documents`
1839
- * Add support for `tax_threshold_monitoring` on `AccountSessionCreateParams.components`
1840
- * Add support for `financial_account_transactions`, `financial_account`, `issuing_card`, and `issuing_cards_list` on `AccountSession.components`
1841
- * Change `Billing.CreditBalanceTransaction.credit.credits_application_invoice_voided` to be required
1842
- * Add support for new value `always_invoice` on enums `BillingPortal.Configuration.features.subscription_cancel.proration_behavior`, `BillingPortal.ConfigurationCreateParams.features.subscription_cancel.proration_behavior`, and `BillingPortal.ConfigurationUpdateParams.features.subscription_cancel.proration_behavior`
1843
- * Add support for `pay_by_bank` on `Charge.payment_method_details`, `Checkout.SessionCreateParams.payment_method_options`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, `PaymentMethodConfiguration`, `PaymentMethodCreateParams`, `PaymentMethodUpdateParams`, `PaymentMethod`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
1844
- * Add support for new value `pay_by_bank` on enum `Checkout.SessionCreateParams.payment_method_types[]`
1845
- * Add support for new value `SD` on enums `Checkout.Session.shipping_address_collection.allowed_countries[]`, `Checkout.SessionCreateParams.shipping_address_collection.allowed_countries[]`, `PaymentLink.shipping_address_collection.allowed_countries[]`, `PaymentLinkCreateParams.shipping_address_collection.allowed_countries[]`, and `PaymentLinkUpdateParams.shipping_address_collection.allowed_countries[]`
1846
- * Add support for `discounts` on `Checkout.Session`
1847
- * Add support for new value `pay_by_bank` on enums `ConfirmationTokenCreateParams.testHelpers.payment_method_data.type`, `PaymentIntentConfirmParams.payment_method_data.type`, `PaymentIntentCreateParams.payment_method_data.type`, `PaymentIntentUpdateParams.payment_method_data.type`, `SetupIntentConfirmParams.payment_method_data.type`, `SetupIntentCreateParams.payment_method_data.type`, and `SetupIntentUpdateParams.payment_method_data.type`
1848
- * Add support for new value `pay_by_bank` on enums `ConfirmationToken.payment_method_preview.type` and `PaymentMethod.type`
1849
- * Add support for new value `pay_by_bank` on enums `CustomerListPaymentMethodsParams.type`, `PaymentMethodCreateParams.type`, and `PaymentMethodListParams.type`
1850
- * Add support for new value `pay_by_bank` on enums `PaymentLink.payment_method_types[]`, `PaymentLinkCreateParams.payment_method_types[]`, and `PaymentLinkUpdateParams.payment_method_types[]`
1851
- * Add support for `jpy` on `Terminal.Configuration.tipping`, `Terminal.ConfigurationCreateParams.tipping`, and `Terminal.ConfigurationUpdateParams.tipping`
1852
- * Add support for new value `2025-01-27.acacia` on enum `WebhookEndpointCreateParams.api_version`
1853
-
1854
- ## 17.6.0-beta.1 - 2025-01-09
1855
- * [#2239](https://github.com/stripe/stripe-node/pull/2239) Update generated code for beta
1856
- * Add support for `close` method on resource `Treasury.FinancialAccount`
1857
- * Add support for `ownership_exemption_reason` on `Account.company`, `AccountCreateParams.company`, `AccountUpdateParams.company`, and `TokenCreateParams.account.company`
1858
- * Add support for `directorship_declaration` on `Account.company`
1859
- * Add support for `advice_code` on `Charge.outcome`, `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
1860
- * Remove support for value `always_invoice` from enums `BillingPortal.Configuration.features.subscription_cancel.proration_behavior`, `BillingPortal.ConfigurationCreateParams.features.subscription_cancel.proration_behavior`, and `BillingPortal.ConfigurationUpdateParams.features.subscription_cancel.proration_behavior`
1861
- * Add support for `brand_product` on `Card`, `Source.card_present`, `Source.card`, and `Source.three_d_secure`
1862
- * Change `Card.regulated_status`, `Charge.payment_method_details.card.network_transaction_id`, `Charge.payment_method_details.card.regulated_status`, `ConfirmationToken.payment_method_preview.card.regulated_status`, `CreditNote.pretax_credit_amounts`, `Invoice.total_pretax_credit_amounts`, `Issuing.Authorization.merchant_data.tax_id`, `Issuing.Transaction.merchant_data.tax_id`, and `PaymentMethod.card.regulated_status` to be required
1863
- * Add support for `country` on `Charge.payment_method_details.paypal`, `ConfirmationToken.payment_method_preview.paypal`, and `PaymentMethod.paypal`
1864
- * Add support for new value `al_tin` on enums `Checkout.Session.collected_information.tax_ids[].type` and `Order.tax_details.tax_ids[].type`
1865
- * Add support for new value `al_tin` on enums `OrderCreateParams.tax_details.tax_ids[].type` and `OrderUpdateParams.tax_details.tax_ids[].type`
1866
- * Add support for `phone_number_collection` on `PaymentLinkUpdateParams`
1867
- * Add support for `nickname` on `Treasury.FinancialAccountCreateParams`, `Treasury.FinancialAccountUpdateParams`, and `Treasury.FinancialAccount`
1868
- * Add support for `forwarding_settings` on `Treasury.FinancialAccountUpdateParams`
1869
- * Add support for `is_default` on `Treasury.FinancialAccount`
1870
- * Add support for `destination_payment_method_data` on `Treasury.OutboundTransferCreateParams`
1871
- * Add support for `financial_account` on `Treasury.OutboundTransfer.destination_payment_method_details`
1872
- * Change type of `Treasury.OutboundTransfer.destination_payment_method_details.type` from `literal('us_bank_account')` to `enum('financial_account'|'us_bank_account')`
1873
- * Add support for new value `outbound_transfer` on enums `Treasury.ReceivedCredit.linked_flows.source_flow_details.type` and `Treasury.ReceivedCreditListParams.linked_flows.source_flow_type`
1874
- * Add support for `outbound_transfer` on `Treasury.ReceivedCredit.linked_flows.source_flow_details`
1875
-
1876
715
  ## 17.5.0 - 2024-12-18
1877
716
  * [#2237](https://github.com/stripe/stripe-node/pull/2237) This release changes the pinned API version to `2024-12-18.acacia`.
1878
717
  * Change `Account.business_profile.annual_revenue` and `Account.business_profile.estimated_worker_count` to be optional
@@ -1900,40 +739,6 @@ This release changes the pinned API version to 2025-05-28.preview.
1900
739
  * Add support for new value `2024-12-18.acacia` on enum `WebhookEndpointCreateParams.api_version`
1901
740
  * [#2238](https://github.com/stripe/stripe-node/pull/2238) add missing key warning to README
1902
741
 
1903
- ## 17.5.0-beta.3 - 2024-12-12
1904
- * [#2235](https://github.com/stripe/stripe-node/pull/2235) Update generated code for beta
1905
- * Change `Account.business_profile.annual_revenue` and `Account.business_profile.estimated_worker_count` to be optional
1906
- * Add support for `allow_redisplay` on `Card` and `Source`
1907
- * Add support for new values `am_tin`, `ao_tin`, `ba_tin`, `bb_tin`, `bs_tin`, `cd_nif`, `gn_nif`, `kh_tin`, `me_pib`, `mk_vat`, `mr_nif`, `np_pan`, `sn_ninea`, `sr_fin`, `tj_tin`, `ug_tin`, `zm_tin`, and `zw_tin` on enums `Checkout.Session.collected_information.tax_ids[].type` and `Order.tax_details.tax_ids[].type`
1908
- * Add support for new value `network_fallback` on enum `Issuing.Authorization.request_history[].reason`
1909
- * Add support for new values `am_tin`, `ao_tin`, `ba_tin`, `bb_tin`, `bs_tin`, `cd_nif`, `gn_nif`, `kh_tin`, `me_pib`, `mk_vat`, `mr_nif`, `np_pan`, `sn_ninea`, `sr_fin`, `tj_tin`, `ug_tin`, `zm_tin`, and `zw_tin` on enums `OrderCreateParams.tax_details.tax_ids[].type` and `OrderUpdateParams.tax_details.tax_ids[].type`
1910
- * Remove support for `amount_refunded` on `PaymentRecord`
1911
- * Add support for `account` on `Terminal.Reader.action.collect_payment_method`, `Terminal.Reader.action.confirm_payment_intent`, `Terminal.Reader.action.process_payment_intent`, and `Terminal.Reader.action.refund_payment`
1912
-
1913
- ## 17.5.0-beta.2 - 2024-12-05
1914
- * [#2232](https://github.com/stripe/stripe-node/pull/2232) Update generated code for beta
1915
- * Add support for `automatic_indirect_tax` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
1916
- * Add support for new values `payout_minimum_balance_hold` and `payout_minimum_balance_release` on enum `BalanceTransaction.type`
1917
- * Add support for `reference_prefix` on `Checkout.Session.payment_method_options.bacs_debit.mandate_options`, `Checkout.Session.payment_method_options.sepa_debit.mandate_options`, `Checkout.SessionCreateParams.payment_method_options.bacs_debit.mandate_options`, `Checkout.SessionCreateParams.payment_method_options.sepa_debit.mandate_options`, `Order.payment.settings.payment_method_options.sepa_debit.mandate_options`, `OrderCreateParams.payment.settings.payment_method_options.sepa_debit.mandate_options`, `OrderUpdateParams.payment.settings.payment_method_options.sepa_debit.mandate_options`, `PaymentIntent.payment_method_options.bacs_debit.mandate_options`, `PaymentIntent.payment_method_options.sepa_debit.mandate_options`, `PaymentIntentConfirmParams.payment_method_options.bacs_debit.mandate_options`, `PaymentIntentConfirmParams.payment_method_options.sepa_debit.mandate_options`, `PaymentIntentCreateParams.payment_method_options.bacs_debit.mandate_options`, `PaymentIntentCreateParams.payment_method_options.sepa_debit.mandate_options`, `PaymentIntentUpdateParams.payment_method_options.bacs_debit.mandate_options`, `PaymentIntentUpdateParams.payment_method_options.sepa_debit.mandate_options`, `SetupIntent.payment_method_options.bacs_debit.mandate_options`, `SetupIntent.payment_method_options.sepa_debit.mandate_options`, `SetupIntentConfirmParams.payment_method_options.bacs_debit.mandate_options`, `SetupIntentConfirmParams.payment_method_options.sepa_debit.mandate_options`, `SetupIntentCreateParams.payment_method_options.bacs_debit.mandate_options`, `SetupIntentCreateParams.payment_method_options.sepa_debit.mandate_options`, `SetupIntentUpdateParams.payment_method_options.bacs_debit.mandate_options`, and `SetupIntentUpdateParams.payment_method_options.sepa_debit.mandate_options`
1918
- * Add support for `disabled_reason` on `Invoice.automatic_tax`, `Subscription.automatic_tax`, `SubscriptionSchedule.default_settings.automatic_tax`, and `SubscriptionSchedule.phases[].automatic_tax`
1919
- * Change `Issuing.Authorization.verified_by_fraud_challenge` to be required
1920
- * Add support for `trial_period_days` on `PaymentLinkUpdateParams.subscription_data`
1921
-
1922
- ## 17.5.0-beta.1 - 2024-11-21
1923
- * [#2229](https://github.com/stripe/stripe-node/pull/2229) Update generated code for beta
1924
- * Add support for `network_advice_code` and `network_decline_code` on `Charge.outcome`, `Invoice.last_finalization_error`, `PaymentIntent.last_payment_error`, `SetupAttempt.setup_error`, `SetupIntent.last_setup_error`, and `StripeError`
1925
- * Change `BillingPortal.Configuration.features.subscription_update.schedule_at_period_end` and `LineItem.description` to be required
1926
- * Add support for `funding` on `Charge.payment_method_details.amazon_pay` and `Charge.payment_method_details.revolut_pay`
1927
- * Add support for `amount_requested` and `partial_authorization` on `Charge.payment_method_details.card`
1928
- * Add support for `metadata` on `Checkout.SessionCreateParams.line_items[]` and `LineItem`
1929
- * Add support for `line_items` on `Checkout.Session.permissions.update`, `Checkout.SessionCreateParams.permissions.update`, and `Checkout.SessionUpdateParams`
1930
- * Add support for new value `invoice.overpaid` on enum `Event.type`
1931
- * Add support for `adjustable_quantity` and `display` on `LineItem`
1932
- * Change type of `LineItem.description` from `string` to `string | null`
1933
- * Add support for `request_partial_authorization` on `PaymentIntent.payment_method_options.card`, `PaymentIntentConfirmParams.payment_method_options.card`, `PaymentIntentCreateParams.payment_method_options.card`, and `PaymentIntentUpdateParams.payment_method_options.card`
1934
- * Add support for `payment_method_options` on `PaymentIntentIncrementAuthorizationParams`
1935
- * Add support for new value `invoice.overpaid` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
1936
-
1937
742
  ## 17.4.0 - 2024-11-20
1938
743
  * [#2222](https://github.com/stripe/stripe-node/pull/2222) This release changes the pinned API version to `2024-11-20.acacia`.
1939
744
  * Add support for `respond` test helper method on resource `Issuing.Authorization`
@@ -1962,56 +767,6 @@ This release changes the pinned API version to 2025-05-28.preview.
1962
767
  * [#2215](https://github.com/stripe/stripe-node/pull/2215) Remove empty resources created for service groupings
1963
768
  * Remove `Stripe.V2.BillingResource`, `Stripe.V2.CoreResource`, and `Stripe.V2Resource` types from the public interface as they are no longer needed. SDK usage will not be affected but any references to these types in your application will need to be removed.
1964
769
 
1965
- ## 17.4.0-beta.3 - 2024-11-14
1966
- * [#2226](https://github.com/stripe/stripe-node/pull/2226) Update generated code for beta
1967
- * Add support for `account_holder_address` and `bank_address` on `FundingInstructions.bank_transfer.financial_addresses[].iban`, `FundingInstructions.bank_transfer.financial_addresses[].sort_code`, `FundingInstructions.bank_transfer.financial_addresses[].spei`, `FundingInstructions.bank_transfer.financial_addresses[].zengin`, `PaymentIntent.next_action.display_bank_transfer_instructions.financial_addresses[].iban`, `PaymentIntent.next_action.display_bank_transfer_instructions.financial_addresses[].sort_code`, `PaymentIntent.next_action.display_bank_transfer_instructions.financial_addresses[].spei`, and `PaymentIntent.next_action.display_bank_transfer_instructions.financial_addresses[].zengin`
1968
- * Add support for `account_holder_name` on `FundingInstructions.bank_transfer.financial_addresses[].spei` and `PaymentIntent.next_action.display_bank_transfer_instructions.financial_addresses[].spei`
1969
- * Add support for new value `subscribe` on enum `PaymentLinkUpdateParams.submit_type`
1970
- * [#2225](https://github.com/stripe/stripe-node/pull/2225) Update generated code for beta
1971
- * Add support for `respond` test helper method on resource `Issuing.Authorization`
1972
- * Add support for `fraud_challenges` and `verified_by_fraud_challenge` on `Issuing.Authorization`
1973
-
1974
- ## 17.4.0-beta.2 - 2024-11-07
1975
- * [#2219](https://github.com/stripe/stripe-node/pull/2219) Update generated code for beta
1976
- * Add support for new resources `Issuing.FraudLiabilityDebit`, `PaymentAttemptRecord`, and `PaymentRecord`
1977
- * Add support for `list` and `retrieve` methods on resources `FraudLiabilityDebit` and `PaymentAttemptRecord`
1978
- * Add support for `report_payment_attempt_canceled`, `report_payment_attempt_failed`, `report_payment_attempt_guaranteed`, `report_payment_attempt`, `report_payment`, and `retrieve` methods on resource `PaymentRecord`
1979
- * Change type of `Account.future_requirements.disabled_reason` and `Account.requirements.disabled_reason` from `string` to `enum`
1980
- * Remove support for `money_movement` on `AccountSessionCreateParams.components.financial_account.features`
1981
- * Add support for `card_management`, `card_spend_dispute_management`, `cardholder_management`, and `spend_control_management` on `AccountSessionCreateParams.components.issuing_card.features`
1982
- * Add support for `disable_stripe_user_authentication` on `AccountSessionCreateParams.components.issuing_cards_list.features`
1983
- * Change `AccountSession.components.account_management.features.disable_stripe_user_authentication`, `AccountSession.components.account_onboarding.features.disable_stripe_user_authentication`, `AccountSession.components.balances.features.disable_stripe_user_authentication`, `AccountSession.components.notification_banner.features.disable_stripe_user_authentication`, and `AccountSession.components.payouts.features.disable_stripe_user_authentication` to be required
1984
- * Add support for `adaptive_pricing` on `Checkout.SessionCreateParams` and `Checkout.Session`
1985
- * Add support for `mandate_options` on `Checkout.Session.payment_method_options.bacs_debit`, `Checkout.Session.payment_method_options.sepa_debit`, `Checkout.SessionCreateParams.payment_method_options.bacs_debit`, and `Checkout.SessionCreateParams.payment_method_options.sepa_debit`
1986
- * Add support for `request_decremental_authorization`, `request_extended_authorization`, `request_incremental_authorization`, `request_multicapture`, and `request_overcapture` on `Checkout.Session.payment_method_options.card` and `Checkout.SessionCreateParams.payment_method_options.card`
1987
- * Add support for `capture_method` on `Checkout.SessionCreateParams.payment_method_options.kakao_pay`, `Checkout.SessionCreateParams.payment_method_options.kr_card`, `Checkout.SessionCreateParams.payment_method_options.naver_pay`, `Checkout.SessionCreateParams.payment_method_options.payco`, and `Checkout.SessionCreateParams.payment_method_options.samsung_pay`
1988
- * Add support for new value `li_vat` on enums `Checkout.Session.collected_information.tax_ids[].type`, `Checkout.Session.customer_details.tax_ids[].type`, `Invoice.customer_tax_ids[].type`, `Order.tax_details.tax_ids[].type`, `Tax.Calculation.customer_details.tax_ids[].type`, `Tax.Transaction.customer_details.tax_ids[].type`, and `TaxId.type`
1989
- * Add support for new value `li_vat` on enums `CustomerCreateParams.tax_id_data[].type`, `InvoiceCreatePreviewParams.customer_details.tax_ids[].type`, `InvoiceUpcomingLinesParams.customer_details.tax_ids[].type`, `InvoiceUpcomingParams.customer_details.tax_ids[].type`, `OrderCreateParams.tax_details.tax_ids[].type`, `OrderUpdateParams.tax_details.tax_ids[].type`, `Tax.CalculationCreateParams.customer_details.tax_ids[].type`, and `TaxIdCreateParams.type`
1990
- * Add support for new values `invoice.payment_attempt_required` and `issuing_fraud_liability_debit.created` on enum `Event.type`
1991
- * Add support for `account_holder_address`, `account_holder_name`, `account_type`, and `bank_address` on `FundingInstructions.bank_transfer.financial_addresses[].aba`, `FundingInstructions.bank_transfer.financial_addresses[].swift`, `PaymentIntent.next_action.display_bank_transfer_instructions.financial_addresses[].aba`, and `PaymentIntent.next_action.display_bank_transfer_instructions.financial_addresses[].swift`
1992
- * Add support for new value `custom` on enums `Invoice.payment_settings.payment_method_types[]`, `InvoiceCreateParams.payment_settings.payment_method_types[]`, `InvoiceUpdateParams.payment_settings.payment_method_types[]`, `Subscription.payment_settings.payment_method_types[]`, `SubscriptionCreateParams.payment_settings.payment_method_types[]`, and `SubscriptionUpdateParams.payment_settings.payment_method_types[]`
1993
- * Add support for new value `service_tax` on enums `InvoiceAddLinesParams.lines[].tax_amounts[].tax_rate_data.tax_type`, `InvoiceUpdateLinesParams.lines[].tax_amounts[].tax_rate_data.tax_type`, `Tax.Calculation.shipping_cost.tax_breakdown[].tax_rate_details.tax_type`, `Tax.Calculation.tax_breakdown[].tax_rate_details.tax_type`, `Tax.CalculationLineItem.tax_breakdown[].tax_rate_details.tax_type`, `Tax.Transaction.shipping_cost.tax_breakdown[].tax_rate_details.tax_type`, `TaxRate.tax_type`, `TaxRateCreateParams.tax_type`, and `TaxRateUpdateParams.tax_type`
1994
- * Add support for `payment_record_data` and `payment_record` on `InvoiceAttachPaymentParams`
1995
- * Remove support for `out_of_band_payment` on `InvoiceAttachPaymentParams`
1996
- * Add support for `amount_overpaid` on `Invoice`
1997
- * Add support for `merchant_amount` and `merchant_currency` on `Issuing.AuthorizationCreateParams.testHelpers`
1998
- * Change `Issuing.AuthorizationCreateParams.testHelpers.amount` to be optional
1999
- * Add support for new value `link` on enums `PaymentIntent.payment_method_options.card.network`, `PaymentIntentConfirmParams.payment_method_options.card.network`, `PaymentIntentCreateParams.payment_method_options.card.network`, `PaymentIntentUpdateParams.payment_method_options.card.network`, `SetupIntent.payment_method_options.card.network`, `SetupIntentConfirmParams.payment_method_options.card.network`, `SetupIntentCreateParams.payment_method_options.card.network`, `SetupIntentUpdateParams.payment_method_options.card.network`, `Subscription.payment_settings.payment_method_options.card.network`, `SubscriptionCreateParams.payment_settings.payment_method_options.card.network`, and `SubscriptionUpdateParams.payment_settings.payment_method_options.card.network`
2000
- * Add support for `submit_type` on `PaymentLinkUpdateParams`
2001
- * Change type of `Treasury.InboundTransfer.origin_payment_method` from `string` to `string | null`
2002
- * Add support for new values `invoice.payment_attempt_required` and `issuing_fraud_liability_debit.created` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2003
-
2004
- ## 17.4.0-beta.1 - 2024-10-29
2005
- * [#2216](https://github.com/stripe/stripe-node/pull/2216) Update generated code for beta
2006
- * Add support for `trigger_action` method on resource `PaymentIntent`
2007
- * Add support for `id_bank_transfer_payments_bca` and `id_bank_transfer_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
2008
- * Add support for `bank_bca_onboarding` on `Account.settings`, `AccountCreateParams.settings`, and `AccountUpdateParams.settings`
2009
- * Add support for `send_money` on `AccountSessionCreateParams.components.recipients.features`
2010
- * Remove support for value `payout_statement_descriptor_profanity` from enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
2011
- * Add support for `id_bank_transfer` on `Charge.payment_method_details`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `Invoice.payment_settings.payment_method_options`, `InvoiceCreateParams.payment_settings.payment_method_options`, `InvoiceUpdateParams.payment_settings.payment_method_options`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, `PaymentMethodConfiguration`, `PaymentMethodCreateParams`, `PaymentMethod`, `Refund.destination_details`, `SetupAttempt.payment_method_details`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, `SetupIntentUpdateParams.payment_method_data`, `Subscription.payment_settings.payment_method_options`, `SubscriptionCreateParams.payment_settings.payment_method_options`, and `SubscriptionUpdateParams.payment_settings.payment_method_options`
2012
- * Change `Dispute.enhanced_eligibility_types`, `Dispute.evidence.enhanced_evidence`, and `Dispute.evidence_details.enhanced_eligibility` to be required
2013
- * Add support for `gopay`, `qris`, and `shopeepay` on `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, and `PaymentMethodConfiguration`
2014
-
2015
770
  ## 17.3.1 - 2024-11-01
2016
771
  * [#2218](https://github.com/stripe/stripe-node/pull/2218) Fixed a bug where `latestapiversion` was not updated to `2024-10-28.acacia` in the last release.
2017
772
 
@@ -2053,31 +808,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2053
808
  * Add support for new values `issuing_transaction.purchase_details_receipt_updated` and `refund.failed` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2054
809
  * Add support for new value `2024-10-28.acacia` on enum `WebhookEndpointCreateParams.api_version`
2055
810
 
2056
- ## 17.3.0-beta.1 - 2024-10-18
2057
- * [#2206](https://github.com/stripe/stripe-node/pull/2206) Update generated code for beta
2058
- * Add support for `alma_payments`, `gopay_payments`, `kakao_pay_payments`, `kr_card_payments`, `naver_pay_payments`, `payco_payments`, `qris_payments`, `samsung_pay_payments`, `shopeepay_payments`, `treasury_evolve`, `treasury_fifth_third`, and `treasury_goldman_sachs` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
2059
- * Add support for `schedule_at_period_end` on `BillingPortal.Configuration.features.subscription_update`, `BillingPortal.ConfigurationCreateParams.features.subscription_update`, and `BillingPortal.ConfigurationUpdateParams.features.subscription_update`
2060
- * Change `BillingPortal.ConfigurationCreateParams.business_profile` to be optional
2061
- * Add support for `alma` on `Charge.payment_method_details`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, `PaymentMethodConfiguration`, `PaymentMethodCreateParams`, `PaymentMethod`, `Refund.destination_details`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
2062
- * Add support for `gopay`, `qris`, and `shopeepay` on `Charge.payment_method_details`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethod`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
2063
- * Add support for new values `alma`, `gopay`, `qris`, and `shopeepay` on enums `Checkout.SessionCreateParams.payment_method_types[]`, `CustomerListPaymentMethodsParams.type`, `PaymentMethodCreateParams.type`, and `PaymentMethodListParams.type`
2064
- * Add support for new values `alma`, `gopay`, `qris`, and `shopeepay` on enums `ConfirmationTokenCreateParams.testHelpers.payment_method_data.type`, `PaymentIntentConfirmParams.payment_method_data.type`, `PaymentIntentCreateParams.payment_method_data.type`, `PaymentIntentUpdateParams.payment_method_data.type`, `SetupIntentConfirmParams.payment_method_data.type`, `SetupIntentCreateParams.payment_method_data.type`, and `SetupIntentUpdateParams.payment_method_data.type`
2065
- * Add support for new values `alma`, `gopay`, `qris`, and `shopeepay` on enums `ConfirmationToken.payment_method_preview.type` and `PaymentMethod.type`
2066
- * Add support for new value `auto` on enum `CustomerUpdateParams.tax.validate_location`
2067
- * Add support for `metadata` on `Forwarding.RequestCreateParams`
2068
- * Add support for new values `jp_credit_transfer`, `kakao_pay`, `kr_card`, `naver_pay`, and `payco` on enums `Invoice.payment_settings.payment_method_types[]`, `InvoiceCreateParams.payment_settings.payment_method_types[]`, `InvoiceUpdateParams.payment_settings.payment_method_types[]`, `Subscription.payment_settings.payment_method_types[]`, `SubscriptionCreateParams.payment_settings.payment_method_types[]`, and `SubscriptionUpdateParams.payment_settings.payment_method_types[]`
2069
- * Remove support for value `expired` from enums `Issuing.Authorization.status` and `Issuing.AuthorizationListParams.status`
2070
- * Add support for new values `alma`, `gopay`, `qris`, and `shopeepay` on enums `PaymentLink.payment_method_types[]`, `PaymentLinkCreateParams.payment_method_types[]`, and `PaymentLinkUpdateParams.payment_method_types[]`
2071
- * Add support for `amazon_pay` on `PaymentMethodDomain`
2072
- * Change `Tax.Calculation.tax_breakdown[].tax_rate_details.flat_amount`, `Tax.Calculation.tax_breakdown[].tax_rate_details.rate_type`, `TaxRate.flat_amount`, and `TaxRate.rate_type` to be required
2073
- * Add support for `external_reference` on `Tax.Form.payee` and `Tax.FormListParams.payee`
2074
- * Change type of `Tax.Form.payee.type` and `Tax.FormListParams.payee.type` from `literal('account')` to `enum('account'|'external_reference')`
2075
- * Add support for new values `au_serr`, `ca_mrdp`, `eu_dac7`, `gb_mrdp`, and `nz_mrdp` on enums `Tax.Form.type` and `Tax.FormListParams.type`
2076
- * Add support for `au_serr`, `ca_mrdp`, `eu_dac7`, `gb_mrdp`, and `nz_mrdp` on `Tax.Form`
2077
- * Add support for `pln` on `Terminal.Configuration.tipping`, `Terminal.ConfigurationCreateParams.tipping`, and `Terminal.ConfigurationUpdateParams.tipping`
2078
- * Add support for `bank` on `Treasury.FinancialAccountCreateParams.features.financial_addresses.aba`, `Treasury.FinancialAccountFeatures.financial_addresses.aba`, `Treasury.FinancialAccountUpdateFeaturesParams.financial_addresses.aba`, and `Treasury.FinancialAccountUpdateParams.features.financial_addresses.aba`
2079
- * [#2209](https://github.com/stripe/stripe-node/pull/2209) Ramya/merge node beta
2080
-
2081
811
  ## 17.2.1 - 2024-10-18
2082
812
  * [#2210](https://github.com/stripe/stripe-node/pull/2210) update object tags for meter-related classes
2083
813
 
@@ -2088,38 +818,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2088
818
  * [#2201](https://github.com/stripe/stripe-node/pull/2201) Add fetchRelatedObject to V2 Events if needed
2089
819
  * `fetchRelatedObject` is added to events retrieved using `stripe.v2.core.events` and can be used to easily fetch the Stripe object related to a retrieved event
2090
820
 
2091
- ## 17.2.0-beta.2 - 2024-10-08
2092
- * [#2180](https://github.com/stripe/stripe-node/pull/2180) Update generated code for beta
2093
- * Add support for `submit_card` test helper method on resource `Issuing.Card`
2094
- * Add support for `groups` on `AccountCreateParams`, `AccountUpdateParams`, and `Account`
2095
- * Add support for `disable_stripe_user_authentication` on `AccountSession.components.account_management.features`, `AccountSession.components.account_onboarding.features`, `AccountSession.components.balances.features`, `AccountSession.components.notification_banner.features`, `AccountSession.components.payouts.features`, `AccountSessionCreateParams.components.account_management.features`, `AccountSessionCreateParams.components.account_onboarding.features`, `AccountSessionCreateParams.components.balances.features`, `AccountSessionCreateParams.components.financial_account.features`, `AccountSessionCreateParams.components.notification_banner.features`, and `AccountSessionCreateParams.components.payouts.features`
2096
- * Add support for `card_spend_dispute_management` and `spend_control_management` on `AccountSessionCreateParams.components.issuing_cards_list.features`
2097
- * Add support for new value `payout_statement_descriptor_profanity` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
2098
- * Add support for `kakao_pay` and `kr_card` on `Charge.payment_method_details`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `Mandate.payment_method_details`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethod`, `SetupAttempt.payment_method_details`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
2099
- * Add support for `naver_pay` on `Charge.payment_method_details`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethodUpdateParams`, `PaymentMethod`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
2100
- * Add support for `payco` and `samsung_pay` on `Charge.payment_method_details`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethod`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
2101
- * Add support for new values `kakao_pay`, `kr_card`, `naver_pay`, `payco`, and `samsung_pay` on enums `Checkout.SessionCreateParams.payment_method_types[]`, `CustomerListPaymentMethodsParams.type`, `PaymentMethodCreateParams.type`, and `PaymentMethodListParams.type`
2102
- * Add support for new values `by_tin`, `ma_vat`, `md_vat`, `tz_vat`, `uz_tin`, and `uz_vat` on enums `Checkout.Session.collected_information.tax_ids[].type`, `Checkout.Session.customer_details.tax_ids[].type`, `Invoice.customer_tax_ids[].type`, `Order.tax_details.tax_ids[].type`, `Tax.Calculation.customer_details.tax_ids[].type`, `Tax.Transaction.customer_details.tax_ids[].type`, and `TaxId.type`
2103
- * Add support for new values `kakao_pay`, `kr_card`, `naver_pay`, `payco`, and `samsung_pay` on enums `ConfirmationTokenCreateParams.testHelpers.payment_method_data.type`, `PaymentIntentConfirmParams.payment_method_data.type`, `PaymentIntentCreateParams.payment_method_data.type`, `PaymentIntentUpdateParams.payment_method_data.type`, `SetupIntentConfirmParams.payment_method_data.type`, `SetupIntentCreateParams.payment_method_data.type`, and `SetupIntentUpdateParams.payment_method_data.type`
2104
- * Add support for new values `kakao_pay`, `kr_card`, `naver_pay`, `payco`, and `samsung_pay` on enums `ConfirmationToken.payment_method_preview.type` and `PaymentMethod.type`
2105
- * Add support for new values `by_tin`, `ma_vat`, `md_vat`, `tz_vat`, `uz_tin`, and `uz_vat` on enums `CustomerCreateParams.tax_id_data[].type`, `InvoiceCreatePreviewParams.customer_details.tax_ids[].type`, `InvoiceUpcomingLinesParams.customer_details.tax_ids[].type`, `InvoiceUpcomingParams.customer_details.tax_ids[].type`, `OrderCreateParams.tax_details.tax_ids[].type`, `OrderUpdateParams.tax_details.tax_ids[].type`, `Tax.CalculationCreateParams.customer_details.tax_ids[].type`, and `TaxIdCreateParams.type`
2106
- * Add support for new value `refund.failed` on enum `Event.type`
2107
- * Add support for `metadata` on `Forwarding.Request`
2108
- * Add support for new value `retail_delivery_fee` on enums `InvoiceAddLinesParams.lines[].tax_amounts[].tax_rate_data.tax_type`, `InvoiceUpdateLinesParams.lines[].tax_amounts[].tax_rate_data.tax_type`, `Tax.Calculation.shipping_cost.tax_breakdown[].tax_rate_details.tax_type`, `Tax.Calculation.tax_breakdown[].tax_rate_details.tax_type`, `Tax.CalculationLineItem.tax_breakdown[].tax_rate_details.tax_type`, `Tax.Transaction.shipping_cost.tax_breakdown[].tax_rate_details.tax_type`, `TaxRate.tax_type`, `TaxRateCreateParams.tax_type`, and `TaxRateUpdateParams.tax_type`
2109
- * Add support for new value `expired` on enums `Issuing.Authorization.status` and `Issuing.AuthorizationListParams.status`
2110
- * Add support for `line_items` on `Order.payment.settings.payment_method_options.paypal`, `OrderCreateParams.payment.settings.payment_method_options.paypal`, `OrderUpdateParams.payment.settings.payment_method_options.paypal`, `PaymentIntent.payment_method_options.paypal`, `PaymentIntentConfirmParams.payment_method_options.paypal`, `PaymentIntentCreateParams.payment_method_options.paypal`, and `PaymentIntentUpdateParams.payment_method_options.paypal`
2111
- * Add support for `flat_amount` and `rate_type` on `Tax.Calculation.tax_breakdown[].tax_rate_details` and `TaxRate`
2112
- * Add support for `by`, `cr`, `ec`, `ma`, `md`, `rs`, `ru`, `tz`, and `uz` on `Tax.Registration.country_options` and `Tax.RegistrationCreateParams.country_options`
2113
- * Add support for new value `state_retail_delivery_fee` on enums `Tax.Registration.country_options.us.type` and `Tax.RegistrationCreateParams.country_options.us.type`
2114
- * Add support for new value `refund.failed` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2115
- * [#2203](https://github.com/stripe/stripe-node/pull/2203) Merge into beta using the merge script
2116
-
2117
- ## 17.2.0-beta.1 - 2024-10-03
2118
- * [#2200](https://github.com/stripe/stripe-node/pull/2200) Updates beta branch with changes in master
2119
- * Add support for `reporting_chart` on `AccountSessionCreateParams.components`
2120
- * Remove support for `from_schedule` on `Quote.subscription_data`
2121
- * Add support for `allow_redisplay` on `Terminal.ReaderCollectPaymentMethodParams.collect_config`
2122
-
2123
821
  ## 17.1.0 - 2024-10-03
2124
822
  * [#2199](https://github.com/stripe/stripe-node/pull/2199) Update generated code
2125
823
  * Remove the support for resource `Margin` that was accidentally made public in the last release
@@ -2152,14 +850,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2152
850
  ### Changes
2153
851
  * Change `BillingPortal.ConfigurationCreateParams.features.subscription_update.default_allowed_updates` and `BillingPortal.ConfigurationCreateParams.features.subscription_update.products` to be optional
2154
852
 
2155
- ## 16.13.0-beta.1 - 2024-09-18
2156
- * [#2178](https://github.com/stripe/stripe-node/pull/2178) Update generated code for beta
2157
- * Remove support for resource `QuotePhase`
2158
- * Remove support for `list_line_items` and `retrieve` methods on resource `QuotePhase`
2159
- * Add support for `send_money` and `transfer_balance` on `AccountSessionCreateParams.components.financial_account.features`
2160
- * Add support for new value `rechnung` on enums `PaymentLink.payment_method_types[]`, `PaymentLinkCreateParams.payment_method_types[]`, and `PaymentLinkUpdateParams.payment_method_types[]`
2161
- * Change `Quote.subscription_data_overrides[].end_behavior` to be optional
2162
-
2163
853
  ## 16.12.0 - 2024-09-18
2164
854
  * [#2177](https://github.com/stripe/stripe-node/pull/2177) Update generated code
2165
855
  * Add support for new value `international_transaction` on enum `Treasury.ReceivedDebit.failure_code`
@@ -2172,16 +862,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2172
862
  * Add support for `automatically_finalizes_at` on `Invoice`
2173
863
  * Add support for `state_sales_tax` on `Tax.Registration.country_options.us` and `Tax.RegistrationCreateParams.country_options.us`
2174
864
 
2175
- ## 16.12.0-beta.1 - 2024-09-13
2176
- * [#2170](https://github.com/stripe/stripe-node/pull/2170) Update generated code for beta
2177
- * Add support for new resources `Issuing.DisputeSettlementDetail` and `Issuing.Settlement`
2178
- * Add support for `list` and `retrieve` methods on resource `DisputeSettlementDetail`
2179
- * Remove support for `list` method on resource `QuotePhase`
2180
- * Add support for new value `rechnung` on enum `Checkout.SessionCreateParams.payment_method_types[]`
2181
- * Add support for new values `issuing_dispute_settlement_detail.created`, `issuing_dispute_settlement_detail.updated`, `issuing_settlement.created`, and `issuing_settlement.updated` on enum `Event.type`
2182
- * Add support for `settlement` on `Issuing.TransactionListParams` and `Issuing.Transaction`
2183
- * Add support for new values `issuing_dispute_settlement_detail.created`, `issuing_dispute_settlement_detail.updated`, `issuing_settlement.created`, and `issuing_settlement.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2184
-
2185
865
  ## 16.11.0 - 2024-09-12
2186
866
  * [#2171](https://github.com/stripe/stripe-node/pull/2171) Update generated code
2187
867
  * Add support for new resource `InvoiceRenderingTemplate`
@@ -2192,20 +872,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2192
872
  * Add support for new value `submitted` on enum `Issuing.Card.shipping.status`
2193
873
  * Change `TestHelpers.TestClock.status_details` to be required
2194
874
 
2195
- ## 16.11.0-beta.1 - 2024-09-05
2196
- * [#2162](https://github.com/stripe/stripe-node/pull/2162) Update generated code for beta
2197
- * Add support for new resources `Billing.MeterErrorReport` and `Terminal.ReaderCollectedData`
2198
- * Add support for `retrieve` method on resource `ReaderCollectedData`
2199
- * Add support for `recipients` on `AccountSessionCreateParams.components`
2200
- * Add support for new value `terminal_reader_collected_data_invalid` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
2201
- * Add support for new value `mb_way` on enum `Checkout.SessionCreateParams.payment_method_types[]`
2202
- * Add support for `business_name`, `email`, `phone`, and `tax_ids` on `Checkout.Session.collected_information`
2203
- * Add support for new value `billing.meter_error_report.triggered` on enum `Event.type`
2204
- * Add support for `regulatory_reporting_file` on `Issuing.CreditUnderwritingRecordCorrectParams`, `Issuing.CreditUnderwritingRecordCreateFromProactiveReviewParams`, `Issuing.CreditUnderwritingRecordReportDecisionParams`, and `Issuing.CreditUnderwritingRecord`
2205
- * Add support for new value `mb_way` on enums `PaymentLink.payment_method_types[]`, `PaymentLinkCreateParams.payment_method_types[]`, and `PaymentLinkUpdateParams.payment_method_types[]`
2206
- * Remove support for `rechnung` on `PaymentMethodUpdateParams`
2207
- * Add support for new value `billing.meter_error_report.triggered` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2208
-
2209
875
  ## 16.10.0 - 2024-09-05
2210
876
  * [#2158](https://github.com/stripe/stripe-node/pull/2158) Update generated code
2211
877
  * Add support for `subscription_item` and `subscription` on `Billing.AlertCreateParams.filter`
@@ -2221,26 +887,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2221
887
  * Change `Issuing.Card.shipping.address_validation` to be required
2222
888
  * Add support for `status_details` on `TestHelpers.TestClock`
2223
889
 
2224
- ## 16.9.0-beta.2 - 2024-08-22
2225
- * [#2159](https://github.com/stripe/stripe-node/pull/2159) Update generated code for beta
2226
- * Add support for `mb_way_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
2227
- * Add support for `mb_way` on `Charge.payment_method_details`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethod`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
2228
- * Add support for new value `mb_way` on enums `ConfirmationTokenCreateParams.testHelpers.payment_method_data.type`, `PaymentIntentConfirmParams.payment_method_data.type`, `PaymentIntentCreateParams.payment_method_data.type`, `PaymentIntentUpdateParams.payment_method_data.type`, `SetupIntentConfirmParams.payment_method_data.type`, `SetupIntentCreateParams.payment_method_data.type`, and `SetupIntentUpdateParams.payment_method_data.type`
2229
- * Add support for new value `mb_way` on enums `ConfirmationToken.payment_method_preview.type` and `PaymentMethod.type`
2230
- * Add support for new value `mb_way` on enums `CustomerListPaymentMethodsParams.type`, `PaymentMethodCreateParams.type`, and `PaymentMethodListParams.type`
2231
- * Remove support for values `accepted`, `partner_rejected`, and `submitted` from enum `Dispute.evidence_details.enhanced_eligibility.visa_compelling_evidence_3.status`
2232
- * Add support for new value `hr_oib` on enums `OrderCreateParams.tax_details.tax_ids[].type` and `OrderUpdateParams.tax_details.tax_ids[].type`
2233
- * Add support for new value `hr_oib` on enum `Order.tax_details.tax_ids[].type`
2234
- * Remove support for `phases` on `QuoteCreateParams` and `QuoteUpdateParams`
2235
- * Remove support for `from_schedule` on `QuoteCreateParams.subscription_data`
2236
-
2237
- ## 16.9.0-beta.1 - 2024-08-15
2238
- * [#2157](https://github.com/stripe/stripe-node/pull/2157) Update generated code for beta
2239
- * Add support for `capital_financing_application` and `capital_financing` on `AccountSessionCreateParams.components`
2240
- * Add support for `permissions` on `Checkout.SessionCreateParams` and `Checkout.Session`
2241
- * Add support for `collected_information` on `Checkout.SessionUpdateParams` and `Checkout.Session`
2242
- * Add support for `shipping_options` on `Checkout.SessionUpdateParams`
2243
-
2244
890
  ## 16.8.0 - 2024-08-15
2245
891
  * [#2155](https://github.com/stripe/stripe-node/pull/2155) Update generated code
2246
892
  * Add support for `authorization_code` on `Charge.payment_method_details.card`
@@ -2250,16 +896,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2250
896
  * Add support for `chips` on `Treasury.OutboundPayment.tracking_details.us_domestic_wire`, `Treasury.OutboundPaymentUpdateParams.testHelpers.tracking_details.us_domestic_wire`, `Treasury.OutboundTransfer.tracking_details.us_domestic_wire`, and `Treasury.OutboundTransferUpdateParams.testHelpers.tracking_details.us_domestic_wire`
2251
897
  * Change type of `Treasury.OutboundPayment.tracking_details.us_domestic_wire.imad` and `Treasury.OutboundTransfer.tracking_details.us_domestic_wire.imad` from `string` to `string | null`
2252
898
 
2253
- ## 16.8.0-beta.1 - 2024-08-12
2254
- * [#2148](https://github.com/stripe/stripe-node/pull/2148) Update generated code for beta
2255
- * Add support for `capital_financing_application` and `capital_financing` on `AccountSession.components`
2256
- * Add support for `payto` on `Checkout.Session.payment_method_options` and `Checkout.SessionCreateParams.payment_method_options`
2257
- * Add support for new value `payto` on enum `Checkout.SessionCreateParams.payment_method_types[]`
2258
- * Add support for new value `custom` on enums `Checkout.Session.ui_mode` and `Checkout.SessionCreateParams.ui_mode`
2259
- * ⚠️ Remove support for `risk_correlation_id` on `PaymentIntent.payment_method_options.rechnung`, `PaymentIntentConfirmParams.payment_method_options.rechnung`, `PaymentIntentCreateParams.payment_method_options.rechnung`, and `PaymentIntentUpdateParams.payment_method_options.rechnung`
2260
- * Add support for new value `payto` on enums `PaymentLink.payment_method_types[]`, `PaymentLinkCreateParams.payment_method_types[]`, and `PaymentLinkUpdateParams.payment_method_types[]`
2261
- * Change `QuoteLine.cancel_subscription_schedule` to be required
2262
-
2263
899
  ## 16.7.0 - 2024-08-08
2264
900
  * [#2147](https://github.com/stripe/stripe-node/pull/2147) Update generated code
2265
901
  * Add support for `activate`, `archive`, `create`, `deactivate`, `list`, and `retrieve` methods on resource `Billing.Alert`
@@ -2272,15 +908,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2272
908
  * Add support for new value `girocard` on enums `PaymentIntent.payment_method_options.card.network`, `PaymentIntentConfirmParams.payment_method_options.card.network`, `PaymentIntentCreateParams.payment_method_options.card.network`, `PaymentIntentUpdateParams.payment_method_options.card.network`, `SetupIntent.payment_method_options.card.network`, `SetupIntentConfirmParams.payment_method_options.card.network`, `SetupIntentCreateParams.payment_method_options.card.network`, `SetupIntentUpdateParams.payment_method_options.card.network`, `Subscription.payment_settings.payment_method_options.card.network`, `SubscriptionCreateParams.payment_settings.payment_method_options.card.network`, and `SubscriptionUpdateParams.payment_settings.payment_method_options.card.network`
2273
909
  * Add support for new value `financial_addresses.aba.forwarding` on enums `Treasury.FinancialAccount.active_features[]`, `Treasury.FinancialAccount.pending_features[]`, and `Treasury.FinancialAccount.restricted_features[]`
2274
910
 
2275
- ## 16.7.0-beta.1 - 2024-08-01
2276
- * [#2145](https://github.com/stripe/stripe-node/pull/2145) Update generated code for beta
2277
- * Add support for `attach_payment` method on resource `Invoice`
2278
- * Add support for `app_install` and `app_viewport` on `AccountSessionCreateParams.components`
2279
- * Remove support for `partner_rejected_details` on `Dispute.evidence_details.enhanced_eligibility.visa_compelling_evidence_3`
2280
- * Add support for `lines_invalid` on `Quote.status_details.stale.last_reason`
2281
- * Add support for new value `lines_invalid` on enum `Quote.status_details.stale.last_reason.type`
2282
- * Add support for `last_price_migration_error` on `SubscriptionSchedule` and `Subscription`
2283
-
2284
911
  ## 16.6.0 - 2024-08-01
2285
912
  * [#2144](https://github.com/stripe/stripe-node/pull/2144) Update generated code
2286
913
  * Add support for new resources `Billing.AlertTriggered` and `Billing.Alert`
@@ -2289,17 +916,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2289
916
  * Add support for new value `billing.alert.triggered` on enum `Event.type`
2290
917
  * Add support for new value `billing.alert.triggered` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2291
918
 
2292
- ## 16.6.0-beta.1 - 2024-07-25
2293
- * [#2137](https://github.com/stripe/stripe-node/pull/2137) Update generated code for beta
2294
- * Add support for new resources `Billing.AlertTriggered`, `Billing.Alert`, and `Tax.Association`
2295
- * Add support for `activate`, `archive`, `create`, `deactivate`, `list`, and `retrieve` methods on resource `Alert`
2296
- * Add support for `find` method on resource `Association`
2297
- * Add support for `capital` on `Account.settings`, `AccountCreateParams.settings`, and `AccountUpdateParams.settings`
2298
- * Add support for new values `issuing.account_closed_for_not_providing_business_model_clarification`, `issuing.account_closed_for_not_providing_url_clarification`, and `issuing.account_closed_for_not_providing_use_case_clarification` on enum `AccountNotice.reason`
2299
- * Add support for `async_workflows` on `PaymentIntentCaptureParams`, `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `PaymentIntentDecrementAuthorizationParams`, `PaymentIntentIncrementAuthorizationParams`, `PaymentIntentUpdateParams`, and `PaymentIntent`
2300
- * Add support for `payto` on `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, and `PaymentMethodConfiguration`
2301
- * Add support for `display_name` on `Treasury.FinancialAccountCreateParams`, `Treasury.FinancialAccountUpdateParams`, and `Treasury.FinancialAccount`
2302
-
2303
919
  ## 16.5.0 - 2024-07-25
2304
920
  * [#2143](https://github.com/stripe/stripe-node/pull/2143) Update generated code
2305
921
  * Add support for `tax_registrations` and `tax_settings` on `AccountSession.components` and `AccountSessionCreateParams.components`
@@ -2324,12 +940,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2324
940
  * Add support for new value `issuing_dispute.funds_rescinded` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2325
941
  * [#2136](https://github.com/stripe/stripe-node/pull/2136) Update changelog
2326
942
 
2327
- ## 16.4.0-beta.1 - 2024-07-11
2328
- * [#2128](https://github.com/stripe/stripe-node/pull/2128) Update generated code for beta
2329
- * Change `ConfirmationToken.payment_method_options` and `CustomerSession.components.payment_element` to be required
2330
- * Add support for new value `not_qualified` on enum `Dispute.evidence_details.enhanced_eligibility.visa_compelling_evidence_3.status`
2331
- * [#2134](https://github.com/stripe/stripe-node/pull/2134) Fix merge conflicts
2332
-
2333
943
  ## 16.3.0 - 2024-07-11
2334
944
  * [#2130](https://github.com/stripe/stripe-node/pull/2130) Update generated code
2335
945
  * ⚠️ Remove support for values `billing_policy_remote_function_response_invalid`, `billing_policy_remote_function_timeout`, `billing_policy_remote_function_unexpected_status_code`, and `billing_policy_remote_function_unreachable` from enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`.
@@ -2343,27 +953,12 @@ This release changes the pinned API version to 2025-05-28.preview.
2343
953
  * [#2132](https://github.com/stripe/stripe-node/pull/2132) check `hasOwnProperty` when using `for..in`
2344
954
  * [#2048](https://github.com/stripe/stripe-node/pull/2048) Add generateTestHeaderStringAsync function to Webhooks.ts
2345
955
 
2346
- ## 16.3.0-beta.1 - 2024-07-05
2347
- * [#2126](https://github.com/stripe/stripe-node/pull/2126) Update generated code for beta
2348
- * ⚠️ Remove support for `payment_method_update` on `CustomerSession.components.payment_element.features` and `CustomerSessionCreateParams.components.payment_element.features`. Users are expected to completely migrate from using `payment_method_update`.
2349
- * Add support for new resource `FinancialConnections.Institution`
2350
- * Add support for `list` and `retrieve` methods on resource `Institution`
2351
- * Add support for `institution` on `Checkout.Session.payment_method_options.us_bank_account.financial_connections.filters`, `FinancialConnections.Session.filters`, `FinancialConnections.SessionCreateParams.filters`, `Invoice.payment_settings.payment_method_options.us_bank_account.financial_connections.filters`, `InvoiceCreateParams.payment_settings.payment_method_options.us_bank_account.financial_connections.filters`, `InvoiceUpdateParams.payment_settings.payment_method_options.us_bank_account.financial_connections.filters`, `PaymentIntent.payment_method_options.us_bank_account.financial_connections.filters`, `PaymentIntentConfirmParams.payment_method_options.us_bank_account.financial_connections.filters`, `PaymentIntentCreateParams.payment_method_options.us_bank_account.financial_connections.filters`, `PaymentIntentUpdateParams.payment_method_options.us_bank_account.financial_connections.filters`, `SetupIntent.payment_method_options.us_bank_account.financial_connections.filters`, `SetupIntentConfirmParams.payment_method_options.us_bank_account.financial_connections.filters`, `SetupIntentCreateParams.payment_method_options.us_bank_account.financial_connections.filters`, `SetupIntentUpdateParams.payment_method_options.us_bank_account.financial_connections.filters`, `Subscription.payment_settings.payment_method_options.us_bank_account.financial_connections.filters`, `SubscriptionCreateParams.payment_settings.payment_method_options.us_bank_account.financial_connections.filters`, and `SubscriptionUpdateParams.payment_settings.payment_method_options.us_bank_account.financial_connections.filters`
2352
- * Add support for `payment_method_allow_redisplay_filters`, `payment_method_redisplay_limit`, `payment_method_redisplay`, and `payment_method_save_usage` on `CustomerSession.components.payment_element.features` and `CustomerSessionCreateParams.components.payment_element.features`
2353
- * Add support for new value `balance` on enums `FinancialConnections.Account.subscriptions[]`, `FinancialConnections.AccountSubscribeParams.features[]`, and `FinancialConnections.AccountUnsubscribeParams.features[]`
2354
-
2355
956
  ## 16.2.0 - 2024-07-05
2356
957
  * [#2125](https://github.com/stripe/stripe-node/pull/2125) Update generated code
2357
958
  * Add support for `add_lines`, `remove_lines`, and `update_lines` methods on resource `Invoice`
2358
959
  * Add support for new value `payment_intent_fx_quote_invalid` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
2359
960
  * Add support for `posted_at` on `Tax.TransactionCreateFromCalculationParams` and `Tax.Transaction`
2360
961
 
2361
- ## 16.2.0-beta.1 - 2024-06-27
2362
- * [#2110](https://github.com/stripe/stripe-node/pull/2110) Update generated code for beta
2363
- * Remove support for `payment_method_set_as_default` on `CustomerSession.components.payment_element.features` and `CustomerSessionCreateParams.components.payment_element.features`
2364
- * Add support for new value `ch_uid` on enums `OrderCreateParams.tax_details.tax_ids[].type` and `OrderUpdateParams.tax_details.tax_ids[].type`
2365
- * Add support for new value `ch_uid` on enum `Order.tax_details.tax_ids[].type`
2366
-
2367
962
  ## 16.1.0 - 2024-06-27
2368
963
  * [#2120](https://github.com/stripe/stripe-node/pull/2120) Update generated code
2369
964
  * Add support for `filters` on `Checkout.Session.payment_method_options.us_bank_account.financial_connections`, `Invoice.payment_settings.payment_method_options.us_bank_account.financial_connections`, `InvoiceCreateParams.payment_settings.payment_method_options.us_bank_account.financial_connections`, `InvoiceUpdateParams.payment_settings.payment_method_options.us_bank_account.financial_connections`, `PaymentIntent.payment_method_options.us_bank_account.financial_connections`, `PaymentIntentConfirmParams.payment_method_options.us_bank_account.financial_connections`, `PaymentIntentCreateParams.payment_method_options.us_bank_account.financial_connections`, `PaymentIntentUpdateParams.payment_method_options.us_bank_account.financial_connections`, `SetupIntent.payment_method_options.us_bank_account.financial_connections`, `SetupIntentConfirmParams.payment_method_options.us_bank_account.financial_connections`, `SetupIntentCreateParams.payment_method_options.us_bank_account.financial_connections`, `SetupIntentUpdateParams.payment_method_options.us_bank_account.financial_connections`, `Subscription.payment_settings.payment_method_options.us_bank_account.financial_connections`, `SubscriptionCreateParams.payment_settings.payment_method_options.us_bank_account.financial_connections`, and `SubscriptionUpdateParams.payment_settings.payment_method_options.us_bank_account.financial_connections`
@@ -2419,11 +1014,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2419
1014
  * Change type of `PaymentMethodCreateParams.card` from `PaymentMethodCreateParams.Card1 | PaymentMethodCreateParams.Card2` to `PaymentMethodCreateParams.Card` where the new Card is a union of all the properties of Card1 and Card2
2420
1015
  * Change type of `SetupIntentConfirmParams.mandate_data` from `Stripe.Emptyable<SetupIntentConfirmParams.MandateData1 | SetupIntentConfirmParams.MandateData2>` to `Stripe.Emptyable<SetupIntentConfirmParams.MandateData>` where the new MandateData is a union of all the properties of MandateData1 and MandateData2
2421
1016
 
2422
- ## 15.12.0-beta.1 - 2024-06-13
2423
- * [#2103](https://github.com/stripe/stripe-node/pull/2103) Update generated code for beta
2424
- * Add support for new value `de_stn` on enums `OrderCreateParams.tax_details.tax_ids[].type` and `OrderUpdateParams.tax_details.tax_ids[].type`
2425
- * Add support for new value `de_stn` on enum `Order.tax_details.tax_ids[].type`
2426
-
2427
1017
  ## 15.11.0 - 2024-06-13
2428
1018
  * [#2102](https://github.com/stripe/stripe-node/pull/2102) Update generated code
2429
1019
  * Add support for `multibanco_payments` and `twint_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
@@ -2437,19 +1027,11 @@ This release changes the pinned API version to 2025-05-28.preview.
2437
1027
  * Add support for `multibanco_display_details` on `PaymentIntent.next_action`
2438
1028
  * Add support for `invoice_settings` on `Subscription`
2439
1029
 
2440
- ## 15.11.0-beta.1 - 2024-06-06
2441
- * [#2098](https://github.com/stripe/stripe-node/pull/2098) Update generated code for beta
2442
- * Add support for `twint` on `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_options`, and `PaymentIntentUpdateParams.payment_method_options`
2443
-
2444
1030
  ## 15.10.0 - 2024-06-06
2445
1031
  * [#2101](https://github.com/stripe/stripe-node/pull/2101) Update generated code
2446
1032
  * Add support for `gb_bank_transfer_payments`, `jp_bank_transfer_payments`, `mx_bank_transfer_payments`, `sepa_bank_transfer_payments`, and `us_bank_transfer_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
2447
1033
  * Add support for new value `swish` on enums `Invoice.payment_settings.payment_method_types[]`, `InvoiceCreateParams.payment_settings.payment_method_types[]`, `InvoiceUpdateParams.payment_settings.payment_method_types[]`, `Subscription.payment_settings.payment_method_types[]`, `SubscriptionCreateParams.payment_settings.payment_method_types[]`, and `SubscriptionUpdateParams.payment_settings.payment_method_types[]`
2448
1034
 
2449
- ## 15.10.0-beta.1 - 2024-05-30
2450
- * [#2094](https://github.com/stripe/stripe-node/pull/2094) Update generated code for beta
2451
- * Add support for new values `en-RO` and `ro-RO` on enums `OrderCreateParams.payment.settings.payment_method_options.klarna.preferred_locale` and `OrderUpdateParams.payment.settings.payment_method_options.klarna.preferred_locale`
2452
-
2453
1035
  ## 15.9.0 - 2024-05-30
2454
1036
  * [#2095](https://github.com/stripe/stripe-node/pull/2095) Update generated code
2455
1037
  * Add support for new value `verification_requires_additional_proof_of_registration` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `BankAccount.future_requirements.errors[].code`, and `BankAccount.requirements.errors[].code`
@@ -2460,19 +1042,12 @@ This release changes the pinned API version to 2025-05-28.preview.
2460
1042
  * Add support for new values `en-RO` and `ro-RO` on enums `PaymentIntentConfirmParams.payment_method_options.klarna.preferred_locale`, `PaymentIntentCreateParams.payment_method_options.klarna.preferred_locale`, and `PaymentIntentUpdateParams.payment_method_options.klarna.preferred_locale`
2461
1043
  * Add support for new values `issuing_personalization_design.activated`, `issuing_personalization_design.deactivated`, `issuing_personalization_design.rejected`, and `issuing_personalization_design.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2462
1044
 
2463
- ## 15.9.0-beta.1 - 2024-05-23
2464
- * [#2093](https://github.com/stripe/stripe-node/pull/2093) Update generated code for beta
2465
- * Change `CreditNoteCreateParams.refunds[].refund`, `CreditNotePreviewLinesParams.refunds[].refund`, and `CreditNotePreviewParams.refunds[].refund` to be optional
2466
-
2467
1045
  ## 15.8.0 - 2024-05-23
2468
1046
  * [#2092](https://github.com/stripe/stripe-node/pull/2092) Update generated code
2469
1047
  * Add support for `external_account_collection` on `AccountSession.components.balances.features`, `AccountSession.components.payouts.features`, `AccountSessionCreateParams.components.balances.features`, and `AccountSessionCreateParams.components.payouts.features`
2470
1048
  * Add support for new value `terminal_reader_invalid_location_for_payment` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
2471
1049
  * Add support for `payment_method_remove` on `Checkout.Session.saved_payment_method_options`
2472
1050
 
2473
- ## 15.8.0-beta.1 - 2024-05-16
2474
- * [#2087](https://github.com/stripe/stripe-node/pull/2087) Update generated code for beta
2475
-
2476
1051
  ## 15.7.0 - 2024-05-16
2477
1052
  * [#2088](https://github.com/stripe/stripe-node/pull/2088) Update generated code
2478
1053
  * Add support for `fee_source` on `ApplicationFee`
@@ -2490,10 +1065,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2490
1065
  * Add support for `stripe_s700` on `Terminal.ConfigurationCreateParams`, `Terminal.ConfigurationUpdateParams`, and `Terminal.Configuration`
2491
1066
  * Change `Treasury.OutboundPayment.tracking_details` and `Treasury.OutboundTransfer.tracking_details` to be required
2492
1067
 
2493
- ## 15.7.0-beta.1 - 2024-05-09
2494
- * [#2079](https://github.com/stripe/stripe-node/pull/2079) Update generated code for beta
2495
- * No new beta features. Merging changes from the main branch.
2496
-
2497
1068
  ## 15.6.0 - 2024-05-09
2498
1069
  * [#2086](https://github.com/stripe/stripe-node/pull/2086) Update generated code
2499
1070
  * Remove support for `pending_invoice_items_behavior` on `SubscriptionCreateParams`
@@ -2507,18 +1078,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2507
1078
  * Add support for new values `treasury.outbound_payment.tracking_details_updated` and `treasury.outbound_transfer.tracking_details_updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2508
1079
  * [#2085](https://github.com/stripe/stripe-node/pull/2085) Remove unnecessary pointer to description in deprecation message
2509
1080
 
2510
- ## 15.6.0-beta.1 - 2024-05-02
2511
- * [#2073](https://github.com/stripe/stripe-node/pull/2073) Update generated code for beta
2512
- * Add support for `rechnung_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
2513
- * Add support for `rechnung` on `Charge.payment_method_details`, `ConfirmationToken.payment_method_preview`, `ConfirmationTokenCreateParams.testHelpers.payment_method_data`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethodUpdateParams`, `PaymentMethod`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
2514
- * Add support for `multibanco` on `Checkout.Session.payment_method_options` and `Checkout.SessionCreateParams.payment_method_options`
2515
- * Add support for new value `multibanco` on enum `Checkout.SessionCreateParams.payment_method_types[]`
2516
- * Add support for new value `rechnung` on enums `ConfirmationTokenCreateParams.testHelpers.payment_method_data.type`, `PaymentIntentConfirmParams.payment_method_data.type`, `PaymentIntentCreateParams.payment_method_data.type`, `PaymentIntentUpdateParams.payment_method_data.type`, `SetupIntentConfirmParams.payment_method_data.type`, `SetupIntentCreateParams.payment_method_data.type`, and `SetupIntentUpdateParams.payment_method_data.type`
2517
- * Add support for new value `rechnung` on enums `ConfirmationToken.payment_method_preview.type` and `PaymentMethod.type`
2518
- * Add support for new value `rechnung` on enums `CustomerListPaymentMethodsParams.type`, `PaymentMethodCreateParams.type`, and `PaymentMethodListParams.type`
2519
- * Change `GiftCards.Card.code` and `GiftCards.Card.transactions` to be optional
2520
- * Change `Tax.Calculation.ship_from_details` and `Tax.Transaction.ship_from_details` to be required
2521
-
2522
1081
  ## 15.5.0 - 2024-05-02
2523
1082
  * [#2072](https://github.com/stripe/stripe-node/pull/2072) Update generated code
2524
1083
  * Add support for new value `shipping_address_invalid` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
@@ -2535,11 +1094,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2535
1094
  - Mark as deprecated the `persistent_token` property on `ConfirmationToken.PaymentMethodPreview.Link`, `PaymentIntent.PaymentMethodOptions.Link`, `PaymentIntentResource.PaymentMethodOptions.Link`, `PaymentMethod.Link.persistent_token`. `SetupIntents.PaymentMethodOptions.Card.Link.persistent_token`, `SetupIntentsResource.persistent_token`. This is a legacy parameter that no longer has any function.
2536
1095
  * [#2074](https://github.com/stripe/stripe-node/pull/2074) Add a more explicit comment on `limit` param in `autoPagingToArray`
2537
1096
 
2538
- ## 15.5.0-beta.1 - 2024-04-25
2539
- * [#2070](https://github.com/stripe/stripe-node/pull/2070) Update generated code for beta
2540
- * Add support for `payment_method_settings` on `AccountSessionCreateParams.components`
2541
- * Add support for `cancel_subscription_schedule` on `QuoteCreateParams.lines[]`, `QuoteLine`, and `QuoteUpdateParams.lines[]`
2542
-
2543
1097
  ## 15.4.0 - 2024-04-25
2544
1098
  * [#2071](https://github.com/stripe/stripe-node/pull/2071) Update generated code
2545
1099
  * Add support for `setup_future_usage` on `Checkout.Session.payment_method_options.amazon_pay`, `Checkout.Session.payment_method_options.revolut_pay`, `PaymentIntent.payment_method_options.amazon_pay`, and `PaymentIntent.payment_method_options.revolut_pay`
@@ -2552,12 +1106,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2552
1106
  * Add support for `mobilepay` on `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, and `PaymentMethodConfiguration`
2553
1107
  * [#2061](https://github.com/stripe/stripe-node/pull/2061) Make cloudflare package export
2554
1108
 
2555
- ## 15.4.0-beta.1 - 2024-04-18
2556
- * [#2065](https://github.com/stripe/stripe-node/pull/2065) Update generated code for beta
2557
- * Add support for `capital_overview`, `tax_registrations`, and `tax_settings` on `AccountSessionCreateParams.components`
2558
- * Add support for `external_account_collection` on `AccountSessionCreateParams.components.financial_account.features`
2559
- * Add support for `subscription_trial_from_plan` on `InvoiceUpcomingLinesParams` and `InvoiceUpcomingParams`
2560
-
2561
1109
  ## 15.3.0 - 2024-04-18
2562
1110
  * [#2069](https://github.com/stripe/stripe-node/pull/2069) Update generated code
2563
1111
  * Add support for `create_preview` method on resource `Invoice`
@@ -2582,19 +1130,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2582
1130
  * Add support for `swish` on `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, and `PaymentMethodConfiguration`
2583
1131
  * Add support for new value `entitlements.active_entitlement_summary.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2584
1132
 
2585
- ## 15.2.0-beta.1 - 2024-04-11
2586
- * [#2058](https://github.com/stripe/stripe-node/pull/2058) Update generated code for beta
2587
- * Add support for `retrieve` method on resources `Entitlements.ActiveEntitlement` and `Entitlements.Feature`
2588
- * Add support for `fees`, `losses`, `requirement_collection`, and `stripe_dashboard` on `AccountCreateParams.controller`
2589
- * Change type of `Entitlements.Feature.metadata` from `map(string: string) | null` to `map(string: string)`
2590
- * Change `FinancialConnections.Account.ownership_refresh.next_refresh_available_at` to be required
2591
- * Add support for new values `bh_vat`, `kz_bin`, `ng_tin`, and `om_vat` on enums `InvoiceCreatePreviewParams.customer_details.tax_ids[].type`, `OrderCreateParams.tax_details.tax_ids[].type`, and `OrderUpdateParams.tax_details.tax_ids[].type`
2592
- * Add support for new values `bh_vat`, `kz_bin`, `ng_tin`, and `om_vat` on enum `Order.tax_details.tax_ids[].type`
2593
- * Add support for `hosted_voucher_url` on `PaymentIntent.next_action.multibanco_display_details`
2594
- * Add support for `toggles` on `Terminal.Reader.action.collect_inputs.inputs[]` and `Terminal.ReaderCollectInputsParams.inputs[]`
2595
- * Add support for new values `email`, `numeric`, `phone`, and `text` on enum `Terminal.ReaderCollectInputsParams.inputs[].type`
2596
- * Add support for `email`, `numeric`, `phone`, and `text` on `Terminal.Reader.action.collect_inputs.inputs[]`
2597
-
2598
1133
  ## 15.1.0 - 2024-04-11
2599
1134
  * [#2062](https://github.com/stripe/stripe-node/pull/2062) Update generated code
2600
1135
  * Add support for `account_management` and `notification_banner` on `AccountSession.components` and `AccountSessionCreateParams.components`
@@ -2673,14 +1208,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2673
1208
  * Add support for `event_name` on `Billing.MeterEventAdjustmentCreateParams` and `Billing.MeterEventAdjustment`
2674
1209
  * Add support for `cancel` and `type` on `Billing.MeterEventAdjustment`
2675
1210
 
2676
- ## 14.25.0-beta.1 - 2024-04-04
2677
- * [#2054](https://github.com/stripe/stripe-node/pull/2054) Update generated code for beta
2678
- * Add support for `update` method on resource `Entitlements.Feature`
2679
- * Add support for `risk_controls` on `AccountCreateParams`, `AccountUpdateParams`, and `Account`
2680
- * Change `Discount.subscription_item`, `QuoteLine.actions[].add_discount`, `QuoteLine.actions[].add_item.discounts`, `QuoteLine.actions[].remove_discount`, `QuoteLine.actions[].set_discounts`, `QuoteLine.actions[].set_items[].discounts`, `Subscription.discounts`, `SubscriptionItem.discounts`, `SubscriptionSchedule.phases[].add_invoice_items[].discounts`, `SubscriptionSchedule.phases[].discounts`, and `SubscriptionSchedule.phases[].items[].discounts` to be required
2681
- * Add support for `promotion_code` on `InvoiceAddLinesParams.lines[].discounts[]`, `InvoiceUpdateLinesParams.lines[].discounts[]`, `QuoteCreateParams.line_items[].discounts[]`, `QuoteCreateParams.lines[].actions[].add_discount`, `QuoteCreateParams.phases[].line_items[].discounts[]`, `QuoteUpdateParams.line_items[].discounts[]`, `QuoteUpdateParams.lines[].actions[].add_discount`, and `QuoteUpdateParams.phases[].line_items[].discounts[]`
2682
- * Change type of `QuoteLine.actions[].add_item.discounts`, `QuoteLine.actions[].set_items[].discounts`, `SubscriptionSchedule.phases[].add_invoice_items[].discounts`, `SubscriptionSchedule.phases[].discounts`, and `SubscriptionSchedule.phases[].items[].discounts` from `array(DiscountsResourceStackableDiscount) | null` to `array(DiscountsResourceStackableDiscount)`
2683
- * Change type of `Subscription.discounts` and `SubscriptionItem.discounts` from `array(expandable(Discount)) | null` to `array(expandable(Discount))`
2684
1211
 
2685
1212
  ## 14.24.0 - 2024-04-04
2686
1213
  * [#2053](https://github.com/stripe/stripe-node/pull/2053) Update generated code
@@ -2702,11 +1229,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2702
1229
  * Add support for `card_present` on `SetupIntent.payment_method_options`, `SetupIntentConfirmParams.payment_method_options`, `SetupIntentCreateParams.payment_method_options`, and `SetupIntentUpdateParams.payment_method_options`
2703
1230
  * Add support for new value `mobile_phone_reader` on enums `Terminal.Reader.device_type` and `Terminal.ReaderListParams.device_type`
2704
1231
 
2705
- ## 14.24.0-beta.1 - 2024-03-28
2706
- * [#2047](https://github.com/stripe/stripe-node/pull/2047) Update generated code for beta
2707
- * Add support for `financial_account_transactions`, `financial_account`, `issuing_card`, and `issuing_cards_list` on `AccountSessionCreateParams.components`
2708
- * Remove support for `subscription_billing_cycle_anchor`, `subscription_cancel_at_period_end`, `subscription_cancel_at`, `subscription_cancel_now`, `subscription_default_tax_rates`, `subscription_items`, `subscription_prebilling`, `subscription_proration_behavior`, `subscription_proration_date`, `subscription_resume_at`, `subscription_start_date`, and `subscription_trial_end` on `InvoiceCreatePreviewParams`
2709
-
2710
1232
  ## 14.23.0 - 2024-03-28
2711
1233
  * [#2046](https://github.com/stripe/stripe-node/pull/2046) Update generated code
2712
1234
  * Add support for new resources `Billing.MeterEventAdjustment`, `Billing.MeterEvent`, and `Billing.Meter`
@@ -2720,23 +1242,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2720
1242
  * Add support for `meter` on `PlanCreateParams`, `Plan`, `Price.recurring`, `PriceCreateParams.recurring`, and `PriceListParams.recurring`
2721
1243
  * [#2045](https://github.com/stripe/stripe-node/pull/2045) esbuild test project fixes
2722
1244
 
2723
- ## 14.23.0-beta.1 - 2024-03-21
2724
- * [#2039](https://github.com/stripe/stripe-node/pull/2039) Update generated code for beta
2725
- * Add support for new resources `Entitlements.ActiveEntitlementSummary` and `Entitlements.ActiveEntitlement`
2726
- * Add support for `list` method on resource `ActiveEntitlement`
2727
- * Add support for `mobilepay` on `ConfirmationToken.payment_method_preview` and `ConfirmationTokenCreateParams.testHelpers.payment_method_data`
2728
- * Add support for new value `mobilepay` on enum `ConfirmationTokenCreateParams.testHelpers.payment_method_data.type`
2729
- * Add support for `use_stripe_sdk` on `ConfirmationToken`
2730
- * Remove support for `payment_method` on `ConfirmationToken`
2731
- * Change type of `ConfirmationToken.mandate_data` from `ConfirmationTokensResourceMandateData` to `ConfirmationTokensResourceMandateData | null`
2732
- * Add support for new value `mobilepay` on enum `ConfirmationToken.payment_method_preview.type`
2733
- * Add support for `metadata` on `Entitlements.FeatureCreateParams` and `Entitlements.Feature`
2734
- * Add support for `active` on `Entitlements.Feature`
2735
- * Add support for new value `entitlements.active_entitlement_summary.updated` on enum `Event.type`
2736
- * Remove support for value `customer.entitlement_summary.updated` from enum `Event.type`
2737
- * Add support for new value `entitlements.active_entitlement_summary.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2738
- * Remove support for value `customer.entitlement_summary.updated` from enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2739
-
2740
1245
  ## 14.22.0 - 2024-03-21
2741
1246
  * [#2040](https://github.com/stripe/stripe-node/pull/2040) Update generated code
2742
1247
  * Add support for new resources `ConfirmationToken` and `Forwarding.Request`
@@ -2754,18 +1259,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2754
1259
  * Add support for `payout` on `Treasury.ReceivedDebit.linked_flows`
2755
1260
  * [#2043](https://github.com/stripe/stripe-node/pull/2043) Don't mutate error.type during minification
2756
1261
 
2757
- ## 14.22.0-beta.1 - 2024-03-14
2758
- * [#2036](https://github.com/stripe/stripe-node/pull/2036) Update generated code for beta
2759
- * Add support for new resources `Billing.MeterEventAdjustment`, `Billing.MeterEvent`, and `Billing.Meter`
2760
- * Add support for `create`, `deactivate`, `list`, `reactivate`, `retrieve`, and `update` methods on resource `Meter`
2761
- * Add support for `create` method on resources `MeterEventAdjustment` and `MeterEvent`
2762
- * Add support for `create` test helper method on resource `ConfirmationToken`
2763
- * Add support for `add_lines`, `remove_lines`, and `update_lines` methods on resource `Invoice`
2764
- * Add support for `multibanco` payment method throughout the API.
2765
- * Add support for `second_line` on `Issuing.PhysicalBundle.features`
2766
- * Add support for `multibanco_display_details` on `PaymentIntent.next_action`
2767
- * Add support for `meter` on `PlanCreateParams`, `Plan`, `Price.recurring`, `PriceCreateParams.recurring`, and `PriceListParams.recurring`
2768
-
2769
1262
  ## 14.21.0 - 2024-03-14
2770
1263
  * [#2035](https://github.com/stripe/stripe-node/pull/2035) Update generated code
2771
1264
  * Add support for new resources `Issuing.PersonalizationDesign` and `Issuing.PhysicalBundle`
@@ -2775,10 +1268,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2775
1268
  * Change type of `SubscriptionCreateParams.application_fee_percent` and `SubscriptionUpdateParams.application_fee_percent` from `number` to `emptyStringable(number)`
2776
1269
  * Add support for `sepa_debit` on `Subscription.payment_settings.payment_method_options`, `SubscriptionCreateParams.payment_settings.payment_method_options`, and `SubscriptionUpdateParams.payment_settings.payment_method_options`
2777
1270
 
2778
- ## 14.21.0-beta.1 - 2024-03-07
2779
- * [#2032](https://github.com/stripe/stripe-node/pull/2032) Update generated code for beta
2780
- * Add support for new value `billing_period_end` on enums `QuoteCreateParams.lines[].ends_at.type`, `QuoteLine.ends_at.type`, and `QuoteUpdateParams.lines[].ends_at.type`
2781
-
2782
1271
  ## 14.20.0 - 2024-03-07
2783
1272
  * [#2033](https://github.com/stripe/stripe-node/pull/2033) Update generated code
2784
1273
  * Add support for `documents` on `AccountSession.components` and `AccountSessionCreateParams.components`
@@ -2786,16 +1275,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2786
1275
  * Add support for `created` on `CreditNoteListParams`
2787
1276
  * Add support for `sepa_debit` on `Invoice.payment_settings.payment_method_options`, `InvoiceCreateParams.payment_settings.payment_method_options`, and `InvoiceUpdateParams.payment_settings.payment_method_options`
2788
1277
 
2789
- ## 14.20.0-beta.1 - 2024-02-29
2790
- * [#2026](https://github.com/stripe/stripe-node/pull/2026) Update generated code for beta
2791
- * Remove support for resource `Entitlements.Event`
2792
- * Change type of `ConfirmationToken.mandate_data` from `ConfirmationTokensResourceMandateData | null` to `ConfirmationTokensResourceMandateData`
2793
- * Change `ConfirmationToken.mandate_data`, `ConfirmationToken.payment_method_options`, and `ConfirmationToken.payment_method` to be optional
2794
- * Remove support for `quantity` and `type` on `Entitlements.FeatureCreateParams` and `Entitlements.Feature`
2795
- * Add support for `livemode` on `Issuing.PersonalizationDesign`
2796
- * Add support for `application_fee_amount`, `description`, `metadata`, and `transfer_data` on `PaymentIntentDecrementAuthorizationParams`
2797
- * Add support for `enable_customer_cancellation` on `Terminal.Reader.action.collect_payment_method.collect_config` and `Terminal.ReaderCollectPaymentMethodParams.collect_config`
2798
-
2799
1278
  ## 14.19.0 - 2024-02-29
2800
1279
  * [#2029](https://github.com/stripe/stripe-node/pull/2029) Update generated code
2801
1280
  * Change `Identity.VerificationReport.type`, `SubscriptionSchedule.default_settings.invoice_settings.account_tax_ids`, `SubscriptionSchedule.phases[].invoice_settings.account_tax_ids`, and `TaxId.owner` to be required
@@ -2806,9 +1285,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2806
1285
  * Add support for `payment_method` on `TokenCreateParams.bank_account`
2807
1286
  * [#2027](https://github.com/stripe/stripe-node/pull/2027) vscode settings: true -> "explicit"
2808
1287
 
2809
- ## 14.19.0-beta.1 - 2024-02-22
2810
- * [#2023](https://github.com/stripe/stripe-node/pull/2023) Update generated code for beta
2811
-
2812
1288
  ## 14.18.0 - 2024-02-22
2813
1289
  * [#2022](https://github.com/stripe/stripe-node/pull/2022) Update generated code
2814
1290
  * Add support for `client_reference_id` on `Identity.VerificationReportListParams`, `Identity.VerificationReport`, `Identity.VerificationSessionCreateParams`, `Identity.VerificationSessionListParams`, and `Identity.VerificationSession`
@@ -2864,16 +1340,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2864
1340
  * [#2021](https://github.com/stripe/stripe-node/pull/2021) Add TaxIds API
2865
1341
  * Add support for `create`, `del`, `list`, and `retrieve` methods on resource `TaxId`
2866
1342
 
2867
- ## 14.18.0-beta.1 - 2024-02-16
2868
- * [#2017](https://github.com/stripe/stripe-node/pull/2017) Update generated code for beta
2869
- * Add support for `payto` and `twint` payment method throughout the API
2870
- * Add support for `decrement_authorization` method on resource `PaymentIntent`
2871
- * Add support for `decremental_authorization` on `Charge.payment_method_details.card`
2872
- * Add support for `display_brand` on `ConfirmationToken.payment_method_preview.card`
2873
- * Add support for new value `no_voec` on enums `InvoiceCreatePreviewParams.customer_details.tax_ids[].type`, `OrderCreateParams.tax_details.tax_ids[].type`, and `OrderUpdateParams.tax_details.tax_ids[].type`
2874
- * Add support for new value `no_voec` on enum `Order.tax_details.tax_ids[].type`
2875
- * Add support for `request_decremental_authorization` on `PaymentIntent.payment_method_options.card`, `PaymentIntentConfirmParams.payment_method_options.card`, `PaymentIntentCreateParams.payment_method_options.card`, and `PaymentIntentUpdateParams.payment_method_options.card`
2876
-
2877
1343
  ## 14.17.0 - 2024-02-15
2878
1344
  * [#2018](https://github.com/stripe/stripe-node/pull/2018) Update generated code
2879
1345
  * Add support for `networks` on `Card`, `PaymentMethodCreateParams.card`, `PaymentMethodUpdateParams.card`, and `TokenCreateParams.card`
@@ -2883,11 +1349,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2883
1349
  * Add support for `display_brand` on `PaymentMethod.card`
2884
1350
  * Add support for new value `financial_connections.account.refreshed_ownership` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2885
1351
 
2886
- ## 14.17.0-beta.1 - 2024-02-08
2887
- * [#2014](https://github.com/stripe/stripe-node/pull/2014) Update generated code for beta
2888
- * Add support for `payment_method_options` on `ConfirmationToken`
2889
- * Add support for new value `velobank` on enum `ConfirmationToken.payment_method_preview.p24.bank`
2890
-
2891
1352
  ## 14.16.0 - 2024-02-08
2892
1353
  * [#2012](https://github.com/stripe/stripe-node/pull/2012) Update generated code
2893
1354
  * Add support for `invoices` on `Account.settings` and `AccountUpdateParams.settings`
@@ -2905,37 +1366,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2905
1366
  * [#2009](https://github.com/stripe/stripe-node/pull/2009) Remove https check for *.stripe.com
2906
1367
  * Stops throwing exceptions if `protocol: 'http'` is set for requests to `api.stripe.com`.
2907
1368
 
2908
- ## 14.15.0-beta.2 - 2024-02-01
2909
- * [#2002](https://github.com/stripe/stripe-node/pull/2002) Update generated code for beta
2910
- * Add support for new resources `Entitlements.Event` and `Entitlements.Feature`
2911
- * Add support for `create` method on resource `Event`
2912
- * Add support for `create` and `list` methods on resource `Feature`
2913
- * Add support for `swish` on `ConfirmationToken.payment_method_preview`
2914
- * Add support for new value `swish` on enum `ConfirmationToken.payment_method_preview.type`
2915
- * Add support for new value `customer.entitlement_summary.updated` on enum `Event.type`
2916
- * Add support for `account_tax_ids` on `InvoiceCreatePreviewParams.schedule_details.phases[].invoice_settings`, `InvoiceUpcomingLinesParams.schedule_details.phases[].invoice_settings`, and `InvoiceUpcomingParams.schedule_details.phases[].invoice_settings`
2917
- * Add support for `feature` on `Product.features[]`, `ProductCreateParams.features[]`, and `ProductUpdateParams.features[]`
2918
- * Add support for new value `customer.entitlement_summary.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
2919
-
2920
- ## 14.15.0-beta.1 - 2024-01-25
2921
- * [#1997](https://github.com/stripe/stripe-node/pull/1997) Update generated code for beta
2922
- * Add support for `create_preview` method on resource `Invoice`
2923
- * Add support for `charged_off_at` on `Capital.FinancingOffer`
2924
- * Change `Checkout.Session.automatic_tax.liability`, `Checkout.Session.invoice_creation.invoice_data.issuer`, `PaymentLink.automatic_tax.liability`, `PaymentLink.invoice_creation.invoice_data.issuer`, `PaymentLink.subscription_data.invoice_settings.issuer`, `PaymentLink.subscription_data.invoice_settings`, `Quote.automatic_tax.liability`, `Quote.invoice_settings.issuer`, `SubscriptionSchedule.default_settings.automatic_tax.liability`, `SubscriptionSchedule.default_settings.invoice_settings.issuer`, `SubscriptionSchedule.phases[].automatic_tax.liability`, and `SubscriptionSchedule.phases[].invoice_settings.issuer` to be required
2925
- * Add support for new values `disabled` and `enabled` on enums `CustomerSession.components.payment_element.features.payment_method_remove`, `CustomerSession.components.payment_element.features.payment_method_save`, `CustomerSession.components.payment_element.features.payment_method_set_as_default`, `CustomerSession.components.payment_element.features.payment_method_update`, `CustomerSessionCreateParams.components.payment_element.features.payment_method_remove`, `CustomerSessionCreateParams.components.payment_element.features.payment_method_save`, `CustomerSessionCreateParams.components.payment_element.features.payment_method_set_as_default`, and `CustomerSessionCreateParams.components.payment_element.features.payment_method_update`
2926
- * Remove support for values `auto` and `never` from enums `CustomerSession.components.payment_element.features.payment_method_remove`, `CustomerSession.components.payment_element.features.payment_method_save`, `CustomerSession.components.payment_element.features.payment_method_set_as_default`, `CustomerSession.components.payment_element.features.payment_method_update`, `CustomerSessionCreateParams.components.payment_element.features.payment_method_remove`, `CustomerSessionCreateParams.components.payment_element.features.payment_method_save`, `CustomerSessionCreateParams.components.payment_element.features.payment_method_set_as_default`, and `CustomerSessionCreateParams.components.payment_element.features.payment_method_update`
2927
- * Add support for `enhanced_evidence` on `Dispute.evidence` and `DisputeUpdateParams.evidence`
2928
- * Add support for `enhanced_eligibility_types` on `Dispute`
2929
- * Add support for `enhanced_eligibility` on `Dispute.evidence_details`
2930
- * Add support for `promotion_code` on `InvoiceUpcomingLinesParams.schedule_details.amendments[].discount_actions[].add`, `InvoiceUpcomingLinesParams.schedule_details.amendments[].discount_actions[].remove`, `InvoiceUpcomingLinesParams.schedule_details.amendments[].discount_actions[].set`, `InvoiceUpcomingLinesParams.schedule_details.amendments[].item_actions[].add.discounts[]`, `InvoiceUpcomingLinesParams.schedule_details.amendments[].item_actions[].set.discounts[]`, `InvoiceUpcomingLinesParams.schedule_details.phases[].add_invoice_items[].discounts[]`, `InvoiceUpcomingLinesParams.schedule_details.phases[].discounts[]`, `InvoiceUpcomingLinesParams.schedule_details.phases[].items[].discounts[]`, `InvoiceUpcomingLinesParams.subscription_details.items[].discounts[]`, `InvoiceUpcomingLinesParams.subscription_items[].discounts[]`, `InvoiceUpcomingParams.schedule_details.amendments[].discount_actions[].add`, `InvoiceUpcomingParams.schedule_details.amendments[].discount_actions[].remove`, `InvoiceUpcomingParams.schedule_details.amendments[].discount_actions[].set`, `InvoiceUpcomingParams.schedule_details.amendments[].item_actions[].add.discounts[]`, `InvoiceUpcomingParams.schedule_details.amendments[].item_actions[].set.discounts[]`, `InvoiceUpcomingParams.schedule_details.phases[].add_invoice_items[].discounts[]`, `InvoiceUpcomingParams.schedule_details.phases[].discounts[]`, `InvoiceUpcomingParams.schedule_details.phases[].items[].discounts[]`, `InvoiceUpcomingParams.subscription_details.items[].discounts[]`, `InvoiceUpcomingParams.subscription_items[].discounts[]`, `QuoteCreateParams.lines[].actions[].add_item.discounts[]`, `QuoteCreateParams.lines[].actions[].remove_discount`, `QuoteCreateParams.lines[].actions[].set_discounts[]`, `QuoteCreateParams.lines[].actions[].set_items[].discounts[]`, `QuoteCreateParams.phases[].discounts[]`, `QuoteLine.actions[].add_discount`, `QuoteLine.actions[].add_item.discounts[]`, `QuoteLine.actions[].remove_discount`, `QuoteLine.actions[].set_discounts[]`, `QuoteLine.actions[].set_items[].discounts[]`, `QuoteUpdateParams.lines[].actions[].add_item.discounts[]`, `QuoteUpdateParams.lines[].actions[].remove_discount`, `QuoteUpdateParams.lines[].actions[].set_discounts[]`, `QuoteUpdateParams.lines[].actions[].set_items[].discounts[]`, `QuoteUpdateParams.phases[].discounts[]`, `SubscriptionCreateParams.add_invoice_items[].discounts[]`, `SubscriptionCreateParams.discounts[]`, `SubscriptionCreateParams.items[].discounts[]`, `SubscriptionItemCreateParams.discounts[]`, `SubscriptionItemUpdateParams.discounts[]`, `SubscriptionSchedule.phases[].add_invoice_items[].discounts[]`, `SubscriptionSchedule.phases[].discounts[]`, `SubscriptionSchedule.phases[].items[].discounts[]`, `SubscriptionScheduleAmendParams.amendments[].discount_actions[].add`, `SubscriptionScheduleAmendParams.amendments[].discount_actions[].remove`, `SubscriptionScheduleAmendParams.amendments[].discount_actions[].set`, `SubscriptionScheduleAmendParams.amendments[].item_actions[].add.discounts[]`, `SubscriptionScheduleAmendParams.amendments[].item_actions[].set.discounts[]`, `SubscriptionScheduleCreateParams.phases[].add_invoice_items[].discounts[]`, `SubscriptionScheduleCreateParams.phases[].discounts[]`, `SubscriptionScheduleCreateParams.phases[].items[].discounts[]`, `SubscriptionScheduleUpdateParams.phases[].add_invoice_items[].discounts[]`, `SubscriptionScheduleUpdateParams.phases[].discounts[]`, `SubscriptionScheduleUpdateParams.phases[].items[].discounts[]`, `SubscriptionUpdateParams.add_invoice_items[].discounts[]`, `SubscriptionUpdateParams.discounts[]`, and `SubscriptionUpdateParams.items[].discounts[]`
2931
- * [#1996](https://github.com/stripe/stripe-node/pull/1996) Update generated code for beta
2932
- Release specs are identical.
2933
- * [#1993](https://github.com/stripe/stripe-node/pull/1993) Update generated code for beta
2934
- * Add support for new value `nn` on enum `ConfirmationToken.payment_method_preview.ideal.bank`
2935
- * Add support for new value `NNBANL2G` on enum `ConfirmationToken.payment_method_preview.ideal.bic`
2936
- * Change `Invoice.automatic_tax.liability`, `Invoice.issuer`, and `Subscription.automatic_tax.liability` to be required
2937
- * [#1994](https://github.com/stripe/stripe-node/pull/1994) Beta: report `raw_request` usage
2938
-
2939
1369
  ## 14.14.0 - 2024-01-25
2940
1370
  * [#1998](https://github.com/stripe/stripe-node/pull/1998) Update generated code
2941
1371
  * Add support for `annual_revenue` and `estimated_worker_count` on `Account.business_profile`, `AccountCreateParams.business_profile`, and `AccountUpdateParams.business_profile`
@@ -2961,15 +1391,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2961
1391
  * Add support for `invoice_settings` on `SubscriptionCreateParams` and `SubscriptionUpdateParams`
2962
1392
  * [#1992](https://github.com/stripe/stripe-node/pull/1992) Add a hint about formatting during request forwarding
2963
1393
 
2964
- ## 14.14.0-beta.1 - 2024-01-18
2965
- * [#1996](https://github.com/stripe/stripe-node/pull/1996) Update generated code for beta
2966
- Release specs are identical.
2967
- * [#1993](https://github.com/stripe/stripe-node/pull/1993) Update generated code for beta
2968
- * Add support for new value `nn` on enum `ConfirmationToken.payment_method_preview.ideal.bank`
2969
- * Add support for new value `NNBANL2G` on enum `ConfirmationToken.payment_method_preview.ideal.bic`
2970
- * Change `Invoice.automatic_tax.liability`, `Invoice.issuer`, and `Subscription.automatic_tax.liability` to be required
2971
- * [#1994](https://github.com/stripe/stripe-node/pull/1994) Beta: report `raw_request` usage
2972
-
2973
1394
  ## 14.13.0 - 2024-01-18
2974
1395
  * [#1995](https://github.com/stripe/stripe-node/pull/1995) Update generated code
2975
1396
  * Add support for providing `BankAccount`, `Card`, and `CardToken` details on the `external_account` parameter in `AccountUpdateParams`
@@ -2985,17 +1406,6 @@ This release changes the pinned API version to 2025-05-28.preview.
2985
1406
  * Add support for `invoice_settings` on `SubscriptionCreateParams` and `SubscriptionUpdateParams`
2986
1407
  * [#1992](https://github.com/stripe/stripe-node/pull/1992) Add a hint about formatting during request forwarding
2987
1408
 
2988
- ## 14.13.0-beta.1 - 2024-01-12
2989
- * [#1989](https://github.com/stripe/stripe-node/pull/1989) Update generated code for beta
2990
- * Add support for `amount` on `ChargeCaptureParams.payment_details.flight.segments[]`, `ChargeUpdateParams.payment_details.flight.segments[]`, `PaymentIntentCaptureParams.payment_details.flight.segments[]`, `PaymentIntentConfirmParams.payment_details.flight.segments[]`, `PaymentIntentCreateParams.payment_details.flight.segments[]`, and `PaymentIntentUpdateParams.payment_details.flight.segments[]`
2991
- * Add support for `number_of_rooms` and `room_class` on `ChargeCaptureParams.payment_details.lodging`, `ChargeUpdateParams.payment_details.lodging`, `PaymentIntentCaptureParams.payment_details.lodging`, `PaymentIntentConfirmParams.payment_details.lodging`, `PaymentIntentCreateParams.payment_details.lodging`, and `PaymentIntentUpdateParams.payment_details.lodging`
2992
- * Change `ConfirmationToken.setup_future_usage` to be required
2993
- * Add support for `buy_button` on `CustomerSession.components` and `CustomerSessionCreateParams.components`
2994
- * Add support for new values `high_risk_industry`, `insufficient_margin_ratio`, `insufficient_operating_profit`, `insufficient_reserves`, `insufficient_time_in_network`, `lacking_cash_account`, and `poor_payment_history_with_platform` on enums `Issuing.CreditUnderwritingRecord.decision.application_rejected.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.application_rejected.reasons[]`, and `Issuing.CreditUnderwritingRecordReportDecisionParams.decision.application_rejected.reasons[]`
2995
- * Add support for new values `high_risk_industry`, `insufficient_margin_ratio`, `insufficient_operating_profit`, `insufficient_reserves`, `insufficient_time_in_network`, and `lacking_cash_account` on enums `Issuing.CreditUnderwritingRecord.decision.credit_limit_decreased.reasons[]`, `Issuing.CreditUnderwritingRecord.decision.credit_line_closed.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.credit_limit_decreased.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.credit_line_closed.reasons[]`, `Issuing.CreditUnderwritingRecordCreateFromProactiveReviewParams.decision.credit_limit_decreased.reasons[]`, and `Issuing.CreditUnderwritingRecordCreateFromProactiveReviewParams.decision.credit_line_closed.reasons[]`
2996
- * [#1986](https://github.com/stripe/stripe-node/pull/1986) Update generated code for beta
2997
- * Change `AccountSession.components.capital_financing_promotion.features` to be required
2998
-
2999
1409
  ## 14.12.0 - 2024-01-12
3000
1410
  * [#1990](https://github.com/stripe/stripe-node/pull/1990) Update generated code
3001
1411
  * Add support for new resource `CustomerSession`
@@ -3005,11 +1415,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3005
1415
  * Remove support for value `obligation` from enum `Reporting.ReportRunCreateParams.parameters.reporting_category`
3006
1416
  * Add support for `billing_cycle_anchor_config` on `SubscriptionCreateParams` and `Subscription`
3007
1417
 
3008
- ## 14.12.0-beta.1 - 2024-01-04
3009
- * [#1986](https://github.com/stripe/stripe-node/pull/1986) Update generated code for beta
3010
- * Change `AccountSession.components.capital_financing_promotion.features` to be required
3011
- * Updated stable APIs to the latest version
3012
-
3013
1418
  ## 14.11.0 - 2024-01-04
3014
1419
  * [#1985](https://github.com/stripe/stripe-node/pull/1985) Update generated code
3015
1420
  * Add support for `retrieve` method on resource `Tax.Registration`
@@ -3017,15 +1422,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3017
1422
  * Change type of `SubscriptionSchedule.default_settings.invoice_settings` from `InvoiceSettingSubscriptionScheduleSetting | null` to `InvoiceSettingSubscriptionScheduleSetting`
3018
1423
  * [#1987](https://github.com/stripe/stripe-node/pull/1987) Update docstrings to indicate removal of deprecated event types
3019
1424
 
3020
- ## 14.11.0-beta.1 - 2023-12-22
3021
- * [#1977](https://github.com/stripe/stripe-node/pull/1977) Update generated code for beta
3022
- * Add support for `capital_financing_promotion` on `AccountSession.components` and `AccountSessionCreateParams.components`
3023
- * Add support for new value `shipping_address_invalid` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
3024
- * Change `FinancialConnections.Account.balance_refresh.next_refresh_available_at`, `FinancialConnections.Account.subscriptions`, and `FinancialConnections.Account.transaction_refresh` to be required
3025
- * Change type of `Invoice.issuer` and `SubscriptionSchedule.default_settings.invoice_settings.issuer` from `ConnectAccountReference | null` to `ConnectAccountReference`
3026
- * Change type of `PaymentLink.subscription_data.invoice_settings` from `PaymentLinksResourceSubscriptionDataInvoiceSettings | null` to `PaymentLinksResourceSubscriptionDataInvoiceSettings`
3027
- * Add support for `ship_from_details` on `Tax.CalculationCreateParams`, `Tax.Calculation`, and `Tax.Transaction`
3028
-
3029
1425
  ## 14.10.0 - 2023-12-22
3030
1426
  * [#1979](https://github.com/stripe/stripe-node/pull/1979) Update generated code
3031
1427
  * Add support for `collection_method` on `Mandate.payment_method_details.us_bank_account`
@@ -3049,12 +1445,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3049
1445
  * Add support for `destination_details` on `Refund`
3050
1446
  * Add support for new value `financial_connections.account.refreshed_transactions` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3051
1447
 
3052
- ## 14.10.0-beta.1 - 2023-12-14
3053
- * [#1975](https://github.com/stripe/stripe-node/pull/1975) Update generated code for beta
3054
- * Add support for `preview_mode` and `subscription_details` on `InvoiceUpcomingLinesParams` and `InvoiceUpcomingParams`
3055
- * Remove support for `subscription_trial_from_plan` on `InvoiceUpcomingLinesParams` and `InvoiceUpcomingParams`
3056
- * Add support for `billing_behavior`, `end_behavior`, and `proration_behavior` on `InvoiceUpcomingLinesParams.schedule_details` and `InvoiceUpcomingParams.schedule_details`
3057
-
3058
1448
  ## 14.9.0 - 2023-12-14
3059
1449
  * [#1973](https://github.com/stripe/stripe-node/pull/1973) Add `usage` to X-Stripe-Client-Telemetry
3060
1450
  * [#1971](https://github.com/stripe/stripe-node/pull/1971) Update generated code
@@ -3062,13 +1452,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3062
1452
  * Add support for `after_submit` on `Checkout.Session.custom_text`, `Checkout.SessionCreateParams.custom_text`, `PaymentLink.custom_text`, `PaymentLinkCreateParams.custom_text`, and `PaymentLinkUpdateParams.custom_text`
3063
1453
  * Add support for `created` on `Radar.EarlyFraudWarningListParams`
3064
1454
 
3065
- ## 14.9.0-beta.1 - 2023-12-08
3066
- * [#1969](https://github.com/stripe/stripe-node/pull/1969) Update generated code for beta
3067
- * Add support for `retrieve` method on resource `FinancialConnections.Transaction`
3068
- * Remove support for `issuing_card` and `issuing_cards_list` on `AccountSessionCreateParams.components`
3069
- * Add support for `payment_method_remove`, `payment_method_save`, and `payment_method_set_as_default` on `CustomerSession.components.payment_element.features` and `CustomerSessionCreateParams.components.payment_element.features`
3070
- * Remove support for `payment_method_detach` and `payment_method_set_as_customer_default` on `CustomerSession.components.payment_element.features` and `CustomerSessionCreateParams.components.payment_element.features`
3071
-
3072
1455
  ## 14.8.0 - 2023-12-07
3073
1456
  * [#1968](https://github.com/stripe/stripe-node/pull/1968) Update generated code
3074
1457
  * Add support for `payment_details`, `payments`, and `payouts` on `AccountSession.components` and `AccountSessionCreateParams.components`
@@ -3082,9 +1465,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3082
1465
  * Add support for `transfer_group` on `PaymentLink.payment_intent_data`, `PaymentLinkCreateParams.payment_intent_data`, and `PaymentLinkUpdateParams.payment_intent_data`
3083
1466
  * Add support for `trial_settings` on `PaymentLink.subscription_data`, `PaymentLinkCreateParams.subscription_data`, and `PaymentLinkUpdateParams.subscription_data`
3084
1467
 
3085
- ## 14.8.0-beta.1 - 2023-11-30
3086
- * [#1967](https://github.com/stripe/stripe-node/pull/1967) Update generated code for beta
3087
-
3088
1468
  ## 14.7.0 - 2023-11-30
3089
1469
  * [#1965](https://github.com/stripe/stripe-node/pull/1965) Update generated code
3090
1470
  * Add support for new resources `Climate.Order`, `Climate.Product`, and `Climate.Supplier`
@@ -3099,18 +1479,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3099
1479
  * Add support for new values `climate_order_purchase` and `climate_order_refund` on enum `Reporting.ReportRunCreateParams.parameters.reporting_category`
3100
1480
  * Add support for new values `climate.order.canceled`, `climate.order.created`, `climate.order.delayed`, `climate.order.delivered`, `climate.order.product_substituted`, `climate.product.created`, and `climate.product.pricing_updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3101
1481
 
3102
- ## 14.7.0-beta.2 - 2023-11-27
3103
- * [#1966](https://github.com/stripe/stripe-node/pull/1966) beta: climate APIs
3104
- * Add support for new resources `Climate.Order`, `Climate.Product`, and `Climate.Supplier`
3105
- * Add support for new value `financial_connections_account_inactive` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
3106
- * Add support for new values `climate.order.canceled`, `climate.order.created`, `climate.order.delayed`, `climate.order.delivered`, `climate.order.product_substituted`, `climate.product.created`, and `climate.product.pricing_updated` on enum `Event.type`
3107
- * Add support for new values `climate.order.canceled`, `climate.order.created`, `climate.order.delayed`, `climate.order.delivered`, `climate.order.product_substituted`, `climate.product.created`, and `climate.product.pricing_updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3108
-
3109
- ## 14.7.0-beta.1 - 2023-11-21
3110
- * [#1962](https://github.com/stripe/stripe-node/pull/1962) Update generated code for beta
3111
- * Rename `.delivery.receipient` to `.delivery.recipient` on `Charge` and `PaymentIntent` APIs.
3112
- * Add support for `components` on `CustomerSessionCreateParams` and `CustomerSession`
3113
-
3114
1482
  ## 14.6.0 - 2023-11-21
3115
1483
  * [#1961](https://github.com/stripe/stripe-node/pull/1961) Update generated code
3116
1484
  * Add support for `electronic_commerce_indicator` on `Charge.payment_method_details.card.three_d_secure` and `SetupAttempt.payment_method_details.card.three_d_secure`
@@ -3123,16 +1491,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3123
1491
  * Add support for `authorization_code` on `Issuing.Transaction.network_data`
3124
1492
  * Add support for `three_d_secure` on `PaymentIntentConfirmParams.payment_method_options.card`, `PaymentIntentCreateParams.payment_method_options.card`, `PaymentIntentUpdateParams.payment_method_options.card`, `SetupIntentConfirmParams.payment_method_options.card`, `SetupIntentCreateParams.payment_method_options.card`, and `SetupIntentUpdateParams.payment_method_options.card`
3125
1493
 
3126
- ## 14.6.0-beta.1 - 2023-11-16
3127
- * [#1959](https://github.com/stripe/stripe-node/pull/1959) Update generated code for beta
3128
- * Add support for `event_details` and `subscription` on `ChargeCaptureParams.payment_details`, `ChargeUpdateParams.payment_details`, `PaymentIntent.payment_details`, `PaymentIntentCaptureParams.payment_details`, `PaymentIntentConfirmParams.payment_details`, `PaymentIntentCreateParams.payment_details`, and `PaymentIntentUpdateParams.payment_details`
3129
- * Add support for `affiliate` and `delivery` on `ChargeCaptureParams.payment_details.car_rental`, `ChargeCaptureParams.payment_details.flight`, `ChargeCaptureParams.payment_details.lodging`, `ChargeUpdateParams.payment_details.car_rental`, `ChargeUpdateParams.payment_details.flight`, `ChargeUpdateParams.payment_details.lodging`, `PaymentIntent.payment_details.car_rental`, `PaymentIntentCaptureParams.payment_details.car_rental`, `PaymentIntentCaptureParams.payment_details.flight`, `PaymentIntentCaptureParams.payment_details.lodging`, `PaymentIntentConfirmParams.payment_details.car_rental`, `PaymentIntentConfirmParams.payment_details.flight`, `PaymentIntentConfirmParams.payment_details.lodging`, `PaymentIntentCreateParams.payment_details.car_rental`, `PaymentIntentCreateParams.payment_details.flight`, `PaymentIntentCreateParams.payment_details.lodging`, `PaymentIntentUpdateParams.payment_details.car_rental`, `PaymentIntentUpdateParams.payment_details.flight`, and `PaymentIntentUpdateParams.payment_details.lodging`
3130
- * Add support for `drivers` on `ChargeCaptureParams.payment_details.car_rental`, `ChargeUpdateParams.payment_details.car_rental`, `PaymentIntent.payment_details.car_rental`, `PaymentIntentCaptureParams.payment_details.car_rental`, `PaymentIntentConfirmParams.payment_details.car_rental`, `PaymentIntentCreateParams.payment_details.car_rental`, and `PaymentIntentUpdateParams.payment_details.car_rental`
3131
- * Add support for `passengers` on `ChargeCaptureParams.payment_details.flight`, `ChargeCaptureParams.payment_details.lodging`, `ChargeUpdateParams.payment_details.flight`, `ChargeUpdateParams.payment_details.lodging`, `PaymentIntentCaptureParams.payment_details.flight`, `PaymentIntentCaptureParams.payment_details.lodging`, `PaymentIntentConfirmParams.payment_details.flight`, `PaymentIntentConfirmParams.payment_details.lodging`, `PaymentIntentCreateParams.payment_details.flight`, `PaymentIntentCreateParams.payment_details.lodging`, `PaymentIntentUpdateParams.payment_details.flight`, and `PaymentIntentUpdateParams.payment_details.lodging`
3132
- * Add support for `created` on `CustomerSession`
3133
- * [#1954](https://github.com/stripe/stripe-node/pull/1954) Update generated code for beta
3134
- * Add support for `issuing_card` and `issuing_cards_list` on `AccountSessionCreateParams.components`
3135
-
3136
1494
  ## 14.5.0 - 2023-11-16
3137
1495
  * [#1957](https://github.com/stripe/stripe-node/pull/1957) Update generated code
3138
1496
  * Add support for `bacs_debit_payments` on `AccountCreateParams.settings` and `AccountUpdateParams.settings`
@@ -3147,13 +1505,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3147
1505
  * [#1958](https://github.com/stripe/stripe-node/pull/1958) Move Webhooks instance to static field
3148
1506
  * [#1952](https://github.com/stripe/stripe-node/pull/1952) Use AbortController for native fetch cancellation when available
3149
1507
 
3150
- ## 14.5.0-beta.1 - 2023-11-10
3151
- * [#1948](https://github.com/stripe/stripe-node/pull/1948) Update generated code for beta
3152
- * Add support for new value `quote.reestimate_failed` on enum `Event.type`
3153
- * Add support for `metadata` on `QuoteCreateParams.phases[]`, `QuotePhase`, and `QuoteUpdateParams.phases[]`
3154
- * Add support for `last_reestimation_details` on `Quote.computed`
3155
- * Add support for new value `quote.reestimate_failed` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3156
-
3157
1508
  ## 14.4.0 - 2023-11-09
3158
1509
  * [#1947](https://github.com/stripe/stripe-node/pull/1947) Update generated code
3159
1510
  * Add support for new value `terminal_reader_hardware_fault` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
@@ -3161,23 +1512,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3161
1512
  * Change `Product.features[].name` to be optional
3162
1513
  * Add support for `metadata` on `Quote.subscription_data`, `QuoteCreateParams.subscription_data`, and `QuoteUpdateParams.subscription_data`
3163
1514
 
3164
- ## 14.4.0-beta.1 - 2023-11-02
3165
- * [#1945](https://github.com/stripe/stripe-node/pull/1945) Update generated code for beta
3166
- * Add support for `attach_payment_intent` method on resource `Invoice`
3167
- * Add support for `revolut_pay` on `ConfirmationToken.payment_method_preview`
3168
- * Add support for new value `revolut_pay` on enum `ConfirmationToken.payment_method_preview.type`
3169
- * Change `ConfirmationToken.payment_method_preview.paypal.payer_email`, `ConfirmationToken.payment_method_preview.paypal.payer_id`, `Issuing.Authorization.merchant_data.url`, `Issuing.Authorization.verification_data.three_d_secure`, `Issuing.Transaction.merchant_data.url`, `Order.payment.settings.payment_method_options.paypal.reference`, and `QuoteLine.set_schedule_end` to be required
3170
- * Add support for `refunds` on `CreditNoteCreateParams`, `CreditNotePreviewLinesParams`, `CreditNotePreviewParams`, and `CreditNote`
3171
- * Add support for `post_payment_amount` and `pre_payment_amount` on `CreditNote`
3172
- * Add support for new value `invoice.payment.overpaid` on enum `Event.type`
3173
- * Add support for `schedule_details` on `InvoiceUpcomingLinesParams` and `InvoiceUpcomingParams`
3174
- * Add support for `amounts_due` on `InvoiceCreateParams`, `InvoiceUpdateParams`, and `Invoice`
3175
- * Add support for `payments` on `Invoice`
3176
- * Add support for `created` on `Issuing.PersonalizationDesign`
3177
- * Add support for `ending_before`, `limit`, and `starting_after` on `Tax.RegistrationListParams`
3178
- * Change type of `Tax.RegistrationCreateParams.active_from` to be `'now' | DateTime`
3179
- * Add support for new value `invoice.payment.overpaid` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3180
-
3181
1515
  ## 14.3.0 - 2023-11-02
3182
1516
  * [#1943](https://github.com/stripe/stripe-node/pull/1943) Update generated code
3183
1517
  * Add support for new resource `Tax.Registration`
@@ -3195,37 +1529,12 @@ This release changes the pinned API version to 2025-05-28.preview.
3195
1529
  * Add support for `description` on `PaymentLink.payment_intent_data`, `PaymentLinkCreateParams.payment_intent_data`, and `PaymentLinkUpdateParams.payment_intent_data`
3196
1530
  * Add support for new value `unreconciled_customer_funds` on enum `Reporting.ReportRunCreateParams.parameters.reporting_category`
3197
1531
 
3198
- ## 14.3.0-beta.1 - 2023-10-26
3199
- * [#1938](https://github.com/stripe/stripe-node/pull/1938) Update generated code for beta
3200
- * Add support for new resource `Margin`
3201
- * Add support for `create`, `list`, `retrieve`, and `update` methods on resource `Margin`
3202
- * Add support for `subsellers` on `Checkout.SessionCreateParams.payment_method_options.paypal`, `Order.payment.settings.payment_method_options.paypal`, `OrderCreateParams.payment.settings.payment_method_options.paypal`, `OrderUpdateParams.payment.settings.payment_method_options.paypal`, `PaymentIntent.payment_method_options.paypal`, `PaymentIntentConfirmParams.payment_method_options.paypal`, `PaymentIntentCreateParams.payment_method_options.paypal`, `PaymentIntentUpdateParams.payment_method_options.paypal`, `SetupIntent.payment_method_options.paypal`, `SetupIntentConfirmParams.payment_method_options.paypal`, `SetupIntentCreateParams.payment_method_options.paypal`, and `SetupIntentUpdateParams.payment_method_options.paypal`
3203
- * Add support for `default_margins` on `InvoiceCreateParams`, `InvoiceUpdateParams`, and `Invoice`
3204
- * Add support for `total_margin_amounts` on `Invoice`
3205
- * Add support for `margins` on `InvoiceItemCreateParams`, `InvoiceItemUpdateParams`, and `InvoiceItem`
3206
- * Add support for new values `applicant_is_not_beneficial_owner`, `current_account_tier_ineligible`, `customer_requested_account_closure`, `dispute_rate_too_high`, and `invalid_business_license` on enums `Issuing.CreditUnderwritingRecord.decision.credit_limit_decreased.reasons[]`, `Issuing.CreditUnderwritingRecord.decision.credit_line_closed.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.credit_limit_decreased.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.credit_line_closed.reasons[]`, `Issuing.CreditUnderwritingRecordCreateFromProactiveReviewParams.decision.credit_limit_decreased.reasons[]`, and `Issuing.CreditUnderwritingRecordCreateFromProactiveReviewParams.decision.credit_line_closed.reasons[]`
3207
- * Add support for new values `applicant_is_not_beneficial_owner`, `current_account_tier_ineligible`, `customer_requested_account_closure`, `dispute_rate_too_high`, and `invalid_business_license` on enums `Issuing.CreditUnderwritingRecord.decision.application_rejected.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.application_rejected.reasons[]`, and `Issuing.CreditUnderwritingRecordReportDecisionParams.decision.application_rejected.reasons[]`
3208
- * Remove support for values `change_in_financial_state`, `change_in_utilization_of_credit_line`, `decrease_in_income_to_expense_ratio`, `decrease_in_social_media_performance`, `exceeds_acceptable_platform_exposure`, `has_recent_credit_limit_increase`, `insufficient_credit_utilization`, `insufficient_usage_as_qualified_expenses`, and `poor_payment_history_with_platform` from enums `Issuing.CreditUnderwritingRecord.decision.application_rejected.reasons[]`, `Issuing.CreditUnderwritingRecordCorrectParams.decision.application_rejected.reasons[]`, and `Issuing.CreditUnderwritingRecordReportDecisionParams.decision.application_rejected.reasons[]`
3209
- * Add support for `is_default` on `Issuing.PersonalizationDesign.preferences`, `Issuing.PersonalizationDesignCreateParams.preferences`, `Issuing.PersonalizationDesignListParams.preferences`, and `Issuing.PersonalizationDesignUpdateParams.preferences`
3210
- * Add support for `is_platform_default` on `Issuing.PersonalizationDesign.preferences` and `Issuing.PersonalizationDesignListParams.preferences`
3211
- * Remove support for `account_default` on `Issuing.PersonalizationDesign.preferences`, `Issuing.PersonalizationDesignCreateParams.preferences`, `Issuing.PersonalizationDesignListParams.preferences`, and `Issuing.PersonalizationDesignUpdateParams.preferences`
3212
- * Remove support for `platform_default` on `Issuing.PersonalizationDesign.preferences` and `Issuing.PersonalizationDesignListParams.preferences`
3213
- * Add support for `liability` on `PaymentLink.automatic_tax`, `PaymentLinkCreateParams.automatic_tax`, and `PaymentLinkUpdateParams.automatic_tax`
3214
- * Add support for `issuer` on `PaymentLink.invoice_creation.invoice_data`, `PaymentLinkCreateParams.invoice_creation.invoice_data`, and `PaymentLinkUpdateParams.invoice_creation.invoice_data`
3215
- * Add support for `invoice_settings` on `PaymentLink.subscription_data`, `PaymentLinkCreateParams.subscription_data`, and `PaymentLinkUpdateParams.subscription_data`
3216
- * Add support for new value `accept_failed_validations` on enum `Quote.status_details.stale.last_reason.type`
3217
-
3218
1532
  ## 14.2.0 - 2023-10-26
3219
1533
  * [#1939](https://github.com/stripe/stripe-node/pull/1939) Update generated code
3220
1534
  * Add support for new value `balance_invalid_parameter` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
3221
1535
  * Change `Issuing.Cardholder.individual.card_issuing` to be optional
3222
1536
  * [#1940](https://github.com/stripe/stripe-node/pull/1940) Do not require passing apiVersion
3223
1537
 
3224
- ## 14.2.0-beta.1 - 2023-10-17
3225
- * [#1935](https://github.com/stripe/stripe-node/pull/1935) Update generated code for beta
3226
- * [#1930](https://github.com/stripe/stripe-node/pull/1930) Update generated code for beta
3227
- - Update pinned API version to `2023-10-16`
3228
-
3229
1538
  ## 14.1.0 - 2023-10-17
3230
1539
  * [#1933](https://github.com/stripe/stripe-node/pull/1933) Update generated code
3231
1540
  * Add support for new value `invalid_dob_age_under_minimum` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `BankAccount.future_requirements.errors[].code`, and `BankAccount.requirements.errors[].code`
@@ -3239,9 +1548,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3239
1548
  * Add support for `additional_tos_acceptances` on `TokenCreateParams.person`
3240
1549
  * Add support for new value `2023-10-16` on enum `WebhookEndpointCreateParams.api_version`
3241
1550
 
3242
- ## 13.12.0-beta.1 - 2023-10-16
3243
- * [#1925](https://github.com/stripe/stripe-node/pull/1925) Update generated code for beta
3244
-
3245
1551
  ## 13.11.0 - 2023-10-16
3246
1552
  * [#1924](https://github.com/stripe/stripe-node/pull/1924) Update generated code
3247
1553
  * Add support for new values `issuing_token.created` and `issuing_token.updated` on enum `Event.type`
@@ -3249,17 +1555,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3249
1555
  * [#1926](https://github.com/stripe/stripe-node/pull/1926) Add named unions for all polymorphic types
3250
1556
  * [#1921](https://github.com/stripe/stripe-node/pull/1921) Add event types
3251
1557
 
3252
- ## 13.11.0-beta.1 - 2023-10-11
3253
- * [#1919](https://github.com/stripe/stripe-node/pull/1919) Update generated code for beta
3254
- * Add support for new resources `AccountNotice` and `Issuing.CreditUnderwritingRecord`
3255
- * Add support for `list`, `retrieve`, and `update` methods on resource `AccountNotice`
3256
- * Add support for `correct`, `create_from_application`, `create_from_proactive_review`, `list`, `report_decision`, and `retrieve` methods on resource `CreditUnderwritingRecord`
3257
- * Change type of `Checkout.Session.automatic_tax.liability.account`, `Checkout.Session.invoice_creation.invoice_data.issuer.account`, `Invoice.automatic_tax.liability.account`, `Invoice.issuer.account`, `Quote.automatic_tax.liability.account`, `Quote.invoice_settings.issuer.account`, `Subscription.automatic_tax.liability.account`, `SubscriptionSchedule.default_settings.automatic_tax.liability.account`, `SubscriptionSchedule.default_settings.invoice_settings.issuer.account`, `SubscriptionSchedule.phases[].automatic_tax.liability.account`, and `SubscriptionSchedule.phases[].invoice_settings.issuer.account` from `expandable(Account) | null` to `expandable(Account)`
3258
- * Change `Checkout.Session.automatic_tax.liability.account`, `Checkout.Session.invoice_creation.invoice_data.issuer.account`, `Invoice.automatic_tax.liability.account`, `Invoice.issuer.account`, `Issuing.Transaction.network_data.processing_date`, `Quote.automatic_tax.liability.account`, `Quote.invoice_settings.issuer.account`, `Subscription.automatic_tax.liability.account`, `SubscriptionSchedule.default_settings.automatic_tax.liability.account`, `SubscriptionSchedule.default_settings.invoice_settings.issuer.account`, `SubscriptionSchedule.phases[].automatic_tax.liability.account`, and `SubscriptionSchedule.phases[].invoice_settings.issuer.account` to be optional
3259
- * Add support for new values `account_notice.created` and `account_notice.updated` on enum `Event.type`
3260
- * Add support for new values `local_amusement_tax` and `state_communications_tax` on enums `Tax.Registration.country_options.us.type` and `Tax.RegistrationCreateParams.country_options.us.type`
3261
- * Add support for new values `account_notice.created` and `account_notice.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3262
-
3263
1558
  ## 13.10.0 - 2023-10-11
3264
1559
  * [#1920](https://github.com/stripe/stripe-node/pull/1920) Update generated code
3265
1560
  * Add support for `redirect_on_completion`, `return_url`, and `ui_mode` on `Checkout.SessionCreateParams` and `Checkout.Session`
@@ -3273,16 +1568,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3273
1568
  * Add support for `offline` on `Terminal.ConfigurationCreateParams`, `Terminal.ConfigurationUpdateParams`, and `Terminal.Configuration`
3274
1569
  * [#1914](https://github.com/stripe/stripe-node/pull/1914) Bump get-func-name from 2.0.0 to 2.0.2
3275
1570
 
3276
- ## 13.10.0-beta.1 - 2023-10-05
3277
- * [#1917](https://github.com/stripe/stripe-node/pull/1917) Update generated code for beta
3278
- * Add support for `mark_draft` and `mark_stale` methods on resource `Quote`
3279
- * Remove support for `draft_quote`, `mark_stale_quote`, and `preview_invoice_lines` methods on resource `Quote`
3280
- * Add support for `liability` on `Checkout.Session.automatic_tax` and `Checkout.SessionCreateParams.automatic_tax`
3281
- * Add support for `issuer` on `Checkout.Session.invoice_creation.invoice_data` and `Checkout.SessionCreateParams.invoice_creation.invoice_data`
3282
- * Add support for `invoice_settings` on `Checkout.SessionCreateParams.subscription_data`
3283
- * Add support for `personalization_design` on `Issuing.CardListParams`
3284
- * Add support for `allow_backdated_lines` on `QuoteCreateParams`, `QuoteUpdateParams`, and `Quote`
3285
-
3286
1571
  ## 13.9.0 - 2023-10-05
3287
1572
  * [#1916](https://github.com/stripe/stripe-node/pull/1916) Update generated code
3288
1573
  * Add support for new resource `Issuing.Token`
@@ -3297,49 +1582,15 @@ This release changes the pinned API version to 2025-05-28.preview.
3297
1582
  * Add support for `statement_descriptor_suffix` and `statement_descriptor` on `PaymentLink.payment_intent_data` and `PaymentLinkCreateParams.payment_intent_data`
3298
1583
  * Add support for `payment_intent_data` and `subscription_data` on `PaymentLinkUpdateParams`
3299
1584
 
3300
- ## 13.9.0-beta.1 - 2023-09-28
3301
- * [#1910](https://github.com/stripe/stripe-node/pull/1910) Update generated code for beta
3302
- * Rename resources `Issuing.CardDesign` and `Issuing.CardBundle` to `Issuing.PersonalizationDesign` and `Issuing.PhysicalBundle`
3303
- * Add support for new values `capital_financing_offer` and `capital_financing_reporting` on enum `AccountLinkCreateParams.type`
3304
- * Add support for `features` on `AccountSession.components.payment_details`, `AccountSession.components.payments`, `AccountSession.components.payouts`, `AccountSessionCreateParams.components.account_onboarding`, `AccountSessionCreateParams.components.payment_details`, `AccountSessionCreateParams.components.payments`, and `AccountSessionCreateParams.components.payouts`
3305
- * Change `ConfirmationToken.payment_method_preview.us_bank_account.financial_connections_account` and `ConfirmationToken.payment_method_preview.us_bank_account.status_details` to be required
3306
- * Add support for `reason` on `Event`
3307
-
3308
1585
  ## 13.8.0 - 2023-09-28
3309
1586
  * [#1911](https://github.com/stripe/stripe-node/pull/1911) Update generated code
3310
1587
  * Add support for `rendering` on `InvoiceCreateParams`, `InvoiceUpdateParams`, and `Invoice`
3311
1588
  * Change `PaymentMethod.us_bank_account.financial_connections_account` and `PaymentMethod.us_bank_account.status_details` to be required
3312
1589
 
3313
- ## 13.8.0-beta.1 - 2023-09-21
3314
- * [#1906](https://github.com/stripe/stripe-node/pull/1906) Update generated code for beta
3315
- * Remove support for `customer` on `ConfirmationToken`
3316
- * Add support for `issuer` on `InvoiceCreateParams`, `InvoiceUpcomingLinesParams`, `InvoiceUpcomingParams`, `InvoiceUpdateParams`, `Invoice`, `Quote.invoice_settings`, `QuoteCreateParams.invoice_settings`, `QuoteUpdateParams.invoice_settings`, `SubscriptionSchedule.default_settings.invoice_settings`, `SubscriptionSchedule.phases[].invoice_settings`, `SubscriptionScheduleCreateParams.default_settings.invoice_settings`, `SubscriptionScheduleCreateParams.phases[].invoice_settings`, `SubscriptionScheduleUpdateParams.default_settings.invoice_settings`, and `SubscriptionScheduleUpdateParams.phases[].invoice_settings`
3317
- * Add support for `on_behalf_of` on `InvoiceUpcomingLinesParams` and `InvoiceUpcomingParams`
3318
- * Add support for `liability` on `Invoice.automatic_tax`, `InvoiceCreateParams.automatic_tax`, `InvoiceUpcomingLinesParams.automatic_tax`, `InvoiceUpcomingParams.automatic_tax`, `InvoiceUpdateParams.automatic_tax`, `Quote.automatic_tax`, `QuoteCreateParams.automatic_tax`, `QuoteUpdateParams.automatic_tax`, `Subscription.automatic_tax`, `SubscriptionCreateParams.automatic_tax`, `SubscriptionSchedule.default_settings.automatic_tax`, `SubscriptionSchedule.phases[].automatic_tax`, `SubscriptionScheduleCreateParams.default_settings.automatic_tax`, `SubscriptionScheduleCreateParams.phases[].automatic_tax`, `SubscriptionScheduleUpdateParams.default_settings.automatic_tax`, `SubscriptionScheduleUpdateParams.phases[].automatic_tax`, and `SubscriptionUpdateParams.automatic_tax`
3319
- * Change type of `Issuing.CardDesignUpdateParams.carrier_text` from `carrier_text_param` to `emptyStringable(carrier_text_param)`
3320
- * Add support for `invoice_settings` on `SubscriptionCreateParams` and `SubscriptionUpdateParams`
3321
-
3322
1590
  ## 13.7.0 - 2023-09-21
3323
1591
  * [#1907](https://github.com/stripe/stripe-node/pull/1907) Update generated code
3324
1592
  * Add support for `terms_of_service_acceptance` on `Checkout.Session.custom_text`, `Checkout.SessionCreateParams.custom_text`, `PaymentLink.custom_text`, `PaymentLinkCreateParams.custom_text`, and `PaymentLinkUpdateParams.custom_text`
3325
1593
 
3326
- ## 13.7.0-beta.1 - 2023-09-14
3327
- * [#1900](https://github.com/stripe/stripe-node/pull/1900) Update generated code for beta
3328
- * Add support for new resource `ConfirmationToken`
3329
- * Add support for `retrieve` method on resource `ConfirmationToken`
3330
- * Add support for `create` method on resource `Issuing.CardDesign`
3331
- * Add support for `reject_testmode` test helper method on resource `Issuing.CardDesign`
3332
- * Add support for new value `issuing_card_design.rejected` on enum `Event.type`
3333
- * Add support for `features` on `Issuing.CardBundle`
3334
- * Add support for `preferences` on `Issuing.CardDesignListParams`, `Issuing.CardDesignUpdateParams`, and `Issuing.CardDesign`
3335
- * Remove support for `preference` on `Issuing.CardDesignListParams`, `Issuing.CardDesignUpdateParams`, and `Issuing.CardDesign`
3336
- * Add support for `card_bundle` on `Issuing.CardDesignUpdateParams`
3337
- * Add support for `card_logo` and `carrier_text` on `Issuing.CardDesignUpdateParams` and `Issuing.CardDesign`
3338
- * Change type of `Issuing.CardDesignUpdateParams.lookup_key` and `Issuing.CardDesignUpdateParams.name` from `string` to `emptyStringable(string)`
3339
- * Add support for `rejection_reasons` on `Issuing.CardDesign`
3340
- * Add support for `confirmation_token` on `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `SetupIntentConfirmParams`, and `SetupIntentCreateParams`
3341
- * Add support for new value `issuing_card_design.rejected` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3342
-
3343
1594
  ## 13.6.0 - 2023-09-14
3344
1595
  * [#1905](https://github.com/stripe/stripe-node/pull/1905) Update generated code
3345
1596
  * Add support for new resource `PaymentMethodConfiguration`
@@ -3356,16 +1607,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3356
1607
  * [#1895](https://github.com/stripe/stripe-node/pull/1895) feat: webhook signing Nestjs
3357
1608
  * [#1878](https://github.com/stripe/stripe-node/pull/1878) Use src/apiVersion.ts, not API_VERSION as source of truth
3358
1609
 
3359
- ## 13.6.0-beta.1 - 2023-09-07
3360
- * [#1898](https://github.com/stripe/stripe-node/pull/1898) Update generated code for beta
3361
- * Release specs are identical.
3362
- * [#1892](https://github.com/stripe/stripe-node/pull/1892) Update generated code for beta
3363
- * Remove support for `submit_card` test helper method on resource `Issuing.Card`
3364
- * Add support for `tax_forms` on `Account.settings`, `AccountCreateParams.settings`, and `AccountUpdateParams.settings`
3365
- * Add support for `card_design` on `Issuing.CardUpdateParams`
3366
- * Remove support for value `submitted` from enum `Issuing.Card.shipping.status`
3367
- * Add support for new value `platform_default` on enums `Issuing.CardDesign.preference` and `Issuing.CardDesignListParams.preference`
3368
-
3369
1610
  ## 13.5.0 - 2023-09-07
3370
1611
  * [#1893](https://github.com/stripe/stripe-node/pull/1893) Update generated code
3371
1612
  * Add support for new resource `PaymentMethodDomain`
@@ -3377,10 +1618,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3377
1618
  * Add support for `features` on `ProductCreateParams`, `ProductUpdateParams`, and `Product`
3378
1619
  * Remove support for value `invoiceitem.updated` from enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3379
1620
 
3380
- ## 13.5.0-beta.1 - 2023-08-31
3381
- * [#1883](https://github.com/stripe/stripe-node/pull/1883) Update generated code for beta
3382
- * Rename `Quote.listPreviewSubscriptionSchedules` to `Quote.listPreviewSchedules` and `Quote.listPreview
3383
-
3384
1621
  ## 13.4.0 - 2023-08-31
3385
1622
  * [#1884](https://github.com/stripe/stripe-node/pull/1884) Update generated code
3386
1623
  * Add support for new resource `AccountSession`
@@ -3447,37 +1684,12 @@ This release changes the pinned API version to 2025-05-28.preview.
3447
1684
  * These fields are not fully operational.
3448
1685
  * ⚠️Add support for new value `2023-08-16` on enum `WebhookEndpointCreateParams.api_version`
3449
1686
 
3450
- ## 13.0.0-beta.1 - 2023-08-24
3451
- * [#1873](https://github.com/stripe/stripe-node/pull/1873) Update generated code for beta
3452
- * Add support for new resources `QuotePreviewInvoice` and `QuotePreviewSchedule`
3453
- * Change `Checkout.Session.payment_method_options.us_bank_account.financial_connections.prefetch`, `FinancialConnections.Session.prefetch`, `Invoice.charge`, `Invoice.customer`, `Invoice.payment_settings.payment_method_options.us_bank_account.financial_connections.prefetch`, `PaymentIntent.payment_method_options.us_bank_account.financial_connections.prefetch`, `SetupIntent.payment_method_options.us_bank_account.financial_connections.prefetch`, and `Subscription.payment_settings.payment_method_options.us_bank_account.financial_connections.prefetch` to be required
3454
- * Remove support for `applies_to` on `Invoice` and `SubscriptionSchedule`
3455
- * Add support for `cl`, `co`, `id`, `kr`, `mx`, `my`, `sa`, `th`, `tr`, and `vn` on `Tax.Registration.country_options` and `Tax.RegistrationCreateParams.country_options`
3456
- * Remove support for `hk` on `Tax.Registration.country_options` and `Tax.RegistrationCreateParams.country_options`
3457
-
3458
- ## 12.19.0-beta.1 - 2023-08-10
3459
- * [#1868](https://github.com/stripe/stripe-node/pull/1868) Update generated code for beta
3460
- * Add support for `paypal` on `PaymentMethodConfigurationCreateParams`, `PaymentMethodConfigurationUpdateParams`, and `PaymentMethodConfiguration`
3461
- * Add support for new value `quote.accept_failed` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3462
-
3463
1687
  ## 12.18.0 - 2023-08-10
3464
1688
  * [#1867](https://github.com/stripe/stripe-node/pull/1867) Update generated code
3465
1689
  * Add support for new values `incorporated_partnership` and `unincorporated_partnership` on enums `Account.company.structure`, `AccountCreateParams.company.structure`, `AccountUpdateParams.company.structure`, and `TokenCreateParams.account.company.structure`
3466
1690
  * Add support for new value `payment_reversal` on enum `BalanceTransaction.type`
3467
1691
  * Change `Invoice.subscription_details.metadata` and `Invoice.subscription_details` to be required
3468
1692
 
3469
- ## 12.18.0-beta.1 - 2023-08-03
3470
- * [#1861](https://github.com/stripe/stripe-node/pull/1861) Update generated code for beta
3471
- * Add support for `submit_card` test helper method on resource `Issuing.Card`
3472
- * Add support for `address_validation` on `Issuing.Card.shipping` and `Issuing.CardCreateParams.shipping`
3473
- * Add support for `shipping` on `Issuing.CardUpdateParams`
3474
- * Add support for new value `submitted` on enum `Issuing.Card.shipping.status`
3475
- * Change type of `OrderCreateParams.line_items[].product_data.description`, `OrderCreateParams.line_items[].product_data.tax_code`, `OrderCreateParams.shipping_details.phone`, `OrderUpdateParams.description`, `OrderUpdateParams.line_items[].product_data.description`, `OrderUpdateParams.line_items[].product_data.tax_code`, `OrderUpdateParams.shipping_details.phone`, `PaymentMethodConfigurationListParams.application`, and `QuoteUpdateParams.subscription_data_overrides[].description` from `string` to `emptyStringable(string)`
3476
- * Add support for `reason` on `QuoteMarkStaleQuoteParams`
3477
- * Add support for `marked_stale` on `Quote.status_details.stale.last_reason`
3478
- * Change `Tax.FormListParams.payee.type` to be optional
3479
- * [#1864](https://github.com/stripe/stripe-node/pull/1864) Remove developer_message support
3480
-
3481
1693
  ## 12.17.0 - 2023-08-03
3482
1694
  * [#1863](https://github.com/stripe/stripe-node/pull/1863) Update generated code
3483
1695
  * Change many types from `string` to `emptyStringable(string)`
@@ -3486,14 +1698,14 @@ This release changes the pinned API version to 2025-05-28.preview.
3486
1698
  * Add support for new values `sepa_debit_fingerprint` and `us_bank_account_fingerprint` on enums `Radar.ValueList.item_type` and `Radar.ValueListCreateParams.item_type`
3487
1699
  * [#1866](https://github.com/stripe/stripe-node/pull/1866) Allow monkey patching http / https
3488
1700
 
3489
- ## 12.17.0-beta.1 - 2023-07-27
3490
- * Updated stable APIs to the latest version
3491
-
3492
1701
  ## 12.16.0 - 2023-07-27
3493
1702
  * [#1853](https://github.com/stripe/stripe-node/pull/1853) Update generated code
3494
1703
  * Add support for `monthly_estimated_revenue` on `Account.business_profile`, `AccountCreateParams.business_profile`, and `AccountUpdateParams.business_profile`
3495
1704
  * [#1859](https://github.com/stripe/stripe-node/pull/1859) Revert "import * as http -> import http from 'http'"
3496
1705
 
1706
+ ## 12.15.0 - 2023-07-27 (DEPRECATED ⚠️ )
1707
+ * This version included a breaking change [#1859](https://github.com/stripe/stripe-node/pull/1859) that we should not have released. It has been deprecated on npmjs.org. Please do not use this version.
1708
+
3497
1709
  ## 12.14.0 - 2023-07-20
3498
1710
  * [#1842](https://github.com/stripe/stripe-node/pull/1842) Update generated code
3499
1711
  * Add support for new value `ro_tin` on enums `Checkout.Session.customer_details.tax_ids[].type`, `Invoice.customer_tax_ids[].type`, `Tax.Calculation.customer_details.tax_ids[].type`, and `Tax.Transaction.customer_details.tax_ids[].type`
@@ -3504,17 +1716,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3504
1716
  * [#1849](https://github.com/stripe/stripe-node/pull/1849) Changelog: fix delimiterless namespaced param types
3505
1717
  * [#1848](https://github.com/stripe/stripe-node/pull/1848) Changelog: `CheckoutSessionCreateParams` -> `Checkout.SessionCreateParams`
3506
1718
 
3507
- ## 12.14.0-beta.1 - 2023-07-13
3508
- * [#1840](https://github.com/stripe/stripe-node/pull/1840) Update generated code for beta
3509
- Release specs are identical.
3510
- * [#1837](https://github.com/stripe/stripe-node/pull/1837) Update generated code for beta
3511
- * Add support for new resource `PaymentMethodConfiguration`
3512
- * Add support for `create`, `list`, `retrieve`, and `update` methods on resource `PaymentMethodConfiguration`
3513
- * Add support for `payment_method_configuration` on `PaymentIntentCreateParams` and `PaymentIntentUpdateParams`
3514
- * Add support for `payment_method_configuration_details` on `PaymentIntent`
3515
- * Rename `Tax.SettingRetrieveParam` to `Tax.SettingsRetrieveParam` and `Tax.SettingUpdateParams` to `Tax.SettingsUpdateParams` (parity with main release)
3516
- * [#1832](https://github.com/stripe/stripe-node/pull/1832) Update generated code for beta
3517
-
3518
1719
  ## 12.13.0 - 2023-07-13
3519
1720
  * [#1838](https://github.com/stripe/stripe-node/pull/1838) Update generated code
3520
1721
  * Add support for new resource `Tax.Settings`
@@ -3531,11 +1732,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3531
1732
  * Add support for `numeric` and `text` on `PaymentLink.custom_fields[]`
3532
1733
  * Add support for `automatic_tax` on `SubscriptionListParams`
3533
1734
 
3534
- ## 12.12.0-beta.1 - 2023-06-29
3535
- * [#1824](https://github.com/stripe/stripe-node/pull/1824) Update generated code for beta
3536
- * Add support for `metadata` on `Invoice.subscription_details`
3537
- * Change `Invoice.subscription_details.pause_collection` to be optional
3538
-
3539
1735
  ## 12.11.0 - 2023-06-29
3540
1736
  * [#1823](https://github.com/stripe/stripe-node/pull/1823) Update generated code
3541
1737
  * Add support for new value `application_fees_not_allowed` on enums `Invoice.last_finalization_error.code`, `PaymentIntent.last_payment_error.code`, `SetupAttempt.setup_error.code`, `SetupIntent.last_setup_error.code`, and `StripeError.code`
@@ -3543,12 +1739,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3543
1739
  * Add support for `effective_at` on `CreditNoteCreateParams`, `CreditNotePreviewLinesParams`, `CreditNotePreviewParams`, `CreditNote`, `InvoiceCreateParams`, `InvoiceUpdateParams`, and `Invoice`
3544
1740
  * [#1828](https://github.com/stripe/stripe-node/pull/1828) Better CryptoProvider error
3545
1741
 
3546
- ## 12.11.0-beta.1 - 2023-06-22
3547
- * [#1821](https://github.com/stripe/stripe-node/pull/1821) Update generated code for beta
3548
- * Add support for new resource `CustomerSession`
3549
- * Add support for `create` method on resource `CustomerSession`
3550
- * Change type of `Tax.Registration.country_options.us.type` and `TaxRegistrationCreateParams.country_options.us.type` from `literal('state_sales_tax')` to `enum('local_lease_tax'|'state_sales_tax')`
3551
-
3552
1742
  ## 12.10.0 - 2023-06-22
3553
1743
  * [#1820](https://github.com/stripe/stripe-node/pull/1820) Update generated code
3554
1744
  * Add support for `on_behalf_of` on `Mandate`
@@ -3560,35 +1750,12 @@ This release changes the pinned API version to 2025-05-28.preview.
3560
1750
  * Change type of `FileCreateParams.file` from `string` to `file`
3561
1751
  * [#1815](https://github.com/stripe/stripe-node/pull/1815) Generate FileCreateParams
3562
1752
 
3563
- ## 12.10.0-beta.2 - 2023-06-15
3564
- * [#1818](https://github.com/stripe/stripe-node/pull/1818) Update generated code for beta
3565
- * Add support for `payment_details` on `ChargeCaptureParams`, `ChargeUpdateParams`, `PaymentIntentCaptureParams`, `PaymentIntentConfirmParams`, `PaymentIntentCreateParams`, `PaymentIntentUpdateParams`, and `PaymentIntent`
3566
- * Add support for `statement_details` on `PaymentIntent.payment_method_options.card`, `PaymentIntentConfirmParams.payment_method_options.card`, `PaymentIntentCreateParams.payment_method_options.card`, and `PaymentIntentUpdateParams.payment_method_options.card`
3567
- * [#1814](https://github.com/stripe/stripe-node/pull/1814) Update generated code for beta
3568
-
3569
- ## 12.10.0-beta.1 - 2023-06-08
3570
- * [#1811](https://github.com/stripe/stripe-node/pull/1811) Update generated code for beta
3571
-
3572
1753
  ## 12.9.0 - 2023-06-08
3573
1754
  * [#1809](https://github.com/stripe/stripe-node/pull/1809) Update generated code
3574
1755
  * Change `Charge.payment_method_details.cashapp.buyer_id`, `Charge.payment_method_details.cashapp.cashtag`, `PaymentMethod.cashapp.buyer_id`, and `PaymentMethod.cashapp.cashtag` to be required
3575
1756
  * Add support for `taxability_reason` on `Tax.Calculation.tax_breakdown[]`
3576
1757
  * [#1812](https://github.com/stripe/stripe-node/pull/1812) More helpful error when signing secrets contain whitespace
3577
1758
 
3578
- ## 12.9.0-beta.1 - 2023-06-01
3579
- * [#1801](https://github.com/stripe/stripe-node/pull/1801) Update generated code for beta
3580
- * Add support for `subscription_details` on `Invoice`
3581
- * Add support for new values `aba` and `swift` on enums `Order.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `OrderCreateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, and `OrderUpdateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`
3582
- * Add support for new value `us_bank_transfer` on enums `Order.payment.settings.payment_method_options.customer_balance.bank_transfer.type`, `OrderCreateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.type`, and `OrderUpdateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.type`
3583
- * Add support for `set_pause_collection` on `QuoteCreateParams.lines[]`, `QuoteLine`, `QuoteUpdateParams.lines[]`, and `SubscriptionScheduleAmendParams.amendments[]`
3584
- * Add support for new value `pause_collection_start` on enums `Quote.subscription_data.bill_on_acceptance.bill_from.type`, `Quote.subscription_data_overrides[].bill_on_acceptance.bill_from.type`, `QuoteCreateParams.subscription_data.bill_on_acceptance.bill_from.type`, `QuoteCreateParams.subscription_data_overrides[].bill_on_acceptance.bill_from.type`, `QuoteUpdateParams.subscription_data.bill_on_acceptance.bill_from.type`, and `QuoteUpdateParams.subscription_data_overrides[].bill_on_acceptance.bill_from.type`
3585
- * Add support for `pause_collection` on `SubscriptionSchedule.phases[]`, `SubscriptionScheduleCreateParams.phases[]`, and `SubscriptionScheduleUpdateParams.phases[]`
3586
- * Add support for `local_amusement_tax` on `Tax.Registration.country_options.us` and `TaxRegistrationCreateParams.country_options.us`
3587
- * Remove support for `locations` on `Tax.Settings` and `TaxSettingUpdateParams`
3588
- * Add support for new values `customer.subscription.collection_paused` and `customer.subscription.collection_resumed` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3589
- * [#1775](https://github.com/stripe/stripe-node/pull/1775) Introduce stripe.rawRequest as a canonical way to request APIs without definitions
3590
- * Please refer to the [Custom Requests README section](https://github.com/stripe/stripe-node/tree/beta#custom-requests) for usage instructions.
3591
-
3592
1759
  ## 12.8.0 - 2023-06-01
3593
1760
  * [#1799](https://github.com/stripe/stripe-node/pull/1799) Update generated code
3594
1761
  * Add support for `numeric` and `text` on `Checkout.SessionCreateParams.custom_fields[]`, `PaymentLinkCreateParams.custom_fields[]`, and `PaymentLinkUpdateParams.custom_fields[]`
@@ -3599,9 +1766,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3599
1766
  * Add support for `description`, `iin`, and `issuer` on `PaymentMethod.card_present` and `PaymentMethod.interac_present`
3600
1767
  * Add support for `payer_email` on `PaymentMethod.paypal`
3601
1768
 
3602
- ## 12.8.0-beta.1 - 2023-05-25
3603
- * [#1795](https://github.com/stripe/stripe-node/pull/1795) Update generated code for beta
3604
-
3605
1769
  ## 12.7.0 - 2023-05-25
3606
1770
  * [#1797](https://github.com/stripe/stripe-node/pull/1797) Update generated code
3607
1771
  * Add support for `zip_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
@@ -3612,13 +1776,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3612
1776
  * Add support for new value `zip` on enums `PaymentIntentConfirmParams.payment_method_data.type`, `PaymentIntentCreateParams.payment_method_data.type`, `PaymentIntentUpdateParams.payment_method_data.type`, `SetupIntentConfirmParams.payment_method_data.type`, `SetupIntentCreateParams.payment_method_data.type`, and `SetupIntentUpdateParams.payment_method_data.type`
3613
1777
  * Add support for new value `zip` on enum `PaymentMethod.type`
3614
1778
 
3615
- ## 12.7.0-beta.1 - 2023-05-19
3616
- * [#1788](https://github.com/stripe/stripe-node/pull/1788) Update generated code for beta
3617
- * Add support for `subscribe` and `unsubscribe` methods on resource `FinancialConnections.Account`
3618
- * Add support for `next_refresh_available_at` on `FinancialConnections.Account.balance_refresh`, `FinancialConnections.Account.inferred_balances_refresh`, `FinancialConnections.Account.ownership_refresh`, and `FinancialConnections.Account.transaction_refresh`
3619
- * Add support for `status_details` and `status` on `Tax.Settings`
3620
- * Add support for new value `tax.settings.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3621
-
3622
1779
  ## 12.6.0 - 2023-05-19
3623
1780
  * [#1787](https://github.com/stripe/stripe-node/pull/1787) Update generated code
3624
1781
  * Add support for `subscription_update_confirm` and `subscription_update` on `BillingPortal.Session.flow` and `BillingPortal.SessionCreateParams.flow_data`
@@ -3627,18 +1784,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3627
1784
  * Add support for `buyer_id` and `cashtag` on `Charge.payment_method_details.cashapp` and `PaymentMethod.cashapp`
3628
1785
  * Add support for new values `amusement_tax` and `communications_tax` on enums `TaxRate.tax_type`, `TaxRateCreateParams.tax_type`, and `TaxRateUpdateParams.tax_type`
3629
1786
 
3630
- ## 12.6.0-beta.1 - 2023-05-11
3631
- * [#1786](https://github.com/stripe/stripe-node/pull/1786) Update generated code for beta
3632
- * Add support for `payer_email`, `payer_name`, and `seller_protection` on `Charge.payment_method_details.paypal`
3633
- * Change `Charge.payment_method_details.paypal.payer_id`, `Charge.payment_method_details.paypal.verified_email`, `Charge.payment_method_details.paypal.verified_name`, `SetupIntent.payment_method_options.paypal.currency`, and `Tax.Settings.locations` to be optional
3634
- * Add support for `capture_method`, `preferred_locale`, `reference_id`, and `setup_future_usage` on `CheckoutSessionCreateParams.payment_method_options.paypal`
3635
- * Add support for `reference` on `CheckoutSessionCreateParams.payment_method_options.paypal`, `Order.payment.settings.payment_method_options.paypal`, `OrderCreateParams.payment.settings.payment_method_options.paypal`, `OrderUpdateParams.payment.settings.payment_method_options.paypal`, `PaymentIntent.payment_method_options.paypal`, `PaymentIntentConfirmParams.payment_method_options.paypal`, `PaymentIntentCreateParams.payment_method_options.paypal`, and `PaymentIntentUpdateParams.payment_method_options.paypal`
3636
- * Add support for `risk_correlation_id` on `CheckoutSessionCreateParams.payment_method_options.paypal`, `OrderCreateParams.payment.settings.payment_method_options.paypal`, `OrderUpdateParams.payment.settings.payment_method_options.paypal`, `PaymentIntentConfirmParams.payment_method_options.paypal`, `PaymentIntentCreateParams.payment_method_options.paypal`, and `PaymentIntentUpdateParams.payment_method_options.paypal`
3637
- * Remove support for `billing_agreement_id` and `currency` on `CheckoutSessionCreateParams.payment_method_options.paypal`
3638
- * Add support for `fingerprint`, `payer_id`, and `verified_email` on `Mandate.payment_method_details.paypal` and `PaymentMethod.paypal`
3639
- * Add support for `taxability_reason` and `taxable_amount` on `Order.shipping_cost.taxes[]`, `Order.total_details.breakdown.taxes[]`, and `QuotePhase.total_details.breakdown.taxes[]`
3640
- * Add support for `head_office` on `Tax.Settings` and `TaxSettingUpdateParams`
3641
-
3642
1787
  ## 12.5.0 - 2023-05-11
3643
1788
  * [#1785](https://github.com/stripe/stripe-node/pull/1785) Update generated code
3644
1789
  * Add support for `paypal` on `Charge.payment_method_details`, `Checkout.SessionCreateParams.payment_method_options`, `Mandate.payment_method_details`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethod`, `SetupAttempt.payment_method_details`, `SetupIntent.payment_method_options`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentConfirmParams.payment_method_options`, `SetupIntentCreateParams.payment_method_data`, `SetupIntentCreateParams.payment_method_options`, `SetupIntentUpdateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_options`
@@ -3656,25 +1801,12 @@ This release changes the pinned API version to 2025-05-28.preview.
3656
1801
  * Add support for `effective_percentage` on `TaxRate`
3657
1802
  * Add support for `gb_bank_transfer` and `jp_bank_transfer` on `CustomerCashBalanceTransaction.Funded.BankTransfer`
3658
1803
 
3659
- ## 12.5.0-beta.1 - 2023-05-04
3660
- * [#1773](https://github.com/stripe/stripe-node/pull/1773) Update generated code for beta
3661
- * Updated stable APIs to the latest version
3662
-
3663
1804
  ## 12.4.0 - 2023-05-04
3664
1805
  * [#1774](https://github.com/stripe/stripe-node/pull/1774) Update generated code
3665
1806
  * Add support for `link` on `Checkout.Session.payment_method_options` and `Checkout.SessionCreateParams.payment_method_options`
3666
1807
  * Add support for `brand`, `country`, `description`, `exp_month`, `exp_year`, `fingerprint`, `funding`, `iin`, `issuer`, `last4`, `network`, and `wallet` on `SetupAttempt.payment_method_details.card`
3667
1808
  * [#1782](https://github.com/stripe/stripe-node/pull/1782) Let user supply a timestamp when verifying webhooks
3668
1809
 
3669
- ## 12.4.0-beta.1 - 2023-04-27
3670
- * [#1769](https://github.com/stripe/stripe-node/pull/1769) Update generated code for beta
3671
- * Add support for `billing_cycle_anchor` and `proration_behavior` on `CheckoutSessionCreateParams.subscription_data`
3672
- * Add support for `terminal_id` on `Issuing.Authorization.merchant_data` and `Issuing.Transaction.merchant_data`
3673
- * Add support for `metadata` on `PaymentIntentCaptureParams`
3674
- * Add support for `checks` on `SetupAttempt.payment_method_details.card`
3675
- * Add support for `tax_breakdown` on `Tax.Calculation.shipping_cost` and `Tax.Transaction.shipping_cost`
3676
- * Change type of `TaxRegistrationCreateParams.active_from`, `TaxRegistrationUpdateParams.active_from`, and `TaxRegistrationUpdateParams.expires_at` from `longInteger` to `longInteger | literal('now')`
3677
-
3678
1810
  ## 12.3.0 - 2023-04-27
3679
1811
  * [#1770](https://github.com/stripe/stripe-node/pull/1770) Update generated code
3680
1812
  * Add support for `billing_cycle_anchor` and `proration_behavior` on `Checkout.SessionCreateParams.subscription_data`
@@ -3683,12 +1815,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3683
1815
  * Add support for `checks` on `SetupAttempt.payment_method_details.card`
3684
1816
  * Add support for `tax_breakdown` on `Tax.Calculation.shipping_cost` and `Tax.Transaction.shipping_cost`
3685
1817
 
3686
- ## 12.3.0-beta.1 - 2023-04-20
3687
- * [#1760](https://github.com/stripe/stripe-node/pull/1760) Update generated code for beta
3688
- * Add support for `zip` on `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_options`, and `PaymentIntentUpdateParams.payment_method_options`
3689
- * Add support for `country_options` on `Tax.Registration` and `TaxRegistrationCreateParams`
3690
- * Remove support for `state` and `type` on `Tax.Registration` and `TaxRegistrationCreateParams`
3691
-
3692
1818
  ## 12.2.0 - 2023-04-20
3693
1819
  * [#1759](https://github.com/stripe/stripe-node/pull/1759) Update generated code
3694
1820
  * Change `Checkout.Session.currency_conversion` to be required
@@ -3698,16 +1824,6 @@ This release changes the pinned API version to 2025-05-28.preview.
3698
1824
  * [#1762](https://github.com/stripe/stripe-node/pull/1762) Add Deno webhook signing example
3699
1825
  * [#1761](https://github.com/stripe/stripe-node/pull/1761) Add Deno usage instructions in README
3700
1826
 
3701
- ## 12.2.0-beta.1 - 2023-04-13
3702
- * [#1751](https://github.com/stripe/stripe-node/pull/1751) Update generated code for beta
3703
- * Add support for `collect_payment_method` and `confirm_payment_intent` methods on resource `Terminal.Reader`
3704
- * Add support for `paypal_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
3705
- * Add support for new value `REVOIE23` on enums `Charge.payment_method_details.ideal.bic`, `PaymentMethod.ideal.bic`, and `SetupAttempt.payment_method_details.ideal.bic`
3706
- * Add support for `collect_payment_method` and `confirm_payment_intent` on `Terminal.Reader.action`
3707
- * Add support for `stripe_account` on `Terminal.Reader.action.process_payment_intent` and `Terminal.Reader.action.refund_payment`
3708
- * Add support for new values `collect_payment_method` and `confirm_payment_intent` on enum `Terminal.Reader.action.type`
3709
- * Add support for new value `terminal.reader.action_updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3710
-
3711
1827
  ## 12.1.1 - 2023-04-13
3712
1828
  No product changes.
3713
1829
 
@@ -3716,16 +1832,6 @@ No product changes.
3716
1832
  * Add support for new value `REVOIE23` on enums `Charge.payment_method_details.ideal.bic`, `PaymentMethod.ideal.bic`, and `SetupAttempt.payment_method_details.ideal.bic`
3717
1833
  * [#1749](https://github.com/stripe/stripe-node/pull/1749) Type extend and ResourceNamespace better
3718
1834
 
3719
- ## 12.1.0-beta.1 - 2023-04-06
3720
- * [#1737](https://github.com/stripe/stripe-node/pull/1737) Update generated code for beta
3721
- * Add support for `treasury_transaction` on `CapitalFinancingTransactionListParams`
3722
- * Add support for `transaction` on `Capital.FinancingTransaction.details`
3723
- * Add support for new value `link` on enums `Charge.payment_method_details.card.wallet.type` and `PaymentMethod.card.wallet.type`
3724
- * Change `IssuingCardholderCreateParams.type` to be optional
3725
- * Add support for `country` on `PaymentMethod.link`
3726
- * Add support for `status_details` on `PaymentMethod.us_bank_account`
3727
- * [#1750](https://github.com/stripe/stripe-node/pull/1750) Merge master into beta
3728
-
3729
1835
  ## 12.0.0 - 2023-04-06
3730
1836
  * [#1743](https://github.com/stripe/stripe-node/pull/1743) Remove `Stripe.default` and `Stripe.Stripe`
3731
1837
  This was added to maintain backwards compatibility during the transition of stripe-node to a dual ES module / CommonJS package, and should not be functionally necessary.
@@ -3768,11 +1874,6 @@ This was added to maintain backwards compatibility during the transition of stri
3768
1874
  * Add support for `status_details` on `PaymentMethod.us_bank_account`
3769
1875
  * [#1747](https://github.com/stripe/stripe-node/pull/1747) (Typescript) remove deprecated properties
3770
1876
 
3771
- ## 11.18.0-beta.1 - 2023-03-30
3772
- * [#1735](https://github.com/stripe/stripe-node/pull/1735) Update generated code
3773
- * Add support for new value `ioss` on enums `Tax.Registration.type` and `TaxRegistrationCreateParams.type`
3774
- * Change `TerminalReaderCollectInputsParams.inputs[].custom_text.description` to be optional
3775
-
3776
1877
  ## 11.17.0 - 2023-03-30
3777
1878
  * [#1734](https://github.com/stripe/stripe-node/pull/1734) Update generated code
3778
1879
  * Remove support for `create` method on resource `Tax.Transaction`
@@ -3782,21 +1883,6 @@ This was added to maintain backwards compatibility during the transition of stri
3782
1883
  * This is not a breaking change, as `deleted` was never returned or accepted as input.
3783
1884
  * Add support for `amount_tip` on `Terminal.ReaderPresentPaymentMethodParams.testHelpers`
3784
1885
 
3785
- ## 11.17.0-beta.1 - 2023-03-23
3786
- * [#1724](https://github.com/stripe/stripe-node/pull/1724) Update generated code for beta (new)
3787
- * Add support for new resources `Tax.CalculationLineItem` and `Tax.TransactionLineItem`
3788
- * Add support for `collect_inputs` method on resource `Terminal.Reader`
3789
- * Add support for `financing_offer` on `Capital.FinancingSummary`
3790
- * Add support for new value `link` on enum `CheckoutSessionCreateParams.payment_method_types[]`
3791
- * Add support for `fx_rate` on `Checkout.Session.currency_conversion`
3792
- * Add support for new value `link` on enums `PaymentLink.payment_method_types[]`, `PaymentLinkCreateParams.payment_method_types[]`, and `PaymentLinkUpdateParams.payment_method_types[]`
3793
- * Add support for `automatic_payment_methods` on `SetupIntentCreateParams` and `SetupIntent`
3794
- * Remove support for `preview` on `TaxCalculationCreateParams`
3795
- * Change type of `Tax.Calculation.line_items[]` from `LineItem` to `Tax.CalculationLineItem`
3796
- * Change type of `Tax.Transaction.line_items[]` from `LineItem` to `Tax.TransactionLineItem`
3797
- * Add support for `collect_inputs` on `Terminal.Reader.action`
3798
- * Add support for new value `collect_inputs` on enum `Terminal.Reader.action.type`
3799
-
3800
1886
  ## 11.16.0 - 2023-03-23
3801
1887
  * [#1730](https://github.com/stripe/stripe-node/pull/1730) Update generated code
3802
1888
  * Add support for new resources `Tax.CalculationLineItem`, `Tax.Calculation`, `Tax.TransactionLineItem`, and `Tax.Transaction`
@@ -3808,19 +1894,6 @@ This was added to maintain backwards compatibility during the transition of stri
3808
1894
  * Add support for `automatic_payment_methods` on `SetupIntentCreateParams` and `SetupIntent`
3809
1895
  * [#1726](https://github.com/stripe/stripe-node/pull/1726) Add Deno entry point
3810
1896
 
3811
- ## 11.16.0-beta.1 - 2023-03-17
3812
- * [#1713](https://github.com/stripe/stripe-node/pull/1713) API Updates
3813
- * Add support for `create_from_calculation` method on resource `Tax.Transaction`
3814
- * Change type of `Invoice.applies_to` from `QuotesResourceQuoteLinesAppliesTo | null` to `QuotesResourceQuoteLinesAppliesTo`
3815
- * Add support for `paypal` on `Mandate.payment_method_details`, `SetupAttempt.payment_method_details`, `SetupIntent.payment_method_options`, `SetupIntentConfirmParams.payment_method_options`, `SetupIntentCreateParams.payment_method_options`, and `SetupIntentUpdateParams.payment_method_options`
3816
- * Add support for new value `automatic_async` on enums `Order.payment.settings.payment_method_options.afterpay_clearpay.capture_method`, `Order.payment.settings.payment_method_options.card.capture_method`, `OrderCreateParams.payment.settings.payment_method_options.afterpay_clearpay.capture_method`, `OrderCreateParams.payment.settings.payment_method_options.card.capture_method`, `OrderUpdateParams.payment.settings.payment_method_options.afterpay_clearpay.capture_method`, and `OrderUpdateParams.payment.settings.payment_method_options.card.capture_method`
3817
- * Add support for `setup_future_usage` on `Order.payment.settings.payment_method_options.paypal`, `OrderCreateParams.payment.settings.payment_method_options.paypal`, `OrderUpdateParams.payment.settings.payment_method_options.paypal`, `PaymentIntent.payment_method_options.paypal`, `PaymentIntentConfirmParams.payment_method_options.paypal`, `PaymentIntentCreateParams.payment_method_options.paypal`, and `PaymentIntentUpdateParams.payment_method_options.paypal`
3818
- * Change `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.hosted_instructions_url`, `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.mobile_auth_url`, `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.expires_at`, `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.image_url_png`, `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.image_url_svg`, `PaymentIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code`, `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.hosted_instructions_url`, `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.mobile_auth_url`, `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.expires_at`, `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.image_url_png`, `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code.image_url_svg`, and `SetupIntent.next_action.cashapp_handle_redirect_or_display_qr_code.qr_code` to be required
3819
- * Remove support for `applies_to` on `QuotePreviewInvoiceLinesParams`
3820
- * Add support for `shipping_cost` on `Tax.Calculation`, `Tax.Transaction`, `TaxCalculationCreateParams`, and `TaxTransactionCreateReversalParams`
3821
- * Add support for `tax_breakdown` on `Tax.Calculation`
3822
- * Remove support for `tax_summary` on `Tax.Calculation`
3823
-
3824
1897
  ## 11.15.0 - 2023-03-16
3825
1898
  * [#1714](https://github.com/stripe/stripe-node/pull/1714) API Updates
3826
1899
  * Add support for `cashapp_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
@@ -3849,16 +1922,6 @@ This was added to maintain backwards compatibility during the transition of stri
3849
1922
  * Add support for new value `cashapp` on enum `PaymentMethod.type`
3850
1923
  * Add support for new value `payout.reconciliation_completed` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3851
1924
 
3852
- ## 11.15.0-beta.1 - 2023-03-09
3853
- * [#1705](https://github.com/stripe/stripe-node/pull/1705) API Updates for beta branch
3854
- * Updated stable APIs to the latest version
3855
- * Remove support for `list_transactions` method on resource `Tax.Transaction`
3856
- * Add support for `amendment_start` and `timestamp` on `SubscriptionScheduleAmendParams.prebilling[].bill_from`
3857
- * Change type of `SubscriptionScheduleAmendParams.prebilling[].bill_from.type` from `literal('now')` to `enum('amendment_start'|'now'|'timestamp')`
3858
- * Change type of `SubscriptionSchedule.applies_to` from `QuotesResourceQuoteLinesAppliesTo | null` to `QuotesResourceQuoteLinesAppliesTo`
3859
- * Add support for new value `lease_tax` on enum `Tax.Calculation.tax_summary[].tax_rate_details.tax_type`
3860
- * Add support for `tax_behavior` on `Tax.Settings.defaults` and `TaxSettingUpdateParams.defaults`
3861
-
3862
1925
  ## 11.14.0 - 2023-03-09
3863
1926
  * [#1703](https://github.com/stripe/stripe-node/pull/1703) API Updates
3864
1927
  * Add support for `card_issuing` on `Issuing.CardholderCreateParams.individual` and `Issuing.CardholderUpdateParams.individual`
@@ -3869,25 +1932,6 @@ This was added to maintain backwards compatibility during the transition of stri
3869
1932
  * [#1695](https://github.com/stripe/stripe-node/pull/1695) Migrate generated files to ES module syntax
3870
1933
  * [#1699](https://github.com/stripe/stripe-node/pull/1699) Remove extra test directory
3871
1934
 
3872
- ## 11.14.0-beta.2 - 2023-03-03
3873
- * [#1698](https://github.com/stripe/stripe-node/pull/1698) API Updates for beta branch
3874
- * Updated stable APIs to the latest version
3875
- * Add support for `update_behavior` on `Subscription.prebilling`, `SubscriptionCreateParams.prebilling`, `SubscriptionSchedule.prebilling`, `SubscriptionScheduleCreateParams.prebilling`, `SubscriptionScheduleUpdateParams.prebilling`, and `SubscriptionUpdateParams.prebilling`
3876
- * Add support for `prebilling` on `SubscriptionScheduleAmendParams`
3877
- * Add support for `taxability_override` on `Tax.Calculation.customer_details`, `Tax.Transaction.customer_details`, and `TaxCalculationCreateParams.customer_details`
3878
- * Add support for `tax_summary` on `Tax.Calculation`
3879
- * Remove support for `tax_breakdown` on `Tax.Calculation`
3880
-
3881
- ## 11.14.0-beta.1 - 2023-03-02
3882
- * [#1697](https://github.com/stripe/stripe-node/pull/1697) API Updates for beta branch
3883
- * Updated stable APIs to the latest version
3884
- * Add support for new resources `Issuing.CardBundle` and `Issuing.CardDesign`
3885
- * Add support for `list` and `retrieve` methods on resource `CardBundle`
3886
- * Add support for `list`, `retrieve`, and `update` methods on resource `CardDesign`
3887
- * Remove support for `controller` on `AccountUpdateParams`
3888
- * Add support for `card_design` on `Issuing.Card` and `IssuingCardCreateParams`
3889
- * Add support for new values `issuing_card_design.activated`, `issuing_card_design.deactivated`, and `issuing_card_design.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3890
-
3891
1935
  ## 11.13.0 - 2023-03-02
3892
1936
  * [#1696](https://github.com/stripe/stripe-node/pull/1696) API Updates
3893
1937
  * Add support for new values `electric_vehicle_charging`, `emergency_services_gcas_visa_use_only`, `government_licensed_horse_dog_racing_us_region_only`, `government_licensed_online_casions_online_gambling_us_region_only`, `government_owned_lotteries_non_us_region`, `government_owned_lotteries_us_region_only`, and `marketplaces` on spending control categories.
@@ -3896,14 +1940,6 @@ This was added to maintain backwards compatibility during the transition of stri
3896
1940
 
3897
1941
  * [#1689](https://github.com/stripe/stripe-node/pull/1689) Update v11.8.0 changelog with breaking change disclaimer
3898
1942
 
3899
- ## 11.13.0-beta.1 - 2023-02-23
3900
- * [#1690](https://github.com/stripe/stripe-node/pull/1690) API Updates for beta branch
3901
- * Updated stable APIs to the latest version
3902
- * Add support for `manual_entry` on `Checkout.Session.payment_method_options.us_bank_account.financial_connections`, `PaymentIntent.payment_method_options.us_bank_account.financial_connections`, `PaymentIntentConfirmParams.payment_method_options.us_bank_account.financial_connections`, `PaymentIntentCreateParams.payment_method_options.us_bank_account.financial_connections`, `PaymentIntentUpdateParams.payment_method_options.us_bank_account.financial_connections`, `SetupIntent.payment_method_options.us_bank_account.financial_connections`, `SetupIntentConfirmParams.payment_method_options.us_bank_account.financial_connections`, `SetupIntentCreateParams.payment_method_options.us_bank_account.financial_connections`, and `SetupIntentUpdateParams.payment_method_options.us_bank_account.financial_connections`
3903
- * Add support for new value `igst` on enum `Tax.Calculation.tax_breakdown[].tax_rate_details.tax_type`
3904
- * Change `TaxTransactionCreateParams.reference` to be required
3905
- * Add support for new values `capital.financing_offer.accepted`, `capital.financing_offer.canceled`, `capital.financing_offer.created`, `capital.financing_offer.expired`, `capital.financing_offer.fully_repaid`, `capital.financing_offer.paid_out`, `capital.financing_offer.rejected`, and `capital.financing_offer.replacement_created` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3906
-
3907
1943
  ## 11.12.0 - 2023-02-23
3908
1944
  * [#1688](https://github.com/stripe/stripe-node/pull/1688) API Updates
3909
1945
  * Add support for new value `yoursafe` on enums `Charge.payment_method_details.ideal.bank`, `PaymentIntentConfirmParams.payment_method_data.ideal.bank`, `PaymentIntentCreateParams.payment_method_data.ideal.bank`, `PaymentIntentUpdateParams.payment_method_data.ideal.bank`, `PaymentMethod.ideal.bank`, `PaymentMethodCreateParams.ideal.bank`, `SetupAttempt.payment_method_details.ideal.bank`, `SetupIntentConfirmParams.payment_method_data.ideal.bank`, `SetupIntentCreateParams.payment_method_data.ideal.bank`, and `SetupIntentUpdateParams.payment_method_data.ideal.bank`
@@ -3911,15 +1947,6 @@ This was added to maintain backwards compatibility during the transition of stri
3911
1947
  * Add support for new value `igst` on enums `TaxRate.tax_type`, `TaxRateCreateParams.tax_type`, and `TaxRateUpdateParams.tax_type`
3912
1948
  * [#1687](https://github.com/stripe/stripe-node/pull/1687) Convert TypeScript files to use ES modules
3913
1949
 
3914
- ## 11.12.0-beta.1 - 2023-02-16
3915
- * [#1686](https://github.com/stripe/stripe-node/pull/1686) API Updates for beta branch
3916
- * Updated stable APIs to the latest version
3917
- * Change type of `Quote.status_details.canceled` from `QuotesResourceStatusDetailsCanceledStatusDetails | null` to `QuotesResourceStatusDetailsCanceledStatusDetails`
3918
- * Change type of `Quote.status_details.stale` from `QuotesResourceStatusDetailsStaleStatusDetails | null` to `QuotesResourceStatusDetailsStaleStatusDetails`
3919
- * Change `Quote.status_details.canceled` and `Quote.status_details.stale` to be optional
3920
- * Remove support for `reference` on `Tax.Calculation` and `TaxCalculationCreateParams`
3921
- * Add support for `reference` on `TaxTransactionCreateParams`
3922
-
3923
1950
  ## 11.11.0 - 2023-02-16
3924
1951
  * [#1681](https://github.com/stripe/stripe-node/pull/1681) API Updates
3925
1952
  * Add support for `refund_payment` method on resource `Terminal.Reader`
@@ -3934,32 +1961,9 @@ This was added to maintain backwards compatibility during the transition of stri
3934
1961
  * [#1685](https://github.com/stripe/stripe-node/pull/1685) Add more webhook parsing checks
3935
1962
  * [#1684](https://github.com/stripe/stripe-node/pull/1684) Add infrastructure for mocked tests
3936
1963
 
3937
- ## 11.11.0-beta.1 - 2023-02-13
3938
- * [#1676](https://github.com/stripe/stripe-node/pull/1676) API Updates for beta branch
3939
- * Updated stable APIs to the latest version
3940
- * Add support for `currency_conversion` on `Checkout.Session`
3941
- * Add support for `limits` on `FinancialConnections.Session` and `FinancialConnectionsSessionCreateParams`
3942
- * Remove support for `enabled` on `FinancialConnectionsSessionCreateParams.manual_entry`
3943
-
3944
1964
  ## 11.10.0 - 2023-02-09
3945
1965
  * [#1679](https://github.com/stripe/stripe-node/pull/1679) Enable library to work in worker environments without extra configuration.
3946
1966
 
3947
- ## 11.10.0-beta.1 - 2023-02-02
3948
- * [#1671](https://github.com/stripe/stripe-node/pull/1671) API Updates for beta branch
3949
- * Updated stable APIs to the latest version
3950
- * Add support for new resource `FinancialConnections.Transaction`
3951
- * Add support for `list` method on resource `Transaction`
3952
- * Add support for `prefetch` on `.payment_method_options.us_bank_account.financial_connections` across several APIs
3953
- * Change `CheckoutSessionCreateParams.payment_method_options.paypal.currency`, `IssuingCardholderCreateParams.individual.first_name`, `IssuingCardholderCreateParams.individual.last_name`, `IssuingCardholderUpdateParams.individual.first_name`, `IssuingCardholderUpdateParams.individual.last_name`, and `Quote.subscription_data_overrides[].bill_on_acceptance` to be optional
3954
- * Add support for new values `inferred_balances` and `transactions` on enum `FinancialConnectionsAccountRefreshParams.features[]`
3955
- * Add support for `inferred_balances_refresh`, `subscriptions`, and `transaction_refresh` on `FinancialConnections.Account`
3956
- * Add support for `manual_entry` on `FinancialConnections.Session` and `FinancialConnectionsSessionCreateParams`
3957
- * Add support for `status_details` and `status` on `FinancialConnections.Session`
3958
- * Add support for new value `ownership` on enums `Invoice.payment_settings.payment_method_options.us_bank_account.financial_connections.permissions[]` and `Subscription.payment_settings.payment_method_options.us_bank_account.financial_connections.permissions[]`
3959
- * Add support for `account_number` on `PaymentMethod.us_bank_account`
3960
- * Remove support for `id` on `QuoteCreateParams.lines[].starts_at.line_ends_at`
3961
- * Add support for new values `customer.subscription.paused`, `customer.subscription.resumed`, `financial_connections.account.refreshed_inferred_balances`, `financial_connections.account.refreshed_ownership`, `financial_connections.account.refreshed_transactions`, and `financial_connections.session.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
3962
-
3963
1967
  ## 11.9.1 - 2023-02-03
3964
1968
  * [#1672](https://github.com/stripe/stripe-node/pull/1672) Update main entrypoint on package.json
3965
1969
 
@@ -3985,13 +1989,6 @@ This was added to maintain backwards compatibility during the transition of stri
3985
1989
  * [#1668](https://github.com/stripe/stripe-node/pull/1668) Use EventTarget in worker / browser runtimes
3986
1990
  * [#1667](https://github.com/stripe/stripe-node/pull/1667) fix: added support for TypeScript "NodeNext" module resolution
3987
1991
 
3988
- ## 11.9.0-beta.1 - 2023-01-26
3989
- * [#1666](https://github.com/stripe/stripe-node/pull/1666) API Updates for beta branch
3990
- * Updated stable APIs to the latest version
3991
- * Add support for `billing_agreement_id` on `CheckoutSessionCreateParams.payment_method_options.paypal`
3992
- * Add support for `list_transactions` method on resource `Tax.Transaction`
3993
- * Change type of `QuoteUpdateParams.subscription_data_overrides` from `array(create_specs)` to `emptyStringable(array(update_specs))`
3994
-
3995
1992
  ## 11.8.0 - 2023-01-26
3996
1993
  * [#1665](https://github.com/stripe/stripe-node/pull/1665) API Updates
3997
1994
  * Add support for new value `BE` on enums `Checkout.Session.payment_method_options.customer_balance.bank_transfer.eu_bank_transfer.country`, `Invoice.payment_settings.payment_method_options.customer_balance.bank_transfer.eu_bank_transfer.country`, `PaymentIntent.payment_method_options.customer_balance.bank_transfer.eu_bank_transfer.country`, and `Subscription.payment_settings.payment_method_options.customer_balance.bank_transfer.eu_bank_transfer.country`
@@ -3999,50 +1996,16 @@ This was added to maintain backwards compatibility during the transition of stri
3999
1996
  * [#1660](https://github.com/stripe/stripe-node/pull/1660) Introduce separate entry point for worker environments
4000
1997
  * This is technically a breaking change that explicitly defines package entry points and was mistakenly released in a minor version. If your application previously imported other internal files from stripe-node and this change breaks it, please open an issue detailing your use case.
4001
1998
 
4002
- ## 11.8.0-beta.1 - 2023-01-19
4003
- * [#1662](https://github.com/stripe/stripe-node/pull/1662) API Updates for beta branch
4004
- * Updated stable APIs to the latest version
4005
- * Add support for `Tax.Settings` resource.
4006
-
4007
1999
  ## 11.7.0 - 2023-01-19
4008
2000
  * [#1661](https://github.com/stripe/stripe-node/pull/1661) API Updates
4009
2001
  * Add support for `verification_session` on `EphemeralKeyCreateParams`
4010
2002
  * Add support for new values `refund.created` and `refund.updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
4011
2003
  * [#1647](https://github.com/stripe/stripe-node/pull/1647) Bump json5 from 2.2.1 to 2.2.3
4012
2004
 
4013
- ## 11.7.0-beta.2 - 2023-01-12
4014
- * [#1653](https://github.com/stripe/stripe-node/pull/1653) API Updates for beta branch
4015
- * Updated stable APIs to the latest version
4016
- * Add support for new resource `Tax.Registration`
4017
- * Add support for `create`, `list`, and `update` methods on resource `Registration`
4018
- * Add support for `controller` on `AccountCreateParams` and `AccountUpdateParams`
4019
- * Add support for `application` and `dashboard` on `Account.controller`
4020
- * Change type of `Quote.subscription_data_overrides[].proration_behavior` from `enum('always_invoice'|'create_prorations'|'none')` to `enum('always_invoice'|'create_prorations'|'none') | null`
4021
- * Remove support for `timestamp` on `QuoteLine.actions[].add_discount.discount_end`
4022
- * Change type of `QuoteLine.actions[].add_discount.discount_end.type` from `literal('timestamp')` to `literal('line_ends_at')`
4023
- * Remove support for `index` on `QuoteLine.actions[].add_item.discounts[]`, `QuoteLine.actions[].remove_discount`, `QuoteLine.actions[].set_discounts[]`, `QuoteLine.actions[].set_items[].discounts[]`, `SubscriptionSchedule.phases[].add_invoice_items[].discounts[]`, `SubscriptionSchedule.phases[].discounts[]`, and `SubscriptionSchedule.phases[].items[].discounts[]`
4024
- * Change `QuoteLine.actions[].add_discount.index` to be required
4025
- * Add support for new values `quote.accepting`, `quote.reestimated`, and `quote.stale` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
4026
-
4027
- * Change `quote.draft_quote` implementation from hitting `POST /v1/quotes/{quote}/draft` to `POST /v1/quotes/{quote}/mark_draft`
4028
-
4029
- ## 11.7.0-beta.1 - 2023-01-05
4030
- * [#1648](https://github.com/stripe/stripe-node/pull/1648) API Updates for beta branch
4031
- * Updated stable APIs to the latest version
4032
- * Add support for `mark_stale_quote` method on resource `Quote`
4033
- * Add support for `duration` and `line_ends_at` on `QuoteCreateParams.subscription_data.bill_on_acceptance.bill_until`, `QuoteCreateParams.subscription_data_overrides[].bill_on_acceptance.bill_until`, `QuoteUpdateParams.subscription_data.bill_on_acceptance.bill_until`, and `QuoteUpdateParams.subscription_data_overrides[].bill_on_acceptance.bill_until`
4034
- * Remove support for `line_starts_at` on `QuoteCreateParams.subscription_data.bill_on_acceptance.bill_until`, `QuoteCreateParams.subscription_data_overrides[].bill_on_acceptance.bill_until`, `QuoteUpdateParams.subscription_data.bill_on_acceptance.bill_until`, and `QuoteUpdateParams.subscription_data_overrides[].bill_on_acceptance.bill_until`
4035
- * Add support for `metadata` on `Terminal.Reader.action.refund_payment` and `TerminalReaderRefundPaymentParams`
4036
-
4037
2005
  ## 11.6.0 - 2023-01-05
4038
2006
  * [#1646](https://github.com/stripe/stripe-node/pull/1646) API Updates
4039
2007
  * Add support for `card_issuing` on `Issuing.Cardholder.individual`
4040
2008
 
4041
- ## 11.6.0-beta.1 - 2022-12-22
4042
- * [#1643](https://github.com/stripe/stripe-node/pull/1643) API Updates for beta branch
4043
- * Updated stable APIs to the latest version
4044
- * Move `stripe.taxCalculations` to `stripe.tax.calculations` and `stripe.taxTransactions` to `stripe.tax.transactions`.
4045
-
4046
2009
  ## 11.5.0 - 2022-12-22
4047
2010
  * [#1642](https://github.com/stripe/stripe-node/pull/1642) API Updates
4048
2011
  * Add support for new value `merchant_default` on enums `CashBalanceUpdateParams.settings.reconciliation_mode`, `CustomerCreateParams.cash_balance.settings.reconciliation_mode`, and `CustomerUpdateParams.cash_balance.settings.reconciliation_mode`
@@ -4050,13 +2013,6 @@ This was added to maintain backwards compatibility during the transition of stri
4050
2013
  * Change `Checkout.SessionCreateParams.cancel_url` to be optional
4051
2014
  * Change type of `Checkout.Session.cancel_url` from `string` to `string | null`
4052
2015
 
4053
- ## 11.5.0-beta.1 - 2022-12-15
4054
- * [#1640](https://github.com/stripe/stripe-node/pull/1640) API Updates for beta branch
4055
- * Updated stable APIs to the latest version
4056
- * Add support for new resources `QuoteLine`, `TaxCalculation`, and `TaxTransaction`
4057
- * Add support for `create` and `list_line_items` methods on resource `TaxCalculation`
4058
- * Add support for `create_reversal`, `create`, and `retrieve` methods on resource `TaxTransaction`
4059
-
4060
2016
  ## 11.4.0 - 2022-12-15
4061
2017
  * [#1639](https://github.com/stripe/stripe-node/pull/1639) API Updates
4062
2018
  * Add support for new value `invoice_overpaid` on enum `CustomerBalanceTransaction.type`
@@ -4066,12 +2022,6 @@ This was added to maintain backwards compatibility during the transition of stri
4066
2022
  * [#1634](https://github.com/stripe/stripe-node/pull/1634) API Updates
4067
2023
  * Change `CustomerListPaymentMethodsParams.type` and `PaymentMethodListParams.type` to be optional
4068
2024
 
4069
- ## 11.3.0-beta.1 - 2022-12-08
4070
- * [#1635](https://github.com/stripe/stripe-node/pull/1635) API Updates for beta branch
4071
- * Updated stable APIs to the latest version
4072
- * [#1633](https://github.com/stripe/stripe-node/pull/1633) API Updates for beta branch
4073
- * Updated stable APIs to the latest version
4074
-
4075
2025
  ## 11.2.0 - 2022-12-06
4076
2026
  * [#1632](https://github.com/stripe/stripe-node/pull/1632) API Updates
4077
2027
  * Add support for `flow_data` on `BillingPortal.SessionCreateParams`
@@ -4095,6 +2045,7 @@ This was added to maintain backwards compatibility during the transition of stri
4095
2045
  * Add support for `custom_text` on `Checkout.Session`, `Checkout.SessionCreateParams`, `PaymentLinkCreateParams`, `PaymentLinkUpdateParams`, and `PaymentLink`
4096
2046
  * Add support for `hosted_instructions_url` on `PaymentIntent.next_action.paynow_display_qr_code`
4097
2047
 
2048
+
4098
2049
  ## 11.0.0 - 2022-11-16
4099
2050
 
4100
2051
  This release includes breaking changes resulting from moving to use the new API version "2022-11-15". To learn more about these changes to Stripe products, see https://docs.stripe.com/changelog/2022-11-15
@@ -4164,12 +2115,6 @@ This release includes breaking changes resulting from moving to use the new API
4164
2115
  * Remove deprecated `amount` field on `Checkout.Session.LineItem`. (#1614 )
4165
2116
  * Remove support for `tos_shown_and_accepted` on `Checkout.Session.PaymentMethodOptions.Paynow`. (#1614 )
4166
2117
 
4167
- ## 10.18.0-beta.1 - 2022-11-10
4168
- * [#1616](https://github.com/stripe/stripe-node/pull/1616) API Updates for beta branch
4169
- * Updated stable APIs to the latest version
4170
- * Add `discount_end` to `Discount`.
4171
- * Add `url` to `MerchantData`.
4172
-
4173
2118
  ## 10.17.0 - 2022-11-08
4174
2119
  * [#1610](https://github.com/stripe/stripe-node/pull/1610) API Updates
4175
2120
  * Add support for new values `eg_tin`, `ph_tin`, and `tr_tin` on enums `Checkout.Session.customer_details.tax_ids[].type`, `Invoice.customer_tax_ids[].type`, `Order.tax_details.tax_ids[].type`, and `TaxId.type`
@@ -4182,22 +2127,6 @@ This release includes breaking changes resulting from moving to use the new API
4182
2127
  * Add support for `on_behalf_of` on `Checkout.SessionCreateParams.subscription_data`, `SubscriptionCreateParams`, `SubscriptionSchedule.default_settings`, `SubscriptionSchedule.phases[]`, `SubscriptionScheduleCreateParams.default_settings`, `SubscriptionScheduleCreateParams.phases[]`, `SubscriptionScheduleUpdateParams.default_settings`, `SubscriptionScheduleUpdateParams.phases[]`, `SubscriptionUpdateParams`, and `Subscription`
4183
2128
  * Add support for `tax_behavior` and `tax_code` on `InvoiceItemCreateParams`, `InvoiceItemUpdateParams`, `InvoiceUpcomingLinesParams.invoice_items[]`, and `InvoiceUpcomingParams.invoice_items[]`
4184
2129
 
4185
- ## 10.16.0-beta.2 - 2022-11-02
4186
- * [#1598](https://github.com/stripe/stripe-node/pull/1598) API Updates for beta branch
4187
- * Updated beta APIs to the latest stable version
4188
- * Add support for `cashappPayments` and `zipPayments` on `Account`.
4189
- * Add support for `cashapp` and `zip` on `Charge`, `PaymentMethod`.
4190
- * Add support for `trialSettings` on `SubscriptionSchedule`.
4191
-
4192
- ## 10.16.0-beta.1 - 2022-10-21
4193
- * [#1589](https://github.com/stripe/stripe-node/pull/1589) API Updates for beta branch
4194
- * Updated stable APIs to the latest version
4195
- * Add support for new value `revoked` on enum `CapitalFinancingOfferListParams.status`
4196
- * Add support for `paypal` on `Charge.payment_method_details` and `Source`
4197
- * Add support for `network_data` on `Issuing.Transaction`
4198
- * Add support for new value `paypal` on enum `Source.type`
4199
- * Add support for `billing_cycle_anchor` on `SubscriptionScheduleAmendParams.amendments[]`
4200
-
4201
2130
  ## 10.15.0 - 2022-10-20
4202
2131
  * [#1588](https://github.com/stripe/stripe-node/pull/1588) API Updates
4203
2132
  * Add support for new values `jp_trn` and `ke_pin` on enums `Checkout.Session.customer_details.tax_ids[].type`, `Invoice.customer_tax_ids[].type`, `Order.tax_details.tax_ids[].type`, and `TaxId.type`
@@ -4205,11 +2134,6 @@ This release includes breaking changes resulting from moving to use the new API
4205
2134
  * Add support for `tipping` on `Terminal.Reader.action.process_payment_intent.process_config` and `Terminal.ReaderProcessPaymentIntentParams.process_config`
4206
2135
  * [#1585](https://github.com/stripe/stripe-node/pull/1585) use native UUID method if available
4207
2136
 
4208
- ## 10.15.0-beta.1 - 2022-10-14
4209
- * Add support for `schedule_settings` on `SubscriptionScheduleAmendParams`
4210
- * Add support for new value `upcoming_invoice` on enum `SubscriptionScheduleAmendParams.amendments[].amendment_end.type`
4211
- * Add support for new values `schedule_end` and `upcoming_invoice` on enum `SubscriptionScheduleAmendParams.amendments[].amendment_start.type`
4212
-
4213
2137
  ## 10.14.0 - 2022-10-13
4214
2138
  * [#1582](https://github.com/stripe/stripe-node/pull/1582) API Updates
4215
2139
  * Add support for new values `invalid_representative_country` and `verification_failed_residential_address` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `Capability.future_requirements.errors[].code`, `Capability.requirements.errors[].code`, `Person.future_requirements.errors[].code`, and `Person.requirements.errors[].code`
@@ -4217,11 +2141,6 @@ This release includes breaking changes resulting from moving to use the new API
4217
2141
  * Add support for `network_data` on `Issuing.Authorization`
4218
2142
  * ⚠️ Remove `currency`, `description`, `images`, and `name` from `Checkout.SessionCreateParams`. These properties do not work on the latest API version. (fixes #1575)
4219
2143
 
4220
- ## 10.14.0-beta.1 - 2022-10-07
4221
- * [#1572](https://github.com/stripe/stripe-node/pull/1572) API Updates for beta branch
4222
- * Updated stable APIs to the latest version
4223
- * Add `reference_id` to `Paypal` interface.
4224
-
4225
2144
  ## 10.13.0 - 2022-10-06
4226
2145
  * [#1571](https://github.com/stripe/stripe-node/pull/1571) API Updates
4227
2146
  * Add support for new value `invalid_dob_age_under_18` on enums `Account.future_requirements.errors[].code`, `Account.requirements.errors[].code`, `Capability.future_requirements.errors[].code`, `Capability.requirements.errors[].code`, `Person.future_requirements.errors[].code`, and `Person.requirements.errors[].code`
@@ -4242,11 +2161,6 @@ This release includes breaking changes resulting from moving to use the new API
4242
2161
  * [#1562](https://github.com/stripe/stripe-node/pull/1562) Restore lib after generating
4243
2162
  * [#1551](https://github.com/stripe/stripe-node/pull/1551) Re-introduce Typescript changes
4244
2163
 
4245
- ## 10.12.0-beta.1 - 2022-09-26
4246
- * [#1561](https://github.com/stripe/stripe-node/pull/1561) API Updates for beta branch
4247
- * Updated stable APIs to the latest version
4248
- * Add `FinancingOffer`, `FinancingSummary` and `FinancingTransaction` resources.
4249
-
4250
2164
  ## 10.11.0 - 2022-09-22
4251
2165
  * [#1560](https://github.com/stripe/stripe-node/pull/1560) API Updates
4252
2166
  * Add support for `terms_of_service` on `Checkout.Session.consent_collection`, `Checkout.Session.consent`, `Checkout.SessionCreateParams.consent_collection`, `PaymentLink.consent_collection`, and `PaymentLinkCreateParams.consent_collection`
@@ -4254,6 +2168,7 @@ This release includes breaking changes resulting from moving to use the new API
4254
2168
  * Add support for `statement_descriptor` on `PaymentIntentIncrementAuthorizationParams`
4255
2169
  * Change `SubscriptionSchedule.phases[].currency` to be required
4256
2170
 
2171
+
4257
2172
  ## 10.10.0 - 2022-09-15
4258
2173
  * [#1552](https://github.com/stripe/stripe-node/pull/1552) API Updates
4259
2174
  * Add support for `pix` on `Charge.payment_method_details`, `Checkout.Session.payment_method_options`, `Checkout.SessionCreateParams.payment_method_options`, `PaymentIntent.payment_method_options`, `PaymentIntentConfirmParams.payment_method_data`, `PaymentIntentConfirmParams.payment_method_options`, `PaymentIntentCreateParams.payment_method_data`, `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_data`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentMethodCreateParams`, `PaymentMethod`, `SetupIntentConfirmParams.payment_method_data`, `SetupIntentCreateParams.payment_method_data`, and `SetupIntentUpdateParams.payment_method_data`
@@ -4296,11 +2211,6 @@ This release includes breaking changes resulting from moving to use the new API
4296
2211
  * [#1532](https://github.com/stripe/stripe-node/pull/1532) Update coveralls step to run for one node version, remove finish step
4297
2212
  * [#1531](https://github.com/stripe/stripe-node/pull/1531) Regen yarn.lock.
4298
2213
 
4299
- ## 10.6.0-beta.1 - 2022-08-26
4300
- * [#1529](https://github.com/stripe/stripe-node/pull/1529) API Updates for beta branch
4301
- * Updated stable APIs to the latest version
4302
- * Add support for the beta [Gift Card API](https://stripe.com/docs/gift-cards).
4303
-
4304
2214
  ## 10.5.0 - 2022-08-24
4305
2215
  * [#1527](https://github.com/stripe/stripe-node/pull/1527) fix: Update FetchHttpClient to send empty string for empty POST/PUT/PATCH requests.
4306
2216
  * [#1528](https://github.com/stripe/stripe-node/pull/1528) Update README.md to use a new NOTE notation
@@ -4315,11 +2225,6 @@ This release includes breaking changes resulting from moving to use the new API
4315
2225
  * Change the return type of `Customer.fundCashBalance` test helper from `CustomerBalanceTransaction` to `CustomerCashBalanceTransaction`.
4316
2226
  * This would generally be considered a breaking change, but we've worked with all existing users to migrate and are comfortable releasing this as a minor as it is solely a test helper method. This was essentially broken prior to this change.
4317
2227
 
4318
- ## 10.4.0-beta.1 - 2022-08-23
4319
- * [#1523](https://github.com/stripe/stripe-node/pull/1523) API Updates for beta branch
4320
- - Updated stable APIs to the latest version
4321
- - `Stripe-Version` beta headers are not pinned by-default and need to be manually specified, please refer to [beta SDKs README section](https://github.com/stripe/stripe-node/blob/master/README.md#beta-sdks)
4322
- * [#1521](https://github.com/stripe/stripe-node/pull/1521) fix: Update FetchHttpClient to send empty string for empty POST/PUT/PATCH requests.
4323
2228
 
4324
2229
  ## 10.3.0 - 2022-08-19
4325
2230
  * [#1516](https://github.com/stripe/stripe-node/pull/1516) API Updates
@@ -4332,15 +2237,11 @@ This release includes breaking changes resulting from moving to use the new API
4332
2237
  * Add support for new value `customer_cash_balance_transaction.created` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`
4333
2238
  * [#1515](https://github.com/stripe/stripe-node/pull/1515) Add a support section to the readme
4334
2239
 
4335
- ## 10.3.0-beta.1 - 2022-08-11
4336
- * [#1511](https://github.com/stripe/stripe-node/pull/1511) API Updates for beta branch
4337
- - Updated stable APIs to the latest version
4338
- - Add refund_payment method to Terminal resource
4339
-
4340
2240
  ## 10.2.0 - 2022-08-11
4341
2241
  * [#1510](https://github.com/stripe/stripe-node/pull/1510) API Updates
4342
2242
  * Add support for `payment_method_collection` on `Checkout.Session`, `Checkout.SessionCreateParams`, `PaymentLinkCreateParams`, `PaymentLinkUpdateParams`, and `PaymentLink`
4343
2243
 
2244
+
4344
2245
  ## 10.1.0 - 2022-08-09
4345
2246
  * [#1506](https://github.com/stripe/stripe-node/pull/1506) API Updates
4346
2247
  * Add support for `process_config` on `Terminal.Reader.action.process_payment_intent`
@@ -4350,11 +2251,6 @@ This release includes breaking changes resulting from moving to use the new API
4350
2251
  * [#1503](https://github.com/stripe/stripe-node/pull/1503) API Updates
4351
2252
  * Add support for `expires_at` on `Apps.Secret` and `Apps.SecretCreateParams`
4352
2253
 
4353
- ## 10.1.0-beta.1 - 2022-08-03
4354
- * [#1498](https://github.com/stripe/stripe-node/pull/1498) API Updates for beta branch
4355
- - Updated stable APIs to the latest version
4356
- - Added the `Order` resource support
4357
-
4358
2254
  ## 10.0.0 - 2022-08-02
4359
2255
 
4360
2256
  This release includes breaking changes resulting from:
@@ -4415,20 +2311,6 @@ This release includes breaking changes resulting from:
4415
2311
  * Add support for `mandate` on `InvoicePayParams`
4416
2312
  * Add support for `product_data` on `OrderCreateParams.line_items[]` and `OrderUpdateParams.line_items[]`
4417
2313
 
4418
- ## 9.15.0-beta.1 - 2022-07-22
4419
- * [#1485](https://github.com/stripe/stripe-node/pull/1485) API Updates for beta branch
4420
- - Updated stable APIs to the latest version
4421
- * [#1483](https://github.com/stripe/stripe-node/pull/1483) API Updates for beta branch
4422
- - Updated stable APIs to the latest version
4423
- - Add `QuotePhase` resource
4424
- * [#1479](https://github.com/stripe/stripe-node/pull/1479) API Updates for beta branch
4425
- - Updated stable APIs to the latest version
4426
- - Add `Price.migrate_to` property
4427
- - Add `SubscriptionSchedule.amend` method.
4428
- - Add `Discount.subscription_item` property.
4429
- - Add `Quote.subscription_data.billing_behavior`, `billing_cycle_anchor`, `end_behavior`, `from_schedule`, `from_subscription`, `prebilling`, `proration_behavior` properties.
4430
- - Add `phases` parameter to `Quote.create`
4431
- - Add `Subscription.discounts`, `prebilling` properties.
4432
2314
 
4433
2315
  ## 9.14.0 - 2022-07-18
4434
2316
  * [#1477](https://github.com/stripe/stripe-node/pull/1477) API Updates
@@ -4452,18 +2334,6 @@ This release includes breaking changes resulting from:
4452
2334
  * Change `Transfer.source_type` to be optional and not nullable
4453
2335
  * [#1471](https://github.com/stripe/stripe-node/pull/1471) Update readme to include a note on beta packages
4454
2336
 
4455
- ## 9.13.0-beta.1 - 2022-07-07
4456
- * [#1469](https://github.com/stripe/stripe-node/pull/1469) API Updates for beta branch
4457
- - Include `server_side_confirmation_beta=v1` beta
4458
- - Add `secretKeyConfirmation` to `PaymentIntent`
4459
- * [#1451](https://github.com/stripe/stripe-node/pull/1451) API Updates
4460
- - Updated stable APIs to the latest version
4461
- * [#1457](https://github.com/stripe/stripe-node/pull/1457) Use the generated API version
4462
- * [#1445](https://github.com/stripe/stripe-node/pull/1445) Support updating pre-release versions
4463
- * [#1442](https://github.com/stripe/stripe-node/pull/1442) API Updates
4464
- * Add support for `network_details` method on resource `ReceivedCredits`/`ReceivedDebits`
4465
- * [#1444](https://github.com/stripe/stripe-node/pull/1444) Merge master branch into beta branch
4466
-
4467
2337
  ## 9.12.0 - 2022-07-07
4468
2338
  * [#1468](https://github.com/stripe/stripe-node/pull/1468) API Updates
4469
2339
  * Add support for `currency` on `Checkout.SessionCreateParams`, `InvoiceUpcomingLinesParams`, `InvoiceUpcomingParams`, `PaymentLinkCreateParams`, `SubscriptionCreateParams`, `SubscriptionSchedule.phases[]`, `SubscriptionScheduleCreateParams.phases[]`, `SubscriptionScheduleUpdateParams.phases[]`, and `Subscription`
@@ -4526,10 +2396,6 @@ This release includes breaking changes resulting from:
4526
2396
  * Change type of `Order.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `OrderCreateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `OrderUpdateParams.payment.settings.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `PaymentIntent.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `PaymentIntentConfirmParams.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, `PaymentIntentCreateParams.payment_method_options.customer_balance.bank_transfer.requested_address_types[]`, and `PaymentIntentUpdateParams.payment_method_options.customer_balance.bank_transfer.requested_address_types[]` from `literal('zengin')` to `enum`
4527
2397
  * Add support for `custom_unit_amount` on `PriceCreateParams` and `Price`
4528
2398
 
4529
- ## 9.8.0-beta.1 - 2022-06-08
4530
- * [#1442](https://github.com/stripe/stripe-node/pull/1442) API Updates
4531
- * Add support for `network_details` method on resource `ReceivedCredits`/`ReceivedDebits`
4532
-
4533
2399
  ## 9.7.0 - 2022-06-08
4534
2400
  * [#1441](https://github.com/stripe/stripe-node/pull/1441) API Updates
4535
2401
  * Add support for `affirm`, `bancontact`, `card`, `ideal`, `p24`, and `sofort` on `Checkout.Session.payment_method_options` and `Checkout.SessionCreateParams.payment_method_options`
@@ -4550,6 +2416,7 @@ This release includes breaking changes resulting from:
4550
2416
  * Add support for `network` on `SetupIntent.payment_method_options.card`
4551
2417
  * Add support for new value `simulated_wisepos_e` on enums `Terminal.Reader.device_type` and `Terminal.ReaderListParams.device_type`
4552
2418
 
2419
+
4553
2420
  ## 9.5.0 - 2022-05-26
4554
2421
  * [#1434](https://github.com/stripe/stripe-node/pull/1434) API Updates
4555
2422
  * Add support for `affirm_payments` and `link_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
@@ -4620,6 +2487,7 @@ Major version release - The [migration guide](https://github.com/stripe/stripe-n
4620
2487
  * Add support for `default_price` on `ProductUpdateParams` and `Product`
4621
2488
  * Add support for `instructions_email` on `RefundCreateParams` and `Refund`
4622
2489
 
2490
+
4623
2491
  ## 8.221.0 - 2022-05-05
4624
2492
  * [#1413](https://github.com/stripe/stripe-node/pull/1413) API Updates
4625
2493
  * Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session`
@@ -4896,6 +2764,7 @@ Major version release - The [migration guide](https://github.com/stripe/stripe-n
4896
2764
  * [#1297](https://github.com/stripe/stripe-node/pull/1297) API Updates
4897
2765
  * Add support for `automatic_payment_methods` on `PaymentIntentCreateParams` and `PaymentIntent`
4898
2766
 
2767
+
4899
2768
  ## 8.189.0 - 2021-11-16
4900
2769
  * [#1295](https://github.com/stripe/stripe-node/pull/1295) API Updates
4901
2770
  * Add support for new resource `ShippingRate`
@@ -4918,6 +2787,7 @@ Major version release - The [migration guide](https://github.com/stripe/stripe-n
4918
2787
  * Remove support for `ownership_declaration_shown_and_signed` on `TokenCreateParams.account`. This API was unused.
4919
2788
  * Add support for `ownership_declaration_shown_and_signed` on `TokenCreateParams.account.company`
4920
2789
 
2790
+
4921
2791
  ## 8.186.0 - 2021-11-01
4922
2792
  * [#1283](https://github.com/stripe/stripe-node/pull/1283) API Updates
4923
2793
  * Add support for `ownership_declaration` on `AccountUpdateParams.company`, `AccountCreateParams.company`, `Account.company`, and `TokenCreateParams.account.company`
@@ -5061,6 +2931,7 @@ Major version release - The [migration guide](https://github.com/stripe/stripe-n
5061
2931
  * Add support for `wallet` on `Issuing.Transaction`
5062
2932
  * Add support for `ideal` on `PaymentIntentCreateParams.payment_method_options`, `PaymentIntentUpdateParams.payment_method_options`, `PaymentIntentConfirmParams.payment_method_options`, and `PaymentIntent.payment_method_options`
5063
2933
 
2934
+
5064
2935
  ## 8.163.0 - 2021-07-15
5065
2936
  * [#1102](https://github.com/stripe/stripe-node/pull/1102), [#1191](https://github.com/stripe/stripe-node/pull/1191) Add support for `stripeAccount` when initializing the client
5066
2937
 
@@ -6597,10 +4468,6 @@ Pull requests included in this release (cf. [#606](https://github.com/stripe/str
6597
4468
 
6598
4469
  - [BUGFIX] Fix user-agent header issue (see issue #75)
6599
4470
 
6600
- ## 2.2.1 - 2013-12-01
6601
-
6602
- - [BUGFIX] Fix user-agent header issue (see issue #75)
6603
-
6604
4471
  ## 2.2.0 - 2013-11-09
6605
4472
 
6606
4473
  - Add support for setTimeout
@@ -6660,4 +4527,3 @@ Pull requests included in this release (cf. [#606](https://github.com/stripe/str
6660
4527
  ## 0.0.2 - 2011-09-28
6661
4528
 
6662
4529
  - Initial release with customers and tokens APIs
6663
-