stripe 18.1.0 → 18.2.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.
- package/CHANGELOG.md +1220 -140
- package/README.md +1 -0
- 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/FxQuotes.js +15 -0
- package/cjs/resources/GiftCards/Cards.js +23 -0
- package/cjs/resources/GiftCards/Transactions.js +33 -0
- package/cjs/resources/Invoices.js +4 -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/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 +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/TestHelpers/FinancialAddresses.js +16 -0
- package/cjs/resources.js +108 -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/FxQuotes.js +12 -0
- package/esm/resources/GiftCards/Cards.js +20 -0
- package/esm/resources/GiftCards/Transactions.js +30 -0
- package/esm/resources/Invoices.js +4 -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/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 +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/TestHelpers/FinancialAddresses.js +13 -0
- package/esm/resources.js +84 -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 +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/Billing/MeterErrorReports.d.ts +106 -0
- 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 +1314 -0
- package/types/Checkout/Sessions.d.ts +315 -2
- package/types/Checkout/SessionsResource.d.ts +340 -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 +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 +698 -0
- package/types/Events.d.ts +99 -0
- 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/FxQuotes.d.ts +153 -0
- package/types/FxQuotesResource.d.ts +130 -0
- 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 +136 -3
- package/types/InvoicesResource.d.ts +1483 -3
- 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 +1199 -0
- package/types/OrdersResource.d.ts +3001 -0
- package/types/PaymentAttemptRecords.d.ts +2112 -0
- package/types/PaymentAttemptRecordsResource.d.ts +47 -0
- package/types/PaymentIntentAmountDetailsLineItems.d.ts +110 -0
- package/types/PaymentIntents.d.ts +728 -2
- package/types/PaymentIntentsResource.d.ts +8618 -4094
- 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 +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/Prices.d.ts +22 -0
- package/types/PricesResource.d.ts +22 -0
- package/types/Privacy/RedactionJobValidationErrors.d.ts +30 -0
- package/types/Privacy/RedactionJobs.d.ts +65 -0
- package/types/Privacy/RedactionJobsResource.d.ts +218 -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 +1697 -0
- package/types/QuotePreviewSubscriptionSchedules.d.ts +785 -0
- package/types/Quotes.d.ts +603 -1
- package/types/QuotesResource.d.ts +2572 -218
- package/types/Refunds.d.ts +14 -0
- package/types/SetupAttempts.d.ts +50 -1
- package/types/SetupIntents.d.ts +121 -2
- package/types/SetupIntentsResource.d.ts +730 -3
- 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 +212 -0
- package/types/SubscriptionSchedulesResource.d.ts +1240 -5
- package/types/Subscriptions.d.ts +104 -1
- package/types/SubscriptionsResource.d.ts +397 -8
- package/types/Tax/Associations.d.ts +126 -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 +300 -0
- package/types/Terminal/ReadersResource.d.ts +220 -0
- package/types/TestHelpers/ConfirmationTokensResource.d.ts +126 -0
- 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/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 +3770 -0
- package/types/V2/Core/Accounts.d.ts +8169 -0
- package/types/V2/Core/AccountsResource.d.ts +10203 -0
- package/types/V2/Core/Persons.d.ts +1867 -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 +812 -1
- 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 +546 -0
- package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +52 -0
- package/types/V2/MoneyManagement/FinancialAddresses.d.ts +314 -0
- package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +288 -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 +207 -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 +285 -0
- package/types/V2/MoneyManagement/ReceivedCreditsResource.d.ts +78 -0
- package/types/V2/MoneyManagement/ReceivedDebits.d.ts +224 -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/TestHelpers/FinancialAddressesResource.d.ts +66 -0
- package/types/WebhookEndpointsResource.d.ts +82 -0
- package/types/index.d.ts +145 -5
- package/types/lib.d.ts +11 -1
- package/types/test/typescriptTest.ts +3 -3
- package/types/InvoicePaymentsResource.d.ts +0 -74
|
@@ -161,15 +161,28 @@ declare module 'stripe' {
|
|
|
161
161
|
| 'account.external_account.deleted'
|
|
162
162
|
| 'account.external_account.updated'
|
|
163
163
|
| 'account.updated'
|
|
164
|
+
| 'account_notice.created'
|
|
165
|
+
| 'account_notice.updated'
|
|
164
166
|
| 'application_fee.created'
|
|
165
167
|
| 'application_fee.refund.updated'
|
|
166
168
|
| 'application_fee.refunded'
|
|
167
169
|
| 'balance.available'
|
|
170
|
+
| 'balance_settings.updated'
|
|
168
171
|
| 'billing.alert.triggered'
|
|
172
|
+
| 'billing.meter_error_report.triggered'
|
|
169
173
|
| 'billing_portal.configuration.created'
|
|
170
174
|
| 'billing_portal.configuration.updated'
|
|
171
175
|
| 'billing_portal.session.created'
|
|
172
176
|
| 'capability.updated'
|
|
177
|
+
| 'capital.financing_offer.accepted'
|
|
178
|
+
| 'capital.financing_offer.canceled'
|
|
179
|
+
| 'capital.financing_offer.created'
|
|
180
|
+
| 'capital.financing_offer.expired'
|
|
181
|
+
| 'capital.financing_offer.fully_repaid'
|
|
182
|
+
| 'capital.financing_offer.paid_out'
|
|
183
|
+
| 'capital.financing_offer.rejected'
|
|
184
|
+
| 'capital.financing_offer.replacement_created'
|
|
185
|
+
| 'capital.financing_transaction.created'
|
|
173
186
|
| 'cash_balance.funds_available'
|
|
174
187
|
| 'charge.captured'
|
|
175
188
|
| 'charge.dispute.closed'
|
|
@@ -210,11 +223,15 @@ declare module 'stripe' {
|
|
|
210
223
|
| 'customer.source.deleted'
|
|
211
224
|
| 'customer.source.expiring'
|
|
212
225
|
| 'customer.source.updated'
|
|
226
|
+
| 'customer.subscription.collection_paused'
|
|
227
|
+
| 'customer.subscription.collection_resumed'
|
|
213
228
|
| 'customer.subscription.created'
|
|
229
|
+
| 'customer.subscription.custom_event'
|
|
214
230
|
| 'customer.subscription.deleted'
|
|
215
231
|
| 'customer.subscription.paused'
|
|
216
232
|
| 'customer.subscription.pending_update_applied'
|
|
217
233
|
| 'customer.subscription.pending_update_expired'
|
|
234
|
+
| 'customer.subscription.price_migration_failed'
|
|
218
235
|
| 'customer.subscription.resumed'
|
|
219
236
|
| 'customer.subscription.trial_will_end'
|
|
220
237
|
| 'customer.subscription.updated'
|
|
@@ -230,8 +247,11 @@ declare module 'stripe' {
|
|
|
230
247
|
| 'financial_connections.account.disconnected'
|
|
231
248
|
| 'financial_connections.account.reactivated'
|
|
232
249
|
| 'financial_connections.account.refreshed_balance'
|
|
250
|
+
| 'financial_connections.account.refreshed_inferred_balances'
|
|
233
251
|
| 'financial_connections.account.refreshed_ownership'
|
|
234
252
|
| 'financial_connections.account.refreshed_transactions'
|
|
253
|
+
| 'financial_connections.session.updated'
|
|
254
|
+
| 'fx_quote.expired'
|
|
235
255
|
| 'identity.verification_session.canceled'
|
|
236
256
|
| 'identity.verification_session.created'
|
|
237
257
|
| 'identity.verification_session.processing'
|
|
@@ -246,7 +266,9 @@ declare module 'stripe' {
|
|
|
246
266
|
| 'invoice.overdue'
|
|
247
267
|
| 'invoice.overpaid'
|
|
248
268
|
| 'invoice.paid'
|
|
269
|
+
| 'invoice.payment.overpaid'
|
|
249
270
|
| 'invoice.payment_action_required'
|
|
271
|
+
| 'invoice.payment_attempt_required'
|
|
250
272
|
| 'invoice.payment_failed'
|
|
251
273
|
| 'invoice.payment_succeeded'
|
|
252
274
|
| 'invoice.sent'
|
|
@@ -269,10 +291,15 @@ declare module 'stripe' {
|
|
|
269
291
|
| 'issuing_dispute.funds_rescinded'
|
|
270
292
|
| 'issuing_dispute.submitted'
|
|
271
293
|
| 'issuing_dispute.updated'
|
|
294
|
+
| 'issuing_dispute_settlement_detail.created'
|
|
295
|
+
| 'issuing_dispute_settlement_detail.updated'
|
|
296
|
+
| 'issuing_fraud_liability_debit.created'
|
|
272
297
|
| 'issuing_personalization_design.activated'
|
|
273
298
|
| 'issuing_personalization_design.deactivated'
|
|
274
299
|
| 'issuing_personalization_design.rejected'
|
|
275
300
|
| 'issuing_personalization_design.updated'
|
|
301
|
+
| 'issuing_settlement.created'
|
|
302
|
+
| 'issuing_settlement.updated'
|
|
276
303
|
| 'issuing_token.created'
|
|
277
304
|
| 'issuing_token.updated'
|
|
278
305
|
| 'issuing_transaction.created'
|
|
@@ -308,15 +335,26 @@ declare module 'stripe' {
|
|
|
308
335
|
| 'price.created'
|
|
309
336
|
| 'price.deleted'
|
|
310
337
|
| 'price.updated'
|
|
338
|
+
| 'privacy.redaction_job.canceled'
|
|
339
|
+
| 'privacy.redaction_job.created'
|
|
340
|
+
| 'privacy.redaction_job.ready'
|
|
341
|
+
| 'privacy.redaction_job.succeeded'
|
|
342
|
+
| 'privacy.redaction_job.validation_error'
|
|
311
343
|
| 'product.created'
|
|
312
344
|
| 'product.deleted'
|
|
313
345
|
| 'product.updated'
|
|
314
346
|
| 'promotion_code.created'
|
|
315
347
|
| 'promotion_code.updated'
|
|
348
|
+
| 'quote.accept_failed'
|
|
316
349
|
| 'quote.accepted'
|
|
350
|
+
| 'quote.accepting'
|
|
317
351
|
| 'quote.canceled'
|
|
318
352
|
| 'quote.created'
|
|
353
|
+
| 'quote.draft'
|
|
319
354
|
| 'quote.finalized'
|
|
355
|
+
| 'quote.reestimate_failed'
|
|
356
|
+
| 'quote.reestimated'
|
|
357
|
+
| 'quote.stale'
|
|
320
358
|
| 'radar.early_fraud_warning.created'
|
|
321
359
|
| 'radar.early_fraud_warning.updated'
|
|
322
360
|
| 'refund.created'
|
|
@@ -345,13 +383,16 @@ declare module 'stripe' {
|
|
|
345
383
|
| 'subscription_schedule.completed'
|
|
346
384
|
| 'subscription_schedule.created'
|
|
347
385
|
| 'subscription_schedule.expiring'
|
|
386
|
+
| 'subscription_schedule.price_migration_failed'
|
|
348
387
|
| 'subscription_schedule.released'
|
|
349
388
|
| 'subscription_schedule.updated'
|
|
389
|
+
| 'tax.form.updated'
|
|
350
390
|
| 'tax.settings.updated'
|
|
351
391
|
| 'tax_rate.created'
|
|
352
392
|
| 'tax_rate.updated'
|
|
353
393
|
| 'terminal.reader.action_failed'
|
|
354
394
|
| 'terminal.reader.action_succeeded'
|
|
395
|
+
| 'terminal.reader.action_updated'
|
|
355
396
|
| 'test_helpers.test_clock.advancing'
|
|
356
397
|
| 'test_helpers.test_clock.created'
|
|
357
398
|
| 'test_helpers.test_clock.deleted'
|
|
@@ -452,15 +493,28 @@ declare module 'stripe' {
|
|
|
452
493
|
| 'account.external_account.deleted'
|
|
453
494
|
| 'account.external_account.updated'
|
|
454
495
|
| 'account.updated'
|
|
496
|
+
| 'account_notice.created'
|
|
497
|
+
| 'account_notice.updated'
|
|
455
498
|
| 'application_fee.created'
|
|
456
499
|
| 'application_fee.refund.updated'
|
|
457
500
|
| 'application_fee.refunded'
|
|
458
501
|
| 'balance.available'
|
|
502
|
+
| 'balance_settings.updated'
|
|
459
503
|
| 'billing.alert.triggered'
|
|
504
|
+
| 'billing.meter_error_report.triggered'
|
|
460
505
|
| 'billing_portal.configuration.created'
|
|
461
506
|
| 'billing_portal.configuration.updated'
|
|
462
507
|
| 'billing_portal.session.created'
|
|
463
508
|
| 'capability.updated'
|
|
509
|
+
| 'capital.financing_offer.accepted'
|
|
510
|
+
| 'capital.financing_offer.canceled'
|
|
511
|
+
| 'capital.financing_offer.created'
|
|
512
|
+
| 'capital.financing_offer.expired'
|
|
513
|
+
| 'capital.financing_offer.fully_repaid'
|
|
514
|
+
| 'capital.financing_offer.paid_out'
|
|
515
|
+
| 'capital.financing_offer.rejected'
|
|
516
|
+
| 'capital.financing_offer.replacement_created'
|
|
517
|
+
| 'capital.financing_transaction.created'
|
|
464
518
|
| 'cash_balance.funds_available'
|
|
465
519
|
| 'charge.captured'
|
|
466
520
|
| 'charge.dispute.closed'
|
|
@@ -501,11 +555,15 @@ declare module 'stripe' {
|
|
|
501
555
|
| 'customer.source.deleted'
|
|
502
556
|
| 'customer.source.expiring'
|
|
503
557
|
| 'customer.source.updated'
|
|
558
|
+
| 'customer.subscription.collection_paused'
|
|
559
|
+
| 'customer.subscription.collection_resumed'
|
|
504
560
|
| 'customer.subscription.created'
|
|
561
|
+
| 'customer.subscription.custom_event'
|
|
505
562
|
| 'customer.subscription.deleted'
|
|
506
563
|
| 'customer.subscription.paused'
|
|
507
564
|
| 'customer.subscription.pending_update_applied'
|
|
508
565
|
| 'customer.subscription.pending_update_expired'
|
|
566
|
+
| 'customer.subscription.price_migration_failed'
|
|
509
567
|
| 'customer.subscription.resumed'
|
|
510
568
|
| 'customer.subscription.trial_will_end'
|
|
511
569
|
| 'customer.subscription.updated'
|
|
@@ -521,8 +579,11 @@ declare module 'stripe' {
|
|
|
521
579
|
| 'financial_connections.account.disconnected'
|
|
522
580
|
| 'financial_connections.account.reactivated'
|
|
523
581
|
| 'financial_connections.account.refreshed_balance'
|
|
582
|
+
| 'financial_connections.account.refreshed_inferred_balances'
|
|
524
583
|
| 'financial_connections.account.refreshed_ownership'
|
|
525
584
|
| 'financial_connections.account.refreshed_transactions'
|
|
585
|
+
| 'financial_connections.session.updated'
|
|
586
|
+
| 'fx_quote.expired'
|
|
526
587
|
| 'identity.verification_session.canceled'
|
|
527
588
|
| 'identity.verification_session.created'
|
|
528
589
|
| 'identity.verification_session.processing'
|
|
@@ -537,7 +598,9 @@ declare module 'stripe' {
|
|
|
537
598
|
| 'invoice.overdue'
|
|
538
599
|
| 'invoice.overpaid'
|
|
539
600
|
| 'invoice.paid'
|
|
601
|
+
| 'invoice.payment.overpaid'
|
|
540
602
|
| 'invoice.payment_action_required'
|
|
603
|
+
| 'invoice.payment_attempt_required'
|
|
541
604
|
| 'invoice.payment_failed'
|
|
542
605
|
| 'invoice.payment_succeeded'
|
|
543
606
|
| 'invoice.sent'
|
|
@@ -560,10 +623,15 @@ declare module 'stripe' {
|
|
|
560
623
|
| 'issuing_dispute.funds_rescinded'
|
|
561
624
|
| 'issuing_dispute.submitted'
|
|
562
625
|
| 'issuing_dispute.updated'
|
|
626
|
+
| 'issuing_dispute_settlement_detail.created'
|
|
627
|
+
| 'issuing_dispute_settlement_detail.updated'
|
|
628
|
+
| 'issuing_fraud_liability_debit.created'
|
|
563
629
|
| 'issuing_personalization_design.activated'
|
|
564
630
|
| 'issuing_personalization_design.deactivated'
|
|
565
631
|
| 'issuing_personalization_design.rejected'
|
|
566
632
|
| 'issuing_personalization_design.updated'
|
|
633
|
+
| 'issuing_settlement.created'
|
|
634
|
+
| 'issuing_settlement.updated'
|
|
567
635
|
| 'issuing_token.created'
|
|
568
636
|
| 'issuing_token.updated'
|
|
569
637
|
| 'issuing_transaction.created'
|
|
@@ -599,15 +667,26 @@ declare module 'stripe' {
|
|
|
599
667
|
| 'price.created'
|
|
600
668
|
| 'price.deleted'
|
|
601
669
|
| 'price.updated'
|
|
670
|
+
| 'privacy.redaction_job.canceled'
|
|
671
|
+
| 'privacy.redaction_job.created'
|
|
672
|
+
| 'privacy.redaction_job.ready'
|
|
673
|
+
| 'privacy.redaction_job.succeeded'
|
|
674
|
+
| 'privacy.redaction_job.validation_error'
|
|
602
675
|
| 'product.created'
|
|
603
676
|
| 'product.deleted'
|
|
604
677
|
| 'product.updated'
|
|
605
678
|
| 'promotion_code.created'
|
|
606
679
|
| 'promotion_code.updated'
|
|
680
|
+
| 'quote.accept_failed'
|
|
607
681
|
| 'quote.accepted'
|
|
682
|
+
| 'quote.accepting'
|
|
608
683
|
| 'quote.canceled'
|
|
609
684
|
| 'quote.created'
|
|
685
|
+
| 'quote.draft'
|
|
610
686
|
| 'quote.finalized'
|
|
687
|
+
| 'quote.reestimate_failed'
|
|
688
|
+
| 'quote.reestimated'
|
|
689
|
+
| 'quote.stale'
|
|
611
690
|
| 'radar.early_fraud_warning.created'
|
|
612
691
|
| 'radar.early_fraud_warning.updated'
|
|
613
692
|
| 'refund.created'
|
|
@@ -636,13 +715,16 @@ declare module 'stripe' {
|
|
|
636
715
|
| 'subscription_schedule.completed'
|
|
637
716
|
| 'subscription_schedule.created'
|
|
638
717
|
| 'subscription_schedule.expiring'
|
|
718
|
+
| 'subscription_schedule.price_migration_failed'
|
|
639
719
|
| 'subscription_schedule.released'
|
|
640
720
|
| 'subscription_schedule.updated'
|
|
721
|
+
| 'tax.form.updated'
|
|
641
722
|
| 'tax.settings.updated'
|
|
642
723
|
| 'tax_rate.created'
|
|
643
724
|
| 'tax_rate.updated'
|
|
644
725
|
| 'terminal.reader.action_failed'
|
|
645
726
|
| 'terminal.reader.action_succeeded'
|
|
727
|
+
| 'terminal.reader.action_updated'
|
|
646
728
|
| 'test_helpers.test_clock.advancing'
|
|
647
729
|
| 'test_helpers.test_clock.created'
|
|
648
730
|
| 'test_helpers.test_clock.deleted'
|
package/types/index.d.ts
CHANGED
|
@@ -11,12 +11,14 @@
|
|
|
11
11
|
///<reference path='./crypto/crypto.d.ts' />
|
|
12
12
|
// Imports: The beginning of the section generated from our OpenAPI spec
|
|
13
13
|
///<reference path='./AccountLinksResource.d.ts' />
|
|
14
|
+
///<reference path='./AccountNoticesResource.d.ts' />
|
|
14
15
|
///<reference path='./AccountSessionsResource.d.ts' />
|
|
15
16
|
///<reference path='./AccountsResource.d.ts' />
|
|
16
17
|
///<reference path='./ApplePayDomainsResource.d.ts' />
|
|
17
18
|
///<reference path='./ApplicationFeesResource.d.ts' />
|
|
18
19
|
///<reference path='./Apps/SecretsResource.d.ts' />
|
|
19
20
|
///<reference path='./BalanceResource.d.ts' />
|
|
21
|
+
///<reference path='./BalanceSettingsResource.d.ts' />
|
|
20
22
|
///<reference path='./BalanceTransactionsResource.d.ts' />
|
|
21
23
|
///<reference path='./Billing/AlertsResource.d.ts' />
|
|
22
24
|
///<reference path='./Billing/CreditBalanceSummaryResource.d.ts' />
|
|
@@ -27,6 +29,9 @@
|
|
|
27
29
|
///<reference path='./Billing/MetersResource.d.ts' />
|
|
28
30
|
///<reference path='./BillingPortal/ConfigurationsResource.d.ts' />
|
|
29
31
|
///<reference path='./BillingPortal/SessionsResource.d.ts' />
|
|
32
|
+
///<reference path='./Capital/FinancingOffersResource.d.ts' />
|
|
33
|
+
///<reference path='./Capital/FinancingSummaryResource.d.ts' />
|
|
34
|
+
///<reference path='./Capital/FinancingTransactionsResource.d.ts' />
|
|
30
35
|
///<reference path='./ChargesResource.d.ts' />
|
|
31
36
|
///<reference path='./Checkout/SessionsResource.d.ts' />
|
|
32
37
|
///<reference path='./Climate/OrdersResource.d.ts' />
|
|
@@ -44,35 +49,47 @@
|
|
|
44
49
|
///<reference path='./EphemeralKeysResource.d.ts' />
|
|
45
50
|
///<reference path='./EventsResource.d.ts' />
|
|
46
51
|
///<reference path='./ExchangeRatesResource.d.ts' />
|
|
52
|
+
///<reference path='./ExternalAccountsResource.d.ts' />
|
|
47
53
|
///<reference path='./FileLinksResource.d.ts' />
|
|
48
54
|
///<reference path='./FilesResource.d.ts' />
|
|
49
55
|
///<reference path='./FinancialConnections/AccountsResource.d.ts' />
|
|
56
|
+
///<reference path='./FinancialConnections/InstitutionsResource.d.ts' />
|
|
50
57
|
///<reference path='./FinancialConnections/SessionsResource.d.ts' />
|
|
51
58
|
///<reference path='./FinancialConnections/TransactionsResource.d.ts' />
|
|
52
59
|
///<reference path='./Forwarding/RequestsResource.d.ts' />
|
|
60
|
+
///<reference path='./FxQuotesResource.d.ts' />
|
|
61
|
+
///<reference path='./GiftCards/CardsResource.d.ts' />
|
|
62
|
+
///<reference path='./GiftCards/TransactionsResource.d.ts' />
|
|
53
63
|
///<reference path='./Identity/VerificationReportsResource.d.ts' />
|
|
54
64
|
///<reference path='./Identity/VerificationSessionsResource.d.ts' />
|
|
55
65
|
///<reference path='./InvoiceItemsResource.d.ts' />
|
|
56
|
-
///<reference path='./InvoicePaymentsResource.d.ts' />
|
|
57
66
|
///<reference path='./InvoiceRenderingTemplatesResource.d.ts' />
|
|
58
67
|
///<reference path='./InvoicesResource.d.ts' />
|
|
59
68
|
///<reference path='./Issuing/AuthorizationsResource.d.ts' />
|
|
60
69
|
///<reference path='./Issuing/CardholdersResource.d.ts' />
|
|
61
70
|
///<reference path='./Issuing/CardsResource.d.ts' />
|
|
71
|
+
///<reference path='./Issuing/CreditUnderwritingRecordsResource.d.ts' />
|
|
72
|
+
///<reference path='./Issuing/DisputeSettlementDetailsResource.d.ts' />
|
|
62
73
|
///<reference path='./Issuing/DisputesResource.d.ts' />
|
|
74
|
+
///<reference path='./Issuing/FraudLiabilityDebitsResource.d.ts' />
|
|
63
75
|
///<reference path='./Issuing/PersonalizationDesignsResource.d.ts' />
|
|
64
76
|
///<reference path='./Issuing/PhysicalBundlesResource.d.ts' />
|
|
65
77
|
///<reference path='./Issuing/TokensResource.d.ts' />
|
|
66
78
|
///<reference path='./Issuing/TransactionsResource.d.ts' />
|
|
67
79
|
///<reference path='./MandatesResource.d.ts' />
|
|
80
|
+
///<reference path='./MarginsResource.d.ts' />
|
|
81
|
+
///<reference path='./OrdersResource.d.ts' />
|
|
82
|
+
///<reference path='./PaymentAttemptRecordsResource.d.ts' />
|
|
68
83
|
///<reference path='./PaymentIntentsResource.d.ts' />
|
|
69
84
|
///<reference path='./PaymentLinksResource.d.ts' />
|
|
70
85
|
///<reference path='./PaymentMethodConfigurationsResource.d.ts' />
|
|
71
86
|
///<reference path='./PaymentMethodDomainsResource.d.ts' />
|
|
72
87
|
///<reference path='./PaymentMethodsResource.d.ts' />
|
|
88
|
+
///<reference path='./PaymentRecordsResource.d.ts' />
|
|
73
89
|
///<reference path='./PayoutsResource.d.ts' />
|
|
74
90
|
///<reference path='./PlansResource.d.ts' />
|
|
75
91
|
///<reference path='./PricesResource.d.ts' />
|
|
92
|
+
///<reference path='./Privacy/RedactionJobsResource.d.ts' />
|
|
76
93
|
///<reference path='./ProductsResource.d.ts' />
|
|
77
94
|
///<reference path='./PromotionCodesResource.d.ts' />
|
|
78
95
|
///<reference path='./QuotesResource.d.ts' />
|
|
@@ -91,7 +108,9 @@
|
|
|
91
108
|
///<reference path='./SubscriptionItemsResource.d.ts' />
|
|
92
109
|
///<reference path='./SubscriptionSchedulesResource.d.ts' />
|
|
93
110
|
///<reference path='./SubscriptionsResource.d.ts' />
|
|
111
|
+
///<reference path='./Tax/AssociationsResource.d.ts' />
|
|
94
112
|
///<reference path='./Tax/CalculationsResource.d.ts' />
|
|
113
|
+
///<reference path='./Tax/FormsResource.d.ts' />
|
|
95
114
|
///<reference path='./Tax/RegistrationsResource.d.ts' />
|
|
96
115
|
///<reference path='./Tax/SettingsResource.d.ts' />
|
|
97
116
|
///<reference path='./Tax/TransactionsResource.d.ts' />
|
|
@@ -101,6 +120,7 @@
|
|
|
101
120
|
///<reference path='./Terminal/ConfigurationsResource.d.ts' />
|
|
102
121
|
///<reference path='./Terminal/ConnectionTokensResource.d.ts' />
|
|
103
122
|
///<reference path='./Terminal/LocationsResource.d.ts' />
|
|
123
|
+
///<reference path='./Terminal/ReaderCollectedDataResource.d.ts' />
|
|
104
124
|
///<reference path='./Terminal/ReadersResource.d.ts' />
|
|
105
125
|
///<reference path='./TestHelpers/ConfirmationTokensResource.d.ts' />
|
|
106
126
|
///<reference path='./TestHelpers/CustomersResource.d.ts' />
|
|
@@ -133,10 +153,31 @@
|
|
|
133
153
|
///<reference path='./V2/Billing/MeterEventSessionResource.d.ts' />
|
|
134
154
|
///<reference path='./V2/Billing/MeterEventStreamResource.d.ts' />
|
|
135
155
|
///<reference path='./V2/Billing/MeterEventsResource.d.ts' />
|
|
156
|
+
///<reference path='./V2/Core/AccountLinksResource.d.ts' />
|
|
157
|
+
///<reference path='./V2/Core/Accounts/PersonsResource.d.ts' />
|
|
158
|
+
///<reference path='./V2/Core/AccountsResource.d.ts' />
|
|
136
159
|
///<reference path='./V2/Core/EventDestinationsResource.d.ts' />
|
|
137
160
|
///<reference path='./V2/Core/EventsResource.d.ts' />
|
|
161
|
+
///<reference path='./V2/Core/Vault/GbBankAccountsResource.d.ts' />
|
|
162
|
+
///<reference path='./V2/Core/Vault/UsBankAccountsResource.d.ts' />
|
|
163
|
+
///<reference path='./V2/MoneyManagement/AdjustmentsResource.d.ts' />
|
|
164
|
+
///<reference path='./V2/MoneyManagement/FinancialAccountsResource.d.ts' />
|
|
165
|
+
///<reference path='./V2/MoneyManagement/FinancialAddressesResource.d.ts' />
|
|
166
|
+
///<reference path='./V2/MoneyManagement/InboundTransfersResource.d.ts' />
|
|
167
|
+
///<reference path='./V2/MoneyManagement/OutboundPaymentQuotesResource.d.ts' />
|
|
168
|
+
///<reference path='./V2/MoneyManagement/OutboundPaymentsResource.d.ts' />
|
|
169
|
+
///<reference path='./V2/MoneyManagement/OutboundSetupIntentsResource.d.ts' />
|
|
170
|
+
///<reference path='./V2/MoneyManagement/OutboundTransfersResource.d.ts' />
|
|
171
|
+
///<reference path='./V2/MoneyManagement/PayoutMethodsBankAccountSpecResource.d.ts' />
|
|
172
|
+
///<reference path='./V2/MoneyManagement/PayoutMethodsResource.d.ts' />
|
|
173
|
+
///<reference path='./V2/MoneyManagement/ReceivedCreditsResource.d.ts' />
|
|
174
|
+
///<reference path='./V2/MoneyManagement/ReceivedDebitsResource.d.ts' />
|
|
175
|
+
///<reference path='./V2/MoneyManagement/TransactionEntriesResource.d.ts' />
|
|
176
|
+
///<reference path='./V2/MoneyManagement/TransactionsResource.d.ts' />
|
|
177
|
+
///<reference path='./V2/TestHelpers/FinancialAddressesResource.d.ts' />
|
|
138
178
|
///<reference path='./WebhookEndpointsResource.d.ts' />
|
|
139
179
|
///<reference path='./AccountLinks.d.ts' />
|
|
180
|
+
///<reference path='./AccountNotices.d.ts' />
|
|
140
181
|
///<reference path='./AccountSessions.d.ts' />
|
|
141
182
|
///<reference path='./Accounts.d.ts' />
|
|
142
183
|
///<reference path='./ApplePayDomains.d.ts' />
|
|
@@ -144,6 +185,7 @@
|
|
|
144
185
|
///<reference path='./Applications.d.ts' />
|
|
145
186
|
///<reference path='./Apps/Secrets.d.ts' />
|
|
146
187
|
///<reference path='./Balance.d.ts' />
|
|
188
|
+
///<reference path='./BalanceSettings.d.ts' />
|
|
147
189
|
///<reference path='./BalanceTransactionSources.d.ts' />
|
|
148
190
|
///<reference path='./BalanceTransactions.d.ts' />
|
|
149
191
|
///<reference path='./BankAccounts.d.ts' />
|
|
@@ -152,6 +194,7 @@
|
|
|
152
194
|
///<reference path='./Billing/CreditBalanceSummary.d.ts' />
|
|
153
195
|
///<reference path='./Billing/CreditBalanceTransactions.d.ts' />
|
|
154
196
|
///<reference path='./Billing/CreditGrants.d.ts' />
|
|
197
|
+
///<reference path='./Billing/MeterErrorReports.d.ts' />
|
|
155
198
|
///<reference path='./Billing/MeterEventAdjustments.d.ts' />
|
|
156
199
|
///<reference path='./Billing/MeterEventSummaries.d.ts' />
|
|
157
200
|
///<reference path='./Billing/MeterEvents.d.ts' />
|
|
@@ -159,6 +202,9 @@
|
|
|
159
202
|
///<reference path='./BillingPortal/Configurations.d.ts' />
|
|
160
203
|
///<reference path='./BillingPortal/Sessions.d.ts' />
|
|
161
204
|
///<reference path='./Capabilities.d.ts' />
|
|
205
|
+
///<reference path='./Capital/FinancingOffers.d.ts' />
|
|
206
|
+
///<reference path='./Capital/FinancingSummary.d.ts' />
|
|
207
|
+
///<reference path='./Capital/FinancingTransactions.d.ts' />
|
|
162
208
|
///<reference path='./Cards.d.ts' />
|
|
163
209
|
///<reference path='./CashBalances.d.ts' />
|
|
164
210
|
///<reference path='./Charges.d.ts' />
|
|
@@ -189,13 +235,18 @@
|
|
|
189
235
|
///<reference path='./FeeRefunds.d.ts' />
|
|
190
236
|
///<reference path='./FileLinks.d.ts' />
|
|
191
237
|
///<reference path='./Files.d.ts' />
|
|
238
|
+
///<reference path='./FinancialConnections/AccountInferredBalances.d.ts' />
|
|
192
239
|
///<reference path='./FinancialConnections/AccountOwners.d.ts' />
|
|
193
240
|
///<reference path='./FinancialConnections/AccountOwnerships.d.ts' />
|
|
194
241
|
///<reference path='./FinancialConnections/Accounts.d.ts' />
|
|
242
|
+
///<reference path='./FinancialConnections/Institutions.d.ts' />
|
|
195
243
|
///<reference path='./FinancialConnections/Sessions.d.ts' />
|
|
196
244
|
///<reference path='./FinancialConnections/Transactions.d.ts' />
|
|
197
245
|
///<reference path='./Forwarding/Requests.d.ts' />
|
|
198
246
|
///<reference path='./FundingInstructions.d.ts' />
|
|
247
|
+
///<reference path='./FxQuotes.d.ts' />
|
|
248
|
+
///<reference path='./GiftCards/Cards.d.ts' />
|
|
249
|
+
///<reference path='./GiftCards/Transactions.d.ts' />
|
|
199
250
|
///<reference path='./Identity/VerificationReports.d.ts' />
|
|
200
251
|
///<reference path='./Identity/VerificationSessions.d.ts' />
|
|
201
252
|
///<reference path='./InvoiceItems.d.ts' />
|
|
@@ -206,26 +257,40 @@
|
|
|
206
257
|
///<reference path='./Issuing/Authorizations.d.ts' />
|
|
207
258
|
///<reference path='./Issuing/Cardholders.d.ts' />
|
|
208
259
|
///<reference path='./Issuing/Cards.d.ts' />
|
|
260
|
+
///<reference path='./Issuing/CreditUnderwritingRecords.d.ts' />
|
|
261
|
+
///<reference path='./Issuing/DisputeSettlementDetails.d.ts' />
|
|
209
262
|
///<reference path='./Issuing/Disputes.d.ts' />
|
|
263
|
+
///<reference path='./Issuing/FraudLiabilityDebits.d.ts' />
|
|
210
264
|
///<reference path='./Issuing/PersonalizationDesigns.d.ts' />
|
|
211
265
|
///<reference path='./Issuing/PhysicalBundles.d.ts' />
|
|
266
|
+
///<reference path='./Issuing/Settlements.d.ts' />
|
|
212
267
|
///<reference path='./Issuing/Tokens.d.ts' />
|
|
213
268
|
///<reference path='./Issuing/Transactions.d.ts' />
|
|
214
269
|
///<reference path='./LineItems.d.ts' />
|
|
215
270
|
///<reference path='./LoginLinks.d.ts' />
|
|
216
271
|
///<reference path='./Mandates.d.ts' />
|
|
272
|
+
///<reference path='./Margins.d.ts' />
|
|
273
|
+
///<reference path='./Orders.d.ts' />
|
|
274
|
+
///<reference path='./PaymentAttemptRecords.d.ts' />
|
|
275
|
+
///<reference path='./PaymentIntentAmountDetailsLineItems.d.ts' />
|
|
217
276
|
///<reference path='./PaymentIntents.d.ts' />
|
|
218
277
|
///<reference path='./PaymentLinks.d.ts' />
|
|
219
278
|
///<reference path='./PaymentMethodConfigurations.d.ts' />
|
|
220
279
|
///<reference path='./PaymentMethodDomains.d.ts' />
|
|
221
280
|
///<reference path='./PaymentMethods.d.ts' />
|
|
281
|
+
///<reference path='./PaymentRecords.d.ts' />
|
|
222
282
|
///<reference path='./Payouts.d.ts' />
|
|
223
283
|
///<reference path='./Persons.d.ts' />
|
|
224
284
|
///<reference path='./Plans.d.ts' />
|
|
225
285
|
///<reference path='./Prices.d.ts' />
|
|
286
|
+
///<reference path='./Privacy/RedactionJobValidationErrors.d.ts' />
|
|
287
|
+
///<reference path='./Privacy/RedactionJobs.d.ts' />
|
|
226
288
|
///<reference path='./ProductFeatures.d.ts' />
|
|
227
289
|
///<reference path='./Products.d.ts' />
|
|
228
290
|
///<reference path='./PromotionCodes.d.ts' />
|
|
291
|
+
///<reference path='./QuoteLines.d.ts' />
|
|
292
|
+
///<reference path='./QuotePreviewInvoices.d.ts' />
|
|
293
|
+
///<reference path='./QuotePreviewSubscriptionSchedules.d.ts' />
|
|
229
294
|
///<reference path='./Quotes.d.ts' />
|
|
230
295
|
///<reference path='./Radar/EarlyFraudWarnings.d.ts' />
|
|
231
296
|
///<reference path='./Radar/ValueListItems.d.ts' />
|
|
@@ -245,8 +310,10 @@
|
|
|
245
310
|
///<reference path='./SubscriptionItems.d.ts' />
|
|
246
311
|
///<reference path='./SubscriptionSchedules.d.ts' />
|
|
247
312
|
///<reference path='./Subscriptions.d.ts' />
|
|
313
|
+
///<reference path='./Tax/Associations.d.ts' />
|
|
248
314
|
///<reference path='./Tax/CalculationLineItems.d.ts' />
|
|
249
315
|
///<reference path='./Tax/Calculations.d.ts' />
|
|
316
|
+
///<reference path='./Tax/Forms.d.ts' />
|
|
250
317
|
///<reference path='./Tax/Registrations.d.ts' />
|
|
251
318
|
///<reference path='./Tax/Settings.d.ts' />
|
|
252
319
|
///<reference path='./Tax/TransactionLineItems.d.ts' />
|
|
@@ -258,6 +325,7 @@
|
|
|
258
325
|
///<reference path='./Terminal/Configurations.d.ts' />
|
|
259
326
|
///<reference path='./Terminal/ConnectionTokens.d.ts' />
|
|
260
327
|
///<reference path='./Terminal/Locations.d.ts' />
|
|
328
|
+
///<reference path='./Terminal/ReaderCollectedData.d.ts' />
|
|
261
329
|
///<reference path='./Terminal/Readers.d.ts' />
|
|
262
330
|
///<reference path='./TestHelpers/TestClocks.d.ts' />
|
|
263
331
|
///<reference path='./Tokens.d.ts' />
|
|
@@ -278,8 +346,29 @@
|
|
|
278
346
|
///<reference path='./V2/Billing/MeterEventAdjustments.d.ts' />
|
|
279
347
|
///<reference path='./V2/Billing/MeterEventSessions.d.ts' />
|
|
280
348
|
///<reference path='./V2/Billing/MeterEvents.d.ts' />
|
|
349
|
+
///<reference path='./V2/Core/AccountLinks.d.ts' />
|
|
350
|
+
///<reference path='./V2/Core/Accounts.d.ts' />
|
|
351
|
+
///<reference path='./V2/Core/Persons.d.ts' />
|
|
352
|
+
///<reference path='./V2/Core/Vault/GbBankAccounts.d.ts' />
|
|
353
|
+
///<reference path='./V2/Core/Vault/UsBankAccounts.d.ts' />
|
|
281
354
|
///<reference path='./V2/EventDestinations.d.ts' />
|
|
282
355
|
///<reference path='./V2/Events.d.ts' />
|
|
356
|
+
///<reference path='./V2/FinancialAddressCreditSimulations.d.ts' />
|
|
357
|
+
///<reference path='./V2/FinancialAddressGeneratedMicrodeposits.d.ts' />
|
|
358
|
+
///<reference path='./V2/MoneyManagement/Adjustments.d.ts' />
|
|
359
|
+
///<reference path='./V2/MoneyManagement/FinancialAccounts.d.ts' />
|
|
360
|
+
///<reference path='./V2/MoneyManagement/FinancialAddresses.d.ts' />
|
|
361
|
+
///<reference path='./V2/MoneyManagement/InboundTransfers.d.ts' />
|
|
362
|
+
///<reference path='./V2/MoneyManagement/OutboundPaymentQuotes.d.ts' />
|
|
363
|
+
///<reference path='./V2/MoneyManagement/OutboundPayments.d.ts' />
|
|
364
|
+
///<reference path='./V2/MoneyManagement/OutboundSetupIntents.d.ts' />
|
|
365
|
+
///<reference path='./V2/MoneyManagement/OutboundTransfers.d.ts' />
|
|
366
|
+
///<reference path='./V2/MoneyManagement/PayoutMethods.d.ts' />
|
|
367
|
+
///<reference path='./V2/MoneyManagement/PayoutMethodsBankAccountSpecs.d.ts' />
|
|
368
|
+
///<reference path='./V2/MoneyManagement/ReceivedCredits.d.ts' />
|
|
369
|
+
///<reference path='./V2/MoneyManagement/ReceivedDebits.d.ts' />
|
|
370
|
+
///<reference path='./V2/MoneyManagement/TransactionEntries.d.ts' />
|
|
371
|
+
///<reference path='./V2/MoneyManagement/Transactions.d.ts' />
|
|
283
372
|
///<reference path='./WebhookEndpoints.d.ts' />
|
|
284
373
|
// Imports: The end of the section generated from our OpenAPI spec
|
|
285
374
|
|
|
@@ -302,11 +391,13 @@ declare module 'stripe' {
|
|
|
302
391
|
|
|
303
392
|
// Fields: The beginning of the section generated from our OpenAPI spec
|
|
304
393
|
accountLinks: Stripe.AccountLinksResource;
|
|
394
|
+
accountNotices: Stripe.AccountNoticesResource;
|
|
305
395
|
accountSessions: Stripe.AccountSessionsResource;
|
|
306
396
|
accounts: Stripe.AccountsResource;
|
|
307
397
|
applePayDomains: Stripe.ApplePayDomainsResource;
|
|
308
398
|
applicationFees: Stripe.ApplicationFeesResource;
|
|
309
399
|
balance: Stripe.BalanceResource;
|
|
400
|
+
balanceSettings: Stripe.BalanceSettingsResource;
|
|
310
401
|
balanceTransactions: Stripe.BalanceTransactionsResource;
|
|
311
402
|
charges: Stripe.ChargesResource;
|
|
312
403
|
confirmationTokens: Stripe.ConfirmationTokensResource;
|
|
@@ -319,18 +410,23 @@ declare module 'stripe' {
|
|
|
319
410
|
ephemeralKeys: Stripe.EphemeralKeysResource;
|
|
320
411
|
events: Stripe.EventsResource;
|
|
321
412
|
exchangeRates: Stripe.ExchangeRatesResource;
|
|
413
|
+
externalAccounts: Stripe.ExternalAccountsResource;
|
|
322
414
|
fileLinks: Stripe.FileLinksResource;
|
|
323
415
|
files: Stripe.FilesResource;
|
|
416
|
+
fxQuotes: Stripe.FxQuotesResource;
|
|
324
417
|
invoiceItems: Stripe.InvoiceItemsResource;
|
|
325
|
-
invoicePayments: Stripe.InvoicePaymentsResource;
|
|
326
418
|
invoiceRenderingTemplates: Stripe.InvoiceRenderingTemplatesResource;
|
|
327
419
|
invoices: Stripe.InvoicesResource;
|
|
328
420
|
mandates: Stripe.MandatesResource;
|
|
421
|
+
margins: Stripe.MarginsResource;
|
|
422
|
+
orders: Stripe.OrdersResource;
|
|
423
|
+
paymentAttemptRecords: Stripe.PaymentAttemptRecordsResource;
|
|
329
424
|
paymentIntents: Stripe.PaymentIntentsResource;
|
|
330
425
|
paymentLinks: Stripe.PaymentLinksResource;
|
|
331
426
|
paymentMethodConfigurations: Stripe.PaymentMethodConfigurationsResource;
|
|
332
427
|
paymentMethodDomains: Stripe.PaymentMethodDomainsResource;
|
|
333
428
|
paymentMethods: Stripe.PaymentMethodsResource;
|
|
429
|
+
paymentRecords: Stripe.PaymentRecordsResource;
|
|
334
430
|
payouts: Stripe.PayoutsResource;
|
|
335
431
|
plans: Stripe.PlansResource;
|
|
336
432
|
prices: Stripe.PricesResource;
|
|
@@ -369,6 +465,11 @@ declare module 'stripe' {
|
|
|
369
465
|
configurations: Stripe.BillingPortal.ConfigurationsResource;
|
|
370
466
|
sessions: Stripe.BillingPortal.SessionsResource;
|
|
371
467
|
};
|
|
468
|
+
capital: {
|
|
469
|
+
financingOffers: Stripe.Capital.FinancingOffersResource;
|
|
470
|
+
financingSummary: Stripe.Capital.FinancingSummaryResource;
|
|
471
|
+
financingTransactions: Stripe.Capital.FinancingTransactionsResource;
|
|
472
|
+
};
|
|
372
473
|
checkout: {
|
|
373
474
|
sessions: Stripe.Checkout.SessionsResource;
|
|
374
475
|
};
|
|
@@ -383,12 +484,17 @@ declare module 'stripe' {
|
|
|
383
484
|
};
|
|
384
485
|
financialConnections: {
|
|
385
486
|
accounts: Stripe.FinancialConnections.AccountsResource;
|
|
487
|
+
institutions: Stripe.FinancialConnections.InstitutionsResource;
|
|
386
488
|
sessions: Stripe.FinancialConnections.SessionsResource;
|
|
387
489
|
transactions: Stripe.FinancialConnections.TransactionsResource;
|
|
388
490
|
};
|
|
389
491
|
forwarding: {
|
|
390
492
|
requests: Stripe.Forwarding.RequestsResource;
|
|
391
493
|
};
|
|
494
|
+
giftCards: {
|
|
495
|
+
cards: Stripe.GiftCards.CardsResource;
|
|
496
|
+
transactions: Stripe.GiftCards.TransactionsResource;
|
|
497
|
+
};
|
|
392
498
|
identity: {
|
|
393
499
|
verificationReports: Stripe.Identity.VerificationReportsResource;
|
|
394
500
|
verificationSessions: Stripe.Identity.VerificationSessionsResource;
|
|
@@ -397,12 +503,18 @@ declare module 'stripe' {
|
|
|
397
503
|
authorizations: Stripe.Issuing.AuthorizationsResource;
|
|
398
504
|
cards: Stripe.Issuing.CardsResource;
|
|
399
505
|
cardholders: Stripe.Issuing.CardholdersResource;
|
|
506
|
+
creditUnderwritingRecords: Stripe.Issuing.CreditUnderwritingRecordsResource;
|
|
400
507
|
disputes: Stripe.Issuing.DisputesResource;
|
|
508
|
+
disputeSettlementDetails: Stripe.Issuing.DisputeSettlementDetailsResource;
|
|
509
|
+
fraudLiabilityDebits: Stripe.Issuing.FraudLiabilityDebitsResource;
|
|
401
510
|
personalizationDesigns: Stripe.Issuing.PersonalizationDesignsResource;
|
|
402
511
|
physicalBundles: Stripe.Issuing.PhysicalBundlesResource;
|
|
403
512
|
tokens: Stripe.Issuing.TokensResource;
|
|
404
513
|
transactions: Stripe.Issuing.TransactionsResource;
|
|
405
514
|
};
|
|
515
|
+
privacy: {
|
|
516
|
+
redactionJobs: Stripe.Privacy.RedactionJobsResource;
|
|
517
|
+
};
|
|
406
518
|
radar: {
|
|
407
519
|
earlyFraudWarnings: Stripe.Radar.EarlyFraudWarningsResource;
|
|
408
520
|
valueLists: Stripe.Radar.ValueListsResource;
|
|
@@ -416,7 +528,9 @@ declare module 'stripe' {
|
|
|
416
528
|
scheduledQueryRuns: Stripe.Sigma.ScheduledQueryRunsResource;
|
|
417
529
|
};
|
|
418
530
|
tax: {
|
|
531
|
+
associations: Stripe.Tax.AssociationsResource;
|
|
419
532
|
calculations: Stripe.Tax.CalculationsResource;
|
|
533
|
+
forms: Stripe.Tax.FormsResource;
|
|
420
534
|
registrations: Stripe.Tax.RegistrationsResource;
|
|
421
535
|
settings: Stripe.Tax.SettingsResource;
|
|
422
536
|
transactions: Stripe.Tax.TransactionsResource;
|
|
@@ -426,6 +540,7 @@ declare module 'stripe' {
|
|
|
426
540
|
connectionTokens: Stripe.Terminal.ConnectionTokensResource;
|
|
427
541
|
locations: Stripe.Terminal.LocationsResource;
|
|
428
542
|
readers: Stripe.Terminal.ReadersResource;
|
|
543
|
+
readerCollectedData: Stripe.Terminal.ReaderCollectedDataResource;
|
|
429
544
|
};
|
|
430
545
|
testHelpers: {
|
|
431
546
|
confirmationTokens: Stripe.TestHelpers.ConfirmationTokensResource;
|
|
@@ -462,15 +577,40 @@ declare module 'stripe' {
|
|
|
462
577
|
transactionEntries: Stripe.Treasury.TransactionEntriesResource;
|
|
463
578
|
};
|
|
464
579
|
v2: {
|
|
580
|
+
core: {
|
|
581
|
+
accounts: Stripe.V2.Core.AccountsResource;
|
|
582
|
+
accountLinks: Stripe.V2.Core.AccountLinksResource;
|
|
583
|
+
eventDestinations: Stripe.V2.Core.EventDestinationsResource;
|
|
584
|
+
events: Stripe.V2.Core.EventsResource;
|
|
585
|
+
vault: {
|
|
586
|
+
gbBankAccounts: Stripe.V2.Core.Vault.GbBankAccountsResource;
|
|
587
|
+
usBankAccounts: Stripe.V2.Core.Vault.UsBankAccountsResource;
|
|
588
|
+
};
|
|
589
|
+
};
|
|
590
|
+
moneyManagement: {
|
|
591
|
+
adjustments: Stripe.V2.MoneyManagement.AdjustmentsResource;
|
|
592
|
+
financialAccounts: Stripe.V2.MoneyManagement.FinancialAccountsResource;
|
|
593
|
+
financialAddresses: Stripe.V2.MoneyManagement.FinancialAddressesResource;
|
|
594
|
+
inboundTransfers: Stripe.V2.MoneyManagement.InboundTransfersResource;
|
|
595
|
+
outboundPayments: Stripe.V2.MoneyManagement.OutboundPaymentsResource;
|
|
596
|
+
outboundPaymentQuotes: Stripe.V2.MoneyManagement.OutboundPaymentQuotesResource;
|
|
597
|
+
outboundTransfers: Stripe.V2.MoneyManagement.OutboundTransfersResource;
|
|
598
|
+
outboundSetupIntents: Stripe.V2.MoneyManagement.OutboundSetupIntentsResource;
|
|
599
|
+
payoutMethods: Stripe.V2.MoneyManagement.PayoutMethodsResource;
|
|
600
|
+
payoutMethodsBankAccountSpec: Stripe.V2.MoneyManagement.PayoutMethodsBankAccountSpecResource;
|
|
601
|
+
receivedCredits: Stripe.V2.MoneyManagement.ReceivedCreditsResource;
|
|
602
|
+
receivedDebits: Stripe.V2.MoneyManagement.ReceivedDebitsResource;
|
|
603
|
+
transactions: Stripe.V2.MoneyManagement.TransactionsResource;
|
|
604
|
+
transactionEntries: Stripe.V2.MoneyManagement.TransactionEntriesResource;
|
|
605
|
+
};
|
|
465
606
|
billing: {
|
|
466
607
|
meterEventSession: Stripe.V2.Billing.MeterEventSessionResource;
|
|
467
608
|
meterEventAdjustments: Stripe.V2.Billing.MeterEventAdjustmentsResource;
|
|
468
609
|
meterEventStream: Stripe.V2.Billing.MeterEventStreamResource;
|
|
469
610
|
meterEvents: Stripe.V2.Billing.MeterEventsResource;
|
|
470
611
|
};
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
events: Stripe.V2.Core.EventsResource;
|
|
612
|
+
testHelper: {
|
|
613
|
+
financialAddresses: Stripe.V2.TestHelpers.FinancialAddressesResource;
|
|
474
614
|
};
|
|
475
615
|
};
|
|
476
616
|
// Fields: The end of the section generated from our OpenAPI spec
|