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
|
@@ -97,6 +97,21 @@ declare module 'stripe' {
|
|
|
97
97
|
|
|
98
98
|
namespace Reader {
|
|
99
99
|
interface Action {
|
|
100
|
+
/**
|
|
101
|
+
* Represents a reader action to collect customer inputs
|
|
102
|
+
*/
|
|
103
|
+
collect_inputs?: Action.CollectInputs;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Represents a reader action to collect a payment method
|
|
107
|
+
*/
|
|
108
|
+
collect_payment_method?: Action.CollectPaymentMethod;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Represents a reader action to confirm a payment
|
|
112
|
+
*/
|
|
113
|
+
confirm_payment_intent?: Action.ConfirmPaymentIntent;
|
|
114
|
+
|
|
100
115
|
/**
|
|
101
116
|
* Failure code, only set if status is `failed`.
|
|
102
117
|
*/
|
|
@@ -139,7 +154,284 @@ declare module 'stripe' {
|
|
|
139
154
|
}
|
|
140
155
|
|
|
141
156
|
namespace Action {
|
|
157
|
+
interface CollectInputs {
|
|
158
|
+
/**
|
|
159
|
+
* List of inputs to be collected.
|
|
160
|
+
*/
|
|
161
|
+
inputs: Array<CollectInputs.Input>;
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
|
|
165
|
+
*/
|
|
166
|
+
metadata: Stripe.Metadata | null;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
namespace CollectInputs {
|
|
170
|
+
interface Input {
|
|
171
|
+
/**
|
|
172
|
+
* Default text of input being collected.
|
|
173
|
+
*/
|
|
174
|
+
custom_text: Input.CustomText | null;
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* Information about a email being collected using a reader
|
|
178
|
+
*/
|
|
179
|
+
email?: Input.Email;
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Information about a number being collected using a reader
|
|
183
|
+
*/
|
|
184
|
+
numeric?: Input.Numeric;
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* Information about a phone number being collected using a reader
|
|
188
|
+
*/
|
|
189
|
+
phone?: Input.Phone;
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* Indicate that this input is required, disabling the skip button.
|
|
193
|
+
*/
|
|
194
|
+
required: boolean | null;
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* Information about a selection being collected using a reader
|
|
198
|
+
*/
|
|
199
|
+
selection?: Input.Selection;
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* Information about a signature being collected using a reader
|
|
203
|
+
*/
|
|
204
|
+
signature?: Input.Signature;
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* Indicate that this input was skipped by the user.
|
|
208
|
+
*/
|
|
209
|
+
skipped?: boolean;
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* Information about text being collected using a reader
|
|
213
|
+
*/
|
|
214
|
+
text?: Input.Text;
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* List of toggles being collected. Values are present if collection is complete.
|
|
218
|
+
*/
|
|
219
|
+
toggles: Array<Input.Toggle> | null;
|
|
220
|
+
|
|
221
|
+
/**
|
|
222
|
+
* Type of input being collected.
|
|
223
|
+
*/
|
|
224
|
+
type: Input.Type;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
namespace Input {
|
|
228
|
+
interface CustomText {
|
|
229
|
+
/**
|
|
230
|
+
* Customize the default description for this input
|
|
231
|
+
*/
|
|
232
|
+
description: string | null;
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* Customize the default label for this input's skip button
|
|
236
|
+
*/
|
|
237
|
+
skip_button: string | null;
|
|
238
|
+
|
|
239
|
+
/**
|
|
240
|
+
* Customize the default label for this input's submit button
|
|
241
|
+
*/
|
|
242
|
+
submit_button: string | null;
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* Customize the default title for this input
|
|
246
|
+
*/
|
|
247
|
+
title: string | null;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
interface Email {
|
|
251
|
+
/**
|
|
252
|
+
* The collected email address
|
|
253
|
+
*/
|
|
254
|
+
value: string | null;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
interface Numeric {
|
|
258
|
+
/**
|
|
259
|
+
* The collected number
|
|
260
|
+
*/
|
|
261
|
+
value: string | null;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
interface Phone {
|
|
265
|
+
/**
|
|
266
|
+
* The collected phone number
|
|
267
|
+
*/
|
|
268
|
+
value: string | null;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
interface Selection {
|
|
272
|
+
/**
|
|
273
|
+
* List of possible choices to be selected
|
|
274
|
+
*/
|
|
275
|
+
choices: Array<Selection.Choice>;
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* The id of the selected choice
|
|
279
|
+
*/
|
|
280
|
+
id: string | null;
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* The text of the selected choice
|
|
284
|
+
*/
|
|
285
|
+
text: string | null;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
namespace Selection {
|
|
289
|
+
interface Choice {
|
|
290
|
+
/**
|
|
291
|
+
* The id to be selected
|
|
292
|
+
*/
|
|
293
|
+
id: string | null;
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* The button style for the choice
|
|
297
|
+
*/
|
|
298
|
+
style: Choice.Style | null;
|
|
299
|
+
|
|
300
|
+
/**
|
|
301
|
+
* The text to be selected
|
|
302
|
+
*/
|
|
303
|
+
text: string;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
namespace Choice {
|
|
307
|
+
type Style = 'primary' | 'secondary';
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
interface Signature {
|
|
312
|
+
/**
|
|
313
|
+
* The File ID of a collected signature image
|
|
314
|
+
*/
|
|
315
|
+
value: string | null;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
interface Text {
|
|
319
|
+
/**
|
|
320
|
+
* The collected text value
|
|
321
|
+
*/
|
|
322
|
+
value: string | null;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
interface Toggle {
|
|
326
|
+
/**
|
|
327
|
+
* The toggle's default value
|
|
328
|
+
*/
|
|
329
|
+
default_value: Toggle.DefaultValue | null;
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* The toggle's description text
|
|
333
|
+
*/
|
|
334
|
+
description: string | null;
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* The toggle's title text
|
|
338
|
+
*/
|
|
339
|
+
title: string | null;
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* The toggle's collected value
|
|
343
|
+
*/
|
|
344
|
+
value: Toggle.Value | null;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
namespace Toggle {
|
|
348
|
+
type DefaultValue = 'disabled' | 'enabled';
|
|
349
|
+
|
|
350
|
+
type Value = 'disabled' | 'enabled';
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
type Type =
|
|
354
|
+
| 'email'
|
|
355
|
+
| 'numeric'
|
|
356
|
+
| 'phone'
|
|
357
|
+
| 'selection'
|
|
358
|
+
| 'signature'
|
|
359
|
+
| 'text';
|
|
360
|
+
}
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
interface CollectPaymentMethod {
|
|
364
|
+
/**
|
|
365
|
+
* Account the payment intent belongs to.
|
|
366
|
+
*/
|
|
367
|
+
account?: string;
|
|
368
|
+
|
|
369
|
+
/**
|
|
370
|
+
* Represents a per-transaction override of a reader configuration
|
|
371
|
+
*/
|
|
372
|
+
collect_config?: CollectPaymentMethod.CollectConfig;
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* Most recent PaymentIntent processed by the reader.
|
|
376
|
+
*/
|
|
377
|
+
payment_intent: string | Stripe.PaymentIntent;
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* PaymentMethod objects represent your customer's payment instruments.
|
|
381
|
+
* You can use them with [PaymentIntents](https://stripe.com/docs/payments/payment-intents) to collect payments or save them to
|
|
382
|
+
* Customer objects to store instrument details for future payments.
|
|
383
|
+
*
|
|
384
|
+
* Related guides: [Payment Methods](https://stripe.com/docs/payments/payment-methods) and [More Payment Scenarios](https://stripe.com/docs/payments/more-payment-scenarios).
|
|
385
|
+
*/
|
|
386
|
+
payment_method?: Stripe.PaymentMethod;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
namespace CollectPaymentMethod {
|
|
390
|
+
interface CollectConfig {
|
|
391
|
+
/**
|
|
392
|
+
* Enable customer initiated cancellation when processing this payment.
|
|
393
|
+
*/
|
|
394
|
+
enable_customer_cancellation?: boolean;
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* Override showing a tipping selection screen on this transaction.
|
|
398
|
+
*/
|
|
399
|
+
skip_tipping?: boolean;
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* Represents a per-transaction tipping configuration
|
|
403
|
+
*/
|
|
404
|
+
tipping?: CollectConfig.Tipping;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
namespace CollectConfig {
|
|
408
|
+
interface Tipping {
|
|
409
|
+
/**
|
|
410
|
+
* Amount used to calculate tip suggestions on tipping selection screen for this transaction. Must be a positive integer in the smallest currency unit (e.g., 100 cents to represent $1.00 or 100 to represent ¥100, a zero-decimal currency).
|
|
411
|
+
*/
|
|
412
|
+
amount_eligible?: number;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
interface ConfirmPaymentIntent {
|
|
418
|
+
/**
|
|
419
|
+
* Account the payment intent belongs to.
|
|
420
|
+
*/
|
|
421
|
+
account?: string;
|
|
422
|
+
|
|
423
|
+
/**
|
|
424
|
+
* Most recent PaymentIntent processed by the reader.
|
|
425
|
+
*/
|
|
426
|
+
payment_intent: string | Stripe.PaymentIntent;
|
|
427
|
+
}
|
|
428
|
+
|
|
142
429
|
interface ProcessPaymentIntent {
|
|
430
|
+
/**
|
|
431
|
+
* Account the payment intent belongs to.
|
|
432
|
+
*/
|
|
433
|
+
account?: string;
|
|
434
|
+
|
|
143
435
|
/**
|
|
144
436
|
* Most recent PaymentIntent processed by the reader.
|
|
145
437
|
*/
|
|
@@ -206,6 +498,11 @@ declare module 'stripe' {
|
|
|
206
498
|
}
|
|
207
499
|
|
|
208
500
|
interface RefundPayment {
|
|
501
|
+
/**
|
|
502
|
+
* Account the payment intent belongs to.
|
|
503
|
+
*/
|
|
504
|
+
account?: string;
|
|
505
|
+
|
|
209
506
|
/**
|
|
210
507
|
* The amount being refunded.
|
|
211
508
|
*/
|
|
@@ -321,6 +618,9 @@ declare module 'stripe' {
|
|
|
321
618
|
type Status = 'failed' | 'in_progress' | 'succeeded';
|
|
322
619
|
|
|
323
620
|
type Type =
|
|
621
|
+
| 'collect_inputs'
|
|
622
|
+
| 'collect_payment_method'
|
|
623
|
+
| 'confirm_payment_intent'
|
|
324
624
|
| 'process_payment_intent'
|
|
325
625
|
| 'process_setup_intent'
|
|
326
626
|
| 'refund_payment'
|
|
@@ -104,6 +104,199 @@ declare module 'stripe' {
|
|
|
104
104
|
expand?: Array<string>;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
+
interface ReaderCollectInputsParams {
|
|
108
|
+
/**
|
|
109
|
+
* List of inputs to be collected using the Reader
|
|
110
|
+
*/
|
|
111
|
+
inputs: Array<ReaderCollectInputsParams.Input>;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Specifies which fields in the response should be expanded.
|
|
115
|
+
*/
|
|
116
|
+
expand?: Array<string>;
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
|
120
|
+
*/
|
|
121
|
+
metadata?: Stripe.MetadataParam;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
namespace ReaderCollectInputsParams {
|
|
125
|
+
interface Input {
|
|
126
|
+
/**
|
|
127
|
+
* Customize the text which will be displayed while collecting this input
|
|
128
|
+
*/
|
|
129
|
+
custom_text: Input.CustomText;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Indicate that this input is required, disabling the skip button
|
|
133
|
+
*/
|
|
134
|
+
required?: boolean;
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* Options for the `selection` input
|
|
138
|
+
*/
|
|
139
|
+
selection?: Input.Selection;
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* List of toggles to be displayed and customization for the toggles
|
|
143
|
+
*/
|
|
144
|
+
toggles?: Array<Input.Toggle>;
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* The type of input to collect
|
|
148
|
+
*/
|
|
149
|
+
type: Input.Type;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
namespace Input {
|
|
153
|
+
interface CustomText {
|
|
154
|
+
/**
|
|
155
|
+
* The description which will be displayed when collecting this input
|
|
156
|
+
*/
|
|
157
|
+
description?: string;
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* The skip button text
|
|
161
|
+
*/
|
|
162
|
+
skip_button?: string;
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* The submit button text
|
|
166
|
+
*/
|
|
167
|
+
submit_button?: string;
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* The title which will be displayed when collecting this input
|
|
171
|
+
*/
|
|
172
|
+
title: string;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
interface Selection {
|
|
176
|
+
/**
|
|
177
|
+
* List of choices for the `selection` input
|
|
178
|
+
*/
|
|
179
|
+
choices: Array<Selection.Choice>;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
namespace Selection {
|
|
183
|
+
interface Choice {
|
|
184
|
+
/**
|
|
185
|
+
* The unique identifier for this choice
|
|
186
|
+
*/
|
|
187
|
+
id: string;
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* The style of the button which will be shown for this choice
|
|
191
|
+
*/
|
|
192
|
+
style?: Choice.Style;
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* The text which will be shown on the button for this choice
|
|
196
|
+
*/
|
|
197
|
+
text: string;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
namespace Choice {
|
|
201
|
+
type Style = 'primary' | 'secondary';
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
interface Toggle {
|
|
206
|
+
/**
|
|
207
|
+
* The default value of the toggle
|
|
208
|
+
*/
|
|
209
|
+
default_value?: Toggle.DefaultValue;
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* The description which will be displayed for the toggle
|
|
213
|
+
*/
|
|
214
|
+
description?: string;
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* The title which will be displayed for the toggle
|
|
218
|
+
*/
|
|
219
|
+
title?: string;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
namespace Toggle {
|
|
223
|
+
type DefaultValue = 'disabled' | 'enabled';
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
type Type =
|
|
227
|
+
| 'email'
|
|
228
|
+
| 'numeric'
|
|
229
|
+
| 'phone'
|
|
230
|
+
| 'selection'
|
|
231
|
+
| 'signature'
|
|
232
|
+
| 'text';
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
interface ReaderCollectPaymentMethodParams {
|
|
237
|
+
/**
|
|
238
|
+
* PaymentIntent ID
|
|
239
|
+
*/
|
|
240
|
+
payment_intent: string;
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* Configuration overrides
|
|
244
|
+
*/
|
|
245
|
+
collect_config?: ReaderCollectPaymentMethodParams.CollectConfig;
|
|
246
|
+
|
|
247
|
+
/**
|
|
248
|
+
* Specifies which fields in the response should be expanded.
|
|
249
|
+
*/
|
|
250
|
+
expand?: Array<string>;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
namespace ReaderCollectPaymentMethodParams {
|
|
254
|
+
interface CollectConfig {
|
|
255
|
+
/**
|
|
256
|
+
* This field indicates whether this payment method can be shown again to its customer in a checkout flow. Stripe products such as Checkout and Elements use this field to determine whether a payment method can be shown as a saved payment method in a checkout flow.
|
|
257
|
+
*/
|
|
258
|
+
allow_redisplay?: CollectConfig.AllowRedisplay;
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* Enables cancel button on transaction screens.
|
|
262
|
+
*/
|
|
263
|
+
enable_customer_cancellation?: boolean;
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* Override showing a tipping selection screen on this transaction.
|
|
267
|
+
*/
|
|
268
|
+
skip_tipping?: boolean;
|
|
269
|
+
|
|
270
|
+
/**
|
|
271
|
+
* Tipping configuration for this transaction.
|
|
272
|
+
*/
|
|
273
|
+
tipping?: CollectConfig.Tipping;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
namespace CollectConfig {
|
|
277
|
+
type AllowRedisplay = 'always' | 'limited' | 'unspecified';
|
|
278
|
+
|
|
279
|
+
interface Tipping {
|
|
280
|
+
/**
|
|
281
|
+
* Amount used to calculate tip suggestions on tipping selection screen for this transaction. Must be a positive integer in the smallest currency unit (e.g., 100 cents to represent $1.00 or 100 to represent ¥100, a zero-decimal currency).
|
|
282
|
+
*/
|
|
283
|
+
amount_eligible?: number;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
interface ReaderConfirmPaymentIntentParams {
|
|
289
|
+
/**
|
|
290
|
+
* PaymentIntent ID
|
|
291
|
+
*/
|
|
292
|
+
payment_intent: string;
|
|
293
|
+
|
|
294
|
+
/**
|
|
295
|
+
* Specifies which fields in the response should be expanded.
|
|
296
|
+
*/
|
|
297
|
+
expand?: Array<string>;
|
|
298
|
+
}
|
|
299
|
+
|
|
107
300
|
interface ReaderProcessPaymentIntentParams {
|
|
108
301
|
/**
|
|
109
302
|
* PaymentIntent ID
|
|
@@ -378,6 +571,33 @@ declare module 'stripe' {
|
|
|
378
571
|
options?: RequestOptions
|
|
379
572
|
): Promise<Stripe.Response<Stripe.Terminal.Reader>>;
|
|
380
573
|
|
|
574
|
+
/**
|
|
575
|
+
* Initiates an input collection flow on a Reader.
|
|
576
|
+
*/
|
|
577
|
+
collectInputs(
|
|
578
|
+
id: string,
|
|
579
|
+
params: ReaderCollectInputsParams,
|
|
580
|
+
options?: RequestOptions
|
|
581
|
+
): Promise<Stripe.Response<Stripe.Terminal.Reader>>;
|
|
582
|
+
|
|
583
|
+
/**
|
|
584
|
+
* Initiates a payment flow on a Reader and updates the PaymentIntent with card details before manual confirmation.
|
|
585
|
+
*/
|
|
586
|
+
collectPaymentMethod(
|
|
587
|
+
id: string,
|
|
588
|
+
params: ReaderCollectPaymentMethodParams,
|
|
589
|
+
options?: RequestOptions
|
|
590
|
+
): Promise<Stripe.Response<Stripe.Terminal.Reader>>;
|
|
591
|
+
|
|
592
|
+
/**
|
|
593
|
+
* Finalizes a payment on a Reader.
|
|
594
|
+
*/
|
|
595
|
+
confirmPaymentIntent(
|
|
596
|
+
id: string,
|
|
597
|
+
params: ReaderConfirmPaymentIntentParams,
|
|
598
|
+
options?: RequestOptions
|
|
599
|
+
): Promise<Stripe.Response<Stripe.Terminal.Reader>>;
|
|
600
|
+
|
|
381
601
|
/**
|
|
382
602
|
* Initiates a payment flow on a Reader.
|
|
383
603
|
*/
|