stripe 18.5.0 → 18.6.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 +1364 -33
- package/README.md +4 -5
- 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/Billing/MeterUsage.js +12 -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/Mandates.js +5 -0
- package/cjs/resources/Margins.js +22 -0
- package/cjs/resources/Orders.js +24 -0
- package/cjs/resources/PaymentAttemptRecords.js +17 -0
- 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/OnboardingLinks.js +12 -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 +102 -8
- 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/Billing/MeterUsage.js +9 -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/Mandates.js +5 -0
- package/esm/resources/Margins.js +19 -0
- package/esm/resources/Orders.js +21 -0
- package/esm/resources/PaymentAttemptRecords.js +14 -0
- 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/OnboardingLinks.js +9 -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 +86 -0
- 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 +97 -0
- package/types/BalanceSettingsResource.d.ts +119 -0
- package/types/Billing/AlertTriggereds.d.ts +1 -1
- 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/MeterUsage.d.ts +32 -0
- package/types/Billing/MeterUsageResource.d.ts +685 -0
- package/types/Billing/MeterUsageRows.d.ts +49 -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 +171 -0
- package/types/ChargesResource.d.ts +1406 -0
- package/types/Checkout/Sessions.d.ts +374 -2
- package/types/Checkout/SessionsResource.d.ts +520 -2
- 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 +29 -0
- package/types/Errors.d.ts +79 -0
- 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 +155 -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/InvoicePaymentsResource.d.ts +10 -1
- package/types/Invoices.d.ts +171 -3
- package/types/InvoicesResource.d.ts +1533 -22
- 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 +135 -1
- package/types/MandatesResource.d.ts +31 -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 +2321 -0
- package/types/PaymentAttemptRecordsResource.d.ts +52 -0
- package/types/PaymentIntentAmountDetailsLineItems.d.ts +116 -0
- package/types/PaymentIntents.d.ts +836 -3
- package/types/PaymentIntentsResource.d.ts +11610 -5775
- 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 +130 -0
- package/types/PaymentMethodsResource.d.ts +167 -2
- package/types/PaymentRecords.d.ts +2314 -0
- package/types/PaymentRecordsResource.d.ts +476 -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 +1736 -0
- package/types/QuotePreviewSubscriptionSchedules.d.ts +892 -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 +51 -1
- package/types/SetupIntents.d.ts +210 -2
- package/types/SetupIntentsResource.d.ts +938 -4
- 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 +1233 -5
- package/types/Subscriptions.d.ts +135 -1
- package/types/SubscriptionsResource.d.ts +472 -8
- 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/Configurations.d.ts +9 -0
- package/types/Terminal/ConfigurationsResource.d.ts +28 -0
- package/types/Terminal/OnboardingLinks.d.ts +57 -0
- package/types/Terminal/OnboardingLinksResource.d.ts +62 -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 +168 -0
- package/types/V2/Core/AccountLinksResource.d.ts +152 -0
- package/types/V2/Core/Accounts/PersonsResource.d.ts +3812 -0
- package/types/V2/Core/Accounts.d.ts +8862 -0
- package/types/V2/Core/AccountsResource.d.ts +10704 -0
- package/types/V2/Core/Persons.d.ts +1888 -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 +961 -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 +585 -0
- package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +331 -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 +160 -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 +162 -0
- package/types/V2/MoneyManagement/TransactionEntriesResource.d.ts +82 -0
- package/types/V2/MoneyManagement/Transactions.d.ts +177 -0
- package/types/V2/MoneyManagement/TransactionsResource.d.ts +83 -0
- package/types/V2/Payments/OffSessionPayments.d.ts +179 -0
- package/types/V2/Payments/OffSessionPaymentsResource.d.ts +174 -0
- package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +68 -0
- package/types/WebhookEndpointsResource.d.ts +78 -0
- package/types/index.d.ts +145 -0
- package/types/lib.d.ts +11 -1
- package/types/test/typescriptTest.ts +3 -3
|
@@ -3,11 +3,6 @@
|
|
|
3
3
|
declare module 'stripe' {
|
|
4
4
|
namespace Stripe {
|
|
5
5
|
interface InvoiceItemCreateParams {
|
|
6
|
-
/**
|
|
7
|
-
* The ID of the customer who will be billed when this invoice item is billed.
|
|
8
|
-
*/
|
|
9
|
-
customer: string;
|
|
10
|
-
|
|
11
6
|
/**
|
|
12
7
|
* The integer amount in cents (or local equivalent) of the charge to be applied to the upcoming invoice. Passing in a negative `amount` will reduce the `amount_due` on the invoice.
|
|
13
8
|
*/
|
|
@@ -18,6 +13,16 @@ declare module 'stripe' {
|
|
|
18
13
|
*/
|
|
19
14
|
currency?: string;
|
|
20
15
|
|
|
16
|
+
/**
|
|
17
|
+
* The ID of the customer who will be billed when this invoice item is billed.
|
|
18
|
+
*/
|
|
19
|
+
customer?: string;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* The ID of the account who will be billed when this invoice item is billed.
|
|
23
|
+
*/
|
|
24
|
+
customer_account?: string;
|
|
25
|
+
|
|
21
26
|
/**
|
|
22
27
|
* An arbitrary string which you can attach to the invoice item. The description is displayed in the invoice for easy tracking.
|
|
23
28
|
*/
|
|
@@ -43,6 +48,11 @@ declare module 'stripe' {
|
|
|
43
48
|
*/
|
|
44
49
|
invoice?: string;
|
|
45
50
|
|
|
51
|
+
/**
|
|
52
|
+
* The ids of the margins to apply to the invoice item. When set, the `default_margins` on the invoice do not apply to this invoice item.
|
|
53
|
+
*/
|
|
54
|
+
margins?: Array<string>;
|
|
55
|
+
|
|
46
56
|
/**
|
|
47
57
|
* 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`.
|
|
48
58
|
*/
|
|
@@ -106,12 +116,56 @@ declare module 'stripe' {
|
|
|
106
116
|
*/
|
|
107
117
|
discount?: string;
|
|
108
118
|
|
|
119
|
+
/**
|
|
120
|
+
* Details to determine how long the discount should be applied for.
|
|
121
|
+
*/
|
|
122
|
+
discount_end?: Discount.DiscountEnd;
|
|
123
|
+
|
|
109
124
|
/**
|
|
110
125
|
* ID of the promotion code to create a new discount for.
|
|
111
126
|
*/
|
|
112
127
|
promotion_code?: string;
|
|
113
128
|
}
|
|
114
129
|
|
|
130
|
+
namespace Discount {
|
|
131
|
+
interface DiscountEnd {
|
|
132
|
+
/**
|
|
133
|
+
* Time span for the redeemed discount.
|
|
134
|
+
*/
|
|
135
|
+
duration?: DiscountEnd.Duration;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* A precise Unix timestamp for the discount to end. Must be in the future.
|
|
139
|
+
*/
|
|
140
|
+
timestamp?: number;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* The type of calculation made to determine when the discount ends.
|
|
144
|
+
*/
|
|
145
|
+
type: DiscountEnd.Type;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
namespace DiscountEnd {
|
|
149
|
+
interface Duration {
|
|
150
|
+
/**
|
|
151
|
+
* Specifies a type of interval unit. Either `day`, `week`, `month` or `year`.
|
|
152
|
+
*/
|
|
153
|
+
interval: Duration.Interval;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* The number of intervals, as an whole number greater than 0. Stripe multiplies this by the interval type to get the overall duration.
|
|
157
|
+
*/
|
|
158
|
+
interval_count: number;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
namespace Duration {
|
|
162
|
+
type Interval = 'day' | 'month' | 'week' | 'year';
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
type Type = 'duration' | 'timestamp';
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
115
169
|
interface Period {
|
|
116
170
|
/**
|
|
117
171
|
* The end of the period, which must be greater than or equal to the start. This value is inclusive.
|
|
@@ -198,6 +252,11 @@ declare module 'stripe' {
|
|
|
198
252
|
*/
|
|
199
253
|
expand?: Array<string>;
|
|
200
254
|
|
|
255
|
+
/**
|
|
256
|
+
* The ids of the margins to apply to the invoice item. When set, the `default_margins` on the invoice do not apply to this invoice item.
|
|
257
|
+
*/
|
|
258
|
+
margins?: Stripe.Emptyable<Array<string>>;
|
|
259
|
+
|
|
201
260
|
/**
|
|
202
261
|
* 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`.
|
|
203
262
|
*/
|
|
@@ -256,12 +315,56 @@ declare module 'stripe' {
|
|
|
256
315
|
*/
|
|
257
316
|
discount?: string;
|
|
258
317
|
|
|
318
|
+
/**
|
|
319
|
+
* Details to determine how long the discount should be applied for.
|
|
320
|
+
*/
|
|
321
|
+
discount_end?: Discount.DiscountEnd;
|
|
322
|
+
|
|
259
323
|
/**
|
|
260
324
|
* ID of the promotion code to create a new discount for.
|
|
261
325
|
*/
|
|
262
326
|
promotion_code?: string;
|
|
263
327
|
}
|
|
264
328
|
|
|
329
|
+
namespace Discount {
|
|
330
|
+
interface DiscountEnd {
|
|
331
|
+
/**
|
|
332
|
+
* Time span for the redeemed discount.
|
|
333
|
+
*/
|
|
334
|
+
duration?: DiscountEnd.Duration;
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* A precise Unix timestamp for the discount to end. Must be in the future.
|
|
338
|
+
*/
|
|
339
|
+
timestamp?: number;
|
|
340
|
+
|
|
341
|
+
/**
|
|
342
|
+
* The type of calculation made to determine when the discount ends.
|
|
343
|
+
*/
|
|
344
|
+
type: DiscountEnd.Type;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
namespace DiscountEnd {
|
|
348
|
+
interface Duration {
|
|
349
|
+
/**
|
|
350
|
+
* Specifies a type of interval unit. Either `day`, `week`, `month` or `year`.
|
|
351
|
+
*/
|
|
352
|
+
interval: Duration.Interval;
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* The number of intervals, as an whole number greater than 0. Stripe multiplies this by the interval type to get the overall duration.
|
|
356
|
+
*/
|
|
357
|
+
interval_count: number;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
namespace Duration {
|
|
361
|
+
type Interval = 'day' | 'month' | 'week' | 'year';
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
type Type = 'duration' | 'timestamp';
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
|
|
265
368
|
interface Period {
|
|
266
369
|
/**
|
|
267
370
|
* The end of the period, which must be greater than or equal to the start. This value is inclusive.
|
|
@@ -326,6 +429,11 @@ declare module 'stripe' {
|
|
|
326
429
|
*/
|
|
327
430
|
customer?: string;
|
|
328
431
|
|
|
432
|
+
/**
|
|
433
|
+
* The identifier of the account whose invoice items to return. If none is provided, all invoice items will be returned.
|
|
434
|
+
*/
|
|
435
|
+
customer_account?: string;
|
|
436
|
+
|
|
329
437
|
/**
|
|
330
438
|
* Specifies which fields in the response should be expanded.
|
|
331
439
|
*/
|
|
@@ -349,7 +457,10 @@ declare module 'stripe' {
|
|
|
349
457
|
* Creates an item to be added to a draft invoice (up to 250 items per invoice). If no invoice is specified, the item will be on the next invoice created for the customer specified.
|
|
350
458
|
*/
|
|
351
459
|
create(
|
|
352
|
-
params
|
|
460
|
+
params?: InvoiceItemCreateParams,
|
|
461
|
+
options?: RequestOptions
|
|
462
|
+
): Promise<Stripe.Response<Stripe.InvoiceItem>>;
|
|
463
|
+
create(
|
|
353
464
|
options?: RequestOptions
|
|
354
465
|
): Promise<Stripe.Response<Stripe.InvoiceItem>>;
|
|
355
466
|
|
|
@@ -58,6 +58,16 @@ declare module 'stripe' {
|
|
|
58
58
|
*/
|
|
59
59
|
livemode: boolean;
|
|
60
60
|
|
|
61
|
+
/**
|
|
62
|
+
* The amount of margin calculated per margin for this line item.
|
|
63
|
+
*/
|
|
64
|
+
margin_amounts?: Array<InvoiceLineItem.MarginAmount> | null;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* The margins applied to the line item. When set, the `default_margins` on the invoice do not apply to the line item. Use `expand[]=margins` to expand each margin.
|
|
68
|
+
*/
|
|
69
|
+
margins?: Array<string | Stripe.Margin> | null;
|
|
70
|
+
|
|
61
71
|
/**
|
|
62
72
|
* 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. Note that for line items with `type=subscription`, `metadata` reflects the current metadata from the subscription associated with the line item, unless the invoice line was directly updated with different metadata after creation.
|
|
63
73
|
*/
|
|
@@ -87,6 +97,11 @@ declare module 'stripe' {
|
|
|
87
97
|
|
|
88
98
|
subscription: string | Stripe.Subscription | null;
|
|
89
99
|
|
|
100
|
+
/**
|
|
101
|
+
* The tax calculation identifiers of the line item.
|
|
102
|
+
*/
|
|
103
|
+
tax_calculation_reference?: InvoiceLineItem.TaxCalculationReference | null;
|
|
104
|
+
|
|
90
105
|
/**
|
|
91
106
|
* The tax information of the line item.
|
|
92
107
|
*/
|
|
@@ -106,6 +121,18 @@ declare module 'stripe' {
|
|
|
106
121
|
discount: string | Stripe.Discount | Stripe.DeletedDiscount;
|
|
107
122
|
}
|
|
108
123
|
|
|
124
|
+
interface MarginAmount {
|
|
125
|
+
/**
|
|
126
|
+
* The amount, in cents (or local equivalent), of the reduction in line item amount.
|
|
127
|
+
*/
|
|
128
|
+
amount: number;
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* The margin that was applied to get this margin amount.
|
|
132
|
+
*/
|
|
133
|
+
margin: string | Stripe.Margin;
|
|
134
|
+
}
|
|
135
|
+
|
|
109
136
|
interface Parent {
|
|
110
137
|
/**
|
|
111
138
|
* Details about the invoice item that generated this line item
|
|
@@ -253,6 +280,11 @@ declare module 'stripe' {
|
|
|
253
280
|
*/
|
|
254
281
|
discount?: string | Stripe.Discount | Stripe.DeletedDiscount;
|
|
255
282
|
|
|
283
|
+
/**
|
|
284
|
+
* The margin that was applied to get this pretax credit amount.
|
|
285
|
+
*/
|
|
286
|
+
margin?: string | Stripe.Margin;
|
|
287
|
+
|
|
256
288
|
/**
|
|
257
289
|
* Type of the pretax credit amount referenced.
|
|
258
290
|
*/
|
|
@@ -260,7 +292,7 @@ declare module 'stripe' {
|
|
|
260
292
|
}
|
|
261
293
|
|
|
262
294
|
namespace PretaxCreditAmount {
|
|
263
|
-
type Type = 'credit_balance_transaction' | 'discount';
|
|
295
|
+
type Type = 'credit_balance_transaction' | 'discount' | 'margin';
|
|
264
296
|
}
|
|
265
297
|
|
|
266
298
|
interface Pricing {
|
|
@@ -348,6 +380,18 @@ declare module 'stripe' {
|
|
|
348
380
|
tax_rate: string;
|
|
349
381
|
}
|
|
350
382
|
}
|
|
383
|
+
|
|
384
|
+
interface TaxCalculationReference {
|
|
385
|
+
/**
|
|
386
|
+
* The calculation identifier for tax calculation response.
|
|
387
|
+
*/
|
|
388
|
+
calculation_id: string | null;
|
|
389
|
+
|
|
390
|
+
/**
|
|
391
|
+
* The calculation identifier for tax calculation response line item.
|
|
392
|
+
*/
|
|
393
|
+
calculation_item_id: string | null;
|
|
394
|
+
}
|
|
351
395
|
}
|
|
352
396
|
}
|
|
353
397
|
}
|
|
@@ -80,6 +80,11 @@ declare module 'stripe' {
|
|
|
80
80
|
*/
|
|
81
81
|
payment_intent?: string | Stripe.PaymentIntent;
|
|
82
82
|
|
|
83
|
+
/**
|
|
84
|
+
* ID of the PaymentRecord associated with this payment when `type` is `payment_record`.
|
|
85
|
+
*/
|
|
86
|
+
payment_record?: string | Stripe.PaymentRecord;
|
|
87
|
+
|
|
83
88
|
/**
|
|
84
89
|
* Type of payment object associated with this invoice payment.
|
|
85
90
|
*/
|
|
@@ -38,10 +38,19 @@ declare module 'stripe' {
|
|
|
38
38
|
*/
|
|
39
39
|
payment_intent?: string;
|
|
40
40
|
|
|
41
|
+
/**
|
|
42
|
+
* Only return invoice payments associated by this payment record ID.
|
|
43
|
+
*/
|
|
44
|
+
payment_record?: string;
|
|
45
|
+
|
|
41
46
|
/**
|
|
42
47
|
* Only return invoice payments associated by this payment type.
|
|
43
48
|
*/
|
|
44
|
-
type:
|
|
49
|
+
type: Payment.Type;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
namespace Payment {
|
|
53
|
+
type Type = 'payment_intent' | 'payment_record';
|
|
45
54
|
}
|
|
46
55
|
|
|
47
56
|
type Status = 'canceled' | 'open' | 'paid';
|
package/types/Invoices.d.ts
CHANGED
|
@@ -109,6 +109,11 @@ declare module 'stripe' {
|
|
|
109
109
|
*/
|
|
110
110
|
amount_shipping: number;
|
|
111
111
|
|
|
112
|
+
/**
|
|
113
|
+
* List of expected payments and corresponding due dates. This value will be null for invoices where collection_method=charge_automatically.
|
|
114
|
+
*/
|
|
115
|
+
amounts_due?: Array<Invoice.AmountsDue> | null;
|
|
116
|
+
|
|
112
117
|
/**
|
|
113
118
|
* ID of the Connect Application that created the invoice.
|
|
114
119
|
*/
|
|
@@ -183,6 +188,11 @@ declare module 'stripe' {
|
|
|
183
188
|
*/
|
|
184
189
|
customer: string | Stripe.Customer | Stripe.DeletedCustomer | null;
|
|
185
190
|
|
|
191
|
+
/**
|
|
192
|
+
* The ID of the account who will be billed.
|
|
193
|
+
*/
|
|
194
|
+
customer_account?: string | null;
|
|
195
|
+
|
|
186
196
|
/**
|
|
187
197
|
* The customer's address. Until the invoice is finalized, this field will equal `customer.address`. Once the invoice is finalized, this field will no longer be updated.
|
|
188
198
|
*/
|
|
@@ -218,6 +228,11 @@ declare module 'stripe' {
|
|
|
218
228
|
*/
|
|
219
229
|
customer_tax_ids?: Array<Invoice.CustomerTaxId> | null;
|
|
220
230
|
|
|
231
|
+
/**
|
|
232
|
+
* The margins applied to the invoice. Can be overridden by line item `margins`. Use `expand[]=default_margins` to expand each margin.
|
|
233
|
+
*/
|
|
234
|
+
default_margins?: Array<string | Stripe.Margin> | null;
|
|
235
|
+
|
|
221
236
|
/**
|
|
222
237
|
* ID of the default payment method for the invoice. It must belong to the customer associated with the invoice. If not set, defaults to the subscription's default payment method, if any, or to the default payment method in the customer's invoice settings.
|
|
223
238
|
*/
|
|
@@ -426,6 +441,11 @@ declare module 'stripe' {
|
|
|
426
441
|
*/
|
|
427
442
|
total_excluding_tax: number | null;
|
|
428
443
|
|
|
444
|
+
/**
|
|
445
|
+
* The aggregate amounts calculated per margin across all line items.
|
|
446
|
+
*/
|
|
447
|
+
total_margin_amounts?: Array<Invoice.TotalMarginAmount> | null;
|
|
448
|
+
|
|
429
449
|
/**
|
|
430
450
|
* Contains pretax credit amounts (ex: discount, credit grants, etc) that apply to this invoice. This is a combined list of total_pretax_credit_amounts across all invoice line items.
|
|
431
451
|
*/
|
|
@@ -445,6 +465,52 @@ declare module 'stripe' {
|
|
|
445
465
|
}
|
|
446
466
|
|
|
447
467
|
namespace Invoice {
|
|
468
|
+
interface AmountsDue {
|
|
469
|
+
/**
|
|
470
|
+
* Incremental amount due for this payment in cents (or local equivalent).
|
|
471
|
+
*/
|
|
472
|
+
amount: number;
|
|
473
|
+
|
|
474
|
+
/**
|
|
475
|
+
* The amount in cents (or local equivalent) that was paid for this payment.
|
|
476
|
+
*/
|
|
477
|
+
amount_paid: number;
|
|
478
|
+
|
|
479
|
+
/**
|
|
480
|
+
* The difference between the payment's amount and amount_paid, in cents (or local equivalent).
|
|
481
|
+
*/
|
|
482
|
+
amount_remaining: number;
|
|
483
|
+
|
|
484
|
+
/**
|
|
485
|
+
* Number of days from when invoice is finalized until the payment is due.
|
|
486
|
+
*/
|
|
487
|
+
days_until_due: number | null;
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* An arbitrary string attached to the object. Often useful for displaying to users.
|
|
491
|
+
*/
|
|
492
|
+
description: string | null;
|
|
493
|
+
|
|
494
|
+
/**
|
|
495
|
+
* Date on which a payment plan's payment is due.
|
|
496
|
+
*/
|
|
497
|
+
due_date: number | null;
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* Timestamp when the payment was paid.
|
|
501
|
+
*/
|
|
502
|
+
paid_at: number | null;
|
|
503
|
+
|
|
504
|
+
/**
|
|
505
|
+
* The status of the payment, one of `open`, `paid`, or `past_due`
|
|
506
|
+
*/
|
|
507
|
+
status: AmountsDue.Status;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
namespace AmountsDue {
|
|
511
|
+
type Status = 'open' | 'paid' | 'past_due';
|
|
512
|
+
}
|
|
513
|
+
|
|
448
514
|
interface AutomaticTax {
|
|
449
515
|
/**
|
|
450
516
|
* If Stripe disabled automatic tax, this enum describes why.
|
|
@@ -878,6 +944,7 @@ declare module 'stripe' {
|
|
|
878
944
|
| 'email_invalid'
|
|
879
945
|
| 'expired_card'
|
|
880
946
|
| 'financial_connections_account_inactive'
|
|
947
|
+
| 'financial_connections_institution_unavailable'
|
|
881
948
|
| 'financial_connections_no_successful_transaction_refresh'
|
|
882
949
|
| 'forwarding_api_inactive'
|
|
883
950
|
| 'forwarding_api_invalid_parameter'
|
|
@@ -975,6 +1042,7 @@ declare module 'stripe' {
|
|
|
975
1042
|
| 'return_intent_already_processed'
|
|
976
1043
|
| 'routing_number_invalid'
|
|
977
1044
|
| 'secret_key_required'
|
|
1045
|
+
| 'sensitive_data_access_expired'
|
|
978
1046
|
| 'sepa_unsupported_account'
|
|
979
1047
|
| 'setup_attempt_failed'
|
|
980
1048
|
| 'setup_intent_authentication_failure'
|
|
@@ -994,6 +1062,7 @@ declare module 'stripe' {
|
|
|
994
1062
|
| 'taxes_calculation_failed'
|
|
995
1063
|
| 'terminal_location_country_unsupported'
|
|
996
1064
|
| 'terminal_reader_busy'
|
|
1065
|
+
| 'terminal_reader_collected_data_invalid'
|
|
997
1066
|
| 'terminal_reader_hardware_fault'
|
|
998
1067
|
| 'terminal_reader_invalid_location_for_activation'
|
|
999
1068
|
| 'terminal_reader_invalid_location_for_payment'
|
|
@@ -1006,7 +1075,9 @@ declare module 'stripe' {
|
|
|
1006
1075
|
| 'token_in_use'
|
|
1007
1076
|
| 'transfer_source_balance_parameters_mismatch'
|
|
1008
1077
|
| 'transfers_not_allowed'
|
|
1009
|
-
| 'url_invalid'
|
|
1078
|
+
| 'url_invalid'
|
|
1079
|
+
| 'v2_account_disconnection_unsupported'
|
|
1080
|
+
| 'v2_account_missing_configuration';
|
|
1010
1081
|
|
|
1011
1082
|
type Type =
|
|
1012
1083
|
| 'api_error'
|
|
@@ -1047,6 +1118,11 @@ declare module 'stripe' {
|
|
|
1047
1118
|
*/
|
|
1048
1119
|
metadata: Stripe.Metadata | null;
|
|
1049
1120
|
|
|
1121
|
+
/**
|
|
1122
|
+
* If specified, payment collection for this subscription will be paused. Note that the subscription status will be unchanged and will not be updated to `paused`. Learn more about [pausing collection](https://stripe.com/docs/billing/subscriptions/pause-payment).
|
|
1123
|
+
*/
|
|
1124
|
+
pause_collection?: SubscriptionDetails.PauseCollection | null;
|
|
1125
|
+
|
|
1050
1126
|
/**
|
|
1051
1127
|
* The subscription that generated this invoice
|
|
1052
1128
|
*/
|
|
@@ -1058,6 +1134,24 @@ declare module 'stripe' {
|
|
|
1058
1134
|
subscription_proration_date?: number;
|
|
1059
1135
|
}
|
|
1060
1136
|
|
|
1137
|
+
namespace SubscriptionDetails {
|
|
1138
|
+
interface PauseCollection {
|
|
1139
|
+
/**
|
|
1140
|
+
* The payment collection behavior for this subscription while paused. One of `keep_as_draft`, `mark_uncollectible`, or `void`.
|
|
1141
|
+
*/
|
|
1142
|
+
behavior: PauseCollection.Behavior | null;
|
|
1143
|
+
|
|
1144
|
+
/**
|
|
1145
|
+
* The time after which the subscription will resume collecting payments.
|
|
1146
|
+
*/
|
|
1147
|
+
resumes_at: number | null;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
namespace PauseCollection {
|
|
1151
|
+
type Behavior = 'keep_as_draft' | 'mark_uncollectible' | 'void';
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1061
1155
|
type Type = 'quote_details' | 'subscription_details';
|
|
1062
1156
|
}
|
|
1063
1157
|
|
|
@@ -1100,6 +1194,11 @@ declare module 'stripe' {
|
|
|
1100
1194
|
*/
|
|
1101
1195
|
customer_balance: PaymentMethodOptions.CustomerBalance | null;
|
|
1102
1196
|
|
|
1197
|
+
/**
|
|
1198
|
+
* If paying by `id_bank_transfer`, this sub-hash contains details about the Indonesia bank transfer payment method options to pass to the invoice's PaymentIntent.
|
|
1199
|
+
*/
|
|
1200
|
+
id_bank_transfer?: PaymentMethodOptions.IdBankTransfer | null;
|
|
1201
|
+
|
|
1103
1202
|
/**
|
|
1104
1203
|
* If paying by `konbini`, this sub-hash contains details about the Konbini payment method options to pass to the invoice's PaymentIntent.
|
|
1105
1204
|
*/
|
|
@@ -1110,6 +1209,11 @@ declare module 'stripe' {
|
|
|
1110
1209
|
*/
|
|
1111
1210
|
sepa_debit: PaymentMethodOptions.SepaDebit | null;
|
|
1112
1211
|
|
|
1212
|
+
/**
|
|
1213
|
+
* If paying by `upi`, this sub-hash contains details about the UPI payment method options to pass to the invoice's PaymentIntent.
|
|
1214
|
+
*/
|
|
1215
|
+
upi?: PaymentMethodOptions.Upi | null;
|
|
1216
|
+
|
|
1113
1217
|
/**
|
|
1114
1218
|
* If paying by `us_bank_account`, this sub-hash contains details about the ACH direct debit payment method options to pass to the invoice's PaymentIntent.
|
|
1115
1219
|
*/
|
|
@@ -1205,10 +1309,44 @@ declare module 'stripe' {
|
|
|
1205
1309
|
}
|
|
1206
1310
|
}
|
|
1207
1311
|
|
|
1312
|
+
interface IdBankTransfer {}
|
|
1313
|
+
|
|
1208
1314
|
interface Konbini {}
|
|
1209
1315
|
|
|
1210
1316
|
interface SepaDebit {}
|
|
1211
1317
|
|
|
1318
|
+
interface Upi {
|
|
1319
|
+
mandate_options?: Upi.MandateOptions;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1322
|
+
namespace Upi {
|
|
1323
|
+
interface MandateOptions {
|
|
1324
|
+
/**
|
|
1325
|
+
* Amount to be charged for future payments.
|
|
1326
|
+
*/
|
|
1327
|
+
amount: number | null;
|
|
1328
|
+
|
|
1329
|
+
/**
|
|
1330
|
+
* One of `fixed` or `maximum`. If `fixed`, the `amount` param refers to the exact amount to be charged in future payments. If `maximum`, the amount charged can be up to the value passed for the `amount` param.
|
|
1331
|
+
*/
|
|
1332
|
+
amount_type: MandateOptions.AmountType | null;
|
|
1333
|
+
|
|
1334
|
+
/**
|
|
1335
|
+
* A description of the mandate or subscription that is meant to be displayed to the customer.
|
|
1336
|
+
*/
|
|
1337
|
+
description: string | null;
|
|
1338
|
+
|
|
1339
|
+
/**
|
|
1340
|
+
* End date of the mandate or subscription. If not provided, the mandate will be active until canceled. If provided, end date should be after start date.
|
|
1341
|
+
*/
|
|
1342
|
+
end_date: number | null;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
namespace MandateOptions {
|
|
1346
|
+
type AmountType = 'fixed' | 'maximum';
|
|
1347
|
+
}
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1212
1350
|
interface UsBankAccount {
|
|
1213
1351
|
financial_connections?: UsBankAccount.FinancialConnections;
|
|
1214
1352
|
|
|
@@ -1239,6 +1377,11 @@ declare module 'stripe' {
|
|
|
1239
1377
|
* The account subcategories to use to filter for possible accounts to link. Valid subcategories are `checking` and `savings`.
|
|
1240
1378
|
*/
|
|
1241
1379
|
account_subcategories?: Array<Filters.AccountSubcategory>;
|
|
1380
|
+
|
|
1381
|
+
/**
|
|
1382
|
+
* The institution to use to filter for possible accounts to link.
|
|
1383
|
+
*/
|
|
1384
|
+
institution?: string;
|
|
1242
1385
|
}
|
|
1243
1386
|
|
|
1244
1387
|
namespace Filters {
|
|
@@ -1251,7 +1394,11 @@ declare module 'stripe' {
|
|
|
1251
1394
|
| 'payment_method'
|
|
1252
1395
|
| 'transactions';
|
|
1253
1396
|
|
|
1254
|
-
type Prefetch =
|
|
1397
|
+
type Prefetch =
|
|
1398
|
+
| 'balances'
|
|
1399
|
+
| 'inferred_balances'
|
|
1400
|
+
| 'ownership'
|
|
1401
|
+
| 'transactions';
|
|
1255
1402
|
}
|
|
1256
1403
|
|
|
1257
1404
|
type VerificationMethod = 'automatic' | 'instant' | 'microdeposits';
|
|
@@ -1271,11 +1418,13 @@ declare module 'stripe' {
|
|
|
1271
1418
|
| 'card'
|
|
1272
1419
|
| 'cashapp'
|
|
1273
1420
|
| 'crypto'
|
|
1421
|
+
| 'custom'
|
|
1274
1422
|
| 'customer_balance'
|
|
1275
1423
|
| 'eps'
|
|
1276
1424
|
| 'fpx'
|
|
1277
1425
|
| 'giropay'
|
|
1278
1426
|
| 'grabpay'
|
|
1427
|
+
| 'id_bank_transfer'
|
|
1279
1428
|
| 'ideal'
|
|
1280
1429
|
| 'jp_credit_transfer'
|
|
1281
1430
|
| 'kakao_pay'
|
|
@@ -1295,7 +1444,9 @@ declare module 'stripe' {
|
|
|
1295
1444
|
| 'sepa_credit_transfer'
|
|
1296
1445
|
| 'sepa_debit'
|
|
1297
1446
|
| 'sofort'
|
|
1447
|
+
| 'stripe_balance'
|
|
1298
1448
|
| 'swish'
|
|
1449
|
+
| 'upi'
|
|
1299
1450
|
| 'us_bank_account'
|
|
1300
1451
|
| 'wechat_pay';
|
|
1301
1452
|
}
|
|
@@ -1493,6 +1644,18 @@ declare module 'stripe' {
|
|
|
1493
1644
|
discount: string | Stripe.Discount | Stripe.DeletedDiscount;
|
|
1494
1645
|
}
|
|
1495
1646
|
|
|
1647
|
+
interface TotalMarginAmount {
|
|
1648
|
+
/**
|
|
1649
|
+
* The amount, in cents (or local equivalent), of the reduction in line item amount.
|
|
1650
|
+
*/
|
|
1651
|
+
amount: number;
|
|
1652
|
+
|
|
1653
|
+
/**
|
|
1654
|
+
* The margin that was applied to get this margin amount.
|
|
1655
|
+
*/
|
|
1656
|
+
margin: string | Stripe.Margin;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1496
1659
|
interface TotalPretaxCreditAmount {
|
|
1497
1660
|
/**
|
|
1498
1661
|
* The amount, in cents (or local equivalent), of the pretax credit amount.
|
|
@@ -1512,6 +1675,11 @@ declare module 'stripe' {
|
|
|
1512
1675
|
*/
|
|
1513
1676
|
discount?: string | Stripe.Discount | Stripe.DeletedDiscount;
|
|
1514
1677
|
|
|
1678
|
+
/**
|
|
1679
|
+
* The margin that was applied to get this pretax credit amount.
|
|
1680
|
+
*/
|
|
1681
|
+
margin?: string | Stripe.Margin;
|
|
1682
|
+
|
|
1515
1683
|
/**
|
|
1516
1684
|
* Type of the pretax credit amount referenced.
|
|
1517
1685
|
*/
|
|
@@ -1519,7 +1687,7 @@ declare module 'stripe' {
|
|
|
1519
1687
|
}
|
|
1520
1688
|
|
|
1521
1689
|
namespace TotalPretaxCreditAmount {
|
|
1522
|
-
type Type = 'credit_balance_transaction' | 'discount';
|
|
1690
|
+
type Type = 'credit_balance_transaction' | 'discount' | 'margin';
|
|
1523
1691
|
}
|
|
1524
1692
|
|
|
1525
1693
|
interface TotalTax {
|