stripe 19.2.0 → 19.3.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 (317) hide show
  1. package/CHANGELOG.md +1471 -12
  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/PaymentIntents.js +8 -0
  22. package/cjs/resources/Privacy/RedactionJobs.js +42 -0
  23. package/cjs/resources/Quotes.js +32 -0
  24. package/cjs/resources/SubscriptionSchedules.js +4 -0
  25. package/cjs/resources/Subscriptions.js +4 -0
  26. package/cjs/resources/Tax/Associations.js +9 -0
  27. package/cjs/resources/Tax/Forms.js +20 -0
  28. package/cjs/resources/Terminal/OnboardingLinks.js +12 -0
  29. package/cjs/resources/Terminal/ReaderCollectedData.js +12 -0
  30. package/cjs/resources/V2/Billing/BillSettings/Versions.js +17 -0
  31. package/cjs/resources/V2/Billing/BillSettings.js +27 -0
  32. package/cjs/resources/V2/Billing/Cadences.js +23 -0
  33. package/cjs/resources/V2/Billing/CollectionSettings/Versions.js +17 -0
  34. package/cjs/resources/V2/Billing/CollectionSettings.js +30 -0
  35. package/cjs/resources/V2/Billing/Profiles.js +19 -0
  36. package/cjs/resources/V2/Core/AccountLinks.js +9 -0
  37. package/cjs/resources/V2/Core/Accounts/Persons.js +29 -0
  38. package/cjs/resources/V2/Core/Accounts.js +25 -0
  39. package/cjs/resources/V2/Core/Vault/GbBankAccounts.js +33 -0
  40. package/cjs/resources/V2/Core/Vault/UsBankAccounts.js +37 -0
  41. package/cjs/resources/V2/MoneyManagement/Adjustments.js +17 -0
  42. package/cjs/resources/V2/MoneyManagement/FinancialAccounts.js +29 -0
  43. package/cjs/resources/V2/MoneyManagement/FinancialAddresses.js +21 -0
  44. package/cjs/resources/V2/MoneyManagement/InboundTransfers.js +21 -0
  45. package/cjs/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +16 -0
  46. package/cjs/resources/V2/MoneyManagement/OutboundPayments.js +25 -0
  47. package/cjs/resources/V2/MoneyManagement/OutboundSetupIntents.js +29 -0
  48. package/cjs/resources/V2/MoneyManagement/OutboundTransfers.js +25 -0
  49. package/cjs/resources/V2/MoneyManagement/PayoutMethods.js +25 -0
  50. package/cjs/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +12 -0
  51. package/cjs/resources/V2/MoneyManagement/ReceivedCredits.js +17 -0
  52. package/cjs/resources/V2/MoneyManagement/ReceivedDebits.js +17 -0
  53. package/cjs/resources/V2/MoneyManagement/TransactionEntries.js +17 -0
  54. package/cjs/resources/V2/MoneyManagement/Transactions.js +17 -0
  55. package/cjs/resources/V2/Payments/OffSessionPayments.js +29 -0
  56. package/cjs/resources/V2/TestHelpers/FinancialAddresses.js +16 -0
  57. package/cjs/resources.js +106 -8
  58. package/cjs/stripe.core.js +1 -1
  59. package/esm/Error.js +100 -0
  60. package/esm/apiVersion.js +1 -2
  61. package/esm/resources/AccountNotices.js +18 -0
  62. package/esm/resources/Billing/Analytics/MeterUsage.js +9 -0
  63. package/esm/resources/Capital/FinancingOffers.js +18 -0
  64. package/esm/resources/Capital/FinancingSummary.js +9 -0
  65. package/esm/resources/Capital/FinancingTransactions.js +14 -0
  66. package/esm/resources/ExternalAccounts.js +20 -0
  67. package/esm/resources/FinancialConnections/Accounts.js +5 -0
  68. package/esm/resources/FinancialConnections/Institutions.js +14 -0
  69. package/esm/resources/FxQuotes.js +12 -0
  70. package/esm/resources/Issuing/CreditUnderwritingRecords.js +30 -0
  71. package/esm/resources/Issuing/DisputeSettlementDetails.js +14 -0
  72. package/esm/resources/Issuing/FraudLiabilityDebits.js +14 -0
  73. package/esm/resources/Mandates.js +5 -0
  74. package/esm/resources/Margins.js +19 -0
  75. package/esm/resources/Orders.js +21 -0
  76. package/esm/resources/PaymentIntents.js +8 -0
  77. package/esm/resources/Privacy/RedactionJobs.js +39 -0
  78. package/esm/resources/Quotes.js +32 -0
  79. package/esm/resources/SubscriptionSchedules.js +4 -0
  80. package/esm/resources/Subscriptions.js +4 -0
  81. package/esm/resources/Tax/Associations.js +6 -0
  82. package/esm/resources/Tax/Forms.js +17 -0
  83. package/esm/resources/Terminal/OnboardingLinks.js +9 -0
  84. package/esm/resources/Terminal/ReaderCollectedData.js +9 -0
  85. package/esm/resources/V2/Billing/BillSettings/Versions.js +14 -0
  86. package/esm/resources/V2/Billing/BillSettings.js +24 -0
  87. package/esm/resources/V2/Billing/Cadences.js +20 -0
  88. package/esm/resources/V2/Billing/CollectionSettings/Versions.js +14 -0
  89. package/esm/resources/V2/Billing/CollectionSettings.js +27 -0
  90. package/esm/resources/V2/Billing/Profiles.js +16 -0
  91. package/esm/resources/V2/Core/AccountLinks.js +6 -0
  92. package/esm/resources/V2/Core/Accounts/Persons.js +26 -0
  93. package/esm/resources/V2/Core/Accounts.js +22 -0
  94. package/esm/resources/V2/Core/Vault/GbBankAccounts.js +30 -0
  95. package/esm/resources/V2/Core/Vault/UsBankAccounts.js +34 -0
  96. package/esm/resources/V2/MoneyManagement/Adjustments.js +14 -0
  97. package/esm/resources/V2/MoneyManagement/FinancialAccounts.js +26 -0
  98. package/esm/resources/V2/MoneyManagement/FinancialAddresses.js +18 -0
  99. package/esm/resources/V2/MoneyManagement/InboundTransfers.js +18 -0
  100. package/esm/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +13 -0
  101. package/esm/resources/V2/MoneyManagement/OutboundPayments.js +22 -0
  102. package/esm/resources/V2/MoneyManagement/OutboundSetupIntents.js +26 -0
  103. package/esm/resources/V2/MoneyManagement/OutboundTransfers.js +22 -0
  104. package/esm/resources/V2/MoneyManagement/PayoutMethods.js +22 -0
  105. package/esm/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +9 -0
  106. package/esm/resources/V2/MoneyManagement/ReceivedCredits.js +14 -0
  107. package/esm/resources/V2/MoneyManagement/ReceivedDebits.js +14 -0
  108. package/esm/resources/V2/MoneyManagement/TransactionEntries.js +14 -0
  109. package/esm/resources/V2/MoneyManagement/Transactions.js +14 -0
  110. package/esm/resources/V2/Payments/OffSessionPayments.js +26 -0
  111. package/esm/resources/V2/TestHelpers/FinancialAddresses.js +13 -0
  112. package/esm/resources.js +93 -0
  113. package/esm/stripe.core.js +1 -1
  114. package/package.json +1 -1
  115. package/types/AccountLinksResource.d.ts +5 -1
  116. package/types/AccountNotices.d.ts +113 -0
  117. package/types/AccountNoticesResource.d.ts +98 -0
  118. package/types/AccountSessions.d.ts +45 -0
  119. package/types/AccountSessionsResource.d.ts +264 -0
  120. package/types/Accounts.d.ts +214 -1
  121. package/types/AccountsResource.d.ts +544 -0
  122. package/types/BankAccounts.d.ts +2 -0
  123. package/types/Billing/AlertTriggereds.d.ts +1 -1
  124. package/types/Billing/Analytics/MeterUsage.d.ts +31 -0
  125. package/types/Billing/Analytics/MeterUsageResource.d.ts +689 -0
  126. package/types/Billing/Analytics/MeterUsageRows.d.ts +51 -0
  127. package/types/Billing/CreditBalanceSummary.d.ts +5 -0
  128. package/types/Billing/CreditBalanceSummaryResource.d.ts +8 -3
  129. package/types/Billing/CreditBalanceTransactionsResource.d.ts +12 -4
  130. package/types/Billing/CreditGrants.d.ts +5 -0
  131. package/types/Billing/CreditGrantsResource.d.ts +13 -3
  132. package/types/BillingPortal/Sessions.d.ts +5 -0
  133. package/types/BillingPortal/SessionsResource.d.ts +12 -4
  134. package/types/Capabilities.d.ts +2 -0
  135. package/types/Capital/FinancingOffers.d.ts +188 -0
  136. package/types/Capital/FinancingOffersResource.d.ts +97 -0
  137. package/types/Capital/FinancingSummary.d.ts +106 -0
  138. package/types/Capital/FinancingSummaryResource.d.ts +27 -0
  139. package/types/Capital/FinancingTransactions.d.ts +135 -0
  140. package/types/Capital/FinancingTransactionsResource.d.ts +68 -0
  141. package/types/Cards.d.ts +5 -0
  142. package/types/CashBalances.d.ts +5 -0
  143. package/types/Charges.d.ts +176 -0
  144. package/types/ChargesResource.d.ts +1418 -0
  145. package/types/Checkout/Sessions.d.ts +369 -2
  146. package/types/Checkout/SessionsResource.d.ts +632 -2
  147. package/types/ConfirmationTokens.d.ts +125 -0
  148. package/types/Coupons.d.ts +33 -0
  149. package/types/CouponsResource.d.ts +21 -0
  150. package/types/CreditNoteLineItems.d.ts +17 -0
  151. package/types/CreditNotes.d.ts +5 -0
  152. package/types/CreditNotesResource.d.ts +5 -0
  153. package/types/CustomerBalanceTransactions.d.ts +2 -0
  154. package/types/CustomerCashBalanceTransactions.d.ts +2 -0
  155. package/types/CustomerSessions.d.ts +46 -0
  156. package/types/CustomerSessionsResource.d.ts +47 -1
  157. package/types/Customers.d.ts +2 -0
  158. package/types/CustomersResource.d.ts +8 -0
  159. package/types/Discounts.d.ts +10 -0
  160. package/types/Disputes.d.ts +40 -0
  161. package/types/DisputesResource.d.ts +11 -0
  162. package/types/Errors.d.ts +85 -0
  163. package/types/EventTypes.d.ts +630 -0
  164. package/types/Events.d.ts +95 -0
  165. package/types/ExternalAccountsResource.d.ts +304 -0
  166. package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
  167. package/types/FinancialConnections/Accounts.d.ts +36 -1
  168. package/types/FinancialConnections/AccountsResource.d.ts +40 -3
  169. package/types/FinancialConnections/Institutions.d.ts +98 -0
  170. package/types/FinancialConnections/InstitutionsResource.d.ts +47 -0
  171. package/types/FinancialConnections/Sessions.d.ts +51 -1
  172. package/types/FinancialConnections/SessionsResource.d.ts +43 -1
  173. package/types/FxQuotes.d.ts +155 -0
  174. package/types/FxQuotesResource.d.ts +130 -0
  175. package/types/Identity/VerificationSessions.d.ts +5 -0
  176. package/types/Identity/VerificationSessionsResource.d.ts +7 -0
  177. package/types/InvoiceItems.d.ts +10 -0
  178. package/types/InvoiceItemsResource.d.ts +117 -6
  179. package/types/InvoiceLineItems.d.ts +45 -1
  180. package/types/Invoices.d.ts +203 -4
  181. package/types/InvoicesResource.d.ts +1620 -2
  182. package/types/Issuing/CardholdersResource.d.ts +2 -1
  183. package/types/Issuing/CreditUnderwritingRecords.d.ts +451 -0
  184. package/types/Issuing/CreditUnderwritingRecordsResource.d.ts +1032 -0
  185. package/types/Issuing/DisputeSettlementDetails.d.ts +85 -0
  186. package/types/Issuing/DisputeSettlementDetailsResource.d.ts +52 -0
  187. package/types/Issuing/FraudLiabilityDebits.d.ts +52 -0
  188. package/types/Issuing/FraudLiabilityDebitsResource.d.ts +52 -0
  189. package/types/Issuing/Settlements.d.ts +113 -0
  190. package/types/Issuing/Transactions.d.ts +5 -0
  191. package/types/Issuing/TransactionsResource.d.ts +5 -0
  192. package/types/LineItems.d.ts +49 -0
  193. package/types/Mandates.d.ts +135 -1
  194. package/types/MandatesResource.d.ts +31 -0
  195. package/types/Margins.d.ts +56 -0
  196. package/types/MarginsResource.d.ts +114 -0
  197. package/types/Orders.d.ts +1163 -0
  198. package/types/OrdersResource.d.ts +3139 -0
  199. package/types/PaymentAttemptRecords.d.ts +141 -0
  200. package/types/PaymentIntents.d.ts +773 -3
  201. package/types/PaymentIntentsResource.d.ts +9628 -4805
  202. package/types/PaymentLinks.d.ts +6 -0
  203. package/types/PaymentLinksResource.d.ts +12 -0
  204. package/types/PaymentMethodConfigurations.d.ts +216 -0
  205. package/types/PaymentMethodConfigurationsResource.d.ts +300 -0
  206. package/types/PaymentMethods.d.ts +130 -0
  207. package/types/PaymentMethodsResource.d.ts +167 -2
  208. package/types/PaymentRecords.d.ts +141 -0
  209. package/types/Persons.d.ts +2 -0
  210. package/types/Prices.d.ts +22 -0
  211. package/types/PricesResource.d.ts +22 -0
  212. package/types/Privacy/RedactionJobValidationErrors.d.ts +60 -0
  213. package/types/Privacy/RedactionJobs.d.ts +111 -0
  214. package/types/Privacy/RedactionJobsResource.d.ts +230 -0
  215. package/types/PromotionCodes.d.ts +5 -0
  216. package/types/PromotionCodesResource.d.ts +10 -0
  217. package/types/QuoteLines.d.ts +634 -0
  218. package/types/QuotePreviewInvoices.d.ts +1771 -0
  219. package/types/QuotePreviewSubscriptionSchedules.d.ts +908 -0
  220. package/types/Quotes.d.ts +594 -1
  221. package/types/QuotesResource.d.ts +2588 -243
  222. package/types/Refunds.d.ts +14 -0
  223. package/types/SetupAttempts.d.ts +51 -1
  224. package/types/SetupIntents.d.ts +218 -2
  225. package/types/SetupIntentsResource.d.ts +954 -4
  226. package/types/Sources.d.ts +29 -0
  227. package/types/SubscriptionItems.d.ts +26 -0
  228. package/types/SubscriptionItemsResource.d.ts +109 -0
  229. package/types/SubscriptionSchedules.d.ts +205 -0
  230. package/types/SubscriptionSchedulesResource.d.ts +1233 -5
  231. package/types/Subscriptions.d.ts +262 -1
  232. package/types/SubscriptionsResource.d.ts +745 -8
  233. package/types/Tax/Associations.d.ts +82 -0
  234. package/types/Tax/AssociationsResource.d.ts +29 -0
  235. package/types/Tax/Forms.d.ts +220 -0
  236. package/types/Tax/FormsResource.d.ts +107 -0
  237. package/types/TaxIds.d.ts +10 -0
  238. package/types/TaxIdsResource.d.ts +10 -0
  239. package/types/Terminal/Configurations.d.ts +9 -0
  240. package/types/Terminal/ConfigurationsResource.d.ts +28 -0
  241. package/types/Terminal/OnboardingLinks.d.ts +57 -0
  242. package/types/Terminal/OnboardingLinksResource.d.ts +62 -0
  243. package/types/Terminal/ReaderCollectedData.d.ts +51 -0
  244. package/types/Terminal/ReaderCollectedDataResource.d.ts +29 -0
  245. package/types/Terminal/Readers.d.ts +20 -0
  246. package/types/TestHelpers/ConfirmationTokensResource.d.ts +126 -0
  247. package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +26 -0
  248. package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +26 -0
  249. package/types/Transfers.d.ts +5 -0
  250. package/types/TransfersResource.d.ts +5 -0
  251. package/types/Treasury/FinancialAccountFeatures.d.ts +7 -0
  252. package/types/Treasury/FinancialAccounts.d.ts +5 -0
  253. package/types/Treasury/FinancialAccountsResource.d.ts +37 -0
  254. package/types/Treasury/OutboundTransfers.d.ts +26 -0
  255. package/types/Treasury/OutboundTransfersResource.d.ts +26 -0
  256. package/types/Treasury/ReceivedCredits.d.ts +26 -0
  257. package/types/Treasury/ReceivedDebits.d.ts +31 -0
  258. package/types/V2/Billing/BillSettingVersions.d.ts +97 -0
  259. package/types/V2/Billing/BillSettings/VersionsResource.d.ts +58 -0
  260. package/types/V2/Billing/BillSettings.d.ts +120 -0
  261. package/types/V2/Billing/BillSettingsResource.d.ts +241 -0
  262. package/types/V2/Billing/Cadences.d.ts +686 -0
  263. package/types/V2/Billing/CadencesResource.d.ts +487 -0
  264. package/types/V2/Billing/CollectionSettingVersions.d.ts +314 -0
  265. package/types/V2/Billing/CollectionSettings/VersionsResource.d.ts +62 -0
  266. package/types/V2/Billing/CollectionSettings.d.ts +337 -0
  267. package/types/V2/Billing/CollectionSettingsResource.d.ts +675 -0
  268. package/types/V2/Billing/Profiles.d.ts +70 -0
  269. package/types/V2/Billing/ProfilesResource.d.ts +150 -0
  270. package/types/V2/Core/AccountLinks.d.ts +168 -0
  271. package/types/V2/Core/AccountLinksResource.d.ts +152 -0
  272. package/types/V2/Core/AccountPersons.d.ts +615 -0
  273. package/types/V2/Core/Accounts/PersonsResource.d.ts +1153 -0
  274. package/types/V2/Core/Accounts.d.ts +6010 -0
  275. package/types/V2/Core/AccountsResource.d.ts +5104 -0
  276. package/types/V2/Core/EventTypes.d.ts +1623 -9
  277. package/types/V2/Core/Vault/GbBankAccounts.d.ts +160 -0
  278. package/types/V2/Core/Vault/GbBankAccountsResource.d.ts +194 -0
  279. package/types/V2/Core/Vault/UsBankAccounts.d.ts +116 -0
  280. package/types/V2/Core/Vault/UsBankAccountsResource.d.ts +198 -0
  281. package/types/V2/FinancialAddressCreditSimulations.d.ts +27 -0
  282. package/types/V2/FinancialAddressGeneratedMicrodeposits.d.ts +32 -0
  283. package/types/V2/MoneyManagement/Adjustments.d.ts +110 -0
  284. package/types/V2/MoneyManagement/AdjustmentsResource.d.ts +83 -0
  285. package/types/V2/MoneyManagement/FinancialAccounts.d.ts +148 -0
  286. package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +172 -0
  287. package/types/V2/MoneyManagement/FinancialAddresses.d.ts +178 -0
  288. package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +112 -0
  289. package/types/V2/MoneyManagement/InboundTransfers.d.ts +206 -0
  290. package/types/V2/MoneyManagement/InboundTransfersResource.d.ts +144 -0
  291. package/types/V2/MoneyManagement/OutboundPaymentQuotes.d.ts +170 -0
  292. package/types/V2/MoneyManagement/OutboundPaymentQuotesResource.d.ts +115 -0
  293. package/types/V2/MoneyManagement/OutboundPayments.d.ts +278 -0
  294. package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +242 -0
  295. package/types/V2/MoneyManagement/OutboundSetupIntents.d.ts +97 -0
  296. package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +296 -0
  297. package/types/V2/MoneyManagement/OutboundTransfers.d.ts +251 -0
  298. package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +208 -0
  299. package/types/V2/MoneyManagement/PayoutMethods.d.ts +160 -0
  300. package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpec.d.ts +93 -0
  301. package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecResource.d.ts +41 -0
  302. package/types/V2/MoneyManagement/PayoutMethodsResource.d.ts +113 -0
  303. package/types/V2/MoneyManagement/ReceivedCredits.d.ts +302 -0
  304. package/types/V2/MoneyManagement/ReceivedCreditsResource.d.ts +78 -0
  305. package/types/V2/MoneyManagement/ReceivedDebits.d.ts +176 -0
  306. package/types/V2/MoneyManagement/ReceivedDebitsResource.d.ts +48 -0
  307. package/types/V2/MoneyManagement/TransactionEntries.d.ts +162 -0
  308. package/types/V2/MoneyManagement/TransactionEntriesResource.d.ts +82 -0
  309. package/types/V2/MoneyManagement/Transactions.d.ts +177 -0
  310. package/types/V2/MoneyManagement/TransactionsResource.d.ts +83 -0
  311. package/types/V2/Payments/OffSessionPayments.d.ts +326 -0
  312. package/types/V2/Payments/OffSessionPaymentsResource.d.ts +401 -0
  313. package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +68 -0
  314. package/types/WebhookEndpointsResource.d.ts +74 -0
  315. package/types/apiVersion.d.ts +1 -2
  316. package/types/index.d.ts +153 -0
  317. package/types/lib.d.ts +10 -0
@@ -640,6 +640,7 @@ declare module 'stripe' {
640
640
  | 'eps'
641
641
  | 'fpx'
642
642
  | 'giropay'
643
+ | 'gopay'
643
644
  | 'grabpay'
644
645
  | 'ideal'
645
646
  | 'klarna'
@@ -653,10 +654,15 @@ declare module 'stripe' {
653
654
  | 'pay_by_bank'
654
655
  | 'paynow'
655
656
  | 'paypal'
657
+ | 'paypay'
658
+ | 'payto'
656
659
  | 'pix'
657
660
  | 'promptpay'
661
+ | 'qris'
662
+ | 'rechnung'
658
663
  | 'satispay'
659
664
  | 'sepa_debit'
665
+ | 'shopeepay'
660
666
  | 'sofort'
661
667
  | 'swish'
662
668
  | 'twint'
@@ -815,6 +815,7 @@ declare module 'stripe' {
815
815
  | 'eps'
816
816
  | 'fpx'
817
817
  | 'giropay'
818
+ | 'gopay'
818
819
  | 'grabpay'
819
820
  | 'ideal'
820
821
  | 'klarna'
@@ -828,10 +829,15 @@ declare module 'stripe' {
828
829
  | 'pay_by_bank'
829
830
  | 'paynow'
830
831
  | 'paypal'
832
+ | 'paypay'
833
+ | 'payto'
831
834
  | 'pix'
832
835
  | 'promptpay'
836
+ | 'qris'
837
+ | 'rechnung'
833
838
  | 'satispay'
834
839
  | 'sepa_debit'
840
+ | 'shopeepay'
835
841
  | 'sofort'
836
842
  | 'swish'
837
843
  | 'twint'
@@ -1824,6 +1830,7 @@ declare module 'stripe' {
1824
1830
  | 'eps'
1825
1831
  | 'fpx'
1826
1832
  | 'giropay'
1833
+ | 'gopay'
1827
1834
  | 'grabpay'
1828
1835
  | 'ideal'
1829
1836
  | 'klarna'
@@ -1837,10 +1844,15 @@ declare module 'stripe' {
1837
1844
  | 'pay_by_bank'
1838
1845
  | 'paynow'
1839
1846
  | 'paypal'
1847
+ | 'paypay'
1848
+ | 'payto'
1840
1849
  | 'pix'
1841
1850
  | 'promptpay'
1851
+ | 'qris'
1852
+ | 'rechnung'
1842
1853
  | 'satispay'
1843
1854
  | 'sepa_debit'
1855
+ | 'shopeepay'
1844
1856
  | 'sofort'
1845
1857
  | 'swish'
1846
1858
  | 'twint'
@@ -83,8 +83,12 @@ declare module 'stripe' {
83
83
 
84
84
  google_pay?: PaymentMethodConfiguration.GooglePay;
85
85
 
86
+ gopay?: PaymentMethodConfiguration.Gopay;
87
+
86
88
  grabpay?: PaymentMethodConfiguration.Grabpay;
87
89
 
90
+ id_bank_transfer?: PaymentMethodConfiguration.IdBankTransfer;
91
+
88
92
  ideal?: PaymentMethodConfiguration.Ideal;
89
93
 
90
94
  /**
@@ -141,10 +145,16 @@ declare module 'stripe' {
141
145
 
142
146
  paypal?: PaymentMethodConfiguration.Paypal;
143
147
 
148
+ paypay?: PaymentMethodConfiguration.Paypay;
149
+
150
+ payto?: PaymentMethodConfiguration.Payto;
151
+
144
152
  pix?: PaymentMethodConfiguration.Pix;
145
153
 
146
154
  promptpay?: PaymentMethodConfiguration.Promptpay;
147
155
 
156
+ qris?: PaymentMethodConfiguration.Qris;
157
+
148
158
  revolut_pay?: PaymentMethodConfiguration.RevolutPay;
149
159
 
150
160
  samsung_pay?: PaymentMethodConfiguration.SamsungPay;
@@ -153,6 +163,8 @@ declare module 'stripe' {
153
163
 
154
164
  sepa_debit?: PaymentMethodConfiguration.SepaDebit;
155
165
 
166
+ shopeepay?: PaymentMethodConfiguration.Shopeepay;
167
+
156
168
  sofort?: PaymentMethodConfiguration.Sofort;
157
169
 
158
170
  swish?: PaymentMethodConfiguration.Swish;
@@ -915,6 +927,40 @@ declare module 'stripe' {
915
927
  }
916
928
  }
917
929
 
930
+ interface Gopay {
931
+ /**
932
+ * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
933
+ */
934
+ available: boolean;
935
+
936
+ display_preference: Gopay.DisplayPreference;
937
+ }
938
+
939
+ namespace Gopay {
940
+ interface DisplayPreference {
941
+ /**
942
+ * For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
943
+ */
944
+ overridable: boolean | null;
945
+
946
+ /**
947
+ * The account's display preference.
948
+ */
949
+ preference: DisplayPreference.Preference;
950
+
951
+ /**
952
+ * The effective display preference value.
953
+ */
954
+ value: DisplayPreference.Value;
955
+ }
956
+
957
+ namespace DisplayPreference {
958
+ type Preference = 'none' | 'off' | 'on';
959
+
960
+ type Value = 'off' | 'on';
961
+ }
962
+ }
963
+
918
964
  interface Grabpay {
919
965
  /**
920
966
  * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
@@ -949,6 +995,40 @@ declare module 'stripe' {
949
995
  }
950
996
  }
951
997
 
998
+ interface IdBankTransfer {
999
+ /**
1000
+ * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1001
+ */
1002
+ available: boolean;
1003
+
1004
+ display_preference: IdBankTransfer.DisplayPreference;
1005
+ }
1006
+
1007
+ namespace IdBankTransfer {
1008
+ interface DisplayPreference {
1009
+ /**
1010
+ * For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1011
+ */
1012
+ overridable: boolean | null;
1013
+
1014
+ /**
1015
+ * The account's display preference.
1016
+ */
1017
+ preference: DisplayPreference.Preference;
1018
+
1019
+ /**
1020
+ * The effective display preference value.
1021
+ */
1022
+ value: DisplayPreference.Value;
1023
+ }
1024
+
1025
+ namespace DisplayPreference {
1026
+ type Preference = 'none' | 'off' | 'on';
1027
+
1028
+ type Value = 'off' | 'on';
1029
+ }
1030
+ }
1031
+
952
1032
  interface Ideal {
953
1033
  /**
954
1034
  * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
@@ -1561,6 +1641,74 @@ declare module 'stripe' {
1561
1641
  }
1562
1642
  }
1563
1643
 
1644
+ interface Paypay {
1645
+ /**
1646
+ * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1647
+ */
1648
+ available: boolean;
1649
+
1650
+ display_preference: Paypay.DisplayPreference;
1651
+ }
1652
+
1653
+ namespace Paypay {
1654
+ interface DisplayPreference {
1655
+ /**
1656
+ * For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1657
+ */
1658
+ overridable: boolean | null;
1659
+
1660
+ /**
1661
+ * The account's display preference.
1662
+ */
1663
+ preference: DisplayPreference.Preference;
1664
+
1665
+ /**
1666
+ * The effective display preference value.
1667
+ */
1668
+ value: DisplayPreference.Value;
1669
+ }
1670
+
1671
+ namespace DisplayPreference {
1672
+ type Preference = 'none' | 'off' | 'on';
1673
+
1674
+ type Value = 'off' | 'on';
1675
+ }
1676
+ }
1677
+
1678
+ interface Payto {
1679
+ /**
1680
+ * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1681
+ */
1682
+ available: boolean;
1683
+
1684
+ display_preference: Payto.DisplayPreference;
1685
+ }
1686
+
1687
+ namespace Payto {
1688
+ interface DisplayPreference {
1689
+ /**
1690
+ * For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1691
+ */
1692
+ overridable: boolean | null;
1693
+
1694
+ /**
1695
+ * The account's display preference.
1696
+ */
1697
+ preference: DisplayPreference.Preference;
1698
+
1699
+ /**
1700
+ * The effective display preference value.
1701
+ */
1702
+ value: DisplayPreference.Value;
1703
+ }
1704
+
1705
+ namespace DisplayPreference {
1706
+ type Preference = 'none' | 'off' | 'on';
1707
+
1708
+ type Value = 'off' | 'on';
1709
+ }
1710
+ }
1711
+
1564
1712
  interface Pix {
1565
1713
  /**
1566
1714
  * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
@@ -1629,6 +1777,40 @@ declare module 'stripe' {
1629
1777
  }
1630
1778
  }
1631
1779
 
1780
+ interface Qris {
1781
+ /**
1782
+ * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1783
+ */
1784
+ available: boolean;
1785
+
1786
+ display_preference: Qris.DisplayPreference;
1787
+ }
1788
+
1789
+ namespace Qris {
1790
+ interface DisplayPreference {
1791
+ /**
1792
+ * For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1793
+ */
1794
+ overridable: boolean | null;
1795
+
1796
+ /**
1797
+ * The account's display preference.
1798
+ */
1799
+ preference: DisplayPreference.Preference;
1800
+
1801
+ /**
1802
+ * The effective display preference value.
1803
+ */
1804
+ value: DisplayPreference.Value;
1805
+ }
1806
+
1807
+ namespace DisplayPreference {
1808
+ type Preference = 'none' | 'off' | 'on';
1809
+
1810
+ type Value = 'off' | 'on';
1811
+ }
1812
+ }
1813
+
1632
1814
  interface RevolutPay {
1633
1815
  /**
1634
1816
  * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
@@ -1765,6 +1947,40 @@ declare module 'stripe' {
1765
1947
  }
1766
1948
  }
1767
1949
 
1950
+ interface Shopeepay {
1951
+ /**
1952
+ * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1953
+ */
1954
+ available: boolean;
1955
+
1956
+ display_preference: Shopeepay.DisplayPreference;
1957
+ }
1958
+
1959
+ namespace Shopeepay {
1960
+ interface DisplayPreference {
1961
+ /**
1962
+ * For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1963
+ */
1964
+ overridable: boolean | null;
1965
+
1966
+ /**
1967
+ * The account's display preference.
1968
+ */
1969
+ preference: DisplayPreference.Preference;
1970
+
1971
+ /**
1972
+ * The effective display preference value.
1973
+ */
1974
+ value: DisplayPreference.Value;
1975
+ }
1976
+
1977
+ namespace DisplayPreference {
1978
+ type Preference = 'none' | 'off' | 'on';
1979
+
1980
+ type Value = 'off' | 'on';
1981
+ }
1982
+ }
1983
+
1768
1984
  interface Sofort {
1769
1985
  /**
1770
1986
  * Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.