stripe 19.2.0-beta.1 → 19.3.0-alpha.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 +300 -1
- package/OPENAPI_VERSION +1 -1
- package/VERSION +1 -1
- package/cjs/resources/DelegatedCheckout/RequestedSessions.js +28 -0
- package/cjs/resources/Identity/BlocklistEntries.js +25 -0
- package/cjs/resources/PaymentMethods.js +4 -0
- package/cjs/resources/PaymentRecords.js +4 -0
- package/cjs/resources/V2/Billing/CustomPricingUnits.js +25 -0
- package/cjs/resources/V2/Billing/Intents/Actions.js +17 -0
- package/cjs/resources/V2/Billing/Intents.js +36 -0
- package/cjs/resources/V2/Billing/LicenseFeeSubscriptions.js +12 -0
- package/cjs/resources/V2/Billing/LicenseFees/Versions.js +17 -0
- package/cjs/resources/V2/Billing/LicenseFees.js +27 -0
- package/cjs/resources/V2/Billing/LicensedItems.js +25 -0
- package/cjs/resources/V2/Billing/MeteredItems.js +22 -0
- package/cjs/resources/V2/Billing/PricingPlanSubscriptions/Components.js +12 -0
- package/cjs/resources/V2/Billing/PricingPlanSubscriptions.js +26 -0
- package/cjs/resources/V2/Billing/PricingPlans/Components.js +29 -0
- package/cjs/resources/V2/Billing/PricingPlans/Versions.js +17 -0
- package/cjs/resources/V2/Billing/PricingPlans.js +29 -0
- package/cjs/resources/V2/Billing/RateCardSubscriptions.js +29 -0
- package/cjs/resources/V2/Billing/RateCards/Rates.js +25 -0
- package/cjs/resources/V2/Billing/RateCards/Versions.js +17 -0
- package/cjs/resources/V2/Billing/RateCards.js +29 -0
- package/cjs/resources/V2/Billing/ServiceActions.js +20 -0
- package/cjs/resources/V2/Core/ClaimableSandboxes.js +16 -0
- package/cjs/resources/V2/Core/Vault/GbBankAccounts.js +5 -0
- package/cjs/resources/V2/Core/Vault/UsBankAccounts.js +13 -0
- package/cjs/resources/V2/MoneyManagement/FinancialAccounts.js +4 -0
- package/cjs/resources/V2/MoneyManagement/RecipientVerifications.js +20 -0
- package/cjs/resources/V2/Tax/AutomaticRules.js +22 -0
- package/cjs/resources/V2/TestHelpers/MoneyManagement.js +12 -0
- package/cjs/resources.js +37 -1
- package/cjs/stripe.core.js +1 -1
- package/esm/resources/DelegatedCheckout/RequestedSessions.js +25 -0
- package/esm/resources/Identity/BlocklistEntries.js +22 -0
- package/esm/resources/PaymentMethods.js +4 -0
- package/esm/resources/PaymentRecords.js +4 -0
- package/esm/resources/V2/Billing/CustomPricingUnits.js +22 -0
- package/esm/resources/V2/Billing/Intents/Actions.js +14 -0
- package/esm/resources/V2/Billing/Intents.js +33 -0
- package/esm/resources/V2/Billing/LicenseFeeSubscriptions.js +9 -0
- package/esm/resources/V2/Billing/LicenseFees/Versions.js +14 -0
- package/esm/resources/V2/Billing/LicenseFees.js +24 -0
- package/esm/resources/V2/Billing/LicensedItems.js +22 -0
- package/esm/resources/V2/Billing/MeteredItems.js +19 -0
- package/esm/resources/V2/Billing/PricingPlanSubscriptions/Components.js +9 -0
- package/esm/resources/V2/Billing/PricingPlanSubscriptions.js +23 -0
- package/esm/resources/V2/Billing/PricingPlans/Components.js +26 -0
- package/esm/resources/V2/Billing/PricingPlans/Versions.js +14 -0
- package/esm/resources/V2/Billing/PricingPlans.js +26 -0
- package/esm/resources/V2/Billing/RateCardSubscriptions.js +26 -0
- package/esm/resources/V2/Billing/RateCards/Rates.js +22 -0
- package/esm/resources/V2/Billing/RateCards/Versions.js +14 -0
- package/esm/resources/V2/Billing/RateCards.js +26 -0
- package/esm/resources/V2/Billing/ServiceActions.js +17 -0
- package/esm/resources/V2/Core/ClaimableSandboxes.js +13 -0
- package/esm/resources/V2/Core/Vault/GbBankAccounts.js +5 -0
- package/esm/resources/V2/Core/Vault/UsBankAccounts.js +13 -0
- package/esm/resources/V2/MoneyManagement/FinancialAccounts.js +4 -0
- package/esm/resources/V2/MoneyManagement/RecipientVerifications.js +17 -0
- package/esm/resources/V2/Tax/AutomaticRules.js +19 -0
- package/esm/resources/V2/TestHelpers/MoneyManagement.js +9 -0
- package/esm/resources.js +36 -0
- package/esm/stripe.core.js +1 -1
- package/package.json +1 -1
- package/types/Accounts.d.ts +24 -0
- package/types/AccountsResource.d.ts +44 -0
- package/types/ApplicationFees.d.ts +6 -1
- package/types/Balance.d.ts +82 -0
- package/types/BalanceTransactions.d.ts +2 -1
- package/types/BankAccounts.d.ts +2 -0
- package/types/Billing/AlertTriggereds.d.ts +15 -0
- package/types/Billing/Alerts.d.ts +116 -1
- package/types/Billing/AlertsResource.d.ts +149 -2
- package/types/Billing/Analytics/MeterUsageResource.d.ts +5 -0
- package/types/Billing/Analytics/MeterUsageRows.d.ts +7 -0
- package/types/Billing/CreditBalanceSummary.d.ts +118 -2
- package/types/Billing/CreditBalanceSummaryResource.d.ts +12 -0
- package/types/Billing/CreditBalanceTransactions.d.ts +118 -2
- package/types/Billing/CreditGrants.d.ts +71 -1
- package/types/Billing/CreditGrantsResource.d.ts +34 -3
- package/types/Billing/MeterEventSummaries.d.ts +7 -0
- package/types/Billing/Meters.d.ts +5 -0
- package/types/Billing/MetersResource.d.ts +17 -0
- package/types/BillingPortal/Configurations.d.ts +1 -1
- package/types/BillingPortal/ConfigurationsResource.d.ts +10 -0
- package/types/Capabilities.d.ts +2 -0
- package/types/Cards.d.ts +14 -0
- package/types/Charges.d.ts +16 -2
- package/types/Checkout/Sessions.d.ts +73 -0
- package/types/Checkout/SessionsResource.d.ts +71 -3
- package/types/ConfirmationTokens.d.ts +15 -0
- package/types/CreditNotes.d.ts +26 -0
- package/types/CreditNotesResource.d.ts +78 -0
- package/types/CustomerSessions.d.ts +161 -0
- package/types/CustomerSessionsResource.d.ts +161 -0
- package/types/Customers.d.ts +7 -0
- package/types/CustomersResource.d.ts +1 -0
- package/types/DelegatedCheckout/RequestedSessions.d.ts +292 -0
- package/types/DelegatedCheckout/RequestedSessionsResource.d.ts +593 -0
- package/types/Files.d.ts +1 -0
- package/types/FilesResource.d.ts +2 -0
- package/types/FinancialConnections/AccountsResource.d.ts +1 -1
- package/types/Identity/BlocklistEntries.d.ts +78 -0
- package/types/Identity/BlocklistEntriesResource.d.ts +146 -0
- package/types/Identity/VerificationReports.d.ts +10 -0
- package/types/Identity/VerificationReportsResource.d.ts +5 -0
- package/types/InvoiceItems.d.ts +104 -2
- package/types/InvoiceLineItems.d.ts +113 -2
- package/types/Invoices.d.ts +1 -0
- package/types/InvoicesResource.d.ts +5 -0
- package/types/PaymentAttemptRecords.d.ts +7 -2
- package/types/PaymentAttemptRecordsResource.d.ts +5 -0
- package/types/PaymentIntentAmountDetailsLineItems.d.ts +4 -0
- package/types/PaymentIntents.d.ts +30 -2
- package/types/PaymentIntentsResource.d.ts +88 -0
- package/types/PaymentLinks.d.ts +34 -0
- package/types/PaymentLinksResource.d.ts +88 -0
- package/types/PaymentMethodBalances.d.ts +63 -0
- package/types/PaymentMethodConfigurations.d.ts +72 -0
- package/types/PaymentMethodConfigurationsResource.d.ts +100 -0
- package/types/PaymentMethods.d.ts +48 -0
- package/types/PaymentMethodsResource.d.ts +35 -1
- package/types/PaymentRecords.d.ts +7 -2
- package/types/PaymentRecordsResource.d.ts +89 -0
- package/types/PayoutsResource.d.ts +1 -1
- package/types/Persons.d.ts +2 -0
- package/types/QuotePreviewInvoices.d.ts +1 -0
- package/types/Refunds.d.ts +9 -0
- package/types/SetupAttempts.d.ts +1 -0
- package/types/SetupIntents.d.ts +87 -0
- package/types/SetupIntentsResource.d.ts +220 -0
- package/types/Tax/Registrations.d.ts +9 -0
- package/types/Tax/RegistrationsResource.d.ts +12 -0
- package/types/Terminal/Configurations.d.ts +19 -0
- package/types/Terminal/ConfigurationsResource.d.ts +44 -0
- package/types/Terminal/Readers.d.ts +14 -9
- package/types/Terminal/ReadersResource.d.ts +30 -30
- package/types/TestHelpers/Terminal/ReadersResource.d.ts +1 -1
- package/types/TokensResource.d.ts +22 -0
- package/types/Transfers.d.ts +4 -0
- package/types/TransfersResource.d.ts +2 -0
- package/types/V2/Billing/Cadences.d.ts +47 -2
- package/types/V2/Billing/CadencesResource.d.ts +32 -3
- package/types/V2/Billing/CollectionSettingVersions.d.ts +2 -2
- package/types/V2/Billing/CollectionSettings.d.ts +2 -2
- package/types/V2/Billing/CollectionSettingsResource.d.ts +4 -4
- package/types/V2/Billing/CustomPricingUnits.d.ts +56 -0
- package/types/V2/Billing/CustomPricingUnitsResource.d.ts +122 -0
- package/types/V2/Billing/IntentActions.d.ts +459 -0
- package/types/V2/Billing/Intents/ActionsResource.d.ts +58 -0
- package/types/V2/Billing/Intents.d.ts +117 -0
- package/types/V2/Billing/IntentsResource.d.ts +575 -0
- package/types/V2/Billing/LicenseFeeSubscriptions.d.ts +64 -0
- package/types/V2/Billing/LicenseFeeSubscriptionsResource.d.ts +28 -0
- package/types/V2/Billing/LicenseFeeVersions.d.ts +106 -0
- package/types/V2/Billing/LicenseFees/VersionsResource.d.ts +58 -0
- package/types/V2/Billing/LicenseFees.d.ts +164 -0
- package/types/V2/Billing/LicenseFeesResource.d.ts +290 -0
- package/types/V2/Billing/LicensedItems.d.ts +73 -0
- package/types/V2/Billing/LicensedItemsResource.d.ts +157 -0
- package/types/V2/Billing/MeteredItems.d.ts +101 -0
- package/types/V2/Billing/MeteredItemsResource.d.ts +189 -0
- package/types/V2/Billing/PricingPlanComponents.d.ts +109 -0
- package/types/V2/Billing/PricingPlanSubscriptionComponents.d.ts +57 -0
- package/types/V2/Billing/PricingPlanSubscriptions/ComponentsResource.d.ts +40 -0
- package/types/V2/Billing/PricingPlanSubscriptions.d.ts +144 -0
- package/types/V2/Billing/PricingPlanSubscriptionsResource.d.ts +120 -0
- package/types/V2/Billing/PricingPlanVersions.d.ts +49 -0
- package/types/V2/Billing/PricingPlans/ComponentsResource.d.ts +197 -0
- package/types/V2/Billing/PricingPlans/VersionsResource.d.ts +58 -0
- package/types/V2/Billing/PricingPlans.d.ts +84 -0
- package/types/V2/Billing/PricingPlansResource.d.ts +151 -0
- package/types/V2/Billing/RateCardRates.d.ts +144 -0
- package/types/V2/Billing/RateCardSubscriptions.d.ts +144 -0
- package/types/V2/Billing/RateCardSubscriptionsResource.d.ts +157 -0
- package/types/V2/Billing/RateCardVersions.d.ts +39 -0
- package/types/V2/Billing/RateCards/RatesResource.d.ts +203 -0
- package/types/V2/Billing/RateCards/VersionsResource.d.ts +58 -0
- package/types/V2/Billing/RateCards.d.ts +98 -0
- package/types/V2/Billing/RateCardsResource.d.ts +162 -0
- package/types/V2/Billing/ServiceActions.d.ts +274 -0
- package/types/V2/Billing/ServiceActionsResource.d.ts +370 -0
- package/types/V2/Core/Accounts.d.ts +1394 -29
- package/types/V2/Core/AccountsResource.d.ts +1475 -5
- package/types/V2/Core/ClaimableSandboxes.d.ts +132 -0
- package/types/V2/Core/ClaimableSandboxesResource.d.ts +74 -0
- package/types/V2/Core/EventTypes.d.ts +7308 -367
- package/types/V2/Core/Events.d.ts +12 -0
- package/types/V2/Core/EventsResource.d.ts +29 -3
- package/types/V2/Core/Vault/GbBankAccountsResource.d.ts +22 -0
- package/types/V2/Core/Vault/UsBankAccounts.d.ts +46 -0
- package/types/V2/Core/Vault/UsBankAccountsResource.d.ts +75 -0
- package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +25 -0
- package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +14 -0
- package/types/V2/MoneyManagement/OutboundPayments.d.ts +5 -0
- package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +6 -1
- package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +34 -0
- package/types/V2/MoneyManagement/OutboundTransfers.d.ts +5 -0
- package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +5 -0
- package/types/V2/MoneyManagement/PayoutMethods.d.ts +41 -0
- package/types/V2/MoneyManagement/ReceivedCredits.d.ts +5 -0
- package/types/V2/MoneyManagement/ReceivedDebits.d.ts +10 -0
- package/types/V2/MoneyManagement/RecipientVerifications.d.ts +112 -0
- package/types/V2/MoneyManagement/RecipientVerificationsResource.d.ts +77 -0
- package/types/V2/Tax/AutomaticRules.d.ts +53 -0
- package/types/V2/Tax/AutomaticRulesResource.d.ts +102 -0
- package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +6 -1
- package/types/V2/TestHelpers/MoneyManagementResource.d.ts +49 -0
- package/types/WebhookEndpointsResource.d.ts +2 -1
- package/types/Webhooks.d.ts +2 -0
- package/types/crypto/crypto.d.ts +1 -1
- package/types/index.d.ts +69 -0
|
@@ -48,6 +48,11 @@ declare module 'stripe' {
|
|
|
48
48
|
|
|
49
49
|
namespace AccountCreateParams {
|
|
50
50
|
interface Configuration {
|
|
51
|
+
/**
|
|
52
|
+
* The CardCreator Configuration allows the Account to create and issue cards to users.
|
|
53
|
+
*/
|
|
54
|
+
card_creator?: Configuration.CardCreator;
|
|
55
|
+
|
|
51
56
|
/**
|
|
52
57
|
* The Customer Configuration allows the Account to be used in inbound payment flows.
|
|
53
58
|
*/
|
|
@@ -70,6 +75,127 @@ declare module 'stripe' {
|
|
|
70
75
|
}
|
|
71
76
|
|
|
72
77
|
namespace Configuration {
|
|
78
|
+
interface CardCreator {
|
|
79
|
+
/**
|
|
80
|
+
* Capabilities to request on the CardCreator Configuration.
|
|
81
|
+
*/
|
|
82
|
+
capabilities?: CardCreator.Capabilities;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
namespace CardCreator {
|
|
86
|
+
interface Capabilities {
|
|
87
|
+
/**
|
|
88
|
+
* Can create cards for commercial issuing use cases.
|
|
89
|
+
*/
|
|
90
|
+
commercial?: Capabilities.Commercial;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
namespace Capabilities {
|
|
94
|
+
interface Commercial {
|
|
95
|
+
/**
|
|
96
|
+
* Can create commercial issuing cards with Celtic as BIN sponsor.
|
|
97
|
+
*/
|
|
98
|
+
celtic?: Commercial.Celtic;
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Can create commercial issuing cards with Cross River Bank as BIN sponsor.
|
|
102
|
+
*/
|
|
103
|
+
cross_river_bank?: Commercial.CrossRiverBank;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Can create commercial issuing cards with Stripe as BIN sponsor.
|
|
107
|
+
*/
|
|
108
|
+
stripe?: Commercial.Stripe;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
namespace Commercial {
|
|
112
|
+
interface Celtic {
|
|
113
|
+
/**
|
|
114
|
+
* Can create commercial issuing charge cards with Celtic as BIN sponsor.
|
|
115
|
+
*/
|
|
116
|
+
charge_card?: Celtic.ChargeCard;
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Can create commercial issuing spend cards with Celtic as BIN sponsor.
|
|
120
|
+
*/
|
|
121
|
+
spend_card?: Celtic.SpendCard;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
namespace Celtic {
|
|
125
|
+
interface ChargeCard {
|
|
126
|
+
/**
|
|
127
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
128
|
+
*/
|
|
129
|
+
requested: boolean;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
interface SpendCard {
|
|
133
|
+
/**
|
|
134
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
135
|
+
*/
|
|
136
|
+
requested: boolean;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
interface CrossRiverBank {
|
|
141
|
+
/**
|
|
142
|
+
* Can create commercial issuing charge cards with Cross River Bank as BIN sponsor.
|
|
143
|
+
*/
|
|
144
|
+
charge_card?: CrossRiverBank.ChargeCard;
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Can create commercial issuing spend cards with Cross River Bank as BIN sponsor.
|
|
148
|
+
*/
|
|
149
|
+
spend_card?: CrossRiverBank.SpendCard;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
namespace CrossRiverBank {
|
|
153
|
+
interface ChargeCard {
|
|
154
|
+
/**
|
|
155
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
156
|
+
*/
|
|
157
|
+
requested: boolean;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
interface SpendCard {
|
|
161
|
+
/**
|
|
162
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
163
|
+
*/
|
|
164
|
+
requested: boolean;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
interface Stripe {
|
|
169
|
+
/**
|
|
170
|
+
* Can create commercial issuing charge cards with Stripe as BIN sponsor.
|
|
171
|
+
*/
|
|
172
|
+
charge_card?: Stripe.ChargeCard;
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Can create commercial issuing prepaid cards with Stripe as BIN sponsor.
|
|
176
|
+
*/
|
|
177
|
+
prepaid_card?: Stripe.PrepaidCard;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
namespace Stripe {
|
|
181
|
+
interface ChargeCard {
|
|
182
|
+
/**
|
|
183
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
184
|
+
*/
|
|
185
|
+
requested: boolean;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
interface PrepaidCard {
|
|
189
|
+
/**
|
|
190
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
191
|
+
*/
|
|
192
|
+
requested: boolean;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
73
199
|
interface Customer {
|
|
74
200
|
/**
|
|
75
201
|
* Automatic indirect tax settings to be used when automatic tax calculation is enabled on the customer's invoices, subscriptions, checkout sessions, or payment links. Surfaces if automatic tax calculation is possible given the current customer location information.
|
|
@@ -121,6 +247,7 @@ declare module 'stripe' {
|
|
|
121
247
|
type LocationSource =
|
|
122
248
|
| 'identity_address'
|
|
123
249
|
| 'ip_address'
|
|
250
|
+
| 'payment_method'
|
|
124
251
|
| 'shipping_address';
|
|
125
252
|
}
|
|
126
253
|
|
|
@@ -939,6 +1066,11 @@ declare module 'stripe' {
|
|
|
939
1066
|
*/
|
|
940
1067
|
cards?: Capabilities.Cards;
|
|
941
1068
|
|
|
1069
|
+
/**
|
|
1070
|
+
* Capabilities that enable OutboundPayments to a crypto wallet linked to this Account.
|
|
1071
|
+
*/
|
|
1072
|
+
crypto_wallets?: Capabilities.CryptoWallets;
|
|
1073
|
+
|
|
942
1074
|
/**
|
|
943
1075
|
* Capabilities that enable the recipient to manage their Stripe Balance (/v1/balance).
|
|
944
1076
|
*/
|
|
@@ -981,6 +1113,13 @@ declare module 'stripe' {
|
|
|
981
1113
|
requested: boolean;
|
|
982
1114
|
}
|
|
983
1115
|
|
|
1116
|
+
interface CryptoWallets {
|
|
1117
|
+
/**
|
|
1118
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
1119
|
+
*/
|
|
1120
|
+
requested: boolean;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
984
1123
|
interface StripeBalance {
|
|
985
1124
|
/**
|
|
986
1125
|
* Allows the account to receive /v1/transfers into their Stripe Balance (/v1/balance).
|
|
@@ -1004,6 +1143,56 @@ declare module 'stripe' {
|
|
|
1004
1143
|
* Capabilities to request on the Storer Configuration.
|
|
1005
1144
|
*/
|
|
1006
1145
|
capabilities?: Storer.Capabilities;
|
|
1146
|
+
|
|
1147
|
+
/**
|
|
1148
|
+
* List of high-risk activities the business is involved in.
|
|
1149
|
+
*/
|
|
1150
|
+
high_risk_activities?: Array<Storer.HighRiskActivity>;
|
|
1151
|
+
|
|
1152
|
+
/**
|
|
1153
|
+
* An explanation of the high risk activities that the business performs.
|
|
1154
|
+
*/
|
|
1155
|
+
high_risk_activities_description?: string;
|
|
1156
|
+
|
|
1157
|
+
/**
|
|
1158
|
+
* Description of the money services offered by the business.
|
|
1159
|
+
*/
|
|
1160
|
+
money_services_description?: string;
|
|
1161
|
+
|
|
1162
|
+
/**
|
|
1163
|
+
* Does the business operate in any prohibited countries.
|
|
1164
|
+
*/
|
|
1165
|
+
operates_in_prohibited_countries?: boolean;
|
|
1166
|
+
|
|
1167
|
+
/**
|
|
1168
|
+
* Does the business participate in any regulated activity.
|
|
1169
|
+
*/
|
|
1170
|
+
participates_in_regulated_activity?: boolean;
|
|
1171
|
+
|
|
1172
|
+
/**
|
|
1173
|
+
* Primary purpose of the stored funds.
|
|
1174
|
+
*/
|
|
1175
|
+
purpose_of_funds?: Storer.PurposeOfFunds;
|
|
1176
|
+
|
|
1177
|
+
/**
|
|
1178
|
+
* Description of the purpose of the stored funds.
|
|
1179
|
+
*/
|
|
1180
|
+
purpose_of_funds_description?: string;
|
|
1181
|
+
|
|
1182
|
+
/**
|
|
1183
|
+
* Details of the regulated activity if the business participates in one.
|
|
1184
|
+
*/
|
|
1185
|
+
regulated_activity?: Storer.RegulatedActivity;
|
|
1186
|
+
|
|
1187
|
+
/**
|
|
1188
|
+
* The source of funds for the business, e.g. profits, income, venture capital, etc.
|
|
1189
|
+
*/
|
|
1190
|
+
source_of_funds?: Storer.SourceOfFunds;
|
|
1191
|
+
|
|
1192
|
+
/**
|
|
1193
|
+
* Description of the source of funds for the business' account.
|
|
1194
|
+
*/
|
|
1195
|
+
source_of_funds_description?: string;
|
|
1007
1196
|
}
|
|
1008
1197
|
|
|
1009
1198
|
namespace Storer {
|
|
@@ -1040,6 +1229,11 @@ declare module 'stripe' {
|
|
|
1040
1229
|
* Can provision a bank-account-like financial address (VBAN) to credit/debit a FinancialAccount.
|
|
1041
1230
|
*/
|
|
1042
1231
|
bank_accounts?: FinancialAddresses.BankAccounts;
|
|
1232
|
+
|
|
1233
|
+
/**
|
|
1234
|
+
* Can provision a crypto wallet like financial address to credit a FinancialAccount.
|
|
1235
|
+
*/
|
|
1236
|
+
crypto_wallets?: FinancialAddresses.CryptoWallets;
|
|
1043
1237
|
}
|
|
1044
1238
|
|
|
1045
1239
|
namespace FinancialAddresses {
|
|
@@ -1049,6 +1243,13 @@ declare module 'stripe' {
|
|
|
1049
1243
|
*/
|
|
1050
1244
|
requested: boolean;
|
|
1051
1245
|
}
|
|
1246
|
+
|
|
1247
|
+
interface CryptoWallets {
|
|
1248
|
+
/**
|
|
1249
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
1250
|
+
*/
|
|
1251
|
+
requested: boolean;
|
|
1252
|
+
}
|
|
1052
1253
|
}
|
|
1053
1254
|
|
|
1054
1255
|
interface HoldsCurrencies {
|
|
@@ -1056,6 +1257,16 @@ declare module 'stripe' {
|
|
|
1056
1257
|
* Can hold storage-type funds on Stripe in GBP.
|
|
1057
1258
|
*/
|
|
1058
1259
|
gbp?: HoldsCurrencies.Gbp;
|
|
1260
|
+
|
|
1261
|
+
/**
|
|
1262
|
+
* Can hold storage-type funds on Stripe in USD.
|
|
1263
|
+
*/
|
|
1264
|
+
usd?: HoldsCurrencies.Usd;
|
|
1265
|
+
|
|
1266
|
+
/**
|
|
1267
|
+
* Can hold storage-type funds on Stripe in USDC.
|
|
1268
|
+
*/
|
|
1269
|
+
usdc?: HoldsCurrencies.Usdc;
|
|
1059
1270
|
}
|
|
1060
1271
|
|
|
1061
1272
|
namespace HoldsCurrencies {
|
|
@@ -1065,6 +1276,20 @@ declare module 'stripe' {
|
|
|
1065
1276
|
*/
|
|
1066
1277
|
requested: boolean;
|
|
1067
1278
|
}
|
|
1279
|
+
|
|
1280
|
+
interface Usd {
|
|
1281
|
+
/**
|
|
1282
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
1283
|
+
*/
|
|
1284
|
+
requested: boolean;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
interface Usdc {
|
|
1288
|
+
/**
|
|
1289
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
1290
|
+
*/
|
|
1291
|
+
requested: boolean;
|
|
1292
|
+
}
|
|
1068
1293
|
}
|
|
1069
1294
|
|
|
1070
1295
|
interface InboundTransfers {
|
|
@@ -1094,6 +1319,11 @@ declare module 'stripe' {
|
|
|
1094
1319
|
*/
|
|
1095
1320
|
cards?: OutboundPayments.Cards;
|
|
1096
1321
|
|
|
1322
|
+
/**
|
|
1323
|
+
* Can send funds from a FinancialAccount to a crypto wallet owned by someone else.
|
|
1324
|
+
*/
|
|
1325
|
+
crypto_wallets?: OutboundPayments.CryptoWallets;
|
|
1326
|
+
|
|
1097
1327
|
/**
|
|
1098
1328
|
* Can send funds from a FinancialAccount to another FinancialAccount owned by someone else.
|
|
1099
1329
|
*/
|
|
@@ -1115,6 +1345,13 @@ declare module 'stripe' {
|
|
|
1115
1345
|
requested: boolean;
|
|
1116
1346
|
}
|
|
1117
1347
|
|
|
1348
|
+
interface CryptoWallets {
|
|
1349
|
+
/**
|
|
1350
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
1351
|
+
*/
|
|
1352
|
+
requested: boolean;
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1118
1355
|
interface FinancialAccounts {
|
|
1119
1356
|
/**
|
|
1120
1357
|
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
@@ -1129,6 +1366,11 @@ declare module 'stripe' {
|
|
|
1129
1366
|
*/
|
|
1130
1367
|
bank_accounts?: OutboundTransfers.BankAccounts;
|
|
1131
1368
|
|
|
1369
|
+
/**
|
|
1370
|
+
* Can send funds from a FinancialAccount to a crypto wallet owned by yourself.
|
|
1371
|
+
*/
|
|
1372
|
+
crypto_wallets?: OutboundTransfers.CryptoWallets;
|
|
1373
|
+
|
|
1132
1374
|
/**
|
|
1133
1375
|
* Can send funds from a FinancialAccount to another FinancialAccount owned by yourself.
|
|
1134
1376
|
*/
|
|
@@ -1143,6 +1385,13 @@ declare module 'stripe' {
|
|
|
1143
1385
|
requested: boolean;
|
|
1144
1386
|
}
|
|
1145
1387
|
|
|
1388
|
+
interface CryptoWallets {
|
|
1389
|
+
/**
|
|
1390
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
1391
|
+
*/
|
|
1392
|
+
requested: boolean;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1146
1395
|
interface FinancialAccounts {
|
|
1147
1396
|
/**
|
|
1148
1397
|
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
@@ -1151,6 +1400,74 @@ declare module 'stripe' {
|
|
|
1151
1400
|
}
|
|
1152
1401
|
}
|
|
1153
1402
|
}
|
|
1403
|
+
|
|
1404
|
+
type HighRiskActivity =
|
|
1405
|
+
| 'adult_entertainment'
|
|
1406
|
+
| 'gambling'
|
|
1407
|
+
| 'hold_client_funds'
|
|
1408
|
+
| 'investment_services'
|
|
1409
|
+
| 'lending_banking'
|
|
1410
|
+
| 'marijuana_or_related_services'
|
|
1411
|
+
| 'money_services'
|
|
1412
|
+
| 'nicotine_tobacco_or_related_services'
|
|
1413
|
+
| 'none'
|
|
1414
|
+
| 'operate_foreign_exchange_virtual_currencies_brokerage_otc'
|
|
1415
|
+
| 'pharmaceuticals'
|
|
1416
|
+
| 'precious_metals_precious_stones_jewelry'
|
|
1417
|
+
| 'safe_deposit_box_rentals'
|
|
1418
|
+
| 'third_party_payment_processing'
|
|
1419
|
+
| 'weapons_firearms_and_explosives';
|
|
1420
|
+
|
|
1421
|
+
type PurposeOfFunds =
|
|
1422
|
+
| 'charitable_donations'
|
|
1423
|
+
| 'ecommerce_retail_payments'
|
|
1424
|
+
| 'investment_purposes'
|
|
1425
|
+
| 'other'
|
|
1426
|
+
| 'payments_to_friends_or_family_abroad'
|
|
1427
|
+
| 'payroll'
|
|
1428
|
+
| 'personal_or_living_expenses'
|
|
1429
|
+
| 'protect_wealth'
|
|
1430
|
+
| 'purchase_goods_and_services'
|
|
1431
|
+
| 'receive_payments_for_goods_and_services'
|
|
1432
|
+
| 'tax_optimization'
|
|
1433
|
+
| 'third_party_money_transmission'
|
|
1434
|
+
| 'treasury_management';
|
|
1435
|
+
|
|
1436
|
+
interface RegulatedActivity {
|
|
1437
|
+
/**
|
|
1438
|
+
* A detailed description of the regulated activities the business is licensed to conduct.
|
|
1439
|
+
*/
|
|
1440
|
+
description?: string;
|
|
1441
|
+
|
|
1442
|
+
/**
|
|
1443
|
+
* The license number or registration number assigned by the business's primary regulator.
|
|
1444
|
+
*/
|
|
1445
|
+
license_number?: string;
|
|
1446
|
+
|
|
1447
|
+
/**
|
|
1448
|
+
* The country of the primary regulatory authority that oversees the business's regulated activities.
|
|
1449
|
+
*/
|
|
1450
|
+
primary_regulatory_authority_country?: string;
|
|
1451
|
+
|
|
1452
|
+
/**
|
|
1453
|
+
* The name of the primary regulatory authority that oversees the business's regulated activities.
|
|
1454
|
+
*/
|
|
1455
|
+
primary_regulatory_authority_name?: string;
|
|
1456
|
+
}
|
|
1457
|
+
|
|
1458
|
+
type SourceOfFunds =
|
|
1459
|
+
| 'business_loans'
|
|
1460
|
+
| 'grants'
|
|
1461
|
+
| 'inter_company_funds'
|
|
1462
|
+
| 'investment_proceeds'
|
|
1463
|
+
| 'legal_settlement'
|
|
1464
|
+
| 'owners_capital'
|
|
1465
|
+
| 'pension_retirement'
|
|
1466
|
+
| 'sales_of_assets'
|
|
1467
|
+
| 'sales_of_goods_and_services'
|
|
1468
|
+
| 'tax_refund'
|
|
1469
|
+
| 'third_party_funds'
|
|
1470
|
+
| 'treasury_reserves';
|
|
1154
1471
|
}
|
|
1155
1472
|
}
|
|
1156
1473
|
|
|
@@ -1295,7 +1612,11 @@ declare module 'stripe' {
|
|
|
1295
1612
|
}
|
|
1296
1613
|
|
|
1297
1614
|
namespace Responsibilities {
|
|
1298
|
-
type FeesCollector =
|
|
1615
|
+
type FeesCollector =
|
|
1616
|
+
| 'application'
|
|
1617
|
+
| 'application_custom'
|
|
1618
|
+
| 'application_express'
|
|
1619
|
+
| 'stripe';
|
|
1299
1620
|
|
|
1300
1621
|
type LossesCollector = 'application' | 'stripe';
|
|
1301
1622
|
}
|
|
@@ -1303,7 +1624,7 @@ declare module 'stripe' {
|
|
|
1303
1624
|
|
|
1304
1625
|
interface Identity {
|
|
1305
1626
|
/**
|
|
1306
|
-
* Attestations from the identity's key people, e.g. owners, executives, directors.
|
|
1627
|
+
* Attestations from the identity's key people, e.g. owners, executives, directors, representatives.
|
|
1307
1628
|
*/
|
|
1308
1629
|
attestations?: Identity.Attestations;
|
|
1309
1630
|
|
|
@@ -1345,6 +1666,11 @@ declare module 'stripe' {
|
|
|
1345
1666
|
*/
|
|
1346
1667
|
persons_provided?: Attestations.PersonsProvided;
|
|
1347
1668
|
|
|
1669
|
+
/**
|
|
1670
|
+
* This hash is used to attest that the representative is authorized to act as the representative of their legal entity.
|
|
1671
|
+
*/
|
|
1672
|
+
representative_declaration?: Attestations.RepresentativeDeclaration;
|
|
1673
|
+
|
|
1348
1674
|
/**
|
|
1349
1675
|
* Attestations of accepted terms of service agreements.
|
|
1350
1676
|
*/
|
|
@@ -1414,12 +1740,39 @@ declare module 'stripe' {
|
|
|
1414
1740
|
| 'qualifies_as_financial_institution';
|
|
1415
1741
|
}
|
|
1416
1742
|
|
|
1743
|
+
interface RepresentativeDeclaration {
|
|
1744
|
+
/**
|
|
1745
|
+
* The time marking when the representative attestation was made. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
1746
|
+
*/
|
|
1747
|
+
date?: string;
|
|
1748
|
+
|
|
1749
|
+
/**
|
|
1750
|
+
* The IP address from which the representative attestation was made.
|
|
1751
|
+
*/
|
|
1752
|
+
ip?: string;
|
|
1753
|
+
|
|
1754
|
+
/**
|
|
1755
|
+
* The user agent of the browser from which the representative attestation was made.
|
|
1756
|
+
*/
|
|
1757
|
+
user_agent?: string;
|
|
1758
|
+
}
|
|
1759
|
+
|
|
1417
1760
|
interface TermsOfService {
|
|
1418
1761
|
/**
|
|
1419
1762
|
* Details on the Account's acceptance of the [Stripe Services Agreement](https://docs.stripe.com/connect/updating-accounts#tos-acceptance).
|
|
1420
1763
|
*/
|
|
1421
1764
|
account?: TermsOfService.Account;
|
|
1422
1765
|
|
|
1766
|
+
/**
|
|
1767
|
+
* Details on the Account's acceptance of Issuing-specific terms of service.
|
|
1768
|
+
*/
|
|
1769
|
+
card_creator?: TermsOfService.CardCreator;
|
|
1770
|
+
|
|
1771
|
+
/**
|
|
1772
|
+
* Details on the Account's acceptance of Crypto-storer-specific terms of service.
|
|
1773
|
+
*/
|
|
1774
|
+
crypto_storer?: TermsOfService.CryptoStorer;
|
|
1775
|
+
|
|
1423
1776
|
/**
|
|
1424
1777
|
* Details on the Account's acceptance of Treasury-specific terms of service.
|
|
1425
1778
|
*/
|
|
@@ -1444,6 +1797,376 @@ declare module 'stripe' {
|
|
|
1444
1797
|
user_agent?: string;
|
|
1445
1798
|
}
|
|
1446
1799
|
|
|
1800
|
+
interface CardCreator {
|
|
1801
|
+
/**
|
|
1802
|
+
* Terms of service acceptances to create cards for commercial issuing use cases.
|
|
1803
|
+
*/
|
|
1804
|
+
commercial?: CardCreator.Commercial;
|
|
1805
|
+
}
|
|
1806
|
+
|
|
1807
|
+
namespace CardCreator {
|
|
1808
|
+
interface Commercial {
|
|
1809
|
+
/**
|
|
1810
|
+
* Terms of service acceptances for Stripe commercial card issuing.
|
|
1811
|
+
*/
|
|
1812
|
+
account_holder?: Commercial.AccountHolder;
|
|
1813
|
+
|
|
1814
|
+
/**
|
|
1815
|
+
* Terms of service acceptances for commercial issuing cards with Celtic as BIN sponsor.
|
|
1816
|
+
*/
|
|
1817
|
+
celtic?: Commercial.Celtic;
|
|
1818
|
+
|
|
1819
|
+
/**
|
|
1820
|
+
* Terms of service acceptances for commercial issuing cards with Cross River Bank as BIN sponsor.
|
|
1821
|
+
*/
|
|
1822
|
+
cross_river_bank?: Commercial.CrossRiverBank;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
namespace Commercial {
|
|
1826
|
+
interface AccountHolder {
|
|
1827
|
+
/**
|
|
1828
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
1829
|
+
*/
|
|
1830
|
+
date: string;
|
|
1831
|
+
|
|
1832
|
+
/**
|
|
1833
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
1834
|
+
*/
|
|
1835
|
+
ip: string;
|
|
1836
|
+
|
|
1837
|
+
/**
|
|
1838
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
1839
|
+
*/
|
|
1840
|
+
user_agent?: string;
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
interface Celtic {
|
|
1844
|
+
/**
|
|
1845
|
+
* Terms of service acceptances for commercial issuing Apple Pay cards with Celtic as BIN sponsor.
|
|
1846
|
+
*/
|
|
1847
|
+
apple_pay?: Celtic.ApplePay;
|
|
1848
|
+
|
|
1849
|
+
/**
|
|
1850
|
+
* Terms of service acceptances for commercial issuing charge cards with Celtic as BIN sponsor.
|
|
1851
|
+
*/
|
|
1852
|
+
charge_card?: Celtic.ChargeCard;
|
|
1853
|
+
|
|
1854
|
+
/**
|
|
1855
|
+
* Terms of service acceptances for commercial issuing spend cards with Celtic as BIN sponsor.
|
|
1856
|
+
*/
|
|
1857
|
+
spend_card?: Celtic.SpendCard;
|
|
1858
|
+
}
|
|
1859
|
+
|
|
1860
|
+
namespace Celtic {
|
|
1861
|
+
interface ApplePay {
|
|
1862
|
+
/**
|
|
1863
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
1864
|
+
*/
|
|
1865
|
+
date: string;
|
|
1866
|
+
|
|
1867
|
+
/**
|
|
1868
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
1869
|
+
*/
|
|
1870
|
+
ip: string;
|
|
1871
|
+
|
|
1872
|
+
/**
|
|
1873
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
1874
|
+
*/
|
|
1875
|
+
user_agent?: string;
|
|
1876
|
+
}
|
|
1877
|
+
|
|
1878
|
+
interface ChargeCard {
|
|
1879
|
+
/**
|
|
1880
|
+
* Bank terms of service acceptance for commercial issuing charge cards with Celtic as BIN sponsor.
|
|
1881
|
+
*/
|
|
1882
|
+
bank_terms?: ChargeCard.BankTerms;
|
|
1883
|
+
|
|
1884
|
+
/**
|
|
1885
|
+
* Platform terms of service acceptance for commercial issuing charge cards with Celtic as BIN sponsor.
|
|
1886
|
+
*/
|
|
1887
|
+
platform?: ChargeCard.Platform;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
namespace ChargeCard {
|
|
1891
|
+
interface BankTerms {
|
|
1892
|
+
/**
|
|
1893
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
1894
|
+
*/
|
|
1895
|
+
date: string;
|
|
1896
|
+
|
|
1897
|
+
/**
|
|
1898
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
1899
|
+
*/
|
|
1900
|
+
ip: string;
|
|
1901
|
+
|
|
1902
|
+
/**
|
|
1903
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
1904
|
+
*/
|
|
1905
|
+
user_agent?: string;
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
interface Platform {
|
|
1909
|
+
/**
|
|
1910
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
1911
|
+
*/
|
|
1912
|
+
date: string;
|
|
1913
|
+
|
|
1914
|
+
/**
|
|
1915
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
1916
|
+
*/
|
|
1917
|
+
ip: string;
|
|
1918
|
+
|
|
1919
|
+
/**
|
|
1920
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
1921
|
+
*/
|
|
1922
|
+
user_agent?: string;
|
|
1923
|
+
}
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
interface SpendCard {
|
|
1927
|
+
/**
|
|
1928
|
+
* Bank terms of service acceptance for commercial issuing spend cards with Celtic as BIN sponsor.
|
|
1929
|
+
*/
|
|
1930
|
+
bank_terms?: SpendCard.BankTerms;
|
|
1931
|
+
|
|
1932
|
+
/**
|
|
1933
|
+
* Financial disclosures terms of service acceptance for commercial issuing spend cards with Celtic as BIN sponsor.
|
|
1934
|
+
*/
|
|
1935
|
+
financing_disclosures?: SpendCard.FinancingDisclosures;
|
|
1936
|
+
|
|
1937
|
+
/**
|
|
1938
|
+
* Platform terms of service acceptance for commercial issuing spend cards with Celtic as BIN sponsor.
|
|
1939
|
+
*/
|
|
1940
|
+
platform?: SpendCard.Platform;
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
namespace SpendCard {
|
|
1944
|
+
interface BankTerms {
|
|
1945
|
+
/**
|
|
1946
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
1947
|
+
*/
|
|
1948
|
+
date: string;
|
|
1949
|
+
|
|
1950
|
+
/**
|
|
1951
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
1952
|
+
*/
|
|
1953
|
+
ip: string;
|
|
1954
|
+
|
|
1955
|
+
/**
|
|
1956
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
1957
|
+
*/
|
|
1958
|
+
user_agent?: string;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
interface FinancingDisclosures {
|
|
1962
|
+
/**
|
|
1963
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
1964
|
+
*/
|
|
1965
|
+
date: string;
|
|
1966
|
+
|
|
1967
|
+
/**
|
|
1968
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
1969
|
+
*/
|
|
1970
|
+
ip: string;
|
|
1971
|
+
|
|
1972
|
+
/**
|
|
1973
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
1974
|
+
*/
|
|
1975
|
+
user_agent?: string;
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
interface Platform {
|
|
1979
|
+
/**
|
|
1980
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
1981
|
+
*/
|
|
1982
|
+
date: string;
|
|
1983
|
+
|
|
1984
|
+
/**
|
|
1985
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
1986
|
+
*/
|
|
1987
|
+
ip: string;
|
|
1988
|
+
|
|
1989
|
+
/**
|
|
1990
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
1991
|
+
*/
|
|
1992
|
+
user_agent?: string;
|
|
1993
|
+
}
|
|
1994
|
+
}
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1997
|
+
interface CrossRiverBank {
|
|
1998
|
+
/**
|
|
1999
|
+
* Terms of service acceptances for commercial issuing Apple Pay cards with Cross River Bank as BIN sponsor.
|
|
2000
|
+
*/
|
|
2001
|
+
apple_pay?: CrossRiverBank.ApplePay;
|
|
2002
|
+
|
|
2003
|
+
/**
|
|
2004
|
+
* Terms of service acceptances for commercial issuing charge cards with Cross River Bank as BIN sponsor.
|
|
2005
|
+
*/
|
|
2006
|
+
charge_card?: CrossRiverBank.ChargeCard;
|
|
2007
|
+
|
|
2008
|
+
/**
|
|
2009
|
+
* Terms of service acceptances for commercial issuing spend cards with Cross River Bank as BIN sponsor.
|
|
2010
|
+
*/
|
|
2011
|
+
spend_card?: CrossRiverBank.SpendCard;
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
namespace CrossRiverBank {
|
|
2015
|
+
interface ApplePay {
|
|
2016
|
+
/**
|
|
2017
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
2018
|
+
*/
|
|
2019
|
+
date: string;
|
|
2020
|
+
|
|
2021
|
+
/**
|
|
2022
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
2023
|
+
*/
|
|
2024
|
+
ip: string;
|
|
2025
|
+
|
|
2026
|
+
/**
|
|
2027
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
2028
|
+
*/
|
|
2029
|
+
user_agent?: string;
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
interface ChargeCard {
|
|
2033
|
+
/**
|
|
2034
|
+
* Bank terms of service acceptance for commercial issuing charge cards with Cross River Bank as BIN sponsor.
|
|
2035
|
+
*/
|
|
2036
|
+
bank_terms?: ChargeCard.BankTerms;
|
|
2037
|
+
|
|
2038
|
+
/**
|
|
2039
|
+
* Financial disclosures terms of service acceptance for commercial issuing charge cards with Cross River Bank as BIN sponsor.
|
|
2040
|
+
*/
|
|
2041
|
+
financing_disclosures?: ChargeCard.FinancingDisclosures;
|
|
2042
|
+
|
|
2043
|
+
/**
|
|
2044
|
+
* Platform terms of service acceptance for commercial issuing charge cards with Cross River Bank as BIN sponsor.
|
|
2045
|
+
*/
|
|
2046
|
+
platform?: ChargeCard.Platform;
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
namespace ChargeCard {
|
|
2050
|
+
interface BankTerms {
|
|
2051
|
+
/**
|
|
2052
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
2053
|
+
*/
|
|
2054
|
+
date: string;
|
|
2055
|
+
|
|
2056
|
+
/**
|
|
2057
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
2058
|
+
*/
|
|
2059
|
+
ip: string;
|
|
2060
|
+
|
|
2061
|
+
/**
|
|
2062
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
2063
|
+
*/
|
|
2064
|
+
user_agent?: string;
|
|
2065
|
+
}
|
|
2066
|
+
|
|
2067
|
+
interface FinancingDisclosures {
|
|
2068
|
+
/**
|
|
2069
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
2070
|
+
*/
|
|
2071
|
+
date: string;
|
|
2072
|
+
|
|
2073
|
+
/**
|
|
2074
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
2075
|
+
*/
|
|
2076
|
+
ip: string;
|
|
2077
|
+
|
|
2078
|
+
/**
|
|
2079
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
2080
|
+
*/
|
|
2081
|
+
user_agent?: string;
|
|
2082
|
+
}
|
|
2083
|
+
|
|
2084
|
+
interface Platform {
|
|
2085
|
+
/**
|
|
2086
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
2087
|
+
*/
|
|
2088
|
+
date: string;
|
|
2089
|
+
|
|
2090
|
+
/**
|
|
2091
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
2092
|
+
*/
|
|
2093
|
+
ip: string;
|
|
2094
|
+
|
|
2095
|
+
/**
|
|
2096
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
2097
|
+
*/
|
|
2098
|
+
user_agent?: string;
|
|
2099
|
+
}
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
interface SpendCard {
|
|
2103
|
+
/**
|
|
2104
|
+
* Bank terms of service acceptance for commercial issuing spend cards with Cross River Bank as BIN sponsor.
|
|
2105
|
+
*/
|
|
2106
|
+
bank_terms?: SpendCard.BankTerms;
|
|
2107
|
+
|
|
2108
|
+
/**
|
|
2109
|
+
* Financial disclosures terms of service acceptance for commercial issuing spend cards with Cross River Bank as BIN sponsor.
|
|
2110
|
+
*/
|
|
2111
|
+
financing_disclosures?: SpendCard.FinancingDisclosures;
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
namespace SpendCard {
|
|
2115
|
+
interface BankTerms {
|
|
2116
|
+
/**
|
|
2117
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
2118
|
+
*/
|
|
2119
|
+
date: string;
|
|
2120
|
+
|
|
2121
|
+
/**
|
|
2122
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
2123
|
+
*/
|
|
2124
|
+
ip: string;
|
|
2125
|
+
|
|
2126
|
+
/**
|
|
2127
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
2128
|
+
*/
|
|
2129
|
+
user_agent?: string;
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
interface FinancingDisclosures {
|
|
2133
|
+
/**
|
|
2134
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
2135
|
+
*/
|
|
2136
|
+
date: string;
|
|
2137
|
+
|
|
2138
|
+
/**
|
|
2139
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
2140
|
+
*/
|
|
2141
|
+
ip: string;
|
|
2142
|
+
|
|
2143
|
+
/**
|
|
2144
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
2145
|
+
*/
|
|
2146
|
+
user_agent?: string;
|
|
2147
|
+
}
|
|
2148
|
+
}
|
|
2149
|
+
}
|
|
2150
|
+
}
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
interface CryptoStorer {
|
|
2154
|
+
/**
|
|
2155
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
2156
|
+
*/
|
|
2157
|
+
date: string;
|
|
2158
|
+
|
|
2159
|
+
/**
|
|
2160
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
2161
|
+
*/
|
|
2162
|
+
ip: string;
|
|
2163
|
+
|
|
2164
|
+
/**
|
|
2165
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
2166
|
+
*/
|
|
2167
|
+
user_agent?: string;
|
|
2168
|
+
}
|
|
2169
|
+
|
|
1447
2170
|
interface Storer {
|
|
1448
2171
|
/**
|
|
1449
2172
|
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
@@ -1474,6 +2197,11 @@ declare module 'stripe' {
|
|
|
1474
2197
|
*/
|
|
1475
2198
|
annual_revenue?: BusinessDetails.AnnualRevenue;
|
|
1476
2199
|
|
|
2200
|
+
/**
|
|
2201
|
+
* A detailed description of the business's compliance and anti-money laundering controls and practices.
|
|
2202
|
+
*/
|
|
2203
|
+
compliance_screening_description?: string;
|
|
2204
|
+
|
|
1477
2205
|
/**
|
|
1478
2206
|
* A document verifying the business.
|
|
1479
2207
|
*/
|
|
@@ -2544,6 +3272,7 @@ declare module 'stripe' {
|
|
|
2544
3272
|
}
|
|
2545
3273
|
|
|
2546
3274
|
type Include =
|
|
3275
|
+
| 'configuration.card_creator'
|
|
2547
3276
|
| 'configuration.customer'
|
|
2548
3277
|
| 'configuration.merchant'
|
|
2549
3278
|
| 'configuration.recipient'
|
|
@@ -2564,6 +3293,7 @@ declare module 'stripe' {
|
|
|
2564
3293
|
|
|
2565
3294
|
namespace AccountRetrieveParams {
|
|
2566
3295
|
type Include =
|
|
3296
|
+
| 'configuration.card_creator'
|
|
2567
3297
|
| 'configuration.customer'
|
|
2568
3298
|
| 'configuration.merchant'
|
|
2569
3299
|
| 'configuration.recipient'
|
|
@@ -2619,6 +3349,11 @@ declare module 'stripe' {
|
|
|
2619
3349
|
|
|
2620
3350
|
namespace AccountUpdateParams {
|
|
2621
3351
|
interface Configuration {
|
|
3352
|
+
/**
|
|
3353
|
+
* The CardCreator Configuration allows the Account to create and issue cards to users.
|
|
3354
|
+
*/
|
|
3355
|
+
card_creator?: Configuration.CardCreator;
|
|
3356
|
+
|
|
2622
3357
|
/**
|
|
2623
3358
|
* The Customer Configuration allows the Account to be charged.
|
|
2624
3359
|
*/
|
|
@@ -2641,6 +3376,132 @@ declare module 'stripe' {
|
|
|
2641
3376
|
}
|
|
2642
3377
|
|
|
2643
3378
|
namespace Configuration {
|
|
3379
|
+
interface CardCreator {
|
|
3380
|
+
/**
|
|
3381
|
+
* Represents the state of the configuration, and can be updated to deactivate or re-apply a configuration.
|
|
3382
|
+
*/
|
|
3383
|
+
applied?: boolean;
|
|
3384
|
+
|
|
3385
|
+
/**
|
|
3386
|
+
* Capabilities to request on the CardCreator Configuration.
|
|
3387
|
+
*/
|
|
3388
|
+
capabilities?: CardCreator.Capabilities;
|
|
3389
|
+
}
|
|
3390
|
+
|
|
3391
|
+
namespace CardCreator {
|
|
3392
|
+
interface Capabilities {
|
|
3393
|
+
/**
|
|
3394
|
+
* Can create cards for commercial issuing use cases.
|
|
3395
|
+
*/
|
|
3396
|
+
commercial?: Capabilities.Commercial;
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
namespace Capabilities {
|
|
3400
|
+
interface Commercial {
|
|
3401
|
+
/**
|
|
3402
|
+
* Can create commercial issuing cards with Celtic as BIN sponsor.
|
|
3403
|
+
*/
|
|
3404
|
+
celtic?: Commercial.Celtic;
|
|
3405
|
+
|
|
3406
|
+
/**
|
|
3407
|
+
* Can create commercial issuing cards with Cross River Bank as BIN sponsor.
|
|
3408
|
+
*/
|
|
3409
|
+
cross_river_bank?: Commercial.CrossRiverBank;
|
|
3410
|
+
|
|
3411
|
+
/**
|
|
3412
|
+
* Can create commercial issuing cards with Stripe as BIN sponsor.
|
|
3413
|
+
*/
|
|
3414
|
+
stripe?: Commercial.Stripe;
|
|
3415
|
+
}
|
|
3416
|
+
|
|
3417
|
+
namespace Commercial {
|
|
3418
|
+
interface Celtic {
|
|
3419
|
+
/**
|
|
3420
|
+
* Can create commercial issuing charge cards with Celtic as BIN sponsor.
|
|
3421
|
+
*/
|
|
3422
|
+
charge_card?: Celtic.ChargeCard;
|
|
3423
|
+
|
|
3424
|
+
/**
|
|
3425
|
+
* Can create commercial issuing spend cards with Celtic as BIN sponsor.
|
|
3426
|
+
*/
|
|
3427
|
+
spend_card?: Celtic.SpendCard;
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3430
|
+
namespace Celtic {
|
|
3431
|
+
interface ChargeCard {
|
|
3432
|
+
/**
|
|
3433
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
3434
|
+
*/
|
|
3435
|
+
requested?: boolean;
|
|
3436
|
+
}
|
|
3437
|
+
|
|
3438
|
+
interface SpendCard {
|
|
3439
|
+
/**
|
|
3440
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
3441
|
+
*/
|
|
3442
|
+
requested?: boolean;
|
|
3443
|
+
}
|
|
3444
|
+
}
|
|
3445
|
+
|
|
3446
|
+
interface CrossRiverBank {
|
|
3447
|
+
/**
|
|
3448
|
+
* Can create commercial issuing charge cards with Cross River Bank as BIN sponsor.
|
|
3449
|
+
*/
|
|
3450
|
+
charge_card?: CrossRiverBank.ChargeCard;
|
|
3451
|
+
|
|
3452
|
+
/**
|
|
3453
|
+
* Can create commercial issuing spend cards with Cross River Bank as BIN sponsor.
|
|
3454
|
+
*/
|
|
3455
|
+
spend_card?: CrossRiverBank.SpendCard;
|
|
3456
|
+
}
|
|
3457
|
+
|
|
3458
|
+
namespace CrossRiverBank {
|
|
3459
|
+
interface ChargeCard {
|
|
3460
|
+
/**
|
|
3461
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
3462
|
+
*/
|
|
3463
|
+
requested?: boolean;
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
interface SpendCard {
|
|
3467
|
+
/**
|
|
3468
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
3469
|
+
*/
|
|
3470
|
+
requested?: boolean;
|
|
3471
|
+
}
|
|
3472
|
+
}
|
|
3473
|
+
|
|
3474
|
+
interface Stripe {
|
|
3475
|
+
/**
|
|
3476
|
+
* Can create commercial issuing charge cards with Stripe as BIN sponsor.
|
|
3477
|
+
*/
|
|
3478
|
+
charge_card?: Stripe.ChargeCard;
|
|
3479
|
+
|
|
3480
|
+
/**
|
|
3481
|
+
* Can create commercial issuing prepaid cards with Stripe as BIN sponsor.
|
|
3482
|
+
*/
|
|
3483
|
+
prepaid_card?: Stripe.PrepaidCard;
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
namespace Stripe {
|
|
3487
|
+
interface ChargeCard {
|
|
3488
|
+
/**
|
|
3489
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
3490
|
+
*/
|
|
3491
|
+
requested?: boolean;
|
|
3492
|
+
}
|
|
3493
|
+
|
|
3494
|
+
interface PrepaidCard {
|
|
3495
|
+
/**
|
|
3496
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
3497
|
+
*/
|
|
3498
|
+
requested?: boolean;
|
|
3499
|
+
}
|
|
3500
|
+
}
|
|
3501
|
+
}
|
|
3502
|
+
}
|
|
3503
|
+
}
|
|
3504
|
+
|
|
2644
3505
|
interface Customer {
|
|
2645
3506
|
/**
|
|
2646
3507
|
* Represents the state of the configuration, and can be updated to deactivate or re-apply a configuration.
|
|
@@ -2702,6 +3563,7 @@ declare module 'stripe' {
|
|
|
2702
3563
|
type LocationSource =
|
|
2703
3564
|
| 'identity_address'
|
|
2704
3565
|
| 'ip_address'
|
|
3566
|
+
| 'payment_method'
|
|
2705
3567
|
| 'shipping_address';
|
|
2706
3568
|
|
|
2707
3569
|
type ValidateLocation = 'auto' | 'deferred' | 'immediately';
|
|
@@ -3503,6 +4365,11 @@ declare module 'stripe' {
|
|
|
3503
4365
|
*/
|
|
3504
4366
|
cards?: Capabilities.Cards;
|
|
3505
4367
|
|
|
4368
|
+
/**
|
|
4369
|
+
* Capabilities that enable OutboundPayments to a crypto wallet linked to this Account.
|
|
4370
|
+
*/
|
|
4371
|
+
crypto_wallets?: Capabilities.CryptoWallets;
|
|
4372
|
+
|
|
3506
4373
|
/**
|
|
3507
4374
|
* Capabilities that enable the recipient to manage their Stripe Balance (/v1/balance).
|
|
3508
4375
|
*/
|
|
@@ -3545,6 +4412,13 @@ declare module 'stripe' {
|
|
|
3545
4412
|
requested?: boolean;
|
|
3546
4413
|
}
|
|
3547
4414
|
|
|
4415
|
+
interface CryptoWallets {
|
|
4416
|
+
/**
|
|
4417
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
4418
|
+
*/
|
|
4419
|
+
requested?: boolean;
|
|
4420
|
+
}
|
|
4421
|
+
|
|
3548
4422
|
interface StripeBalance {
|
|
3549
4423
|
/**
|
|
3550
4424
|
* Allows the account to receive /v1/transfers into their Stripe Balance (/v1/balance).
|
|
@@ -3573,6 +4447,56 @@ declare module 'stripe' {
|
|
|
3573
4447
|
* Capabilities to request on the Storer Configuration.
|
|
3574
4448
|
*/
|
|
3575
4449
|
capabilities?: Storer.Capabilities;
|
|
4450
|
+
|
|
4451
|
+
/**
|
|
4452
|
+
* List of high-risk activities the business is involved in.
|
|
4453
|
+
*/
|
|
4454
|
+
high_risk_activities?: Array<Storer.HighRiskActivity>;
|
|
4455
|
+
|
|
4456
|
+
/**
|
|
4457
|
+
* An explanation of the high risk activities that the business performs.
|
|
4458
|
+
*/
|
|
4459
|
+
high_risk_activities_description?: string;
|
|
4460
|
+
|
|
4461
|
+
/**
|
|
4462
|
+
* Description of the money services offered by the business.
|
|
4463
|
+
*/
|
|
4464
|
+
money_services_description?: string;
|
|
4465
|
+
|
|
4466
|
+
/**
|
|
4467
|
+
* Does the business operate in any prohibited countries.
|
|
4468
|
+
*/
|
|
4469
|
+
operates_in_prohibited_countries?: boolean;
|
|
4470
|
+
|
|
4471
|
+
/**
|
|
4472
|
+
* Does the business participate in any regulated activity.
|
|
4473
|
+
*/
|
|
4474
|
+
participates_in_regulated_activity?: boolean;
|
|
4475
|
+
|
|
4476
|
+
/**
|
|
4477
|
+
* Primary purpose of the stored funds.
|
|
4478
|
+
*/
|
|
4479
|
+
purpose_of_funds?: Storer.PurposeOfFunds;
|
|
4480
|
+
|
|
4481
|
+
/**
|
|
4482
|
+
* Description of the purpose of the stored funds.
|
|
4483
|
+
*/
|
|
4484
|
+
purpose_of_funds_description?: string;
|
|
4485
|
+
|
|
4486
|
+
/**
|
|
4487
|
+
* Details of the regulated activity if the business participates in one.
|
|
4488
|
+
*/
|
|
4489
|
+
regulated_activity?: Storer.RegulatedActivity;
|
|
4490
|
+
|
|
4491
|
+
/**
|
|
4492
|
+
* The source of funds for the business, e.g. profits, income, venture capital, etc.
|
|
4493
|
+
*/
|
|
4494
|
+
source_of_funds?: Storer.SourceOfFunds;
|
|
4495
|
+
|
|
4496
|
+
/**
|
|
4497
|
+
* Description of the source of funds for the business' account.
|
|
4498
|
+
*/
|
|
4499
|
+
source_of_funds_description?: string;
|
|
3576
4500
|
}
|
|
3577
4501
|
|
|
3578
4502
|
namespace Storer {
|
|
@@ -3609,6 +4533,11 @@ declare module 'stripe' {
|
|
|
3609
4533
|
* Can provision a bank-account-like financial address (VBAN) to credit/debit a FinancialAccount.
|
|
3610
4534
|
*/
|
|
3611
4535
|
bank_accounts?: FinancialAddresses.BankAccounts;
|
|
4536
|
+
|
|
4537
|
+
/**
|
|
4538
|
+
* Can provision a crypto wallet like financial address to credit a FinancialAccount.
|
|
4539
|
+
*/
|
|
4540
|
+
crypto_wallets?: FinancialAddresses.CryptoWallets;
|
|
3612
4541
|
}
|
|
3613
4542
|
|
|
3614
4543
|
namespace FinancialAddresses {
|
|
@@ -3618,6 +4547,13 @@ declare module 'stripe' {
|
|
|
3618
4547
|
*/
|
|
3619
4548
|
requested?: boolean;
|
|
3620
4549
|
}
|
|
4550
|
+
|
|
4551
|
+
interface CryptoWallets {
|
|
4552
|
+
/**
|
|
4553
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
4554
|
+
*/
|
|
4555
|
+
requested?: boolean;
|
|
4556
|
+
}
|
|
3621
4557
|
}
|
|
3622
4558
|
|
|
3623
4559
|
interface HoldsCurrencies {
|
|
@@ -3625,6 +4561,16 @@ declare module 'stripe' {
|
|
|
3625
4561
|
* Can hold storage-type funds on Stripe in GBP.
|
|
3626
4562
|
*/
|
|
3627
4563
|
gbp?: HoldsCurrencies.Gbp;
|
|
4564
|
+
|
|
4565
|
+
/**
|
|
4566
|
+
* Can hold storage-type funds on Stripe in USD.
|
|
4567
|
+
*/
|
|
4568
|
+
usd?: HoldsCurrencies.Usd;
|
|
4569
|
+
|
|
4570
|
+
/**
|
|
4571
|
+
* Can hold storage-type funds on Stripe in USDC.
|
|
4572
|
+
*/
|
|
4573
|
+
usdc?: HoldsCurrencies.Usdc;
|
|
3628
4574
|
}
|
|
3629
4575
|
|
|
3630
4576
|
namespace HoldsCurrencies {
|
|
@@ -3634,6 +4580,20 @@ declare module 'stripe' {
|
|
|
3634
4580
|
*/
|
|
3635
4581
|
requested?: boolean;
|
|
3636
4582
|
}
|
|
4583
|
+
|
|
4584
|
+
interface Usd {
|
|
4585
|
+
/**
|
|
4586
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
4587
|
+
*/
|
|
4588
|
+
requested?: boolean;
|
|
4589
|
+
}
|
|
4590
|
+
|
|
4591
|
+
interface Usdc {
|
|
4592
|
+
/**
|
|
4593
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
4594
|
+
*/
|
|
4595
|
+
requested?: boolean;
|
|
4596
|
+
}
|
|
3637
4597
|
}
|
|
3638
4598
|
|
|
3639
4599
|
interface InboundTransfers {
|
|
@@ -3663,6 +4623,11 @@ declare module 'stripe' {
|
|
|
3663
4623
|
*/
|
|
3664
4624
|
cards?: OutboundPayments.Cards;
|
|
3665
4625
|
|
|
4626
|
+
/**
|
|
4627
|
+
* Can send funds from a FinancialAccount to a crypto wallet owned by someone else.
|
|
4628
|
+
*/
|
|
4629
|
+
crypto_wallets?: OutboundPayments.CryptoWallets;
|
|
4630
|
+
|
|
3666
4631
|
/**
|
|
3667
4632
|
* Can send funds from a FinancialAccount to another FinancialAccount owned by someone else.
|
|
3668
4633
|
*/
|
|
@@ -3684,6 +4649,13 @@ declare module 'stripe' {
|
|
|
3684
4649
|
requested?: boolean;
|
|
3685
4650
|
}
|
|
3686
4651
|
|
|
4652
|
+
interface CryptoWallets {
|
|
4653
|
+
/**
|
|
4654
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
4655
|
+
*/
|
|
4656
|
+
requested?: boolean;
|
|
4657
|
+
}
|
|
4658
|
+
|
|
3687
4659
|
interface FinancialAccounts {
|
|
3688
4660
|
/**
|
|
3689
4661
|
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
@@ -3698,6 +4670,11 @@ declare module 'stripe' {
|
|
|
3698
4670
|
*/
|
|
3699
4671
|
bank_accounts?: OutboundTransfers.BankAccounts;
|
|
3700
4672
|
|
|
4673
|
+
/**
|
|
4674
|
+
* Can send funds from a FinancialAccount to a crypto wallet owned by yourself.
|
|
4675
|
+
*/
|
|
4676
|
+
crypto_wallets?: OutboundTransfers.CryptoWallets;
|
|
4677
|
+
|
|
3701
4678
|
/**
|
|
3702
4679
|
* Can send funds from a FinancialAccount to another FinancialAccount owned by yourself.
|
|
3703
4680
|
*/
|
|
@@ -3712,6 +4689,13 @@ declare module 'stripe' {
|
|
|
3712
4689
|
requested?: boolean;
|
|
3713
4690
|
}
|
|
3714
4691
|
|
|
4692
|
+
interface CryptoWallets {
|
|
4693
|
+
/**
|
|
4694
|
+
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
4695
|
+
*/
|
|
4696
|
+
requested?: boolean;
|
|
4697
|
+
}
|
|
4698
|
+
|
|
3715
4699
|
interface FinancialAccounts {
|
|
3716
4700
|
/**
|
|
3717
4701
|
* To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
|
|
@@ -3720,6 +4704,74 @@ declare module 'stripe' {
|
|
|
3720
4704
|
}
|
|
3721
4705
|
}
|
|
3722
4706
|
}
|
|
4707
|
+
|
|
4708
|
+
type HighRiskActivity =
|
|
4709
|
+
| 'adult_entertainment'
|
|
4710
|
+
| 'gambling'
|
|
4711
|
+
| 'hold_client_funds'
|
|
4712
|
+
| 'investment_services'
|
|
4713
|
+
| 'lending_banking'
|
|
4714
|
+
| 'marijuana_or_related_services'
|
|
4715
|
+
| 'money_services'
|
|
4716
|
+
| 'nicotine_tobacco_or_related_services'
|
|
4717
|
+
| 'none'
|
|
4718
|
+
| 'operate_foreign_exchange_virtual_currencies_brokerage_otc'
|
|
4719
|
+
| 'pharmaceuticals'
|
|
4720
|
+
| 'precious_metals_precious_stones_jewelry'
|
|
4721
|
+
| 'safe_deposit_box_rentals'
|
|
4722
|
+
| 'third_party_payment_processing'
|
|
4723
|
+
| 'weapons_firearms_and_explosives';
|
|
4724
|
+
|
|
4725
|
+
type PurposeOfFunds =
|
|
4726
|
+
| 'charitable_donations'
|
|
4727
|
+
| 'ecommerce_retail_payments'
|
|
4728
|
+
| 'investment_purposes'
|
|
4729
|
+
| 'other'
|
|
4730
|
+
| 'payments_to_friends_or_family_abroad'
|
|
4731
|
+
| 'payroll'
|
|
4732
|
+
| 'personal_or_living_expenses'
|
|
4733
|
+
| 'protect_wealth'
|
|
4734
|
+
| 'purchase_goods_and_services'
|
|
4735
|
+
| 'receive_payments_for_goods_and_services'
|
|
4736
|
+
| 'tax_optimization'
|
|
4737
|
+
| 'third_party_money_transmission'
|
|
4738
|
+
| 'treasury_management';
|
|
4739
|
+
|
|
4740
|
+
interface RegulatedActivity {
|
|
4741
|
+
/**
|
|
4742
|
+
* A detailed description of the regulated activities the business is licensed to conduct.
|
|
4743
|
+
*/
|
|
4744
|
+
description?: string;
|
|
4745
|
+
|
|
4746
|
+
/**
|
|
4747
|
+
* The license number or registration number assigned by the business's primary regulator.
|
|
4748
|
+
*/
|
|
4749
|
+
license_number?: string;
|
|
4750
|
+
|
|
4751
|
+
/**
|
|
4752
|
+
* The country of the primary regulatory authority that oversees the business's regulated activities.
|
|
4753
|
+
*/
|
|
4754
|
+
primary_regulatory_authority_country?: string;
|
|
4755
|
+
|
|
4756
|
+
/**
|
|
4757
|
+
* The name of the primary regulatory authority that oversees the business's regulated activities.
|
|
4758
|
+
*/
|
|
4759
|
+
primary_regulatory_authority_name?: string;
|
|
4760
|
+
}
|
|
4761
|
+
|
|
4762
|
+
type SourceOfFunds =
|
|
4763
|
+
| 'business_loans'
|
|
4764
|
+
| 'grants'
|
|
4765
|
+
| 'inter_company_funds'
|
|
4766
|
+
| 'investment_proceeds'
|
|
4767
|
+
| 'legal_settlement'
|
|
4768
|
+
| 'owners_capital'
|
|
4769
|
+
| 'pension_retirement'
|
|
4770
|
+
| 'sales_of_assets'
|
|
4771
|
+
| 'sales_of_goods_and_services'
|
|
4772
|
+
| 'tax_refund'
|
|
4773
|
+
| 'third_party_funds'
|
|
4774
|
+
| 'treasury_reserves';
|
|
3723
4775
|
}
|
|
3724
4776
|
}
|
|
3725
4777
|
|
|
@@ -3864,7 +4916,11 @@ declare module 'stripe' {
|
|
|
3864
4916
|
}
|
|
3865
4917
|
|
|
3866
4918
|
namespace Responsibilities {
|
|
3867
|
-
type FeesCollector =
|
|
4919
|
+
type FeesCollector =
|
|
4920
|
+
| 'application'
|
|
4921
|
+
| 'application_custom'
|
|
4922
|
+
| 'application_express'
|
|
4923
|
+
| 'stripe';
|
|
3868
4924
|
|
|
3869
4925
|
type LossesCollector = 'application' | 'stripe';
|
|
3870
4926
|
}
|
|
@@ -3872,7 +4928,7 @@ declare module 'stripe' {
|
|
|
3872
4928
|
|
|
3873
4929
|
interface Identity {
|
|
3874
4930
|
/**
|
|
3875
|
-
* Attestations from the identity's key people, e.g. owners, executives, directors.
|
|
4931
|
+
* Attestations from the identity's key people, e.g. owners, executives, directors, representatives.
|
|
3876
4932
|
*/
|
|
3877
4933
|
attestations?: Identity.Attestations;
|
|
3878
4934
|
|
|
@@ -3914,6 +4970,11 @@ declare module 'stripe' {
|
|
|
3914
4970
|
*/
|
|
3915
4971
|
persons_provided?: Attestations.PersonsProvided;
|
|
3916
4972
|
|
|
4973
|
+
/**
|
|
4974
|
+
* This hash is used to attest that the representative is authorized to act as the representative of their legal entity.
|
|
4975
|
+
*/
|
|
4976
|
+
representative_declaration?: Attestations.RepresentativeDeclaration;
|
|
4977
|
+
|
|
3917
4978
|
/**
|
|
3918
4979
|
* Attestations of accepted terms of service agreements.
|
|
3919
4980
|
*/
|
|
@@ -3983,12 +5044,39 @@ declare module 'stripe' {
|
|
|
3983
5044
|
| 'qualifies_as_financial_institution';
|
|
3984
5045
|
}
|
|
3985
5046
|
|
|
5047
|
+
interface RepresentativeDeclaration {
|
|
5048
|
+
/**
|
|
5049
|
+
* The time marking when the representative attestation was made. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5050
|
+
*/
|
|
5051
|
+
date?: string;
|
|
5052
|
+
|
|
5053
|
+
/**
|
|
5054
|
+
* The IP address from which the representative attestation was made.
|
|
5055
|
+
*/
|
|
5056
|
+
ip?: string;
|
|
5057
|
+
|
|
5058
|
+
/**
|
|
5059
|
+
* The user agent of the browser from which the representative attestation was made.
|
|
5060
|
+
*/
|
|
5061
|
+
user_agent?: string;
|
|
5062
|
+
}
|
|
5063
|
+
|
|
3986
5064
|
interface TermsOfService {
|
|
3987
5065
|
/**
|
|
3988
5066
|
* Details on the Account's acceptance of the [Stripe Services Agreement](https://docs.stripe.com/connect/updating-accounts#tos-acceptance).
|
|
3989
5067
|
*/
|
|
3990
5068
|
account?: TermsOfService.Account;
|
|
3991
5069
|
|
|
5070
|
+
/**
|
|
5071
|
+
* Details on the Account's acceptance of Issuing-specific terms of service.
|
|
5072
|
+
*/
|
|
5073
|
+
card_creator?: TermsOfService.CardCreator;
|
|
5074
|
+
|
|
5075
|
+
/**
|
|
5076
|
+
* Details on the Account's acceptance of Crypto-storer-specific terms of service.
|
|
5077
|
+
*/
|
|
5078
|
+
crypto_storer?: TermsOfService.CryptoStorer;
|
|
5079
|
+
|
|
3992
5080
|
/**
|
|
3993
5081
|
* Details on the Account's acceptance of Treasury-specific terms of service.
|
|
3994
5082
|
*/
|
|
@@ -4013,6 +5101,376 @@ declare module 'stripe' {
|
|
|
4013
5101
|
user_agent?: string;
|
|
4014
5102
|
}
|
|
4015
5103
|
|
|
5104
|
+
interface CardCreator {
|
|
5105
|
+
/**
|
|
5106
|
+
* Terms of service acceptances to create cards for commercial issuing use cases.
|
|
5107
|
+
*/
|
|
5108
|
+
commercial?: CardCreator.Commercial;
|
|
5109
|
+
}
|
|
5110
|
+
|
|
5111
|
+
namespace CardCreator {
|
|
5112
|
+
interface Commercial {
|
|
5113
|
+
/**
|
|
5114
|
+
* Terms of service acceptances for Stripe commercial card issuing.
|
|
5115
|
+
*/
|
|
5116
|
+
account_holder?: Commercial.AccountHolder;
|
|
5117
|
+
|
|
5118
|
+
/**
|
|
5119
|
+
* Terms of service acceptances for commercial issuing cards with Celtic as BIN sponsor.
|
|
5120
|
+
*/
|
|
5121
|
+
celtic?: Commercial.Celtic;
|
|
5122
|
+
|
|
5123
|
+
/**
|
|
5124
|
+
* Terms of service acceptances for commercial issuing cards with Cross River Bank as BIN sponsor.
|
|
5125
|
+
*/
|
|
5126
|
+
cross_river_bank?: Commercial.CrossRiverBank;
|
|
5127
|
+
}
|
|
5128
|
+
|
|
5129
|
+
namespace Commercial {
|
|
5130
|
+
interface AccountHolder {
|
|
5131
|
+
/**
|
|
5132
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5133
|
+
*/
|
|
5134
|
+
date?: string;
|
|
5135
|
+
|
|
5136
|
+
/**
|
|
5137
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5138
|
+
*/
|
|
5139
|
+
ip?: string;
|
|
5140
|
+
|
|
5141
|
+
/**
|
|
5142
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5143
|
+
*/
|
|
5144
|
+
user_agent?: string;
|
|
5145
|
+
}
|
|
5146
|
+
|
|
5147
|
+
interface Celtic {
|
|
5148
|
+
/**
|
|
5149
|
+
* Terms of service acceptances for commercial issuing Apple Pay cards with Celtic as BIN sponsor.
|
|
5150
|
+
*/
|
|
5151
|
+
apple_pay?: Celtic.ApplePay;
|
|
5152
|
+
|
|
5153
|
+
/**
|
|
5154
|
+
* Terms of service acceptances for commercial issuing charge cards with Celtic as BIN sponsor.
|
|
5155
|
+
*/
|
|
5156
|
+
charge_card?: Celtic.ChargeCard;
|
|
5157
|
+
|
|
5158
|
+
/**
|
|
5159
|
+
* Terms of service acceptances for commercial issuing spend cards with Celtic as BIN sponsor.
|
|
5160
|
+
*/
|
|
5161
|
+
spend_card?: Celtic.SpendCard;
|
|
5162
|
+
}
|
|
5163
|
+
|
|
5164
|
+
namespace Celtic {
|
|
5165
|
+
interface ApplePay {
|
|
5166
|
+
/**
|
|
5167
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5168
|
+
*/
|
|
5169
|
+
date?: string;
|
|
5170
|
+
|
|
5171
|
+
/**
|
|
5172
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5173
|
+
*/
|
|
5174
|
+
ip?: string;
|
|
5175
|
+
|
|
5176
|
+
/**
|
|
5177
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5178
|
+
*/
|
|
5179
|
+
user_agent?: string;
|
|
5180
|
+
}
|
|
5181
|
+
|
|
5182
|
+
interface ChargeCard {
|
|
5183
|
+
/**
|
|
5184
|
+
* Bank terms of service acceptance for commercial issuing charge cards with Celtic as BIN sponsor.
|
|
5185
|
+
*/
|
|
5186
|
+
bank_terms?: ChargeCard.BankTerms;
|
|
5187
|
+
|
|
5188
|
+
/**
|
|
5189
|
+
* Platform terms of service acceptance for commercial issuing charge cards with Celtic as BIN sponsor.
|
|
5190
|
+
*/
|
|
5191
|
+
platform?: ChargeCard.Platform;
|
|
5192
|
+
}
|
|
5193
|
+
|
|
5194
|
+
namespace ChargeCard {
|
|
5195
|
+
interface BankTerms {
|
|
5196
|
+
/**
|
|
5197
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5198
|
+
*/
|
|
5199
|
+
date?: string;
|
|
5200
|
+
|
|
5201
|
+
/**
|
|
5202
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5203
|
+
*/
|
|
5204
|
+
ip?: string;
|
|
5205
|
+
|
|
5206
|
+
/**
|
|
5207
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5208
|
+
*/
|
|
5209
|
+
user_agent?: string;
|
|
5210
|
+
}
|
|
5211
|
+
|
|
5212
|
+
interface Platform {
|
|
5213
|
+
/**
|
|
5214
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5215
|
+
*/
|
|
5216
|
+
date?: string;
|
|
5217
|
+
|
|
5218
|
+
/**
|
|
5219
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5220
|
+
*/
|
|
5221
|
+
ip?: string;
|
|
5222
|
+
|
|
5223
|
+
/**
|
|
5224
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5225
|
+
*/
|
|
5226
|
+
user_agent?: string;
|
|
5227
|
+
}
|
|
5228
|
+
}
|
|
5229
|
+
|
|
5230
|
+
interface SpendCard {
|
|
5231
|
+
/**
|
|
5232
|
+
* Bank terms of service acceptance for commercial issuing spend cards with Celtic as BIN sponsor.
|
|
5233
|
+
*/
|
|
5234
|
+
bank_terms?: SpendCard.BankTerms;
|
|
5235
|
+
|
|
5236
|
+
/**
|
|
5237
|
+
* Financial disclosures terms of service acceptance for commercial issuing spend cards with Celtic as BIN sponsor.
|
|
5238
|
+
*/
|
|
5239
|
+
financing_disclosures?: SpendCard.FinancingDisclosures;
|
|
5240
|
+
|
|
5241
|
+
/**
|
|
5242
|
+
* Platform terms of service acceptance for commercial issuing spend cards with Celtic as BIN sponsor.
|
|
5243
|
+
*/
|
|
5244
|
+
platform?: SpendCard.Platform;
|
|
5245
|
+
}
|
|
5246
|
+
|
|
5247
|
+
namespace SpendCard {
|
|
5248
|
+
interface BankTerms {
|
|
5249
|
+
/**
|
|
5250
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5251
|
+
*/
|
|
5252
|
+
date?: string;
|
|
5253
|
+
|
|
5254
|
+
/**
|
|
5255
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5256
|
+
*/
|
|
5257
|
+
ip?: string;
|
|
5258
|
+
|
|
5259
|
+
/**
|
|
5260
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5261
|
+
*/
|
|
5262
|
+
user_agent?: string;
|
|
5263
|
+
}
|
|
5264
|
+
|
|
5265
|
+
interface FinancingDisclosures {
|
|
5266
|
+
/**
|
|
5267
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5268
|
+
*/
|
|
5269
|
+
date?: string;
|
|
5270
|
+
|
|
5271
|
+
/**
|
|
5272
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5273
|
+
*/
|
|
5274
|
+
ip?: string;
|
|
5275
|
+
|
|
5276
|
+
/**
|
|
5277
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5278
|
+
*/
|
|
5279
|
+
user_agent?: string;
|
|
5280
|
+
}
|
|
5281
|
+
|
|
5282
|
+
interface Platform {
|
|
5283
|
+
/**
|
|
5284
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5285
|
+
*/
|
|
5286
|
+
date?: string;
|
|
5287
|
+
|
|
5288
|
+
/**
|
|
5289
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5290
|
+
*/
|
|
5291
|
+
ip?: string;
|
|
5292
|
+
|
|
5293
|
+
/**
|
|
5294
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5295
|
+
*/
|
|
5296
|
+
user_agent?: string;
|
|
5297
|
+
}
|
|
5298
|
+
}
|
|
5299
|
+
}
|
|
5300
|
+
|
|
5301
|
+
interface CrossRiverBank {
|
|
5302
|
+
/**
|
|
5303
|
+
* Terms of service acceptances for commercial issuing Apple Pay cards with Cross River Bank as BIN sponsor.
|
|
5304
|
+
*/
|
|
5305
|
+
apple_pay?: CrossRiverBank.ApplePay;
|
|
5306
|
+
|
|
5307
|
+
/**
|
|
5308
|
+
* Terms of service acceptances for commercial issuing charge cards with Cross River Bank as BIN sponsor.
|
|
5309
|
+
*/
|
|
5310
|
+
charge_card?: CrossRiverBank.ChargeCard;
|
|
5311
|
+
|
|
5312
|
+
/**
|
|
5313
|
+
* Terms of service acceptances for commercial issuing spend cards with Cross River Bank as BIN sponsor.
|
|
5314
|
+
*/
|
|
5315
|
+
spend_card?: CrossRiverBank.SpendCard;
|
|
5316
|
+
}
|
|
5317
|
+
|
|
5318
|
+
namespace CrossRiverBank {
|
|
5319
|
+
interface ApplePay {
|
|
5320
|
+
/**
|
|
5321
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5322
|
+
*/
|
|
5323
|
+
date?: string;
|
|
5324
|
+
|
|
5325
|
+
/**
|
|
5326
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5327
|
+
*/
|
|
5328
|
+
ip?: string;
|
|
5329
|
+
|
|
5330
|
+
/**
|
|
5331
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5332
|
+
*/
|
|
5333
|
+
user_agent?: string;
|
|
5334
|
+
}
|
|
5335
|
+
|
|
5336
|
+
interface ChargeCard {
|
|
5337
|
+
/**
|
|
5338
|
+
* Bank terms of service acceptance for commercial issuing charge cards with Cross River Bank as BIN sponsor.
|
|
5339
|
+
*/
|
|
5340
|
+
bank_terms?: ChargeCard.BankTerms;
|
|
5341
|
+
|
|
5342
|
+
/**
|
|
5343
|
+
* Financial disclosures terms of service acceptance for commercial issuing charge cards with Cross River Bank as BIN sponsor.
|
|
5344
|
+
*/
|
|
5345
|
+
financing_disclosures?: ChargeCard.FinancingDisclosures;
|
|
5346
|
+
|
|
5347
|
+
/**
|
|
5348
|
+
* Platform terms of service acceptance for commercial issuing charge cards with Cross River Bank as BIN sponsor.
|
|
5349
|
+
*/
|
|
5350
|
+
platform?: ChargeCard.Platform;
|
|
5351
|
+
}
|
|
5352
|
+
|
|
5353
|
+
namespace ChargeCard {
|
|
5354
|
+
interface BankTerms {
|
|
5355
|
+
/**
|
|
5356
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5357
|
+
*/
|
|
5358
|
+
date?: string;
|
|
5359
|
+
|
|
5360
|
+
/**
|
|
5361
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5362
|
+
*/
|
|
5363
|
+
ip?: string;
|
|
5364
|
+
|
|
5365
|
+
/**
|
|
5366
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5367
|
+
*/
|
|
5368
|
+
user_agent?: string;
|
|
5369
|
+
}
|
|
5370
|
+
|
|
5371
|
+
interface FinancingDisclosures {
|
|
5372
|
+
/**
|
|
5373
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5374
|
+
*/
|
|
5375
|
+
date?: string;
|
|
5376
|
+
|
|
5377
|
+
/**
|
|
5378
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5379
|
+
*/
|
|
5380
|
+
ip?: string;
|
|
5381
|
+
|
|
5382
|
+
/**
|
|
5383
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5384
|
+
*/
|
|
5385
|
+
user_agent?: string;
|
|
5386
|
+
}
|
|
5387
|
+
|
|
5388
|
+
interface Platform {
|
|
5389
|
+
/**
|
|
5390
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5391
|
+
*/
|
|
5392
|
+
date?: string;
|
|
5393
|
+
|
|
5394
|
+
/**
|
|
5395
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5396
|
+
*/
|
|
5397
|
+
ip?: string;
|
|
5398
|
+
|
|
5399
|
+
/**
|
|
5400
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5401
|
+
*/
|
|
5402
|
+
user_agent?: string;
|
|
5403
|
+
}
|
|
5404
|
+
}
|
|
5405
|
+
|
|
5406
|
+
interface SpendCard {
|
|
5407
|
+
/**
|
|
5408
|
+
* Bank terms of service acceptance for commercial issuing spend cards with Cross River Bank as BIN sponsor.
|
|
5409
|
+
*/
|
|
5410
|
+
bank_terms?: SpendCard.BankTerms;
|
|
5411
|
+
|
|
5412
|
+
/**
|
|
5413
|
+
* Financial disclosures terms of service acceptance for commercial issuing spend cards with Cross River Bank as BIN sponsor.
|
|
5414
|
+
*/
|
|
5415
|
+
financing_disclosures?: SpendCard.FinancingDisclosures;
|
|
5416
|
+
}
|
|
5417
|
+
|
|
5418
|
+
namespace SpendCard {
|
|
5419
|
+
interface BankTerms {
|
|
5420
|
+
/**
|
|
5421
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5422
|
+
*/
|
|
5423
|
+
date?: string;
|
|
5424
|
+
|
|
5425
|
+
/**
|
|
5426
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5427
|
+
*/
|
|
5428
|
+
ip?: string;
|
|
5429
|
+
|
|
5430
|
+
/**
|
|
5431
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5432
|
+
*/
|
|
5433
|
+
user_agent?: string;
|
|
5434
|
+
}
|
|
5435
|
+
|
|
5436
|
+
interface FinancingDisclosures {
|
|
5437
|
+
/**
|
|
5438
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5439
|
+
*/
|
|
5440
|
+
date?: string;
|
|
5441
|
+
|
|
5442
|
+
/**
|
|
5443
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5444
|
+
*/
|
|
5445
|
+
ip?: string;
|
|
5446
|
+
|
|
5447
|
+
/**
|
|
5448
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5449
|
+
*/
|
|
5450
|
+
user_agent?: string;
|
|
5451
|
+
}
|
|
5452
|
+
}
|
|
5453
|
+
}
|
|
5454
|
+
}
|
|
5455
|
+
}
|
|
5456
|
+
|
|
5457
|
+
interface CryptoStorer {
|
|
5458
|
+
/**
|
|
5459
|
+
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
5460
|
+
*/
|
|
5461
|
+
date?: string;
|
|
5462
|
+
|
|
5463
|
+
/**
|
|
5464
|
+
* The IP address from which the Account's representative accepted the terms of service.
|
|
5465
|
+
*/
|
|
5466
|
+
ip?: string;
|
|
5467
|
+
|
|
5468
|
+
/**
|
|
5469
|
+
* The user agent of the browser from which the Account's representative accepted the terms of service.
|
|
5470
|
+
*/
|
|
5471
|
+
user_agent?: string;
|
|
5472
|
+
}
|
|
5473
|
+
|
|
4016
5474
|
interface Storer {
|
|
4017
5475
|
/**
|
|
4018
5476
|
* The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
|
|
@@ -4043,6 +5501,11 @@ declare module 'stripe' {
|
|
|
4043
5501
|
*/
|
|
4044
5502
|
annual_revenue?: BusinessDetails.AnnualRevenue;
|
|
4045
5503
|
|
|
5504
|
+
/**
|
|
5505
|
+
* A detailed description of the business's compliance and anti-money laundering controls and practices.
|
|
5506
|
+
*/
|
|
5507
|
+
compliance_screening_description?: string;
|
|
5508
|
+
|
|
4046
5509
|
/**
|
|
4047
5510
|
* A document verifying the business.
|
|
4048
5511
|
*/
|
|
@@ -4887,6 +6350,7 @@ declare module 'stripe' {
|
|
|
4887
6350
|
}
|
|
4888
6351
|
|
|
4889
6352
|
type Include =
|
|
6353
|
+
| 'configuration.card_creator'
|
|
4890
6354
|
| 'configuration.customer'
|
|
4891
6355
|
| 'configuration.merchant'
|
|
4892
6356
|
| 'configuration.recipient'
|
|
@@ -4904,6 +6368,11 @@ declare module 'stripe' {
|
|
|
4904
6368
|
*/
|
|
4905
6369
|
applied_configurations?: Array<string>;
|
|
4906
6370
|
|
|
6371
|
+
/**
|
|
6372
|
+
* Filter by whether the account is closed. If omitted, returns only Accounts that are not closed.
|
|
6373
|
+
*/
|
|
6374
|
+
closed?: boolean;
|
|
6375
|
+
|
|
4907
6376
|
/**
|
|
4908
6377
|
* The upper limit on the number of accounts returned by the List Account request.
|
|
4909
6378
|
*/
|
|
@@ -4923,6 +6392,7 @@ declare module 'stripe' {
|
|
|
4923
6392
|
|
|
4924
6393
|
namespace AccountCloseParams {
|
|
4925
6394
|
type AppliedConfiguration =
|
|
6395
|
+
| 'card_creator'
|
|
4926
6396
|
| 'customer'
|
|
4927
6397
|
| 'merchant'
|
|
4928
6398
|
| 'recipient'
|
|
@@ -4981,7 +6451,7 @@ declare module 'stripe' {
|
|
|
4981
6451
|
): ApiListPromise<Stripe.V2.Core.Account>;
|
|
4982
6452
|
|
|
4983
6453
|
/**
|
|
4984
|
-
* Removes access to the Account and its associated resources.
|
|
6454
|
+
* Removes access to the Account and its associated resources. Closed Accounts can no longer be operated on, but limited information can still be retrieved through the API in order to be able to track their history.
|
|
4985
6455
|
*/
|
|
4986
6456
|
close(
|
|
4987
6457
|
id: string,
|