stripe 19.3.0-beta.1 → 19.4.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.
Files changed (184) hide show
  1. package/CHANGELOG.md +235 -1
  2. package/OPENAPI_VERSION +1 -1
  3. package/VERSION +1 -1
  4. package/cjs/RequestSender.js +1 -1
  5. package/cjs/apiVersion.js +1 -1
  6. package/cjs/resources/DelegatedCheckout/RequestedSessions.js +28 -0
  7. package/cjs/resources/Identity/BlocklistEntries.js +25 -0
  8. package/cjs/resources/PaymentMethods.js +4 -0
  9. package/cjs/resources/TestHelpers/Capital/FinancingOffers.js +16 -0
  10. package/cjs/resources/V2/Billing/CustomPricingUnits.js +25 -0
  11. package/cjs/resources/V2/Billing/Intents/Actions.js +17 -0
  12. package/cjs/resources/V2/Billing/Intents.js +36 -0
  13. package/cjs/resources/V2/Billing/LicenseFeeSubscriptions.js +12 -0
  14. package/cjs/resources/V2/Billing/LicenseFees/Versions.js +17 -0
  15. package/cjs/resources/V2/Billing/LicenseFees.js +27 -0
  16. package/cjs/resources/V2/Billing/LicensedItems.js +25 -0
  17. package/cjs/resources/V2/Billing/MeteredItems.js +22 -0
  18. package/cjs/resources/V2/Billing/PricingPlanSubscriptions/Components.js +12 -0
  19. package/cjs/resources/V2/Billing/PricingPlanSubscriptions.js +26 -0
  20. package/cjs/resources/V2/Billing/PricingPlans/Components.js +29 -0
  21. package/cjs/resources/V2/Billing/PricingPlans/Versions.js +17 -0
  22. package/cjs/resources/V2/Billing/PricingPlans.js +29 -0
  23. package/cjs/resources/V2/Billing/RateCardSubscriptions.js +29 -0
  24. package/cjs/resources/V2/Billing/RateCards/Rates.js +25 -0
  25. package/cjs/resources/V2/Billing/RateCards/Versions.js +17 -0
  26. package/cjs/resources/V2/Billing/RateCards.js +29 -0
  27. package/cjs/resources/V2/Billing/ServiceActions.js +20 -0
  28. package/cjs/resources/V2/Core/ClaimableSandboxes.js +16 -0
  29. package/cjs/resources/V2/MoneyManagement/RecipientVerifications.js +20 -0
  30. package/cjs/resources/V2/Reporting/ReportRuns.js +13 -0
  31. package/cjs/resources/V2/Reporting/Reports.js +12 -0
  32. package/cjs/resources/V2/Tax/AutomaticRules.js +22 -0
  33. package/cjs/resources/V2/TestHelpers/MoneyManagement.js +12 -0
  34. package/cjs/resources.js +47 -1
  35. package/cjs/stripe.core.js +1 -1
  36. package/esm/RequestSender.js +1 -1
  37. package/esm/apiVersion.js +1 -1
  38. package/esm/resources/DelegatedCheckout/RequestedSessions.js +25 -0
  39. package/esm/resources/Identity/BlocklistEntries.js +22 -0
  40. package/esm/resources/PaymentMethods.js +4 -0
  41. package/esm/resources/TestHelpers/Capital/FinancingOffers.js +13 -0
  42. package/esm/resources/V2/Billing/CustomPricingUnits.js +22 -0
  43. package/esm/resources/V2/Billing/Intents/Actions.js +14 -0
  44. package/esm/resources/V2/Billing/Intents.js +33 -0
  45. package/esm/resources/V2/Billing/LicenseFeeSubscriptions.js +9 -0
  46. package/esm/resources/V2/Billing/LicenseFees/Versions.js +14 -0
  47. package/esm/resources/V2/Billing/LicenseFees.js +24 -0
  48. package/esm/resources/V2/Billing/LicensedItems.js +22 -0
  49. package/esm/resources/V2/Billing/MeteredItems.js +19 -0
  50. package/esm/resources/V2/Billing/PricingPlanSubscriptions/Components.js +9 -0
  51. package/esm/resources/V2/Billing/PricingPlanSubscriptions.js +23 -0
  52. package/esm/resources/V2/Billing/PricingPlans/Components.js +26 -0
  53. package/esm/resources/V2/Billing/PricingPlans/Versions.js +14 -0
  54. package/esm/resources/V2/Billing/PricingPlans.js +26 -0
  55. package/esm/resources/V2/Billing/RateCardSubscriptions.js +26 -0
  56. package/esm/resources/V2/Billing/RateCards/Rates.js +22 -0
  57. package/esm/resources/V2/Billing/RateCards/Versions.js +14 -0
  58. package/esm/resources/V2/Billing/RateCards.js +26 -0
  59. package/esm/resources/V2/Billing/ServiceActions.js +17 -0
  60. package/esm/resources/V2/Core/ClaimableSandboxes.js +13 -0
  61. package/esm/resources/V2/MoneyManagement/RecipientVerifications.js +17 -0
  62. package/esm/resources/V2/Reporting/ReportRuns.js +10 -0
  63. package/esm/resources/V2/Reporting/Reports.js +9 -0
  64. package/esm/resources/V2/Tax/AutomaticRules.js +19 -0
  65. package/esm/resources/V2/TestHelpers/MoneyManagement.js +9 -0
  66. package/esm/resources.js +46 -0
  67. package/esm/stripe.core.js +1 -1
  68. package/package.json +1 -1
  69. package/types/ApplicationFees.d.ts +6 -1
  70. package/types/Balance.d.ts +82 -0
  71. package/types/BalanceTransactions.d.ts +2 -1
  72. package/types/Billing/AlertTriggereds.d.ts +15 -0
  73. package/types/Billing/Alerts.d.ts +116 -1
  74. package/types/Billing/AlertsResource.d.ts +149 -2
  75. package/types/Billing/Analytics/MeterUsageResource.d.ts +5 -0
  76. package/types/Billing/Analytics/MeterUsageRows.d.ts +7 -0
  77. package/types/Billing/CreditBalanceSummary.d.ts +118 -2
  78. package/types/Billing/CreditBalanceSummaryResource.d.ts +12 -0
  79. package/types/Billing/CreditBalanceTransactions.d.ts +118 -2
  80. package/types/Billing/CreditGrants.d.ts +71 -1
  81. package/types/Billing/CreditGrantsResource.d.ts +32 -1
  82. package/types/Billing/MeterEventSummaries.d.ts +7 -0
  83. package/types/Billing/Meters.d.ts +5 -0
  84. package/types/Billing/MetersResource.d.ts +17 -0
  85. package/types/Cards.d.ts +14 -0
  86. package/types/Charges.d.ts +14 -0
  87. package/types/ChargesResource.d.ts +4 -16
  88. package/types/Checkout/Sessions.d.ts +58 -0
  89. package/types/Checkout/SessionsResource.d.ts +50 -0
  90. package/types/ConfirmationTokens.d.ts +14 -0
  91. package/types/Coupons.d.ts +3 -1
  92. package/types/CouponsResource.d.ts +3 -1
  93. package/types/DelegatedCheckout/RequestedSessions.d.ts +360 -0
  94. package/types/DelegatedCheckout/RequestedSessionsResource.d.ts +593 -0
  95. package/types/Identity/BlocklistEntries.d.ts +78 -0
  96. package/types/Identity/BlocklistEntriesResource.d.ts +146 -0
  97. package/types/Identity/VerificationReports.d.ts +10 -0
  98. package/types/Identity/VerificationReportsResource.d.ts +5 -0
  99. package/types/InvoiceItems.d.ts +104 -2
  100. package/types/InvoiceLineItems.d.ts +113 -2
  101. package/types/InvoicePayments.d.ts +1 -1
  102. package/types/InvoicesResource.d.ts +5 -0
  103. package/types/PaymentIntentAmountDetailsLineItems.d.ts +7 -13
  104. package/types/PaymentIntents.d.ts +37 -18
  105. package/types/PaymentIntentsResource.d.ts +164 -145
  106. package/types/PaymentMethodBalances.d.ts +63 -0
  107. package/types/PaymentMethods.d.ts +14 -0
  108. package/types/PaymentMethodsResource.d.ts +20 -0
  109. package/types/SetupIntents.d.ts +24 -1
  110. package/types/SetupIntentsResource.d.ts +90 -0
  111. package/types/TestHelpers/Capital/FinancingOffersResource.d.ts +100 -0
  112. package/types/Transfers.d.ts +4 -0
  113. package/types/TransfersResource.d.ts +2 -0
  114. package/types/TransitBalances.d.ts +40 -0
  115. package/types/V2/Billing/Cadences.d.ts +51 -2
  116. package/types/V2/Billing/CadencesResource.d.ts +32 -3
  117. package/types/V2/Billing/CollectionSettingVersions.d.ts +6 -2
  118. package/types/V2/Billing/CollectionSettings.d.ts +6 -2
  119. package/types/V2/Billing/CollectionSettingsResource.d.ts +12 -4
  120. package/types/V2/Billing/CustomPricingUnits.d.ts +56 -0
  121. package/types/V2/Billing/CustomPricingUnitsResource.d.ts +122 -0
  122. package/types/V2/Billing/IntentActions.d.ts +459 -0
  123. package/types/V2/Billing/Intents/ActionsResource.d.ts +58 -0
  124. package/types/V2/Billing/Intents.d.ts +117 -0
  125. package/types/V2/Billing/IntentsResource.d.ts +575 -0
  126. package/types/V2/Billing/LicenseFeeSubscriptions.d.ts +64 -0
  127. package/types/V2/Billing/LicenseFeeSubscriptionsResource.d.ts +28 -0
  128. package/types/V2/Billing/LicenseFeeVersions.d.ts +106 -0
  129. package/types/V2/Billing/LicenseFees/VersionsResource.d.ts +58 -0
  130. package/types/V2/Billing/LicenseFees.d.ts +164 -0
  131. package/types/V2/Billing/LicenseFeesResource.d.ts +290 -0
  132. package/types/V2/Billing/LicensedItems.d.ts +73 -0
  133. package/types/V2/Billing/LicensedItemsResource.d.ts +157 -0
  134. package/types/V2/Billing/MeteredItems.d.ts +101 -0
  135. package/types/V2/Billing/MeteredItemsResource.d.ts +189 -0
  136. package/types/V2/Billing/PricingPlanComponents.d.ts +109 -0
  137. package/types/V2/Billing/PricingPlanSubscriptionComponents.d.ts +57 -0
  138. package/types/V2/Billing/PricingPlanSubscriptions/ComponentsResource.d.ts +40 -0
  139. package/types/V2/Billing/PricingPlanSubscriptions.d.ts +144 -0
  140. package/types/V2/Billing/PricingPlanSubscriptionsResource.d.ts +120 -0
  141. package/types/V2/Billing/PricingPlanVersions.d.ts +49 -0
  142. package/types/V2/Billing/PricingPlans/ComponentsResource.d.ts +197 -0
  143. package/types/V2/Billing/PricingPlans/VersionsResource.d.ts +58 -0
  144. package/types/V2/Billing/PricingPlans.d.ts +84 -0
  145. package/types/V2/Billing/PricingPlansResource.d.ts +151 -0
  146. package/types/V2/Billing/RateCardRates.d.ts +144 -0
  147. package/types/V2/Billing/RateCardSubscriptions.d.ts +144 -0
  148. package/types/V2/Billing/RateCardSubscriptionsResource.d.ts +157 -0
  149. package/types/V2/Billing/RateCardVersions.d.ts +39 -0
  150. package/types/V2/Billing/RateCards/RatesResource.d.ts +203 -0
  151. package/types/V2/Billing/RateCards/VersionsResource.d.ts +58 -0
  152. package/types/V2/Billing/RateCards.d.ts +98 -0
  153. package/types/V2/Billing/RateCardsResource.d.ts +162 -0
  154. package/types/V2/Billing/ServiceActions.d.ts +274 -0
  155. package/types/V2/Billing/ServiceActionsResource.d.ts +370 -0
  156. package/types/V2/Core/Accounts.d.ts +1491 -23
  157. package/types/V2/Core/AccountsResource.d.ts +1619 -0
  158. package/types/V2/Core/ClaimableSandboxes.d.ts +132 -0
  159. package/types/V2/Core/ClaimableSandboxesResource.d.ts +74 -0
  160. package/types/V2/Core/EventTypes.d.ts +7399 -343
  161. package/types/V2/Core/Events.d.ts +14 -0
  162. package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +14 -0
  163. package/types/V2/MoneyManagement/InboundTransfers.d.ts +9 -3
  164. package/types/V2/MoneyManagement/OutboundPayments.d.ts +5 -0
  165. package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +5 -0
  166. package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +34 -0
  167. package/types/V2/MoneyManagement/OutboundTransfers.d.ts +5 -0
  168. package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +5 -0
  169. package/types/V2/MoneyManagement/PayoutMethods.d.ts +41 -0
  170. package/types/V2/MoneyManagement/ReceivedCredits.d.ts +5 -0
  171. package/types/V2/MoneyManagement/ReceivedDebits.d.ts +10 -0
  172. package/types/V2/MoneyManagement/RecipientVerifications.d.ts +112 -0
  173. package/types/V2/MoneyManagement/RecipientVerificationsResource.d.ts +77 -0
  174. package/types/V2/Reporting/ReportRuns.d.ts +154 -0
  175. package/types/V2/Reporting/ReportRunsResource.d.ts +75 -0
  176. package/types/V2/Reporting/Reports.d.ts +120 -0
  177. package/types/V2/Reporting/ReportsResource.d.ts +30 -0
  178. package/types/V2/Tax/AutomaticRules.d.ts +53 -0
  179. package/types/V2/Tax/AutomaticRulesResource.d.ts +102 -0
  180. package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +6 -1
  181. package/types/V2/TestHelpers/MoneyManagementResource.d.ts +49 -0
  182. package/types/Webhooks.d.ts +2 -0
  183. package/types/apiVersion.d.ts +1 -1
  184. package/types/index.d.ts +82 -0
@@ -81,12 +81,18 @@ declare module 'stripe' {
81
81
 
82
82
  namespace Account {
83
83
  type AppliedConfiguration =
84
+ | 'card_creator'
84
85
  | 'customer'
85
86
  | 'merchant'
86
87
  | 'recipient'
87
88
  | 'storer';
88
89
 
89
90
  interface Configuration {
91
+ /**
92
+ * The CardCreator Configuration allows the Account to create and issue cards to users.
93
+ */
94
+ card_creator?: Configuration.CardCreator;
95
+
90
96
  /**
91
97
  * The Customer Configuration allows the Account to be used in inbound payment flows.
92
98
  */
@@ -109,6 +115,475 @@ declare module 'stripe' {
109
115
  }
110
116
 
111
117
  namespace Configuration {
118
+ interface CardCreator {
119
+ /**
120
+ * Represents the state of the configuration, and can be updated to deactivate or re-apply a configuration.
121
+ */
122
+ applied: boolean;
123
+
124
+ /**
125
+ * Capabilities that have been requested on the CardCreator Configuration.
126
+ */
127
+ capabilities?: CardCreator.Capabilities;
128
+ }
129
+
130
+ namespace CardCreator {
131
+ interface Capabilities {
132
+ /**
133
+ * Can create cards for commercial issuing use cases.
134
+ */
135
+ commercial?: Capabilities.Commercial;
136
+ }
137
+
138
+ namespace Capabilities {
139
+ interface Commercial {
140
+ /**
141
+ * Can create commercial issuing cards with Celtic as BIN sponsor.
142
+ */
143
+ celtic?: Commercial.Celtic;
144
+
145
+ /**
146
+ * Can create commercial issuing cards with Cross River Bank as BIN sponsor.
147
+ */
148
+ cross_river_bank?: Commercial.CrossRiverBank;
149
+
150
+ /**
151
+ * Can create commercial issuing cards with Lead as a BIN sponsor.
152
+ */
153
+ lead?: Commercial.Lead;
154
+
155
+ /**
156
+ * Can create commercial issuing cards with Stripe as a BIN sponsor.
157
+ */
158
+ stripe?: Commercial.Stripe;
159
+ }
160
+
161
+ namespace Commercial {
162
+ interface Celtic {
163
+ /**
164
+ * Can create commercial issuing charge cards with Celtic as BIN sponsor.
165
+ */
166
+ charge_card?: Celtic.ChargeCard;
167
+
168
+ /**
169
+ * Can create commercial issuing spend cards with Celtic as BIN sponsor.
170
+ */
171
+ spend_card?: Celtic.SpendCard;
172
+ }
173
+
174
+ namespace Celtic {
175
+ interface ChargeCard {
176
+ /**
177
+ * Whether the Capability has been requested.
178
+ */
179
+ requested: boolean;
180
+
181
+ /**
182
+ * The status of the Capability.
183
+ */
184
+ status: ChargeCard.Status;
185
+
186
+ /**
187
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
188
+ */
189
+ status_details: Array<ChargeCard.StatusDetail>;
190
+ }
191
+
192
+ namespace ChargeCard {
193
+ type Status =
194
+ | 'active'
195
+ | 'pending'
196
+ | 'restricted'
197
+ | 'unsupported';
198
+
199
+ interface StatusDetail {
200
+ /**
201
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
202
+ */
203
+ code: StatusDetail.Code;
204
+
205
+ /**
206
+ * Machine-readable code explaining how to make the Capability active.
207
+ */
208
+ resolution: StatusDetail.Resolution;
209
+ }
210
+
211
+ namespace StatusDetail {
212
+ type Code =
213
+ | 'determining_status'
214
+ | 'requirements_past_due'
215
+ | 'requirements_pending_verification'
216
+ | 'restricted_other'
217
+ | 'unsupported_business'
218
+ | 'unsupported_country'
219
+ | 'unsupported_entity_type';
220
+
221
+ type Resolution =
222
+ | 'contact_stripe'
223
+ | 'no_resolution'
224
+ | 'provide_info';
225
+ }
226
+ }
227
+
228
+ interface SpendCard {
229
+ /**
230
+ * Whether the Capability has been requested.
231
+ */
232
+ requested: boolean;
233
+
234
+ /**
235
+ * The status of the Capability.
236
+ */
237
+ status: SpendCard.Status;
238
+
239
+ /**
240
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
241
+ */
242
+ status_details: Array<SpendCard.StatusDetail>;
243
+ }
244
+
245
+ namespace SpendCard {
246
+ type Status =
247
+ | 'active'
248
+ | 'pending'
249
+ | 'restricted'
250
+ | 'unsupported';
251
+
252
+ interface StatusDetail {
253
+ /**
254
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
255
+ */
256
+ code: StatusDetail.Code;
257
+
258
+ /**
259
+ * Machine-readable code explaining how to make the Capability active.
260
+ */
261
+ resolution: StatusDetail.Resolution;
262
+ }
263
+
264
+ namespace StatusDetail {
265
+ type Code =
266
+ | 'determining_status'
267
+ | 'requirements_past_due'
268
+ | 'requirements_pending_verification'
269
+ | 'restricted_other'
270
+ | 'unsupported_business'
271
+ | 'unsupported_country'
272
+ | 'unsupported_entity_type';
273
+
274
+ type Resolution =
275
+ | 'contact_stripe'
276
+ | 'no_resolution'
277
+ | 'provide_info';
278
+ }
279
+ }
280
+ }
281
+
282
+ interface CrossRiverBank {
283
+ /**
284
+ * Can create commercial issuing charge cards with Cross River Bank as BIN sponsor.
285
+ */
286
+ charge_card?: CrossRiverBank.ChargeCard;
287
+
288
+ /**
289
+ * Can create commercial issuing spend cards with Cross River Bank as BIN sponsor.
290
+ */
291
+ spend_card?: CrossRiverBank.SpendCard;
292
+ }
293
+
294
+ namespace CrossRiverBank {
295
+ interface ChargeCard {
296
+ /**
297
+ * Whether the Capability has been requested.
298
+ */
299
+ requested: boolean;
300
+
301
+ /**
302
+ * The status of the Capability.
303
+ */
304
+ status: ChargeCard.Status;
305
+
306
+ /**
307
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
308
+ */
309
+ status_details: Array<ChargeCard.StatusDetail>;
310
+ }
311
+
312
+ namespace ChargeCard {
313
+ type Status =
314
+ | 'active'
315
+ | 'pending'
316
+ | 'restricted'
317
+ | 'unsupported';
318
+
319
+ interface StatusDetail {
320
+ /**
321
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
322
+ */
323
+ code: StatusDetail.Code;
324
+
325
+ /**
326
+ * Machine-readable code explaining how to make the Capability active.
327
+ */
328
+ resolution: StatusDetail.Resolution;
329
+ }
330
+
331
+ namespace StatusDetail {
332
+ type Code =
333
+ | 'determining_status'
334
+ | 'requirements_past_due'
335
+ | 'requirements_pending_verification'
336
+ | 'restricted_other'
337
+ | 'unsupported_business'
338
+ | 'unsupported_country'
339
+ | 'unsupported_entity_type';
340
+
341
+ type Resolution =
342
+ | 'contact_stripe'
343
+ | 'no_resolution'
344
+ | 'provide_info';
345
+ }
346
+ }
347
+
348
+ interface SpendCard {
349
+ /**
350
+ * Whether the Capability has been requested.
351
+ */
352
+ requested: boolean;
353
+
354
+ /**
355
+ * The status of the Capability.
356
+ */
357
+ status: SpendCard.Status;
358
+
359
+ /**
360
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
361
+ */
362
+ status_details: Array<SpendCard.StatusDetail>;
363
+ }
364
+
365
+ namespace SpendCard {
366
+ type Status =
367
+ | 'active'
368
+ | 'pending'
369
+ | 'restricted'
370
+ | 'unsupported';
371
+
372
+ interface StatusDetail {
373
+ /**
374
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
375
+ */
376
+ code: StatusDetail.Code;
377
+
378
+ /**
379
+ * Machine-readable code explaining how to make the Capability active.
380
+ */
381
+ resolution: StatusDetail.Resolution;
382
+ }
383
+
384
+ namespace StatusDetail {
385
+ type Code =
386
+ | 'determining_status'
387
+ | 'requirements_past_due'
388
+ | 'requirements_pending_verification'
389
+ | 'restricted_other'
390
+ | 'unsupported_business'
391
+ | 'unsupported_country'
392
+ | 'unsupported_entity_type';
393
+
394
+ type Resolution =
395
+ | 'contact_stripe'
396
+ | 'no_resolution'
397
+ | 'provide_info';
398
+ }
399
+ }
400
+ }
401
+
402
+ interface Lead {
403
+ /**
404
+ * Can create commercial Global(cross border) issuing prepaid cards with Lead as BIN sponsor.
405
+ */
406
+ prepaid_card?: Lead.PrepaidCard;
407
+ }
408
+
409
+ namespace Lead {
410
+ interface PrepaidCard {
411
+ /**
412
+ * Whether the Capability has been requested.
413
+ */
414
+ requested: boolean;
415
+
416
+ /**
417
+ * The status of the Capability.
418
+ */
419
+ status: PrepaidCard.Status;
420
+
421
+ /**
422
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
423
+ */
424
+ status_details: Array<PrepaidCard.StatusDetail>;
425
+ }
426
+
427
+ namespace PrepaidCard {
428
+ type Status =
429
+ | 'active'
430
+ | 'pending'
431
+ | 'restricted'
432
+ | 'unsupported';
433
+
434
+ interface StatusDetail {
435
+ /**
436
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
437
+ */
438
+ code: StatusDetail.Code;
439
+
440
+ /**
441
+ * Machine-readable code explaining how to make the Capability active.
442
+ */
443
+ resolution: StatusDetail.Resolution;
444
+ }
445
+
446
+ namespace StatusDetail {
447
+ type Code =
448
+ | 'determining_status'
449
+ | 'requirements_past_due'
450
+ | 'requirements_pending_verification'
451
+ | 'restricted_other'
452
+ | 'unsupported_business'
453
+ | 'unsupported_country'
454
+ | 'unsupported_entity_type';
455
+
456
+ type Resolution =
457
+ | 'contact_stripe'
458
+ | 'no_resolution'
459
+ | 'provide_info';
460
+ }
461
+ }
462
+ }
463
+
464
+ interface Stripe {
465
+ /**
466
+ * Can create commercial issuing charge cards with Stripe as BIN sponsor.
467
+ */
468
+ charge_card?: Stripe.ChargeCard;
469
+
470
+ /**
471
+ * Can create commercial issuing prepaid cards with Stripe as BIN sponsor.
472
+ */
473
+ prepaid_card?: Stripe.PrepaidCard;
474
+ }
475
+
476
+ namespace Stripe {
477
+ interface ChargeCard {
478
+ /**
479
+ * Whether the Capability has been requested.
480
+ */
481
+ requested: boolean;
482
+
483
+ /**
484
+ * The status of the Capability.
485
+ */
486
+ status: ChargeCard.Status;
487
+
488
+ /**
489
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
490
+ */
491
+ status_details: Array<ChargeCard.StatusDetail>;
492
+ }
493
+
494
+ namespace ChargeCard {
495
+ type Status =
496
+ | 'active'
497
+ | 'pending'
498
+ | 'restricted'
499
+ | 'unsupported';
500
+
501
+ interface StatusDetail {
502
+ /**
503
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
504
+ */
505
+ code: StatusDetail.Code;
506
+
507
+ /**
508
+ * Machine-readable code explaining how to make the Capability active.
509
+ */
510
+ resolution: StatusDetail.Resolution;
511
+ }
512
+
513
+ namespace StatusDetail {
514
+ type Code =
515
+ | 'determining_status'
516
+ | 'requirements_past_due'
517
+ | 'requirements_pending_verification'
518
+ | 'restricted_other'
519
+ | 'unsupported_business'
520
+ | 'unsupported_country'
521
+ | 'unsupported_entity_type';
522
+
523
+ type Resolution =
524
+ | 'contact_stripe'
525
+ | 'no_resolution'
526
+ | 'provide_info';
527
+ }
528
+ }
529
+
530
+ interface PrepaidCard {
531
+ /**
532
+ * Whether the Capability has been requested.
533
+ */
534
+ requested: boolean;
535
+
536
+ /**
537
+ * The status of the Capability.
538
+ */
539
+ status: PrepaidCard.Status;
540
+
541
+ /**
542
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
543
+ */
544
+ status_details: Array<PrepaidCard.StatusDetail>;
545
+ }
546
+
547
+ namespace PrepaidCard {
548
+ type Status =
549
+ | 'active'
550
+ | 'pending'
551
+ | 'restricted'
552
+ | 'unsupported';
553
+
554
+ interface StatusDetail {
555
+ /**
556
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
557
+ */
558
+ code: StatusDetail.Code;
559
+
560
+ /**
561
+ * Machine-readable code explaining how to make the Capability active.
562
+ */
563
+ resolution: StatusDetail.Resolution;
564
+ }
565
+
566
+ namespace StatusDetail {
567
+ type Code =
568
+ | 'determining_status'
569
+ | 'requirements_past_due'
570
+ | 'requirements_pending_verification'
571
+ | 'restricted_other'
572
+ | 'unsupported_business'
573
+ | 'unsupported_country'
574
+ | 'unsupported_entity_type';
575
+
576
+ type Resolution =
577
+ | 'contact_stripe'
578
+ | 'no_resolution'
579
+ | 'provide_info';
580
+ }
581
+ }
582
+ }
583
+ }
584
+ }
585
+ }
586
+
112
587
  interface Customer {
113
588
  /**
114
589
  * Represents the state of the configuration, and can be updated to deactivate or re-apply a configuration.
@@ -3209,6 +3684,11 @@ declare module 'stripe' {
3209
3684
  */
3210
3685
  cards?: Capabilities.Cards;
3211
3686
 
3687
+ /**
3688
+ * Capability that enable OutboundPayments to a crypto wallet linked to this Account.
3689
+ */
3690
+ crypto_wallets?: Capabilities.CryptoWallets;
3691
+
3212
3692
  /**
3213
3693
  * Capabilities that enable the recipient to manage their Stripe Balance (/v1/balance).
3214
3694
  */
@@ -3389,6 +3869,59 @@ declare module 'stripe' {
3389
3869
  }
3390
3870
  }
3391
3871
 
3872
+ interface CryptoWallets {
3873
+ /**
3874
+ * Whether the Capability has been requested.
3875
+ */
3876
+ requested: boolean;
3877
+
3878
+ /**
3879
+ * The status of the Capability.
3880
+ */
3881
+ status: CryptoWallets.Status;
3882
+
3883
+ /**
3884
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
3885
+ */
3886
+ status_details: Array<CryptoWallets.StatusDetail>;
3887
+ }
3888
+
3889
+ namespace CryptoWallets {
3890
+ type Status =
3891
+ | 'active'
3892
+ | 'pending'
3893
+ | 'restricted'
3894
+ | 'unsupported';
3895
+
3896
+ interface StatusDetail {
3897
+ /**
3898
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
3899
+ */
3900
+ code: StatusDetail.Code;
3901
+
3902
+ /**
3903
+ * Machine-readable code explaining how to make the Capability active.
3904
+ */
3905
+ resolution: StatusDetail.Resolution;
3906
+ }
3907
+
3908
+ namespace StatusDetail {
3909
+ type Code =
3910
+ | 'determining_status'
3911
+ | 'requirements_past_due'
3912
+ | 'requirements_pending_verification'
3913
+ | 'restricted_other'
3914
+ | 'unsupported_business'
3915
+ | 'unsupported_country'
3916
+ | 'unsupported_entity_type';
3917
+
3918
+ type Resolution =
3919
+ | 'contact_stripe'
3920
+ | 'no_resolution'
3921
+ | 'provide_info';
3922
+ }
3923
+ }
3924
+
3392
3925
  interface StripeBalance {
3393
3926
  /**
3394
3927
  * Allows the account to do payouts using their Stripe Balance (/v1/balance).
@@ -3598,6 +4131,56 @@ declare module 'stripe' {
3598
4131
  * Capabilities that have been requested on the Storer Configuration.
3599
4132
  */
3600
4133
  capabilities?: Storer.Capabilities;
4134
+
4135
+ /**
4136
+ * List of high-risk activities the business is involved in.
4137
+ */
4138
+ high_risk_activities?: Array<Storer.HighRiskActivity>;
4139
+
4140
+ /**
4141
+ * An explanation of the high risk activities that the business performs.
4142
+ */
4143
+ high_risk_activities_description?: string;
4144
+
4145
+ /**
4146
+ * Description of the money services offered by the business.
4147
+ */
4148
+ money_services_description?: string;
4149
+
4150
+ /**
4151
+ * Does the business operate in any prohibited countries.
4152
+ */
4153
+ operates_in_prohibited_countries?: boolean;
4154
+
4155
+ /**
4156
+ * Does the business participate in any regulated activity.
4157
+ */
4158
+ participates_in_regulated_activity?: boolean;
4159
+
4160
+ /**
4161
+ * Primary purpose of the stored funds.
4162
+ */
4163
+ purpose_of_funds?: Storer.PurposeOfFunds;
4164
+
4165
+ /**
4166
+ * Description of the purpose of the stored funds.
4167
+ */
4168
+ purpose_of_funds_description?: string;
4169
+
4170
+ /**
4171
+ * Details of the regulated activity if the business participates in one.
4172
+ */
4173
+ regulated_activity?: Storer.RegulatedActivity;
4174
+
4175
+ /**
4176
+ * The source of funds for the business, e.g. profits, income, venture capital, etc.
4177
+ */
4178
+ source_of_funds?: Storer.SourceOfFunds;
4179
+
4180
+ /**
4181
+ * Description of the source of funds for the business' account.
4182
+ */
4183
+ source_of_funds_description?: string;
3601
4184
  }
3602
4185
 
3603
4186
  namespace Storer {
@@ -3634,6 +4217,11 @@ declare module 'stripe' {
3634
4217
  * Can provision a bank-account like financial address (VBAN) to credit/debit a FinancialAccount.
3635
4218
  */
3636
4219
  bank_accounts?: FinancialAddresses.BankAccounts;
4220
+
4221
+ /**
4222
+ * Can provision a crypto wallet like financial address to credit a FinancialAccount.
4223
+ */
4224
+ crypto_wallets?: FinancialAddresses.CryptoWallets;
3637
4225
  }
3638
4226
 
3639
4227
  namespace FinancialAddresses {
@@ -3689,22 +4277,8 @@ declare module 'stripe' {
3689
4277
  | 'provide_info';
3690
4278
  }
3691
4279
  }
3692
- }
3693
-
3694
- interface HoldsCurrencies {
3695
- /**
3696
- * Can hold storage-type funds on Stripe in GBP.
3697
- */
3698
- gbp?: HoldsCurrencies.Gbp;
3699
-
3700
- /**
3701
- * Can hold storage-type funds on Stripe in USD.
3702
- */
3703
- usd?: HoldsCurrencies.Usd;
3704
- }
3705
4280
 
3706
- namespace HoldsCurrencies {
3707
- interface Gbp {
4281
+ interface CryptoWallets {
3708
4282
  /**
3709
4283
  * Whether the Capability has been requested.
3710
4284
  */
@@ -3713,15 +4287,15 @@ declare module 'stripe' {
3713
4287
  /**
3714
4288
  * The status of the Capability.
3715
4289
  */
3716
- status: Gbp.Status;
4290
+ status: CryptoWallets.Status;
3717
4291
 
3718
4292
  /**
3719
4293
  * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
3720
4294
  */
3721
- status_details: Array<Gbp.StatusDetail>;
4295
+ status_details: Array<CryptoWallets.StatusDetail>;
3722
4296
  }
3723
4297
 
3724
- namespace Gbp {
4298
+ namespace CryptoWallets {
3725
4299
  type Status =
3726
4300
  | 'active'
3727
4301
  | 'pending'
@@ -3756,12 +4330,84 @@ declare module 'stripe' {
3756
4330
  | 'provide_info';
3757
4331
  }
3758
4332
  }
4333
+ }
3759
4334
 
3760
- interface Usd {
3761
- /**
3762
- * Whether the Capability has been requested.
3763
- */
3764
- requested: boolean;
4335
+ interface HoldsCurrencies {
4336
+ /**
4337
+ * Can hold storage-type funds on Stripe in GBP.
4338
+ */
4339
+ gbp?: HoldsCurrencies.Gbp;
4340
+
4341
+ /**
4342
+ * Can hold storage-type funds on Stripe in USD.
4343
+ */
4344
+ usd?: HoldsCurrencies.Usd;
4345
+
4346
+ /**
4347
+ * Can hold storage-type funds on Stripe in USDC.
4348
+ */
4349
+ usdc?: HoldsCurrencies.Usdc;
4350
+ }
4351
+
4352
+ namespace HoldsCurrencies {
4353
+ interface Gbp {
4354
+ /**
4355
+ * Whether the Capability has been requested.
4356
+ */
4357
+ requested: boolean;
4358
+
4359
+ /**
4360
+ * The status of the Capability.
4361
+ */
4362
+ status: Gbp.Status;
4363
+
4364
+ /**
4365
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
4366
+ */
4367
+ status_details: Array<Gbp.StatusDetail>;
4368
+ }
4369
+
4370
+ namespace Gbp {
4371
+ type Status =
4372
+ | 'active'
4373
+ | 'pending'
4374
+ | 'restricted'
4375
+ | 'unsupported';
4376
+
4377
+ interface StatusDetail {
4378
+ /**
4379
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
4380
+ */
4381
+ code: StatusDetail.Code;
4382
+
4383
+ /**
4384
+ * Machine-readable code explaining how to make the Capability active.
4385
+ */
4386
+ resolution: StatusDetail.Resolution;
4387
+ }
4388
+
4389
+ namespace StatusDetail {
4390
+ type Code =
4391
+ | 'determining_status'
4392
+ | 'requirements_past_due'
4393
+ | 'requirements_pending_verification'
4394
+ | 'restricted_other'
4395
+ | 'unsupported_business'
4396
+ | 'unsupported_country'
4397
+ | 'unsupported_entity_type';
4398
+
4399
+ type Resolution =
4400
+ | 'contact_stripe'
4401
+ | 'no_resolution'
4402
+ | 'provide_info';
4403
+ }
4404
+ }
4405
+
4406
+ interface Usd {
4407
+ /**
4408
+ * Whether the Capability has been requested.
4409
+ */
4410
+ requested: boolean;
3765
4411
 
3766
4412
  /**
3767
4413
  * The status of the Capability.
@@ -3809,6 +4455,59 @@ declare module 'stripe' {
3809
4455
  | 'provide_info';
3810
4456
  }
3811
4457
  }
4458
+
4459
+ interface Usdc {
4460
+ /**
4461
+ * Whether the Capability has been requested.
4462
+ */
4463
+ requested: boolean;
4464
+
4465
+ /**
4466
+ * The status of the Capability.
4467
+ */
4468
+ status: Usdc.Status;
4469
+
4470
+ /**
4471
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
4472
+ */
4473
+ status_details: Array<Usdc.StatusDetail>;
4474
+ }
4475
+
4476
+ namespace Usdc {
4477
+ type Status =
4478
+ | 'active'
4479
+ | 'pending'
4480
+ | 'restricted'
4481
+ | 'unsupported';
4482
+
4483
+ interface StatusDetail {
4484
+ /**
4485
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
4486
+ */
4487
+ code: StatusDetail.Code;
4488
+
4489
+ /**
4490
+ * Machine-readable code explaining how to make the Capability active.
4491
+ */
4492
+ resolution: StatusDetail.Resolution;
4493
+ }
4494
+
4495
+ namespace StatusDetail {
4496
+ type Code =
4497
+ | 'determining_status'
4498
+ | 'requirements_past_due'
4499
+ | 'requirements_pending_verification'
4500
+ | 'restricted_other'
4501
+ | 'unsupported_business'
4502
+ | 'unsupported_country'
4503
+ | 'unsupported_entity_type';
4504
+
4505
+ type Resolution =
4506
+ | 'contact_stripe'
4507
+ | 'no_resolution'
4508
+ | 'provide_info';
4509
+ }
4510
+ }
3812
4511
  }
3813
4512
 
3814
4513
  interface InboundTransfers {
@@ -3884,6 +4583,11 @@ declare module 'stripe' {
3884
4583
  */
3885
4584
  cards?: OutboundPayments.Cards;
3886
4585
 
4586
+ /**
4587
+ * Can send funds from a FinancialAccount to a crypto wallet, owned by someone else.
4588
+ */
4589
+ crypto_wallets?: OutboundPayments.CryptoWallets;
4590
+
3887
4591
  /**
3888
4592
  * Can send funds from a FinancialAccount to another FinancialAccount, owned by someone else.
3889
4593
  */
@@ -3997,6 +4701,59 @@ declare module 'stripe' {
3997
4701
  }
3998
4702
  }
3999
4703
 
4704
+ interface CryptoWallets {
4705
+ /**
4706
+ * Whether the Capability has been requested.
4707
+ */
4708
+ requested: boolean;
4709
+
4710
+ /**
4711
+ * The status of the Capability.
4712
+ */
4713
+ status: CryptoWallets.Status;
4714
+
4715
+ /**
4716
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
4717
+ */
4718
+ status_details: Array<CryptoWallets.StatusDetail>;
4719
+ }
4720
+
4721
+ namespace CryptoWallets {
4722
+ type Status =
4723
+ | 'active'
4724
+ | 'pending'
4725
+ | 'restricted'
4726
+ | 'unsupported';
4727
+
4728
+ interface StatusDetail {
4729
+ /**
4730
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
4731
+ */
4732
+ code: StatusDetail.Code;
4733
+
4734
+ /**
4735
+ * Machine-readable code explaining how to make the Capability active.
4736
+ */
4737
+ resolution: StatusDetail.Resolution;
4738
+ }
4739
+
4740
+ namespace StatusDetail {
4741
+ type Code =
4742
+ | 'determining_status'
4743
+ | 'requirements_past_due'
4744
+ | 'requirements_pending_verification'
4745
+ | 'restricted_other'
4746
+ | 'unsupported_business'
4747
+ | 'unsupported_country'
4748
+ | 'unsupported_entity_type';
4749
+
4750
+ type Resolution =
4751
+ | 'contact_stripe'
4752
+ | 'no_resolution'
4753
+ | 'provide_info';
4754
+ }
4755
+ }
4756
+
4000
4757
  interface FinancialAccounts {
4001
4758
  /**
4002
4759
  * Whether the Capability has been requested.
@@ -4057,6 +4814,11 @@ declare module 'stripe' {
4057
4814
  */
4058
4815
  bank_accounts?: OutboundTransfers.BankAccounts;
4059
4816
 
4817
+ /**
4818
+ * Can send funds from a FinancialAccount to a crypto wallet, owned by yourself.
4819
+ */
4820
+ crypto_wallets?: OutboundTransfers.CryptoWallets;
4821
+
4060
4822
  /**
4061
4823
  * Can send funds from a FinancialAccount to another FinancialAccount, owned by yourself.
4062
4824
  */
@@ -4117,6 +4879,59 @@ declare module 'stripe' {
4117
4879
  }
4118
4880
  }
4119
4881
 
4882
+ interface CryptoWallets {
4883
+ /**
4884
+ * Whether the Capability has been requested.
4885
+ */
4886
+ requested: boolean;
4887
+
4888
+ /**
4889
+ * The status of the Capability.
4890
+ */
4891
+ status: CryptoWallets.Status;
4892
+
4893
+ /**
4894
+ * Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
4895
+ */
4896
+ status_details: Array<CryptoWallets.StatusDetail>;
4897
+ }
4898
+
4899
+ namespace CryptoWallets {
4900
+ type Status =
4901
+ | 'active'
4902
+ | 'pending'
4903
+ | 'restricted'
4904
+ | 'unsupported';
4905
+
4906
+ interface StatusDetail {
4907
+ /**
4908
+ * Machine-readable code explaining the reason for the Capability to be in its current status.
4909
+ */
4910
+ code: StatusDetail.Code;
4911
+
4912
+ /**
4913
+ * Machine-readable code explaining how to make the Capability active.
4914
+ */
4915
+ resolution: StatusDetail.Resolution;
4916
+ }
4917
+
4918
+ namespace StatusDetail {
4919
+ type Code =
4920
+ | 'determining_status'
4921
+ | 'requirements_past_due'
4922
+ | 'requirements_pending_verification'
4923
+ | 'restricted_other'
4924
+ | 'unsupported_business'
4925
+ | 'unsupported_country'
4926
+ | 'unsupported_entity_type';
4927
+
4928
+ type Resolution =
4929
+ | 'contact_stripe'
4930
+ | 'no_resolution'
4931
+ | 'provide_info';
4932
+ }
4933
+ }
4934
+
4120
4935
  interface FinancialAccounts {
4121
4936
  /**
4122
4937
  * Whether the Capability has been requested.
@@ -4171,6 +4986,74 @@ declare module 'stripe' {
4171
4986
  }
4172
4987
  }
4173
4988
  }
4989
+
4990
+ type HighRiskActivity =
4991
+ | 'adult_entertainment'
4992
+ | 'gambling'
4993
+ | 'hold_client_funds'
4994
+ | 'investment_services'
4995
+ | 'lending_banking'
4996
+ | 'marijuana_or_related_services'
4997
+ | 'money_services'
4998
+ | 'nicotine_tobacco_or_related_services'
4999
+ | 'none'
5000
+ | 'operate_foreign_exchange_virtual_currencies_brokerage_otc'
5001
+ | 'pharmaceuticals'
5002
+ | 'precious_metals_precious_stones_jewelry'
5003
+ | 'safe_deposit_box_rentals'
5004
+ | 'third_party_payment_processing'
5005
+ | 'weapons_firearms_and_explosives';
5006
+
5007
+ type PurposeOfFunds =
5008
+ | 'charitable_donations'
5009
+ | 'ecommerce_retail_payments'
5010
+ | 'investment_purposes'
5011
+ | 'other'
5012
+ | 'payments_to_friends_or_family_abroad'
5013
+ | 'payroll'
5014
+ | 'personal_or_living_expenses'
5015
+ | 'protect_wealth'
5016
+ | 'purchase_goods_and_services'
5017
+ | 'receive_payments_for_goods_and_services'
5018
+ | 'tax_optimization'
5019
+ | 'third_party_money_transmission'
5020
+ | 'treasury_management';
5021
+
5022
+ interface RegulatedActivity {
5023
+ /**
5024
+ * A detailed description of the regulated activities the business is licensed to conduct.
5025
+ */
5026
+ description?: string;
5027
+
5028
+ /**
5029
+ * The license number or registration number assigned by the business's primary regulator.
5030
+ */
5031
+ license_number?: string;
5032
+
5033
+ /**
5034
+ * The country of the primary regulatory authority that oversees the business's regulated activities.
5035
+ */
5036
+ primary_regulatory_authority_country?: string;
5037
+
5038
+ /**
5039
+ * The name of the primary regulatory authority that oversees the business's regulated activities.
5040
+ */
5041
+ primary_regulatory_authority_name?: string;
5042
+ }
5043
+
5044
+ type SourceOfFunds =
5045
+ | 'business_loans'
5046
+ | 'grants'
5047
+ | 'inter_company_funds'
5048
+ | 'investment_proceeds'
5049
+ | 'legal_settlement'
5050
+ | 'owners_capital'
5051
+ | 'pension_retirement'
5052
+ | 'sales_of_assets'
5053
+ | 'sales_of_goods_and_services'
5054
+ | 'tax_refund'
5055
+ | 'third_party_funds'
5056
+ | 'treasury_reserves';
4174
5057
  }
4175
5058
  }
4176
5059
 
@@ -4466,6 +5349,16 @@ declare module 'stripe' {
4466
5349
  */
4467
5350
  account?: TermsOfService.Account;
4468
5351
 
5352
+ /**
5353
+ * Details on the Account's acceptance of Issuing-specific terms of service.
5354
+ */
5355
+ card_creator?: TermsOfService.CardCreator;
5356
+
5357
+ /**
5358
+ * Details on the Account's acceptance of Crypto-storer-specific terms of service.
5359
+ */
5360
+ crypto_storer?: TermsOfService.CryptoStorer;
5361
+
4469
5362
  /**
4470
5363
  * Details on the Account's acceptance of Treasury-specific terms of service.
4471
5364
  */
@@ -4490,6 +5383,567 @@ declare module 'stripe' {
4490
5383
  user_agent?: string;
4491
5384
  }
4492
5385
 
5386
+ interface CardCreator {
5387
+ /**
5388
+ * Terms of service acceptances to create cards for commercial issuing use cases.
5389
+ */
5390
+ commercial?: CardCreator.Commercial;
5391
+ }
5392
+
5393
+ namespace CardCreator {
5394
+ interface Commercial {
5395
+ /**
5396
+ * Terms of service acceptances for Stripe commercial card issuing.
5397
+ */
5398
+ account_holder?: Commercial.AccountHolder;
5399
+
5400
+ /**
5401
+ * Terms of service acceptances for commercial issuing cards with Celtic as BIN sponsor.
5402
+ */
5403
+ celtic?: Commercial.Celtic;
5404
+
5405
+ /**
5406
+ * Terms of service acceptances for commercial issuing cards with Cross River Bank as BIN sponsor.
5407
+ */
5408
+ cross_river_bank?: Commercial.CrossRiverBank;
5409
+
5410
+ /**
5411
+ * Terms of service acceptances for Stripe commercial card Global issuing.
5412
+ */
5413
+ global_account_holder?: Commercial.GlobalAccountHolder;
5414
+
5415
+ /**
5416
+ * Terms of service acceptances for commercial issuing cards with Lead as BIN sponsor.
5417
+ */
5418
+ lead?: Commercial.Lead;
5419
+ }
5420
+
5421
+ namespace Commercial {
5422
+ interface AccountHolder {
5423
+ /**
5424
+ * 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.
5425
+ */
5426
+ date?: string;
5427
+
5428
+ /**
5429
+ * The IP address from which the Account's representative accepted the terms of service.
5430
+ */
5431
+ ip?: string;
5432
+
5433
+ /**
5434
+ * The URL to the service agreement the Account's representative accepted.
5435
+ */
5436
+ url?: string;
5437
+
5438
+ /**
5439
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5440
+ */
5441
+ user_agent?: string;
5442
+ }
5443
+
5444
+ interface Celtic {
5445
+ /**
5446
+ * Terms of service acceptances for commercial issuing Apple Pay cards with Celtic as BIN sponsor.
5447
+ */
5448
+ apple_pay?: Celtic.ApplePay;
5449
+
5450
+ /**
5451
+ * Terms of service acceptances for commercial issuing charge cards with Celtic as BIN sponsor.
5452
+ */
5453
+ charge_card?: Celtic.ChargeCard;
5454
+
5455
+ /**
5456
+ * Terms of service acceptances for commercial issuing spend cards with Celtic as BIN sponsor.
5457
+ */
5458
+ spend_card?: Celtic.SpendCard;
5459
+ }
5460
+
5461
+ namespace Celtic {
5462
+ interface ApplePay {
5463
+ /**
5464
+ * 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.
5465
+ */
5466
+ date?: string;
5467
+
5468
+ /**
5469
+ * The IP address from which the Account's representative accepted the terms of service.
5470
+ */
5471
+ ip?: string;
5472
+
5473
+ /**
5474
+ * The URL to the service agreement the Account's representative accepted.
5475
+ */
5476
+ url?: string;
5477
+
5478
+ /**
5479
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5480
+ */
5481
+ user_agent?: string;
5482
+ }
5483
+
5484
+ interface ChargeCard {
5485
+ /**
5486
+ * Bank terms of service acceptance for commercial issuing charge cards with Celtic as BIN sponsor.
5487
+ */
5488
+ bank_terms?: ChargeCard.BankTerms;
5489
+
5490
+ /**
5491
+ * Platform terms of service acceptance for commercial issuing charge cards with Celtic as BIN sponsor.
5492
+ */
5493
+ platform?: ChargeCard.Platform;
5494
+ }
5495
+
5496
+ namespace ChargeCard {
5497
+ interface BankTerms {
5498
+ /**
5499
+ * 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.
5500
+ */
5501
+ date?: string;
5502
+
5503
+ /**
5504
+ * The IP address from which the Account's representative accepted the terms of service.
5505
+ */
5506
+ ip?: string;
5507
+
5508
+ /**
5509
+ * The URL to the service agreement the Account's representative accepted.
5510
+ */
5511
+ url?: string;
5512
+
5513
+ /**
5514
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5515
+ */
5516
+ user_agent?: string;
5517
+ }
5518
+
5519
+ interface Platform {
5520
+ /**
5521
+ * 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.
5522
+ */
5523
+ date?: string;
5524
+
5525
+ /**
5526
+ * The IP address from which the Account's representative accepted the terms of service.
5527
+ */
5528
+ ip?: string;
5529
+
5530
+ /**
5531
+ * The URL to the service agreement the Account's representative accepted.
5532
+ */
5533
+ url?: string;
5534
+
5535
+ /**
5536
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5537
+ */
5538
+ user_agent?: string;
5539
+ }
5540
+ }
5541
+
5542
+ interface SpendCard {
5543
+ /**
5544
+ * Bank terms of service acceptance for commercial issuing spend cards with Celtic as BIN sponsor.
5545
+ */
5546
+ bank_terms?: SpendCard.BankTerms;
5547
+
5548
+ /**
5549
+ * Financial disclosures terms of service acceptance for commercial issuing spend cards with Celtic as BIN sponsor.
5550
+ */
5551
+ financing_disclosures?: SpendCard.FinancingDisclosures;
5552
+
5553
+ /**
5554
+ * Platform terms of service acceptance for commercial issuing spend cards with Celtic as BIN sponsor.
5555
+ */
5556
+ platform?: SpendCard.Platform;
5557
+ }
5558
+
5559
+ namespace SpendCard {
5560
+ interface BankTerms {
5561
+ /**
5562
+ * 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.
5563
+ */
5564
+ date?: string;
5565
+
5566
+ /**
5567
+ * The IP address from which the Account's representative accepted the terms of service.
5568
+ */
5569
+ ip?: string;
5570
+
5571
+ /**
5572
+ * The URL to the service agreement the Account's representative accepted.
5573
+ */
5574
+ url?: string;
5575
+
5576
+ /**
5577
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5578
+ */
5579
+ user_agent?: string;
5580
+ }
5581
+
5582
+ interface FinancingDisclosures {
5583
+ /**
5584
+ * 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.
5585
+ */
5586
+ date?: string;
5587
+
5588
+ /**
5589
+ * The IP address from which the Account's representative accepted the terms of service.
5590
+ */
5591
+ ip?: string;
5592
+
5593
+ /**
5594
+ * The URL to the service agreement the Account's representative accepted.
5595
+ */
5596
+ url?: string;
5597
+
5598
+ /**
5599
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5600
+ */
5601
+ user_agent?: string;
5602
+ }
5603
+
5604
+ interface Platform {
5605
+ /**
5606
+ * 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.
5607
+ */
5608
+ date?: string;
5609
+
5610
+ /**
5611
+ * The IP address from which the Account's representative accepted the terms of service.
5612
+ */
5613
+ ip?: string;
5614
+
5615
+ /**
5616
+ * The URL to the service agreement the Account's representative accepted.
5617
+ */
5618
+ url?: string;
5619
+
5620
+ /**
5621
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5622
+ */
5623
+ user_agent?: string;
5624
+ }
5625
+ }
5626
+ }
5627
+
5628
+ interface CrossRiverBank {
5629
+ /**
5630
+ * Terms of service acceptances for commercial issuing Apple Pay cards with Cross River Bank as BIN sponsor.
5631
+ */
5632
+ apple_pay?: CrossRiverBank.ApplePay;
5633
+
5634
+ /**
5635
+ * Terms of service acceptances for commercial issuing charge cards with Cross River Bank as BIN sponsor.
5636
+ */
5637
+ charge_card?: CrossRiverBank.ChargeCard;
5638
+
5639
+ /**
5640
+ * Terms of service acceptances for commercial issuing spend cards with Cross River Bank as BIN sponsor.
5641
+ */
5642
+ spend_card?: CrossRiverBank.SpendCard;
5643
+ }
5644
+
5645
+ namespace CrossRiverBank {
5646
+ interface ApplePay {
5647
+ /**
5648
+ * 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.
5649
+ */
5650
+ date?: string;
5651
+
5652
+ /**
5653
+ * The IP address from which the Account's representative accepted the terms of service.
5654
+ */
5655
+ ip?: string;
5656
+
5657
+ /**
5658
+ * The URL to the service agreement the Account's representative accepted.
5659
+ */
5660
+ url?: string;
5661
+
5662
+ /**
5663
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5664
+ */
5665
+ user_agent?: string;
5666
+ }
5667
+
5668
+ interface ChargeCard {
5669
+ /**
5670
+ * Bank terms of service acceptance for commercial issuing charge cards with Cross River Bank as BIN sponsor.
5671
+ */
5672
+ bank_terms?: ChargeCard.BankTerms;
5673
+
5674
+ /**
5675
+ * Financial disclosures terms of service acceptance for commercial issuing charge cards with Cross River Bank as BIN sponsor.
5676
+ */
5677
+ financing_disclosures?: ChargeCard.FinancingDisclosures;
5678
+
5679
+ /**
5680
+ * Platform terms of service acceptance for commercial issuing charge cards with Cross River Bank as BIN sponsor.
5681
+ */
5682
+ platform?: ChargeCard.Platform;
5683
+ }
5684
+
5685
+ namespace ChargeCard {
5686
+ interface BankTerms {
5687
+ /**
5688
+ * 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.
5689
+ */
5690
+ date?: string;
5691
+
5692
+ /**
5693
+ * The IP address from which the Account's representative accepted the terms of service.
5694
+ */
5695
+ ip?: string;
5696
+
5697
+ /**
5698
+ * The URL to the service agreement the Account's representative accepted.
5699
+ */
5700
+ url?: string;
5701
+
5702
+ /**
5703
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5704
+ */
5705
+ user_agent?: string;
5706
+ }
5707
+
5708
+ interface FinancingDisclosures {
5709
+ /**
5710
+ * 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.
5711
+ */
5712
+ date?: string;
5713
+
5714
+ /**
5715
+ * The IP address from which the Account's representative accepted the terms of service.
5716
+ */
5717
+ ip?: string;
5718
+
5719
+ /**
5720
+ * The URL to the service agreement the Account's representative accepted.
5721
+ */
5722
+ url?: string;
5723
+
5724
+ /**
5725
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5726
+ */
5727
+ user_agent?: string;
5728
+ }
5729
+
5730
+ interface Platform {
5731
+ /**
5732
+ * 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.
5733
+ */
5734
+ date?: string;
5735
+
5736
+ /**
5737
+ * The IP address from which the Account's representative accepted the terms of service.
5738
+ */
5739
+ ip?: string;
5740
+
5741
+ /**
5742
+ * The URL to the service agreement the Account's representative accepted.
5743
+ */
5744
+ url?: string;
5745
+
5746
+ /**
5747
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5748
+ */
5749
+ user_agent?: string;
5750
+ }
5751
+ }
5752
+
5753
+ interface SpendCard {
5754
+ /**
5755
+ * Bank terms of service acceptance for commercial issuing spend cards with Cross River Bank as BIN sponsor.
5756
+ */
5757
+ bank_terms?: SpendCard.BankTerms;
5758
+
5759
+ /**
5760
+ * Financial disclosures terms of service acceptance for commercial issuing spend cards with Cross River Bank as BIN sponsor.
5761
+ */
5762
+ financing_disclosures?: SpendCard.FinancingDisclosures;
5763
+ }
5764
+
5765
+ namespace SpendCard {
5766
+ interface BankTerms {
5767
+ /**
5768
+ * 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.
5769
+ */
5770
+ date?: string;
5771
+
5772
+ /**
5773
+ * The IP address from which the Account's representative accepted the terms of service.
5774
+ */
5775
+ ip?: string;
5776
+
5777
+ /**
5778
+ * The URL to the service agreement the Account's representative accepted.
5779
+ */
5780
+ url?: string;
5781
+
5782
+ /**
5783
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5784
+ */
5785
+ user_agent?: string;
5786
+ }
5787
+
5788
+ interface FinancingDisclosures {
5789
+ /**
5790
+ * 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.
5791
+ */
5792
+ date?: string;
5793
+
5794
+ /**
5795
+ * The IP address from which the Account's representative accepted the terms of service.
5796
+ */
5797
+ ip?: string;
5798
+
5799
+ /**
5800
+ * The URL to the service agreement the Account's representative accepted.
5801
+ */
5802
+ url?: string;
5803
+
5804
+ /**
5805
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5806
+ */
5807
+ user_agent?: string;
5808
+ }
5809
+ }
5810
+ }
5811
+
5812
+ interface GlobalAccountHolder {
5813
+ /**
5814
+ * 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.
5815
+ */
5816
+ date?: string;
5817
+
5818
+ /**
5819
+ * The IP address from which the Account's representative accepted the terms of service.
5820
+ */
5821
+ ip?: string;
5822
+
5823
+ /**
5824
+ * The URL to the service agreement the Account's representative accepted.
5825
+ */
5826
+ url?: string;
5827
+
5828
+ /**
5829
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5830
+ */
5831
+ user_agent?: string;
5832
+ }
5833
+
5834
+ interface Lead {
5835
+ /**
5836
+ * Terms of service acceptances for commercial issuing Apple Pay cards with Celtic as BIN sponsor.
5837
+ */
5838
+ apple_pay?: Lead.ApplePay;
5839
+
5840
+ /**
5841
+ * Terms of service acceptances for commercial issuing Global prepaid cards with Lead as BIN sponsor.
5842
+ */
5843
+ prepaid_card?: Lead.PrepaidCard;
5844
+ }
5845
+
5846
+ namespace Lead {
5847
+ interface ApplePay {
5848
+ /**
5849
+ * 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.
5850
+ */
5851
+ date?: string;
5852
+
5853
+ /**
5854
+ * The IP address from which the Account's representative accepted the terms of service.
5855
+ */
5856
+ ip?: string;
5857
+
5858
+ /**
5859
+ * The URL to the service agreement the Account's representative accepted.
5860
+ */
5861
+ url?: string;
5862
+
5863
+ /**
5864
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5865
+ */
5866
+ user_agent?: string;
5867
+ }
5868
+
5869
+ interface PrepaidCard {
5870
+ /**
5871
+ * Bank terms of service acceptance for commercial Global issuing prepaid cards with Lead as BIN sponsor.
5872
+ */
5873
+ bank_terms?: PrepaidCard.BankTerms;
5874
+
5875
+ /**
5876
+ * Platform terms of service acceptance for commercial Global issuing prepaid cards with Lead as BIN sponsor.
5877
+ */
5878
+ platform?: PrepaidCard.Platform;
5879
+ }
5880
+
5881
+ namespace PrepaidCard {
5882
+ interface BankTerms {
5883
+ /**
5884
+ * 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.
5885
+ */
5886
+ date?: string;
5887
+
5888
+ /**
5889
+ * The IP address from which the Account's representative accepted the terms of service.
5890
+ */
5891
+ ip?: string;
5892
+
5893
+ /**
5894
+ * The URL to the service agreement the Account's representative accepted.
5895
+ */
5896
+ url?: string;
5897
+
5898
+ /**
5899
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5900
+ */
5901
+ user_agent?: string;
5902
+ }
5903
+
5904
+ interface Platform {
5905
+ /**
5906
+ * 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.
5907
+ */
5908
+ date?: string;
5909
+
5910
+ /**
5911
+ * The IP address from which the Account's representative accepted the terms of service.
5912
+ */
5913
+ ip?: string;
5914
+
5915
+ /**
5916
+ * The URL to the service agreement the Account's representative accepted.
5917
+ */
5918
+ url?: string;
5919
+
5920
+ /**
5921
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5922
+ */
5923
+ user_agent?: string;
5924
+ }
5925
+ }
5926
+ }
5927
+ }
5928
+ }
5929
+
5930
+ interface CryptoStorer {
5931
+ /**
5932
+ * 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.
5933
+ */
5934
+ date?: string;
5935
+
5936
+ /**
5937
+ * The IP address from which the Account's representative accepted the terms of service.
5938
+ */
5939
+ ip?: string;
5940
+
5941
+ /**
5942
+ * The user agent of the browser from which the Account's representative accepted the terms of service.
5943
+ */
5944
+ user_agent?: string;
5945
+ }
5946
+
4493
5947
  interface Storer {
4494
5948
  /**
4495
5949
  * 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.
@@ -4520,6 +5974,11 @@ declare module 'stripe' {
4520
5974
  */
4521
5975
  annual_revenue?: BusinessDetails.AnnualRevenue;
4522
5976
 
5977
+ /**
5978
+ * A detailed description of the business's compliance and anti-money laundering controls and practices.
5979
+ */
5980
+ compliance_screening_description?: string;
5981
+
4523
5982
  /**
4524
5983
  * Documents that may be submitted to satisfy various informational requests.
4525
5984
  */
@@ -5867,6 +7326,14 @@ declare module 'stripe' {
5867
7326
  | 'card_payments'
5868
7327
  | 'cartes_bancaires_payments'
5869
7328
  | 'cashapp_payments'
7329
+ | 'commercial.celtic.charge_card'
7330
+ | 'commercial.celtic.spend_card'
7331
+ | 'commercial.cross_river_bank.charge_card'
7332
+ | 'commercial.cross_river_bank.spend_card'
7333
+ | 'commercial.lead.prepaid_card'
7334
+ | 'commercial.stripe.charge_card'
7335
+ | 'commercial.stripe.prepaid_card'
7336
+ | 'crypto'
5870
7337
  | 'eps_payments'
5871
7338
  | 'financial_addresses.bank_accounts'
5872
7339
  | 'fpx_payments'
@@ -5910,6 +7377,7 @@ declare module 'stripe' {
5910
7377
  | 'zip_payments';
5911
7378
 
5912
7379
  type Configuration =
7380
+ | 'card_creator'
5913
7381
  | 'customer'
5914
7382
  | 'merchant'
5915
7383
  | 'recipient'