stripe 17.0.0 → 17.2.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (152) hide show
  1. package/CHANGELOG.md +895 -148
  2. package/README.md +6 -7
  3. package/VERSION +1 -1
  4. package/cjs/resources/AccountNotices.js +21 -0
  5. package/cjs/resources/Capital/FinancingOffers.js +21 -0
  6. package/cjs/resources/Capital/FinancingSummary.js +12 -0
  7. package/cjs/resources/Capital/FinancingTransactions.js +17 -0
  8. package/cjs/resources/FinancialConnections/Accounts.js +5 -0
  9. package/cjs/resources/FinancialConnections/Institutions.js +17 -0
  10. package/cjs/resources/GiftCards/Cards.js +23 -0
  11. package/cjs/resources/GiftCards/Transactions.js +33 -0
  12. package/cjs/resources/Invoices.js +17 -0
  13. package/cjs/resources/Issuing/CreditUnderwritingRecords.js +33 -0
  14. package/cjs/resources/Issuing/DisputeSettlementDetails.js +17 -0
  15. package/cjs/resources/Margins.js +22 -0
  16. package/cjs/resources/Orders.js +24 -0
  17. package/cjs/resources/PaymentIntents.js +4 -0
  18. package/cjs/resources/Quotes.js +32 -0
  19. package/cjs/resources/SubscriptionSchedules.js +4 -0
  20. package/cjs/resources/Tax/Associations.js +9 -0
  21. package/cjs/resources/Tax/Forms.js +20 -0
  22. package/cjs/resources/Terminal/ReaderCollectedData.js +12 -0
  23. package/cjs/resources/Terminal/Readers.js +12 -0
  24. package/cjs/resources.js +42 -10
  25. package/cjs/stripe.core.js +1 -1
  26. package/esm/resources/AccountNotices.js +18 -0
  27. package/esm/resources/Capital/FinancingOffers.js +18 -0
  28. package/esm/resources/Capital/FinancingSummary.js +9 -0
  29. package/esm/resources/Capital/FinancingTransactions.js +14 -0
  30. package/esm/resources/FinancialConnections/Accounts.js +5 -0
  31. package/esm/resources/FinancialConnections/Institutions.js +14 -0
  32. package/esm/resources/GiftCards/Cards.js +20 -0
  33. package/esm/resources/GiftCards/Transactions.js +30 -0
  34. package/esm/resources/Invoices.js +17 -0
  35. package/esm/resources/Issuing/CreditUnderwritingRecords.js +30 -0
  36. package/esm/resources/Issuing/DisputeSettlementDetails.js +14 -0
  37. package/esm/resources/Margins.js +19 -0
  38. package/esm/resources/Orders.js +21 -0
  39. package/esm/resources/PaymentIntents.js +4 -0
  40. package/esm/resources/Quotes.js +32 -0
  41. package/esm/resources/SubscriptionSchedules.js +4 -0
  42. package/esm/resources/Tax/Associations.js +6 -0
  43. package/esm/resources/Tax/Forms.js +17 -0
  44. package/esm/resources/Terminal/ReaderCollectedData.js +9 -0
  45. package/esm/resources/Terminal/Readers.js +12 -0
  46. package/esm/resources.js +29 -0
  47. package/esm/stripe.core.js +1 -1
  48. package/package.json +1 -1
  49. package/types/AccountLinksResource.d.ts +5 -1
  50. package/types/AccountNotices.d.ts +113 -0
  51. package/types/AccountNoticesResource.d.ts +98 -0
  52. package/types/AccountSessions.d.ts +45 -0
  53. package/types/AccountSessionsResource.d.ts +309 -0
  54. package/types/Accounts.d.ts +113 -1
  55. package/types/AccountsResource.d.ts +270 -0
  56. package/types/Billing/MeterErrorReports.d.ts +106 -0
  57. package/types/Capital/FinancingOffers.d.ts +188 -0
  58. package/types/Capital/FinancingOffersResource.d.ts +97 -0
  59. package/types/Capital/FinancingSummary.d.ts +106 -0
  60. package/types/Capital/FinancingSummaryResource.d.ts +27 -0
  61. package/types/Capital/FinancingTransactions.d.ts +135 -0
  62. package/types/Capital/FinancingTransactionsResource.d.ts +68 -0
  63. package/types/Charges.d.ts +71 -0
  64. package/types/ChargesResource.d.ts +1294 -0
  65. package/types/Checkout/Sessions.d.ts +296 -4
  66. package/types/Checkout/SessionsResource.d.ts +351 -5
  67. package/types/ConfirmationTokens.d.ts +67 -0
  68. package/types/Coupons.d.ts +1 -1
  69. package/types/CouponsResource.d.ts +1 -1
  70. package/types/CreditNotes.d.ts +21 -0
  71. package/types/CreditNotesResource.d.ts +51 -0
  72. package/types/CustomersResource.d.ts +3 -0
  73. package/types/Disputes.d.ts +152 -0
  74. package/types/DisputesResource.d.ts +120 -0
  75. package/types/EventTypes.d.ts +545 -0
  76. package/types/Events.d.ts +90 -0
  77. package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
  78. package/types/FinancialConnections/Accounts.d.ts +29 -1
  79. package/types/FinancialConnections/AccountsResource.d.ts +35 -3
  80. package/types/FinancialConnections/Institutions.d.ts +93 -0
  81. package/types/FinancialConnections/InstitutionsResource.d.ts +47 -0
  82. package/types/FinancialConnections/Sessions.d.ts +49 -1
  83. package/types/FinancialConnections/SessionsResource.d.ts +38 -1
  84. package/types/GiftCards/Cards.d.ts +118 -0
  85. package/types/GiftCards/CardsResource.d.ts +159 -0
  86. package/types/GiftCards/Transactions.d.ts +129 -0
  87. package/types/GiftCards/TransactionsResource.d.ts +201 -0
  88. package/types/InvoiceItems.d.ts +5 -0
  89. package/types/InvoiceItemsResource.d.ts +98 -0
  90. package/types/InvoiceLineItems.d.ts +23 -1
  91. package/types/InvoicePayments.d.ts +138 -0
  92. package/types/Invoices.d.ts +118 -2
  93. package/types/InvoicesResource.d.ts +5454 -1796
  94. package/types/Issuing/CardholdersResource.d.ts +2 -1
  95. package/types/Issuing/CreditUnderwritingRecords.d.ts +451 -0
  96. package/types/Issuing/CreditUnderwritingRecordsResource.d.ts +1032 -0
  97. package/types/Issuing/DisputeSettlementDetails.d.ts +73 -0
  98. package/types/Issuing/DisputeSettlementDetailsResource.d.ts +52 -0
  99. package/types/Issuing/Settlements.d.ts +103 -0
  100. package/types/Issuing/Transactions.d.ts +2 -0
  101. package/types/Issuing/TransactionsResource.d.ts +5 -0
  102. package/types/LineItems.d.ts +7 -0
  103. package/types/Mandates.d.ts +77 -0
  104. package/types/MarginsResource.d.ts +114 -0
  105. package/types/Orders.d.ts +1084 -0
  106. package/types/OrdersResource.d.ts +2765 -0
  107. package/types/PaymentIntents.d.ts +503 -1
  108. package/types/PaymentIntentsResource.d.ts +7000 -3400
  109. package/types/PaymentLinks.d.ts +3 -0
  110. package/types/PaymentLinksResource.d.ts +6 -0
  111. package/types/PaymentMethodConfigurations.d.ts +36 -0
  112. package/types/PaymentMethodConfigurationsResource.d.ts +50 -0
  113. package/types/PaymentMethods.d.ts +67 -0
  114. package/types/PaymentMethodsResource.d.ts +88 -0
  115. package/types/Prices.d.ts +22 -0
  116. package/types/PricesResource.d.ts +22 -0
  117. package/types/Products.d.ts +39 -0
  118. package/types/ProductsResource.d.ts +36 -0
  119. package/types/QuoteLines.d.ts +634 -0
  120. package/types/QuotePreviewInvoices.d.ts +1586 -0
  121. package/types/QuotePreviewSubscriptionSchedules.d.ts +814 -0
  122. package/types/Quotes.d.ts +591 -1
  123. package/types/QuotesResource.d.ts +2526 -194
  124. package/types/SetupAttempts.d.ts +10 -0
  125. package/types/SetupIntents.d.ts +111 -1
  126. package/types/SetupIntentsResource.d.ts +522 -3
  127. package/types/Sources.d.ts +23 -0
  128. package/types/SubscriptionItems.d.ts +21 -0
  129. package/types/SubscriptionItemsResource.d.ts +109 -0
  130. package/types/SubscriptionSchedules.d.ts +200 -0
  131. package/types/SubscriptionSchedulesResource.d.ts +1234 -16
  132. package/types/Subscriptions.d.ts +82 -1
  133. package/types/SubscriptionsResource.d.ts +347 -2
  134. package/types/Tax/Associations.d.ts +126 -0
  135. package/types/Tax/AssociationsResource.d.ts +29 -0
  136. package/types/Tax/Forms.d.ts +133 -0
  137. package/types/Tax/FormsResource.d.ts +90 -0
  138. package/types/Terminal/ReaderCollectedData.d.ts +51 -0
  139. package/types/Terminal/ReaderCollectedDataResource.d.ts +29 -0
  140. package/types/Terminal/Readers.d.ts +278 -0
  141. package/types/Terminal/ReadersResource.d.ts +215 -0
  142. package/types/TestHelpers/ConfirmationTokensResource.d.ts +63 -0
  143. package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +26 -0
  144. package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +26 -0
  145. package/types/Treasury/FinancialAccounts.d.ts +5 -0
  146. package/types/Treasury/FinancialAccountsResource.d.ts +10 -0
  147. package/types/Treasury/OutboundTransfers.d.ts +26 -0
  148. package/types/Treasury/OutboundTransfersResource.d.ts +26 -0
  149. package/types/Treasury/ReceivedCredits.d.ts +26 -0
  150. package/types/Treasury/ReceivedDebits.d.ts +31 -0
  151. package/types/WebhookEndpointsResource.d.ts +64 -0
  152. package/types/index.d.ts +52 -0
@@ -39,6 +39,11 @@ declare module 'stripe' {
39
39
  * Initiating payment method details for the object.
40
40
  */
41
41
  initiating_payment_method_details?: ReceivedDebitCreateParams.InitiatingPaymentMethodDetails;
42
+
43
+ /**
44
+ * Details about the network used for the ReceivedDebit.
45
+ */
46
+ network_details?: ReceivedDebitCreateParams.NetworkDetails;
42
47
  }
43
48
 
44
49
  namespace ReceivedDebitCreateParams {
@@ -72,6 +77,27 @@ declare module 'stripe' {
72
77
  routing_number?: string;
73
78
  }
74
79
  }
80
+
81
+ interface NetworkDetails {
82
+ /**
83
+ * Optional fields for `ach`.
84
+ */
85
+ ach?: NetworkDetails.Ach;
86
+
87
+ /**
88
+ * The type of flow that originated the ReceivedDebit.
89
+ */
90
+ type: 'ach';
91
+ }
92
+
93
+ namespace NetworkDetails {
94
+ interface Ach {
95
+ /**
96
+ * Addenda record data associated with this ReceivedDebit.
97
+ */
98
+ addenda?: string;
99
+ }
100
+ }
75
101
  }
76
102
  }
77
103
 
@@ -38,6 +38,11 @@ declare module 'stripe' {
38
38
  */
39
39
  created: number;
40
40
 
41
+ /**
42
+ * The display name for the FinancialAccount. Use this field to customize the names of the FinancialAccounts for your connected accounts. Unlike the `nickname` field, `display_name` is not internal metadata and will be exposed to connected accounts.
43
+ */
44
+ display_name?: string | null;
45
+
41
46
  /**
42
47
  * Encodes whether a FinancialAccount has access to a particular Feature, with a `status` enum and associated `status_details`.
43
48
  * Stripe or the platform can control Features via the requested field.
@@ -9,6 +9,11 @@ declare module 'stripe' {
9
9
  */
10
10
  supported_currencies: Array<string>;
11
11
 
12
+ /**
13
+ * The display name for the FinancialAccount. Use this field to customize the names of the FinancialAccounts for your connected accounts. Unlike the `nickname` field, `display_name` is not internal metadata and will be exposed to connected accounts.
14
+ */
15
+ display_name?: Stripe.Emptyable<string>;
16
+
12
17
  /**
13
18
  * Specifies which fields in the response should be expanded.
14
19
  */
@@ -206,6 +211,11 @@ declare module 'stripe' {
206
211
  }
207
212
 
208
213
  interface FinancialAccountUpdateParams {
214
+ /**
215
+ * The display name for the FinancialAccount. Use this field to customize the names of the FinancialAccounts for your connected accounts. Unlike the `nickname` field, `display_name` is not internal metadata and will be exposed to connected accounts.
216
+ */
217
+ display_name?: Stripe.Emptyable<string>;
218
+
209
219
  /**
210
220
  * Specifies which fields in the response should be expanded.
211
221
  */
@@ -78,6 +78,11 @@ declare module 'stripe' {
78
78
  */
79
79
  metadata: Stripe.Metadata;
80
80
 
81
+ /**
82
+ * Details about the network used for the OutboundTransfer.
83
+ */
84
+ network_details?: OutboundTransfer.NetworkDetails | null;
85
+
81
86
  /**
82
87
  * Details about a returned OutboundTransfer. Only set when the status is `returned`.
83
88
  */
@@ -184,6 +189,27 @@ declare module 'stripe' {
184
189
  }
185
190
  }
186
191
 
192
+ interface NetworkDetails {
193
+ /**
194
+ * Details about an ACH transaction.
195
+ */
196
+ ach?: NetworkDetails.Ach | null;
197
+
198
+ /**
199
+ * The type of flow that originated the OutboundTransfer.
200
+ */
201
+ type: 'ach';
202
+ }
203
+
204
+ namespace NetworkDetails {
205
+ interface Ach {
206
+ /**
207
+ * ACH Addenda record
208
+ */
209
+ addenda: string | null;
210
+ }
211
+ }
212
+
187
213
  interface ReturnedDetails {
188
214
  /**
189
215
  * Reason for the return.
@@ -44,6 +44,11 @@ declare module 'stripe' {
44
44
  */
45
45
  metadata?: Stripe.MetadataParam;
46
46
 
47
+ /**
48
+ * Details about the network used for the OutboundTransfer.
49
+ */
50
+ network_details?: OutboundTransferCreateParams.NetworkDetails;
51
+
47
52
  /**
48
53
  * Statement descriptor to be shown on the receiving end of an OutboundTransfer. Maximum 10 characters for `ach` transfers or 140 characters for `us_domestic_wire` transfers. The default value is "transfer".
49
54
  */
@@ -72,6 +77,27 @@ declare module 'stripe' {
72
77
  type Network = 'ach' | 'us_domestic_wire';
73
78
  }
74
79
  }
80
+
81
+ interface NetworkDetails {
82
+ /**
83
+ * Optional fields for `ach`.
84
+ */
85
+ ach?: NetworkDetails.Ach;
86
+
87
+ /**
88
+ * The type of flow that originated the OutboundTransfer.
89
+ */
90
+ type: 'ach';
91
+ }
92
+
93
+ namespace NetworkDetails {
94
+ interface Ach {
95
+ /**
96
+ * Addenda record data associated with this OutboundTransfer.
97
+ */
98
+ addenda?: string;
99
+ }
100
+ }
75
101
  }
76
102
 
77
103
  interface OutboundTransferRetrieveParams {
@@ -66,6 +66,11 @@ declare module 'stripe' {
66
66
  */
67
67
  network: ReceivedCredit.Network;
68
68
 
69
+ /**
70
+ * Details specific to the money movement rails.
71
+ */
72
+ network_details?: ReceivedCredit.NetworkDetails | null;
73
+
69
74
  /**
70
75
  * Details describing when a ReceivedCredit may be reversed.
71
76
  */
@@ -241,6 +246,27 @@ declare module 'stripe' {
241
246
 
242
247
  type Network = 'ach' | 'card' | 'stripe' | 'us_domestic_wire';
243
248
 
249
+ interface NetworkDetails {
250
+ /**
251
+ * Details about an ACH transaction.
252
+ */
253
+ ach?: NetworkDetails.Ach | null;
254
+
255
+ /**
256
+ * The type of flow that originated the ReceivedCredit.
257
+ */
258
+ type: 'ach';
259
+ }
260
+
261
+ namespace NetworkDetails {
262
+ interface Ach {
263
+ /**
264
+ * ACH Addenda record
265
+ */
266
+ addenda: string | null;
267
+ }
268
+ }
269
+
244
270
  interface ReversalDetails {
245
271
  /**
246
272
  * Time before which a ReceivedCredit can be reversed.
@@ -66,6 +66,11 @@ declare module 'stripe' {
66
66
  */
67
67
  network: ReceivedDebit.Network;
68
68
 
69
+ /**
70
+ * Details specific to the money movement rails.
71
+ */
72
+ network_details?: ReceivedDebit.NetworkDetails | null;
73
+
69
74
  /**
70
75
  * Details describing when a ReceivedDebit might be reversed.
71
76
  */
@@ -190,10 +195,36 @@ declare module 'stripe' {
190
195
  * Set if the ReceivedDebit was created due to a [Payout](https://stripe.com/docs/api#payouts) object.
191
196
  */
192
197
  payout: string | null;
198
+
199
+ /**
200
+ * The ReceivedCredit that Capital withheld from
201
+ */
202
+ received_credit_capital_withholding?: string | null;
193
203
  }
194
204
 
195
205
  type Network = 'ach' | 'card' | 'stripe';
196
206
 
207
+ interface NetworkDetails {
208
+ /**
209
+ * Details about an ACH transaction.
210
+ */
211
+ ach?: NetworkDetails.Ach | null;
212
+
213
+ /**
214
+ * The type of flow that originated the ReceivedDebit.
215
+ */
216
+ type: 'ach';
217
+ }
218
+
219
+ namespace NetworkDetails {
220
+ interface Ach {
221
+ /**
222
+ * ACH Addenda record
223
+ */
224
+ addenda: string | null;
225
+ }
226
+ }
227
+
197
228
  interface ReversalDetails {
198
229
  /**
199
230
  * Time before which a ReceivedDebit can be reversed.
@@ -153,15 +153,27 @@ declare module 'stripe' {
153
153
  | 'account.external_account.deleted'
154
154
  | 'account.external_account.updated'
155
155
  | 'account.updated'
156
+ | 'account_notice.created'
157
+ | 'account_notice.updated'
156
158
  | 'application_fee.created'
157
159
  | 'application_fee.refund.updated'
158
160
  | 'application_fee.refunded'
159
161
  | 'balance.available'
160
162
  | 'billing.alert.triggered'
163
+ | 'billing.meter_error_report.triggered'
161
164
  | 'billing_portal.configuration.created'
162
165
  | 'billing_portal.configuration.updated'
163
166
  | 'billing_portal.session.created'
164
167
  | 'capability.updated'
168
+ | 'capital.financing_offer.accepted'
169
+ | 'capital.financing_offer.canceled'
170
+ | 'capital.financing_offer.created'
171
+ | 'capital.financing_offer.expired'
172
+ | 'capital.financing_offer.fully_repaid'
173
+ | 'capital.financing_offer.paid_out'
174
+ | 'capital.financing_offer.rejected'
175
+ | 'capital.financing_offer.replacement_created'
176
+ | 'capital.financing_transaction.created'
165
177
  | 'cash_balance.funds_available'
166
178
  | 'charge.captured'
167
179
  | 'charge.dispute.closed'
@@ -202,11 +214,15 @@ declare module 'stripe' {
202
214
  | 'customer.source.deleted'
203
215
  | 'customer.source.expiring'
204
216
  | 'customer.source.updated'
217
+ | 'customer.subscription.collection_paused'
218
+ | 'customer.subscription.collection_resumed'
205
219
  | 'customer.subscription.created'
220
+ | 'customer.subscription.custom_event'
206
221
  | 'customer.subscription.deleted'
207
222
  | 'customer.subscription.paused'
208
223
  | 'customer.subscription.pending_update_applied'
209
224
  | 'customer.subscription.pending_update_expired'
225
+ | 'customer.subscription.price_migration_failed'
210
226
  | 'customer.subscription.resumed'
211
227
  | 'customer.subscription.trial_will_end'
212
228
  | 'customer.subscription.updated'
@@ -222,8 +238,10 @@ declare module 'stripe' {
222
238
  | 'financial_connections.account.disconnected'
223
239
  | 'financial_connections.account.reactivated'
224
240
  | 'financial_connections.account.refreshed_balance'
241
+ | 'financial_connections.account.refreshed_inferred_balances'
225
242
  | 'financial_connections.account.refreshed_ownership'
226
243
  | 'financial_connections.account.refreshed_transactions'
244
+ | 'financial_connections.session.updated'
227
245
  | 'identity.verification_session.canceled'
228
246
  | 'identity.verification_session.created'
229
247
  | 'identity.verification_session.processing'
@@ -237,6 +255,7 @@ declare module 'stripe' {
237
255
  | 'invoice.marked_uncollectible'
238
256
  | 'invoice.overdue'
239
257
  | 'invoice.paid'
258
+ | 'invoice.payment.overpaid'
240
259
  | 'invoice.payment_action_required'
241
260
  | 'invoice.payment_failed'
242
261
  | 'invoice.payment_succeeded'
@@ -260,10 +279,14 @@ declare module 'stripe' {
260
279
  | 'issuing_dispute.funds_rescinded'
261
280
  | 'issuing_dispute.submitted'
262
281
  | 'issuing_dispute.updated'
282
+ | 'issuing_dispute_settlement_detail.created'
283
+ | 'issuing_dispute_settlement_detail.updated'
263
284
  | 'issuing_personalization_design.activated'
264
285
  | 'issuing_personalization_design.deactivated'
265
286
  | 'issuing_personalization_design.rejected'
266
287
  | 'issuing_personalization_design.updated'
288
+ | 'issuing_settlement.created'
289
+ | 'issuing_settlement.updated'
267
290
  | 'issuing_token.created'
268
291
  | 'issuing_token.updated'
269
292
  | 'issuing_transaction.created'
@@ -303,10 +326,16 @@ declare module 'stripe' {
303
326
  | 'product.updated'
304
327
  | 'promotion_code.created'
305
328
  | 'promotion_code.updated'
329
+ | 'quote.accept_failed'
306
330
  | 'quote.accepted'
331
+ | 'quote.accepting'
307
332
  | 'quote.canceled'
308
333
  | 'quote.created'
334
+ | 'quote.draft'
309
335
  | 'quote.finalized'
336
+ | 'quote.reestimate_failed'
337
+ | 'quote.reestimated'
338
+ | 'quote.stale'
310
339
  | 'radar.early_fraud_warning.created'
311
340
  | 'radar.early_fraud_warning.updated'
312
341
  | 'refund.created'
@@ -334,13 +363,16 @@ declare module 'stripe' {
334
363
  | 'subscription_schedule.completed'
335
364
  | 'subscription_schedule.created'
336
365
  | 'subscription_schedule.expiring'
366
+ | 'subscription_schedule.price_migration_failed'
337
367
  | 'subscription_schedule.released'
338
368
  | 'subscription_schedule.updated'
369
+ | 'tax.form.updated'
339
370
  | 'tax.settings.updated'
340
371
  | 'tax_rate.created'
341
372
  | 'tax_rate.updated'
342
373
  | 'terminal.reader.action_failed'
343
374
  | 'terminal.reader.action_succeeded'
375
+ | 'terminal.reader.action_updated'
344
376
  | 'test_helpers.test_clock.advancing'
345
377
  | 'test_helpers.test_clock.created'
346
378
  | 'test_helpers.test_clock.deleted'
@@ -434,15 +466,27 @@ declare module 'stripe' {
434
466
  | 'account.external_account.deleted'
435
467
  | 'account.external_account.updated'
436
468
  | 'account.updated'
469
+ | 'account_notice.created'
470
+ | 'account_notice.updated'
437
471
  | 'application_fee.created'
438
472
  | 'application_fee.refund.updated'
439
473
  | 'application_fee.refunded'
440
474
  | 'balance.available'
441
475
  | 'billing.alert.triggered'
476
+ | 'billing.meter_error_report.triggered'
442
477
  | 'billing_portal.configuration.created'
443
478
  | 'billing_portal.configuration.updated'
444
479
  | 'billing_portal.session.created'
445
480
  | 'capability.updated'
481
+ | 'capital.financing_offer.accepted'
482
+ | 'capital.financing_offer.canceled'
483
+ | 'capital.financing_offer.created'
484
+ | 'capital.financing_offer.expired'
485
+ | 'capital.financing_offer.fully_repaid'
486
+ | 'capital.financing_offer.paid_out'
487
+ | 'capital.financing_offer.rejected'
488
+ | 'capital.financing_offer.replacement_created'
489
+ | 'capital.financing_transaction.created'
446
490
  | 'cash_balance.funds_available'
447
491
  | 'charge.captured'
448
492
  | 'charge.dispute.closed'
@@ -483,11 +527,15 @@ declare module 'stripe' {
483
527
  | 'customer.source.deleted'
484
528
  | 'customer.source.expiring'
485
529
  | 'customer.source.updated'
530
+ | 'customer.subscription.collection_paused'
531
+ | 'customer.subscription.collection_resumed'
486
532
  | 'customer.subscription.created'
533
+ | 'customer.subscription.custom_event'
487
534
  | 'customer.subscription.deleted'
488
535
  | 'customer.subscription.paused'
489
536
  | 'customer.subscription.pending_update_applied'
490
537
  | 'customer.subscription.pending_update_expired'
538
+ | 'customer.subscription.price_migration_failed'
491
539
  | 'customer.subscription.resumed'
492
540
  | 'customer.subscription.trial_will_end'
493
541
  | 'customer.subscription.updated'
@@ -503,8 +551,10 @@ declare module 'stripe' {
503
551
  | 'financial_connections.account.disconnected'
504
552
  | 'financial_connections.account.reactivated'
505
553
  | 'financial_connections.account.refreshed_balance'
554
+ | 'financial_connections.account.refreshed_inferred_balances'
506
555
  | 'financial_connections.account.refreshed_ownership'
507
556
  | 'financial_connections.account.refreshed_transactions'
557
+ | 'financial_connections.session.updated'
508
558
  | 'identity.verification_session.canceled'
509
559
  | 'identity.verification_session.created'
510
560
  | 'identity.verification_session.processing'
@@ -518,6 +568,7 @@ declare module 'stripe' {
518
568
  | 'invoice.marked_uncollectible'
519
569
  | 'invoice.overdue'
520
570
  | 'invoice.paid'
571
+ | 'invoice.payment.overpaid'
521
572
  | 'invoice.payment_action_required'
522
573
  | 'invoice.payment_failed'
523
574
  | 'invoice.payment_succeeded'
@@ -541,10 +592,14 @@ declare module 'stripe' {
541
592
  | 'issuing_dispute.funds_rescinded'
542
593
  | 'issuing_dispute.submitted'
543
594
  | 'issuing_dispute.updated'
595
+ | 'issuing_dispute_settlement_detail.created'
596
+ | 'issuing_dispute_settlement_detail.updated'
544
597
  | 'issuing_personalization_design.activated'
545
598
  | 'issuing_personalization_design.deactivated'
546
599
  | 'issuing_personalization_design.rejected'
547
600
  | 'issuing_personalization_design.updated'
601
+ | 'issuing_settlement.created'
602
+ | 'issuing_settlement.updated'
548
603
  | 'issuing_token.created'
549
604
  | 'issuing_token.updated'
550
605
  | 'issuing_transaction.created'
@@ -584,10 +639,16 @@ declare module 'stripe' {
584
639
  | 'product.updated'
585
640
  | 'promotion_code.created'
586
641
  | 'promotion_code.updated'
642
+ | 'quote.accept_failed'
587
643
  | 'quote.accepted'
644
+ | 'quote.accepting'
588
645
  | 'quote.canceled'
589
646
  | 'quote.created'
647
+ | 'quote.draft'
590
648
  | 'quote.finalized'
649
+ | 'quote.reestimate_failed'
650
+ | 'quote.reestimated'
651
+ | 'quote.stale'
591
652
  | 'radar.early_fraud_warning.created'
592
653
  | 'radar.early_fraud_warning.updated'
593
654
  | 'refund.created'
@@ -615,13 +676,16 @@ declare module 'stripe' {
615
676
  | 'subscription_schedule.completed'
616
677
  | 'subscription_schedule.created'
617
678
  | 'subscription_schedule.expiring'
679
+ | 'subscription_schedule.price_migration_failed'
618
680
  | 'subscription_schedule.released'
619
681
  | 'subscription_schedule.updated'
682
+ | 'tax.form.updated'
620
683
  | 'tax.settings.updated'
621
684
  | 'tax_rate.created'
622
685
  | 'tax_rate.updated'
623
686
  | 'terminal.reader.action_failed'
624
687
  | 'terminal.reader.action_succeeded'
688
+ | 'terminal.reader.action_updated'
625
689
  | 'test_helpers.test_clock.advancing'
626
690
  | 'test_helpers.test_clock.created'
627
691
  | 'test_helpers.test_clock.deleted'