stripe 17.4.0 → 17.5.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 (169) hide show
  1. package/CHANGELOG.md +991 -109
  2. package/README.md +4 -4
  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/Issuing/FraudLiabilityDebits.js +17 -0
  16. package/cjs/resources/Margins.js +22 -0
  17. package/cjs/resources/Orders.js +24 -0
  18. package/cjs/resources/PaymentAttemptRecords.js +17 -0
  19. package/cjs/resources/PaymentIntents.js +8 -0
  20. package/cjs/resources/PaymentRecords.js +29 -0
  21. package/cjs/resources/Quotes.js +32 -0
  22. package/cjs/resources/SubscriptionSchedules.js +4 -0
  23. package/cjs/resources/Tax/Associations.js +9 -0
  24. package/cjs/resources/Tax/Forms.js +20 -0
  25. package/cjs/resources/Terminal/ReaderCollectedData.js +12 -0
  26. package/cjs/resources/Terminal/Readers.js +12 -0
  27. package/cjs/resources.js +48 -10
  28. package/cjs/stripe.core.js +1 -1
  29. package/esm/resources/AccountNotices.js +18 -0
  30. package/esm/resources/Capital/FinancingOffers.js +18 -0
  31. package/esm/resources/Capital/FinancingSummary.js +9 -0
  32. package/esm/resources/Capital/FinancingTransactions.js +14 -0
  33. package/esm/resources/FinancialConnections/Accounts.js +5 -0
  34. package/esm/resources/FinancialConnections/Institutions.js +14 -0
  35. package/esm/resources/GiftCards/Cards.js +20 -0
  36. package/esm/resources/GiftCards/Transactions.js +30 -0
  37. package/esm/resources/Invoices.js +17 -0
  38. package/esm/resources/Issuing/CreditUnderwritingRecords.js +30 -0
  39. package/esm/resources/Issuing/DisputeSettlementDetails.js +14 -0
  40. package/esm/resources/Issuing/FraudLiabilityDebits.js +14 -0
  41. package/esm/resources/Margins.js +19 -0
  42. package/esm/resources/Orders.js +21 -0
  43. package/esm/resources/PaymentAttemptRecords.js +14 -0
  44. package/esm/resources/PaymentIntents.js +8 -0
  45. package/esm/resources/PaymentRecords.js +26 -0
  46. package/esm/resources/Quotes.js +32 -0
  47. package/esm/resources/SubscriptionSchedules.js +4 -0
  48. package/esm/resources/Tax/Associations.js +6 -0
  49. package/esm/resources/Tax/Forms.js +17 -0
  50. package/esm/resources/Terminal/ReaderCollectedData.js +9 -0
  51. package/esm/resources/Terminal/Readers.js +12 -0
  52. package/esm/resources.js +33 -0
  53. package/esm/stripe.core.js +1 -1
  54. package/package.json +1 -1
  55. package/types/AccountLinksResource.d.ts +5 -1
  56. package/types/AccountNotices.d.ts +113 -0
  57. package/types/AccountNoticesResource.d.ts +98 -0
  58. package/types/AccountSessions.d.ts +50 -5
  59. package/types/AccountSessionsResource.d.ts +360 -5
  60. package/types/Accounts.d.ts +184 -2
  61. package/types/AccountsResource.d.ts +496 -0
  62. package/types/Billing/MeterErrorReports.d.ts +106 -0
  63. package/types/BillingPortal/Configurations.d.ts +1 -1
  64. package/types/Capabilities.d.ts +1 -1
  65. package/types/Capital/FinancingOffers.d.ts +188 -0
  66. package/types/Capital/FinancingOffersResource.d.ts +97 -0
  67. package/types/Capital/FinancingSummary.d.ts +106 -0
  68. package/types/Capital/FinancingSummaryResource.d.ts +27 -0
  69. package/types/Capital/FinancingTransactions.d.ts +135 -0
  70. package/types/Capital/FinancingTransactionsResource.d.ts +68 -0
  71. package/types/Charges.d.ts +244 -2
  72. package/types/ChargesResource.d.ts +1294 -0
  73. package/types/Checkout/Sessions.d.ts +321 -4
  74. package/types/Checkout/SessionsResource.d.ts +448 -6
  75. package/types/ConfirmationTokens.d.ts +99 -0
  76. package/types/Coupons.d.ts +1 -1
  77. package/types/CouponsResource.d.ts +1 -1
  78. package/types/CreditNotes.d.ts +21 -0
  79. package/types/CreditNotesResource.d.ts +51 -0
  80. package/types/CustomersResource.d.ts +7 -0
  81. package/types/EventTypes.d.ts +596 -0
  82. package/types/Events.d.ts +93 -0
  83. package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
  84. package/types/FinancialConnections/Accounts.d.ts +29 -1
  85. package/types/FinancialConnections/AccountsResource.d.ts +35 -3
  86. package/types/FinancialConnections/Institutions.d.ts +93 -0
  87. package/types/FinancialConnections/InstitutionsResource.d.ts +47 -0
  88. package/types/FinancialConnections/Sessions.d.ts +49 -1
  89. package/types/FinancialConnections/SessionsResource.d.ts +38 -1
  90. package/types/FundingInstructions.d.ts +21 -0
  91. package/types/GiftCards/Cards.d.ts +118 -0
  92. package/types/GiftCards/CardsResource.d.ts +159 -0
  93. package/types/GiftCards/Transactions.d.ts +129 -0
  94. package/types/GiftCards/TransactionsResource.d.ts +201 -0
  95. package/types/InvoiceItems.d.ts +5 -0
  96. package/types/InvoiceItemsResource.d.ts +98 -0
  97. package/types/InvoiceLineItems.d.ts +28 -1
  98. package/types/InvoicePayments.d.ts +113 -0
  99. package/types/Invoices.d.ts +147 -2
  100. package/types/InvoicesResource.d.ts +5534 -1849
  101. package/types/Issuing/CardholdersResource.d.ts +2 -1
  102. package/types/Issuing/CreditUnderwritingRecords.d.ts +451 -0
  103. package/types/Issuing/CreditUnderwritingRecordsResource.d.ts +1032 -0
  104. package/types/Issuing/DisputeSettlementDetails.d.ts +73 -0
  105. package/types/Issuing/DisputeSettlementDetailsResource.d.ts +52 -0
  106. package/types/Issuing/FraudLiabilityDebits.d.ts +52 -0
  107. package/types/Issuing/FraudLiabilityDebitsResource.d.ts +52 -0
  108. package/types/Issuing/Settlements.d.ts +103 -0
  109. package/types/Issuing/Transactions.d.ts +2 -0
  110. package/types/Issuing/TransactionsResource.d.ts +5 -0
  111. package/types/LineItems.d.ts +33 -1
  112. package/types/Mandates.d.ts +77 -0
  113. package/types/Margins.d.ts +56 -0
  114. package/types/MarginsResource.d.ts +114 -0
  115. package/types/Orders.d.ts +1155 -0
  116. package/types/OrdersResource.d.ts +2913 -0
  117. package/types/PaymentAttemptRecords.d.ts +242 -0
  118. package/types/PaymentAttemptRecordsResource.d.ts +47 -0
  119. package/types/PaymentIntents.d.ts +676 -2
  120. package/types/PaymentIntentsResource.d.ts +8054 -3767
  121. package/types/PaymentLinks.d.ts +6 -0
  122. package/types/PaymentLinksResource.d.ts +18 -2
  123. package/types/PaymentMethodConfigurations.d.ts +180 -0
  124. package/types/PaymentMethodConfigurationsResource.d.ts +250 -0
  125. package/types/PaymentMethods.d.ts +99 -0
  126. package/types/PaymentMethodsResource.d.ts +133 -0
  127. package/types/PaymentRecords.d.ts +259 -0
  128. package/types/PaymentRecordsResource.d.ts +455 -0
  129. package/types/Prices.d.ts +22 -0
  130. package/types/PricesResource.d.ts +22 -0
  131. package/types/Products.d.ts +39 -0
  132. package/types/ProductsResource.d.ts +36 -0
  133. package/types/QuoteLines.d.ts +634 -0
  134. package/types/QuotePreviewInvoices.d.ts +1625 -0
  135. package/types/QuotePreviewSubscriptionSchedules.d.ts +814 -0
  136. package/types/Quotes.d.ts +591 -1
  137. package/types/QuotesResource.d.ts +2526 -194
  138. package/types/Refunds.d.ts +14 -0
  139. package/types/SetupAttempts.d.ts +48 -0
  140. package/types/SetupIntents.d.ts +121 -1
  141. package/types/SetupIntentsResource.d.ts +645 -3
  142. package/types/Sources.d.ts +23 -0
  143. package/types/SubscriptionItems.d.ts +21 -0
  144. package/types/SubscriptionItemsResource.d.ts +109 -0
  145. package/types/SubscriptionSchedules.d.ts +200 -0
  146. package/types/SubscriptionSchedulesResource.d.ts +1234 -16
  147. package/types/Subscriptions.d.ts +91 -1
  148. package/types/SubscriptionsResource.d.ts +369 -2
  149. package/types/Tax/Associations.d.ts +126 -0
  150. package/types/Tax/AssociationsResource.d.ts +29 -0
  151. package/types/Tax/Forms.d.ts +220 -0
  152. package/types/Tax/FormsResource.d.ts +107 -0
  153. package/types/Terminal/LocationsResource.d.ts +1 -1
  154. package/types/Terminal/ReaderCollectedData.d.ts +51 -0
  155. package/types/Terminal/ReaderCollectedDataResource.d.ts +29 -0
  156. package/types/Terminal/Readers.d.ts +278 -0
  157. package/types/Terminal/ReadersResource.d.ts +215 -0
  158. package/types/TestHelpers/ConfirmationTokensResource.d.ts +104 -0
  159. package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +26 -0
  160. package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +26 -0
  161. package/types/Treasury/FinancialAccountFeatures.d.ts +7 -0
  162. package/types/Treasury/FinancialAccounts.d.ts +5 -0
  163. package/types/Treasury/FinancialAccountsResource.d.ts +37 -0
  164. package/types/Treasury/OutboundTransfers.d.ts +26 -0
  165. package/types/Treasury/OutboundTransfersResource.d.ts +26 -0
  166. package/types/Treasury/ReceivedCredits.d.ts +26 -0
  167. package/types/Treasury/ReceivedDebits.d.ts +31 -0
  168. package/types/WebhookEndpointsResource.d.ts +70 -0
  169. package/types/index.d.ts +62 -0
@@ -155,15 +155,27 @@ declare module 'stripe' {
155
155
  | 'account.external_account.deleted'
156
156
  | 'account.external_account.updated'
157
157
  | 'account.updated'
158
+ | 'account_notice.created'
159
+ | 'account_notice.updated'
158
160
  | 'application_fee.created'
159
161
  | 'application_fee.refund.updated'
160
162
  | 'application_fee.refunded'
161
163
  | 'balance.available'
162
164
  | 'billing.alert.triggered'
165
+ | 'billing.meter_error_report.triggered'
163
166
  | 'billing_portal.configuration.created'
164
167
  | 'billing_portal.configuration.updated'
165
168
  | 'billing_portal.session.created'
166
169
  | 'capability.updated'
170
+ | 'capital.financing_offer.accepted'
171
+ | 'capital.financing_offer.canceled'
172
+ | 'capital.financing_offer.created'
173
+ | 'capital.financing_offer.expired'
174
+ | 'capital.financing_offer.fully_repaid'
175
+ | 'capital.financing_offer.paid_out'
176
+ | 'capital.financing_offer.rejected'
177
+ | 'capital.financing_offer.replacement_created'
178
+ | 'capital.financing_transaction.created'
167
179
  | 'cash_balance.funds_available'
168
180
  | 'charge.captured'
169
181
  | 'charge.dispute.closed'
@@ -204,11 +216,15 @@ declare module 'stripe' {
204
216
  | 'customer.source.deleted'
205
217
  | 'customer.source.expiring'
206
218
  | 'customer.source.updated'
219
+ | 'customer.subscription.collection_paused'
220
+ | 'customer.subscription.collection_resumed'
207
221
  | 'customer.subscription.created'
222
+ | 'customer.subscription.custom_event'
208
223
  | 'customer.subscription.deleted'
209
224
  | 'customer.subscription.paused'
210
225
  | 'customer.subscription.pending_update_applied'
211
226
  | 'customer.subscription.pending_update_expired'
227
+ | 'customer.subscription.price_migration_failed'
212
228
  | 'customer.subscription.resumed'
213
229
  | 'customer.subscription.trial_will_end'
214
230
  | 'customer.subscription.updated'
@@ -224,8 +240,10 @@ declare module 'stripe' {
224
240
  | 'financial_connections.account.disconnected'
225
241
  | 'financial_connections.account.reactivated'
226
242
  | 'financial_connections.account.refreshed_balance'
243
+ | 'financial_connections.account.refreshed_inferred_balances'
227
244
  | 'financial_connections.account.refreshed_ownership'
228
245
  | 'financial_connections.account.refreshed_transactions'
246
+ | 'financial_connections.session.updated'
229
247
  | 'identity.verification_session.canceled'
230
248
  | 'identity.verification_session.created'
231
249
  | 'identity.verification_session.processing'
@@ -238,8 +256,11 @@ declare module 'stripe' {
238
256
  | 'invoice.finalized'
239
257
  | 'invoice.marked_uncollectible'
240
258
  | 'invoice.overdue'
259
+ | 'invoice.overpaid'
241
260
  | 'invoice.paid'
261
+ | 'invoice.payment.overpaid'
242
262
  | 'invoice.payment_action_required'
263
+ | 'invoice.payment_attempt_required'
243
264
  | 'invoice.payment_failed'
244
265
  | 'invoice.payment_succeeded'
245
266
  | 'invoice.sent'
@@ -262,10 +283,15 @@ declare module 'stripe' {
262
283
  | 'issuing_dispute.funds_rescinded'
263
284
  | 'issuing_dispute.submitted'
264
285
  | 'issuing_dispute.updated'
286
+ | 'issuing_dispute_settlement_detail.created'
287
+ | 'issuing_dispute_settlement_detail.updated'
288
+ | 'issuing_fraud_liability_debit.created'
265
289
  | 'issuing_personalization_design.activated'
266
290
  | 'issuing_personalization_design.deactivated'
267
291
  | 'issuing_personalization_design.rejected'
268
292
  | 'issuing_personalization_design.updated'
293
+ | 'issuing_settlement.created'
294
+ | 'issuing_settlement.updated'
269
295
  | 'issuing_token.created'
270
296
  | 'issuing_token.updated'
271
297
  | 'issuing_transaction.created'
@@ -306,10 +332,16 @@ declare module 'stripe' {
306
332
  | 'product.updated'
307
333
  | 'promotion_code.created'
308
334
  | 'promotion_code.updated'
335
+ | 'quote.accept_failed'
309
336
  | 'quote.accepted'
337
+ | 'quote.accepting'
310
338
  | 'quote.canceled'
311
339
  | 'quote.created'
340
+ | 'quote.draft'
312
341
  | 'quote.finalized'
342
+ | 'quote.reestimate_failed'
343
+ | 'quote.reestimated'
344
+ | 'quote.stale'
313
345
  | 'radar.early_fraud_warning.created'
314
346
  | 'radar.early_fraud_warning.updated'
315
347
  | 'refund.created'
@@ -338,13 +370,16 @@ declare module 'stripe' {
338
370
  | 'subscription_schedule.completed'
339
371
  | 'subscription_schedule.created'
340
372
  | 'subscription_schedule.expiring'
373
+ | 'subscription_schedule.price_migration_failed'
341
374
  | 'subscription_schedule.released'
342
375
  | 'subscription_schedule.updated'
376
+ | 'tax.form.updated'
343
377
  | 'tax.settings.updated'
344
378
  | 'tax_rate.created'
345
379
  | 'tax_rate.updated'
346
380
  | 'terminal.reader.action_failed'
347
381
  | 'terminal.reader.action_succeeded'
382
+ | 'terminal.reader.action_updated'
348
383
  | 'test_helpers.test_clock.advancing'
349
384
  | 'test_helpers.test_clock.created'
350
385
  | 'test_helpers.test_clock.deleted'
@@ -438,15 +473,27 @@ declare module 'stripe' {
438
473
  | 'account.external_account.deleted'
439
474
  | 'account.external_account.updated'
440
475
  | 'account.updated'
476
+ | 'account_notice.created'
477
+ | 'account_notice.updated'
441
478
  | 'application_fee.created'
442
479
  | 'application_fee.refund.updated'
443
480
  | 'application_fee.refunded'
444
481
  | 'balance.available'
445
482
  | 'billing.alert.triggered'
483
+ | 'billing.meter_error_report.triggered'
446
484
  | 'billing_portal.configuration.created'
447
485
  | 'billing_portal.configuration.updated'
448
486
  | 'billing_portal.session.created'
449
487
  | 'capability.updated'
488
+ | 'capital.financing_offer.accepted'
489
+ | 'capital.financing_offer.canceled'
490
+ | 'capital.financing_offer.created'
491
+ | 'capital.financing_offer.expired'
492
+ | 'capital.financing_offer.fully_repaid'
493
+ | 'capital.financing_offer.paid_out'
494
+ | 'capital.financing_offer.rejected'
495
+ | 'capital.financing_offer.replacement_created'
496
+ | 'capital.financing_transaction.created'
450
497
  | 'cash_balance.funds_available'
451
498
  | 'charge.captured'
452
499
  | 'charge.dispute.closed'
@@ -487,11 +534,15 @@ declare module 'stripe' {
487
534
  | 'customer.source.deleted'
488
535
  | 'customer.source.expiring'
489
536
  | 'customer.source.updated'
537
+ | 'customer.subscription.collection_paused'
538
+ | 'customer.subscription.collection_resumed'
490
539
  | 'customer.subscription.created'
540
+ | 'customer.subscription.custom_event'
491
541
  | 'customer.subscription.deleted'
492
542
  | 'customer.subscription.paused'
493
543
  | 'customer.subscription.pending_update_applied'
494
544
  | 'customer.subscription.pending_update_expired'
545
+ | 'customer.subscription.price_migration_failed'
495
546
  | 'customer.subscription.resumed'
496
547
  | 'customer.subscription.trial_will_end'
497
548
  | 'customer.subscription.updated'
@@ -507,8 +558,10 @@ declare module 'stripe' {
507
558
  | 'financial_connections.account.disconnected'
508
559
  | 'financial_connections.account.reactivated'
509
560
  | 'financial_connections.account.refreshed_balance'
561
+ | 'financial_connections.account.refreshed_inferred_balances'
510
562
  | 'financial_connections.account.refreshed_ownership'
511
563
  | 'financial_connections.account.refreshed_transactions'
564
+ | 'financial_connections.session.updated'
512
565
  | 'identity.verification_session.canceled'
513
566
  | 'identity.verification_session.created'
514
567
  | 'identity.verification_session.processing'
@@ -521,8 +574,11 @@ declare module 'stripe' {
521
574
  | 'invoice.finalized'
522
575
  | 'invoice.marked_uncollectible'
523
576
  | 'invoice.overdue'
577
+ | 'invoice.overpaid'
524
578
  | 'invoice.paid'
579
+ | 'invoice.payment.overpaid'
525
580
  | 'invoice.payment_action_required'
581
+ | 'invoice.payment_attempt_required'
526
582
  | 'invoice.payment_failed'
527
583
  | 'invoice.payment_succeeded'
528
584
  | 'invoice.sent'
@@ -545,10 +601,15 @@ declare module 'stripe' {
545
601
  | 'issuing_dispute.funds_rescinded'
546
602
  | 'issuing_dispute.submitted'
547
603
  | 'issuing_dispute.updated'
604
+ | 'issuing_dispute_settlement_detail.created'
605
+ | 'issuing_dispute_settlement_detail.updated'
606
+ | 'issuing_fraud_liability_debit.created'
548
607
  | 'issuing_personalization_design.activated'
549
608
  | 'issuing_personalization_design.deactivated'
550
609
  | 'issuing_personalization_design.rejected'
551
610
  | 'issuing_personalization_design.updated'
611
+ | 'issuing_settlement.created'
612
+ | 'issuing_settlement.updated'
552
613
  | 'issuing_token.created'
553
614
  | 'issuing_token.updated'
554
615
  | 'issuing_transaction.created'
@@ -589,10 +650,16 @@ declare module 'stripe' {
589
650
  | 'product.updated'
590
651
  | 'promotion_code.created'
591
652
  | 'promotion_code.updated'
653
+ | 'quote.accept_failed'
592
654
  | 'quote.accepted'
655
+ | 'quote.accepting'
593
656
  | 'quote.canceled'
594
657
  | 'quote.created'
658
+ | 'quote.draft'
595
659
  | 'quote.finalized'
660
+ | 'quote.reestimate_failed'
661
+ | 'quote.reestimated'
662
+ | 'quote.stale'
596
663
  | 'radar.early_fraud_warning.created'
597
664
  | 'radar.early_fraud_warning.updated'
598
665
  | 'refund.created'
@@ -621,13 +688,16 @@ declare module 'stripe' {
621
688
  | 'subscription_schedule.completed'
622
689
  | 'subscription_schedule.created'
623
690
  | 'subscription_schedule.expiring'
691
+ | 'subscription_schedule.price_migration_failed'
624
692
  | 'subscription_schedule.released'
625
693
  | 'subscription_schedule.updated'
694
+ | 'tax.form.updated'
626
695
  | 'tax.settings.updated'
627
696
  | 'tax_rate.created'
628
697
  | 'tax_rate.updated'
629
698
  | 'terminal.reader.action_failed'
630
699
  | 'terminal.reader.action_succeeded'
700
+ | 'terminal.reader.action_updated'
631
701
  | 'test_helpers.test_clock.advancing'
632
702
  | 'test_helpers.test_clock.created'
633
703
  | 'test_helpers.test_clock.deleted'
package/types/index.d.ts CHANGED
@@ -12,6 +12,7 @@
12
12
  ///<reference path='./crypto/crypto.d.ts' />
13
13
  // Imports: The beginning of the section generated from our OpenAPI spec
14
14
  ///<reference path='./AccountLinksResource.d.ts' />
15
+ ///<reference path='./AccountNoticesResource.d.ts' />
15
16
  ///<reference path='./AccountSessionsResource.d.ts' />
16
17
  ///<reference path='./AccountsResource.d.ts' />
17
18
  ///<reference path='./ApplePayDomainsResource.d.ts' />
@@ -28,6 +29,9 @@
28
29
  ///<reference path='./Billing/MetersResource.d.ts' />
29
30
  ///<reference path='./BillingPortal/ConfigurationsResource.d.ts' />
30
31
  ///<reference path='./BillingPortal/SessionsResource.d.ts' />
32
+ ///<reference path='./Capital/FinancingOffersResource.d.ts' />
33
+ ///<reference path='./Capital/FinancingSummaryResource.d.ts' />
34
+ ///<reference path='./Capital/FinancingTransactionsResource.d.ts' />
31
35
  ///<reference path='./ChargesResource.d.ts' />
32
36
  ///<reference path='./Checkout/SessionsResource.d.ts' />
33
37
  ///<reference path='./Climate/OrdersResource.d.ts' />
@@ -48,9 +52,12 @@
48
52
  ///<reference path='./FileLinksResource.d.ts' />
49
53
  ///<reference path='./FilesResource.d.ts' />
50
54
  ///<reference path='./FinancialConnections/AccountsResource.d.ts' />
55
+ ///<reference path='./FinancialConnections/InstitutionsResource.d.ts' />
51
56
  ///<reference path='./FinancialConnections/SessionsResource.d.ts' />
52
57
  ///<reference path='./FinancialConnections/TransactionsResource.d.ts' />
53
58
  ///<reference path='./Forwarding/RequestsResource.d.ts' />
59
+ ///<reference path='./GiftCards/CardsResource.d.ts' />
60
+ ///<reference path='./GiftCards/TransactionsResource.d.ts' />
54
61
  ///<reference path='./Identity/VerificationReportsResource.d.ts' />
55
62
  ///<reference path='./Identity/VerificationSessionsResource.d.ts' />
56
63
  ///<reference path='./InvoiceItemsResource.d.ts' />
@@ -59,17 +66,24 @@
59
66
  ///<reference path='./Issuing/AuthorizationsResource.d.ts' />
60
67
  ///<reference path='./Issuing/CardholdersResource.d.ts' />
61
68
  ///<reference path='./Issuing/CardsResource.d.ts' />
69
+ ///<reference path='./Issuing/CreditUnderwritingRecordsResource.d.ts' />
70
+ ///<reference path='./Issuing/DisputeSettlementDetailsResource.d.ts' />
62
71
  ///<reference path='./Issuing/DisputesResource.d.ts' />
72
+ ///<reference path='./Issuing/FraudLiabilityDebitsResource.d.ts' />
63
73
  ///<reference path='./Issuing/PersonalizationDesignsResource.d.ts' />
64
74
  ///<reference path='./Issuing/PhysicalBundlesResource.d.ts' />
65
75
  ///<reference path='./Issuing/TokensResource.d.ts' />
66
76
  ///<reference path='./Issuing/TransactionsResource.d.ts' />
67
77
  ///<reference path='./MandatesResource.d.ts' />
78
+ ///<reference path='./MarginsResource.d.ts' />
79
+ ///<reference path='./OrdersResource.d.ts' />
80
+ ///<reference path='./PaymentAttemptRecordsResource.d.ts' />
68
81
  ///<reference path='./PaymentIntentsResource.d.ts' />
69
82
  ///<reference path='./PaymentLinksResource.d.ts' />
70
83
  ///<reference path='./PaymentMethodConfigurationsResource.d.ts' />
71
84
  ///<reference path='./PaymentMethodDomainsResource.d.ts' />
72
85
  ///<reference path='./PaymentMethodsResource.d.ts' />
86
+ ///<reference path='./PaymentRecordsResource.d.ts' />
73
87
  ///<reference path='./PayoutsResource.d.ts' />
74
88
  ///<reference path='./PlansResource.d.ts' />
75
89
  ///<reference path='./PricesResource.d.ts' />
@@ -91,7 +105,9 @@
91
105
  ///<reference path='./SubscriptionItemsResource.d.ts' />
92
106
  ///<reference path='./SubscriptionSchedulesResource.d.ts' />
93
107
  ///<reference path='./SubscriptionsResource.d.ts' />
108
+ ///<reference path='./Tax/AssociationsResource.d.ts' />
94
109
  ///<reference path='./Tax/CalculationsResource.d.ts' />
110
+ ///<reference path='./Tax/FormsResource.d.ts' />
95
111
  ///<reference path='./Tax/RegistrationsResource.d.ts' />
96
112
  ///<reference path='./Tax/SettingsResource.d.ts' />
97
113
  ///<reference path='./Tax/TransactionsResource.d.ts' />
@@ -101,6 +117,7 @@
101
117
  ///<reference path='./Terminal/ConfigurationsResource.d.ts' />
102
118
  ///<reference path='./Terminal/ConnectionTokensResource.d.ts' />
103
119
  ///<reference path='./Terminal/LocationsResource.d.ts' />
120
+ ///<reference path='./Terminal/ReaderCollectedDataResource.d.ts' />
104
121
  ///<reference path='./Terminal/ReadersResource.d.ts' />
105
122
  ///<reference path='./TestHelpers/ConfirmationTokensResource.d.ts' />
106
123
  ///<reference path='./TestHelpers/CustomersResource.d.ts' />
@@ -137,6 +154,7 @@
137
154
  ///<reference path='./V2/Core/EventsResource.d.ts' />
138
155
  ///<reference path='./WebhookEndpointsResource.d.ts' />
139
156
  ///<reference path='./AccountLinks.d.ts' />
157
+ ///<reference path='./AccountNotices.d.ts' />
140
158
  ///<reference path='./AccountSessions.d.ts' />
141
159
  ///<reference path='./Accounts.d.ts' />
142
160
  ///<reference path='./ApplePayDomains.d.ts' />
@@ -152,6 +170,7 @@
152
170
  ///<reference path='./Billing/CreditBalanceSummary.d.ts' />
153
171
  ///<reference path='./Billing/CreditBalanceTransactions.d.ts' />
154
172
  ///<reference path='./Billing/CreditGrants.d.ts' />
173
+ ///<reference path='./Billing/MeterErrorReports.d.ts' />
155
174
  ///<reference path='./Billing/MeterEventAdjustments.d.ts' />
156
175
  ///<reference path='./Billing/MeterEventSummaries.d.ts' />
157
176
  ///<reference path='./Billing/MeterEvents.d.ts' />
@@ -159,6 +178,9 @@
159
178
  ///<reference path='./BillingPortal/Configurations.d.ts' />
160
179
  ///<reference path='./BillingPortal/Sessions.d.ts' />
161
180
  ///<reference path='./Capabilities.d.ts' />
181
+ ///<reference path='./Capital/FinancingOffers.d.ts' />
182
+ ///<reference path='./Capital/FinancingSummary.d.ts' />
183
+ ///<reference path='./Capital/FinancingTransactions.d.ts' />
162
184
  ///<reference path='./Cards.d.ts' />
163
185
  ///<reference path='./CashBalances.d.ts' />
164
186
  ///<reference path='./Charges.d.ts' />
@@ -189,35 +211,48 @@
189
211
  ///<reference path='./FeeRefunds.d.ts' />
190
212
  ///<reference path='./FileLinks.d.ts' />
191
213
  ///<reference path='./Files.d.ts' />
214
+ ///<reference path='./FinancialConnections/AccountInferredBalances.d.ts' />
192
215
  ///<reference path='./FinancialConnections/AccountOwners.d.ts' />
193
216
  ///<reference path='./FinancialConnections/AccountOwnerships.d.ts' />
194
217
  ///<reference path='./FinancialConnections/Accounts.d.ts' />
218
+ ///<reference path='./FinancialConnections/Institutions.d.ts' />
195
219
  ///<reference path='./FinancialConnections/Sessions.d.ts' />
196
220
  ///<reference path='./FinancialConnections/Transactions.d.ts' />
197
221
  ///<reference path='./Forwarding/Requests.d.ts' />
198
222
  ///<reference path='./FundingInstructions.d.ts' />
223
+ ///<reference path='./GiftCards/Cards.d.ts' />
224
+ ///<reference path='./GiftCards/Transactions.d.ts' />
199
225
  ///<reference path='./Identity/VerificationReports.d.ts' />
200
226
  ///<reference path='./Identity/VerificationSessions.d.ts' />
201
227
  ///<reference path='./InvoiceItems.d.ts' />
202
228
  ///<reference path='./InvoiceLineItems.d.ts' />
229
+ ///<reference path='./InvoicePayments.d.ts' />
203
230
  ///<reference path='./InvoiceRenderingTemplates.d.ts' />
204
231
  ///<reference path='./Invoices.d.ts' />
205
232
  ///<reference path='./Issuing/Authorizations.d.ts' />
206
233
  ///<reference path='./Issuing/Cardholders.d.ts' />
207
234
  ///<reference path='./Issuing/Cards.d.ts' />
235
+ ///<reference path='./Issuing/CreditUnderwritingRecords.d.ts' />
236
+ ///<reference path='./Issuing/DisputeSettlementDetails.d.ts' />
208
237
  ///<reference path='./Issuing/Disputes.d.ts' />
238
+ ///<reference path='./Issuing/FraudLiabilityDebits.d.ts' />
209
239
  ///<reference path='./Issuing/PersonalizationDesigns.d.ts' />
210
240
  ///<reference path='./Issuing/PhysicalBundles.d.ts' />
241
+ ///<reference path='./Issuing/Settlements.d.ts' />
211
242
  ///<reference path='./Issuing/Tokens.d.ts' />
212
243
  ///<reference path='./Issuing/Transactions.d.ts' />
213
244
  ///<reference path='./LineItems.d.ts' />
214
245
  ///<reference path='./LoginLinks.d.ts' />
215
246
  ///<reference path='./Mandates.d.ts' />
247
+ ///<reference path='./Margins.d.ts' />
248
+ ///<reference path='./Orders.d.ts' />
249
+ ///<reference path='./PaymentAttemptRecords.d.ts' />
216
250
  ///<reference path='./PaymentIntents.d.ts' />
217
251
  ///<reference path='./PaymentLinks.d.ts' />
218
252
  ///<reference path='./PaymentMethodConfigurations.d.ts' />
219
253
  ///<reference path='./PaymentMethodDomains.d.ts' />
220
254
  ///<reference path='./PaymentMethods.d.ts' />
255
+ ///<reference path='./PaymentRecords.d.ts' />
221
256
  ///<reference path='./Payouts.d.ts' />
222
257
  ///<reference path='./Persons.d.ts' />
223
258
  ///<reference path='./Plans.d.ts' />
@@ -225,6 +260,9 @@
225
260
  ///<reference path='./ProductFeatures.d.ts' />
226
261
  ///<reference path='./Products.d.ts' />
227
262
  ///<reference path='./PromotionCodes.d.ts' />
263
+ ///<reference path='./QuoteLines.d.ts' />
264
+ ///<reference path='./QuotePreviewInvoices.d.ts' />
265
+ ///<reference path='./QuotePreviewSubscriptionSchedules.d.ts' />
228
266
  ///<reference path='./Quotes.d.ts' />
229
267
  ///<reference path='./Radar/EarlyFraudWarnings.d.ts' />
230
268
  ///<reference path='./Radar/ValueListItems.d.ts' />
@@ -244,8 +282,10 @@
244
282
  ///<reference path='./SubscriptionItems.d.ts' />
245
283
  ///<reference path='./SubscriptionSchedules.d.ts' />
246
284
  ///<reference path='./Subscriptions.d.ts' />
285
+ ///<reference path='./Tax/Associations.d.ts' />
247
286
  ///<reference path='./Tax/CalculationLineItems.d.ts' />
248
287
  ///<reference path='./Tax/Calculations.d.ts' />
288
+ ///<reference path='./Tax/Forms.d.ts' />
249
289
  ///<reference path='./Tax/Registrations.d.ts' />
250
290
  ///<reference path='./Tax/Settings.d.ts' />
251
291
  ///<reference path='./Tax/TransactionLineItems.d.ts' />
@@ -257,6 +297,7 @@
257
297
  ///<reference path='./Terminal/Configurations.d.ts' />
258
298
  ///<reference path='./Terminal/ConnectionTokens.d.ts' />
259
299
  ///<reference path='./Terminal/Locations.d.ts' />
300
+ ///<reference path='./Terminal/ReaderCollectedData.d.ts' />
260
301
  ///<reference path='./Terminal/Readers.d.ts' />
261
302
  ///<reference path='./TestHelpers/TestClocks.d.ts' />
262
303
  ///<reference path='./Tokens.d.ts' />
@@ -303,6 +344,7 @@ declare module 'stripe' {
303
344
 
304
345
  // Fields: The beginning of the section generated from our OpenAPI spec
305
346
  accountLinks: Stripe.AccountLinksResource;
347
+ accountNotices: Stripe.AccountNoticesResource;
306
348
  accountSessions: Stripe.AccountSessionsResource;
307
349
  accounts: Stripe.AccountsResource;
308
350
  applePayDomains: Stripe.ApplePayDomainsResource;
@@ -326,11 +368,15 @@ declare module 'stripe' {
326
368
  invoiceRenderingTemplates: Stripe.InvoiceRenderingTemplatesResource;
327
369
  invoices: Stripe.InvoicesResource;
328
370
  mandates: Stripe.MandatesResource;
371
+ margins: Stripe.MarginsResource;
372
+ orders: Stripe.OrdersResource;
373
+ paymentAttemptRecords: Stripe.PaymentAttemptRecordsResource;
329
374
  paymentIntents: Stripe.PaymentIntentsResource;
330
375
  paymentLinks: Stripe.PaymentLinksResource;
331
376
  paymentMethodConfigurations: Stripe.PaymentMethodConfigurationsResource;
332
377
  paymentMethodDomains: Stripe.PaymentMethodDomainsResource;
333
378
  paymentMethods: Stripe.PaymentMethodsResource;
379
+ paymentRecords: Stripe.PaymentRecordsResource;
334
380
  payouts: Stripe.PayoutsResource;
335
381
  plans: Stripe.PlansResource;
336
382
  prices: Stripe.PricesResource;
@@ -369,6 +415,11 @@ declare module 'stripe' {
369
415
  configurations: Stripe.BillingPortal.ConfigurationsResource;
370
416
  sessions: Stripe.BillingPortal.SessionsResource;
371
417
  };
418
+ capital: {
419
+ financingOffers: Stripe.Capital.FinancingOffersResource;
420
+ financingSummary: Stripe.Capital.FinancingSummaryResource;
421
+ financingTransactions: Stripe.Capital.FinancingTransactionsResource;
422
+ };
372
423
  checkout: {
373
424
  sessions: Stripe.Checkout.SessionsResource;
374
425
  };
@@ -383,12 +434,17 @@ declare module 'stripe' {
383
434
  };
384
435
  financialConnections: {
385
436
  accounts: Stripe.FinancialConnections.AccountsResource;
437
+ institutions: Stripe.FinancialConnections.InstitutionsResource;
386
438
  sessions: Stripe.FinancialConnections.SessionsResource;
387
439
  transactions: Stripe.FinancialConnections.TransactionsResource;
388
440
  };
389
441
  forwarding: {
390
442
  requests: Stripe.Forwarding.RequestsResource;
391
443
  };
444
+ giftCards: {
445
+ cards: Stripe.GiftCards.CardsResource;
446
+ transactions: Stripe.GiftCards.TransactionsResource;
447
+ };
392
448
  identity: {
393
449
  verificationReports: Stripe.Identity.VerificationReportsResource;
394
450
  verificationSessions: Stripe.Identity.VerificationSessionsResource;
@@ -397,7 +453,10 @@ declare module 'stripe' {
397
453
  authorizations: Stripe.Issuing.AuthorizationsResource;
398
454
  cards: Stripe.Issuing.CardsResource;
399
455
  cardholders: Stripe.Issuing.CardholdersResource;
456
+ creditUnderwritingRecords: Stripe.Issuing.CreditUnderwritingRecordsResource;
400
457
  disputes: Stripe.Issuing.DisputesResource;
458
+ disputeSettlementDetails: Stripe.Issuing.DisputeSettlementDetailsResource;
459
+ fraudLiabilityDebits: Stripe.Issuing.FraudLiabilityDebitsResource;
401
460
  personalizationDesigns: Stripe.Issuing.PersonalizationDesignsResource;
402
461
  physicalBundles: Stripe.Issuing.PhysicalBundlesResource;
403
462
  tokens: Stripe.Issuing.TokensResource;
@@ -416,7 +475,9 @@ declare module 'stripe' {
416
475
  scheduledQueryRuns: Stripe.Sigma.ScheduledQueryRunsResource;
417
476
  };
418
477
  tax: {
478
+ associations: Stripe.Tax.AssociationsResource;
419
479
  calculations: Stripe.Tax.CalculationsResource;
480
+ forms: Stripe.Tax.FormsResource;
420
481
  registrations: Stripe.Tax.RegistrationsResource;
421
482
  settings: Stripe.Tax.SettingsResource;
422
483
  transactions: Stripe.Tax.TransactionsResource;
@@ -426,6 +487,7 @@ declare module 'stripe' {
426
487
  connectionTokens: Stripe.Terminal.ConnectionTokensResource;
427
488
  locations: Stripe.Terminal.LocationsResource;
428
489
  readers: Stripe.Terminal.ReadersResource;
490
+ readerCollectedData: Stripe.Terminal.ReaderCollectedDataResource;
429
491
  };
430
492
  testHelpers: {
431
493
  confirmationTokens: Stripe.TestHelpers.ConfirmationTokensResource;