stripe 18.0.0 → 18.1.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (289) hide show
  1. package/CHANGELOG.md +1155 -242
  2. package/OPENAPI_VERSION +1 -1
  3. package/README.md +1 -0
  4. package/VERSION +1 -1
  5. package/cjs/Error.js +91 -1
  6. package/cjs/apiVersion.js +1 -1
  7. package/cjs/resources/AccountNotices.js +21 -0
  8. package/cjs/resources/BalanceSettings.js +10 -0
  9. package/cjs/resources/Capital/FinancingOffers.js +21 -0
  10. package/cjs/resources/Capital/FinancingSummary.js +12 -0
  11. package/cjs/resources/Capital/FinancingTransactions.js +17 -0
  12. package/cjs/resources/ExternalAccounts.js +23 -0
  13. package/cjs/resources/FinancialConnections/Accounts.js +5 -0
  14. package/cjs/resources/FinancialConnections/Institutions.js +17 -0
  15. package/cjs/resources/GiftCards/Cards.js +23 -0
  16. package/cjs/resources/GiftCards/Transactions.js +33 -0
  17. package/cjs/resources/Invoices.js +17 -0
  18. package/cjs/resources/Issuing/CreditUnderwritingRecords.js +33 -0
  19. package/cjs/resources/Issuing/DisputeSettlementDetails.js +17 -0
  20. package/cjs/resources/Issuing/FraudLiabilityDebits.js +17 -0
  21. package/cjs/resources/Margins.js +22 -0
  22. package/cjs/resources/Orders.js +24 -0
  23. package/cjs/resources/{InvoicePayments.js → PaymentAttemptRecords.js} +4 -4
  24. package/cjs/resources/PaymentIntents.js +8 -0
  25. package/cjs/resources/PaymentRecords.js +29 -0
  26. package/cjs/resources/Quotes.js +32 -0
  27. package/cjs/resources/SubscriptionSchedules.js +4 -0
  28. package/cjs/resources/Tax/Associations.js +9 -0
  29. package/cjs/resources/Tax/Forms.js +20 -0
  30. package/cjs/resources/Terminal/ReaderCollectedData.js +12 -0
  31. package/cjs/resources/Terminal/Readers.js +12 -0
  32. package/cjs/resources/TestHelpers/Terminal/Readers.js +8 -0
  33. package/cjs/resources/V2/Core/AccountLinks.js +9 -0
  34. package/cjs/resources/V2/Core/Accounts/Persons.js +29 -0
  35. package/cjs/resources/V2/Core/Accounts.js +25 -0
  36. package/cjs/resources/V2/Core/Vault/GbBankAccounts.js +28 -0
  37. package/cjs/resources/V2/Core/Vault/UsBankAccounts.js +24 -0
  38. package/cjs/resources/V2/MoneyManagement/Adjustments.js +17 -0
  39. package/cjs/resources/V2/MoneyManagement/FinancialAccounts.js +17 -0
  40. package/cjs/resources/V2/MoneyManagement/FinancialAddresses.js +21 -0
  41. package/cjs/resources/V2/MoneyManagement/InboundTransfers.js +21 -0
  42. package/cjs/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +12 -0
  43. package/cjs/resources/V2/MoneyManagement/OutboundPayments.js +25 -0
  44. package/cjs/resources/V2/MoneyManagement/OutboundSetupIntents.js +29 -0
  45. package/cjs/resources/V2/MoneyManagement/OutboundTransfers.js +25 -0
  46. package/cjs/resources/V2/MoneyManagement/PayoutMethods.js +25 -0
  47. package/cjs/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +12 -0
  48. package/cjs/resources/V2/MoneyManagement/ReceivedCredits.js +17 -0
  49. package/cjs/resources/V2/MoneyManagement/ReceivedDebits.js +17 -0
  50. package/cjs/resources/V2/MoneyManagement/TransactionEntries.js +17 -0
  51. package/cjs/resources/V2/MoneyManagement/Transactions.js +17 -0
  52. package/cjs/resources/V2/TestHelpers/FinancialAddresses.js +16 -0
  53. package/cjs/resources.js +102 -18
  54. package/cjs/stripe.core.js +1 -1
  55. package/esm/Error.js +79 -0
  56. package/esm/apiVersion.js +1 -1
  57. package/esm/resources/AccountNotices.js +18 -0
  58. package/esm/resources/BalanceSettings.js +7 -0
  59. package/esm/resources/Capital/FinancingOffers.js +18 -0
  60. package/esm/resources/Capital/FinancingSummary.js +9 -0
  61. package/esm/resources/Capital/FinancingTransactions.js +14 -0
  62. package/esm/resources/ExternalAccounts.js +20 -0
  63. package/esm/resources/FinancialConnections/Accounts.js +5 -0
  64. package/esm/resources/FinancialConnections/Institutions.js +14 -0
  65. package/esm/resources/GiftCards/Cards.js +20 -0
  66. package/esm/resources/GiftCards/Transactions.js +30 -0
  67. package/esm/resources/Invoices.js +17 -0
  68. package/esm/resources/Issuing/CreditUnderwritingRecords.js +30 -0
  69. package/esm/resources/Issuing/DisputeSettlementDetails.js +14 -0
  70. package/esm/resources/Issuing/FraudLiabilityDebits.js +14 -0
  71. package/esm/resources/Margins.js +19 -0
  72. package/esm/resources/Orders.js +21 -0
  73. package/esm/resources/{InvoicePayments.js → PaymentAttemptRecords.js} +3 -3
  74. package/esm/resources/PaymentIntents.js +8 -0
  75. package/esm/resources/PaymentRecords.js +26 -0
  76. package/esm/resources/Quotes.js +32 -0
  77. package/esm/resources/SubscriptionSchedules.js +4 -0
  78. package/esm/resources/Tax/Associations.js +6 -0
  79. package/esm/resources/Tax/Forms.js +17 -0
  80. package/esm/resources/Terminal/ReaderCollectedData.js +9 -0
  81. package/esm/resources/Terminal/Readers.js +12 -0
  82. package/esm/resources/TestHelpers/Terminal/Readers.js +8 -0
  83. package/esm/resources/V2/Core/AccountLinks.js +6 -0
  84. package/esm/resources/V2/Core/Accounts/Persons.js +26 -0
  85. package/esm/resources/V2/Core/Accounts.js +22 -0
  86. package/esm/resources/V2/Core/Vault/GbBankAccounts.js +25 -0
  87. package/esm/resources/V2/Core/Vault/UsBankAccounts.js +21 -0
  88. package/esm/resources/V2/MoneyManagement/Adjustments.js +14 -0
  89. package/esm/resources/V2/MoneyManagement/FinancialAccounts.js +14 -0
  90. package/esm/resources/V2/MoneyManagement/FinancialAddresses.js +18 -0
  91. package/esm/resources/V2/MoneyManagement/InboundTransfers.js +18 -0
  92. package/esm/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +9 -0
  93. package/esm/resources/V2/MoneyManagement/OutboundPayments.js +22 -0
  94. package/esm/resources/V2/MoneyManagement/OutboundSetupIntents.js +26 -0
  95. package/esm/resources/V2/MoneyManagement/OutboundTransfers.js +22 -0
  96. package/esm/resources/V2/MoneyManagement/PayoutMethods.js +22 -0
  97. package/esm/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +9 -0
  98. package/esm/resources/V2/MoneyManagement/ReceivedCredits.js +14 -0
  99. package/esm/resources/V2/MoneyManagement/ReceivedDebits.js +14 -0
  100. package/esm/resources/V2/MoneyManagement/TransactionEntries.js +14 -0
  101. package/esm/resources/V2/MoneyManagement/Transactions.js +14 -0
  102. package/esm/resources/V2/TestHelpers/FinancialAddresses.js +13 -0
  103. package/esm/resources.js +79 -1
  104. package/esm/stripe.core.js +1 -1
  105. package/package.json +1 -1
  106. package/types/AccountLinksResource.d.ts +5 -1
  107. package/types/AccountNotices.d.ts +113 -0
  108. package/types/AccountNoticesResource.d.ts +98 -0
  109. package/types/AccountSessions.d.ts +45 -0
  110. package/types/AccountSessionsResource.d.ts +243 -0
  111. package/types/Accounts.d.ts +212 -1
  112. package/types/AccountsResource.d.ts +544 -0
  113. package/types/BalanceSettings.d.ts +85 -0
  114. package/types/BalanceSettingsResource.d.ts +108 -0
  115. package/types/Billing/CreditBalanceSummary.d.ts +5 -0
  116. package/types/Billing/CreditBalanceSummaryResource.d.ts +8 -3
  117. package/types/Billing/CreditBalanceTransactionsResource.d.ts +12 -4
  118. package/types/Billing/CreditGrants.d.ts +5 -0
  119. package/types/Billing/CreditGrantsResource.d.ts +11 -1
  120. package/types/Billing/MeterErrorReports.d.ts +106 -0
  121. package/types/BillingPortal/Sessions.d.ts +5 -0
  122. package/types/BillingPortal/SessionsResource.d.ts +12 -4
  123. package/types/Capital/FinancingOffers.d.ts +188 -0
  124. package/types/Capital/FinancingOffersResource.d.ts +97 -0
  125. package/types/Capital/FinancingSummary.d.ts +106 -0
  126. package/types/Capital/FinancingSummaryResource.d.ts +27 -0
  127. package/types/Capital/FinancingTransactions.d.ts +135 -0
  128. package/types/Capital/FinancingTransactionsResource.d.ts +68 -0
  129. package/types/Cards.d.ts +5 -0
  130. package/types/CashBalances.d.ts +5 -0
  131. package/types/Charges.d.ts +166 -0
  132. package/types/ChargesResource.d.ts +1294 -0
  133. package/types/Checkout/Sessions.d.ts +312 -3
  134. package/types/Checkout/SessionsResource.d.ts +244 -1
  135. package/types/ConfirmationTokens.d.ts +151 -0
  136. package/types/Coupons.d.ts +1 -1
  137. package/types/CreditNoteLineItems.d.ts +17 -0
  138. package/types/CreditNotes.d.ts +9 -0
  139. package/types/CreditNotesResource.d.ts +5 -0
  140. package/types/CustomerBalanceTransactions.d.ts +2 -0
  141. package/types/CustomerCashBalanceTransactions.d.ts +2 -0
  142. package/types/CustomerSessions.d.ts +5 -0
  143. package/types/CustomerSessionsResource.d.ts +6 -1
  144. package/types/Customers.d.ts +2 -0
  145. package/types/CustomersResource.d.ts +8 -0
  146. package/types/Discounts.d.ts +10 -0
  147. package/types/Errors.d.ts +69 -2
  148. package/types/EventTypes.d.ts +596 -0
  149. package/types/Events.d.ts +96 -1
  150. package/types/ExternalAccountsResource.d.ts +219 -0
  151. package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
  152. package/types/FinancialConnections/Accounts.d.ts +31 -1
  153. package/types/FinancialConnections/AccountsResource.d.ts +40 -3
  154. package/types/FinancialConnections/Institutions.d.ts +93 -0
  155. package/types/FinancialConnections/InstitutionsResource.d.ts +47 -0
  156. package/types/FinancialConnections/Sessions.d.ts +51 -1
  157. package/types/FinancialConnections/SessionsResource.d.ts +43 -1
  158. package/types/GiftCards/Cards.d.ts +118 -0
  159. package/types/GiftCards/CardsResource.d.ts +159 -0
  160. package/types/GiftCards/Transactions.d.ts +129 -0
  161. package/types/GiftCards/TransactionsResource.d.ts +201 -0
  162. package/types/Identity/VerificationSessions.d.ts +5 -0
  163. package/types/Identity/VerificationSessionsResource.d.ts +7 -0
  164. package/types/InvoiceItems.d.ts +10 -0
  165. package/types/InvoiceItemsResource.d.ts +117 -6
  166. package/types/InvoiceLineItems.d.ts +45 -1
  167. package/types/InvoicePayments.d.ts +5 -0
  168. package/types/Invoices.d.ts +141 -3
  169. package/types/InvoicesResource.d.ts +1545 -6
  170. package/types/Issuing/CardholdersResource.d.ts +2 -1
  171. package/types/Issuing/CreditUnderwritingRecords.d.ts +451 -0
  172. package/types/Issuing/CreditUnderwritingRecordsResource.d.ts +1032 -0
  173. package/types/Issuing/DisputeSettlementDetails.d.ts +85 -0
  174. package/types/Issuing/DisputeSettlementDetailsResource.d.ts +52 -0
  175. package/types/Issuing/FraudLiabilityDebits.d.ts +52 -0
  176. package/types/Issuing/FraudLiabilityDebitsResource.d.ts +52 -0
  177. package/types/Issuing/Settlements.d.ts +113 -0
  178. package/types/Issuing/Transactions.d.ts +5 -0
  179. package/types/Issuing/TransactionsResource.d.ts +5 -0
  180. package/types/LineItems.d.ts +49 -0
  181. package/types/Mandates.d.ts +77 -0
  182. package/types/Margins.d.ts +56 -0
  183. package/types/MarginsResource.d.ts +114 -0
  184. package/types/Orders.d.ts +1189 -0
  185. package/types/OrdersResource.d.ts +2981 -0
  186. package/types/PaymentAttemptRecords.d.ts +2112 -0
  187. package/types/PaymentAttemptRecordsResource.d.ts +47 -0
  188. package/types/PaymentIntents.d.ts +679 -2
  189. package/types/PaymentIntentsResource.d.ts +8437 -3941
  190. package/types/PaymentLinks.d.ts +6 -0
  191. package/types/PaymentLinksResource.d.ts +12 -0
  192. package/types/PaymentMethodConfigurations.d.ts +180 -0
  193. package/types/PaymentMethodConfigurationsResource.d.ts +250 -0
  194. package/types/PaymentMethods.d.ts +120 -0
  195. package/types/PaymentMethodsResource.d.ts +167 -2
  196. package/types/PaymentRecords.d.ts +2105 -0
  197. package/types/PaymentRecordsResource.d.ts +455 -0
  198. package/types/Payouts.d.ts +5 -0
  199. package/types/PayoutsResource.d.ts +5 -0
  200. package/types/Prices.d.ts +22 -0
  201. package/types/PricesResource.d.ts +22 -0
  202. package/types/Products.d.ts +39 -0
  203. package/types/ProductsResource.d.ts +36 -0
  204. package/types/PromotionCodes.d.ts +5 -0
  205. package/types/PromotionCodesResource.d.ts +10 -0
  206. package/types/QuoteLines.d.ts +634 -0
  207. package/types/QuotePreviewInvoices.d.ts +1685 -0
  208. package/types/QuotePreviewSubscriptionSchedules.d.ts +778 -0
  209. package/types/Quotes.d.ts +601 -1
  210. package/types/QuotesResource.d.ts +2565 -218
  211. package/types/Refunds.d.ts +14 -0
  212. package/types/SetupAttempts.d.ts +50 -1
  213. package/types/SetupIntents.d.ts +121 -2
  214. package/types/SetupIntentsResource.d.ts +730 -3
  215. package/types/Sources.d.ts +29 -0
  216. package/types/SubscriptionItems.d.ts +23 -0
  217. package/types/SubscriptionItemsResource.d.ts +109 -0
  218. package/types/SubscriptionSchedules.d.ts +205 -0
  219. package/types/SubscriptionSchedulesResource.d.ts +1237 -9
  220. package/types/Subscriptions.d.ts +94 -1
  221. package/types/SubscriptionsResource.d.ts +384 -8
  222. package/types/Tax/Associations.d.ts +126 -0
  223. package/types/Tax/AssociationsResource.d.ts +29 -0
  224. package/types/Tax/Forms.d.ts +220 -0
  225. package/types/Tax/FormsResource.d.ts +107 -0
  226. package/types/TaxIds.d.ts +10 -0
  227. package/types/TaxIdsResource.d.ts +10 -0
  228. package/types/Terminal/ReaderCollectedData.d.ts +51 -0
  229. package/types/Terminal/ReaderCollectedDataResource.d.ts +29 -0
  230. package/types/Terminal/Readers.d.ts +300 -0
  231. package/types/Terminal/ReadersResource.d.ts +220 -0
  232. package/types/TestHelpers/ConfirmationTokensResource.d.ts +171 -0
  233. package/types/TestHelpers/Terminal/ReadersResource.d.ts +53 -0
  234. package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +26 -0
  235. package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +26 -0
  236. package/types/Treasury/FinancialAccountFeatures.d.ts +7 -0
  237. package/types/Treasury/FinancialAccounts.d.ts +5 -0
  238. package/types/Treasury/FinancialAccountsResource.d.ts +37 -0
  239. package/types/Treasury/OutboundTransfers.d.ts +26 -0
  240. package/types/Treasury/OutboundTransfersResource.d.ts +26 -0
  241. package/types/Treasury/ReceivedCredits.d.ts +26 -0
  242. package/types/Treasury/ReceivedDebits.d.ts +31 -0
  243. package/types/V2/Core/AccountLinks.d.ts +101 -0
  244. package/types/V2/Core/AccountLinksResource.d.ts +90 -0
  245. package/types/V2/Core/Accounts/PersonsResource.d.ts +3760 -0
  246. package/types/V2/Core/Accounts.d.ts +8057 -0
  247. package/types/V2/Core/AccountsResource.d.ts +10184 -0
  248. package/types/V2/Core/Persons.d.ts +1857 -0
  249. package/types/V2/Core/Vault/GbBankAccounts.d.ts +155 -0
  250. package/types/V2/Core/Vault/GbBankAccountsResource.d.ts +172 -0
  251. package/types/V2/Core/Vault/UsBankAccounts.d.ts +65 -0
  252. package/types/V2/Core/Vault/UsBankAccountsResource.d.ts +123 -0
  253. package/types/V2/EventTypes.d.ts +687 -1
  254. package/types/V2/FinancialAddressCreditSimulations.d.ts +22 -0
  255. package/types/V2/FinancialAddressGeneratedMicrodeposits.d.ts +27 -0
  256. package/types/V2/MoneyManagement/Adjustments.d.ts +105 -0
  257. package/types/V2/MoneyManagement/AdjustmentsResource.d.ts +83 -0
  258. package/types/V2/MoneyManagement/FinancialAccounts.d.ts +540 -0
  259. package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +52 -0
  260. package/types/V2/MoneyManagement/FinancialAddresses.d.ts +308 -0
  261. package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +287 -0
  262. package/types/V2/MoneyManagement/InboundTransfers.d.ts +201 -0
  263. package/types/V2/MoneyManagement/InboundTransfersResource.d.ts +144 -0
  264. package/types/V2/MoneyManagement/OutboundPaymentQuotes.d.ts +141 -0
  265. package/types/V2/MoneyManagement/OutboundPaymentQuotesResource.d.ts +93 -0
  266. package/types/V2/MoneyManagement/OutboundPayments.d.ts +273 -0
  267. package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +242 -0
  268. package/types/V2/MoneyManagement/OutboundSetupIntents.d.ts +92 -0
  269. package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +296 -0
  270. package/types/V2/MoneyManagement/OutboundTransfers.d.ts +246 -0
  271. package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +207 -0
  272. package/types/V2/MoneyManagement/PayoutMethods.d.ts +146 -0
  273. package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecResource.d.ts +41 -0
  274. package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecs.d.ts +82 -0
  275. package/types/V2/MoneyManagement/PayoutMethodsResource.d.ts +113 -0
  276. package/types/V2/MoneyManagement/ReceivedCredits.d.ts +280 -0
  277. package/types/V2/MoneyManagement/ReceivedCreditsResource.d.ts +78 -0
  278. package/types/V2/MoneyManagement/ReceivedDebits.d.ts +219 -0
  279. package/types/V2/MoneyManagement/ReceivedDebitsResource.d.ts +48 -0
  280. package/types/V2/MoneyManagement/TransactionEntries.d.ts +151 -0
  281. package/types/V2/MoneyManagement/TransactionEntriesResource.d.ts +82 -0
  282. package/types/V2/MoneyManagement/Transactions.d.ts +166 -0
  283. package/types/V2/MoneyManagement/TransactionsResource.d.ts +83 -0
  284. package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +66 -0
  285. package/types/WebhookEndpointsResource.d.ts +72 -2
  286. package/types/index.d.ts +135 -5
  287. package/types/lib.d.ts +11 -1
  288. package/types/test/typescriptTest.ts +3 -3
  289. package/types/InvoicePaymentsResource.d.ts +0 -74
@@ -109,6 +109,11 @@ declare module 'stripe' {
109
109
  */
110
110
  amount_shipping: number;
111
111
 
112
+ /**
113
+ * List of expected payments and corresponding due dates. This value will be null for invoices where collection_method=charge_automatically.
114
+ */
115
+ amounts_due?: Array<Invoice.AmountsDue> | null;
116
+
112
117
  /**
113
118
  * ID of the Connect Application that created the invoice.
114
119
  */
@@ -183,6 +188,11 @@ declare module 'stripe' {
183
188
  */
184
189
  customer: string | Stripe.Customer | Stripe.DeletedCustomer | null;
185
190
 
191
+ /**
192
+ * The ID of the account who will be billed.
193
+ */
194
+ customer_account?: string | null;
195
+
186
196
  /**
187
197
  * The customer's address. Until the invoice is finalized, this field will equal `customer.address`. Once the invoice is finalized, this field will no longer be updated.
188
198
  */
@@ -218,6 +228,11 @@ declare module 'stripe' {
218
228
  */
219
229
  customer_tax_ids?: Array<Invoice.CustomerTaxId> | null;
220
230
 
231
+ /**
232
+ * The margins applied to the invoice. Can be overridden by line item `margins`. Use `expand[]=default_margins` to expand each margin.
233
+ */
234
+ default_margins?: Array<string | Stripe.Margin> | null;
235
+
221
236
  /**
222
237
  * ID of the default payment method for the invoice. It must belong to the customer associated with the invoice. If not set, defaults to the subscription's default payment method, if any, or to the default payment method in the customer's invoice settings.
223
238
  */
@@ -426,6 +441,11 @@ declare module 'stripe' {
426
441
  */
427
442
  total_excluding_tax: number | null;
428
443
 
444
+ /**
445
+ * The aggregate amounts calculated per margin across all line items.
446
+ */
447
+ total_margin_amounts?: Array<Invoice.TotalMarginAmount> | null;
448
+
429
449
  /**
430
450
  * Contains pretax credit amounts (ex: discount, credit grants, etc) that apply to this invoice. This is a combined list of total_pretax_credit_amounts across all invoice line items.
431
451
  */
@@ -445,6 +465,52 @@ declare module 'stripe' {
445
465
  }
446
466
 
447
467
  namespace Invoice {
468
+ interface AmountsDue {
469
+ /**
470
+ * Incremental amount due for this payment in cents (or local equivalent).
471
+ */
472
+ amount: number;
473
+
474
+ /**
475
+ * The amount in cents (or local equivalent) that was paid for this payment.
476
+ */
477
+ amount_paid: number;
478
+
479
+ /**
480
+ * The difference between the payment's amount and amount_paid, in cents (or local equivalent).
481
+ */
482
+ amount_remaining: number;
483
+
484
+ /**
485
+ * Number of days from when invoice is finalized until the payment is due.
486
+ */
487
+ days_until_due: number | null;
488
+
489
+ /**
490
+ * An arbitrary string attached to the object. Often useful for displaying to users.
491
+ */
492
+ description: string | null;
493
+
494
+ /**
495
+ * Date on which a payment plan's payment is due.
496
+ */
497
+ due_date: number | null;
498
+
499
+ /**
500
+ * Timestamp when the payment was paid.
501
+ */
502
+ paid_at: number | null;
503
+
504
+ /**
505
+ * The status of the payment, one of `open`, `paid`, or `past_due`
506
+ */
507
+ status: AmountsDue.Status;
508
+ }
509
+
510
+ namespace AmountsDue {
511
+ type Status = 'open' | 'paid' | 'past_due';
512
+ }
513
+
448
514
  interface AutomaticTax {
449
515
  /**
450
516
  * If Stripe disabled automatic tax, this enum describes why.
@@ -461,6 +527,11 @@ declare module 'stripe' {
461
527
  */
462
528
  liability: AutomaticTax.Liability | null;
463
529
 
530
+ /**
531
+ * The tax provider powering automatic tax.
532
+ */
533
+ provider?: string | null;
534
+
464
535
  /**
465
536
  * The status of the most recent automated tax calculation for this invoice.
466
537
  */
@@ -862,12 +933,16 @@ declare module 'stripe' {
862
933
  | 'email_invalid'
863
934
  | 'expired_card'
864
935
  | 'financial_connections_account_inactive'
936
+ | 'financial_connections_institution_unavailable'
865
937
  | 'financial_connections_no_successful_transaction_refresh'
866
938
  | 'forwarding_api_inactive'
867
939
  | 'forwarding_api_invalid_parameter'
868
940
  | 'forwarding_api_retryable_upstream_error'
869
941
  | 'forwarding_api_upstream_connection_error'
870
942
  | 'forwarding_api_upstream_connection_timeout'
943
+ | 'gift_card_balance_insufficient'
944
+ | 'gift_card_code_exists'
945
+ | 'gift_card_inactive'
871
946
  | 'idempotency_key_in_use'
872
947
  | 'incorrect_address'
873
948
  | 'incorrect_cvc'
@@ -957,6 +1032,7 @@ declare module 'stripe' {
957
1032
  | 'return_intent_already_processed'
958
1033
  | 'routing_number_invalid'
959
1034
  | 'secret_key_required'
1035
+ | 'sensitive_data_access_expired'
960
1036
  | 'sepa_unsupported_account'
961
1037
  | 'setup_attempt_failed'
962
1038
  | 'setup_intent_authentication_failure'
@@ -975,6 +1051,7 @@ declare module 'stripe' {
975
1051
  | 'taxes_calculation_failed'
976
1052
  | 'terminal_location_country_unsupported'
977
1053
  | 'terminal_reader_busy'
1054
+ | 'terminal_reader_collected_data_invalid'
978
1055
  | 'terminal_reader_hardware_fault'
979
1056
  | 'terminal_reader_invalid_location_for_activation'
980
1057
  | 'terminal_reader_invalid_location_for_payment'
@@ -987,7 +1064,9 @@ declare module 'stripe' {
987
1064
  | 'token_in_use'
988
1065
  | 'transfer_source_balance_parameters_mismatch'
989
1066
  | 'transfers_not_allowed'
990
- | 'url_invalid';
1067
+ | 'url_invalid'
1068
+ | 'v2_account_disconnection_unsupported'
1069
+ | 'v2_account_missing_configuration';
991
1070
 
992
1071
  type Type =
993
1072
  | 'api_error'
@@ -1028,6 +1107,11 @@ declare module 'stripe' {
1028
1107
  */
1029
1108
  metadata: Stripe.Metadata | null;
1030
1109
 
1110
+ /**
1111
+ * If specified, payment collection for this subscription will be paused. Note that the subscription status will be unchanged and will not be updated to `paused`. Learn more about [pausing collection](https://stripe.com/docs/billing/subscriptions/pause-payment).
1112
+ */
1113
+ pause_collection?: SubscriptionDetails.PauseCollection | null;
1114
+
1031
1115
  /**
1032
1116
  * The subscription that generated this invoice
1033
1117
  */
@@ -1039,6 +1123,24 @@ declare module 'stripe' {
1039
1123
  subscription_proration_date?: number;
1040
1124
  }
1041
1125
 
1126
+ namespace SubscriptionDetails {
1127
+ interface PauseCollection {
1128
+ /**
1129
+ * The payment collection behavior for this subscription while paused. One of `keep_as_draft`, `mark_uncollectible`, or `void`.
1130
+ */
1131
+ behavior: PauseCollection.Behavior | null;
1132
+
1133
+ /**
1134
+ * The time after which the subscription will resume collecting payments.
1135
+ */
1136
+ resumes_at: number | null;
1137
+ }
1138
+
1139
+ namespace PauseCollection {
1140
+ type Behavior = 'keep_as_draft' | 'mark_uncollectible' | 'void';
1141
+ }
1142
+ }
1143
+
1042
1144
  type Type = 'quote_details' | 'subscription_details';
1043
1145
  }
1044
1146
 
@@ -1081,6 +1183,11 @@ declare module 'stripe' {
1081
1183
  */
1082
1184
  customer_balance: PaymentMethodOptions.CustomerBalance | null;
1083
1185
 
1186
+ /**
1187
+ * If paying by `id_bank_transfer`, this sub-hash contains details about the Indonesia bank transfer payment method options to pass to the invoice's PaymentIntent.
1188
+ */
1189
+ id_bank_transfer?: PaymentMethodOptions.IdBankTransfer | null;
1190
+
1084
1191
  /**
1085
1192
  * If paying by `konbini`, this sub-hash contains details about the Konbini payment method options to pass to the invoice's PaymentIntent.
1086
1193
  */
@@ -1186,6 +1293,8 @@ declare module 'stripe' {
1186
1293
  }
1187
1294
  }
1188
1295
 
1296
+ interface IdBankTransfer {}
1297
+
1189
1298
  interface Konbini {}
1190
1299
 
1191
1300
  interface SepaDebit {}
@@ -1220,6 +1329,11 @@ declare module 'stripe' {
1220
1329
  * The account subcategories to use to filter for possible accounts to link. Valid subcategories are `checking` and `savings`.
1221
1330
  */
1222
1331
  account_subcategories?: Array<Filters.AccountSubcategory>;
1332
+
1333
+ /**
1334
+ * The institution to use to filter for possible accounts to link.
1335
+ */
1336
+ institution?: string;
1223
1337
  }
1224
1338
 
1225
1339
  namespace Filters {
@@ -1232,7 +1346,11 @@ declare module 'stripe' {
1232
1346
  | 'payment_method'
1233
1347
  | 'transactions';
1234
1348
 
1235
- type Prefetch = 'balances' | 'ownership' | 'transactions';
1349
+ type Prefetch =
1350
+ | 'balances'
1351
+ | 'inferred_balances'
1352
+ | 'ownership'
1353
+ | 'transactions';
1236
1354
  }
1237
1355
 
1238
1356
  type VerificationMethod = 'automatic' | 'instant' | 'microdeposits';
@@ -1250,11 +1368,13 @@ declare module 'stripe' {
1250
1368
  | 'boleto'
1251
1369
  | 'card'
1252
1370
  | 'cashapp'
1371
+ | 'custom'
1253
1372
  | 'customer_balance'
1254
1373
  | 'eps'
1255
1374
  | 'fpx'
1256
1375
  | 'giropay'
1257
1376
  | 'grabpay'
1377
+ | 'id_bank_transfer'
1258
1378
  | 'ideal'
1259
1379
  | 'jp_credit_transfer'
1260
1380
  | 'kakao_pay'
@@ -1274,6 +1394,7 @@ declare module 'stripe' {
1274
1394
  | 'sepa_credit_transfer'
1275
1395
  | 'sepa_debit'
1276
1396
  | 'sofort'
1397
+ | 'stripe_balance'
1277
1398
  | 'swish'
1278
1399
  | 'us_bank_account'
1279
1400
  | 'wechat_pay';
@@ -1472,6 +1593,18 @@ declare module 'stripe' {
1472
1593
  discount: string | Stripe.Discount | Stripe.DeletedDiscount;
1473
1594
  }
1474
1595
 
1596
+ interface TotalMarginAmount {
1597
+ /**
1598
+ * The amount, in cents (or local equivalent), of the reduction in line item amount.
1599
+ */
1600
+ amount: number;
1601
+
1602
+ /**
1603
+ * The margin that was applied to get this margin amount.
1604
+ */
1605
+ margin: string | Stripe.Margin;
1606
+ }
1607
+
1475
1608
  interface TotalPretaxCreditAmount {
1476
1609
  /**
1477
1610
  * The amount, in cents (or local equivalent), of the pretax credit amount.
@@ -1491,6 +1624,11 @@ declare module 'stripe' {
1491
1624
  */
1492
1625
  discount?: string | Stripe.Discount | Stripe.DeletedDiscount;
1493
1626
 
1627
+ /**
1628
+ * The margin that was applied to get this pretax credit amount.
1629
+ */
1630
+ margin?: string | Stripe.Margin;
1631
+
1494
1632
  /**
1495
1633
  * Type of the pretax credit amount referenced.
1496
1634
  */
@@ -1498,7 +1636,7 @@ declare module 'stripe' {
1498
1636
  }
1499
1637
 
1500
1638
  namespace TotalPretaxCreditAmount {
1501
- type Type = 'credit_balance_transaction' | 'discount';
1639
+ type Type = 'credit_balance_transaction' | 'discount' | 'margin';
1502
1640
  }
1503
1641
 
1504
1642
  interface TotalTax {