stripe 19.0.0 → 19.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 (323) hide show
  1. package/CHANGELOG.md +1431 -11
  2. package/README.md +1 -0
  3. package/VERSION +1 -1
  4. package/cjs/Error.js +115 -1
  5. package/cjs/apiVersion.js +2 -3
  6. package/cjs/resources/AccountNotices.js +21 -0
  7. package/cjs/resources/Billing/Analytics/MeterUsage.js +12 -0
  8. package/cjs/resources/Capital/FinancingOffers.js +21 -0
  9. package/cjs/resources/Capital/FinancingSummary.js +12 -0
  10. package/cjs/resources/Capital/FinancingTransactions.js +17 -0
  11. package/cjs/resources/ExternalAccounts.js +23 -0
  12. package/cjs/resources/FinancialConnections/Accounts.js +5 -0
  13. package/cjs/resources/FinancialConnections/Institutions.js +17 -0
  14. package/cjs/resources/FxQuotes.js +15 -0
  15. package/cjs/resources/Issuing/CreditUnderwritingRecords.js +33 -0
  16. package/cjs/resources/Issuing/DisputeSettlementDetails.js +17 -0
  17. package/cjs/resources/Issuing/FraudLiabilityDebits.js +17 -0
  18. package/cjs/resources/Mandates.js +5 -0
  19. package/cjs/resources/Margins.js +22 -0
  20. package/cjs/resources/Orders.js +24 -0
  21. package/cjs/resources/PaymentAttemptRecords.js +17 -0
  22. package/cjs/resources/PaymentIntents.js +13 -0
  23. package/cjs/resources/PaymentRecords.js +33 -0
  24. package/cjs/resources/Privacy/RedactionJobs.js +42 -0
  25. package/cjs/resources/Quotes.js +32 -0
  26. package/cjs/resources/SubscriptionSchedules.js +4 -0
  27. package/cjs/resources/Subscriptions.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/OnboardingLinks.js +12 -0
  31. package/cjs/resources/Terminal/ReaderCollectedData.js +12 -0
  32. package/cjs/resources/V2/Billing/BillSettings/Versions.js +17 -0
  33. package/cjs/resources/V2/Billing/BillSettings.js +27 -0
  34. package/cjs/resources/V2/Billing/Cadences.js +23 -0
  35. package/cjs/resources/V2/Billing/CollectionSettings/Versions.js +17 -0
  36. package/cjs/resources/V2/Billing/CollectionSettings.js +30 -0
  37. package/cjs/resources/V2/Billing/Profiles.js +19 -0
  38. package/cjs/resources/V2/Core/AccountLinks.js +9 -0
  39. package/cjs/resources/V2/Core/Accounts/Persons.js +29 -0
  40. package/cjs/resources/V2/Core/Accounts.js +25 -0
  41. package/cjs/resources/V2/Core/Vault/GbBankAccounts.js +28 -0
  42. package/cjs/resources/V2/Core/Vault/UsBankAccounts.js +24 -0
  43. package/cjs/resources/V2/MoneyManagement/Adjustments.js +17 -0
  44. package/cjs/resources/V2/MoneyManagement/FinancialAccounts.js +25 -0
  45. package/cjs/resources/V2/MoneyManagement/FinancialAddresses.js +21 -0
  46. package/cjs/resources/V2/MoneyManagement/InboundTransfers.js +21 -0
  47. package/cjs/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +16 -0
  48. package/cjs/resources/V2/MoneyManagement/OutboundPayments.js +25 -0
  49. package/cjs/resources/V2/MoneyManagement/OutboundSetupIntents.js +29 -0
  50. package/cjs/resources/V2/MoneyManagement/OutboundTransfers.js +25 -0
  51. package/cjs/resources/V2/MoneyManagement/PayoutMethods.js +25 -0
  52. package/cjs/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +12 -0
  53. package/cjs/resources/V2/MoneyManagement/ReceivedCredits.js +17 -0
  54. package/cjs/resources/V2/MoneyManagement/ReceivedDebits.js +17 -0
  55. package/cjs/resources/V2/MoneyManagement/TransactionEntries.js +17 -0
  56. package/cjs/resources/V2/MoneyManagement/Transactions.js +17 -0
  57. package/cjs/resources/V2/Payments/OffSessionPayments.js +29 -0
  58. package/cjs/resources/V2/TestHelpers/FinancialAddresses.js +16 -0
  59. package/cjs/resources.js +110 -8
  60. package/cjs/stripe.core.js +1 -1
  61. package/esm/Error.js +100 -0
  62. package/esm/apiVersion.js +1 -2
  63. package/esm/resources/AccountNotices.js +18 -0
  64. package/esm/resources/Billing/Analytics/MeterUsage.js +9 -0
  65. package/esm/resources/Capital/FinancingOffers.js +18 -0
  66. package/esm/resources/Capital/FinancingSummary.js +9 -0
  67. package/esm/resources/Capital/FinancingTransactions.js +14 -0
  68. package/esm/resources/ExternalAccounts.js +20 -0
  69. package/esm/resources/FinancialConnections/Accounts.js +5 -0
  70. package/esm/resources/FinancialConnections/Institutions.js +14 -0
  71. package/esm/resources/FxQuotes.js +12 -0
  72. package/esm/resources/Issuing/CreditUnderwritingRecords.js +30 -0
  73. package/esm/resources/Issuing/DisputeSettlementDetails.js +14 -0
  74. package/esm/resources/Issuing/FraudLiabilityDebits.js +14 -0
  75. package/esm/resources/Mandates.js +5 -0
  76. package/esm/resources/Margins.js +19 -0
  77. package/esm/resources/Orders.js +21 -0
  78. package/esm/resources/PaymentAttemptRecords.js +14 -0
  79. package/esm/resources/PaymentIntents.js +13 -0
  80. package/esm/resources/PaymentRecords.js +30 -0
  81. package/esm/resources/Privacy/RedactionJobs.js +39 -0
  82. package/esm/resources/Quotes.js +32 -0
  83. package/esm/resources/SubscriptionSchedules.js +4 -0
  84. package/esm/resources/Subscriptions.js +4 -0
  85. package/esm/resources/Tax/Associations.js +6 -0
  86. package/esm/resources/Tax/Forms.js +17 -0
  87. package/esm/resources/Terminal/OnboardingLinks.js +9 -0
  88. package/esm/resources/Terminal/ReaderCollectedData.js +9 -0
  89. package/esm/resources/V2/Billing/BillSettings/Versions.js +14 -0
  90. package/esm/resources/V2/Billing/BillSettings.js +24 -0
  91. package/esm/resources/V2/Billing/Cadences.js +20 -0
  92. package/esm/resources/V2/Billing/CollectionSettings/Versions.js +14 -0
  93. package/esm/resources/V2/Billing/CollectionSettings.js +27 -0
  94. package/esm/resources/V2/Billing/Profiles.js +16 -0
  95. package/esm/resources/V2/Core/AccountLinks.js +6 -0
  96. package/esm/resources/V2/Core/Accounts/Persons.js +26 -0
  97. package/esm/resources/V2/Core/Accounts.js +22 -0
  98. package/esm/resources/V2/Core/Vault/GbBankAccounts.js +25 -0
  99. package/esm/resources/V2/Core/Vault/UsBankAccounts.js +21 -0
  100. package/esm/resources/V2/MoneyManagement/Adjustments.js +14 -0
  101. package/esm/resources/V2/MoneyManagement/FinancialAccounts.js +22 -0
  102. package/esm/resources/V2/MoneyManagement/FinancialAddresses.js +18 -0
  103. package/esm/resources/V2/MoneyManagement/InboundTransfers.js +18 -0
  104. package/esm/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +13 -0
  105. package/esm/resources/V2/MoneyManagement/OutboundPayments.js +22 -0
  106. package/esm/resources/V2/MoneyManagement/OutboundSetupIntents.js +26 -0
  107. package/esm/resources/V2/MoneyManagement/OutboundTransfers.js +22 -0
  108. package/esm/resources/V2/MoneyManagement/PayoutMethods.js +22 -0
  109. package/esm/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +9 -0
  110. package/esm/resources/V2/MoneyManagement/ReceivedCredits.js +14 -0
  111. package/esm/resources/V2/MoneyManagement/ReceivedDebits.js +14 -0
  112. package/esm/resources/V2/MoneyManagement/TransactionEntries.js +14 -0
  113. package/esm/resources/V2/MoneyManagement/Transactions.js +14 -0
  114. package/esm/resources/V2/Payments/OffSessionPayments.js +26 -0
  115. package/esm/resources/V2/TestHelpers/FinancialAddresses.js +13 -0
  116. package/esm/resources.js +95 -0
  117. package/esm/stripe.core.js +1 -1
  118. package/package.json +1 -1
  119. package/types/AccountLinksResource.d.ts +5 -1
  120. package/types/AccountNotices.d.ts +113 -0
  121. package/types/AccountNoticesResource.d.ts +98 -0
  122. package/types/AccountSessions.d.ts +45 -0
  123. package/types/AccountSessionsResource.d.ts +264 -0
  124. package/types/Accounts.d.ts +212 -1
  125. package/types/AccountsResource.d.ts +544 -0
  126. package/types/Billing/AlertTriggereds.d.ts +1 -1
  127. package/types/Billing/Analytics/MeterUsage.d.ts +31 -0
  128. package/types/Billing/Analytics/MeterUsageResource.d.ts +689 -0
  129. package/types/Billing/Analytics/MeterUsageRows.d.ts +51 -0
  130. package/types/Billing/CreditBalanceSummary.d.ts +5 -0
  131. package/types/Billing/CreditBalanceSummaryResource.d.ts +8 -3
  132. package/types/Billing/CreditBalanceTransactionsResource.d.ts +12 -4
  133. package/types/Billing/CreditGrants.d.ts +5 -0
  134. package/types/Billing/CreditGrantsResource.d.ts +11 -1
  135. package/types/BillingPortal/Sessions.d.ts +5 -0
  136. package/types/BillingPortal/SessionsResource.d.ts +12 -4
  137. package/types/Capital/FinancingOffers.d.ts +188 -0
  138. package/types/Capital/FinancingOffersResource.d.ts +97 -0
  139. package/types/Capital/FinancingSummary.d.ts +106 -0
  140. package/types/Capital/FinancingSummaryResource.d.ts +27 -0
  141. package/types/Capital/FinancingTransactions.d.ts +135 -0
  142. package/types/Capital/FinancingTransactionsResource.d.ts +68 -0
  143. package/types/Cards.d.ts +5 -0
  144. package/types/CashBalances.d.ts +5 -0
  145. package/types/Charges.d.ts +171 -0
  146. package/types/ChargesResource.d.ts +1406 -0
  147. package/types/Checkout/Sessions.d.ts +369 -2
  148. package/types/Checkout/SessionsResource.d.ts +634 -2
  149. package/types/ConfirmationTokens.d.ts +125 -0
  150. package/types/Coupons.d.ts +33 -0
  151. package/types/CouponsResource.d.ts +21 -0
  152. package/types/CreditNoteLineItems.d.ts +17 -0
  153. package/types/CreditNotes.d.ts +5 -0
  154. package/types/CreditNotesResource.d.ts +5 -0
  155. package/types/CustomerBalanceTransactions.d.ts +2 -0
  156. package/types/CustomerCashBalanceTransactions.d.ts +2 -0
  157. package/types/CustomerSessions.d.ts +5 -0
  158. package/types/CustomerSessionsResource.d.ts +6 -1
  159. package/types/Customers.d.ts +2 -0
  160. package/types/CustomersResource.d.ts +8 -0
  161. package/types/Discounts.d.ts +10 -0
  162. package/types/Disputes.d.ts +40 -0
  163. package/types/DisputesResource.d.ts +11 -0
  164. package/types/Errors.d.ts +85 -0
  165. package/types/EventTypes.d.ts +664 -0
  166. package/types/Events.d.ts +97 -0
  167. package/types/ExternalAccountsResource.d.ts +304 -0
  168. package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
  169. package/types/FinancialConnections/Accounts.d.ts +36 -1
  170. package/types/FinancialConnections/AccountsResource.d.ts +40 -3
  171. package/types/FinancialConnections/Institutions.d.ts +98 -0
  172. package/types/FinancialConnections/InstitutionsResource.d.ts +47 -0
  173. package/types/FinancialConnections/Sessions.d.ts +51 -1
  174. package/types/FinancialConnections/SessionsResource.d.ts +43 -1
  175. package/types/FxQuotes.d.ts +155 -0
  176. package/types/FxQuotesResource.d.ts +130 -0
  177. package/types/Identity/VerificationSessions.d.ts +5 -0
  178. package/types/Identity/VerificationSessionsResource.d.ts +7 -0
  179. package/types/InvoiceItems.d.ts +10 -0
  180. package/types/InvoiceItemsResource.d.ts +117 -6
  181. package/types/InvoiceLineItems.d.ts +45 -1
  182. package/types/InvoicePayments.d.ts +5 -0
  183. package/types/InvoicePaymentsResource.d.ts +10 -1
  184. package/types/Invoices.d.ts +204 -4
  185. package/types/InvoicesResource.d.ts +1646 -21
  186. package/types/Issuing/CardholdersResource.d.ts +2 -1
  187. package/types/Issuing/CreditUnderwritingRecords.d.ts +451 -0
  188. package/types/Issuing/CreditUnderwritingRecordsResource.d.ts +1032 -0
  189. package/types/Issuing/DisputeSettlementDetails.d.ts +85 -0
  190. package/types/Issuing/DisputeSettlementDetailsResource.d.ts +52 -0
  191. package/types/Issuing/FraudLiabilityDebits.d.ts +52 -0
  192. package/types/Issuing/FraudLiabilityDebitsResource.d.ts +52 -0
  193. package/types/Issuing/Settlements.d.ts +113 -0
  194. package/types/Issuing/Transactions.d.ts +5 -0
  195. package/types/Issuing/TransactionsResource.d.ts +5 -0
  196. package/types/LineItems.d.ts +49 -0
  197. package/types/Mandates.d.ts +135 -1
  198. package/types/MandatesResource.d.ts +31 -0
  199. package/types/Margins.d.ts +56 -0
  200. package/types/MarginsResource.d.ts +114 -0
  201. package/types/Orders.d.ts +1163 -0
  202. package/types/OrdersResource.d.ts +3139 -0
  203. package/types/PaymentAttemptRecords.d.ts +2360 -0
  204. package/types/PaymentAttemptRecordsResource.d.ts +52 -0
  205. package/types/PaymentIntentAmountDetailsLineItems.d.ts +116 -0
  206. package/types/PaymentIntents.d.ts +825 -3
  207. package/types/PaymentIntentsResource.d.ts +11753 -5914
  208. package/types/PaymentLinks.d.ts +7 -0
  209. package/types/PaymentLinksResource.d.ts +14 -0
  210. package/types/PaymentMethodConfigurations.d.ts +216 -0
  211. package/types/PaymentMethodConfigurationsResource.d.ts +300 -0
  212. package/types/PaymentMethods.d.ts +130 -0
  213. package/types/PaymentMethodsResource.d.ts +167 -2
  214. package/types/PaymentRecords.d.ts +2353 -0
  215. package/types/PaymentRecordsResource.d.ts +559 -0
  216. package/types/Prices.d.ts +22 -0
  217. package/types/PricesResource.d.ts +22 -0
  218. package/types/Privacy/RedactionJobValidationErrors.d.ts +60 -0
  219. package/types/Privacy/RedactionJobs.d.ts +111 -0
  220. package/types/Privacy/RedactionJobsResource.d.ts +230 -0
  221. package/types/PromotionCodes.d.ts +5 -0
  222. package/types/PromotionCodesResource.d.ts +10 -0
  223. package/types/QuoteLines.d.ts +634 -0
  224. package/types/QuotePreviewInvoices.d.ts +1770 -0
  225. package/types/QuotePreviewSubscriptionSchedules.d.ts +908 -0
  226. package/types/Quotes.d.ts +594 -1
  227. package/types/QuotesResource.d.ts +2588 -243
  228. package/types/Refunds.d.ts +14 -0
  229. package/types/SetupAttempts.d.ts +51 -1
  230. package/types/SetupIntents.d.ts +210 -2
  231. package/types/SetupIntentsResource.d.ts +938 -4
  232. package/types/Sources.d.ts +29 -0
  233. package/types/SubscriptionItems.d.ts +26 -0
  234. package/types/SubscriptionItemsResource.d.ts +109 -0
  235. package/types/SubscriptionSchedules.d.ts +205 -0
  236. package/types/SubscriptionSchedulesResource.d.ts +1233 -5
  237. package/types/Subscriptions.d.ts +263 -1
  238. package/types/SubscriptionsResource.d.ts +747 -8
  239. package/types/Tax/Associations.d.ts +82 -0
  240. package/types/Tax/AssociationsResource.d.ts +29 -0
  241. package/types/Tax/Forms.d.ts +220 -0
  242. package/types/Tax/FormsResource.d.ts +107 -0
  243. package/types/TaxIds.d.ts +10 -0
  244. package/types/TaxIdsResource.d.ts +10 -0
  245. package/types/Terminal/Configurations.d.ts +9 -0
  246. package/types/Terminal/ConfigurationsResource.d.ts +28 -0
  247. package/types/Terminal/OnboardingLinks.d.ts +57 -0
  248. package/types/Terminal/OnboardingLinksResource.d.ts +62 -0
  249. package/types/Terminal/ReaderCollectedData.d.ts +51 -0
  250. package/types/Terminal/ReaderCollectedDataResource.d.ts +29 -0
  251. package/types/Terminal/Readers.d.ts +20 -0
  252. package/types/TestHelpers/ConfirmationTokensResource.d.ts +126 -0
  253. package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +26 -0
  254. package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +26 -0
  255. package/types/Transfers.d.ts +5 -0
  256. package/types/TransfersResource.d.ts +5 -0
  257. package/types/Treasury/FinancialAccountFeatures.d.ts +7 -0
  258. package/types/Treasury/FinancialAccounts.d.ts +5 -0
  259. package/types/Treasury/FinancialAccountsResource.d.ts +37 -0
  260. package/types/Treasury/OutboundTransfers.d.ts +26 -0
  261. package/types/Treasury/OutboundTransfersResource.d.ts +26 -0
  262. package/types/Treasury/ReceivedCredits.d.ts +26 -0
  263. package/types/Treasury/ReceivedDebits.d.ts +31 -0
  264. package/types/V2/Billing/BillSettingVersions.d.ts +97 -0
  265. package/types/V2/Billing/BillSettings/VersionsResource.d.ts +58 -0
  266. package/types/V2/Billing/BillSettings.d.ts +120 -0
  267. package/types/V2/Billing/BillSettingsResource.d.ts +241 -0
  268. package/types/V2/Billing/Cadences.d.ts +686 -0
  269. package/types/V2/Billing/CadencesResource.d.ts +487 -0
  270. package/types/V2/Billing/CollectionSettingVersions.d.ts +314 -0
  271. package/types/V2/Billing/CollectionSettings/VersionsResource.d.ts +62 -0
  272. package/types/V2/Billing/CollectionSettings.d.ts +337 -0
  273. package/types/V2/Billing/CollectionSettingsResource.d.ts +675 -0
  274. package/types/V2/Billing/Profiles.d.ts +70 -0
  275. package/types/V2/Billing/ProfilesResource.d.ts +150 -0
  276. package/types/V2/Core/AccountLinks.d.ts +168 -0
  277. package/types/V2/Core/AccountLinksResource.d.ts +152 -0
  278. package/types/V2/Core/AccountPersons.d.ts +615 -0
  279. package/types/V2/Core/Accounts/PersonsResource.d.ts +1153 -0
  280. package/types/V2/Core/Accounts.d.ts +5919 -0
  281. package/types/V2/Core/AccountsResource.d.ts +4999 -0
  282. package/types/V2/Core/EventTypes.d.ts +1646 -9
  283. package/types/V2/Core/Vault/GbBankAccounts.d.ts +160 -0
  284. package/types/V2/Core/Vault/GbBankAccountsResource.d.ts +172 -0
  285. package/types/V2/Core/Vault/UsBankAccounts.d.ts +70 -0
  286. package/types/V2/Core/Vault/UsBankAccountsResource.d.ts +123 -0
  287. package/types/V2/FinancialAddressCreditSimulations.d.ts +27 -0
  288. package/types/V2/FinancialAddressGeneratedMicrodeposits.d.ts +32 -0
  289. package/types/V2/MoneyManagement/Adjustments.d.ts +110 -0
  290. package/types/V2/MoneyManagement/AdjustmentsResource.d.ts +83 -0
  291. package/types/V2/MoneyManagement/FinancialAccounts.d.ts +148 -0
  292. package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +147 -0
  293. package/types/V2/MoneyManagement/FinancialAddresses.d.ts +178 -0
  294. package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +112 -0
  295. package/types/V2/MoneyManagement/InboundTransfers.d.ts +206 -0
  296. package/types/V2/MoneyManagement/InboundTransfersResource.d.ts +144 -0
  297. package/types/V2/MoneyManagement/OutboundPaymentQuotes.d.ts +170 -0
  298. package/types/V2/MoneyManagement/OutboundPaymentQuotesResource.d.ts +115 -0
  299. package/types/V2/MoneyManagement/OutboundPayments.d.ts +278 -0
  300. package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +242 -0
  301. package/types/V2/MoneyManagement/OutboundSetupIntents.d.ts +97 -0
  302. package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +296 -0
  303. package/types/V2/MoneyManagement/OutboundTransfers.d.ts +251 -0
  304. package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +208 -0
  305. package/types/V2/MoneyManagement/PayoutMethods.d.ts +160 -0
  306. package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpec.d.ts +93 -0
  307. package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecResource.d.ts +41 -0
  308. package/types/V2/MoneyManagement/PayoutMethodsResource.d.ts +113 -0
  309. package/types/V2/MoneyManagement/ReceivedCredits.d.ts +302 -0
  310. package/types/V2/MoneyManagement/ReceivedCreditsResource.d.ts +78 -0
  311. package/types/V2/MoneyManagement/ReceivedDebits.d.ts +176 -0
  312. package/types/V2/MoneyManagement/ReceivedDebitsResource.d.ts +48 -0
  313. package/types/V2/MoneyManagement/TransactionEntries.d.ts +162 -0
  314. package/types/V2/MoneyManagement/TransactionEntriesResource.d.ts +82 -0
  315. package/types/V2/MoneyManagement/Transactions.d.ts +177 -0
  316. package/types/V2/MoneyManagement/TransactionsResource.d.ts +83 -0
  317. package/types/V2/Payments/OffSessionPayments.d.ts +326 -0
  318. package/types/V2/Payments/OffSessionPaymentsResource.d.ts +401 -0
  319. package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +68 -0
  320. package/types/WebhookEndpointsResource.d.ts +78 -0
  321. package/types/apiVersion.d.ts +1 -2
  322. package/types/index.d.ts +160 -0
  323. package/types/lib.d.ts +10 -0
@@ -3,11 +3,6 @@
3
3
  declare module 'stripe' {
4
4
  namespace Stripe {
5
5
  interface InvoiceItemCreateParams {
6
- /**
7
- * The ID of the customer who will be billed when this invoice item is billed.
8
- */
9
- customer: string;
10
-
11
6
  /**
12
7
  * The integer amount in cents (or local equivalent) of the charge to be applied to the upcoming invoice. Passing in a negative `amount` will reduce the `amount_due` on the invoice.
13
8
  */
@@ -18,6 +13,16 @@ declare module 'stripe' {
18
13
  */
19
14
  currency?: string;
20
15
 
16
+ /**
17
+ * The ID of the customer who will be billed when this invoice item is billed.
18
+ */
19
+ customer?: string;
20
+
21
+ /**
22
+ * The ID of the account who will be billed when this invoice item is billed.
23
+ */
24
+ customer_account?: string;
25
+
21
26
  /**
22
27
  * An arbitrary string which you can attach to the invoice item. The description is displayed in the invoice for easy tracking.
23
28
  */
@@ -43,6 +48,11 @@ declare module 'stripe' {
43
48
  */
44
49
  invoice?: string;
45
50
 
51
+ /**
52
+ * The ids of the margins to apply to the invoice item. When set, the `default_margins` on the invoice do not apply to this invoice item.
53
+ */
54
+ margins?: Array<string>;
55
+
46
56
  /**
47
57
  * Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
48
58
  */
@@ -106,12 +116,56 @@ declare module 'stripe' {
106
116
  */
107
117
  discount?: string;
108
118
 
119
+ /**
120
+ * Details to determine how long the discount should be applied for.
121
+ */
122
+ discount_end?: Discount.DiscountEnd;
123
+
109
124
  /**
110
125
  * ID of the promotion code to create a new discount for.
111
126
  */
112
127
  promotion_code?: string;
113
128
  }
114
129
 
130
+ namespace Discount {
131
+ interface DiscountEnd {
132
+ /**
133
+ * Time span for the redeemed discount.
134
+ */
135
+ duration?: DiscountEnd.Duration;
136
+
137
+ /**
138
+ * A precise Unix timestamp for the discount to end. Must be in the future.
139
+ */
140
+ timestamp?: number;
141
+
142
+ /**
143
+ * The type of calculation made to determine when the discount ends.
144
+ */
145
+ type: DiscountEnd.Type;
146
+ }
147
+
148
+ namespace DiscountEnd {
149
+ interface Duration {
150
+ /**
151
+ * Specifies a type of interval unit. Either `day`, `week`, `month` or `year`.
152
+ */
153
+ interval: Duration.Interval;
154
+
155
+ /**
156
+ * The number of intervals, as an whole number greater than 0. Stripe multiplies this by the interval type to get the overall duration.
157
+ */
158
+ interval_count: number;
159
+ }
160
+
161
+ namespace Duration {
162
+ type Interval = 'day' | 'month' | 'week' | 'year';
163
+ }
164
+
165
+ type Type = 'duration' | 'timestamp';
166
+ }
167
+ }
168
+
115
169
  interface Period {
116
170
  /**
117
171
  * The end of the period, which must be greater than or equal to the start. This value is inclusive.
@@ -198,6 +252,11 @@ declare module 'stripe' {
198
252
  */
199
253
  expand?: Array<string>;
200
254
 
255
+ /**
256
+ * The ids of the margins to apply to the invoice item. When set, the `default_margins` on the invoice do not apply to this invoice item.
257
+ */
258
+ margins?: Stripe.Emptyable<Array<string>>;
259
+
201
260
  /**
202
261
  * Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
203
262
  */
@@ -256,12 +315,56 @@ declare module 'stripe' {
256
315
  */
257
316
  discount?: string;
258
317
 
318
+ /**
319
+ * Details to determine how long the discount should be applied for.
320
+ */
321
+ discount_end?: Discount.DiscountEnd;
322
+
259
323
  /**
260
324
  * ID of the promotion code to create a new discount for.
261
325
  */
262
326
  promotion_code?: string;
263
327
  }
264
328
 
329
+ namespace Discount {
330
+ interface DiscountEnd {
331
+ /**
332
+ * Time span for the redeemed discount.
333
+ */
334
+ duration?: DiscountEnd.Duration;
335
+
336
+ /**
337
+ * A precise Unix timestamp for the discount to end. Must be in the future.
338
+ */
339
+ timestamp?: number;
340
+
341
+ /**
342
+ * The type of calculation made to determine when the discount ends.
343
+ */
344
+ type: DiscountEnd.Type;
345
+ }
346
+
347
+ namespace DiscountEnd {
348
+ interface Duration {
349
+ /**
350
+ * Specifies a type of interval unit. Either `day`, `week`, `month` or `year`.
351
+ */
352
+ interval: Duration.Interval;
353
+
354
+ /**
355
+ * The number of intervals, as an whole number greater than 0. Stripe multiplies this by the interval type to get the overall duration.
356
+ */
357
+ interval_count: number;
358
+ }
359
+
360
+ namespace Duration {
361
+ type Interval = 'day' | 'month' | 'week' | 'year';
362
+ }
363
+
364
+ type Type = 'duration' | 'timestamp';
365
+ }
366
+ }
367
+
265
368
  interface Period {
266
369
  /**
267
370
  * The end of the period, which must be greater than or equal to the start. This value is inclusive.
@@ -326,6 +429,11 @@ declare module 'stripe' {
326
429
  */
327
430
  customer?: string;
328
431
 
432
+ /**
433
+ * The identifier of the account whose invoice items to return. If none is provided, all invoice items will be returned.
434
+ */
435
+ customer_account?: string;
436
+
329
437
  /**
330
438
  * Specifies which fields in the response should be expanded.
331
439
  */
@@ -349,7 +457,10 @@ declare module 'stripe' {
349
457
  * Creates an item to be added to a draft invoice (up to 250 items per invoice). If no invoice is specified, the item will be on the next invoice created for the customer specified.
350
458
  */
351
459
  create(
352
- params: InvoiceItemCreateParams,
460
+ params?: InvoiceItemCreateParams,
461
+ options?: RequestOptions
462
+ ): Promise<Stripe.Response<Stripe.InvoiceItem>>;
463
+ create(
353
464
  options?: RequestOptions
354
465
  ): Promise<Stripe.Response<Stripe.InvoiceItem>>;
355
466
 
@@ -58,6 +58,16 @@ declare module 'stripe' {
58
58
  */
59
59
  livemode: boolean;
60
60
 
61
+ /**
62
+ * The amount of margin calculated per margin for this line item.
63
+ */
64
+ margin_amounts?: Array<InvoiceLineItem.MarginAmount> | null;
65
+
66
+ /**
67
+ * The margins applied to the line item. When set, the `default_margins` on the invoice do not apply to the line item. Use `expand[]=margins` to expand each margin.
68
+ */
69
+ margins?: Array<string | Stripe.Margin> | null;
70
+
61
71
  /**
62
72
  * Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Note that for line items with `type=subscription`, `metadata` reflects the current metadata from the subscription associated with the line item, unless the invoice line was directly updated with different metadata after creation.
63
73
  */
@@ -87,6 +97,11 @@ declare module 'stripe' {
87
97
 
88
98
  subscription: string | Stripe.Subscription | null;
89
99
 
100
+ /**
101
+ * The tax calculation identifiers of the line item.
102
+ */
103
+ tax_calculation_reference?: InvoiceLineItem.TaxCalculationReference | null;
104
+
90
105
  /**
91
106
  * The tax information of the line item.
92
107
  */
@@ -106,6 +121,18 @@ declare module 'stripe' {
106
121
  discount: string | Stripe.Discount | Stripe.DeletedDiscount;
107
122
  }
108
123
 
124
+ interface MarginAmount {
125
+ /**
126
+ * The amount, in cents (or local equivalent), of the reduction in line item amount.
127
+ */
128
+ amount: number;
129
+
130
+ /**
131
+ * The margin that was applied to get this margin amount.
132
+ */
133
+ margin: string | Stripe.Margin;
134
+ }
135
+
109
136
  interface Parent {
110
137
  /**
111
138
  * Details about the invoice item that generated this line item
@@ -253,6 +280,11 @@ declare module 'stripe' {
253
280
  */
254
281
  discount?: string | Stripe.Discount | Stripe.DeletedDiscount;
255
282
 
283
+ /**
284
+ * The margin that was applied to get this pretax credit amount.
285
+ */
286
+ margin?: string | Stripe.Margin;
287
+
256
288
  /**
257
289
  * Type of the pretax credit amount referenced.
258
290
  */
@@ -260,7 +292,7 @@ declare module 'stripe' {
260
292
  }
261
293
 
262
294
  namespace PretaxCreditAmount {
263
- type Type = 'credit_balance_transaction' | 'discount';
295
+ type Type = 'credit_balance_transaction' | 'discount' | 'margin';
264
296
  }
265
297
 
266
298
  interface Pricing {
@@ -348,6 +380,18 @@ declare module 'stripe' {
348
380
  tax_rate: string;
349
381
  }
350
382
  }
383
+
384
+ interface TaxCalculationReference {
385
+ /**
386
+ * The calculation identifier for tax calculation response.
387
+ */
388
+ calculation_id: string | null;
389
+
390
+ /**
391
+ * The calculation identifier for tax calculation response line item.
392
+ */
393
+ calculation_item_id: string | null;
394
+ }
351
395
  }
352
396
  }
353
397
  }
@@ -80,6 +80,11 @@ declare module 'stripe' {
80
80
  */
81
81
  payment_intent?: string | Stripe.PaymentIntent;
82
82
 
83
+ /**
84
+ * ID of the PaymentRecord associated with this payment when `type` is `payment_record`.
85
+ */
86
+ payment_record?: string | Stripe.PaymentRecord;
87
+
83
88
  /**
84
89
  * Type of payment object associated with this invoice payment.
85
90
  */
@@ -38,10 +38,19 @@ declare module 'stripe' {
38
38
  */
39
39
  payment_intent?: string;
40
40
 
41
+ /**
42
+ * Only return invoice payments associated by this payment record ID.
43
+ */
44
+ payment_record?: string;
45
+
41
46
  /**
42
47
  * Only return invoice payments associated by this payment type.
43
48
  */
44
- type: 'payment_intent';
49
+ type: Payment.Type;
50
+ }
51
+
52
+ namespace Payment {
53
+ type Type = 'payment_intent' | 'payment_record';
45
54
  }
46
55
 
47
56
  type Status = 'canceled' | 'open' | 'paid';
@@ -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.
@@ -880,6 +946,7 @@ declare module 'stripe' {
880
946
  | 'financial_connections_account_inactive'
881
947
  | 'financial_connections_account_pending_account_numbers'
882
948
  | 'financial_connections_account_unavailable_account_numbers'
949
+ | 'financial_connections_institution_unavailable'
883
950
  | 'financial_connections_no_successful_transaction_refresh'
884
951
  | 'forwarding_api_inactive'
885
952
  | 'forwarding_api_invalid_parameter'
@@ -977,6 +1044,7 @@ declare module 'stripe' {
977
1044
  | 'return_intent_already_processed'
978
1045
  | 'routing_number_invalid'
979
1046
  | 'secret_key_required'
1047
+ | 'sensitive_data_access_expired'
980
1048
  | 'sepa_unsupported_account'
981
1049
  | 'setup_attempt_failed'
982
1050
  | 'setup_intent_authentication_failure'
@@ -996,6 +1064,7 @@ declare module 'stripe' {
996
1064
  | 'taxes_calculation_failed'
997
1065
  | 'terminal_location_country_unsupported'
998
1066
  | 'terminal_reader_busy'
1067
+ | 'terminal_reader_collected_data_invalid'
999
1068
  | 'terminal_reader_hardware_fault'
1000
1069
  | 'terminal_reader_invalid_location_for_activation'
1001
1070
  | 'terminal_reader_invalid_location_for_payment'
@@ -1008,7 +1077,9 @@ declare module 'stripe' {
1008
1077
  | 'token_in_use'
1009
1078
  | 'transfer_source_balance_parameters_mismatch'
1010
1079
  | 'transfers_not_allowed'
1011
- | 'url_invalid';
1080
+ | 'url_invalid'
1081
+ | 'v2_account_disconnection_unsupported'
1082
+ | 'v2_account_missing_configuration';
1012
1083
 
1013
1084
  type Type =
1014
1085
  | 'api_error'
@@ -1018,6 +1089,11 @@ declare module 'stripe' {
1018
1089
  }
1019
1090
 
1020
1091
  interface Parent {
1092
+ /**
1093
+ * Details about the billing cadence that generated this invoice
1094
+ */
1095
+ billing_cadence_details?: Parent.BillingCadenceDetails | null;
1096
+
1021
1097
  /**
1022
1098
  * Details about the quote that generated this invoice
1023
1099
  */
@@ -1035,6 +1111,13 @@ declare module 'stripe' {
1035
1111
  }
1036
1112
 
1037
1113
  namespace Parent {
1114
+ interface BillingCadenceDetails {
1115
+ /**
1116
+ * The billing cadence that generated this invoice
1117
+ */
1118
+ billing_cadence: string;
1119
+ }
1120
+
1038
1121
  interface QuoteDetails {
1039
1122
  /**
1040
1123
  * The quote that generated this invoice
@@ -1049,6 +1132,11 @@ declare module 'stripe' {
1049
1132
  */
1050
1133
  metadata: Stripe.Metadata | null;
1051
1134
 
1135
+ /**
1136
+ * 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).
1137
+ */
1138
+ pause_collection?: SubscriptionDetails.PauseCollection | null;
1139
+
1052
1140
  /**
1053
1141
  * The subscription that generated this invoice
1054
1142
  */
@@ -1060,7 +1148,28 @@ declare module 'stripe' {
1060
1148
  subscription_proration_date?: number;
1061
1149
  }
1062
1150
 
1063
- type Type = 'quote_details' | 'subscription_details';
1151
+ namespace SubscriptionDetails {
1152
+ interface PauseCollection {
1153
+ /**
1154
+ * The payment collection behavior for this subscription while paused. One of `keep_as_draft`, `mark_uncollectible`, or `void`.
1155
+ */
1156
+ behavior: PauseCollection.Behavior | null;
1157
+
1158
+ /**
1159
+ * The time after which the subscription will resume collecting payments.
1160
+ */
1161
+ resumes_at: number | null;
1162
+ }
1163
+
1164
+ namespace PauseCollection {
1165
+ type Behavior = 'keep_as_draft' | 'mark_uncollectible' | 'void';
1166
+ }
1167
+ }
1168
+
1169
+ type Type =
1170
+ | 'billing_cadence_details'
1171
+ | 'quote_details'
1172
+ | 'subscription_details';
1064
1173
  }
1065
1174
 
1066
1175
  interface PaymentSettings {
@@ -1102,16 +1211,31 @@ declare module 'stripe' {
1102
1211
  */
1103
1212
  customer_balance: PaymentMethodOptions.CustomerBalance | null;
1104
1213
 
1214
+ /**
1215
+ * 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.
1216
+ */
1217
+ id_bank_transfer?: PaymentMethodOptions.IdBankTransfer | null;
1218
+
1105
1219
  /**
1106
1220
  * If paying by `konbini`, this sub-hash contains details about the Konbini payment method options to pass to the invoice's PaymentIntent.
1107
1221
  */
1108
1222
  konbini: PaymentMethodOptions.Konbini | null;
1109
1223
 
1224
+ /**
1225
+ * If paying by `pix`, this sub-hash contains details about the Pix payment method options to pass to the invoice's PaymentIntent.
1226
+ */
1227
+ pix?: PaymentMethodOptions.Pix | null;
1228
+
1110
1229
  /**
1111
1230
  * If paying by `sepa_debit`, this sub-hash contains details about the SEPA Direct Debit payment method options to pass to the invoice's PaymentIntent.
1112
1231
  */
1113
1232
  sepa_debit: PaymentMethodOptions.SepaDebit | null;
1114
1233
 
1234
+ /**
1235
+ * If paying by `upi`, this sub-hash contains details about the UPI payment method options to pass to the invoice's PaymentIntent.
1236
+ */
1237
+ upi?: PaymentMethodOptions.Upi | null;
1238
+
1115
1239
  /**
1116
1240
  * If paying by `us_bank_account`, this sub-hash contains details about the ACH direct debit payment method options to pass to the invoice's PaymentIntent.
1117
1241
  */
@@ -1207,10 +1331,55 @@ declare module 'stripe' {
1207
1331
  }
1208
1332
  }
1209
1333
 
1334
+ interface IdBankTransfer {}
1335
+
1210
1336
  interface Konbini {}
1211
1337
 
1338
+ interface Pix {
1339
+ /**
1340
+ * Determines if the amount includes the IOF tax.
1341
+ */
1342
+ amount_includes_iof: Pix.AmountIncludesIof | null;
1343
+ }
1344
+
1345
+ namespace Pix {
1346
+ type AmountIncludesIof = 'always' | 'never';
1347
+ }
1348
+
1212
1349
  interface SepaDebit {}
1213
1350
 
1351
+ interface Upi {
1352
+ mandate_options?: Upi.MandateOptions;
1353
+ }
1354
+
1355
+ namespace Upi {
1356
+ interface MandateOptions {
1357
+ /**
1358
+ * Amount to be charged for future payments.
1359
+ */
1360
+ amount: number | null;
1361
+
1362
+ /**
1363
+ * One of `fixed` or `maximum`. If `fixed`, the `amount` param refers to the exact amount to be charged in future payments. If `maximum`, the amount charged can be up to the value passed for the `amount` param.
1364
+ */
1365
+ amount_type: MandateOptions.AmountType | null;
1366
+
1367
+ /**
1368
+ * A description of the mandate or subscription that is meant to be displayed to the customer.
1369
+ */
1370
+ description: string | null;
1371
+
1372
+ /**
1373
+ * End date of the mandate or subscription. If not provided, the mandate will be active until canceled. If provided, end date should be after start date.
1374
+ */
1375
+ end_date: number | null;
1376
+ }
1377
+
1378
+ namespace MandateOptions {
1379
+ type AmountType = 'fixed' | 'maximum';
1380
+ }
1381
+ }
1382
+
1214
1383
  interface UsBankAccount {
1215
1384
  financial_connections?: UsBankAccount.FinancialConnections;
1216
1385
 
@@ -1241,6 +1410,11 @@ declare module 'stripe' {
1241
1410
  * The account subcategories to use to filter for possible accounts to link. Valid subcategories are `checking` and `savings`.
1242
1411
  */
1243
1412
  account_subcategories?: Array<Filters.AccountSubcategory>;
1413
+
1414
+ /**
1415
+ * The institution to use to filter for possible accounts to link.
1416
+ */
1417
+ institution?: string;
1244
1418
  }
1245
1419
 
1246
1420
  namespace Filters {
@@ -1253,7 +1427,11 @@ declare module 'stripe' {
1253
1427
  | 'payment_method'
1254
1428
  | 'transactions';
1255
1429
 
1256
- type Prefetch = 'balances' | 'ownership' | 'transactions';
1430
+ type Prefetch =
1431
+ | 'balances'
1432
+ | 'inferred_balances'
1433
+ | 'ownership'
1434
+ | 'transactions';
1257
1435
  }
1258
1436
 
1259
1437
  type VerificationMethod = 'automatic' | 'instant' | 'microdeposits';
@@ -1273,11 +1451,13 @@ declare module 'stripe' {
1273
1451
  | 'card'
1274
1452
  | 'cashapp'
1275
1453
  | 'crypto'
1454
+ | 'custom'
1276
1455
  | 'customer_balance'
1277
1456
  | 'eps'
1278
1457
  | 'fpx'
1279
1458
  | 'giropay'
1280
1459
  | 'grabpay'
1460
+ | 'id_bank_transfer'
1281
1461
  | 'ideal'
1282
1462
  | 'jp_credit_transfer'
1283
1463
  | 'kakao_pay'
@@ -1292,12 +1472,15 @@ declare module 'stripe' {
1292
1472
  | 'payco'
1293
1473
  | 'paynow'
1294
1474
  | 'paypal'
1475
+ | 'pix'
1295
1476
  | 'promptpay'
1296
1477
  | 'revolut_pay'
1297
1478
  | 'sepa_credit_transfer'
1298
1479
  | 'sepa_debit'
1299
1480
  | 'sofort'
1481
+ | 'stripe_balance'
1300
1482
  | 'swish'
1483
+ | 'upi'
1301
1484
  | 'us_bank_account'
1302
1485
  | 'wechat_pay';
1303
1486
  }
@@ -1495,6 +1678,18 @@ declare module 'stripe' {
1495
1678
  discount: string | Stripe.Discount | Stripe.DeletedDiscount;
1496
1679
  }
1497
1680
 
1681
+ interface TotalMarginAmount {
1682
+ /**
1683
+ * The amount, in cents (or local equivalent), of the reduction in line item amount.
1684
+ */
1685
+ amount: number;
1686
+
1687
+ /**
1688
+ * The margin that was applied to get this margin amount.
1689
+ */
1690
+ margin: string | Stripe.Margin;
1691
+ }
1692
+
1498
1693
  interface TotalPretaxCreditAmount {
1499
1694
  /**
1500
1695
  * The amount, in cents (or local equivalent), of the pretax credit amount.
@@ -1514,6 +1709,11 @@ declare module 'stripe' {
1514
1709
  */
1515
1710
  discount?: string | Stripe.Discount | Stripe.DeletedDiscount;
1516
1711
 
1712
+ /**
1713
+ * The margin that was applied to get this pretax credit amount.
1714
+ */
1715
+ margin?: string | Stripe.Margin;
1716
+
1517
1717
  /**
1518
1718
  * Type of the pretax credit amount referenced.
1519
1719
  */
@@ -1521,7 +1721,7 @@ declare module 'stripe' {
1521
1721
  }
1522
1722
 
1523
1723
  namespace TotalPretaxCreditAmount {
1524
- type Type = 'credit_balance_transaction' | 'discount';
1724
+ type Type = 'credit_balance_transaction' | 'discount' | 'margin';
1525
1725
  }
1526
1726
 
1527
1727
  interface TotalTax {