stripe 18.0.0 → 18.1.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1187 -110
- package/OPENAPI_VERSION +1 -1
- package/README.md +1 -3
- 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/GiftCards/Cards.js +23 -0
- package/cjs/resources/GiftCards/Transactions.js +33 -0
- package/cjs/resources/Invoices.js +17 -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 +8 -0
- package/cjs/resources/PaymentRecords.js +29 -0
- package/cjs/resources/Privacy/RedactionJobs.js +46 -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 +12 -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 +106 -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/GiftCards/Cards.js +20 -0
- package/esm/resources/GiftCards/Transactions.js +30 -0
- package/esm/resources/Invoices.js +17 -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 +8 -0
- package/esm/resources/PaymentRecords.js +26 -0
- package/esm/resources/Privacy/RedactionJobs.js +43 -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 +9 -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 +83 -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 +228 -1
- package/types/AccountsResource.d.ts +572 -0
- package/types/BalanceSettings.d.ts +85 -0
- package/types/BalanceSettingsResource.d.ts +108 -0
- package/types/BankAccounts.d.ts +2 -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/Capabilities.d.ts +2 -0
- 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 +1294 -0
- package/types/Checkout/Sessions.d.ts +335 -4
- package/types/Checkout/SessionsResource.d.ts +270 -2
- package/types/ConfirmationTokens.d.ts +151 -0
- package/types/Coupons.d.ts +1 -1
- 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 +681 -0
- package/types/Events.d.ts +101 -1
- 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/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 +142 -3
- package/types/InvoicesResource.d.ts +1546 -4
- 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/LoginLinks.d.ts +2 -1
- 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 +1189 -0
- package/types/OrdersResource.d.ts +2981 -0
- package/types/PaymentAttemptRecords.d.ts +2112 -0
- package/types/PaymentAttemptRecordsResource.d.ts +47 -0
- package/types/PaymentIntents.d.ts +680 -2
- package/types/PaymentIntentsResource.d.ts +8438 -3942
- 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/PaymentMethodDomains.d.ts +28 -0
- package/types/PaymentMethods.d.ts +120 -0
- package/types/PaymentMethodsResource.d.ts +170 -5
- 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/Persons.d.ts +2 -0
- package/types/Prices.d.ts +22 -0
- package/types/PricesResource.d.ts +22 -0
- package/types/Privacy/RedactionJobRootObjects.d.ts +35 -0
- package/types/Privacy/RedactionJobValidationErrors.d.ts +30 -0
- package/types/Privacy/RedactionJobs.d.ts +43 -0
- package/types/Privacy/RedactionJobsResource.d.ts +240 -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 +1686 -0
- package/types/QuotePreviewSubscriptionSchedules.d.ts +778 -0
- package/types/Quotes.d.ts +601 -1
- package/types/QuotesResource.d.ts +2565 -218
- package/types/Refunds.d.ts +14 -0
- package/types/SetupAttempts.d.ts +51 -1
- package/types/SetupIntents.d.ts +122 -2
- package/types/SetupIntentsResource.d.ts +739 -12
- 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 +205 -0
- package/types/SubscriptionSchedulesResource.d.ts +1237 -9
- package/types/Subscriptions.d.ts +97 -1
- package/types/SubscriptionsResource.d.ts +390 -8
- package/types/Tax/Associations.d.ts +126 -0
- package/types/Tax/AssociationsResource.d.ts +29 -0
- package/types/Tax/CalculationLineItems.d.ts +1 -1
- package/types/Tax/Forms.d.ts +220 -0
- package/types/Tax/FormsResource.d.ts +107 -0
- package/types/Tax/Registrations.d.ts +9 -0
- package/types/Tax/RegistrationsResource.d.ts +12 -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 +174 -3
- 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/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 +101 -0
- package/types/V2/Core/AccountLinksResource.d.ts +90 -0
- package/types/V2/Core/Accounts/PersonsResource.d.ts +3760 -0
- package/types/V2/Core/Accounts.d.ts +8057 -0
- package/types/V2/Core/AccountsResource.d.ts +10184 -0
- package/types/V2/Core/Persons.d.ts +1857 -0
- package/types/V2/Core/Vault/GbBankAccounts.d.ts +155 -0
- package/types/V2/Core/Vault/GbBankAccountsResource.d.ts +172 -0
- package/types/V2/Core/Vault/UsBankAccounts.d.ts +65 -0
- package/types/V2/Core/Vault/UsBankAccountsResource.d.ts +123 -0
- package/types/V2/EventTypes.d.ts +683 -1
- package/types/V2/FinancialAddressCreditSimulations.d.ts +22 -0
- package/types/V2/FinancialAddressGeneratedMicrodeposits.d.ts +27 -0
- package/types/V2/MoneyManagement/Adjustments.d.ts +105 -0
- package/types/V2/MoneyManagement/AdjustmentsResource.d.ts +83 -0
- package/types/V2/MoneyManagement/FinancialAccounts.d.ts +540 -0
- package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +52 -0
- package/types/V2/MoneyManagement/FinancialAddresses.d.ts +308 -0
- package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +287 -0
- package/types/V2/MoneyManagement/InboundTransfers.d.ts +201 -0
- package/types/V2/MoneyManagement/InboundTransfersResource.d.ts +144 -0
- package/types/V2/MoneyManagement/OutboundPaymentQuotes.d.ts +141 -0
- package/types/V2/MoneyManagement/OutboundPaymentQuotesResource.d.ts +93 -0
- package/types/V2/MoneyManagement/OutboundPayments.d.ts +273 -0
- package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +242 -0
- package/types/V2/MoneyManagement/OutboundSetupIntents.d.ts +92 -0
- package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +296 -0
- package/types/V2/MoneyManagement/OutboundTransfers.d.ts +246 -0
- package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +207 -0
- package/types/V2/MoneyManagement/PayoutMethods.d.ts +146 -0
- package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecResource.d.ts +41 -0
- package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecs.d.ts +82 -0
- package/types/V2/MoneyManagement/PayoutMethodsResource.d.ts +113 -0
- package/types/V2/MoneyManagement/ReceivedCredits.d.ts +280 -0
- package/types/V2/MoneyManagement/ReceivedCreditsResource.d.ts +78 -0
- package/types/V2/MoneyManagement/ReceivedDebits.d.ts +219 -0
- package/types/V2/MoneyManagement/ReceivedDebitsResource.d.ts +48 -0
- package/types/V2/MoneyManagement/TransactionEntries.d.ts +151 -0
- package/types/V2/MoneyManagement/TransactionEntriesResource.d.ts +82 -0
- package/types/V2/MoneyManagement/Transactions.d.ts +166 -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 -2
- package/types/index.d.ts +142 -5
- package/types/lib.d.ts +11 -1
- package/types/test/typescriptTest.ts +3 -3
- package/types/InvoicePaymentsResource.d.ts +0 -74
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace GiftCards {
|
|
6
|
+
/**
|
|
7
|
+
* A gift card transaction represents a single transaction on a referenced gift card.
|
|
8
|
+
* A transaction is in one of three states, `confirmed`, `held` or `canceled`. A `confirmed`
|
|
9
|
+
* transaction is one that has added/deducted funds. A `held` transaction has created a
|
|
10
|
+
* temporary hold on funds, which can then be cancelled or confirmed. A `held` transaction
|
|
11
|
+
* can be confirmed into a `confirmed` transaction, or canceled into a `canceled` transaction.
|
|
12
|
+
* A `canceled` transaction has no effect on a gift card's balance.
|
|
13
|
+
*/
|
|
14
|
+
interface Transaction {
|
|
15
|
+
/**
|
|
16
|
+
* Unique identifier for the object.
|
|
17
|
+
*/
|
|
18
|
+
id: string;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* String representing the object's type. Objects of the same type share the same value.
|
|
22
|
+
*/
|
|
23
|
+
object: 'gift_cards.transaction';
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* The amount of this transaction. A positive value indicates that funds were added to the gift card. A negative value indicates that funds were removed from the gift card.
|
|
27
|
+
*/
|
|
28
|
+
amount: number | null;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Time at which the transaction was confirmed. Measured in seconds since the Unix epoch.
|
|
32
|
+
*/
|
|
33
|
+
confirmed_at: number | null;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Time at which the object was created. Measured in seconds since the Unix epoch.
|
|
37
|
+
*/
|
|
38
|
+
created: number | null;
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* The related Stripe objects that created this gift card transaction.
|
|
42
|
+
*/
|
|
43
|
+
created_by: Transaction.CreatedBy | null;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
|
|
47
|
+
*/
|
|
48
|
+
currency: string | null;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* An arbitrary string attached to the object. Often useful for displaying to users.
|
|
52
|
+
*/
|
|
53
|
+
description: string | null;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* The gift card that this transaction occurred on
|
|
57
|
+
*/
|
|
58
|
+
gift_card: string | null;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* 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.
|
|
62
|
+
*/
|
|
63
|
+
metadata: Stripe.Metadata | null;
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Status of this transaction, one of `held`, `confirmed`, or `canceled`.
|
|
67
|
+
*/
|
|
68
|
+
status: Transaction.Status | null;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* A string that identifies this transaction as part of a group. See the [Connect documentation](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.
|
|
72
|
+
*/
|
|
73
|
+
transfer_group: string | null;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
namespace Transaction {
|
|
77
|
+
interface CreatedBy {
|
|
78
|
+
checkout?: CreatedBy.Checkout;
|
|
79
|
+
|
|
80
|
+
order?: CreatedBy.Order;
|
|
81
|
+
|
|
82
|
+
payment?: CreatedBy.Payment;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* The type of event that created this object.
|
|
86
|
+
*/
|
|
87
|
+
type: CreatedBy.Type;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
namespace CreatedBy {
|
|
91
|
+
interface Checkout {
|
|
92
|
+
/**
|
|
93
|
+
* The Stripe CheckoutSession that created this object.
|
|
94
|
+
*/
|
|
95
|
+
checkout_session: string;
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* The Stripe CheckoutSession LineItem that created this object.
|
|
99
|
+
*/
|
|
100
|
+
line_item: string | null;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
interface Order {
|
|
104
|
+
/**
|
|
105
|
+
* The Stripe Order LineItem that created this object.
|
|
106
|
+
*/
|
|
107
|
+
line_item: string | null;
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* The Stripe Order that created this object.
|
|
111
|
+
*/
|
|
112
|
+
order: string;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
interface Payment {
|
|
116
|
+
/**
|
|
117
|
+
* The PaymentIntent that created this object.
|
|
118
|
+
*/
|
|
119
|
+
payment_intent: string;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
type Type = 'checkout' | 'order' | 'payment';
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
type Status = 'canceled' | 'confirmed' | 'held' | 'invalid';
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
namespace GiftCards {
|
|
6
|
+
interface TransactionCreateParams {
|
|
7
|
+
/**
|
|
8
|
+
* The amount of the transaction. A negative amount deducts funds, and a positive amount adds funds.
|
|
9
|
+
*/
|
|
10
|
+
amount: number;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* The currency of the transaction. This must match the currency of the gift card.
|
|
14
|
+
*/
|
|
15
|
+
currency: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* The gift card to create a new transaction on.
|
|
19
|
+
*/
|
|
20
|
+
gift_card: string;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Whether this is a confirmed transaction. A confirmed transaction immediately deducts from/adds to the `amount_available` on the gift card. Otherwise, it creates a held transaction that increments the `amount_held` on the gift card.
|
|
24
|
+
*/
|
|
25
|
+
confirm?: boolean;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Related objects which created this transaction.
|
|
29
|
+
*/
|
|
30
|
+
created_by?: TransactionCreateParams.CreatedBy;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* An arbitrary string attached to the object. Often useful for displaying to users.
|
|
34
|
+
*/
|
|
35
|
+
description?: string;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Specifies which fields in the response should be expanded.
|
|
39
|
+
*/
|
|
40
|
+
expand?: Array<string>;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* 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`.
|
|
44
|
+
*/
|
|
45
|
+
metadata?: Stripe.MetadataParam;
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* A string that identifies this transaction as part of a group. See the [Connect documentation](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.
|
|
49
|
+
*/
|
|
50
|
+
transfer_group?: string;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
namespace TransactionCreateParams {
|
|
54
|
+
interface CreatedBy {
|
|
55
|
+
/**
|
|
56
|
+
* The details for the payment that created this object.
|
|
57
|
+
*/
|
|
58
|
+
payment: CreatedBy.Payment;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* The type of event that created this object.
|
|
62
|
+
*/
|
|
63
|
+
type: 'payment';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
namespace CreatedBy {
|
|
67
|
+
interface Payment {
|
|
68
|
+
/**
|
|
69
|
+
* The PaymentIntent used to collect payment for this object.
|
|
70
|
+
*/
|
|
71
|
+
payment_intent: string;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
interface TransactionRetrieveParams {
|
|
77
|
+
/**
|
|
78
|
+
* Specifies which fields in the response should be expanded.
|
|
79
|
+
*/
|
|
80
|
+
expand?: Array<string>;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
interface TransactionUpdateParams {
|
|
84
|
+
/**
|
|
85
|
+
* An arbitrary string attached to the object. Often useful for displaying to users.
|
|
86
|
+
*/
|
|
87
|
+
description?: string;
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Specifies which fields in the response should be expanded.
|
|
91
|
+
*/
|
|
92
|
+
expand?: Array<string>;
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* 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`.
|
|
96
|
+
*/
|
|
97
|
+
metadata?: Stripe.Emptyable<Stripe.MetadataParam>;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
interface TransactionListParams extends PaginationParams {
|
|
101
|
+
/**
|
|
102
|
+
* Specifies which fields in the response should be expanded.
|
|
103
|
+
*/
|
|
104
|
+
expand?: Array<string>;
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* The gift card to list transactions for.
|
|
108
|
+
*/
|
|
109
|
+
gift_card?: string;
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* A string that identifies this transaction as part of a group. See the [Connect documentation](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.
|
|
113
|
+
*/
|
|
114
|
+
transfer_group?: string;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
interface TransactionCancelParams {
|
|
118
|
+
/**
|
|
119
|
+
* Specifies which fields in the response should be expanded.
|
|
120
|
+
*/
|
|
121
|
+
expand?: Array<string>;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
interface TransactionConfirmParams {
|
|
125
|
+
/**
|
|
126
|
+
* Specifies which fields in the response should be expanded.
|
|
127
|
+
*/
|
|
128
|
+
expand?: Array<string>;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
class TransactionsResource {
|
|
132
|
+
/**
|
|
133
|
+
* Create a gift card transaction
|
|
134
|
+
*/
|
|
135
|
+
create(
|
|
136
|
+
params: TransactionCreateParams,
|
|
137
|
+
options?: RequestOptions
|
|
138
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Retrieves the gift card transaction.
|
|
142
|
+
*/
|
|
143
|
+
retrieve(
|
|
144
|
+
id: string,
|
|
145
|
+
params?: TransactionRetrieveParams,
|
|
146
|
+
options?: RequestOptions
|
|
147
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
148
|
+
retrieve(
|
|
149
|
+
id: string,
|
|
150
|
+
options?: RequestOptions
|
|
151
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Update a gift card transaction
|
|
155
|
+
*/
|
|
156
|
+
update(
|
|
157
|
+
id: string,
|
|
158
|
+
params?: TransactionUpdateParams,
|
|
159
|
+
options?: RequestOptions
|
|
160
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* List gift card transactions for a gift card
|
|
164
|
+
*/
|
|
165
|
+
list(
|
|
166
|
+
params?: TransactionListParams,
|
|
167
|
+
options?: RequestOptions
|
|
168
|
+
): ApiListPromise<Stripe.GiftCards.Transaction>;
|
|
169
|
+
list(
|
|
170
|
+
options?: RequestOptions
|
|
171
|
+
): ApiListPromise<Stripe.GiftCards.Transaction>;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Cancel a gift card transaction
|
|
175
|
+
*/
|
|
176
|
+
cancel(
|
|
177
|
+
id: string,
|
|
178
|
+
params?: TransactionCancelParams,
|
|
179
|
+
options?: RequestOptions
|
|
180
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
181
|
+
cancel(
|
|
182
|
+
id: string,
|
|
183
|
+
options?: RequestOptions
|
|
184
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* Confirm a gift card transaction
|
|
188
|
+
*/
|
|
189
|
+
confirm(
|
|
190
|
+
id: string,
|
|
191
|
+
params?: TransactionConfirmParams,
|
|
192
|
+
options?: RequestOptions
|
|
193
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
194
|
+
confirm(
|
|
195
|
+
id: string,
|
|
196
|
+
options?: RequestOptions
|
|
197
|
+
): Promise<Stripe.Response<Stripe.GiftCards.Transaction>>;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
}
|
|
@@ -85,6 +85,11 @@ declare module 'stripe' {
|
|
|
85
85
|
*/
|
|
86
86
|
related_customer: string | null;
|
|
87
87
|
|
|
88
|
+
/**
|
|
89
|
+
* Token referencing a Customer Account resource.
|
|
90
|
+
*/
|
|
91
|
+
related_customer_account?: string | null;
|
|
92
|
+
|
|
88
93
|
/**
|
|
89
94
|
* Status of this VerificationSession. [Learn more about the lifecycle of sessions](https://stripe.com/docs/identity/how-sessions-work).
|
|
90
95
|
*/
|
|
@@ -34,6 +34,11 @@ declare module 'stripe' {
|
|
|
34
34
|
*/
|
|
35
35
|
related_customer?: string;
|
|
36
36
|
|
|
37
|
+
/**
|
|
38
|
+
* Token referencing a Customer Account resource.
|
|
39
|
+
*/
|
|
40
|
+
related_customer_account?: string;
|
|
41
|
+
|
|
37
42
|
/**
|
|
38
43
|
* The URL that the user will be redirected to upon completing the verification flow.
|
|
39
44
|
*/
|
|
@@ -204,6 +209,8 @@ declare module 'stripe' {
|
|
|
204
209
|
|
|
205
210
|
related_customer?: string;
|
|
206
211
|
|
|
212
|
+
related_customer_account?: string;
|
|
213
|
+
|
|
207
214
|
/**
|
|
208
215
|
* Only return VerificationSessions with this status. [Learn more about the lifecycle of sessions](https://stripe.com/docs/identity/how-sessions-work).
|
|
209
216
|
*/
|
package/types/InvoiceItems.d.ts
CHANGED
|
@@ -61,6 +61,11 @@ declare module 'stripe' {
|
|
|
61
61
|
*/
|
|
62
62
|
customer: string | Stripe.Customer | Stripe.DeletedCustomer;
|
|
63
63
|
|
|
64
|
+
/**
|
|
65
|
+
* The ID of the account who will be billed when this invoice item is billed.
|
|
66
|
+
*/
|
|
67
|
+
customer_account?: string | null;
|
|
68
|
+
|
|
64
69
|
/**
|
|
65
70
|
* Time at which the object was created. Measured in seconds since the Unix epoch.
|
|
66
71
|
*/
|
|
@@ -96,6 +101,11 @@ declare module 'stripe' {
|
|
|
96
101
|
*/
|
|
97
102
|
livemode: boolean;
|
|
98
103
|
|
|
104
|
+
/**
|
|
105
|
+
* The margins which apply to the invoice item. When set, the `default_margins` on the invoice do not apply to this invoice item.
|
|
106
|
+
*/
|
|
107
|
+
margins?: Array<string | Stripe.Margin> | null;
|
|
108
|
+
|
|
99
109
|
/**
|
|
100
110
|
* 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.
|
|
101
111
|
*/
|
|
@@ -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
|
*/
|