stripe 17.4.0 → 17.5.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 +1000 -109
- package/README.md +4 -4
- package/VERSION +1 -1
- package/cjs/resources/AccountNotices.js +21 -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/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/PaymentAttemptRecords.js +17 -0
- package/cjs/resources/PaymentIntents.js +8 -0
- package/cjs/resources/PaymentRecords.js +29 -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.js +48 -10
- package/cjs/stripe.core.js +1 -1
- package/esm/resources/AccountNotices.js +18 -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/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/PaymentAttemptRecords.js +14 -0
- package/esm/resources/PaymentIntents.js +8 -0
- package/esm/resources/PaymentRecords.js +26 -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.js +33 -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 +50 -5
- package/types/AccountSessionsResource.d.ts +360 -5
- package/types/Accounts.d.ts +191 -2
- package/types/AccountsResource.d.ts +522 -2
- package/types/BalanceTransactions.d.ts +3 -1
- package/types/BalanceTransactionsResource.d.ts +1 -1
- package/types/Billing/CreditBalanceSummaryResource.d.ts +2 -2
- package/types/Billing/CreditBalanceTransactionsResource.d.ts +2 -2
- package/types/Billing/CreditGrants.d.ts +2 -2
- package/types/Billing/CreditGrantsResource.d.ts +8 -8
- package/types/Billing/MeterErrorReports.d.ts +106 -0
- package/types/Billing/MeterEventAdjustmentsResource.d.ts +1 -1
- package/types/Billing/MeterEvents.d.ts +1 -2
- package/types/Billing/MeterEventsResource.d.ts +2 -2
- package/types/Billing/Meters.d.ts +1 -1
- package/types/Billing/MetersResource.d.ts +8 -8
- package/types/BillingPortal/Configurations.d.ts +1 -1
- package/types/Capabilities.d.ts +1 -1
- 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/Charges.d.ts +244 -2
- package/types/ChargesResource.d.ts +1294 -0
- package/types/Checkout/Sessions.d.ts +333 -6
- package/types/Checkout/SessionsResource.d.ts +460 -8
- package/types/ConfirmationTokens.d.ts +99 -0
- package/types/Coupons.d.ts +1 -1
- package/types/CouponsResource.d.ts +1 -1
- package/types/CreditNotes.d.ts +21 -0
- package/types/CreditNotesResource.d.ts +51 -0
- package/types/CustomersResource.d.ts +8 -1
- package/types/EventTypes.d.ts +598 -2
- package/types/Events.d.ts +93 -0
- package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
- package/types/FinancialConnections/Accounts.d.ts +29 -1
- package/types/FinancialConnections/AccountsResource.d.ts +35 -3
- package/types/FinancialConnections/Institutions.d.ts +93 -0
- package/types/FinancialConnections/InstitutionsResource.d.ts +47 -0
- package/types/FinancialConnections/Sessions.d.ts +49 -1
- package/types/FinancialConnections/SessionsResource.d.ts +38 -1
- package/types/FundingInstructions.d.ts +21 -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/InvoiceItems.d.ts +5 -0
- package/types/InvoiceItemsResource.d.ts +98 -0
- package/types/InvoiceLineItems.d.ts +28 -1
- package/types/InvoicePayments.d.ts +113 -0
- package/types/Invoices.d.ts +156 -2
- package/types/InvoicesResource.d.ts +5537 -1852
- package/types/Issuing/Authorizations.d.ts +1 -1
- 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 +73 -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 +103 -0
- package/types/Issuing/Transactions.d.ts +2 -0
- package/types/Issuing/TransactionsResource.d.ts +5 -0
- package/types/LineItems.d.ts +33 -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 +1160 -0
- package/types/OrdersResource.d.ts +2923 -0
- package/types/PaymentAttemptRecords.d.ts +242 -0
- package/types/PaymentAttemptRecordsResource.d.ts +47 -0
- package/types/PaymentIntents.d.ts +688 -4
- package/types/PaymentIntentsResource.d.ts +7994 -3677
- package/types/PaymentLinks.d.ts +6 -0
- package/types/PaymentLinksResource.d.ts +23 -2
- package/types/PaymentMethodConfigurations.d.ts +180 -0
- package/types/PaymentMethodConfigurationsResource.d.ts +250 -0
- package/types/PaymentMethods.d.ts +99 -0
- package/types/PaymentMethodsResource.d.ts +133 -0
- package/types/PaymentRecords.d.ts +259 -0
- package/types/PaymentRecordsResource.d.ts +455 -0
- package/types/Prices.d.ts +22 -0
- package/types/PricesResource.d.ts +22 -0
- package/types/Products.d.ts +39 -0
- package/types/ProductsResource.d.ts +36 -0
- package/types/QuoteLines.d.ts +634 -0
- package/types/QuotePreviewInvoices.d.ts +1634 -0
- package/types/QuotePreviewSubscriptionSchedules.d.ts +824 -0
- package/types/Quotes.d.ts +591 -1
- package/types/QuotesResource.d.ts +2526 -194
- package/types/Refunds.d.ts +14 -0
- package/types/SetupAttempts.d.ts +48 -0
- package/types/SetupIntents.d.ts +133 -3
- package/types/SetupIntentsResource.d.ts +681 -9
- package/types/Sources.d.ts +23 -0
- package/types/SubscriptionItems.d.ts +21 -0
- package/types/SubscriptionItemsResource.d.ts +109 -0
- package/types/SubscriptionSchedules.d.ts +210 -0
- package/types/SubscriptionSchedulesResource.d.ts +1234 -16
- package/types/Subscriptions.d.ts +96 -1
- package/types/SubscriptionsResource.d.ts +372 -5
- 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/Terminal/LocationsResource.d.ts +1 -1
- package/types/Terminal/ReaderCollectedData.d.ts +51 -0
- package/types/Terminal/ReaderCollectedDataResource.d.ts +29 -0
- package/types/Terminal/Readers.d.ts +278 -0
- package/types/Terminal/ReadersResource.d.ts +215 -0
- package/types/TestHelpers/ConfirmationTokensResource.d.ts +104 -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 +10 -3
- 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/WebhookEndpointsResource.d.ts +70 -0
- package/types/index.d.ts +62 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
import { StripeResource } from '../../StripeResource.js';
|
|
3
|
+
const stripeMethod = StripeResource.method;
|
|
4
|
+
export const ReaderCollectedData = StripeResource.extend({
|
|
5
|
+
retrieve: stripeMethod({
|
|
6
|
+
method: 'GET',
|
|
7
|
+
fullPath: '/v1/terminal/reader_collected_data/{reader_collected_data}',
|
|
8
|
+
}),
|
|
9
|
+
});
|
|
@@ -24,6 +24,18 @@ export const Readers = StripeResource.extend({
|
|
|
24
24
|
method: 'POST',
|
|
25
25
|
fullPath: '/v1/terminal/readers/{reader}/cancel_action',
|
|
26
26
|
}),
|
|
27
|
+
collectInputs: stripeMethod({
|
|
28
|
+
method: 'POST',
|
|
29
|
+
fullPath: '/v1/terminal/readers/{reader}/collect_inputs',
|
|
30
|
+
}),
|
|
31
|
+
collectPaymentMethod: stripeMethod({
|
|
32
|
+
method: 'POST',
|
|
33
|
+
fullPath: '/v1/terminal/readers/{reader}/collect_payment_method',
|
|
34
|
+
}),
|
|
35
|
+
confirmPaymentIntent: stripeMethod({
|
|
36
|
+
method: 'POST',
|
|
37
|
+
fullPath: '/v1/terminal/readers/{reader}/confirm_payment_intent',
|
|
38
|
+
}),
|
|
27
39
|
processPaymentIntent: stripeMethod({
|
|
28
40
|
method: 'POST',
|
|
29
41
|
fullPath: '/v1/terminal/readers/{reader}/process_payment_intent',
|
package/esm/resources.js
CHANGED
|
@@ -3,11 +3,13 @@ import { resourceNamespace } from './ResourceNamespace.js';
|
|
|
3
3
|
import { Accounts as FinancialConnectionsAccounts } from './resources/FinancialConnections/Accounts.js';
|
|
4
4
|
import { ActiveEntitlements as EntitlementsActiveEntitlements } from './resources/Entitlements/ActiveEntitlements.js';
|
|
5
5
|
import { Alerts as BillingAlerts } from './resources/Billing/Alerts.js';
|
|
6
|
+
import { Associations as TaxAssociations } from './resources/Tax/Associations.js';
|
|
6
7
|
import { Authorizations as TestHelpersIssuingAuthorizations } from './resources/TestHelpers/Issuing/Authorizations.js';
|
|
7
8
|
import { Authorizations as IssuingAuthorizations } from './resources/Issuing/Authorizations.js';
|
|
8
9
|
import { Calculations as TaxCalculations } from './resources/Tax/Calculations.js';
|
|
9
10
|
import { Cardholders as IssuingCardholders } from './resources/Issuing/Cardholders.js';
|
|
10
11
|
import { Cards as TestHelpersIssuingCards } from './resources/TestHelpers/Issuing/Cards.js';
|
|
12
|
+
import { Cards as GiftCardsCards } from './resources/GiftCards/Cards.js';
|
|
11
13
|
import { Cards as IssuingCards } from './resources/Issuing/Cards.js';
|
|
12
14
|
import { Configurations as BillingPortalConfigurations } from './resources/BillingPortal/Configurations.js';
|
|
13
15
|
import { Configurations as TerminalConfigurations } from './resources/Terminal/Configurations.js';
|
|
@@ -17,16 +19,24 @@ import { CreditBalanceSummary as BillingCreditBalanceSummary } from './resources
|
|
|
17
19
|
import { CreditBalanceTransactions as BillingCreditBalanceTransactions } from './resources/Billing/CreditBalanceTransactions.js';
|
|
18
20
|
import { CreditGrants as BillingCreditGrants } from './resources/Billing/CreditGrants.js';
|
|
19
21
|
import { CreditReversals as TreasuryCreditReversals } from './resources/Treasury/CreditReversals.js';
|
|
22
|
+
import { CreditUnderwritingRecords as IssuingCreditUnderwritingRecords } from './resources/Issuing/CreditUnderwritingRecords.js';
|
|
20
23
|
import { Customers as TestHelpersCustomers } from './resources/TestHelpers/Customers.js';
|
|
21
24
|
import { DebitReversals as TreasuryDebitReversals } from './resources/Treasury/DebitReversals.js';
|
|
25
|
+
import { DisputeSettlementDetails as IssuingDisputeSettlementDetails } from './resources/Issuing/DisputeSettlementDetails.js';
|
|
22
26
|
import { Disputes as IssuingDisputes } from './resources/Issuing/Disputes.js';
|
|
23
27
|
import { EarlyFraudWarnings as RadarEarlyFraudWarnings } from './resources/Radar/EarlyFraudWarnings.js';
|
|
24
28
|
import { EventDestinations as V2CoreEventDestinations } from './resources/V2/Core/EventDestinations.js';
|
|
25
29
|
import { Events as V2CoreEvents } from './resources/V2/Core/Events.js';
|
|
26
30
|
import { Features as EntitlementsFeatures } from './resources/Entitlements/Features.js';
|
|
27
31
|
import { FinancialAccounts as TreasuryFinancialAccounts } from './resources/Treasury/FinancialAccounts.js';
|
|
32
|
+
import { FinancingOffers as CapitalFinancingOffers } from './resources/Capital/FinancingOffers.js';
|
|
33
|
+
import { FinancingSummary as CapitalFinancingSummary } from './resources/Capital/FinancingSummary.js';
|
|
34
|
+
import { FinancingTransactions as CapitalFinancingTransactions } from './resources/Capital/FinancingTransactions.js';
|
|
35
|
+
import { Forms as TaxForms } from './resources/Tax/Forms.js';
|
|
36
|
+
import { FraudLiabilityDebits as IssuingFraudLiabilityDebits } from './resources/Issuing/FraudLiabilityDebits.js';
|
|
28
37
|
import { InboundTransfers as TestHelpersTreasuryInboundTransfers } from './resources/TestHelpers/Treasury/InboundTransfers.js';
|
|
29
38
|
import { InboundTransfers as TreasuryInboundTransfers } from './resources/Treasury/InboundTransfers.js';
|
|
39
|
+
import { Institutions as FinancialConnectionsInstitutions } from './resources/FinancialConnections/Institutions.js';
|
|
30
40
|
import { Locations as TerminalLocations } from './resources/Terminal/Locations.js';
|
|
31
41
|
import { MeterEventAdjustments as BillingMeterEventAdjustments } from './resources/Billing/MeterEventAdjustments.js';
|
|
32
42
|
import { MeterEventAdjustments as V2BillingMeterEventAdjustments } from './resources/V2/Billing/MeterEventAdjustments.js';
|
|
@@ -44,6 +54,7 @@ import { PersonalizationDesigns as TestHelpersIssuingPersonalizationDesigns } fr
|
|
|
44
54
|
import { PersonalizationDesigns as IssuingPersonalizationDesigns } from './resources/Issuing/PersonalizationDesigns.js';
|
|
45
55
|
import { PhysicalBundles as IssuingPhysicalBundles } from './resources/Issuing/PhysicalBundles.js';
|
|
46
56
|
import { Products as ClimateProducts } from './resources/Climate/Products.js';
|
|
57
|
+
import { ReaderCollectedData as TerminalReaderCollectedData } from './resources/Terminal/ReaderCollectedData.js';
|
|
47
58
|
import { Readers as TestHelpersTerminalReaders } from './resources/TestHelpers/Terminal/Readers.js';
|
|
48
59
|
import { Readers as TerminalReaders } from './resources/Terminal/Readers.js';
|
|
49
60
|
import { ReceivedCredits as TestHelpersTreasuryReceivedCredits } from './resources/TestHelpers/Treasury/ReceivedCredits.js';
|
|
@@ -67,6 +78,7 @@ import { Tokens as IssuingTokens } from './resources/Issuing/Tokens.js';
|
|
|
67
78
|
import { TransactionEntries as TreasuryTransactionEntries } from './resources/Treasury/TransactionEntries.js';
|
|
68
79
|
import { Transactions as TestHelpersIssuingTransactions } from './resources/TestHelpers/Issuing/Transactions.js';
|
|
69
80
|
import { Transactions as FinancialConnectionsTransactions } from './resources/FinancialConnections/Transactions.js';
|
|
81
|
+
import { Transactions as GiftCardsTransactions } from './resources/GiftCards/Transactions.js';
|
|
70
82
|
import { Transactions as IssuingTransactions } from './resources/Issuing/Transactions.js';
|
|
71
83
|
import { Transactions as TaxTransactions } from './resources/Tax/Transactions.js';
|
|
72
84
|
import { Transactions as TreasuryTransactions } from './resources/Treasury/Transactions.js';
|
|
@@ -76,6 +88,7 @@ import { VerificationReports as IdentityVerificationReports } from './resources/
|
|
|
76
88
|
import { VerificationSessions as IdentityVerificationSessions } from './resources/Identity/VerificationSessions.js';
|
|
77
89
|
export { Accounts as Account } from './resources/Accounts.js';
|
|
78
90
|
export { AccountLinks } from './resources/AccountLinks.js';
|
|
91
|
+
export { AccountNotices } from './resources/AccountNotices.js';
|
|
79
92
|
export { AccountSessions } from './resources/AccountSessions.js';
|
|
80
93
|
export { Accounts } from './resources/Accounts.js';
|
|
81
94
|
export { ApplePayDomains } from './resources/ApplePayDomains.js';
|
|
@@ -99,12 +112,16 @@ export { InvoiceItems } from './resources/InvoiceItems.js';
|
|
|
99
112
|
export { InvoiceRenderingTemplates } from './resources/InvoiceRenderingTemplates.js';
|
|
100
113
|
export { Invoices } from './resources/Invoices.js';
|
|
101
114
|
export { Mandates } from './resources/Mandates.js';
|
|
115
|
+
export { Margins } from './resources/Margins.js';
|
|
102
116
|
export { OAuth } from './resources/OAuth.js';
|
|
117
|
+
export { Orders } from './resources/Orders.js';
|
|
118
|
+
export { PaymentAttemptRecords } from './resources/PaymentAttemptRecords.js';
|
|
103
119
|
export { PaymentIntents } from './resources/PaymentIntents.js';
|
|
104
120
|
export { PaymentLinks } from './resources/PaymentLinks.js';
|
|
105
121
|
export { PaymentMethodConfigurations } from './resources/PaymentMethodConfigurations.js';
|
|
106
122
|
export { PaymentMethodDomains } from './resources/PaymentMethodDomains.js';
|
|
107
123
|
export { PaymentMethods } from './resources/PaymentMethods.js';
|
|
124
|
+
export { PaymentRecords } from './resources/PaymentRecords.js';
|
|
108
125
|
export { Payouts } from './resources/Payouts.js';
|
|
109
126
|
export { Plans } from './resources/Plans.js';
|
|
110
127
|
export { Prices } from './resources/Prices.js';
|
|
@@ -141,6 +158,11 @@ export const BillingPortal = resourceNamespace('billingPortal', {
|
|
|
141
158
|
Configurations: BillingPortalConfigurations,
|
|
142
159
|
Sessions: BillingPortalSessions,
|
|
143
160
|
});
|
|
161
|
+
export const Capital = resourceNamespace('capital', {
|
|
162
|
+
FinancingOffers: CapitalFinancingOffers,
|
|
163
|
+
FinancingSummary: CapitalFinancingSummary,
|
|
164
|
+
FinancingTransactions: CapitalFinancingTransactions,
|
|
165
|
+
});
|
|
144
166
|
export const Checkout = resourceNamespace('checkout', {
|
|
145
167
|
Sessions: CheckoutSessions,
|
|
146
168
|
});
|
|
@@ -155,12 +177,17 @@ export const Entitlements = resourceNamespace('entitlements', {
|
|
|
155
177
|
});
|
|
156
178
|
export const FinancialConnections = resourceNamespace('financialConnections', {
|
|
157
179
|
Accounts: FinancialConnectionsAccounts,
|
|
180
|
+
Institutions: FinancialConnectionsInstitutions,
|
|
158
181
|
Sessions: FinancialConnectionsSessions,
|
|
159
182
|
Transactions: FinancialConnectionsTransactions,
|
|
160
183
|
});
|
|
161
184
|
export const Forwarding = resourceNamespace('forwarding', {
|
|
162
185
|
Requests: ForwardingRequests,
|
|
163
186
|
});
|
|
187
|
+
export const GiftCards = resourceNamespace('giftCards', {
|
|
188
|
+
Cards: GiftCardsCards,
|
|
189
|
+
Transactions: GiftCardsTransactions,
|
|
190
|
+
});
|
|
164
191
|
export const Identity = resourceNamespace('identity', {
|
|
165
192
|
VerificationReports: IdentityVerificationReports,
|
|
166
193
|
VerificationSessions: IdentityVerificationSessions,
|
|
@@ -169,7 +196,10 @@ export const Issuing = resourceNamespace('issuing', {
|
|
|
169
196
|
Authorizations: IssuingAuthorizations,
|
|
170
197
|
Cardholders: IssuingCardholders,
|
|
171
198
|
Cards: IssuingCards,
|
|
199
|
+
CreditUnderwritingRecords: IssuingCreditUnderwritingRecords,
|
|
200
|
+
DisputeSettlementDetails: IssuingDisputeSettlementDetails,
|
|
172
201
|
Disputes: IssuingDisputes,
|
|
202
|
+
FraudLiabilityDebits: IssuingFraudLiabilityDebits,
|
|
173
203
|
PersonalizationDesigns: IssuingPersonalizationDesigns,
|
|
174
204
|
PhysicalBundles: IssuingPhysicalBundles,
|
|
175
205
|
Tokens: IssuingTokens,
|
|
@@ -188,7 +218,9 @@ export const Sigma = resourceNamespace('sigma', {
|
|
|
188
218
|
ScheduledQueryRuns: SigmaScheduledQueryRuns,
|
|
189
219
|
});
|
|
190
220
|
export const Tax = resourceNamespace('tax', {
|
|
221
|
+
Associations: TaxAssociations,
|
|
191
222
|
Calculations: TaxCalculations,
|
|
223
|
+
Forms: TaxForms,
|
|
192
224
|
Registrations: TaxRegistrations,
|
|
193
225
|
Settings: TaxSettings,
|
|
194
226
|
Transactions: TaxTransactions,
|
|
@@ -197,6 +229,7 @@ export const Terminal = resourceNamespace('terminal', {
|
|
|
197
229
|
Configurations: TerminalConfigurations,
|
|
198
230
|
ConnectionTokens: TerminalConnectionTokens,
|
|
199
231
|
Locations: TerminalLocations,
|
|
232
|
+
ReaderCollectedData: TerminalReaderCollectedData,
|
|
200
233
|
Readers: TerminalReaders,
|
|
201
234
|
});
|
|
202
235
|
export const TestHelpers = resourceNamespace('testHelpers', {
|
package/esm/stripe.core.js
CHANGED
|
@@ -33,7 +33,7 @@ const ALLOWED_CONFIG_PROPERTIES = [
|
|
|
33
33
|
];
|
|
34
34
|
const defaultRequestSenderFactory = (stripe) => new RequestSender(stripe, StripeResource.MAX_BUFFERED_REQUEST_METRICS);
|
|
35
35
|
export function createStripe(platformFunctions, requestSender = defaultRequestSenderFactory) {
|
|
36
|
-
Stripe.PACKAGE_VERSION = '17.
|
|
36
|
+
Stripe.PACKAGE_VERSION = '17.5.0-beta.2';
|
|
37
37
|
Stripe.USER_AGENT = Object.assign({ bindings_version: Stripe.PACKAGE_VERSION, lang: 'node', publisher: 'stripe', uname: null, typescript: false }, determineProcessUserAgentProperties());
|
|
38
38
|
Stripe.StripeResource = StripeResource;
|
|
39
39
|
Stripe.resources = resources;
|
package/package.json
CHANGED
|
@@ -60,7 +60,11 @@ declare module 'stripe' {
|
|
|
60
60
|
type FutureRequirements = 'include' | 'omit';
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
type Type =
|
|
63
|
+
type Type =
|
|
64
|
+
| 'account_onboarding'
|
|
65
|
+
| 'account_update'
|
|
66
|
+
| 'capital_financing_offer'
|
|
67
|
+
| 'capital_financing_reporting';
|
|
64
68
|
}
|
|
65
69
|
|
|
66
70
|
class AccountLinksResource {
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
/**
|
|
6
|
+
* A notice to a Connected account. Notice can be sent by Stripe on your behalf or you can opt to send the notices yourself.
|
|
7
|
+
*
|
|
8
|
+
* See the [guide to send notices](https://stripe.com/docs/issuing/compliance-us/issuing-regulated-customer-notices) to your connected accounts.
|
|
9
|
+
*/
|
|
10
|
+
interface AccountNotice {
|
|
11
|
+
/**
|
|
12
|
+
* Unique identifier for the object.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* String representing the object's type. Objects of the same type share the same value.
|
|
18
|
+
*/
|
|
19
|
+
object: 'account_notice';
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Time at which the object was created. Measured in seconds since the Unix epoch.
|
|
23
|
+
*/
|
|
24
|
+
created: number;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* When present, the deadline for sending the notice to meet the relevant regulations.
|
|
28
|
+
*/
|
|
29
|
+
deadline: number | null;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Information about the email when sent.
|
|
33
|
+
*/
|
|
34
|
+
email: AccountNotice.Email | null;
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Information about objects related to the notice.
|
|
38
|
+
*/
|
|
39
|
+
linked_objects: AccountNotice.LinkedObjects | null;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
|
|
43
|
+
*/
|
|
44
|
+
livemode: boolean;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* 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.
|
|
48
|
+
*/
|
|
49
|
+
metadata: Stripe.Metadata | null;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Reason the notice is being sent. The reason determines what copy the notice must contain. See the [regulated customer notices](https://stripe.com/docs/issuing/compliance-us/issuing-regulated-customer-notices) guide. All reasons might not apply to your integration, and Stripe might add new reasons in the future, so we recommend an internal warning when you receive an unknown reason.
|
|
53
|
+
*/
|
|
54
|
+
reason: AccountNotice.Reason;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Date when the notice was sent. When absent, you must send the notice, update the content of the email and date when it was sent.
|
|
58
|
+
*/
|
|
59
|
+
sent_at: number | null;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
namespace AccountNotice {
|
|
63
|
+
interface Email {
|
|
64
|
+
/**
|
|
65
|
+
* Content of the email in plain text. The copy must match exactly the language that Stripe Compliance has approved for use.
|
|
66
|
+
*/
|
|
67
|
+
plain_text: string;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Email address of the recipient.
|
|
71
|
+
*/
|
|
72
|
+
recipient: string;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Subject of the email.
|
|
76
|
+
*/
|
|
77
|
+
subject: string;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
interface LinkedObjects {
|
|
81
|
+
/**
|
|
82
|
+
* Associated [Capability](https://stripe.com/docs/api/capabilities)
|
|
83
|
+
*/
|
|
84
|
+
capability: string | null;
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Associated [Credit Underwriting Record](https://stripe.com/docs/api/issuing/credit_underwriting_record)
|
|
88
|
+
*/
|
|
89
|
+
issuing_credit_underwriting_record?: string | null;
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Associated [Issuing Dispute](https://stripe.com/docs/api/issuing/disputes)
|
|
93
|
+
*/
|
|
94
|
+
issuing_dispute: string | null;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
type Reason =
|
|
98
|
+
| 'issuing.account_closed_for_inactivity'
|
|
99
|
+
| 'issuing.account_closed_for_not_providing_business_model_clarification'
|
|
100
|
+
| 'issuing.account_closed_for_not_providing_url_clarification'
|
|
101
|
+
| 'issuing.account_closed_for_not_providing_use_case_clarification'
|
|
102
|
+
| 'issuing.account_closed_for_terms_of_service_violation'
|
|
103
|
+
| 'issuing.application_rejected_for_failure_to_verify'
|
|
104
|
+
| 'issuing.credit_application_rejected'
|
|
105
|
+
| 'issuing.credit_increase_application_rejected'
|
|
106
|
+
| 'issuing.credit_limit_decreased'
|
|
107
|
+
| 'issuing.credit_line_closed'
|
|
108
|
+
| 'issuing.dispute_lost'
|
|
109
|
+
| 'issuing.dispute_submitted'
|
|
110
|
+
| 'issuing.dispute_won';
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
// File generated from our OpenAPI spec
|
|
2
|
+
|
|
3
|
+
declare module 'stripe' {
|
|
4
|
+
namespace Stripe {
|
|
5
|
+
interface AccountNoticeRetrieveParams {
|
|
6
|
+
/**
|
|
7
|
+
* Specifies which fields in the response should be expanded.
|
|
8
|
+
*/
|
|
9
|
+
expand?: Array<string>;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
interface AccountNoticeUpdateParams {
|
|
13
|
+
/**
|
|
14
|
+
* Information about the email you sent.
|
|
15
|
+
*/
|
|
16
|
+
email: AccountNoticeUpdateParams.Email;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Date when you sent the notice.
|
|
20
|
+
*/
|
|
21
|
+
sent_at: number;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Specifies which fields in the response should be expanded.
|
|
25
|
+
*/
|
|
26
|
+
expand?: Array<string>;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* 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`.
|
|
30
|
+
*/
|
|
31
|
+
metadata?: Stripe.MetadataParam;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
namespace AccountNoticeUpdateParams {
|
|
35
|
+
interface Email {
|
|
36
|
+
/**
|
|
37
|
+
* Content of the email in plain text. The copy must match exactly the language that Stripe Compliance has approved for use.
|
|
38
|
+
*/
|
|
39
|
+
plain_text: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Email address of the recipient.
|
|
43
|
+
*/
|
|
44
|
+
recipient: string;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Subject of the email.
|
|
48
|
+
*/
|
|
49
|
+
subject: string;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
interface AccountNoticeListParams extends PaginationParams {
|
|
54
|
+
/**
|
|
55
|
+
* Specifies which fields in the response should be expanded.
|
|
56
|
+
*/
|
|
57
|
+
expand?: Array<string>;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Set to false to only return unsent AccountNotices.
|
|
61
|
+
*/
|
|
62
|
+
sent?: boolean;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
class AccountNoticesResource {
|
|
66
|
+
/**
|
|
67
|
+
* Retrieves an AccountNotice object.
|
|
68
|
+
*/
|
|
69
|
+
retrieve(
|
|
70
|
+
id: string,
|
|
71
|
+
params?: AccountNoticeRetrieveParams,
|
|
72
|
+
options?: RequestOptions
|
|
73
|
+
): Promise<Stripe.Response<Stripe.AccountNotice>>;
|
|
74
|
+
retrieve(
|
|
75
|
+
id: string,
|
|
76
|
+
options?: RequestOptions
|
|
77
|
+
): Promise<Stripe.Response<Stripe.AccountNotice>>;
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Updates an AccountNotice object.
|
|
81
|
+
*/
|
|
82
|
+
update(
|
|
83
|
+
id: string,
|
|
84
|
+
params: AccountNoticeUpdateParams,
|
|
85
|
+
options?: RequestOptions
|
|
86
|
+
): Promise<Stripe.Response<Stripe.AccountNotice>>;
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Retrieves a list of AccountNotice objects. The objects are sorted in descending order by creation date, with the most-recently-created object appearing first.
|
|
90
|
+
*/
|
|
91
|
+
list(
|
|
92
|
+
params?: AccountNoticeListParams,
|
|
93
|
+
options?: RequestOptions
|
|
94
|
+
): ApiListPromise<Stripe.AccountNotice>;
|
|
95
|
+
list(options?: RequestOptions): ApiListPromise<Stripe.AccountNotice>;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
@@ -52,6 +52,12 @@ declare module 'stripe' {
|
|
|
52
52
|
|
|
53
53
|
balances: Components.Balances;
|
|
54
54
|
|
|
55
|
+
capital_financing?: Components.CapitalFinancing | null;
|
|
56
|
+
|
|
57
|
+
capital_financing_application?: Components.CapitalFinancingApplication | null;
|
|
58
|
+
|
|
59
|
+
capital_financing_promotion?: Components.CapitalFinancingPromotion | null;
|
|
60
|
+
|
|
55
61
|
documents: Components.Documents;
|
|
56
62
|
|
|
57
63
|
notification_banner: Components.NotificationBanner;
|
|
@@ -82,7 +88,7 @@ declare module 'stripe' {
|
|
|
82
88
|
namespace AccountManagement {
|
|
83
89
|
interface Features {
|
|
84
90
|
/**
|
|
85
|
-
* Disables Stripe user authentication for this embedded component. This feature can only be
|
|
91
|
+
* Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
|
|
86
92
|
*/
|
|
87
93
|
disable_stripe_user_authentication: boolean;
|
|
88
94
|
|
|
@@ -105,7 +111,7 @@ declare module 'stripe' {
|
|
|
105
111
|
namespace AccountOnboarding {
|
|
106
112
|
interface Features {
|
|
107
113
|
/**
|
|
108
|
-
* Disables Stripe user authentication for this embedded component. This feature can only be
|
|
114
|
+
* Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
|
|
109
115
|
*/
|
|
110
116
|
disable_stripe_user_authentication: boolean;
|
|
111
117
|
|
|
@@ -128,7 +134,7 @@ declare module 'stripe' {
|
|
|
128
134
|
namespace Balances {
|
|
129
135
|
interface Features {
|
|
130
136
|
/**
|
|
131
|
-
* Disables Stripe user authentication for this embedded component. This feature can only be
|
|
137
|
+
* Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
|
|
132
138
|
*/
|
|
133
139
|
disable_stripe_user_authentication: boolean;
|
|
134
140
|
|
|
@@ -154,6 +160,45 @@ declare module 'stripe' {
|
|
|
154
160
|
}
|
|
155
161
|
}
|
|
156
162
|
|
|
163
|
+
interface CapitalFinancing {
|
|
164
|
+
/**
|
|
165
|
+
* Whether the embedded component is enabled.
|
|
166
|
+
*/
|
|
167
|
+
enabled: boolean;
|
|
168
|
+
|
|
169
|
+
features: CapitalFinancing.Features;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
namespace CapitalFinancing {
|
|
173
|
+
interface Features {}
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
interface CapitalFinancingApplication {
|
|
177
|
+
/**
|
|
178
|
+
* Whether the embedded component is enabled.
|
|
179
|
+
*/
|
|
180
|
+
enabled: boolean;
|
|
181
|
+
|
|
182
|
+
features: CapitalFinancingApplication.Features;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
namespace CapitalFinancingApplication {
|
|
186
|
+
interface Features {}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
interface CapitalFinancingPromotion {
|
|
190
|
+
/**
|
|
191
|
+
* Whether the embedded component is enabled.
|
|
192
|
+
*/
|
|
193
|
+
enabled: boolean;
|
|
194
|
+
|
|
195
|
+
features: CapitalFinancingPromotion.Features;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
namespace CapitalFinancingPromotion {
|
|
199
|
+
interface Features {}
|
|
200
|
+
}
|
|
201
|
+
|
|
157
202
|
interface Documents {
|
|
158
203
|
/**
|
|
159
204
|
* Whether the embedded component is enabled.
|
|
@@ -179,7 +224,7 @@ declare module 'stripe' {
|
|
|
179
224
|
namespace NotificationBanner {
|
|
180
225
|
interface Features {
|
|
181
226
|
/**
|
|
182
|
-
* Disables Stripe user authentication for this embedded component. This feature can only be
|
|
227
|
+
* Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
|
|
183
228
|
*/
|
|
184
229
|
disable_stripe_user_authentication: boolean;
|
|
185
230
|
|
|
@@ -268,7 +313,7 @@ declare module 'stripe' {
|
|
|
268
313
|
namespace Payouts {
|
|
269
314
|
interface Features {
|
|
270
315
|
/**
|
|
271
|
-
* Disables Stripe user authentication for this embedded component. This feature can only be
|
|
316
|
+
* Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
|
|
272
317
|
*/
|
|
273
318
|
disable_stripe_user_authentication: boolean;
|
|
274
319
|
|