stripe 18.3.0 → 18.4.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 +1296 -12
- package/README.md +1 -0
- package/VERSION +1 -1
- package/cjs/Error.js +107 -1
- package/cjs/apiVersion.js +2 -3
- 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/FxQuotes.js +15 -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 +13 -0
- package/cjs/resources/PaymentRecords.js +29 -0
- package/cjs/resources/Privacy/RedactionJobs.js +42 -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/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 +25 -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 +16 -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/Payments/OffSessionPayments.js +25 -0
- package/cjs/resources/V2/TestHelpers/FinancialAddresses.js +16 -0
- package/cjs/resources.js +98 -10
- package/cjs/stripe.core.js +1 -1
- package/esm/Error.js +93 -0
- package/esm/apiVersion.js +1 -2
- 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/FxQuotes.js +12 -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 +13 -0
- package/esm/resources/PaymentRecords.js +26 -0
- package/esm/resources/Privacy/RedactionJobs.js +39 -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/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 +22 -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 +13 -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/Payments/OffSessionPayments.js +22 -0
- package/esm/resources/V2/TestHelpers/FinancialAddresses.js +13 -0
- package/esm/resources.js +82 -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 +264 -0
- package/types/Accounts.d.ts +212 -1
- package/types/AccountsResource.d.ts +544 -0
- package/types/BalanceSettings.d.ts +89 -0
- package/types/BalanceSettingsResource.d.ts +108 -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/BillingPortal/Sessions.d.ts +5 -0
- package/types/BillingPortal/SessionsResource.d.ts +12 -4
- 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 +1406 -0
- package/types/Checkout/Sessions.d.ts +314 -1
- package/types/Checkout/SessionsResource.d.ts +333 -1
- package/types/ConfirmationTokens.d.ts +125 -0
- package/types/Coupons.d.ts +33 -0
- package/types/CouponsResource.d.ts +21 -0
- package/types/CreditNoteLineItems.d.ts +17 -0
- package/types/CreditNotes.d.ts +5 -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/Disputes.d.ts +7 -0
- package/types/Errors.d.ts +81 -2
- package/types/EventTypes.d.ts +664 -0
- package/types/Events.d.ts +97 -0
- package/types/ExternalAccountsResource.d.ts +304 -0
- package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
- package/types/FinancialConnections/Accounts.d.ts +36 -1
- package/types/FinancialConnections/AccountsResource.d.ts +40 -3
- package/types/FinancialConnections/Institutions.d.ts +98 -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/FxQuotes.d.ts +153 -0
- package/types/FxQuotesResource.d.ts +130 -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 +133 -3
- package/types/InvoicesResource.d.ts +1447 -16
- 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/Mandates.d.ts +77 -0
- package/types/Margins.d.ts +56 -0
- package/types/MarginsResource.d.ts +114 -0
- package/types/Orders.d.ts +1163 -0
- package/types/OrdersResource.d.ts +3139 -0
- package/types/PaymentAttemptRecords.d.ts +2161 -0
- package/types/PaymentAttemptRecordsResource.d.ts +47 -0
- package/types/PaymentIntentAmountDetailsLineItems.d.ts +116 -0
- package/types/PaymentIntents.d.ts +768 -2
- package/types/PaymentIntentsResource.d.ts +8808 -4088
- 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/PaymentMethods.d.ts +125 -0
- package/types/PaymentMethodsResource.d.ts +167 -2
- package/types/PaymentRecords.d.ts +2154 -0
- package/types/PaymentRecordsResource.d.ts +455 -0
- package/types/Payouts.d.ts +5 -0
- package/types/PayoutsResource.d.ts +5 -0
- package/types/Prices.d.ts +22 -0
- package/types/PricesResource.d.ts +22 -0
- package/types/Privacy/RedactionJobValidationErrors.d.ts +60 -0
- package/types/Privacy/RedactionJobs.d.ts +111 -0
- package/types/Privacy/RedactionJobsResource.d.ts +230 -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 +1696 -0
- package/types/QuotePreviewSubscriptionSchedules.d.ts +845 -0
- package/types/Quotes.d.ts +594 -1
- package/types/QuotesResource.d.ts +2577 -232
- package/types/Refunds.d.ts +14 -0
- package/types/SetupAttempts.d.ts +47 -1
- package/types/SetupIntents.d.ts +118 -2
- package/types/SetupIntentsResource.d.ts +730 -3
- package/types/Sources.d.ts +29 -0
- package/types/SubscriptionItems.d.ts +21 -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 +396 -10
- package/types/Tax/Associations.d.ts +82 -0
- package/types/Tax/AssociationsResource.d.ts +29 -0
- package/types/Tax/Forms.d.ts +220 -0
- package/types/Tax/FormsResource.d.ts +107 -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 +20 -0
- package/types/TestHelpers/ConfirmationTokensResource.d.ts +126 -0
- package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +26 -0
- package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +26 -0
- package/types/Transfers.d.ts +5 -0
- package/types/TransfersResource.d.ts +5 -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 +106 -0
- package/types/V2/Core/AccountLinksResource.d.ts +90 -0
- package/types/V2/Core/Accounts/PersonsResource.d.ts +3780 -0
- package/types/V2/Core/Accounts.d.ts +8791 -0
- package/types/V2/Core/AccountsResource.d.ts +10582 -0
- package/types/V2/Core/Persons.d.ts +1872 -0
- package/types/V2/Core/Vault/GbBankAccounts.d.ts +160 -0
- package/types/V2/Core/Vault/GbBankAccountsResource.d.ts +172 -0
- package/types/V2/Core/Vault/UsBankAccounts.d.ts +70 -0
- package/types/V2/Core/Vault/UsBankAccountsResource.d.ts +123 -0
- package/types/V2/EventTypes.d.ts +958 -5
- package/types/V2/FinancialAddressCreditSimulations.d.ts +27 -0
- package/types/V2/FinancialAddressGeneratedMicrodeposits.d.ts +32 -0
- package/types/V2/MoneyManagement/Adjustments.d.ts +110 -0
- package/types/V2/MoneyManagement/AdjustmentsResource.d.ts +83 -0
- package/types/V2/MoneyManagement/FinancialAccounts.d.ts +580 -0
- package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +326 -0
- package/types/V2/MoneyManagement/FinancialAddresses.d.ts +314 -0
- package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +289 -0
- package/types/V2/MoneyManagement/InboundTransfers.d.ts +206 -0
- package/types/V2/MoneyManagement/InboundTransfersResource.d.ts +144 -0
- package/types/V2/MoneyManagement/OutboundPaymentQuotes.d.ts +168 -0
- package/types/V2/MoneyManagement/OutboundPaymentQuotesResource.d.ts +115 -0
- package/types/V2/MoneyManagement/OutboundPayments.d.ts +278 -0
- package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +242 -0
- package/types/V2/MoneyManagement/OutboundSetupIntents.d.ts +97 -0
- package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +296 -0
- package/types/V2/MoneyManagement/OutboundTransfers.d.ts +251 -0
- package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +208 -0
- package/types/V2/MoneyManagement/PayoutMethods.d.ts +151 -0
- package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecResource.d.ts +41 -0
- package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecs.d.ts +87 -0
- package/types/V2/MoneyManagement/PayoutMethodsResource.d.ts +113 -0
- package/types/V2/MoneyManagement/ReceivedCredits.d.ts +262 -0
- package/types/V2/MoneyManagement/ReceivedCreditsResource.d.ts +78 -0
- package/types/V2/MoneyManagement/ReceivedDebits.d.ts +176 -0
- package/types/V2/MoneyManagement/ReceivedDebitsResource.d.ts +48 -0
- package/types/V2/MoneyManagement/TransactionEntries.d.ts +155 -0
- package/types/V2/MoneyManagement/TransactionEntriesResource.d.ts +82 -0
- package/types/V2/MoneyManagement/Transactions.d.ts +170 -0
- package/types/V2/MoneyManagement/TransactionsResource.d.ts +83 -0
- package/types/V2/Payments/OffSessionPayments.d.ts +162 -0
- package/types/V2/Payments/OffSessionPaymentsResource.d.ts +159 -0
- package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +66 -0
- package/types/WebhookEndpointsResource.d.ts +78 -0
- package/types/index.d.ts +138 -2
- package/types/lib.d.ts +11 -1
- package/types/test/typescriptTest.ts +3 -3
- package/types/InvoicePaymentsResource.d.ts +0 -74
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace Capital {
|
|
6
|
+
/**
|
|
7
|
+
* A financing object describes an account's current financing state. Used by Connect
|
|
8
|
+
* platforms to read the state of Capital offered to their connected accounts.
|
|
9
|
+
*/
|
|
10
|
+
interface FinancingSummary {
|
|
11
|
+
/**
|
|
12
|
+
* The object type: financing_summary
|
|
13
|
+
*/
|
|
14
|
+
object: 'capital.financing_summary';
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Additional information about the financing summary. Describes currency, advance amount,
|
|
18
|
+
* fee amount, withhold rate, remaining amount, paid amount, current repayment interval,
|
|
19
|
+
* repayment start date, and advance payout date.
|
|
20
|
+
*/
|
|
21
|
+
details: FinancingSummary.Details | null;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* The Financing Offer ID this Financing Summary corresponds to
|
|
25
|
+
*/
|
|
26
|
+
financing_offer: string | null;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Status of the Connected Account's financing. [/v1/capital/financing_summary](https://stripe.com/docs/api/capital/financing_summary) will only return `details` for `paid_out` financing.
|
|
30
|
+
*/
|
|
31
|
+
status: FinancingSummary.Status | null;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
namespace FinancingSummary {
|
|
35
|
+
interface Details {
|
|
36
|
+
/**
|
|
37
|
+
* Amount of financing offered, in minor units. For example, $1,000 USD will be represented as 100000.
|
|
38
|
+
*/
|
|
39
|
+
advance_amount: number;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* The time at which the funds were paid out to the connected account's Stripe balance. Given in milliseconds since unix epoch.
|
|
43
|
+
*/
|
|
44
|
+
advance_paid_out_at: number | null;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Currency that the financing offer is transacted in. For example, `usd`.
|
|
48
|
+
*/
|
|
49
|
+
currency: string;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* The chronologically current repayment interval for the financing offer.
|
|
53
|
+
*/
|
|
54
|
+
current_repayment_interval: Details.CurrentRepaymentInterval | null;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Fixed fee amount, in minor units. For example, $100 USD will be represented as 10000.
|
|
58
|
+
*/
|
|
59
|
+
fee_amount: number;
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* The amount the Connected account has paid toward the financing debt so far, in minor units. For example, $1,000 USD will be represented as 100000.
|
|
63
|
+
*/
|
|
64
|
+
paid_amount: number;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* The balance remaining to be paid on the financing, in minor units. For example, $1,000 USD will be represented as 100000.
|
|
68
|
+
*/
|
|
69
|
+
remaining_amount: number;
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* The time at which Capital will begin withholding from payments. Given in seconds since unix epoch.
|
|
73
|
+
*/
|
|
74
|
+
repayments_begin_at: number | null;
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Per-transaction rate at which Stripe will withhold funds to repay the financing.
|
|
78
|
+
*/
|
|
79
|
+
withhold_rate: number;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
namespace Details {
|
|
83
|
+
interface CurrentRepaymentInterval {
|
|
84
|
+
/**
|
|
85
|
+
* The time at which the minimum payment amount will be due. If not met through withholding, the Connected account's linked bank account or account balance will be debited.
|
|
86
|
+
* Given in seconds since unix epoch.
|
|
87
|
+
*/
|
|
88
|
+
due_at: number;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* The amount that has already been paid in the current repayment interval, in minor units. For example, $100 USD will be represented as 10000.
|
|
92
|
+
*/
|
|
93
|
+
paid_amount: number | null;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* The amount that is yet to be paid in the current repayment interval, in minor units. For example, $100 USD will be represented as 10000.
|
|
97
|
+
*/
|
|
98
|
+
remaining_amount: number;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
type Status = 'accepted' | 'delivered' | 'none';
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace Capital {
|
|
6
|
+
interface FinancingSummaryRetrieveParams {
|
|
7
|
+
/**
|
|
8
|
+
* Specifies which fields in the response should be expanded.
|
|
9
|
+
*/
|
|
10
|
+
expand?: Array<string>;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
class FinancingSummaryResource {
|
|
14
|
+
/**
|
|
15
|
+
* Retrieve the financing state for the account that was authenticated in the request.
|
|
16
|
+
*/
|
|
17
|
+
retrieve(
|
|
18
|
+
params?: FinancingSummaryRetrieveParams,
|
|
19
|
+
options?: RequestOptions
|
|
20
|
+
): Promise<Stripe.Response<Stripe.Capital.FinancingSummary>>;
|
|
21
|
+
retrieve(
|
|
22
|
+
options?: RequestOptions
|
|
23
|
+
): Promise<Stripe.Response<Stripe.Capital.FinancingSummary>>;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace Capital {
|
|
6
|
+
/**
|
|
7
|
+
* This is an object representing the details of a transaction on a Capital financing object.
|
|
8
|
+
*/
|
|
9
|
+
interface FinancingTransaction {
|
|
10
|
+
/**
|
|
11
|
+
* A unique identifier for the financing transaction object.
|
|
12
|
+
*/
|
|
13
|
+
id: string;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* The object type: financing_transaction
|
|
17
|
+
*/
|
|
18
|
+
object: 'capital.financing_transaction';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The ID of the merchant associated with this financing transaction.
|
|
22
|
+
*/
|
|
23
|
+
account: string;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Time at which the financing transaction was created. Given in seconds since unix epoch.
|
|
27
|
+
*/
|
|
28
|
+
created_at: number;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* This is an object representing a transaction on a Capital financing offer.
|
|
32
|
+
*/
|
|
33
|
+
details: FinancingTransaction.Details;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* The Capital financing offer for this financing transaction.
|
|
37
|
+
*/
|
|
38
|
+
financing_offer: string | null;
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* The Capital transaction object that predates the Financing Transactions API and
|
|
42
|
+
* corresponds with the balance transaction that was created as a result of this
|
|
43
|
+
* financing transaction.
|
|
44
|
+
*/
|
|
45
|
+
legacy_balance_transaction_source?: string;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
|
|
49
|
+
*/
|
|
50
|
+
livemode: boolean;
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* The type of the financing transaction.
|
|
54
|
+
*/
|
|
55
|
+
type: FinancingTransaction.Type;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* A human-friendly description of the financing transaction.
|
|
59
|
+
*/
|
|
60
|
+
user_facing_description: string | null;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
namespace FinancingTransaction {
|
|
64
|
+
interface Details {
|
|
65
|
+
/**
|
|
66
|
+
* The advance amount being repaid, paid out, or reversed in minor units.
|
|
67
|
+
*/
|
|
68
|
+
advance_amount: number;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* The currency of the financing transaction.
|
|
72
|
+
*/
|
|
73
|
+
currency: string;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* The fee amount being repaid, paid out, or reversed in minor units.
|
|
77
|
+
*/
|
|
78
|
+
fee_amount: number;
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* The linked payment for the transaction. This field only applies to financing transactions of type `paydown` and reason `automatic_withholding`.
|
|
82
|
+
*/
|
|
83
|
+
linked_payment?: string;
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* The reason for the financing transaction (if applicable).
|
|
87
|
+
*/
|
|
88
|
+
reason?: Details.Reason;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* The reversed transaction. This field only applies to financing
|
|
92
|
+
* transactions of type `reversal`.
|
|
93
|
+
*/
|
|
94
|
+
reversed_transaction?: string;
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* The advance and fee amount being repaid, paid out, or reversed in minor units.
|
|
98
|
+
*/
|
|
99
|
+
total_amount: number;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* This is an object representing a linked transaction on a Capital Financing Transaction.
|
|
103
|
+
*/
|
|
104
|
+
transaction?: Details.Transaction;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
namespace Details {
|
|
108
|
+
type Reason =
|
|
109
|
+
| 'automatic_withholding'
|
|
110
|
+
| 'automatic_withholding_refund'
|
|
111
|
+
| 'collection'
|
|
112
|
+
| 'collection_failure'
|
|
113
|
+
| 'financing_cancellation'
|
|
114
|
+
| 'refill'
|
|
115
|
+
| 'requested_by_user'
|
|
116
|
+
| 'user_initiated';
|
|
117
|
+
|
|
118
|
+
interface Transaction {
|
|
119
|
+
/**
|
|
120
|
+
* The linked payment ID.
|
|
121
|
+
*/
|
|
122
|
+
charge?: string;
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* The linked Treasury Financing Transaction ID.
|
|
126
|
+
*/
|
|
127
|
+
treasury_transaction?: string;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
type Type = 'payment' | 'payout' | 'reversal';
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace Capital {
|
|
6
|
+
interface FinancingTransactionRetrieveParams {
|
|
7
|
+
/**
|
|
8
|
+
* Specifies which fields in the response should be expanded.
|
|
9
|
+
*/
|
|
10
|
+
expand?: Array<string>;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
interface FinancingTransactionListParams extends PaginationParams {
|
|
14
|
+
/**
|
|
15
|
+
* For transactions of type `paydown` and reason `automatic_withholding` only, only returns transactions that were created as a result of this charge.
|
|
16
|
+
*/
|
|
17
|
+
charge?: string;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Specifies which fields in the response should be expanded.
|
|
21
|
+
*/
|
|
22
|
+
expand?: Array<string>;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Returns transactions that were created that apply to this financing offer ID.
|
|
26
|
+
*/
|
|
27
|
+
financing_offer?: string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Only returns transactions that are responsible for reversing this financing transaction ID.
|
|
31
|
+
*/
|
|
32
|
+
reversed_transaction?: string;
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* For transactions of type `paydown` and reason `automatic_withholding` only, only returns transactions that were created as a result of this Treasury Transaction.
|
|
36
|
+
*/
|
|
37
|
+
treasury_transaction?: string;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
class FinancingTransactionsResource {
|
|
41
|
+
/**
|
|
42
|
+
* Retrieves a financing transaction for a financing offer.
|
|
43
|
+
*/
|
|
44
|
+
retrieve(
|
|
45
|
+
id: string,
|
|
46
|
+
params?: FinancingTransactionRetrieveParams,
|
|
47
|
+
options?: RequestOptions
|
|
48
|
+
): Promise<Stripe.Response<Stripe.Capital.FinancingTransaction>>;
|
|
49
|
+
retrieve(
|
|
50
|
+
id: string,
|
|
51
|
+
options?: RequestOptions
|
|
52
|
+
): Promise<Stripe.Response<Stripe.Capital.FinancingTransaction>>;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Returns a list of financing transactions. The transactions are returned in sorted order,
|
|
56
|
+
* with the most recent transactions appearing first.
|
|
57
|
+
*/
|
|
58
|
+
list(
|
|
59
|
+
params?: FinancingTransactionListParams,
|
|
60
|
+
options?: RequestOptions
|
|
61
|
+
): ApiListPromise<Stripe.Capital.FinancingTransaction>;
|
|
62
|
+
list(
|
|
63
|
+
options?: RequestOptions
|
|
64
|
+
): ApiListPromise<Stripe.Capital.FinancingTransaction>;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
package/types/Cards.d.ts
CHANGED
|
@@ -77,6 +77,11 @@ declare module 'stripe' {
|
|
|
77
77
|
*/
|
|
78
78
|
brand: string;
|
|
79
79
|
|
|
80
|
+
/**
|
|
81
|
+
* The [product code](https://stripe.com/docs/card-product-codes) that identifies the specific program or product associated with a card. (For internal use only and not typically available in standard API requests.)
|
|
82
|
+
*/
|
|
83
|
+
brand_product?: string | null;
|
|
84
|
+
|
|
80
85
|
/**
|
|
81
86
|
* Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
|
|
82
87
|
*/
|
package/types/CashBalances.d.ts
CHANGED
|
@@ -23,6 +23,11 @@ declare module 'stripe' {
|
|
|
23
23
|
*/
|
|
24
24
|
customer: string;
|
|
25
25
|
|
|
26
|
+
/**
|
|
27
|
+
* The ID of the account whose cash balance this object represents.
|
|
28
|
+
*/
|
|
29
|
+
customer_account?: string | null;
|
|
30
|
+
|
|
26
31
|
/**
|
|
27
32
|
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
|
|
28
33
|
*/
|
package/types/Charges.d.ts
CHANGED
|
@@ -434,8 +434,12 @@ declare module 'stripe' {
|
|
|
434
434
|
|
|
435
435
|
giropay?: PaymentMethodDetails.Giropay;
|
|
436
436
|
|
|
437
|
+
gopay?: PaymentMethodDetails.Gopay;
|
|
438
|
+
|
|
437
439
|
grabpay?: PaymentMethodDetails.Grabpay;
|
|
438
440
|
|
|
441
|
+
id_bank_transfer?: PaymentMethodDetails.IdBankTransfer;
|
|
442
|
+
|
|
439
443
|
ideal?: PaymentMethodDetails.Ideal;
|
|
440
444
|
|
|
441
445
|
interac_present?: PaymentMethodDetails.InteracPresent;
|
|
@@ -450,6 +454,8 @@ declare module 'stripe' {
|
|
|
450
454
|
|
|
451
455
|
link?: PaymentMethodDetails.Link;
|
|
452
456
|
|
|
457
|
+
mb_way?: PaymentMethodDetails.MbWay;
|
|
458
|
+
|
|
453
459
|
mobilepay?: PaymentMethodDetails.Mobilepay;
|
|
454
460
|
|
|
455
461
|
multibanco?: PaymentMethodDetails.Multibanco;
|
|
@@ -470,10 +476,16 @@ declare module 'stripe' {
|
|
|
470
476
|
|
|
471
477
|
paypal?: PaymentMethodDetails.Paypal;
|
|
472
478
|
|
|
479
|
+
payto?: PaymentMethodDetails.Payto;
|
|
480
|
+
|
|
473
481
|
pix?: PaymentMethodDetails.Pix;
|
|
474
482
|
|
|
475
483
|
promptpay?: PaymentMethodDetails.Promptpay;
|
|
476
484
|
|
|
485
|
+
qris?: PaymentMethodDetails.Qris;
|
|
486
|
+
|
|
487
|
+
rechnung?: PaymentMethodDetails.Rechnung;
|
|
488
|
+
|
|
477
489
|
revolut_pay?: PaymentMethodDetails.RevolutPay;
|
|
478
490
|
|
|
479
491
|
samsung_pay?: PaymentMethodDetails.SamsungPay;
|
|
@@ -484,10 +496,14 @@ declare module 'stripe' {
|
|
|
484
496
|
|
|
485
497
|
sepa_debit?: PaymentMethodDetails.SepaDebit;
|
|
486
498
|
|
|
499
|
+
shopeepay?: PaymentMethodDetails.Shopeepay;
|
|
500
|
+
|
|
487
501
|
sofort?: PaymentMethodDetails.Sofort;
|
|
488
502
|
|
|
489
503
|
stripe_account?: PaymentMethodDetails.StripeAccount;
|
|
490
504
|
|
|
505
|
+
stripe_balance?: PaymentMethodDetails.StripeBalance;
|
|
506
|
+
|
|
491
507
|
swish?: PaymentMethodDetails.Swish;
|
|
492
508
|
|
|
493
509
|
twint?: PaymentMethodDetails.Twint;
|
|
@@ -668,6 +684,11 @@ declare module 'stripe' {
|
|
|
668
684
|
*/
|
|
669
685
|
brand: string | null;
|
|
670
686
|
|
|
687
|
+
/**
|
|
688
|
+
* The [product code](https://stripe.com/docs/card-product-codes) that identifies the specific program or product associated with a card. (For internal use only and not typically available in standard API requests.)
|
|
689
|
+
*/
|
|
690
|
+
brand_product?: string | null;
|
|
691
|
+
|
|
671
692
|
/**
|
|
672
693
|
* Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
|
|
673
694
|
*/
|
|
@@ -810,6 +831,11 @@ declare module 'stripe' {
|
|
|
810
831
|
*/
|
|
811
832
|
amount_authorized: number | null;
|
|
812
833
|
|
|
834
|
+
/**
|
|
835
|
+
* The latest amount intended to be authorized by this charge.
|
|
836
|
+
*/
|
|
837
|
+
amount_requested?: number | null;
|
|
838
|
+
|
|
813
839
|
/**
|
|
814
840
|
* Authorization code on the charge.
|
|
815
841
|
*/
|
|
@@ -835,6 +861,8 @@ declare module 'stripe' {
|
|
|
835
861
|
*/
|
|
836
862
|
country: string | null;
|
|
837
863
|
|
|
864
|
+
decremental_authorization?: Card.DecrementalAuthorization;
|
|
865
|
+
|
|
838
866
|
/**
|
|
839
867
|
* A high-level description of the type of cards issued in this range. (For internal use only and not typically available in standard API requests.)
|
|
840
868
|
*/
|
|
@@ -917,6 +945,8 @@ declare module 'stripe' {
|
|
|
917
945
|
|
|
918
946
|
overcapture?: Card.Overcapture;
|
|
919
947
|
|
|
948
|
+
partial_authorization?: Card.PartialAuthorization;
|
|
949
|
+
|
|
920
950
|
/**
|
|
921
951
|
* Status of a card based on the card issuer.
|
|
922
952
|
*/
|
|
@@ -951,6 +981,17 @@ declare module 'stripe' {
|
|
|
951
981
|
cvc_check: string | null;
|
|
952
982
|
}
|
|
953
983
|
|
|
984
|
+
interface DecrementalAuthorization {
|
|
985
|
+
/**
|
|
986
|
+
* Indicates whether or not the decremental authorization feature is supported.
|
|
987
|
+
*/
|
|
988
|
+
status: DecrementalAuthorization.Status;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
namespace DecrementalAuthorization {
|
|
992
|
+
type Status = 'available' | 'unavailable';
|
|
993
|
+
}
|
|
994
|
+
|
|
954
995
|
interface ExtendedAuthorization {
|
|
955
996
|
/**
|
|
956
997
|
* Indicates whether or not the capture window is extended beyond the standard authorization.
|
|
@@ -1038,6 +1079,21 @@ declare module 'stripe' {
|
|
|
1038
1079
|
type Status = 'available' | 'unavailable';
|
|
1039
1080
|
}
|
|
1040
1081
|
|
|
1082
|
+
interface PartialAuthorization {
|
|
1083
|
+
/**
|
|
1084
|
+
* Indicates whether the transaction requested for partial authorization feature and the authorization outcome.
|
|
1085
|
+
*/
|
|
1086
|
+
status: PartialAuthorization.Status;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
namespace PartialAuthorization {
|
|
1090
|
+
type Status =
|
|
1091
|
+
| 'declined'
|
|
1092
|
+
| 'fully_authorized'
|
|
1093
|
+
| 'not_requested'
|
|
1094
|
+
| 'partially_authorized';
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1041
1097
|
type RegulatedStatus = 'regulated' | 'unregulated';
|
|
1042
1098
|
|
|
1043
1099
|
interface ThreeDSecure {
|
|
@@ -1572,6 +1628,8 @@ declare module 'stripe' {
|
|
|
1572
1628
|
verified_name: string | null;
|
|
1573
1629
|
}
|
|
1574
1630
|
|
|
1631
|
+
interface Gopay {}
|
|
1632
|
+
|
|
1575
1633
|
interface Grabpay {
|
|
1576
1634
|
/**
|
|
1577
1635
|
* Unique transaction id generated by GrabPay
|
|
@@ -1579,6 +1637,37 @@ declare module 'stripe' {
|
|
|
1579
1637
|
transaction_id: string | null;
|
|
1580
1638
|
}
|
|
1581
1639
|
|
|
1640
|
+
interface IdBankTransfer {
|
|
1641
|
+
/**
|
|
1642
|
+
* Account number of the bank account to transfer funds to.
|
|
1643
|
+
*/
|
|
1644
|
+
account_number: string;
|
|
1645
|
+
|
|
1646
|
+
/**
|
|
1647
|
+
* Bank where the account is located.
|
|
1648
|
+
*/
|
|
1649
|
+
bank: IdBankTransfer.Bank;
|
|
1650
|
+
|
|
1651
|
+
/**
|
|
1652
|
+
* Local bank code of the bank.
|
|
1653
|
+
*/
|
|
1654
|
+
bank_code?: string;
|
|
1655
|
+
|
|
1656
|
+
/**
|
|
1657
|
+
* Name of the bank associated with the bank account.
|
|
1658
|
+
*/
|
|
1659
|
+
bank_name?: string;
|
|
1660
|
+
|
|
1661
|
+
/**
|
|
1662
|
+
* Merchant name and billing details name, for the customer to check for the correct merchant when performing the bank transfer.
|
|
1663
|
+
*/
|
|
1664
|
+
display_name?: string;
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
namespace IdBankTransfer {
|
|
1668
|
+
type Bank = 'bca' | 'bni' | 'bri' | 'cimb' | 'permata';
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1582
1671
|
interface Ideal {
|
|
1583
1672
|
/**
|
|
1584
1673
|
* The customer's bank. Can be one of `abn_amro`, `asn_bank`, `bunq`, `buut`, `handelsbanken`, `ing`, `knab`, `moneyou`, `n26`, `nn`, `rabobank`, `regiobank`, `revolut`, `sns_bank`, `triodos_bank`, `van_lanschot`, or `yoursafe`.
|
|
@@ -1922,6 +2011,8 @@ declare module 'stripe' {
|
|
|
1922
2011
|
country: string | null;
|
|
1923
2012
|
}
|
|
1924
2013
|
|
|
2014
|
+
interface MbWay {}
|
|
2015
|
+
|
|
1925
2016
|
interface Mobilepay {
|
|
1926
2017
|
/**
|
|
1927
2018
|
* Internal card details
|
|
@@ -2109,10 +2200,36 @@ declare module 'stripe' {
|
|
|
2109
2200
|
*/
|
|
2110
2201
|
seller_protection: Paypal.SellerProtection | null;
|
|
2111
2202
|
|
|
2203
|
+
/**
|
|
2204
|
+
* The shipping address for the customer, as supplied by the merchant at the point of payment
|
|
2205
|
+
* execution. This shipping address will not be updated if the merchant updates the shipping
|
|
2206
|
+
* address on the PaymentIntent after the PaymentIntent was successfully confirmed.
|
|
2207
|
+
*/
|
|
2208
|
+
shipping?: Stripe.Address | null;
|
|
2209
|
+
|
|
2112
2210
|
/**
|
|
2113
2211
|
* A unique ID generated by PayPal for this transaction.
|
|
2114
2212
|
*/
|
|
2115
2213
|
transaction_id: string | null;
|
|
2214
|
+
|
|
2215
|
+
/**
|
|
2216
|
+
* The shipping address for the customer, as supplied by the merchant at the point of payment
|
|
2217
|
+
* execution. This shipping address will not be updated if the merchant updates the shipping
|
|
2218
|
+
* address on the PaymentIntent after the PaymentIntent was successfully confirmed.
|
|
2219
|
+
*/
|
|
2220
|
+
verified_address?: Stripe.Address | null;
|
|
2221
|
+
|
|
2222
|
+
/**
|
|
2223
|
+
* Owner's verified email. Values are verified or provided by PayPal directly
|
|
2224
|
+
* (if supported) at the time of authorization or settlement. They cannot be set or mutated.
|
|
2225
|
+
*/
|
|
2226
|
+
verified_email?: string | null;
|
|
2227
|
+
|
|
2228
|
+
/**
|
|
2229
|
+
* Owner's verified full name. Values are verified or provided by PayPal directly
|
|
2230
|
+
* (if supported) at the time of authorization or settlement. They cannot be set or mutated.
|
|
2231
|
+
*/
|
|
2232
|
+
verified_name?: string | null;
|
|
2116
2233
|
}
|
|
2117
2234
|
|
|
2118
2235
|
namespace Paypal {
|
|
@@ -2135,6 +2252,28 @@ declare module 'stripe' {
|
|
|
2135
2252
|
}
|
|
2136
2253
|
}
|
|
2137
2254
|
|
|
2255
|
+
interface Payto {
|
|
2256
|
+
/**
|
|
2257
|
+
* Bank-State-Branch number of the bank account.
|
|
2258
|
+
*/
|
|
2259
|
+
bsb_number: string | null;
|
|
2260
|
+
|
|
2261
|
+
/**
|
|
2262
|
+
* Last four digits of the bank account number.
|
|
2263
|
+
*/
|
|
2264
|
+
last4: string | null;
|
|
2265
|
+
|
|
2266
|
+
/**
|
|
2267
|
+
* ID of the mandate used to make this payment.
|
|
2268
|
+
*/
|
|
2269
|
+
mandate?: string;
|
|
2270
|
+
|
|
2271
|
+
/**
|
|
2272
|
+
* The PayID alias for the bank account.
|
|
2273
|
+
*/
|
|
2274
|
+
pay_id: string | null;
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2138
2277
|
interface Pix {
|
|
2139
2278
|
/**
|
|
2140
2279
|
* Unique transaction id generated by BCB
|
|
@@ -2149,6 +2288,10 @@ declare module 'stripe' {
|
|
|
2149
2288
|
reference: string | null;
|
|
2150
2289
|
}
|
|
2151
2290
|
|
|
2291
|
+
interface Qris {}
|
|
2292
|
+
|
|
2293
|
+
interface Rechnung {}
|
|
2294
|
+
|
|
2152
2295
|
interface RevolutPay {
|
|
2153
2296
|
funding?: RevolutPay.Funding;
|
|
2154
2297
|
}
|
|
@@ -2170,6 +2313,11 @@ declare module 'stripe' {
|
|
|
2170
2313
|
*/
|
|
2171
2314
|
brand: string | null;
|
|
2172
2315
|
|
|
2316
|
+
/**
|
|
2317
|
+
* The [product code](https://stripe.com/docs/card-product-codes) that identifies the specific program or product associated with a card. (For internal use only and not typically available in standard API requests.)
|
|
2318
|
+
*/
|
|
2319
|
+
brand_product?: string | null;
|
|
2320
|
+
|
|
2173
2321
|
/**
|
|
2174
2322
|
* Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
|
|
2175
2323
|
*/
|
|
@@ -2256,6 +2404,8 @@ declare module 'stripe' {
|
|
|
2256
2404
|
mandate: string | null;
|
|
2257
2405
|
}
|
|
2258
2406
|
|
|
2407
|
+
interface Shopeepay {}
|
|
2408
|
+
|
|
2259
2409
|
interface Sofort {
|
|
2260
2410
|
/**
|
|
2261
2411
|
* Bank code of bank associated with the bank account.
|
|
@@ -2318,6 +2468,22 @@ declare module 'stripe' {
|
|
|
2318
2468
|
|
|
2319
2469
|
interface StripeAccount {}
|
|
2320
2470
|
|
|
2471
|
+
interface StripeBalance {
|
|
2472
|
+
/**
|
|
2473
|
+
* The connected account ID whose Stripe balance to use as the source of payment
|
|
2474
|
+
*/
|
|
2475
|
+
account?: string | null;
|
|
2476
|
+
|
|
2477
|
+
/**
|
|
2478
|
+
* The [source_type](https://docs.stripe.com/api/balance/balance_object#balance_object-available-source_types) of the balance
|
|
2479
|
+
*/
|
|
2480
|
+
source_type: StripeBalance.SourceType;
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
namespace StripeBalance {
|
|
2484
|
+
type SourceType = 'bank_account' | 'card' | 'fpx';
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2321
2487
|
interface Swish {
|
|
2322
2488
|
/**
|
|
2323
2489
|
* Uniquely identifies the payer's Swish account. You can use this attribute to check whether two Swish transactions were paid for by the same payer
|