stripe 19.2.0 → 19.3.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 (317) hide show
  1. package/CHANGELOG.md +1471 -12
  2. package/README.md +1 -0
  3. package/VERSION +1 -1
  4. package/cjs/Error.js +115 -1
  5. package/cjs/apiVersion.js +2 -3
  6. package/cjs/resources/AccountNotices.js +21 -0
  7. package/cjs/resources/Billing/Analytics/MeterUsage.js +12 -0
  8. package/cjs/resources/Capital/FinancingOffers.js +21 -0
  9. package/cjs/resources/Capital/FinancingSummary.js +12 -0
  10. package/cjs/resources/Capital/FinancingTransactions.js +17 -0
  11. package/cjs/resources/ExternalAccounts.js +23 -0
  12. package/cjs/resources/FinancialConnections/Accounts.js +5 -0
  13. package/cjs/resources/FinancialConnections/Institutions.js +17 -0
  14. package/cjs/resources/FxQuotes.js +15 -0
  15. package/cjs/resources/Issuing/CreditUnderwritingRecords.js +33 -0
  16. package/cjs/resources/Issuing/DisputeSettlementDetails.js +17 -0
  17. package/cjs/resources/Issuing/FraudLiabilityDebits.js +17 -0
  18. package/cjs/resources/Mandates.js +5 -0
  19. package/cjs/resources/Margins.js +22 -0
  20. package/cjs/resources/Orders.js +24 -0
  21. package/cjs/resources/PaymentIntents.js +8 -0
  22. package/cjs/resources/Privacy/RedactionJobs.js +42 -0
  23. package/cjs/resources/Quotes.js +32 -0
  24. package/cjs/resources/SubscriptionSchedules.js +4 -0
  25. package/cjs/resources/Subscriptions.js +4 -0
  26. package/cjs/resources/Tax/Associations.js +9 -0
  27. package/cjs/resources/Tax/Forms.js +20 -0
  28. package/cjs/resources/Terminal/OnboardingLinks.js +12 -0
  29. package/cjs/resources/Terminal/ReaderCollectedData.js +12 -0
  30. package/cjs/resources/V2/Billing/BillSettings/Versions.js +17 -0
  31. package/cjs/resources/V2/Billing/BillSettings.js +27 -0
  32. package/cjs/resources/V2/Billing/Cadences.js +23 -0
  33. package/cjs/resources/V2/Billing/CollectionSettings/Versions.js +17 -0
  34. package/cjs/resources/V2/Billing/CollectionSettings.js +30 -0
  35. package/cjs/resources/V2/Billing/Profiles.js +19 -0
  36. package/cjs/resources/V2/Core/AccountLinks.js +9 -0
  37. package/cjs/resources/V2/Core/Accounts/Persons.js +29 -0
  38. package/cjs/resources/V2/Core/Accounts.js +25 -0
  39. package/cjs/resources/V2/Core/Vault/GbBankAccounts.js +33 -0
  40. package/cjs/resources/V2/Core/Vault/UsBankAccounts.js +37 -0
  41. package/cjs/resources/V2/MoneyManagement/Adjustments.js +17 -0
  42. package/cjs/resources/V2/MoneyManagement/FinancialAccounts.js +29 -0
  43. package/cjs/resources/V2/MoneyManagement/FinancialAddresses.js +21 -0
  44. package/cjs/resources/V2/MoneyManagement/InboundTransfers.js +21 -0
  45. package/cjs/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +16 -0
  46. package/cjs/resources/V2/MoneyManagement/OutboundPayments.js +25 -0
  47. package/cjs/resources/V2/MoneyManagement/OutboundSetupIntents.js +29 -0
  48. package/cjs/resources/V2/MoneyManagement/OutboundTransfers.js +25 -0
  49. package/cjs/resources/V2/MoneyManagement/PayoutMethods.js +25 -0
  50. package/cjs/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +12 -0
  51. package/cjs/resources/V2/MoneyManagement/ReceivedCredits.js +17 -0
  52. package/cjs/resources/V2/MoneyManagement/ReceivedDebits.js +17 -0
  53. package/cjs/resources/V2/MoneyManagement/TransactionEntries.js +17 -0
  54. package/cjs/resources/V2/MoneyManagement/Transactions.js +17 -0
  55. package/cjs/resources/V2/Payments/OffSessionPayments.js +29 -0
  56. package/cjs/resources/V2/TestHelpers/FinancialAddresses.js +16 -0
  57. package/cjs/resources.js +106 -8
  58. package/cjs/stripe.core.js +1 -1
  59. package/esm/Error.js +100 -0
  60. package/esm/apiVersion.js +1 -2
  61. package/esm/resources/AccountNotices.js +18 -0
  62. package/esm/resources/Billing/Analytics/MeterUsage.js +9 -0
  63. package/esm/resources/Capital/FinancingOffers.js +18 -0
  64. package/esm/resources/Capital/FinancingSummary.js +9 -0
  65. package/esm/resources/Capital/FinancingTransactions.js +14 -0
  66. package/esm/resources/ExternalAccounts.js +20 -0
  67. package/esm/resources/FinancialConnections/Accounts.js +5 -0
  68. package/esm/resources/FinancialConnections/Institutions.js +14 -0
  69. package/esm/resources/FxQuotes.js +12 -0
  70. package/esm/resources/Issuing/CreditUnderwritingRecords.js +30 -0
  71. package/esm/resources/Issuing/DisputeSettlementDetails.js +14 -0
  72. package/esm/resources/Issuing/FraudLiabilityDebits.js +14 -0
  73. package/esm/resources/Mandates.js +5 -0
  74. package/esm/resources/Margins.js +19 -0
  75. package/esm/resources/Orders.js +21 -0
  76. package/esm/resources/PaymentIntents.js +8 -0
  77. package/esm/resources/Privacy/RedactionJobs.js +39 -0
  78. package/esm/resources/Quotes.js +32 -0
  79. package/esm/resources/SubscriptionSchedules.js +4 -0
  80. package/esm/resources/Subscriptions.js +4 -0
  81. package/esm/resources/Tax/Associations.js +6 -0
  82. package/esm/resources/Tax/Forms.js +17 -0
  83. package/esm/resources/Terminal/OnboardingLinks.js +9 -0
  84. package/esm/resources/Terminal/ReaderCollectedData.js +9 -0
  85. package/esm/resources/V2/Billing/BillSettings/Versions.js +14 -0
  86. package/esm/resources/V2/Billing/BillSettings.js +24 -0
  87. package/esm/resources/V2/Billing/Cadences.js +20 -0
  88. package/esm/resources/V2/Billing/CollectionSettings/Versions.js +14 -0
  89. package/esm/resources/V2/Billing/CollectionSettings.js +27 -0
  90. package/esm/resources/V2/Billing/Profiles.js +16 -0
  91. package/esm/resources/V2/Core/AccountLinks.js +6 -0
  92. package/esm/resources/V2/Core/Accounts/Persons.js +26 -0
  93. package/esm/resources/V2/Core/Accounts.js +22 -0
  94. package/esm/resources/V2/Core/Vault/GbBankAccounts.js +30 -0
  95. package/esm/resources/V2/Core/Vault/UsBankAccounts.js +34 -0
  96. package/esm/resources/V2/MoneyManagement/Adjustments.js +14 -0
  97. package/esm/resources/V2/MoneyManagement/FinancialAccounts.js +26 -0
  98. package/esm/resources/V2/MoneyManagement/FinancialAddresses.js +18 -0
  99. package/esm/resources/V2/MoneyManagement/InboundTransfers.js +18 -0
  100. package/esm/resources/V2/MoneyManagement/OutboundPaymentQuotes.js +13 -0
  101. package/esm/resources/V2/MoneyManagement/OutboundPayments.js +22 -0
  102. package/esm/resources/V2/MoneyManagement/OutboundSetupIntents.js +26 -0
  103. package/esm/resources/V2/MoneyManagement/OutboundTransfers.js +22 -0
  104. package/esm/resources/V2/MoneyManagement/PayoutMethods.js +22 -0
  105. package/esm/resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js +9 -0
  106. package/esm/resources/V2/MoneyManagement/ReceivedCredits.js +14 -0
  107. package/esm/resources/V2/MoneyManagement/ReceivedDebits.js +14 -0
  108. package/esm/resources/V2/MoneyManagement/TransactionEntries.js +14 -0
  109. package/esm/resources/V2/MoneyManagement/Transactions.js +14 -0
  110. package/esm/resources/V2/Payments/OffSessionPayments.js +26 -0
  111. package/esm/resources/V2/TestHelpers/FinancialAddresses.js +13 -0
  112. package/esm/resources.js +93 -0
  113. package/esm/stripe.core.js +1 -1
  114. package/package.json +1 -1
  115. package/types/AccountLinksResource.d.ts +5 -1
  116. package/types/AccountNotices.d.ts +113 -0
  117. package/types/AccountNoticesResource.d.ts +98 -0
  118. package/types/AccountSessions.d.ts +45 -0
  119. package/types/AccountSessionsResource.d.ts +264 -0
  120. package/types/Accounts.d.ts +214 -1
  121. package/types/AccountsResource.d.ts +544 -0
  122. package/types/BankAccounts.d.ts +2 -0
  123. package/types/Billing/AlertTriggereds.d.ts +1 -1
  124. package/types/Billing/Analytics/MeterUsage.d.ts +31 -0
  125. package/types/Billing/Analytics/MeterUsageResource.d.ts +689 -0
  126. package/types/Billing/Analytics/MeterUsageRows.d.ts +51 -0
  127. package/types/Billing/CreditBalanceSummary.d.ts +5 -0
  128. package/types/Billing/CreditBalanceSummaryResource.d.ts +8 -3
  129. package/types/Billing/CreditBalanceTransactionsResource.d.ts +12 -4
  130. package/types/Billing/CreditGrants.d.ts +5 -0
  131. package/types/Billing/CreditGrantsResource.d.ts +13 -3
  132. package/types/BillingPortal/Sessions.d.ts +5 -0
  133. package/types/BillingPortal/SessionsResource.d.ts +12 -4
  134. package/types/Capabilities.d.ts +2 -0
  135. package/types/Capital/FinancingOffers.d.ts +188 -0
  136. package/types/Capital/FinancingOffersResource.d.ts +97 -0
  137. package/types/Capital/FinancingSummary.d.ts +106 -0
  138. package/types/Capital/FinancingSummaryResource.d.ts +27 -0
  139. package/types/Capital/FinancingTransactions.d.ts +135 -0
  140. package/types/Capital/FinancingTransactionsResource.d.ts +68 -0
  141. package/types/Cards.d.ts +5 -0
  142. package/types/CashBalances.d.ts +5 -0
  143. package/types/Charges.d.ts +176 -0
  144. package/types/ChargesResource.d.ts +1418 -0
  145. package/types/Checkout/Sessions.d.ts +369 -2
  146. package/types/Checkout/SessionsResource.d.ts +632 -2
  147. package/types/ConfirmationTokens.d.ts +125 -0
  148. package/types/Coupons.d.ts +33 -0
  149. package/types/CouponsResource.d.ts +21 -0
  150. package/types/CreditNoteLineItems.d.ts +17 -0
  151. package/types/CreditNotes.d.ts +5 -0
  152. package/types/CreditNotesResource.d.ts +5 -0
  153. package/types/CustomerBalanceTransactions.d.ts +2 -0
  154. package/types/CustomerCashBalanceTransactions.d.ts +2 -0
  155. package/types/CustomerSessions.d.ts +46 -0
  156. package/types/CustomerSessionsResource.d.ts +47 -1
  157. package/types/Customers.d.ts +2 -0
  158. package/types/CustomersResource.d.ts +8 -0
  159. package/types/Discounts.d.ts +10 -0
  160. package/types/Disputes.d.ts +40 -0
  161. package/types/DisputesResource.d.ts +11 -0
  162. package/types/Errors.d.ts +85 -0
  163. package/types/EventTypes.d.ts +630 -0
  164. package/types/Events.d.ts +95 -0
  165. package/types/ExternalAccountsResource.d.ts +304 -0
  166. package/types/FinancialConnections/AccountInferredBalances.d.ts +38 -0
  167. package/types/FinancialConnections/Accounts.d.ts +36 -1
  168. package/types/FinancialConnections/AccountsResource.d.ts +40 -3
  169. package/types/FinancialConnections/Institutions.d.ts +98 -0
  170. package/types/FinancialConnections/InstitutionsResource.d.ts +47 -0
  171. package/types/FinancialConnections/Sessions.d.ts +51 -1
  172. package/types/FinancialConnections/SessionsResource.d.ts +43 -1
  173. package/types/FxQuotes.d.ts +155 -0
  174. package/types/FxQuotesResource.d.ts +130 -0
  175. package/types/Identity/VerificationSessions.d.ts +5 -0
  176. package/types/Identity/VerificationSessionsResource.d.ts +7 -0
  177. package/types/InvoiceItems.d.ts +10 -0
  178. package/types/InvoiceItemsResource.d.ts +117 -6
  179. package/types/InvoiceLineItems.d.ts +45 -1
  180. package/types/Invoices.d.ts +203 -4
  181. package/types/InvoicesResource.d.ts +1620 -2
  182. package/types/Issuing/CardholdersResource.d.ts +2 -1
  183. package/types/Issuing/CreditUnderwritingRecords.d.ts +451 -0
  184. package/types/Issuing/CreditUnderwritingRecordsResource.d.ts +1032 -0
  185. package/types/Issuing/DisputeSettlementDetails.d.ts +85 -0
  186. package/types/Issuing/DisputeSettlementDetailsResource.d.ts +52 -0
  187. package/types/Issuing/FraudLiabilityDebits.d.ts +52 -0
  188. package/types/Issuing/FraudLiabilityDebitsResource.d.ts +52 -0
  189. package/types/Issuing/Settlements.d.ts +113 -0
  190. package/types/Issuing/Transactions.d.ts +5 -0
  191. package/types/Issuing/TransactionsResource.d.ts +5 -0
  192. package/types/LineItems.d.ts +49 -0
  193. package/types/Mandates.d.ts +135 -1
  194. package/types/MandatesResource.d.ts +31 -0
  195. package/types/Margins.d.ts +56 -0
  196. package/types/MarginsResource.d.ts +114 -0
  197. package/types/Orders.d.ts +1163 -0
  198. package/types/OrdersResource.d.ts +3139 -0
  199. package/types/PaymentAttemptRecords.d.ts +141 -0
  200. package/types/PaymentIntents.d.ts +773 -3
  201. package/types/PaymentIntentsResource.d.ts +9628 -4805
  202. package/types/PaymentLinks.d.ts +6 -0
  203. package/types/PaymentLinksResource.d.ts +12 -0
  204. package/types/PaymentMethodConfigurations.d.ts +216 -0
  205. package/types/PaymentMethodConfigurationsResource.d.ts +300 -0
  206. package/types/PaymentMethods.d.ts +130 -0
  207. package/types/PaymentMethodsResource.d.ts +167 -2
  208. package/types/PaymentRecords.d.ts +141 -0
  209. package/types/Persons.d.ts +2 -0
  210. package/types/Prices.d.ts +22 -0
  211. package/types/PricesResource.d.ts +22 -0
  212. package/types/Privacy/RedactionJobValidationErrors.d.ts +60 -0
  213. package/types/Privacy/RedactionJobs.d.ts +111 -0
  214. package/types/Privacy/RedactionJobsResource.d.ts +230 -0
  215. package/types/PromotionCodes.d.ts +5 -0
  216. package/types/PromotionCodesResource.d.ts +10 -0
  217. package/types/QuoteLines.d.ts +634 -0
  218. package/types/QuotePreviewInvoices.d.ts +1771 -0
  219. package/types/QuotePreviewSubscriptionSchedules.d.ts +908 -0
  220. package/types/Quotes.d.ts +594 -1
  221. package/types/QuotesResource.d.ts +2588 -243
  222. package/types/Refunds.d.ts +14 -0
  223. package/types/SetupAttempts.d.ts +51 -1
  224. package/types/SetupIntents.d.ts +218 -2
  225. package/types/SetupIntentsResource.d.ts +954 -4
  226. package/types/Sources.d.ts +29 -0
  227. package/types/SubscriptionItems.d.ts +26 -0
  228. package/types/SubscriptionItemsResource.d.ts +109 -0
  229. package/types/SubscriptionSchedules.d.ts +205 -0
  230. package/types/SubscriptionSchedulesResource.d.ts +1233 -5
  231. package/types/Subscriptions.d.ts +262 -1
  232. package/types/SubscriptionsResource.d.ts +745 -8
  233. package/types/Tax/Associations.d.ts +82 -0
  234. package/types/Tax/AssociationsResource.d.ts +29 -0
  235. package/types/Tax/Forms.d.ts +220 -0
  236. package/types/Tax/FormsResource.d.ts +107 -0
  237. package/types/TaxIds.d.ts +10 -0
  238. package/types/TaxIdsResource.d.ts +10 -0
  239. package/types/Terminal/Configurations.d.ts +9 -0
  240. package/types/Terminal/ConfigurationsResource.d.ts +28 -0
  241. package/types/Terminal/OnboardingLinks.d.ts +57 -0
  242. package/types/Terminal/OnboardingLinksResource.d.ts +62 -0
  243. package/types/Terminal/ReaderCollectedData.d.ts +51 -0
  244. package/types/Terminal/ReaderCollectedDataResource.d.ts +29 -0
  245. package/types/Terminal/Readers.d.ts +20 -0
  246. package/types/TestHelpers/ConfirmationTokensResource.d.ts +126 -0
  247. package/types/TestHelpers/Treasury/ReceivedCreditsResource.d.ts +26 -0
  248. package/types/TestHelpers/Treasury/ReceivedDebitsResource.d.ts +26 -0
  249. package/types/Transfers.d.ts +5 -0
  250. package/types/TransfersResource.d.ts +5 -0
  251. package/types/Treasury/FinancialAccountFeatures.d.ts +7 -0
  252. package/types/Treasury/FinancialAccounts.d.ts +5 -0
  253. package/types/Treasury/FinancialAccountsResource.d.ts +37 -0
  254. package/types/Treasury/OutboundTransfers.d.ts +26 -0
  255. package/types/Treasury/OutboundTransfersResource.d.ts +26 -0
  256. package/types/Treasury/ReceivedCredits.d.ts +26 -0
  257. package/types/Treasury/ReceivedDebits.d.ts +31 -0
  258. package/types/V2/Billing/BillSettingVersions.d.ts +97 -0
  259. package/types/V2/Billing/BillSettings/VersionsResource.d.ts +58 -0
  260. package/types/V2/Billing/BillSettings.d.ts +120 -0
  261. package/types/V2/Billing/BillSettingsResource.d.ts +241 -0
  262. package/types/V2/Billing/Cadences.d.ts +686 -0
  263. package/types/V2/Billing/CadencesResource.d.ts +487 -0
  264. package/types/V2/Billing/CollectionSettingVersions.d.ts +314 -0
  265. package/types/V2/Billing/CollectionSettings/VersionsResource.d.ts +62 -0
  266. package/types/V2/Billing/CollectionSettings.d.ts +337 -0
  267. package/types/V2/Billing/CollectionSettingsResource.d.ts +675 -0
  268. package/types/V2/Billing/Profiles.d.ts +70 -0
  269. package/types/V2/Billing/ProfilesResource.d.ts +150 -0
  270. package/types/V2/Core/AccountLinks.d.ts +168 -0
  271. package/types/V2/Core/AccountLinksResource.d.ts +152 -0
  272. package/types/V2/Core/AccountPersons.d.ts +615 -0
  273. package/types/V2/Core/Accounts/PersonsResource.d.ts +1153 -0
  274. package/types/V2/Core/Accounts.d.ts +6010 -0
  275. package/types/V2/Core/AccountsResource.d.ts +5104 -0
  276. package/types/V2/Core/EventTypes.d.ts +1623 -9
  277. package/types/V2/Core/Vault/GbBankAccounts.d.ts +160 -0
  278. package/types/V2/Core/Vault/GbBankAccountsResource.d.ts +194 -0
  279. package/types/V2/Core/Vault/UsBankAccounts.d.ts +116 -0
  280. package/types/V2/Core/Vault/UsBankAccountsResource.d.ts +198 -0
  281. package/types/V2/FinancialAddressCreditSimulations.d.ts +27 -0
  282. package/types/V2/FinancialAddressGeneratedMicrodeposits.d.ts +32 -0
  283. package/types/V2/MoneyManagement/Adjustments.d.ts +110 -0
  284. package/types/V2/MoneyManagement/AdjustmentsResource.d.ts +83 -0
  285. package/types/V2/MoneyManagement/FinancialAccounts.d.ts +148 -0
  286. package/types/V2/MoneyManagement/FinancialAccountsResource.d.ts +172 -0
  287. package/types/V2/MoneyManagement/FinancialAddresses.d.ts +178 -0
  288. package/types/V2/MoneyManagement/FinancialAddressesResource.d.ts +112 -0
  289. package/types/V2/MoneyManagement/InboundTransfers.d.ts +206 -0
  290. package/types/V2/MoneyManagement/InboundTransfersResource.d.ts +144 -0
  291. package/types/V2/MoneyManagement/OutboundPaymentQuotes.d.ts +170 -0
  292. package/types/V2/MoneyManagement/OutboundPaymentQuotesResource.d.ts +115 -0
  293. package/types/V2/MoneyManagement/OutboundPayments.d.ts +278 -0
  294. package/types/V2/MoneyManagement/OutboundPaymentsResource.d.ts +242 -0
  295. package/types/V2/MoneyManagement/OutboundSetupIntents.d.ts +97 -0
  296. package/types/V2/MoneyManagement/OutboundSetupIntentsResource.d.ts +296 -0
  297. package/types/V2/MoneyManagement/OutboundTransfers.d.ts +251 -0
  298. package/types/V2/MoneyManagement/OutboundTransfersResource.d.ts +208 -0
  299. package/types/V2/MoneyManagement/PayoutMethods.d.ts +160 -0
  300. package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpec.d.ts +93 -0
  301. package/types/V2/MoneyManagement/PayoutMethodsBankAccountSpecResource.d.ts +41 -0
  302. package/types/V2/MoneyManagement/PayoutMethodsResource.d.ts +113 -0
  303. package/types/V2/MoneyManagement/ReceivedCredits.d.ts +302 -0
  304. package/types/V2/MoneyManagement/ReceivedCreditsResource.d.ts +78 -0
  305. package/types/V2/MoneyManagement/ReceivedDebits.d.ts +176 -0
  306. package/types/V2/MoneyManagement/ReceivedDebitsResource.d.ts +48 -0
  307. package/types/V2/MoneyManagement/TransactionEntries.d.ts +162 -0
  308. package/types/V2/MoneyManagement/TransactionEntriesResource.d.ts +82 -0
  309. package/types/V2/MoneyManagement/Transactions.d.ts +177 -0
  310. package/types/V2/MoneyManagement/TransactionsResource.d.ts +83 -0
  311. package/types/V2/Payments/OffSessionPayments.d.ts +326 -0
  312. package/types/V2/Payments/OffSessionPaymentsResource.d.ts +401 -0
  313. package/types/V2/TestHelpers/FinancialAddressesResource.d.ts +68 -0
  314. package/types/WebhookEndpointsResource.d.ts +74 -0
  315. package/types/apiVersion.d.ts +1 -2
  316. package/types/index.d.ts +153 -0
  317. package/types/lib.d.ts +10 -0
package/cjs/resources.js CHANGED
@@ -1,18 +1,25 @@
1
1
  "use strict";
2
2
  // File generated from our OpenAPI spec
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.Subscriptions = exports.SubscriptionSchedules = exports.SubscriptionItems = exports.Sources = exports.ShippingRates = exports.SetupIntents = exports.SetupAttempts = exports.Reviews = exports.Refunds = exports.Quotes = exports.PromotionCodes = exports.Products = exports.Prices = exports.Plans = exports.Payouts = exports.PaymentRecords = exports.PaymentMethods = exports.PaymentMethodDomains = exports.PaymentMethodConfigurations = exports.PaymentLinks = exports.PaymentIntents = exports.PaymentAttemptRecords = exports.OAuth = exports.Mandates = exports.Invoices = exports.InvoiceRenderingTemplates = exports.InvoicePayments = exports.InvoiceItems = exports.Files = exports.FileLinks = exports.ExchangeRates = exports.Events = exports.EphemeralKeys = exports.Disputes = exports.Customers = exports.CustomerSessions = exports.CreditNotes = exports.Coupons = exports.CountrySpecs = exports.ConfirmationTokens = exports.Charges = exports.BalanceTransactions = exports.BalanceSettings = exports.Balance = exports.ApplicationFees = exports.ApplePayDomains = exports.Accounts = exports.AccountSessions = exports.AccountLinks = exports.Account = void 0;
5
- exports.V2 = exports.Treasury = exports.TestHelpers = exports.Terminal = exports.Tax = exports.Sigma = exports.Reporting = exports.Radar = exports.Issuing = exports.Identity = exports.Forwarding = exports.FinancialConnections = exports.Entitlements = exports.Climate = exports.Checkout = exports.BillingPortal = exports.Billing = exports.Apps = exports.WebhookEndpoints = exports.Transfers = exports.Topups = exports.Tokens = exports.TaxRates = exports.TaxIds = exports.TaxCodes = void 0;
4
+ exports.SetupIntents = exports.SetupAttempts = exports.Reviews = exports.Refunds = exports.Quotes = exports.PromotionCodes = exports.Products = exports.Prices = exports.Plans = exports.Payouts = exports.PaymentRecords = exports.PaymentMethods = exports.PaymentMethodDomains = exports.PaymentMethodConfigurations = exports.PaymentLinks = exports.PaymentIntents = exports.PaymentAttemptRecords = exports.Orders = exports.OAuth = exports.Margins = exports.Mandates = exports.Invoices = exports.InvoiceRenderingTemplates = exports.InvoicePayments = exports.InvoiceItems = exports.FxQuotes = exports.Files = exports.FileLinks = exports.ExternalAccounts = exports.ExchangeRates = exports.Events = exports.EphemeralKeys = exports.Disputes = exports.Customers = exports.CustomerSessions = exports.CreditNotes = exports.Coupons = exports.CountrySpecs = exports.ConfirmationTokens = exports.Charges = exports.BalanceTransactions = exports.BalanceSettings = exports.Balance = exports.ApplicationFees = exports.ApplePayDomains = exports.Accounts = exports.AccountSessions = exports.AccountNotices = exports.AccountLinks = exports.Account = void 0;
5
+ exports.V2 = exports.Treasury = exports.TestHelpers = exports.Terminal = exports.Tax = exports.Sigma = exports.Reporting = exports.Radar = exports.Privacy = exports.Issuing = exports.Identity = exports.Forwarding = exports.FinancialConnections = exports.Entitlements = exports.Climate = exports.Checkout = exports.Capital = exports.BillingPortal = exports.Billing = exports.Apps = exports.WebhookEndpoints = exports.Transfers = exports.Topups = exports.Tokens = exports.TaxRates = exports.TaxIds = exports.TaxCodes = exports.Subscriptions = exports.SubscriptionSchedules = exports.SubscriptionItems = exports.Sources = exports.ShippingRates = void 0;
6
6
  const ResourceNamespace_js_1 = require("./ResourceNamespace.js");
7
+ const AccountLinks_js_1 = require("./resources/V2/Core/AccountLinks.js");
7
8
  const Accounts_js_1 = require("./resources/FinancialConnections/Accounts.js");
9
+ const Accounts_js_2 = require("./resources/V2/Core/Accounts.js");
8
10
  const ActiveEntitlements_js_1 = require("./resources/Entitlements/ActiveEntitlements.js");
11
+ const Adjustments_js_1 = require("./resources/V2/MoneyManagement/Adjustments.js");
9
12
  const Alerts_js_1 = require("./resources/Billing/Alerts.js");
13
+ const Associations_js_1 = require("./resources/Tax/Associations.js");
10
14
  const Authorizations_js_1 = require("./resources/Issuing/Authorizations.js");
11
15
  const Authorizations_js_2 = require("./resources/TestHelpers/Issuing/Authorizations.js");
16
+ const BillSettings_js_1 = require("./resources/V2/Billing/BillSettings.js");
17
+ const Cadences_js_1 = require("./resources/V2/Billing/Cadences.js");
12
18
  const Calculations_js_1 = require("./resources/Tax/Calculations.js");
13
19
  const Cardholders_js_1 = require("./resources/Issuing/Cardholders.js");
14
20
  const Cards_js_1 = require("./resources/Issuing/Cards.js");
15
21
  const Cards_js_2 = require("./resources/TestHelpers/Issuing/Cards.js");
22
+ const CollectionSettings_js_1 = require("./resources/V2/Billing/CollectionSettings.js");
16
23
  const Configurations_js_1 = require("./resources/BillingPortal/Configurations.js");
17
24
  const Configurations_js_2 = require("./resources/Terminal/Configurations.js");
18
25
  const ConfirmationTokens_js_1 = require("./resources/TestHelpers/ConfirmationTokens.js");
@@ -21,16 +28,29 @@ const CreditBalanceSummary_js_1 = require("./resources/Billing/CreditBalanceSumm
21
28
  const CreditBalanceTransactions_js_1 = require("./resources/Billing/CreditBalanceTransactions.js");
22
29
  const CreditGrants_js_1 = require("./resources/Billing/CreditGrants.js");
23
30
  const CreditReversals_js_1 = require("./resources/Treasury/CreditReversals.js");
31
+ const CreditUnderwritingRecords_js_1 = require("./resources/Issuing/CreditUnderwritingRecords.js");
24
32
  const Customers_js_1 = require("./resources/TestHelpers/Customers.js");
25
33
  const DebitReversals_js_1 = require("./resources/Treasury/DebitReversals.js");
34
+ const DisputeSettlementDetails_js_1 = require("./resources/Issuing/DisputeSettlementDetails.js");
26
35
  const Disputes_js_1 = require("./resources/Issuing/Disputes.js");
27
36
  const EarlyFraudWarnings_js_1 = require("./resources/Radar/EarlyFraudWarnings.js");
28
37
  const EventDestinations_js_1 = require("./resources/V2/Core/EventDestinations.js");
29
38
  const Events_js_1 = require("./resources/V2/Core/Events.js");
30
39
  const Features_js_1 = require("./resources/Entitlements/Features.js");
31
40
  const FinancialAccounts_js_1 = require("./resources/Treasury/FinancialAccounts.js");
41
+ const FinancialAccounts_js_2 = require("./resources/V2/MoneyManagement/FinancialAccounts.js");
42
+ const FinancialAddresses_js_1 = require("./resources/V2/MoneyManagement/FinancialAddresses.js");
43
+ const FinancialAddresses_js_2 = require("./resources/V2/TestHelpers/FinancialAddresses.js");
44
+ const FinancingOffers_js_1 = require("./resources/Capital/FinancingOffers.js");
45
+ const FinancingSummary_js_1 = require("./resources/Capital/FinancingSummary.js");
46
+ const FinancingTransactions_js_1 = require("./resources/Capital/FinancingTransactions.js");
47
+ const Forms_js_1 = require("./resources/Tax/Forms.js");
48
+ const FraudLiabilityDebits_js_1 = require("./resources/Issuing/FraudLiabilityDebits.js");
49
+ const GbBankAccounts_js_1 = require("./resources/V2/Core/Vault/GbBankAccounts.js");
32
50
  const InboundTransfers_js_1 = require("./resources/TestHelpers/Treasury/InboundTransfers.js");
33
51
  const InboundTransfers_js_2 = require("./resources/Treasury/InboundTransfers.js");
52
+ const InboundTransfers_js_3 = require("./resources/V2/MoneyManagement/InboundTransfers.js");
53
+ const Institutions_js_1 = require("./resources/FinancialConnections/Institutions.js");
34
54
  const Locations_js_1 = require("./resources/Terminal/Locations.js");
35
55
  const MeterEventAdjustments_js_1 = require("./resources/Billing/MeterEventAdjustments.js");
36
56
  const MeterEventAdjustments_js_2 = require("./resources/V2/Billing/MeterEventAdjustments.js");
@@ -38,22 +58,36 @@ const MeterEventSession_js_1 = require("./resources/V2/Billing/MeterEventSession
38
58
  const MeterEventStream_js_1 = require("./resources/V2/Billing/MeterEventStream.js");
39
59
  const MeterEvents_js_1 = require("./resources/Billing/MeterEvents.js");
40
60
  const MeterEvents_js_2 = require("./resources/V2/Billing/MeterEvents.js");
61
+ const MeterUsage_js_1 = require("./resources/Billing/Analytics/MeterUsage.js");
41
62
  const Meters_js_1 = require("./resources/Billing/Meters.js");
63
+ const OffSessionPayments_js_1 = require("./resources/V2/Payments/OffSessionPayments.js");
64
+ const OnboardingLinks_js_1 = require("./resources/Terminal/OnboardingLinks.js");
42
65
  const Orders_js_1 = require("./resources/Climate/Orders.js");
66
+ const OutboundPaymentQuotes_js_1 = require("./resources/V2/MoneyManagement/OutboundPaymentQuotes.js");
43
67
  const OutboundPayments_js_1 = require("./resources/TestHelpers/Treasury/OutboundPayments.js");
44
68
  const OutboundPayments_js_2 = require("./resources/Treasury/OutboundPayments.js");
69
+ const OutboundPayments_js_3 = require("./resources/V2/MoneyManagement/OutboundPayments.js");
70
+ const OutboundSetupIntents_js_1 = require("./resources/V2/MoneyManagement/OutboundSetupIntents.js");
45
71
  const OutboundTransfers_js_1 = require("./resources/TestHelpers/Treasury/OutboundTransfers.js");
46
72
  const OutboundTransfers_js_2 = require("./resources/Treasury/OutboundTransfers.js");
73
+ const OutboundTransfers_js_3 = require("./resources/V2/MoneyManagement/OutboundTransfers.js");
74
+ const PayoutMethods_js_1 = require("./resources/V2/MoneyManagement/PayoutMethods.js");
75
+ const PayoutMethodsBankAccountSpec_js_1 = require("./resources/V2/MoneyManagement/PayoutMethodsBankAccountSpec.js");
47
76
  const PersonalizationDesigns_js_1 = require("./resources/Issuing/PersonalizationDesigns.js");
48
77
  const PersonalizationDesigns_js_2 = require("./resources/TestHelpers/Issuing/PersonalizationDesigns.js");
49
78
  const PhysicalBundles_js_1 = require("./resources/Issuing/PhysicalBundles.js");
50
79
  const Products_js_1 = require("./resources/Climate/Products.js");
80
+ const Profiles_js_1 = require("./resources/V2/Billing/Profiles.js");
81
+ const ReaderCollectedData_js_1 = require("./resources/Terminal/ReaderCollectedData.js");
51
82
  const Readers_js_1 = require("./resources/Terminal/Readers.js");
52
83
  const Readers_js_2 = require("./resources/TestHelpers/Terminal/Readers.js");
53
84
  const ReceivedCredits_js_1 = require("./resources/TestHelpers/Treasury/ReceivedCredits.js");
54
85
  const ReceivedCredits_js_2 = require("./resources/Treasury/ReceivedCredits.js");
86
+ const ReceivedCredits_js_3 = require("./resources/V2/MoneyManagement/ReceivedCredits.js");
55
87
  const ReceivedDebits_js_1 = require("./resources/TestHelpers/Treasury/ReceivedDebits.js");
56
88
  const ReceivedDebits_js_2 = require("./resources/Treasury/ReceivedDebits.js");
89
+ const ReceivedDebits_js_3 = require("./resources/V2/MoneyManagement/ReceivedDebits.js");
90
+ const RedactionJobs_js_1 = require("./resources/Privacy/RedactionJobs.js");
57
91
  const Refunds_js_1 = require("./resources/TestHelpers/Refunds.js");
58
92
  const Registrations_js_1 = require("./resources/Tax/Registrations.js");
59
93
  const ReportRuns_js_1 = require("./resources/Reporting/ReportRuns.js");
@@ -69,23 +103,28 @@ const Suppliers_js_1 = require("./resources/Climate/Suppliers.js");
69
103
  const TestClocks_js_1 = require("./resources/TestHelpers/TestClocks.js");
70
104
  const Tokens_js_1 = require("./resources/Issuing/Tokens.js");
71
105
  const TransactionEntries_js_1 = require("./resources/Treasury/TransactionEntries.js");
106
+ const TransactionEntries_js_2 = require("./resources/V2/MoneyManagement/TransactionEntries.js");
72
107
  const Transactions_js_1 = require("./resources/FinancialConnections/Transactions.js");
73
108
  const Transactions_js_2 = require("./resources/Issuing/Transactions.js");
74
109
  const Transactions_js_3 = require("./resources/Tax/Transactions.js");
75
110
  const Transactions_js_4 = require("./resources/TestHelpers/Issuing/Transactions.js");
76
111
  const Transactions_js_5 = require("./resources/Treasury/Transactions.js");
112
+ const Transactions_js_6 = require("./resources/V2/MoneyManagement/Transactions.js");
113
+ const UsBankAccounts_js_1 = require("./resources/V2/Core/Vault/UsBankAccounts.js");
77
114
  const ValueListItems_js_1 = require("./resources/Radar/ValueListItems.js");
78
115
  const ValueLists_js_1 = require("./resources/Radar/ValueLists.js");
79
116
  const VerificationReports_js_1 = require("./resources/Identity/VerificationReports.js");
80
117
  const VerificationSessions_js_1 = require("./resources/Identity/VerificationSessions.js");
81
- var Accounts_js_2 = require("./resources/Accounts.js");
82
- Object.defineProperty(exports, "Account", { enumerable: true, get: function () { return Accounts_js_2.Accounts; } });
83
- var AccountLinks_js_1 = require("./resources/AccountLinks.js");
84
- Object.defineProperty(exports, "AccountLinks", { enumerable: true, get: function () { return AccountLinks_js_1.AccountLinks; } });
118
+ var Accounts_js_3 = require("./resources/Accounts.js");
119
+ Object.defineProperty(exports, "Account", { enumerable: true, get: function () { return Accounts_js_3.Accounts; } });
120
+ var AccountLinks_js_2 = require("./resources/AccountLinks.js");
121
+ Object.defineProperty(exports, "AccountLinks", { enumerable: true, get: function () { return AccountLinks_js_2.AccountLinks; } });
122
+ var AccountNotices_js_1 = require("./resources/AccountNotices.js");
123
+ Object.defineProperty(exports, "AccountNotices", { enumerable: true, get: function () { return AccountNotices_js_1.AccountNotices; } });
85
124
  var AccountSessions_js_1 = require("./resources/AccountSessions.js");
86
125
  Object.defineProperty(exports, "AccountSessions", { enumerable: true, get: function () { return AccountSessions_js_1.AccountSessions; } });
87
- var Accounts_js_3 = require("./resources/Accounts.js");
88
- Object.defineProperty(exports, "Accounts", { enumerable: true, get: function () { return Accounts_js_3.Accounts; } });
126
+ var Accounts_js_4 = require("./resources/Accounts.js");
127
+ Object.defineProperty(exports, "Accounts", { enumerable: true, get: function () { return Accounts_js_4.Accounts; } });
89
128
  var ApplePayDomains_js_1 = require("./resources/ApplePayDomains.js");
90
129
  Object.defineProperty(exports, "ApplePayDomains", { enumerable: true, get: function () { return ApplePayDomains_js_1.ApplePayDomains; } });
91
130
  var ApplicationFees_js_1 = require("./resources/ApplicationFees.js");
@@ -118,10 +157,14 @@ var Events_js_2 = require("./resources/Events.js");
118
157
  Object.defineProperty(exports, "Events", { enumerable: true, get: function () { return Events_js_2.Events; } });
119
158
  var ExchangeRates_js_1 = require("./resources/ExchangeRates.js");
120
159
  Object.defineProperty(exports, "ExchangeRates", { enumerable: true, get: function () { return ExchangeRates_js_1.ExchangeRates; } });
160
+ var ExternalAccounts_js_1 = require("./resources/ExternalAccounts.js");
161
+ Object.defineProperty(exports, "ExternalAccounts", { enumerable: true, get: function () { return ExternalAccounts_js_1.ExternalAccounts; } });
121
162
  var FileLinks_js_1 = require("./resources/FileLinks.js");
122
163
  Object.defineProperty(exports, "FileLinks", { enumerable: true, get: function () { return FileLinks_js_1.FileLinks; } });
123
164
  var Files_js_1 = require("./resources/Files.js");
124
165
  Object.defineProperty(exports, "Files", { enumerable: true, get: function () { return Files_js_1.Files; } });
166
+ var FxQuotes_js_1 = require("./resources/FxQuotes.js");
167
+ Object.defineProperty(exports, "FxQuotes", { enumerable: true, get: function () { return FxQuotes_js_1.FxQuotes; } });
125
168
  var InvoiceItems_js_1 = require("./resources/InvoiceItems.js");
126
169
  Object.defineProperty(exports, "InvoiceItems", { enumerable: true, get: function () { return InvoiceItems_js_1.InvoiceItems; } });
127
170
  var InvoicePayments_js_1 = require("./resources/InvoicePayments.js");
@@ -132,8 +175,12 @@ var Invoices_js_1 = require("./resources/Invoices.js");
132
175
  Object.defineProperty(exports, "Invoices", { enumerable: true, get: function () { return Invoices_js_1.Invoices; } });
133
176
  var Mandates_js_1 = require("./resources/Mandates.js");
134
177
  Object.defineProperty(exports, "Mandates", { enumerable: true, get: function () { return Mandates_js_1.Mandates; } });
178
+ var Margins_js_1 = require("./resources/Margins.js");
179
+ Object.defineProperty(exports, "Margins", { enumerable: true, get: function () { return Margins_js_1.Margins; } });
135
180
  var OAuth_js_1 = require("./resources/OAuth.js");
136
181
  Object.defineProperty(exports, "OAuth", { enumerable: true, get: function () { return OAuth_js_1.OAuth; } });
182
+ var Orders_js_2 = require("./resources/Orders.js");
183
+ Object.defineProperty(exports, "Orders", { enumerable: true, get: function () { return Orders_js_2.Orders; } });
137
184
  var PaymentAttemptRecords_js_1 = require("./resources/PaymentAttemptRecords.js");
138
185
  Object.defineProperty(exports, "PaymentAttemptRecords", { enumerable: true, get: function () { return PaymentAttemptRecords_js_1.PaymentAttemptRecords; } });
139
186
  var PaymentIntents_js_1 = require("./resources/PaymentIntents.js");
@@ -201,11 +248,19 @@ exports.Billing = (0, ResourceNamespace_js_1.resourceNamespace)('billing', {
201
248
  MeterEventAdjustments: MeterEventAdjustments_js_1.MeterEventAdjustments,
202
249
  MeterEvents: MeterEvents_js_1.MeterEvents,
203
250
  Meters: Meters_js_1.Meters,
251
+ Analytics: (0, ResourceNamespace_js_1.resourceNamespace)('analytics', {
252
+ MeterUsage: MeterUsage_js_1.MeterUsage,
253
+ }),
204
254
  });
205
255
  exports.BillingPortal = (0, ResourceNamespace_js_1.resourceNamespace)('billingPortal', {
206
256
  Configurations: Configurations_js_1.Configurations,
207
257
  Sessions: Sessions_js_1.Sessions,
208
258
  });
259
+ exports.Capital = (0, ResourceNamespace_js_1.resourceNamespace)('capital', {
260
+ FinancingOffers: FinancingOffers_js_1.FinancingOffers,
261
+ FinancingSummary: FinancingSummary_js_1.FinancingSummary,
262
+ FinancingTransactions: FinancingTransactions_js_1.FinancingTransactions,
263
+ });
209
264
  exports.Checkout = (0, ResourceNamespace_js_1.resourceNamespace)('checkout', {
210
265
  Sessions: Sessions_js_2.Sessions,
211
266
  });
@@ -220,6 +275,7 @@ exports.Entitlements = (0, ResourceNamespace_js_1.resourceNamespace)('entitlemen
220
275
  });
221
276
  exports.FinancialConnections = (0, ResourceNamespace_js_1.resourceNamespace)('financialConnections', {
222
277
  Accounts: Accounts_js_1.Accounts,
278
+ Institutions: Institutions_js_1.Institutions,
223
279
  Sessions: Sessions_js_3.Sessions,
224
280
  Transactions: Transactions_js_1.Transactions,
225
281
  });
@@ -234,12 +290,18 @@ exports.Issuing = (0, ResourceNamespace_js_1.resourceNamespace)('issuing', {
234
290
  Authorizations: Authorizations_js_1.Authorizations,
235
291
  Cardholders: Cardholders_js_1.Cardholders,
236
292
  Cards: Cards_js_1.Cards,
293
+ CreditUnderwritingRecords: CreditUnderwritingRecords_js_1.CreditUnderwritingRecords,
294
+ DisputeSettlementDetails: DisputeSettlementDetails_js_1.DisputeSettlementDetails,
237
295
  Disputes: Disputes_js_1.Disputes,
296
+ FraudLiabilityDebits: FraudLiabilityDebits_js_1.FraudLiabilityDebits,
238
297
  PersonalizationDesigns: PersonalizationDesigns_js_1.PersonalizationDesigns,
239
298
  PhysicalBundles: PhysicalBundles_js_1.PhysicalBundles,
240
299
  Tokens: Tokens_js_1.Tokens,
241
300
  Transactions: Transactions_js_2.Transactions,
242
301
  });
302
+ exports.Privacy = (0, ResourceNamespace_js_1.resourceNamespace)('privacy', {
303
+ RedactionJobs: RedactionJobs_js_1.RedactionJobs,
304
+ });
243
305
  exports.Radar = (0, ResourceNamespace_js_1.resourceNamespace)('radar', {
244
306
  EarlyFraudWarnings: EarlyFraudWarnings_js_1.EarlyFraudWarnings,
245
307
  ValueListItems: ValueListItems_js_1.ValueListItems,
@@ -253,7 +315,9 @@ exports.Sigma = (0, ResourceNamespace_js_1.resourceNamespace)('sigma', {
253
315
  ScheduledQueryRuns: ScheduledQueryRuns_js_1.ScheduledQueryRuns,
254
316
  });
255
317
  exports.Tax = (0, ResourceNamespace_js_1.resourceNamespace)('tax', {
318
+ Associations: Associations_js_1.Associations,
256
319
  Calculations: Calculations_js_1.Calculations,
320
+ Forms: Forms_js_1.Forms,
257
321
  Registrations: Registrations_js_1.Registrations,
258
322
  Settings: Settings_js_1.Settings,
259
323
  Transactions: Transactions_js_3.Transactions,
@@ -262,6 +326,8 @@ exports.Terminal = (0, ResourceNamespace_js_1.resourceNamespace)('terminal', {
262
326
  Configurations: Configurations_js_2.Configurations,
263
327
  ConnectionTokens: ConnectionTokens_js_1.ConnectionTokens,
264
328
  Locations: Locations_js_1.Locations,
329
+ OnboardingLinks: OnboardingLinks_js_1.OnboardingLinks,
330
+ ReaderCollectedData: ReaderCollectedData_js_1.ReaderCollectedData,
265
331
  Readers: Readers_js_1.Readers,
266
332
  });
267
333
  exports.TestHelpers = (0, ResourceNamespace_js_1.resourceNamespace)('testHelpers', {
@@ -300,13 +366,45 @@ exports.Treasury = (0, ResourceNamespace_js_1.resourceNamespace)('treasury', {
300
366
  });
301
367
  exports.V2 = (0, ResourceNamespace_js_1.resourceNamespace)('v2', {
302
368
  Billing: (0, ResourceNamespace_js_1.resourceNamespace)('billing', {
369
+ BillSettings: BillSettings_js_1.BillSettings,
370
+ Cadences: Cadences_js_1.Cadences,
371
+ CollectionSettings: CollectionSettings_js_1.CollectionSettings,
303
372
  MeterEventAdjustments: MeterEventAdjustments_js_2.MeterEventAdjustments,
304
373
  MeterEventSession: MeterEventSession_js_1.MeterEventSession,
305
374
  MeterEventStream: MeterEventStream_js_1.MeterEventStream,
306
375
  MeterEvents: MeterEvents_js_2.MeterEvents,
376
+ Profiles: Profiles_js_1.Profiles,
307
377
  }),
308
378
  Core: (0, ResourceNamespace_js_1.resourceNamespace)('core', {
379
+ AccountLinks: AccountLinks_js_1.AccountLinks,
380
+ Accounts: Accounts_js_2.Accounts,
309
381
  EventDestinations: EventDestinations_js_1.EventDestinations,
310
382
  Events: Events_js_1.Events,
383
+ Vault: (0, ResourceNamespace_js_1.resourceNamespace)('vault', {
384
+ GbBankAccounts: GbBankAccounts_js_1.GbBankAccounts,
385
+ UsBankAccounts: UsBankAccounts_js_1.UsBankAccounts,
386
+ }),
387
+ }),
388
+ MoneyManagement: (0, ResourceNamespace_js_1.resourceNamespace)('moneyManagement', {
389
+ Adjustments: Adjustments_js_1.Adjustments,
390
+ FinancialAccounts: FinancialAccounts_js_2.FinancialAccounts,
391
+ FinancialAddresses: FinancialAddresses_js_1.FinancialAddresses,
392
+ InboundTransfers: InboundTransfers_js_3.InboundTransfers,
393
+ OutboundPaymentQuotes: OutboundPaymentQuotes_js_1.OutboundPaymentQuotes,
394
+ OutboundPayments: OutboundPayments_js_3.OutboundPayments,
395
+ OutboundSetupIntents: OutboundSetupIntents_js_1.OutboundSetupIntents,
396
+ OutboundTransfers: OutboundTransfers_js_3.OutboundTransfers,
397
+ PayoutMethods: PayoutMethods_js_1.PayoutMethods,
398
+ PayoutMethodsBankAccountSpec: PayoutMethodsBankAccountSpec_js_1.PayoutMethodsBankAccountSpec,
399
+ ReceivedCredits: ReceivedCredits_js_3.ReceivedCredits,
400
+ ReceivedDebits: ReceivedDebits_js_3.ReceivedDebits,
401
+ TransactionEntries: TransactionEntries_js_2.TransactionEntries,
402
+ Transactions: Transactions_js_6.Transactions,
403
+ }),
404
+ Payment: (0, ResourceNamespace_js_1.resourceNamespace)('payment', {
405
+ OffSessionPayments: OffSessionPayments_js_1.OffSessionPayments,
406
+ }),
407
+ TestHelper: (0, ResourceNamespace_js_1.resourceNamespace)('testHelper', {
408
+ FinancialAddresses: FinancialAddresses_js_2.FinancialAddresses,
311
409
  }),
312
410
  });
@@ -37,7 +37,7 @@ const ALLOWED_CONFIG_PROPERTIES = [
37
37
  ];
38
38
  const defaultRequestSenderFactory = (stripe) => new RequestSender_js_1.RequestSender(stripe, StripeResource_js_1.StripeResource.MAX_BUFFERED_REQUEST_METRICS);
39
39
  function createStripe(platformFunctions, requestSender = defaultRequestSenderFactory) {
40
- Stripe.PACKAGE_VERSION = '19.2.0';
40
+ Stripe.PACKAGE_VERSION = '19.3.0-beta.1';
41
41
  Stripe.API_VERSION = apiVersion_js_1.ApiVersion;
42
42
  Stripe.USER_AGENT = Object.assign({ bindings_version: Stripe.PACKAGE_VERSION, lang: 'node', publisher: 'stripe', uname: null, typescript: false }, (0, utils_js_1.determineProcessUserAgentProperties)());
43
43
  Stripe.StripeResource = StripeResource_js_1.StripeResource;
package/esm/Error.js CHANGED
@@ -24,6 +24,34 @@ export const generateV1Error = (rawStripeError) => {
24
24
  export const generateV2Error = (rawStripeError) => {
25
25
  switch (rawStripeError.type) {
26
26
  // switchCases: The beginning of the section generated from our OpenAPI spec
27
+ case 'already_canceled':
28
+ return new AlreadyCanceledError(rawStripeError);
29
+ case 'already_exists':
30
+ return new AlreadyExistsError(rawStripeError);
31
+ case 'blocked_by_stripe':
32
+ return new BlockedByStripeError(rawStripeError);
33
+ case 'controlled_by_dashboard':
34
+ return new ControlledByDashboardError(rawStripeError);
35
+ case 'feature_not_enabled':
36
+ return new FeatureNotEnabledError(rawStripeError);
37
+ case 'financial_account_not_open':
38
+ return new FinancialAccountNotOpenError(rawStripeError);
39
+ case 'insufficient_funds':
40
+ return new InsufficientFundsError(rawStripeError);
41
+ case 'invalid_payment_method':
42
+ return new InvalidPaymentMethodError(rawStripeError);
43
+ case 'invalid_payout_method':
44
+ return new InvalidPayoutMethodError(rawStripeError);
45
+ case 'non_zero_balance':
46
+ return new NonZeroBalanceError(rawStripeError);
47
+ case 'not_cancelable':
48
+ return new NotCancelableError(rawStripeError);
49
+ case 'quota_exceeded':
50
+ return new QuotaExceededError(rawStripeError);
51
+ case 'rate_limit':
52
+ return new RateLimitError(rawStripeError);
53
+ case 'recipient_not_notifiable':
54
+ return new RecipientNotNotifiableError(rawStripeError);
27
55
  case 'temporary_session_expired':
28
56
  return new TemporarySessionExpiredError(rawStripeError);
29
57
  // switchCases: The end of the section generated from our OpenAPI spec
@@ -177,6 +205,78 @@ export class StripeUnknownError extends StripeError {
177
205
  }
178
206
  }
179
207
  // classDefinitions: The beginning of the section generated from our OpenAPI spec
208
+ export class AlreadyCanceledError extends StripeError {
209
+ constructor(rawStripeError = {}) {
210
+ super(rawStripeError, 'AlreadyCanceledError');
211
+ }
212
+ }
213
+ export class AlreadyExistsError extends StripeError {
214
+ constructor(rawStripeError = {}) {
215
+ super(rawStripeError, 'AlreadyExistsError');
216
+ }
217
+ }
218
+ export class BlockedByStripeError extends StripeError {
219
+ constructor(rawStripeError = {}) {
220
+ super(rawStripeError, 'BlockedByStripeError');
221
+ }
222
+ }
223
+ export class ControlledByDashboardError extends StripeError {
224
+ constructor(rawStripeError = {}) {
225
+ super(rawStripeError, 'ControlledByDashboardError');
226
+ }
227
+ }
228
+ export class FeatureNotEnabledError extends StripeError {
229
+ constructor(rawStripeError = {}) {
230
+ super(rawStripeError, 'FeatureNotEnabledError');
231
+ }
232
+ }
233
+ export class FinancialAccountNotOpenError extends StripeError {
234
+ constructor(rawStripeError = {}) {
235
+ super(rawStripeError, 'FinancialAccountNotOpenError');
236
+ }
237
+ }
238
+ export class InsufficientFundsError extends StripeError {
239
+ constructor(rawStripeError = {}) {
240
+ super(rawStripeError, 'InsufficientFundsError');
241
+ }
242
+ }
243
+ export class InvalidPaymentMethodError extends StripeError {
244
+ constructor(rawStripeError) {
245
+ super(rawStripeError, 'InvalidPaymentMethodError');
246
+ // @ts-ignore
247
+ this.invalid_param = this.raw.invalid_param;
248
+ }
249
+ }
250
+ export class InvalidPayoutMethodError extends StripeError {
251
+ constructor(rawStripeError = {}) {
252
+ super(rawStripeError, 'InvalidPayoutMethodError');
253
+ }
254
+ }
255
+ export class NonZeroBalanceError extends StripeError {
256
+ constructor(rawStripeError = {}) {
257
+ super(rawStripeError, 'NonZeroBalanceError');
258
+ }
259
+ }
260
+ export class NotCancelableError extends StripeError {
261
+ constructor(rawStripeError = {}) {
262
+ super(rawStripeError, 'NotCancelableError');
263
+ }
264
+ }
265
+ export class QuotaExceededError extends StripeError {
266
+ constructor(rawStripeError = {}) {
267
+ super(rawStripeError, 'QuotaExceededError');
268
+ }
269
+ }
270
+ export class RateLimitError extends StripeError {
271
+ constructor(rawStripeError = {}) {
272
+ super(rawStripeError, 'RateLimitError');
273
+ }
274
+ }
275
+ export class RecipientNotNotifiableError extends StripeError {
276
+ constructor(rawStripeError = {}) {
277
+ super(rawStripeError, 'RecipientNotNotifiableError');
278
+ }
279
+ }
180
280
  export class TemporarySessionExpiredError extends StripeError {
181
281
  constructor(rawStripeError = {}) {
182
282
  super(rawStripeError, 'TemporarySessionExpiredError');
package/esm/apiVersion.js CHANGED
@@ -1,3 +1,2 @@
1
1
  // File generated from our OpenAPI spec
2
- export const ApiVersion = '2025-10-29.clover';
3
- export const ApiMajorVersion = 'clover';
2
+ export const ApiVersion = '2025-10-29.preview';
@@ -0,0 +1,18 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const AccountNotices = StripeResource.extend({
5
+ retrieve: stripeMethod({
6
+ method: 'GET',
7
+ fullPath: '/v1/account_notices/{account_notice}',
8
+ }),
9
+ update: stripeMethod({
10
+ method: 'POST',
11
+ fullPath: '/v1/account_notices/{account_notice}',
12
+ }),
13
+ list: stripeMethod({
14
+ method: 'GET',
15
+ fullPath: '/v1/account_notices',
16
+ methodType: 'list',
17
+ }),
18
+ });
@@ -0,0 +1,9 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../../../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const MeterUsage = StripeResource.extend({
5
+ retrieve: stripeMethod({
6
+ method: 'GET',
7
+ fullPath: '/v1/billing/analytics/meter_usage',
8
+ }),
9
+ });
@@ -0,0 +1,18 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const FinancingOffers = StripeResource.extend({
5
+ retrieve: stripeMethod({
6
+ method: 'GET',
7
+ fullPath: '/v1/capital/financing_offers/{financing_offer}',
8
+ }),
9
+ list: stripeMethod({
10
+ method: 'GET',
11
+ fullPath: '/v1/capital/financing_offers',
12
+ methodType: 'list',
13
+ }),
14
+ markDelivered: stripeMethod({
15
+ method: 'POST',
16
+ fullPath: '/v1/capital/financing_offers/{financing_offer}/mark_delivered',
17
+ }),
18
+ });
@@ -0,0 +1,9 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const FinancingSummary = StripeResource.extend({
5
+ retrieve: stripeMethod({
6
+ method: 'GET',
7
+ fullPath: '/v1/capital/financing_summary',
8
+ }),
9
+ });
@@ -0,0 +1,14 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const FinancingTransactions = StripeResource.extend({
5
+ retrieve: stripeMethod({
6
+ method: 'GET',
7
+ fullPath: '/v1/capital/financing_transactions/{financing_transaction}',
8
+ }),
9
+ list: stripeMethod({
10
+ method: 'GET',
11
+ fullPath: '/v1/capital/financing_transactions',
12
+ methodType: 'list',
13
+ }),
14
+ });
@@ -0,0 +1,20 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const ExternalAccounts = StripeResource.extend({
5
+ create: stripeMethod({ method: 'POST', fullPath: '/v1/external_accounts' }),
6
+ retrieve: stripeMethod({
7
+ method: 'GET',
8
+ fullPath: '/v1/external_accounts/{id}',
9
+ }),
10
+ update: stripeMethod({
11
+ method: 'POST',
12
+ fullPath: '/v1/external_accounts/{id}',
13
+ }),
14
+ list: stripeMethod({
15
+ method: 'GET',
16
+ fullPath: '/v1/external_accounts',
17
+ methodType: 'list',
18
+ }),
19
+ del: stripeMethod({ method: 'DELETE', fullPath: '/v1/external_accounts/{id}' }),
20
+ });
@@ -15,6 +15,11 @@ export const Accounts = StripeResource.extend({
15
15
  method: 'POST',
16
16
  fullPath: '/v1/financial_connections/accounts/{account}/disconnect',
17
17
  }),
18
+ listInferredBalances: stripeMethod({
19
+ method: 'GET',
20
+ fullPath: '/v1/financial_connections/accounts/{account}/inferred_balances',
21
+ methodType: 'list',
22
+ }),
18
23
  listOwners: stripeMethod({
19
24
  method: 'GET',
20
25
  fullPath: '/v1/financial_connections/accounts/{account}/owners',
@@ -0,0 +1,14 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const Institutions = StripeResource.extend({
5
+ retrieve: stripeMethod({
6
+ method: 'GET',
7
+ fullPath: '/v1/financial_connections/institutions/{institution}',
8
+ }),
9
+ list: stripeMethod({
10
+ method: 'GET',
11
+ fullPath: '/v1/financial_connections/institutions',
12
+ methodType: 'list',
13
+ }),
14
+ });
@@ -0,0 +1,12 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const FxQuotes = StripeResource.extend({
5
+ create: stripeMethod({ method: 'POST', fullPath: '/v1/fx_quotes' }),
6
+ retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/fx_quotes/{id}' }),
7
+ list: stripeMethod({
8
+ method: 'GET',
9
+ fullPath: '/v1/fx_quotes',
10
+ methodType: 'list',
11
+ }),
12
+ });
@@ -0,0 +1,30 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const CreditUnderwritingRecords = StripeResource.extend({
5
+ retrieve: stripeMethod({
6
+ method: 'GET',
7
+ fullPath: '/v1/issuing/credit_underwriting_records/{credit_underwriting_record}',
8
+ }),
9
+ list: stripeMethod({
10
+ method: 'GET',
11
+ fullPath: '/v1/issuing/credit_underwriting_records',
12
+ methodType: 'list',
13
+ }),
14
+ correct: stripeMethod({
15
+ method: 'POST',
16
+ fullPath: '/v1/issuing/credit_underwriting_records/{credit_underwriting_record}/correct',
17
+ }),
18
+ createFromApplication: stripeMethod({
19
+ method: 'POST',
20
+ fullPath: '/v1/issuing/credit_underwriting_records/create_from_application',
21
+ }),
22
+ createFromProactiveReview: stripeMethod({
23
+ method: 'POST',
24
+ fullPath: '/v1/issuing/credit_underwriting_records/create_from_proactive_review',
25
+ }),
26
+ reportDecision: stripeMethod({
27
+ method: 'POST',
28
+ fullPath: '/v1/issuing/credit_underwriting_records/{credit_underwriting_record}/report_decision',
29
+ }),
30
+ });
@@ -0,0 +1,14 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const DisputeSettlementDetails = StripeResource.extend({
5
+ retrieve: stripeMethod({
6
+ method: 'GET',
7
+ fullPath: '/v1/issuing/dispute_settlement_details/{dispute_settlement_detail}',
8
+ }),
9
+ list: stripeMethod({
10
+ method: 'GET',
11
+ fullPath: '/v1/issuing/dispute_settlement_details',
12
+ methodType: 'list',
13
+ }),
14
+ });
@@ -0,0 +1,14 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const FraudLiabilityDebits = StripeResource.extend({
5
+ retrieve: stripeMethod({
6
+ method: 'GET',
7
+ fullPath: '/v1/issuing/fraud_liability_debits/{fraud_liability_debit}',
8
+ }),
9
+ list: stripeMethod({
10
+ method: 'GET',
11
+ fullPath: '/v1/issuing/fraud_liability_debits',
12
+ methodType: 'list',
13
+ }),
14
+ });
@@ -3,4 +3,9 @@ import { StripeResource } from '../StripeResource.js';
3
3
  const stripeMethod = StripeResource.method;
4
4
  export const Mandates = StripeResource.extend({
5
5
  retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/mandates/{mandate}' }),
6
+ list: stripeMethod({
7
+ method: 'GET',
8
+ fullPath: '/v1/mandates',
9
+ methodType: 'list',
10
+ }),
6
11
  });
@@ -0,0 +1,19 @@
1
+ // File generated from our OpenAPI spec
2
+ import { StripeResource } from '../StripeResource.js';
3
+ const stripeMethod = StripeResource.method;
4
+ export const Margins = StripeResource.extend({
5
+ create: stripeMethod({ method: 'POST', fullPath: '/v1/billing/margins' }),
6
+ retrieve: stripeMethod({
7
+ method: 'GET',
8
+ fullPath: '/v1/billing/margins/{margin}',
9
+ }),
10
+ update: stripeMethod({
11
+ method: 'POST',
12
+ fullPath: '/v1/billing/margins/{margin}',
13
+ }),
14
+ list: stripeMethod({
15
+ method: 'GET',
16
+ fullPath: '/v1/billing/margins',
17
+ methodType: 'list',
18
+ }),
19
+ });