stripe 18.0.0 → 18.1.0-beta.2
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.
- package/CHANGELOG.md +1187 -110
- package/OPENAPI_VERSION +1 -1
- package/README.md +1 -3
- package/VERSION +1 -1
- package/cjs/Error.js +91 -1
- package/cjs/apiVersion.js +1 -1
- package/cjs/resources/AccountNotices.js +21 -0
- package/cjs/resources/BalanceSettings.js +10 -0
- package/cjs/resources/Capital/FinancingOffers.js +21 -0
- package/cjs/resources/Capital/FinancingSummary.js +12 -0
- package/cjs/resources/Capital/FinancingTransactions.js +17 -0
- package/cjs/resources/ExternalAccounts.js +23 -0
- package/cjs/resources/FinancialConnections/Accounts.js +5 -0
- package/cjs/resources/FinancialConnections/Institutions.js +17 -0
- package/cjs/resources/GiftCards/Cards.js +23 -0
- package/cjs/resources/GiftCards/Transactions.js +33 -0
- package/cjs/resources/Invoices.js +17 -0
- package/cjs/resources/Issuing/CreditUnderwritingRecords.js +33 -0
- package/cjs/resources/Issuing/DisputeSettlementDetails.js +17 -0
- package/cjs/resources/Issuing/FraudLiabilityDebits.js +17 -0
- package/cjs/resources/Margins.js +22 -0
- package/cjs/resources/Orders.js +24 -0
- package/cjs/resources/{InvoicePayments.js → PaymentAttemptRecords.js} +4 -4
- package/cjs/resources/PaymentIntents.js +8 -0
- package/cjs/resources/PaymentRecords.js +29 -0
- package/cjs/resources/Privacy/RedactionJobs.js +46 -0
- package/cjs/resources/Quotes.js +32 -0
- package/cjs/resources/SubscriptionSchedules.js +4 -0
- package/cjs/resources/Tax/Associations.js +9 -0
- package/cjs/resources/Tax/Forms.js +20 -0
- package/cjs/resources/Terminal/ReaderCollectedData.js +12 -0
- package/cjs/resources/Terminal/Readers.js +12 -0
- package/cjs/resources/TestHelpers/Terminal/Readers.js +8 -0
- package/cjs/resources/V2/Core/AccountLinks.js +9 -0
- package/cjs/resources/V2/Core/Accounts/Persons.js +29 -0
- package/cjs/resources/V2/Core/Accounts.js +25 -0
- package/cjs/resources/V2/Core/Vault/GbBankAccounts.js +28 -0
- package/cjs/resources/V2/Core/Vault/UsBankAccounts.js +24 -0
- package/cjs/resources/V2/MoneyManagement/Adjustments.js +17 -0
- package/cjs/resources/V2/MoneyManagement/FinancialAccounts.js +17 -0
- package/cjs/resources/V2/MoneyManagement/FinancialAddresses.js +21 -0
- package/cjs/resources/V2/MoneyManagement/InboundTransfers.js +21 -0
- package/cjs/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +12 -0
- package/cjs/resources/V2/MoneyManagement/OutboundPayments.js +25 -0
- package/cjs/resources/V2/MoneyManagement/OutboundSetupIntents.js +29 -0
- package/cjs/resources/V2/MoneyManagement/OutboundTransfers.js +25 -0
- package/cjs/resources/V2/MoneyManagement/PayoutMethods.js +25 -0
- package/cjs/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +12 -0
- package/cjs/resources/V2/MoneyManagement/ReceivedCredits.js +17 -0
- package/cjs/resources/V2/MoneyManagement/ReceivedDebits.js +17 -0
- package/cjs/resources/V2/MoneyManagement/TransactionEntries.js +17 -0
- package/cjs/resources/V2/MoneyManagement/Transactions.js +17 -0
- package/cjs/resources/V2/TestHelpers/FinancialAddresses.js +16 -0
- package/cjs/resources.js +106 -18
- package/cjs/stripe.core.js +1 -1
- package/esm/Error.js +79 -0
- package/esm/apiVersion.js +1 -1
- package/esm/resources/AccountNotices.js +18 -0
- package/esm/resources/BalanceSettings.js +7 -0
- package/esm/resources/Capital/FinancingOffers.js +18 -0
- package/esm/resources/Capital/FinancingSummary.js +9 -0
- package/esm/resources/Capital/FinancingTransactions.js +14 -0
- package/esm/resources/ExternalAccounts.js +20 -0
- package/esm/resources/FinancialConnections/Accounts.js +5 -0
- package/esm/resources/FinancialConnections/Institutions.js +14 -0
- package/esm/resources/GiftCards/Cards.js +20 -0
- package/esm/resources/GiftCards/Transactions.js +30 -0
- package/esm/resources/Invoices.js +17 -0
- package/esm/resources/Issuing/CreditUnderwritingRecords.js +30 -0
- package/esm/resources/Issuing/DisputeSettlementDetails.js +14 -0
- package/esm/resources/Issuing/FraudLiabilityDebits.js +14 -0
- package/esm/resources/Margins.js +19 -0
- package/esm/resources/Orders.js +21 -0
- package/esm/resources/{InvoicePayments.js → PaymentAttemptRecords.js} +3 -3
- package/esm/resources/PaymentIntents.js +8 -0
- package/esm/resources/PaymentRecords.js +26 -0
- package/esm/resources/Privacy/RedactionJobs.js +43 -0
- package/esm/resources/Quotes.js +32 -0
- package/esm/resources/SubscriptionSchedules.js +4 -0
- package/esm/resources/Tax/Associations.js +6 -0
- package/esm/resources/Tax/Forms.js +17 -0
- package/esm/resources/Terminal/ReaderCollectedData.js +9 -0
- package/esm/resources/Terminal/Readers.js +12 -0
- package/esm/resources/TestHelpers/Terminal/Readers.js +8 -0
- package/esm/resources/V2/Core/AccountLinks.js +6 -0
- package/esm/resources/V2/Core/Accounts/Persons.js +26 -0
- package/esm/resources/V2/Core/Accounts.js +22 -0
- package/esm/resources/V2/Core/Vault/GbBankAccounts.js +25 -0
- package/esm/resources/V2/Core/Vault/UsBankAccounts.js +21 -0
- package/esm/resources/V2/MoneyManagement/Adjustments.js +14 -0
- package/esm/resources/V2/MoneyManagement/FinancialAccounts.js +14 -0
- package/esm/resources/V2/MoneyManagement/FinancialAddresses.js +18 -0
- package/esm/resources/V2/MoneyManagement/InboundTransfers.js +18 -0
- package/esm/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +9 -0
- package/esm/resources/V2/MoneyManagement/OutboundPayments.js +22 -0
- package/esm/resources/V2/MoneyManagement/OutboundSetupIntents.js +26 -0
- package/esm/resources/V2/MoneyManagement/OutboundTransfers.js +22 -0
- package/esm/resources/V2/MoneyManagement/PayoutMethods.js +22 -0
- package/esm/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +9 -0
- package/esm/resources/V2/MoneyManagement/ReceivedCredits.js +14 -0
- package/esm/resources/V2/MoneyManagement/ReceivedDebits.js +14 -0
- package/esm/resources/V2/MoneyManagement/TransactionEntries.js +14 -0
- package/esm/resources/V2/MoneyManagement/Transactions.js +14 -0
- package/esm/resources/V2/TestHelpers/FinancialAddresses.js +13 -0
- package/esm/resources.js +83 -1
- package/esm/stripe.core.js +1 -1
- package/package.json +1 -1
- package/types/AccountLinksResource.d.ts +5 -1
- package/types/AccountNotices.d.ts +113 -0
- package/types/AccountNoticesResource.d.ts +98 -0
- package/types/AccountSessions.d.ts +45 -0
- package/types/AccountSessionsResource.d.ts +300 -0
- package/types/Accounts.d.ts +228 -1
- package/types/AccountsResource.d.ts +572 -0
- package/types/BalanceSettings.d.ts +85 -0
- package/types/BalanceSettingsResource.d.ts +108 -0
- package/types/BankAccounts.d.ts +2 -0
- package/types/Billing/CreditBalanceSummary.d.ts +5 -0
- package/types/Billing/CreditBalanceSummaryResource.d.ts +8 -3
- package/types/Billing/CreditBalanceTransactionsResource.d.ts +12 -4
- package/types/Billing/CreditGrants.d.ts +5 -0
- package/types/Billing/CreditGrantsResource.d.ts +11 -1
- package/types/Billing/MeterErrorReports.d.ts +106 -0
- package/types/BillingPortal/Sessions.d.ts +5 -0
- package/types/BillingPortal/SessionsResource.d.ts +12 -4
- package/types/Capabilities.d.ts +2 -0
- package/types/Capital/FinancingOffers.d.ts +188 -0
- package/types/Capital/FinancingOffersResource.d.ts +97 -0
- package/types/Capital/FinancingSummary.d.ts +106 -0
- package/types/Capital/FinancingSummaryResource.d.ts +27 -0
- package/types/Capital/FinancingTransactions.d.ts +135 -0
- package/types/Capital/FinancingTransactionsResource.d.ts +68 -0
- package/types/Cards.d.ts +5 -0
- package/types/CashBalances.d.ts +5 -0
- package/types/Charges.d.ts +166 -0
- package/types/ChargesResource.d.ts +1294 -0
- package/types/Checkout/Sessions.d.ts +335 -4
- package/types/Checkout/SessionsResource.d.ts +270 -2
- package/types/ConfirmationTokens.d.ts +151 -0
- package/types/Coupons.d.ts +1 -1
- package/types/CreditNoteLineItems.d.ts +17 -0
- package/types/CreditNotes.d.ts +9 -0
- package/types/CreditNotesResource.d.ts +5 -0
- package/types/CustomerBalanceTransactions.d.ts +2 -0
- package/types/CustomerCashBalanceTransactions.d.ts +2 -0
- package/types/CustomerSessions.d.ts +5 -0
- package/types/CustomerSessionsResource.d.ts +6 -1
- package/types/Customers.d.ts +2 -0
- package/types/CustomersResource.d.ts +8 -0
- package/types/Discounts.d.ts +10 -0
- package/types/Errors.d.ts +69 -2
- package/types/EventTypes.d.ts +681 -0
- package/types/Events.d.ts +101 -1
- package/types/ExternalAccountsResource.d.ts +304 -0
- package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
- package/types/FinancialConnections/Accounts.d.ts +31 -1
- package/types/FinancialConnections/AccountsResource.d.ts +40 -3
- package/types/FinancialConnections/Institutions.d.ts +93 -0
- package/types/FinancialConnections/InstitutionsResource.d.ts +47 -0
- package/types/FinancialConnections/Sessions.d.ts +51 -1
- package/types/FinancialConnections/SessionsResource.d.ts +43 -1
- package/types/GiftCards/Cards.d.ts +118 -0
- package/types/GiftCards/CardsResource.d.ts +159 -0
- package/types/GiftCards/Transactions.d.ts +129 -0
- package/types/GiftCards/TransactionsResource.d.ts +201 -0
- package/types/Identity/VerificationSessions.d.ts +5 -0
- package/types/Identity/VerificationSessionsResource.d.ts +7 -0
- package/types/InvoiceItems.d.ts +10 -0
- package/types/InvoiceItemsResource.d.ts +117 -6
- package/types/InvoiceLineItems.d.ts +45 -1
- package/types/InvoicePayments.d.ts +5 -0
- package/types/Invoices.d.ts +142 -3
- package/types/InvoicesResource.d.ts +1546 -4
- package/types/Issuing/CardholdersResource.d.ts +2 -1
- package/types/Issuing/CreditUnderwritingRecords.d.ts +451 -0
- package/types/Issuing/CreditUnderwritingRecordsResource.d.ts +1032 -0
- package/types/Issuing/DisputeSettlementDetails.d.ts +85 -0
- package/types/Issuing/DisputeSettlementDetailsResource.d.ts +52 -0
- package/types/Issuing/FraudLiabilityDebits.d.ts +52 -0
- package/types/Issuing/FraudLiabilityDebitsResource.d.ts +52 -0
- package/types/Issuing/Settlements.d.ts +113 -0
- package/types/Issuing/Transactions.d.ts +5 -0
- package/types/Issuing/TransactionsResource.d.ts +5 -0
- package/types/LineItems.d.ts +49 -0
- package/types/LoginLinks.d.ts +2 -1
- package/types/Mandates.d.ts +77 -0
- package/types/Margins.d.ts +56 -0
- package/types/MarginsResource.d.ts +114 -0
- package/types/Orders.d.ts +1189 -0
- package/types/OrdersResource.d.ts +2981 -0
- package/types/PaymentAttemptRecords.d.ts +2112 -0
- package/types/PaymentAttemptRecordsResource.d.ts +47 -0
- package/types/PaymentIntents.d.ts +680 -2
- package/types/PaymentIntentsResource.d.ts +8438 -3942
- package/types/PaymentLinks.d.ts +6 -0
- package/types/PaymentLinksResource.d.ts +12 -0
- package/types/PaymentMethodConfigurations.d.ts +180 -0
- package/types/PaymentMethodConfigurationsResource.d.ts +250 -0
- package/types/PaymentMethodDomains.d.ts +28 -0
- package/types/PaymentMethods.d.ts +120 -0
- package/types/PaymentMethodsResource.d.ts +170 -5
- package/types/PaymentRecords.d.ts +2105 -0
- package/types/PaymentRecordsResource.d.ts +455 -0
- package/types/Payouts.d.ts +5 -0
- package/types/PayoutsResource.d.ts +5 -0
- package/types/Persons.d.ts +2 -0
- package/types/Prices.d.ts +22 -0
- package/types/PricesResource.d.ts +22 -0
- package/types/Privacy/RedactionJobRootObjects.d.ts +35 -0
- package/types/Privacy/RedactionJobValidationErrors.d.ts +30 -0
- package/types/Privacy/RedactionJobs.d.ts +43 -0
- package/types/Privacy/RedactionJobsResource.d.ts +240 -0
- package/types/Products.d.ts +39 -0
- package/types/ProductsResource.d.ts +36 -0
- package/types/PromotionCodes.d.ts +5 -0
- package/types/PromotionCodesResource.d.ts +10 -0
- package/types/QuoteLines.d.ts +634 -0
- package/types/QuotePreviewInvoices.d.ts +1686 -0
- package/types/QuotePreviewSubscriptionSchedules.d.ts +778 -0
- package/types/Quotes.d.ts +601 -1
- package/types/QuotesResource.d.ts +2565 -218
- package/types/Refunds.d.ts +14 -0
- package/types/SetupAttempts.d.ts +51 -1
- package/types/SetupIntents.d.ts +122 -2
- package/types/SetupIntentsResource.d.ts +739 -12
- package/types/Sources.d.ts +29 -0
- package/types/SubscriptionItems.d.ts +23 -0
- package/types/SubscriptionItemsResource.d.ts +109 -0
- package/types/SubscriptionSchedules.d.ts +205 -0
- package/types/SubscriptionSchedulesResource.d.ts +1237 -9
- package/types/Subscriptions.d.ts +97 -1
- package/types/SubscriptionsResource.d.ts +390 -8
- package/types/Tax/Associations.d.ts +126 -0
- package/types/Tax/AssociationsResource.d.ts +29 -0
- package/types/Tax/CalculationLineItems.d.ts +1 -1
- package/types/Tax/Forms.d.ts +220 -0
- package/types/Tax/FormsResource.d.ts +107 -0
- package/types/Tax/Registrations.d.ts +9 -0
- package/types/Tax/RegistrationsResource.d.ts +12 -0
- package/types/TaxIds.d.ts +10 -0
- package/types/TaxIdsResource.d.ts +10 -0
- package/types/Terminal/ReaderCollectedData.d.ts +51 -0
- package/types/Terminal/ReaderCollectedDataResource.d.ts +29 -0
- package/types/Terminal/Readers.d.ts +300 -0
- package/types/Terminal/ReadersResource.d.ts +220 -0
- package/types/TestHelpers/ConfirmationTokensResource.d.ts +174 -3
- package/types/TestHelpers/Terminal/ReadersResource.d.ts +53 -0
- package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +26 -0
- package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +26 -0
- package/types/Treasury/FinancialAccountFeatures.d.ts +7 -0
- package/types/Treasury/FinancialAccounts.d.ts +5 -0
- package/types/Treasury/FinancialAccountsResource.d.ts +37 -0
- package/types/Treasury/OutboundTransfers.d.ts +26 -0
- package/types/Treasury/OutboundTransfersResource.d.ts +26 -0
- package/types/Treasury/ReceivedCredits.d.ts +26 -0
- package/types/Treasury/ReceivedDebits.d.ts +31 -0
- package/types/V2/Core/AccountLinks.d.ts +101 -0
- package/types/V2/Core/AccountLinksResource.d.ts +90 -0
- package/types/V2/Core/Accounts/PersonsResource.d.ts +3760 -0
- package/types/V2/Core/Accounts.d.ts +8057 -0
- package/types/V2/Core/AccountsResource.d.ts +10184 -0
- package/types/V2/Core/Persons.d.ts +1857 -0
- package/types/V2/Core/Vault/GbBankAccounts.d.ts +155 -0
- package/types/V2/Core/Vault/GbBankAccountsResource.d.ts +172 -0
- package/types/V2/Core/Vault/UsBankAccounts.d.ts +65 -0
- package/types/V2/Core/Vault/UsBankAccountsResource.d.ts +123 -0
- package/types/V2/EventTypes.d.ts +683 -1
- package/types/V2/FinancialAddressCreditSimulations.d.ts +22 -0
- package/types/V2/FinancialAddressGeneratedMicrodeposits.d.ts +27 -0
- package/types/V2/MoneyManagement/Adjustments.d.ts +105 -0
- package/types/V2/MoneyManagement/AdjustmentsResource.d.ts +83 -0
- package/types/V2/MoneyManagement/FinancialAccounts.d.ts +540 -0
- package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +52 -0
- package/types/V2/MoneyManagement/FinancialAddresses.d.ts +308 -0
- package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +287 -0
- package/types/V2/MoneyManagement/InboundTransfers.d.ts +201 -0
- package/types/V2/MoneyManagement/InboundTransfersResource.d.ts +144 -0
- package/types/V2/MoneyManagement/OutboundPaymentQuotes.d.ts +141 -0
- package/types/V2/MoneyManagement/OutboundPaymentQuotesResource.d.ts +93 -0
- package/types/V2/MoneyManagement/OutboundPayments.d.ts +273 -0
- package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +242 -0
- package/types/V2/MoneyManagement/OutboundSetupIntents.d.ts +92 -0
- package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +296 -0
- package/types/V2/MoneyManagement/OutboundTransfers.d.ts +246 -0
- package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +207 -0
- package/types/V2/MoneyManagement/PayoutMethods.d.ts +146 -0
- package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecResource.d.ts +41 -0
- package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecs.d.ts +82 -0
- package/types/V2/MoneyManagement/PayoutMethodsResource.d.ts +113 -0
- package/types/V2/MoneyManagement/ReceivedCredits.d.ts +280 -0
- package/types/V2/MoneyManagement/ReceivedCreditsResource.d.ts +78 -0
- package/types/V2/MoneyManagement/ReceivedDebits.d.ts +219 -0
- package/types/V2/MoneyManagement/ReceivedDebitsResource.d.ts +48 -0
- package/types/V2/MoneyManagement/TransactionEntries.d.ts +151 -0
- package/types/V2/MoneyManagement/TransactionEntriesResource.d.ts +82 -0
- package/types/V2/MoneyManagement/Transactions.d.ts +166 -0
- package/types/V2/MoneyManagement/TransactionsResource.d.ts +83 -0
- package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +66 -0
- package/types/WebhookEndpointsResource.d.ts +82 -2
- package/types/index.d.ts +142 -5
- package/types/lib.d.ts +11 -1
- package/types/test/typescriptTest.ts +3 -3
- package/types/InvoicePaymentsResource.d.ts +0 -74
package/types/PaymentLinks.d.ts
CHANGED
|
@@ -601,11 +601,13 @@ declare module 'stripe' {
|
|
|
601
601
|
| 'eps'
|
|
602
602
|
| 'fpx'
|
|
603
603
|
| 'giropay'
|
|
604
|
+
| 'gopay'
|
|
604
605
|
| 'grabpay'
|
|
605
606
|
| 'ideal'
|
|
606
607
|
| 'klarna'
|
|
607
608
|
| 'konbini'
|
|
608
609
|
| 'link'
|
|
610
|
+
| 'mb_way'
|
|
609
611
|
| 'mobilepay'
|
|
610
612
|
| 'multibanco'
|
|
611
613
|
| 'oxxo'
|
|
@@ -613,10 +615,14 @@ declare module 'stripe' {
|
|
|
613
615
|
| 'pay_by_bank'
|
|
614
616
|
| 'paynow'
|
|
615
617
|
| 'paypal'
|
|
618
|
+
| 'payto'
|
|
616
619
|
| 'pix'
|
|
617
620
|
| 'promptpay'
|
|
621
|
+
| 'qris'
|
|
622
|
+
| 'rechnung'
|
|
618
623
|
| 'satispay'
|
|
619
624
|
| 'sepa_debit'
|
|
625
|
+
| 'shopeepay'
|
|
620
626
|
| 'sofort'
|
|
621
627
|
| 'swish'
|
|
622
628
|
| 'twint'
|
|
@@ -673,11 +673,13 @@ declare module 'stripe' {
|
|
|
673
673
|
| 'eps'
|
|
674
674
|
| 'fpx'
|
|
675
675
|
| 'giropay'
|
|
676
|
+
| 'gopay'
|
|
676
677
|
| 'grabpay'
|
|
677
678
|
| 'ideal'
|
|
678
679
|
| 'klarna'
|
|
679
680
|
| 'konbini'
|
|
680
681
|
| 'link'
|
|
682
|
+
| 'mb_way'
|
|
681
683
|
| 'mobilepay'
|
|
682
684
|
| 'multibanco'
|
|
683
685
|
| 'oxxo'
|
|
@@ -685,10 +687,14 @@ declare module 'stripe' {
|
|
|
685
687
|
| 'pay_by_bank'
|
|
686
688
|
| 'paynow'
|
|
687
689
|
| 'paypal'
|
|
690
|
+
| 'payto'
|
|
688
691
|
| 'pix'
|
|
689
692
|
| 'promptpay'
|
|
693
|
+
| 'qris'
|
|
694
|
+
| 'rechnung'
|
|
690
695
|
| 'satispay'
|
|
691
696
|
| 'sepa_debit'
|
|
697
|
+
| 'shopeepay'
|
|
692
698
|
| 'sofort'
|
|
693
699
|
| 'swish'
|
|
694
700
|
| 'twint'
|
|
@@ -1631,11 +1637,13 @@ declare module 'stripe' {
|
|
|
1631
1637
|
| 'eps'
|
|
1632
1638
|
| 'fpx'
|
|
1633
1639
|
| 'giropay'
|
|
1640
|
+
| 'gopay'
|
|
1634
1641
|
| 'grabpay'
|
|
1635
1642
|
| 'ideal'
|
|
1636
1643
|
| 'klarna'
|
|
1637
1644
|
| 'konbini'
|
|
1638
1645
|
| 'link'
|
|
1646
|
+
| 'mb_way'
|
|
1639
1647
|
| 'mobilepay'
|
|
1640
1648
|
| 'multibanco'
|
|
1641
1649
|
| 'oxxo'
|
|
@@ -1643,10 +1651,14 @@ declare module 'stripe' {
|
|
|
1643
1651
|
| 'pay_by_bank'
|
|
1644
1652
|
| 'paynow'
|
|
1645
1653
|
| 'paypal'
|
|
1654
|
+
| 'payto'
|
|
1646
1655
|
| 'pix'
|
|
1647
1656
|
| 'promptpay'
|
|
1657
|
+
| 'qris'
|
|
1658
|
+
| 'rechnung'
|
|
1648
1659
|
| 'satispay'
|
|
1649
1660
|
| 'sepa_debit'
|
|
1661
|
+
| 'shopeepay'
|
|
1650
1662
|
| 'sofort'
|
|
1651
1663
|
| 'swish'
|
|
1652
1664
|
| 'twint'
|
|
@@ -81,8 +81,12 @@ declare module 'stripe' {
|
|
|
81
81
|
|
|
82
82
|
google_pay?: PaymentMethodConfiguration.GooglePay;
|
|
83
83
|
|
|
84
|
+
gopay?: PaymentMethodConfiguration.Gopay;
|
|
85
|
+
|
|
84
86
|
grabpay?: PaymentMethodConfiguration.Grabpay;
|
|
85
87
|
|
|
88
|
+
id_bank_transfer?: PaymentMethodConfiguration.IdBankTransfer;
|
|
89
|
+
|
|
86
90
|
ideal?: PaymentMethodConfiguration.Ideal;
|
|
87
91
|
|
|
88
92
|
/**
|
|
@@ -129,14 +133,20 @@ declare module 'stripe' {
|
|
|
129
133
|
|
|
130
134
|
paypal?: PaymentMethodConfiguration.Paypal;
|
|
131
135
|
|
|
136
|
+
payto?: PaymentMethodConfiguration.Payto;
|
|
137
|
+
|
|
132
138
|
promptpay?: PaymentMethodConfiguration.Promptpay;
|
|
133
139
|
|
|
140
|
+
qris?: PaymentMethodConfiguration.Qris;
|
|
141
|
+
|
|
134
142
|
revolut_pay?: PaymentMethodConfiguration.RevolutPay;
|
|
135
143
|
|
|
136
144
|
satispay?: PaymentMethodConfiguration.Satispay;
|
|
137
145
|
|
|
138
146
|
sepa_debit?: PaymentMethodConfiguration.SepaDebit;
|
|
139
147
|
|
|
148
|
+
shopeepay?: PaymentMethodConfiguration.Shopeepay;
|
|
149
|
+
|
|
140
150
|
sofort?: PaymentMethodConfiguration.Sofort;
|
|
141
151
|
|
|
142
152
|
swish?: PaymentMethodConfiguration.Swish;
|
|
@@ -865,6 +875,40 @@ declare module 'stripe' {
|
|
|
865
875
|
}
|
|
866
876
|
}
|
|
867
877
|
|
|
878
|
+
interface Gopay {
|
|
879
|
+
/**
|
|
880
|
+
* Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
|
881
|
+
*/
|
|
882
|
+
available: boolean;
|
|
883
|
+
|
|
884
|
+
display_preference: Gopay.DisplayPreference;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
namespace Gopay {
|
|
888
|
+
interface DisplayPreference {
|
|
889
|
+
/**
|
|
890
|
+
* For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
|
|
891
|
+
*/
|
|
892
|
+
overridable: boolean | null;
|
|
893
|
+
|
|
894
|
+
/**
|
|
895
|
+
* The account's display preference.
|
|
896
|
+
*/
|
|
897
|
+
preference: DisplayPreference.Preference;
|
|
898
|
+
|
|
899
|
+
/**
|
|
900
|
+
* The effective display preference value.
|
|
901
|
+
*/
|
|
902
|
+
value: DisplayPreference.Value;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
namespace DisplayPreference {
|
|
906
|
+
type Preference = 'none' | 'off' | 'on';
|
|
907
|
+
|
|
908
|
+
type Value = 'off' | 'on';
|
|
909
|
+
}
|
|
910
|
+
}
|
|
911
|
+
|
|
868
912
|
interface Grabpay {
|
|
869
913
|
/**
|
|
870
914
|
* Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
|
@@ -899,6 +943,40 @@ declare module 'stripe' {
|
|
|
899
943
|
}
|
|
900
944
|
}
|
|
901
945
|
|
|
946
|
+
interface IdBankTransfer {
|
|
947
|
+
/**
|
|
948
|
+
* Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
|
949
|
+
*/
|
|
950
|
+
available: boolean;
|
|
951
|
+
|
|
952
|
+
display_preference: IdBankTransfer.DisplayPreference;
|
|
953
|
+
}
|
|
954
|
+
|
|
955
|
+
namespace IdBankTransfer {
|
|
956
|
+
interface DisplayPreference {
|
|
957
|
+
/**
|
|
958
|
+
* For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
|
|
959
|
+
*/
|
|
960
|
+
overridable: boolean | null;
|
|
961
|
+
|
|
962
|
+
/**
|
|
963
|
+
* The account's display preference.
|
|
964
|
+
*/
|
|
965
|
+
preference: DisplayPreference.Preference;
|
|
966
|
+
|
|
967
|
+
/**
|
|
968
|
+
* The effective display preference value.
|
|
969
|
+
*/
|
|
970
|
+
value: DisplayPreference.Value;
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
namespace DisplayPreference {
|
|
974
|
+
type Preference = 'none' | 'off' | 'on';
|
|
975
|
+
|
|
976
|
+
type Value = 'off' | 'on';
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
|
|
902
980
|
interface Ideal {
|
|
903
981
|
/**
|
|
904
982
|
* Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
|
@@ -1341,6 +1419,40 @@ declare module 'stripe' {
|
|
|
1341
1419
|
}
|
|
1342
1420
|
}
|
|
1343
1421
|
|
|
1422
|
+
interface Payto {
|
|
1423
|
+
/**
|
|
1424
|
+
* Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
|
1425
|
+
*/
|
|
1426
|
+
available: boolean;
|
|
1427
|
+
|
|
1428
|
+
display_preference: Payto.DisplayPreference;
|
|
1429
|
+
}
|
|
1430
|
+
|
|
1431
|
+
namespace Payto {
|
|
1432
|
+
interface DisplayPreference {
|
|
1433
|
+
/**
|
|
1434
|
+
* For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
|
|
1435
|
+
*/
|
|
1436
|
+
overridable: boolean | null;
|
|
1437
|
+
|
|
1438
|
+
/**
|
|
1439
|
+
* The account's display preference.
|
|
1440
|
+
*/
|
|
1441
|
+
preference: DisplayPreference.Preference;
|
|
1442
|
+
|
|
1443
|
+
/**
|
|
1444
|
+
* The effective display preference value.
|
|
1445
|
+
*/
|
|
1446
|
+
value: DisplayPreference.Value;
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
namespace DisplayPreference {
|
|
1450
|
+
type Preference = 'none' | 'off' | 'on';
|
|
1451
|
+
|
|
1452
|
+
type Value = 'off' | 'on';
|
|
1453
|
+
}
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1344
1456
|
interface Promptpay {
|
|
1345
1457
|
/**
|
|
1346
1458
|
* Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
|
@@ -1375,6 +1487,40 @@ declare module 'stripe' {
|
|
|
1375
1487
|
}
|
|
1376
1488
|
}
|
|
1377
1489
|
|
|
1490
|
+
interface Qris {
|
|
1491
|
+
/**
|
|
1492
|
+
* Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
|
1493
|
+
*/
|
|
1494
|
+
available: boolean;
|
|
1495
|
+
|
|
1496
|
+
display_preference: Qris.DisplayPreference;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
namespace Qris {
|
|
1500
|
+
interface DisplayPreference {
|
|
1501
|
+
/**
|
|
1502
|
+
* For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
|
|
1503
|
+
*/
|
|
1504
|
+
overridable: boolean | null;
|
|
1505
|
+
|
|
1506
|
+
/**
|
|
1507
|
+
* The account's display preference.
|
|
1508
|
+
*/
|
|
1509
|
+
preference: DisplayPreference.Preference;
|
|
1510
|
+
|
|
1511
|
+
/**
|
|
1512
|
+
* The effective display preference value.
|
|
1513
|
+
*/
|
|
1514
|
+
value: DisplayPreference.Value;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
namespace DisplayPreference {
|
|
1518
|
+
type Preference = 'none' | 'off' | 'on';
|
|
1519
|
+
|
|
1520
|
+
type Value = 'off' | 'on';
|
|
1521
|
+
}
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1378
1524
|
interface RevolutPay {
|
|
1379
1525
|
/**
|
|
1380
1526
|
* Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
|
@@ -1477,6 +1623,40 @@ declare module 'stripe' {
|
|
|
1477
1623
|
}
|
|
1478
1624
|
}
|
|
1479
1625
|
|
|
1626
|
+
interface Shopeepay {
|
|
1627
|
+
/**
|
|
1628
|
+
* Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
|
1629
|
+
*/
|
|
1630
|
+
available: boolean;
|
|
1631
|
+
|
|
1632
|
+
display_preference: Shopeepay.DisplayPreference;
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
namespace Shopeepay {
|
|
1636
|
+
interface DisplayPreference {
|
|
1637
|
+
/**
|
|
1638
|
+
* For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
|
|
1639
|
+
*/
|
|
1640
|
+
overridable: boolean | null;
|
|
1641
|
+
|
|
1642
|
+
/**
|
|
1643
|
+
* The account's display preference.
|
|
1644
|
+
*/
|
|
1645
|
+
preference: DisplayPreference.Preference;
|
|
1646
|
+
|
|
1647
|
+
/**
|
|
1648
|
+
* The effective display preference value.
|
|
1649
|
+
*/
|
|
1650
|
+
value: DisplayPreference.Value;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
namespace DisplayPreference {
|
|
1654
|
+
type Preference = 'none' | 'off' | 'on';
|
|
1655
|
+
|
|
1656
|
+
type Value = 'off' | 'on';
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1480
1660
|
interface Sofort {
|
|
1481
1661
|
/**
|
|
1482
1662
|
* Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
|
|
@@ -118,11 +118,21 @@ declare module 'stripe' {
|
|
|
118
118
|
*/
|
|
119
119
|
google_pay?: PaymentMethodConfigurationCreateParams.GooglePay;
|
|
120
120
|
|
|
121
|
+
/**
|
|
122
|
+
* GoPay is a [single use](https://stripe.com/docs/payments/payment-methods#usage) digital wallet payment method popular in Indonesia. When paying with GoPay, customers authenticate and approve payments using the Gojek app. Desktop checkout is performed by scanning a QR code. When checking out on mobile, customers are redirected to the Gojek app to confirm payment.
|
|
123
|
+
*/
|
|
124
|
+
gopay?: PaymentMethodConfigurationCreateParams.Gopay;
|
|
125
|
+
|
|
121
126
|
/**
|
|
122
127
|
* GrabPay is a payment method developed by [Grab](https://www.grab.com/sg/consumer/finance/pay/). GrabPay is a digital wallet - customers maintain a balance in their wallets that they pay out with. Check this [page](https://stripe.com/docs/payments/grabpay) for more details.
|
|
123
128
|
*/
|
|
124
129
|
grabpay?: PaymentMethodConfigurationCreateParams.Grabpay;
|
|
125
130
|
|
|
131
|
+
/**
|
|
132
|
+
* Stripe users in Indonesia can receive bank transfers from customers in Indonesia. Bank transfers are a popular B2C and B2B payment method in Indonesia.
|
|
133
|
+
*/
|
|
134
|
+
id_bank_transfer?: PaymentMethodConfigurationCreateParams.IdBankTransfer;
|
|
135
|
+
|
|
126
136
|
/**
|
|
127
137
|
* iDEAL is a Netherlands-based payment method that allows customers to complete transactions online using their bank credentials. All major Dutch banks are members of Currence, the scheme that operates iDEAL, making it the most popular online payment method in the Netherlands with a share of online transactions close to 55%. Check this [page](https://stripe.com/docs/payments/ideal) for more details.
|
|
128
138
|
*/
|
|
@@ -198,11 +208,21 @@ declare module 'stripe' {
|
|
|
198
208
|
*/
|
|
199
209
|
paypal?: PaymentMethodConfigurationCreateParams.Paypal;
|
|
200
210
|
|
|
211
|
+
/**
|
|
212
|
+
* PayTo is a [real-time](https://docs.stripe.com/payments/real-time) payment method that enables customers in Australia to pay by providing their bank account details. Customers must accept a mandate authorizing you to debit their account. Check this [page](https://docs.stripe.com/payments/payto) for more details.
|
|
213
|
+
*/
|
|
214
|
+
payto?: PaymentMethodConfigurationCreateParams.Payto;
|
|
215
|
+
|
|
201
216
|
/**
|
|
202
217
|
* PromptPay is a Thailand-based payment method that allows customers to make a payment using their preferred app from participating banks. Check this [page](https://stripe.com/docs/payments/promptpay) for more details.
|
|
203
218
|
*/
|
|
204
219
|
promptpay?: PaymentMethodConfigurationCreateParams.Promptpay;
|
|
205
220
|
|
|
221
|
+
/**
|
|
222
|
+
* QRIS is a [real-time](https://docs.stripe.com/payments/real-time) payment method popular in Indonesia. When paying with QRIS, customers authenticate and approve payments by scanning a QR code in their preferred digital wallet app.
|
|
223
|
+
*/
|
|
224
|
+
qris?: PaymentMethodConfigurationCreateParams.Qris;
|
|
225
|
+
|
|
206
226
|
/**
|
|
207
227
|
* Revolut Pay, developed by Revolut, a global finance app, is a digital wallet payment method. Revolut Pay uses the customer's stored balance or cards to fund the payment, and offers the option for non-Revolut customers to save their details after their first purchase.
|
|
208
228
|
*/
|
|
@@ -218,6 +238,11 @@ declare module 'stripe' {
|
|
|
218
238
|
*/
|
|
219
239
|
sepa_debit?: PaymentMethodConfigurationCreateParams.SepaDebit;
|
|
220
240
|
|
|
241
|
+
/**
|
|
242
|
+
* ShopeePay is a [single use](https://stripe.com/docs/payments/payment-methods#usage) digital wallet payment method popular in Indonesia. When paying with GoPay, customers authenticate and approve payments using the Shopee app. Desktop checkout is performed by scanning a QR code. When checking out on mobile, customers are redirected to the Shopee app to confirm payment.
|
|
243
|
+
*/
|
|
244
|
+
shopeepay?: PaymentMethodConfigurationCreateParams.Shopeepay;
|
|
245
|
+
|
|
221
246
|
/**
|
|
222
247
|
* Stripe users in Europe and the United States can use the [Payment Intents API](https://stripe.com/docs/payments/payment-intents)—a single integration path for creating payments using any supported method—to accept [Sofort](https://www.sofort.com/) payments from customers. Check this [page](https://stripe.com/docs/payments/sofort) for more details.
|
|
223
248
|
*/
|
|
@@ -690,6 +715,26 @@ declare module 'stripe' {
|
|
|
690
715
|
}
|
|
691
716
|
}
|
|
692
717
|
|
|
718
|
+
interface Gopay {
|
|
719
|
+
/**
|
|
720
|
+
* Whether or not the payment method should be displayed.
|
|
721
|
+
*/
|
|
722
|
+
display_preference?: Gopay.DisplayPreference;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
namespace Gopay {
|
|
726
|
+
interface DisplayPreference {
|
|
727
|
+
/**
|
|
728
|
+
* The account's preference for whether or not to display this payment method.
|
|
729
|
+
*/
|
|
730
|
+
preference?: DisplayPreference.Preference;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
namespace DisplayPreference {
|
|
734
|
+
type Preference = 'none' | 'off' | 'on';
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
|
|
693
738
|
interface Grabpay {
|
|
694
739
|
/**
|
|
695
740
|
* Whether or not the payment method should be displayed.
|
|
@@ -710,6 +755,26 @@ declare module 'stripe' {
|
|
|
710
755
|
}
|
|
711
756
|
}
|
|
712
757
|
|
|
758
|
+
interface IdBankTransfer {
|
|
759
|
+
/**
|
|
760
|
+
* Whether or not the payment method should be displayed.
|
|
761
|
+
*/
|
|
762
|
+
display_preference?: IdBankTransfer.DisplayPreference;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
namespace IdBankTransfer {
|
|
766
|
+
interface DisplayPreference {
|
|
767
|
+
/**
|
|
768
|
+
* The account's preference for whether or not to display this payment method.
|
|
769
|
+
*/
|
|
770
|
+
preference?: DisplayPreference.Preference;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
namespace DisplayPreference {
|
|
774
|
+
type Preference = 'none' | 'off' | 'on';
|
|
775
|
+
}
|
|
776
|
+
}
|
|
777
|
+
|
|
713
778
|
interface Ideal {
|
|
714
779
|
/**
|
|
715
780
|
* Whether or not the payment method should be displayed.
|
|
@@ -970,6 +1035,26 @@ declare module 'stripe' {
|
|
|
970
1035
|
}
|
|
971
1036
|
}
|
|
972
1037
|
|
|
1038
|
+
interface Payto {
|
|
1039
|
+
/**
|
|
1040
|
+
* Whether or not the payment method should be displayed.
|
|
1041
|
+
*/
|
|
1042
|
+
display_preference?: Payto.DisplayPreference;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
namespace Payto {
|
|
1046
|
+
interface DisplayPreference {
|
|
1047
|
+
/**
|
|
1048
|
+
* The account's preference for whether or not to display this payment method.
|
|
1049
|
+
*/
|
|
1050
|
+
preference?: DisplayPreference.Preference;
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
namespace DisplayPreference {
|
|
1054
|
+
type Preference = 'none' | 'off' | 'on';
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
|
|
973
1058
|
interface Promptpay {
|
|
974
1059
|
/**
|
|
975
1060
|
* Whether or not the payment method should be displayed.
|
|
@@ -990,6 +1075,26 @@ declare module 'stripe' {
|
|
|
990
1075
|
}
|
|
991
1076
|
}
|
|
992
1077
|
|
|
1078
|
+
interface Qris {
|
|
1079
|
+
/**
|
|
1080
|
+
* Whether or not the payment method should be displayed.
|
|
1081
|
+
*/
|
|
1082
|
+
display_preference?: Qris.DisplayPreference;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
namespace Qris {
|
|
1086
|
+
interface DisplayPreference {
|
|
1087
|
+
/**
|
|
1088
|
+
* The account's preference for whether or not to display this payment method.
|
|
1089
|
+
*/
|
|
1090
|
+
preference?: DisplayPreference.Preference;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
namespace DisplayPreference {
|
|
1094
|
+
type Preference = 'none' | 'off' | 'on';
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1097
|
+
|
|
993
1098
|
interface RevolutPay {
|
|
994
1099
|
/**
|
|
995
1100
|
* Whether or not the payment method should be displayed.
|
|
@@ -1050,6 +1155,26 @@ declare module 'stripe' {
|
|
|
1050
1155
|
}
|
|
1051
1156
|
}
|
|
1052
1157
|
|
|
1158
|
+
interface Shopeepay {
|
|
1159
|
+
/**
|
|
1160
|
+
* Whether or not the payment method should be displayed.
|
|
1161
|
+
*/
|
|
1162
|
+
display_preference?: Shopeepay.DisplayPreference;
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
namespace Shopeepay {
|
|
1166
|
+
interface DisplayPreference {
|
|
1167
|
+
/**
|
|
1168
|
+
* The account's preference for whether or not to display this payment method.
|
|
1169
|
+
*/
|
|
1170
|
+
preference?: DisplayPreference.Preference;
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
namespace DisplayPreference {
|
|
1174
|
+
type Preference = 'none' | 'off' | 'on';
|
|
1175
|
+
}
|
|
1176
|
+
}
|
|
1177
|
+
|
|
1053
1178
|
interface Sofort {
|
|
1054
1179
|
/**
|
|
1055
1180
|
* Whether or not the payment method should be displayed.
|
|
@@ -1299,11 +1424,21 @@ declare module 'stripe' {
|
|
|
1299
1424
|
*/
|
|
1300
1425
|
google_pay?: PaymentMethodConfigurationUpdateParams.GooglePay;
|
|
1301
1426
|
|
|
1427
|
+
/**
|
|
1428
|
+
* GoPay is a [single use](https://stripe.com/docs/payments/payment-methods#usage) digital wallet payment method popular in Indonesia. When paying with GoPay, customers authenticate and approve payments using the Gojek app. Desktop checkout is performed by scanning a QR code. When checking out on mobile, customers are redirected to the Gojek app to confirm payment.
|
|
1429
|
+
*/
|
|
1430
|
+
gopay?: PaymentMethodConfigurationUpdateParams.Gopay;
|
|
1431
|
+
|
|
1302
1432
|
/**
|
|
1303
1433
|
* GrabPay is a payment method developed by [Grab](https://www.grab.com/sg/consumer/finance/pay/). GrabPay is a digital wallet - customers maintain a balance in their wallets that they pay out with. Check this [page](https://stripe.com/docs/payments/grabpay) for more details.
|
|
1304
1434
|
*/
|
|
1305
1435
|
grabpay?: PaymentMethodConfigurationUpdateParams.Grabpay;
|
|
1306
1436
|
|
|
1437
|
+
/**
|
|
1438
|
+
* Stripe users in Indonesia can receive bank transfers from customers in Indonesia. Bank transfers are a popular B2C and B2B payment method in Indonesia.
|
|
1439
|
+
*/
|
|
1440
|
+
id_bank_transfer?: PaymentMethodConfigurationUpdateParams.IdBankTransfer;
|
|
1441
|
+
|
|
1307
1442
|
/**
|
|
1308
1443
|
* iDEAL is a Netherlands-based payment method that allows customers to complete transactions online using their bank credentials. All major Dutch banks are members of Currence, the scheme that operates iDEAL, making it the most popular online payment method in the Netherlands with a share of online transactions close to 55%. Check this [page](https://stripe.com/docs/payments/ideal) for more details.
|
|
1309
1444
|
*/
|
|
@@ -1374,11 +1509,21 @@ declare module 'stripe' {
|
|
|
1374
1509
|
*/
|
|
1375
1510
|
paypal?: PaymentMethodConfigurationUpdateParams.Paypal;
|
|
1376
1511
|
|
|
1512
|
+
/**
|
|
1513
|
+
* PayTo is a [real-time](https://docs.stripe.com/payments/real-time) payment method that enables customers in Australia to pay by providing their bank account details. Customers must accept a mandate authorizing you to debit their account. Check this [page](https://docs.stripe.com/payments/payto) for more details.
|
|
1514
|
+
*/
|
|
1515
|
+
payto?: PaymentMethodConfigurationUpdateParams.Payto;
|
|
1516
|
+
|
|
1377
1517
|
/**
|
|
1378
1518
|
* PromptPay is a Thailand-based payment method that allows customers to make a payment using their preferred app from participating banks. Check this [page](https://stripe.com/docs/payments/promptpay) for more details.
|
|
1379
1519
|
*/
|
|
1380
1520
|
promptpay?: PaymentMethodConfigurationUpdateParams.Promptpay;
|
|
1381
1521
|
|
|
1522
|
+
/**
|
|
1523
|
+
* QRIS is a [real-time](https://docs.stripe.com/payments/real-time) payment method popular in Indonesia. When paying with QRIS, customers authenticate and approve payments by scanning a QR code in their preferred digital wallet app.
|
|
1524
|
+
*/
|
|
1525
|
+
qris?: PaymentMethodConfigurationUpdateParams.Qris;
|
|
1526
|
+
|
|
1382
1527
|
/**
|
|
1383
1528
|
* Revolut Pay, developed by Revolut, a global finance app, is a digital wallet payment method. Revolut Pay uses the customer's stored balance or cards to fund the payment, and offers the option for non-Revolut customers to save their details after their first purchase.
|
|
1384
1529
|
*/
|
|
@@ -1394,6 +1539,11 @@ declare module 'stripe' {
|
|
|
1394
1539
|
*/
|
|
1395
1540
|
sepa_debit?: PaymentMethodConfigurationUpdateParams.SepaDebit;
|
|
1396
1541
|
|
|
1542
|
+
/**
|
|
1543
|
+
* ShopeePay is a [single use](https://stripe.com/docs/payments/payment-methods#usage) digital wallet payment method popular in Indonesia. When paying with GoPay, customers authenticate and approve payments using the Shopee app. Desktop checkout is performed by scanning a QR code. When checking out on mobile, customers are redirected to the Shopee app to confirm payment.
|
|
1544
|
+
*/
|
|
1545
|
+
shopeepay?: PaymentMethodConfigurationUpdateParams.Shopeepay;
|
|
1546
|
+
|
|
1397
1547
|
/**
|
|
1398
1548
|
* Stripe users in Europe and the United States can use the [Payment Intents API](https://stripe.com/docs/payments/payment-intents)—a single integration path for creating payments using any supported method—to accept [Sofort](https://www.sofort.com/) payments from customers. Check this [page](https://stripe.com/docs/payments/sofort) for more details.
|
|
1399
1549
|
*/
|
|
@@ -1866,6 +2016,26 @@ declare module 'stripe' {
|
|
|
1866
2016
|
}
|
|
1867
2017
|
}
|
|
1868
2018
|
|
|
2019
|
+
interface Gopay {
|
|
2020
|
+
/**
|
|
2021
|
+
* Whether or not the payment method should be displayed.
|
|
2022
|
+
*/
|
|
2023
|
+
display_preference?: Gopay.DisplayPreference;
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
namespace Gopay {
|
|
2027
|
+
interface DisplayPreference {
|
|
2028
|
+
/**
|
|
2029
|
+
* The account's preference for whether or not to display this payment method.
|
|
2030
|
+
*/
|
|
2031
|
+
preference?: DisplayPreference.Preference;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
namespace DisplayPreference {
|
|
2035
|
+
type Preference = 'none' | 'off' | 'on';
|
|
2036
|
+
}
|
|
2037
|
+
}
|
|
2038
|
+
|
|
1869
2039
|
interface Grabpay {
|
|
1870
2040
|
/**
|
|
1871
2041
|
* Whether or not the payment method should be displayed.
|
|
@@ -1886,6 +2056,26 @@ declare module 'stripe' {
|
|
|
1886
2056
|
}
|
|
1887
2057
|
}
|
|
1888
2058
|
|
|
2059
|
+
interface IdBankTransfer {
|
|
2060
|
+
/**
|
|
2061
|
+
* Whether or not the payment method should be displayed.
|
|
2062
|
+
*/
|
|
2063
|
+
display_preference?: IdBankTransfer.DisplayPreference;
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
namespace IdBankTransfer {
|
|
2067
|
+
interface DisplayPreference {
|
|
2068
|
+
/**
|
|
2069
|
+
* The account's preference for whether or not to display this payment method.
|
|
2070
|
+
*/
|
|
2071
|
+
preference?: DisplayPreference.Preference;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
namespace DisplayPreference {
|
|
2075
|
+
type Preference = 'none' | 'off' | 'on';
|
|
2076
|
+
}
|
|
2077
|
+
}
|
|
2078
|
+
|
|
1889
2079
|
interface Ideal {
|
|
1890
2080
|
/**
|
|
1891
2081
|
* Whether or not the payment method should be displayed.
|
|
@@ -2146,6 +2336,26 @@ declare module 'stripe' {
|
|
|
2146
2336
|
}
|
|
2147
2337
|
}
|
|
2148
2338
|
|
|
2339
|
+
interface Payto {
|
|
2340
|
+
/**
|
|
2341
|
+
* Whether or not the payment method should be displayed.
|
|
2342
|
+
*/
|
|
2343
|
+
display_preference?: Payto.DisplayPreference;
|
|
2344
|
+
}
|
|
2345
|
+
|
|
2346
|
+
namespace Payto {
|
|
2347
|
+
interface DisplayPreference {
|
|
2348
|
+
/**
|
|
2349
|
+
* The account's preference for whether or not to display this payment method.
|
|
2350
|
+
*/
|
|
2351
|
+
preference?: DisplayPreference.Preference;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
namespace DisplayPreference {
|
|
2355
|
+
type Preference = 'none' | 'off' | 'on';
|
|
2356
|
+
}
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2149
2359
|
interface Promptpay {
|
|
2150
2360
|
/**
|
|
2151
2361
|
* Whether or not the payment method should be displayed.
|
|
@@ -2166,6 +2376,26 @@ declare module 'stripe' {
|
|
|
2166
2376
|
}
|
|
2167
2377
|
}
|
|
2168
2378
|
|
|
2379
|
+
interface Qris {
|
|
2380
|
+
/**
|
|
2381
|
+
* Whether or not the payment method should be displayed.
|
|
2382
|
+
*/
|
|
2383
|
+
display_preference?: Qris.DisplayPreference;
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
namespace Qris {
|
|
2387
|
+
interface DisplayPreference {
|
|
2388
|
+
/**
|
|
2389
|
+
* The account's preference for whether or not to display this payment method.
|
|
2390
|
+
*/
|
|
2391
|
+
preference?: DisplayPreference.Preference;
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
namespace DisplayPreference {
|
|
2395
|
+
type Preference = 'none' | 'off' | 'on';
|
|
2396
|
+
}
|
|
2397
|
+
}
|
|
2398
|
+
|
|
2169
2399
|
interface RevolutPay {
|
|
2170
2400
|
/**
|
|
2171
2401
|
* Whether or not the payment method should be displayed.
|
|
@@ -2226,6 +2456,26 @@ declare module 'stripe' {
|
|
|
2226
2456
|
}
|
|
2227
2457
|
}
|
|
2228
2458
|
|
|
2459
|
+
interface Shopeepay {
|
|
2460
|
+
/**
|
|
2461
|
+
* Whether or not the payment method should be displayed.
|
|
2462
|
+
*/
|
|
2463
|
+
display_preference?: Shopeepay.DisplayPreference;
|
|
2464
|
+
}
|
|
2465
|
+
|
|
2466
|
+
namespace Shopeepay {
|
|
2467
|
+
interface DisplayPreference {
|
|
2468
|
+
/**
|
|
2469
|
+
* The account's preference for whether or not to display this payment method.
|
|
2470
|
+
*/
|
|
2471
|
+
preference?: DisplayPreference.Preference;
|
|
2472
|
+
}
|
|
2473
|
+
|
|
2474
|
+
namespace DisplayPreference {
|
|
2475
|
+
type Preference = 'none' | 'off' | 'on';
|
|
2476
|
+
}
|
|
2477
|
+
}
|
|
2478
|
+
|
|
2229
2479
|
interface Sofort {
|
|
2230
2480
|
/**
|
|
2231
2481
|
* Whether or not the payment method should be displayed.
|