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
|
@@ -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
|
}
|
|
@@ -73,6 +73,11 @@ declare module 'stripe' {
|
|
|
73
73
|
*/
|
|
74
74
|
payment_intent?: string | Stripe.PaymentIntent;
|
|
75
75
|
|
|
76
|
+
/**
|
|
77
|
+
* ID of the PaymentRecord associated with this payment when `type` is `payment_record`.
|
|
78
|
+
*/
|
|
79
|
+
payment_record?: string | Stripe.PaymentRecord;
|
|
80
|
+
|
|
76
81
|
/**
|
|
77
82
|
* Type of payment object associated with this invoice payment.
|
|
78
83
|
*/
|
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.
|
|
@@ -877,12 +943,16 @@ declare module 'stripe' {
|
|
|
877
943
|
| 'email_invalid'
|
|
878
944
|
| 'expired_card'
|
|
879
945
|
| 'financial_connections_account_inactive'
|
|
946
|
+
| 'financial_connections_institution_unavailable'
|
|
880
947
|
| 'financial_connections_no_successful_transaction_refresh'
|
|
881
948
|
| 'forwarding_api_inactive'
|
|
882
949
|
| 'forwarding_api_invalid_parameter'
|
|
883
950
|
| 'forwarding_api_retryable_upstream_error'
|
|
884
951
|
| 'forwarding_api_upstream_connection_error'
|
|
885
952
|
| 'forwarding_api_upstream_connection_timeout'
|
|
953
|
+
| 'gift_card_balance_insufficient'
|
|
954
|
+
| 'gift_card_code_exists'
|
|
955
|
+
| 'gift_card_inactive'
|
|
886
956
|
| 'idempotency_key_in_use'
|
|
887
957
|
| 'incorrect_address'
|
|
888
958
|
| 'incorrect_cvc'
|
|
@@ -972,6 +1042,7 @@ declare module 'stripe' {
|
|
|
972
1042
|
| 'return_intent_already_processed'
|
|
973
1043
|
| 'routing_number_invalid'
|
|
974
1044
|
| 'secret_key_required'
|
|
1045
|
+
| 'sensitive_data_access_expired'
|
|
975
1046
|
| 'sepa_unsupported_account'
|
|
976
1047
|
| 'setup_attempt_failed'
|
|
977
1048
|
| 'setup_intent_authentication_failure'
|
|
@@ -991,6 +1062,7 @@ declare module 'stripe' {
|
|
|
991
1062
|
| 'taxes_calculation_failed'
|
|
992
1063
|
| 'terminal_location_country_unsupported'
|
|
993
1064
|
| 'terminal_reader_busy'
|
|
1065
|
+
| 'terminal_reader_collected_data_invalid'
|
|
994
1066
|
| 'terminal_reader_hardware_fault'
|
|
995
1067
|
| 'terminal_reader_invalid_location_for_activation'
|
|
996
1068
|
| 'terminal_reader_invalid_location_for_payment'
|
|
@@ -1003,7 +1075,9 @@ declare module 'stripe' {
|
|
|
1003
1075
|
| 'token_in_use'
|
|
1004
1076
|
| 'transfer_source_balance_parameters_mismatch'
|
|
1005
1077
|
| 'transfers_not_allowed'
|
|
1006
|
-
| 'url_invalid'
|
|
1078
|
+
| 'url_invalid'
|
|
1079
|
+
| 'v2_account_disconnection_unsupported'
|
|
1080
|
+
| 'v2_account_missing_configuration';
|
|
1007
1081
|
|
|
1008
1082
|
type Type =
|
|
1009
1083
|
| 'api_error'
|
|
@@ -1044,6 +1118,11 @@ declare module 'stripe' {
|
|
|
1044
1118
|
*/
|
|
1045
1119
|
metadata: Stripe.Metadata | null;
|
|
1046
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
|
+
|
|
1047
1126
|
/**
|
|
1048
1127
|
* The subscription that generated this invoice
|
|
1049
1128
|
*/
|
|
@@ -1055,6 +1134,24 @@ declare module 'stripe' {
|
|
|
1055
1134
|
subscription_proration_date?: number;
|
|
1056
1135
|
}
|
|
1057
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
|
+
|
|
1058
1155
|
type Type = 'quote_details' | 'subscription_details';
|
|
1059
1156
|
}
|
|
1060
1157
|
|
|
@@ -1097,6 +1194,11 @@ declare module 'stripe' {
|
|
|
1097
1194
|
*/
|
|
1098
1195
|
customer_balance: PaymentMethodOptions.CustomerBalance | null;
|
|
1099
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
|
+
|
|
1100
1202
|
/**
|
|
1101
1203
|
* If paying by `konbini`, this sub-hash contains details about the Konbini payment method options to pass to the invoice's PaymentIntent.
|
|
1102
1204
|
*/
|
|
@@ -1202,6 +1304,8 @@ declare module 'stripe' {
|
|
|
1202
1304
|
}
|
|
1203
1305
|
}
|
|
1204
1306
|
|
|
1307
|
+
interface IdBankTransfer {}
|
|
1308
|
+
|
|
1205
1309
|
interface Konbini {}
|
|
1206
1310
|
|
|
1207
1311
|
interface SepaDebit {}
|
|
@@ -1236,6 +1340,11 @@ declare module 'stripe' {
|
|
|
1236
1340
|
* The account subcategories to use to filter for possible accounts to link. Valid subcategories are `checking` and `savings`.
|
|
1237
1341
|
*/
|
|
1238
1342
|
account_subcategories?: Array<Filters.AccountSubcategory>;
|
|
1343
|
+
|
|
1344
|
+
/**
|
|
1345
|
+
* The institution to use to filter for possible accounts to link.
|
|
1346
|
+
*/
|
|
1347
|
+
institution?: string;
|
|
1239
1348
|
}
|
|
1240
1349
|
|
|
1241
1350
|
namespace Filters {
|
|
@@ -1248,7 +1357,11 @@ declare module 'stripe' {
|
|
|
1248
1357
|
| 'payment_method'
|
|
1249
1358
|
| 'transactions';
|
|
1250
1359
|
|
|
1251
|
-
type Prefetch =
|
|
1360
|
+
type Prefetch =
|
|
1361
|
+
| 'balances'
|
|
1362
|
+
| 'inferred_balances'
|
|
1363
|
+
| 'ownership'
|
|
1364
|
+
| 'transactions';
|
|
1252
1365
|
}
|
|
1253
1366
|
|
|
1254
1367
|
type VerificationMethod = 'automatic' | 'instant' | 'microdeposits';
|
|
@@ -1267,11 +1380,13 @@ declare module 'stripe' {
|
|
|
1267
1380
|
| 'boleto'
|
|
1268
1381
|
| 'card'
|
|
1269
1382
|
| 'cashapp'
|
|
1383
|
+
| 'custom'
|
|
1270
1384
|
| 'customer_balance'
|
|
1271
1385
|
| 'eps'
|
|
1272
1386
|
| 'fpx'
|
|
1273
1387
|
| 'giropay'
|
|
1274
1388
|
| 'grabpay'
|
|
1389
|
+
| 'id_bank_transfer'
|
|
1275
1390
|
| 'ideal'
|
|
1276
1391
|
| 'jp_credit_transfer'
|
|
1277
1392
|
| 'kakao_pay'
|
|
@@ -1291,6 +1406,7 @@ declare module 'stripe' {
|
|
|
1291
1406
|
| 'sepa_credit_transfer'
|
|
1292
1407
|
| 'sepa_debit'
|
|
1293
1408
|
| 'sofort'
|
|
1409
|
+
| 'stripe_balance'
|
|
1294
1410
|
| 'swish'
|
|
1295
1411
|
| 'us_bank_account'
|
|
1296
1412
|
| 'wechat_pay';
|
|
@@ -1489,6 +1605,18 @@ declare module 'stripe' {
|
|
|
1489
1605
|
discount: string | Stripe.Discount | Stripe.DeletedDiscount;
|
|
1490
1606
|
}
|
|
1491
1607
|
|
|
1608
|
+
interface TotalMarginAmount {
|
|
1609
|
+
/**
|
|
1610
|
+
* The amount, in cents (or local equivalent), of the reduction in line item amount.
|
|
1611
|
+
*/
|
|
1612
|
+
amount: number;
|
|
1613
|
+
|
|
1614
|
+
/**
|
|
1615
|
+
* The margin that was applied to get this margin amount.
|
|
1616
|
+
*/
|
|
1617
|
+
margin: string | Stripe.Margin;
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1492
1620
|
interface TotalPretaxCreditAmount {
|
|
1493
1621
|
/**
|
|
1494
1622
|
* The amount, in cents (or local equivalent), of the pretax credit amount.
|
|
@@ -1508,6 +1636,11 @@ declare module 'stripe' {
|
|
|
1508
1636
|
*/
|
|
1509
1637
|
discount?: string | Stripe.Discount | Stripe.DeletedDiscount;
|
|
1510
1638
|
|
|
1639
|
+
/**
|
|
1640
|
+
* The margin that was applied to get this pretax credit amount.
|
|
1641
|
+
*/
|
|
1642
|
+
margin?: string | Stripe.Margin;
|
|
1643
|
+
|
|
1511
1644
|
/**
|
|
1512
1645
|
* Type of the pretax credit amount referenced.
|
|
1513
1646
|
*/
|
|
@@ -1515,7 +1648,7 @@ declare module 'stripe' {
|
|
|
1515
1648
|
}
|
|
1516
1649
|
|
|
1517
1650
|
namespace TotalPretaxCreditAmount {
|
|
1518
|
-
type Type = 'credit_balance_transaction' | 'discount';
|
|
1651
|
+
type Type = 'credit_balance_transaction' | 'discount' | 'margin';
|
|
1519
1652
|
}
|
|
1520
1653
|
|
|
1521
1654
|
interface TotalTax {
|