modern_treasury 0.1.0.pre.alpha.16 → 0.1.0.pre.alpha.18

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 (880) hide show
  1. checksums.yaml +4 -4
  2. data/.ignore +2 -0
  3. data/CHANGELOG.md +635 -0
  4. data/README.md +94 -24
  5. data/SECURITY.md +27 -0
  6. data/lib/modern_treasury/client.rb +12 -9
  7. data/lib/modern_treasury/errors.rb +168 -159
  8. data/lib/modern_treasury/internal/page.rb +90 -0
  9. data/lib/modern_treasury/internal/transport/base_client.rb +490 -0
  10. data/lib/modern_treasury/internal/transport/pooled_net_requester.rb +197 -0
  11. data/lib/modern_treasury/internal/type/array_of.rb +143 -0
  12. data/lib/modern_treasury/internal/type/base_model.rb +411 -0
  13. data/lib/modern_treasury/internal/type/base_page.rb +47 -0
  14. data/lib/modern_treasury/internal/type/boolean.rb +60 -0
  15. data/lib/modern_treasury/internal/type/converter.rb +271 -0
  16. data/lib/modern_treasury/internal/type/enum.rb +125 -0
  17. data/lib/modern_treasury/internal/type/hash_of.rb +163 -0
  18. data/lib/modern_treasury/internal/type/io_like.rb +77 -0
  19. data/lib/modern_treasury/internal/type/request_parameters.rb +49 -0
  20. data/lib/modern_treasury/internal/type/union.rb +222 -0
  21. data/lib/modern_treasury/internal/type/unknown.rb +64 -0
  22. data/lib/modern_treasury/internal/util.rb +782 -0
  23. data/lib/modern_treasury/internal.rb +12 -0
  24. data/lib/modern_treasury/models/account_collection_flow.rb +17 -14
  25. data/lib/modern_treasury/models/account_collection_flow_create_params.rb +8 -7
  26. data/lib/modern_treasury/models/account_collection_flow_list_params.rb +5 -4
  27. data/lib/modern_treasury/models/account_collection_flow_retrieve_params.rb +5 -4
  28. data/lib/modern_treasury/models/account_collection_flow_update_params.rb +8 -7
  29. data/lib/modern_treasury/models/account_detail.rb +10 -7
  30. data/lib/modern_treasury/models/account_detail_create_params.rb +9 -8
  31. data/lib/modern_treasury/models/account_detail_delete_params.rb +6 -5
  32. data/lib/modern_treasury/models/account_detail_list_params.rb +5 -4
  33. data/lib/modern_treasury/models/account_detail_retrieve_params.rb +5 -4
  34. data/lib/modern_treasury/models/accounts_type.rb +1 -1
  35. data/lib/modern_treasury/models/async_response.rb +2 -2
  36. data/lib/modern_treasury/models/bank_settings.rb +11 -11
  37. data/lib/modern_treasury/models/bulk_request.rb +21 -12
  38. data/lib/modern_treasury/models/bulk_request_create_params.rb +601 -518
  39. data/lib/modern_treasury/models/bulk_request_list_params.rb +14 -11
  40. data/lib/modern_treasury/models/bulk_request_retrieve_params.rb +5 -4
  41. data/lib/modern_treasury/models/bulk_result.rb +41 -30
  42. data/lib/modern_treasury/models/bulk_result_list_params.rb +16 -13
  43. data/lib/modern_treasury/models/bulk_result_retrieve_params.rb +5 -4
  44. data/lib/modern_treasury/models/client_ping_params.rb +5 -4
  45. data/lib/modern_treasury/models/connection.rb +5 -4
  46. data/lib/modern_treasury/models/connection_legal_entity.rb +8 -5
  47. data/lib/modern_treasury/models/connection_legal_entity_create_params.rb +116 -58
  48. data/lib/modern_treasury/models/connection_legal_entity_list_params.rb +6 -5
  49. data/lib/modern_treasury/models/connection_legal_entity_retrieve_params.rb +5 -4
  50. data/lib/modern_treasury/models/connection_legal_entity_update_params.rb +6 -5
  51. data/lib/modern_treasury/models/connection_list_params.rb +5 -4
  52. data/lib/modern_treasury/models/counterparty.rb +45 -33
  53. data/lib/modern_treasury/models/counterparty_collect_account_params.rb +20 -19
  54. data/lib/modern_treasury/models/counterparty_collect_account_response.rb +8 -7
  55. data/lib/modern_treasury/models/counterparty_create_params.rb +184 -114
  56. data/lib/modern_treasury/models/counterparty_delete_params.rb +5 -4
  57. data/lib/modern_treasury/models/counterparty_list_params.rb +10 -9
  58. data/lib/modern_treasury/models/counterparty_retrieve_params.rb +5 -4
  59. data/lib/modern_treasury/models/counterparty_update_params.rb +9 -8
  60. data/lib/modern_treasury/models/currency.rb +1 -1
  61. data/lib/modern_treasury/models/document.rb +20 -16
  62. data/lib/modern_treasury/models/document_create_params.rb +9 -8
  63. data/lib/modern_treasury/models/document_list_params.rb +10 -9
  64. data/lib/modern_treasury/models/document_retrieve_params.rb +5 -4
  65. data/lib/modern_treasury/models/event.rb +6 -5
  66. data/lib/modern_treasury/models/event_list_params.rb +5 -4
  67. data/lib/modern_treasury/models/event_retrieve_params.rb +5 -4
  68. data/lib/modern_treasury/models/expected_payment.rb +33 -26
  69. data/lib/modern_treasury/models/expected_payment_create_params.rb +82 -75
  70. data/lib/modern_treasury/models/expected_payment_delete_params.rb +5 -4
  71. data/lib/modern_treasury/models/expected_payment_list_params.rb +12 -11
  72. data/lib/modern_treasury/models/expected_payment_retrieve_params.rb +5 -4
  73. data/lib/modern_treasury/models/expected_payment_type.rb +2 -2
  74. data/lib/modern_treasury/models/expected_payment_update_params.rb +24 -23
  75. data/lib/modern_treasury/models/external_account.rb +32 -23
  76. data/lib/modern_treasury/models/external_account_complete_verification_params.rb +6 -5
  77. data/lib/modern_treasury/models/external_account_create_params.rb +51 -44
  78. data/lib/modern_treasury/models/external_account_delete_params.rb +5 -4
  79. data/lib/modern_treasury/models/external_account_list_params.rb +8 -7
  80. data/lib/modern_treasury/models/external_account_retrieve_params.rb +5 -4
  81. data/lib/modern_treasury/models/external_account_type.rb +1 -1
  82. data/lib/modern_treasury/models/external_account_update_params.rb +11 -10
  83. data/lib/modern_treasury/models/external_account_verify_params.rb +15 -14
  84. data/lib/modern_treasury/models/external_account_verify_response.rb +19 -12
  85. data/lib/modern_treasury/models/foreign_exchange_quote.rb +16 -14
  86. data/lib/modern_treasury/models/foreign_exchange_quote_create_params.rb +7 -6
  87. data/lib/modern_treasury/models/foreign_exchange_quote_list_params.rb +8 -7
  88. data/lib/modern_treasury/models/foreign_exchange_quote_retrieve_params.rb +5 -4
  89. data/lib/modern_treasury/models/incoming_payment_detail.rb +34 -21
  90. data/lib/modern_treasury/models/incoming_payment_detail_create_async_params.rb +22 -8
  91. data/lib/modern_treasury/models/incoming_payment_detail_list_params.rb +21 -16
  92. data/lib/modern_treasury/models/incoming_payment_detail_retrieve_params.rb +5 -4
  93. data/lib/modern_treasury/models/incoming_payment_detail_update_params.rb +7 -6
  94. data/lib/modern_treasury/models/internal_account.rb +23 -15
  95. data/lib/modern_treasury/models/internal_account_create_params.rb +12 -11
  96. data/lib/modern_treasury/models/internal_account_list_params.rb +9 -8
  97. data/lib/modern_treasury/models/internal_account_retrieve_params.rb +5 -4
  98. data/lib/modern_treasury/models/internal_account_update_params.rb +7 -6
  99. data/lib/modern_treasury/models/internal_accounts/balance_report.rb +27 -22
  100. data/lib/modern_treasury/models/internal_accounts/balance_report_create_params.rb +23 -20
  101. data/lib/modern_treasury/models/internal_accounts/balance_report_delete_params.rb +5 -4
  102. data/lib/modern_treasury/models/internal_accounts/balance_report_list_params.rb +8 -7
  103. data/lib/modern_treasury/models/internal_accounts/balance_report_retrieve_params.rb +5 -4
  104. data/lib/modern_treasury/models/invoice.rb +56 -42
  105. data/lib/modern_treasury/models/invoice_add_payment_order_params.rb +5 -4
  106. data/lib/modern_treasury/models/invoice_create_params.rb +64 -62
  107. data/lib/modern_treasury/models/invoice_list_params.rb +9 -8
  108. data/lib/modern_treasury/models/invoice_retrieve_params.rb +5 -4
  109. data/lib/modern_treasury/models/invoice_update_params.rb +63 -61
  110. data/lib/modern_treasury/models/invoices/invoice_line_item.rb +14 -13
  111. data/lib/modern_treasury/models/invoices/line_item_create_params.rb +13 -12
  112. data/lib/modern_treasury/models/invoices/line_item_delete_params.rb +5 -4
  113. data/lib/modern_treasury/models/invoices/line_item_list_params.rb +5 -4
  114. data/lib/modern_treasury/models/invoices/line_item_retrieve_params.rb +5 -4
  115. data/lib/modern_treasury/models/invoices/line_item_update_params.rb +13 -12
  116. data/lib/modern_treasury/models/ledger.rb +7 -6
  117. data/lib/modern_treasury/models/ledger_account.rb +43 -36
  118. data/lib/modern_treasury/models/ledger_account_balance_monitor.rb +40 -33
  119. data/lib/modern_treasury/models/ledger_account_balance_monitor_create_params.rb +14 -13
  120. data/lib/modern_treasury/models/ledger_account_balance_monitor_delete_params.rb +5 -4
  121. data/lib/modern_treasury/models/ledger_account_balance_monitor_list_params.rb +10 -9
  122. data/lib/modern_treasury/models/ledger_account_balance_monitor_retrieve_params.rb +5 -4
  123. data/lib/modern_treasury/models/ledger_account_balance_monitor_update_params.rb +7 -6
  124. data/lib/modern_treasury/models/ledger_account_category.rb +33 -28
  125. data/lib/modern_treasury/models/ledger_account_category_add_ledger_account_params.rb +5 -4
  126. data/lib/modern_treasury/models/ledger_account_category_add_nested_category_params.rb +5 -4
  127. data/lib/modern_treasury/models/ledger_account_category_create_params.rb +9 -8
  128. data/lib/modern_treasury/models/ledger_account_category_delete_params.rb +5 -4
  129. data/lib/modern_treasury/models/ledger_account_category_list_params.rb +17 -16
  130. data/lib/modern_treasury/models/ledger_account_category_remove_ledger_account_params.rb +5 -4
  131. data/lib/modern_treasury/models/ledger_account_category_remove_nested_category_params.rb +5 -4
  132. data/lib/modern_treasury/models/ledger_account_category_retrieve_params.rb +11 -10
  133. data/lib/modern_treasury/models/ledger_account_category_update_params.rb +7 -6
  134. data/lib/modern_treasury/models/ledger_account_create_params.rb +15 -14
  135. data/lib/modern_treasury/models/ledger_account_delete_params.rb +5 -4
  136. data/lib/modern_treasury/models/ledger_account_list_params.rb +40 -39
  137. data/lib/modern_treasury/models/ledger_account_retrieve_params.rb +17 -16
  138. data/lib/modern_treasury/models/ledger_account_settlement.rb +16 -13
  139. data/lib/modern_treasury/models/ledger_account_settlement_create_params.rb +19 -18
  140. data/lib/modern_treasury/models/ledger_account_settlement_list_params.rb +16 -15
  141. data/lib/modern_treasury/models/ledger_account_settlement_retrieve_params.rb +5 -4
  142. data/lib/modern_treasury/models/ledger_account_settlement_update_params.rb +10 -9
  143. data/lib/modern_treasury/models/ledger_account_settlements/account_entry_delete_params.rb +9 -8
  144. data/lib/modern_treasury/models/ledger_account_settlements/account_entry_update_params.rb +7 -6
  145. data/lib/modern_treasury/models/ledger_account_statement_create_params.rb +10 -9
  146. data/lib/modern_treasury/models/ledger_account_statement_create_response.rb +62 -53
  147. data/lib/modern_treasury/models/ledger_account_statement_retrieve_params.rb +5 -4
  148. data/lib/modern_treasury/models/ledger_account_statement_retrieve_response.rb +62 -53
  149. data/lib/modern_treasury/models/ledger_account_update_params.rb +7 -6
  150. data/lib/modern_treasury/models/ledger_create_params.rb +7 -6
  151. data/lib/modern_treasury/models/ledger_delete_params.rb +5 -4
  152. data/lib/modern_treasury/models/ledger_entry.rb +49 -42
  153. data/lib/modern_treasury/models/ledger_entry_list_params.rb +43 -40
  154. data/lib/modern_treasury/models/ledger_entry_retrieve_params.rb +7 -6
  155. data/lib/modern_treasury/models/ledger_entry_update_params.rb +7 -6
  156. data/lib/modern_treasury/models/ledger_event_handler.rb +21 -15
  157. data/lib/modern_treasury/models/ledger_event_handler_create_params.rb +16 -15
  158. data/lib/modern_treasury/models/ledger_event_handler_delete_params.rb +5 -4
  159. data/lib/modern_treasury/models/ledger_event_handler_list_params.rb +11 -10
  160. data/lib/modern_treasury/models/ledger_event_handler_retrieve_params.rb +5 -4
  161. data/lib/modern_treasury/models/ledger_event_handler_variable.rb +7 -5
  162. data/lib/modern_treasury/models/ledger_list_params.rb +13 -12
  163. data/lib/modern_treasury/models/ledger_retrieve_params.rb +5 -4
  164. data/lib/modern_treasury/models/ledger_transaction.rb +26 -20
  165. data/lib/modern_treasury/models/ledger_transaction_create_params.rb +42 -41
  166. data/lib/modern_treasury/models/ledger_transaction_create_partial_post_params.rb +26 -23
  167. data/lib/modern_treasury/models/ledger_transaction_create_reversal_params.rb +17 -16
  168. data/lib/modern_treasury/models/ledger_transaction_list_params.rb +34 -31
  169. data/lib/modern_treasury/models/ledger_transaction_retrieve_params.rb +5 -4
  170. data/lib/modern_treasury/models/ledger_transaction_update_params.rb +40 -39
  171. data/lib/modern_treasury/models/ledger_transactions/ledger_transaction_version.rb +72 -61
  172. data/lib/modern_treasury/models/ledger_transactions/version_list_params.rb +12 -11
  173. data/lib/modern_treasury/models/ledger_update_params.rb +7 -6
  174. data/lib/modern_treasury/models/ledgerable_event.rb +9 -7
  175. data/lib/modern_treasury/models/ledgerable_event_create_params.rb +8 -7
  176. data/lib/modern_treasury/models/ledgerable_event_retrieve_params.rb +5 -4
  177. data/lib/modern_treasury/models/legal_entity.rb +56 -29
  178. data/lib/modern_treasury/models/legal_entity_association.rb +61 -35
  179. data/lib/modern_treasury/models/legal_entity_association_create_params.rb +58 -29
  180. data/lib/modern_treasury/models/legal_entity_compliance_detail.rb +109 -0
  181. data/lib/modern_treasury/models/legal_entity_create_params.rb +104 -52
  182. data/lib/modern_treasury/models/legal_entity_industry_classification.rb +107 -0
  183. data/lib/modern_treasury/models/legal_entity_list_params.rb +9 -8
  184. data/lib/modern_treasury/models/legal_entity_retrieve_params.rb +5 -4
  185. data/lib/modern_treasury/models/legal_entity_update_params.rb +46 -23
  186. data/lib/modern_treasury/models/line_item.rb +20 -16
  187. data/lib/modern_treasury/models/line_item_list_params.rb +6 -5
  188. data/lib/modern_treasury/models/line_item_retrieve_params.rb +6 -5
  189. data/lib/modern_treasury/models/line_item_update_params.rb +8 -7
  190. data/lib/modern_treasury/models/paper_item.rb +10 -7
  191. data/lib/modern_treasury/models/paper_item_list_params.rb +6 -5
  192. data/lib/modern_treasury/models/paper_item_retrieve_params.rb +5 -4
  193. data/lib/modern_treasury/models/payment_flow.rb +37 -28
  194. data/lib/modern_treasury/models/payment_flow_create_params.rb +12 -11
  195. data/lib/modern_treasury/models/payment_flow_list_params.rb +5 -4
  196. data/lib/modern_treasury/models/payment_flow_retrieve_params.rb +5 -4
  197. data/lib/modern_treasury/models/payment_flow_update_params.rb +8 -7
  198. data/lib/modern_treasury/models/payment_order.rb +121 -97
  199. data/lib/modern_treasury/models/payment_order_create_async_params.rb +191 -174
  200. data/lib/modern_treasury/models/payment_order_create_params.rb +200 -182
  201. data/lib/modern_treasury/models/payment_order_list_params.rb +15 -14
  202. data/lib/modern_treasury/models/payment_order_retrieve_params.rb +5 -4
  203. data/lib/modern_treasury/models/payment_order_subtype.rb +4 -4
  204. data/lib/modern_treasury/models/payment_order_type.rb +3 -3
  205. data/lib/modern_treasury/models/payment_order_update_params.rb +148 -137
  206. data/lib/modern_treasury/models/payment_orders/reversal.rb +15 -9
  207. data/lib/modern_treasury/models/payment_orders/reversal_create_params.rb +61 -54
  208. data/lib/modern_treasury/models/payment_orders/reversal_list_params.rb +5 -4
  209. data/lib/modern_treasury/models/payment_orders/reversal_retrieve_params.rb +5 -4
  210. data/lib/modern_treasury/models/payment_reference.rb +17 -9
  211. data/lib/modern_treasury/models/payment_reference_list_params.rb +9 -8
  212. data/lib/modern_treasury/models/payment_reference_retireve_params.rb +5 -4
  213. data/lib/modern_treasury/models/payment_reference_retrieve_params.rb +5 -4
  214. data/lib/modern_treasury/models/ping_response.rb +3 -2
  215. data/lib/modern_treasury/models/reconciliation_rule.rb +15 -11
  216. data/lib/modern_treasury/models/return_create_params.rb +33 -24
  217. data/lib/modern_treasury/models/return_list_params.rb +10 -9
  218. data/lib/modern_treasury/models/return_object.rb +60 -36
  219. data/lib/modern_treasury/models/return_retrieve_params.rb +5 -4
  220. data/lib/modern_treasury/models/routing_detail.rb +22 -16
  221. data/lib/modern_treasury/models/routing_detail_create_params.rb +14 -13
  222. data/lib/modern_treasury/models/routing_detail_delete_params.rb +6 -5
  223. data/lib/modern_treasury/models/routing_detail_list_params.rb +5 -4
  224. data/lib/modern_treasury/models/routing_detail_retrieve_params.rb +5 -4
  225. data/lib/modern_treasury/models/routing_number_lookup_request.rb +22 -17
  226. data/lib/modern_treasury/models/transaction.rb +47 -40
  227. data/lib/modern_treasury/models/transaction_create_params.rb +17 -16
  228. data/lib/modern_treasury/models/transaction_delete_params.rb +5 -4
  229. data/lib/modern_treasury/models/transaction_direction.rb +1 -1
  230. data/lib/modern_treasury/models/transaction_list_params.rb +13 -12
  231. data/lib/modern_treasury/models/transaction_retrieve_params.rb +5 -4
  232. data/lib/modern_treasury/models/transaction_update_params.rb +7 -6
  233. data/lib/modern_treasury/models/transactions/line_item_create_params.rb +6 -5
  234. data/lib/modern_treasury/models/transactions/line_item_delete_params.rb +5 -4
  235. data/lib/modern_treasury/models/transactions/line_item_list_params.rb +7 -6
  236. data/lib/modern_treasury/models/transactions/line_item_retrieve_params.rb +5 -4
  237. data/lib/modern_treasury/models/transactions/transaction_line_item.rb +23 -18
  238. data/lib/modern_treasury/models/validation_validate_routing_number_params.rb +12 -11
  239. data/lib/modern_treasury/models/virtual_account.rb +17 -14
  240. data/lib/modern_treasury/models/virtual_account_create_params.rb +52 -43
  241. data/lib/modern_treasury/models/virtual_account_delete_params.rb +5 -4
  242. data/lib/modern_treasury/models/virtual_account_list_params.rb +8 -7
  243. data/lib/modern_treasury/models/virtual_account_retrieve_params.rb +5 -4
  244. data/lib/modern_treasury/models/virtual_account_update_params.rb +6 -5
  245. data/lib/modern_treasury/models/wealth_and_employment_details.rb +22 -10
  246. data/lib/modern_treasury/request_options.rb +12 -44
  247. data/lib/modern_treasury/resources/account_collection_flows.rb +33 -36
  248. data/lib/modern_treasury/resources/account_details.rb +37 -42
  249. data/lib/modern_treasury/resources/bulk_requests.rb +27 -34
  250. data/lib/modern_treasury/resources/bulk_results.rb +20 -25
  251. data/lib/modern_treasury/resources/connection_legal_entities.rb +32 -33
  252. data/lib/modern_treasury/resources/connections.rb +11 -11
  253. data/lib/modern_treasury/resources/counterparties.rb +65 -104
  254. data/lib/modern_treasury/resources/documents.rb +25 -28
  255. data/lib/modern_treasury/resources/events.rb +20 -22
  256. data/lib/modern_treasury/resources/expected_payments.rb +77 -144
  257. data/lib/modern_treasury/resources/external_accounts.rb +73 -108
  258. data/lib/modern_treasury/resources/foreign_exchange_quotes.rb +32 -44
  259. data/lib/modern_treasury/resources/incoming_payment_details.rb +42 -61
  260. data/lib/modern_treasury/resources/internal_accounts/balance_reports.rb +37 -45
  261. data/lib/modern_treasury/resources/internal_accounts.rb +46 -65
  262. data/lib/modern_treasury/resources/invoices/line_items.rb +53 -79
  263. data/lib/modern_treasury/resources/invoices.rb +93 -194
  264. data/lib/modern_treasury/resources/ledger_account_balance_monitors.rb +40 -47
  265. data/lib/modern_treasury/resources/ledger_account_categories.rb +80 -104
  266. data/lib/modern_treasury/resources/ledger_account_settlements/account_entries.rb +16 -16
  267. data/lib/modern_treasury/resources/ledger_account_settlements.rb +45 -76
  268. data/lib/modern_treasury/resources/ledger_account_statements.rb +17 -21
  269. data/lib/modern_treasury/resources/ledger_accounts.rb +61 -106
  270. data/lib/modern_treasury/resources/ledger_entries.rb +44 -82
  271. data/lib/modern_treasury/resources/ledger_event_handlers.rb +35 -44
  272. data/lib/modern_treasury/resources/ledger_transactions/versions.rb +13 -20
  273. data/lib/modern_treasury/resources/ledger_transactions.rb +85 -160
  274. data/lib/modern_treasury/resources/ledgerable_events.rb +16 -16
  275. data/lib/modern_treasury/resources/ledgers.rb +40 -49
  276. data/lib/modern_treasury/resources/legal_entities.rb +80 -123
  277. data/lib/modern_treasury/resources/legal_entity_associations.rb +12 -15
  278. data/lib/modern_treasury/resources/line_items.rb +29 -33
  279. data/lib/modern_treasury/resources/paper_items.rb +18 -19
  280. data/lib/modern_treasury/resources/payment_flows.rb +38 -51
  281. data/lib/modern_treasury/resources/payment_orders/reversals.rb +27 -33
  282. data/lib/modern_treasury/resources/payment_orders.rb +154 -430
  283. data/lib/modern_treasury/resources/payment_references.rb +18 -20
  284. data/lib/modern_treasury/resources/returns.rb +30 -41
  285. data/lib/modern_treasury/resources/routing_details.rb +38 -46
  286. data/lib/modern_treasury/resources/transactions/line_items.rb +31 -32
  287. data/lib/modern_treasury/resources/transactions.rb +58 -89
  288. data/lib/modern_treasury/resources/validations.rb +9 -10
  289. data/lib/modern_treasury/resources/virtual_accounts.rb +49 -68
  290. data/lib/modern_treasury/version.rb +1 -1
  291. data/lib/modern_treasury.rb +34 -22
  292. data/manifest.yaml +1 -0
  293. data/rbi/lib/modern_treasury/client.rbi +12 -12
  294. data/rbi/lib/modern_treasury/errors.rbi +120 -121
  295. data/rbi/lib/modern_treasury/internal/page.rbi +30 -0
  296. data/rbi/lib/modern_treasury/internal/transport/base_client.rbi +199 -0
  297. data/rbi/lib/modern_treasury/internal/transport/pooled_net_requester.rbi +60 -0
  298. data/rbi/lib/modern_treasury/internal/type/array_of.rbi +85 -0
  299. data/rbi/lib/modern_treasury/internal/type/base_model.rbi +203 -0
  300. data/rbi/lib/modern_treasury/internal/type/base_page.rbi +36 -0
  301. data/rbi/lib/modern_treasury/internal/type/boolean.rbi +47 -0
  302. data/rbi/lib/modern_treasury/internal/type/converter.rbi +120 -0
  303. data/rbi/lib/modern_treasury/internal/type/enum.rbi +69 -0
  304. data/rbi/lib/modern_treasury/internal/type/hash_of.rbi +85 -0
  305. data/rbi/lib/modern_treasury/internal/type/io_like.rbi +46 -0
  306. data/rbi/lib/modern_treasury/internal/type/request_parameters.rbi +21 -0
  307. data/rbi/lib/modern_treasury/internal/type/union.rbi +77 -0
  308. data/rbi/lib/modern_treasury/internal/type/unknown.rbi +40 -0
  309. data/rbi/lib/modern_treasury/internal/util.rbi +300 -0
  310. data/rbi/lib/modern_treasury/internal.rbi +12 -0
  311. data/rbi/lib/modern_treasury/models/account_collection_flow.rbi +18 -24
  312. data/rbi/lib/modern_treasury/models/account_collection_flow_create_params.rbi +15 -12
  313. data/rbi/lib/modern_treasury/models/account_collection_flow_list_params.rbi +6 -9
  314. data/rbi/lib/modern_treasury/models/account_collection_flow_retrieve_params.rbi +6 -8
  315. data/rbi/lib/modern_treasury/models/account_collection_flow_update_params.rbi +11 -14
  316. data/rbi/lib/modern_treasury/models/account_detail.rbi +9 -13
  317. data/rbi/lib/modern_treasury/models/account_detail_create_params.rbi +14 -18
  318. data/rbi/lib/modern_treasury/models/account_detail_delete_params.rbi +9 -12
  319. data/rbi/lib/modern_treasury/models/account_detail_list_params.rbi +6 -8
  320. data/rbi/lib/modern_treasury/models/account_detail_retrieve_params.rbi +6 -8
  321. data/rbi/lib/modern_treasury/models/accounts_type.rbi +3 -4
  322. data/rbi/lib/modern_treasury/models/async_response.rbi +3 -5
  323. data/rbi/lib/modern_treasury/models/bank_settings.rbi +8 -11
  324. data/rbi/lib/modern_treasury/models/bulk_request.rbi +21 -23
  325. data/rbi/lib/modern_treasury/models/bulk_request_create_params.rbi +771 -837
  326. data/rbi/lib/modern_treasury/models/bulk_request_list_params.rbi +23 -25
  327. data/rbi/lib/modern_treasury/models/bulk_request_retrieve_params.rbi +6 -8
  328. data/rbi/lib/modern_treasury/models/bulk_result.rbi +48 -49
  329. data/rbi/lib/modern_treasury/models/bulk_result_list_params.rbi +24 -27
  330. data/rbi/lib/modern_treasury/models/bulk_result_retrieve_params.rbi +6 -8
  331. data/rbi/lib/modern_treasury/models/client_ping_params.rbi +6 -8
  332. data/rbi/lib/modern_treasury/models/connection.rbi +4 -7
  333. data/rbi/lib/modern_treasury/models/connection_legal_entity.rbi +7 -11
  334. data/rbi/lib/modern_treasury/models/connection_legal_entity_create_params.rbi +219 -174
  335. data/rbi/lib/modern_treasury/models/connection_legal_entity_list_params.rbi +9 -13
  336. data/rbi/lib/modern_treasury/models/connection_legal_entity_retrieve_params.rbi +6 -8
  337. data/rbi/lib/modern_treasury/models/connection_legal_entity_update_params.rbi +9 -12
  338. data/rbi/lib/modern_treasury/models/connection_list_params.rbi +12 -7
  339. data/rbi/lib/modern_treasury/models/counterparty.rbi +45 -61
  340. data/rbi/lib/modern_treasury/models/counterparty_collect_account_params.rbi +21 -24
  341. data/rbi/lib/modern_treasury/models/counterparty_collect_account_response.rbi +7 -9
  342. data/rbi/lib/modern_treasury/models/counterparty_create_params.rbi +334 -299
  343. data/rbi/lib/modern_treasury/models/counterparty_delete_params.rbi +6 -8
  344. data/rbi/lib/modern_treasury/models/counterparty_list_params.rbi +10 -13
  345. data/rbi/lib/modern_treasury/models/counterparty_retrieve_params.rbi +6 -8
  346. data/rbi/lib/modern_treasury/models/counterparty_update_params.rbi +8 -11
  347. data/rbi/lib/modern_treasury/models/currency.rbi +3 -4
  348. data/rbi/lib/modern_treasury/models/document.rbi +21 -30
  349. data/rbi/lib/modern_treasury/models/document_create_params.rbi +12 -15
  350. data/rbi/lib/modern_treasury/models/document_list_params.rbi +19 -15
  351. data/rbi/lib/modern_treasury/models/document_retrieve_params.rbi +6 -8
  352. data/rbi/lib/modern_treasury/models/event.rbi +15 -5
  353. data/rbi/lib/modern_treasury/models/event_list_params.rbi +6 -9
  354. data/rbi/lib/modern_treasury/models/event_retrieve_params.rbi +6 -8
  355. data/rbi/lib/modern_treasury/models/expected_payment.rbi +30 -35
  356. data/rbi/lib/modern_treasury/models/expected_payment_create_params.rbi +82 -94
  357. data/rbi/lib/modern_treasury/models/expected_payment_delete_params.rbi +6 -8
  358. data/rbi/lib/modern_treasury/models/expected_payment_list_params.rbi +16 -21
  359. data/rbi/lib/modern_treasury/models/expected_payment_retrieve_params.rbi +6 -8
  360. data/rbi/lib/modern_treasury/models/expected_payment_type.rbi +5 -5
  361. data/rbi/lib/modern_treasury/models/expected_payment_update_params.rbi +26 -31
  362. data/rbi/lib/modern_treasury/models/external_account.rbi +38 -45
  363. data/rbi/lib/modern_treasury/models/external_account_complete_verification_params.rbi +6 -8
  364. data/rbi/lib/modern_treasury/models/external_account_create_params.rbi +109 -82
  365. data/rbi/lib/modern_treasury/models/external_account_delete_params.rbi +6 -8
  366. data/rbi/lib/modern_treasury/models/external_account_list_params.rbi +8 -11
  367. data/rbi/lib/modern_treasury/models/external_account_retrieve_params.rbi +6 -8
  368. data/rbi/lib/modern_treasury/models/external_account_type.rbi +4 -4
  369. data/rbi/lib/modern_treasury/models/external_account_update_params.rbi +22 -22
  370. data/rbi/lib/modern_treasury/models/external_account_verify_params.rbi +22 -28
  371. data/rbi/lib/modern_treasury/models/external_account_verify_response.rbi +22 -26
  372. data/rbi/lib/modern_treasury/models/foreign_exchange_quote.rbi +30 -20
  373. data/rbi/lib/modern_treasury/models/foreign_exchange_quote_create_params.rbi +8 -11
  374. data/rbi/lib/modern_treasury/models/foreign_exchange_quote_list_params.rbi +8 -11
  375. data/rbi/lib/modern_treasury/models/foreign_exchange_quote_retrieve_params.rbi +6 -8
  376. data/rbi/lib/modern_treasury/models/incoming_payment_detail.rbi +45 -36
  377. data/rbi/lib/modern_treasury/models/incoming_payment_detail_create_async_params.rbi +37 -20
  378. data/rbi/lib/modern_treasury/models/incoming_payment_detail_list_params.rbi +25 -26
  379. data/rbi/lib/modern_treasury/models/incoming_payment_detail_retrieve_params.rbi +6 -8
  380. data/rbi/lib/modern_treasury/models/incoming_payment_detail_update_params.rbi +7 -9
  381. data/rbi/lib/modern_treasury/models/internal_account.rbi +22 -30
  382. data/rbi/lib/modern_treasury/models/internal_account_create_params.rbi +23 -23
  383. data/rbi/lib/modern_treasury/models/internal_account_list_params.rbi +11 -15
  384. data/rbi/lib/modern_treasury/models/internal_account_retrieve_params.rbi +6 -8
  385. data/rbi/lib/modern_treasury/models/internal_account_update_params.rbi +7 -10
  386. data/rbi/lib/modern_treasury/models/internal_accounts/balance_report.rbi +38 -34
  387. data/rbi/lib/modern_treasury/models/internal_accounts/balance_report_create_params.rbi +30 -34
  388. data/rbi/lib/modern_treasury/models/internal_accounts/balance_report_delete_params.rbi +6 -8
  389. data/rbi/lib/modern_treasury/models/internal_accounts/balance_report_list_params.rbi +17 -12
  390. data/rbi/lib/modern_treasury/models/internal_accounts/balance_report_retrieve_params.rbi +6 -8
  391. data/rbi/lib/modern_treasury/models/invoice.rbi +56 -70
  392. data/rbi/lib/modern_treasury/models/invoice_add_payment_order_params.rbi +6 -11
  393. data/rbi/lib/modern_treasury/models/invoice_create_params.rbi +72 -88
  394. data/rbi/lib/modern_treasury/models/invoice_list_params.rbi +11 -15
  395. data/rbi/lib/modern_treasury/models/invoice_retrieve_params.rbi +6 -8
  396. data/rbi/lib/modern_treasury/models/invoice_update_params.rbi +72 -88
  397. data/rbi/lib/modern_treasury/models/invoices/invoice_line_item.rbi +12 -15
  398. data/rbi/lib/modern_treasury/models/invoices/line_item_create_params.rbi +13 -16
  399. data/rbi/lib/modern_treasury/models/invoices/line_item_delete_params.rbi +6 -8
  400. data/rbi/lib/modern_treasury/models/invoices/line_item_list_params.rbi +6 -8
  401. data/rbi/lib/modern_treasury/models/invoices/line_item_retrieve_params.rbi +6 -8
  402. data/rbi/lib/modern_treasury/models/invoices/line_item_update_params.rbi +13 -16
  403. data/rbi/lib/modern_treasury/models/ledger.rbi +15 -6
  404. data/rbi/lib/modern_treasury/models/ledger_account.rbi +57 -62
  405. data/rbi/lib/modern_treasury/models/ledger_account_balance_monitor.rbi +55 -64
  406. data/rbi/lib/modern_treasury/models/ledger_account_balance_monitor_create_params.rbi +23 -20
  407. data/rbi/lib/modern_treasury/models/ledger_account_balance_monitor_delete_params.rbi +6 -8
  408. data/rbi/lib/modern_treasury/models/ledger_account_balance_monitor_list_params.rbi +16 -10
  409. data/rbi/lib/modern_treasury/models/ledger_account_balance_monitor_retrieve_params.rbi +6 -8
  410. data/rbi/lib/modern_treasury/models/ledger_account_balance_monitor_update_params.rbi +7 -9
  411. data/rbi/lib/modern_treasury/models/ledger_account_category.rbi +39 -50
  412. data/rbi/lib/modern_treasury/models/ledger_account_category_add_ledger_account_params.rbi +6 -11
  413. data/rbi/lib/modern_treasury/models/ledger_account_category_add_nested_category_params.rbi +6 -11
  414. data/rbi/lib/modern_treasury/models/ledger_account_category_create_params.rbi +8 -11
  415. data/rbi/lib/modern_treasury/models/ledger_account_category_delete_params.rbi +6 -8
  416. data/rbi/lib/modern_treasury/models/ledger_account_category_list_params.rbi +25 -24
  417. data/rbi/lib/modern_treasury/models/ledger_account_category_remove_ledger_account_params.rbi +6 -11
  418. data/rbi/lib/modern_treasury/models/ledger_account_category_remove_nested_category_params.rbi +6 -11
  419. data/rbi/lib/modern_treasury/models/ledger_account_category_retrieve_params.rbi +15 -19
  420. data/rbi/lib/modern_treasury/models/ledger_account_category_update_params.rbi +7 -9
  421. data/rbi/lib/modern_treasury/models/ledger_account_create_params.rbi +16 -20
  422. data/rbi/lib/modern_treasury/models/ledger_account_delete_params.rbi +6 -8
  423. data/rbi/lib/modern_treasury/models/ledger_account_list_params.rbi +59 -58
  424. data/rbi/lib/modern_treasury/models/ledger_account_retrieve_params.rbi +21 -26
  425. data/rbi/lib/modern_treasury/models/ledger_account_settlement.rbi +14 -18
  426. data/rbi/lib/modern_treasury/models/ledger_account_settlement_create_params.rbi +19 -23
  427. data/rbi/lib/modern_treasury/models/ledger_account_settlement_list_params.rbi +13 -16
  428. data/rbi/lib/modern_treasury/models/ledger_account_settlement_retrieve_params.rbi +6 -8
  429. data/rbi/lib/modern_treasury/models/ledger_account_settlement_update_params.rbi +12 -15
  430. data/rbi/lib/modern_treasury/models/ledger_account_settlements/account_entry_delete_params.rbi +13 -17
  431. data/rbi/lib/modern_treasury/models/ledger_account_settlements/account_entry_update_params.rbi +7 -9
  432. data/rbi/lib/modern_treasury/models/ledger_account_statement_create_params.rbi +10 -13
  433. data/rbi/lib/modern_treasury/models/ledger_account_statement_create_response.rbi +76 -95
  434. data/rbi/lib/modern_treasury/models/ledger_account_statement_retrieve_params.rbi +6 -8
  435. data/rbi/lib/modern_treasury/models/ledger_account_statement_retrieve_response.rbi +76 -95
  436. data/rbi/lib/modern_treasury/models/ledger_account_update_params.rbi +7 -9
  437. data/rbi/lib/modern_treasury/models/ledger_create_params.rbi +7 -9
  438. data/rbi/lib/modern_treasury/models/ledger_delete_params.rbi +6 -8
  439. data/rbi/lib/modern_treasury/models/ledger_entry.rbi +62 -67
  440. data/rbi/lib/modern_treasury/models/ledger_entry_list_params.rbi +43 -51
  441. data/rbi/lib/modern_treasury/models/ledger_entry_retrieve_params.rbi +7 -9
  442. data/rbi/lib/modern_treasury/models/ledger_entry_update_params.rbi +7 -9
  443. data/rbi/lib/modern_treasury/models/ledger_event_handler.rbi +28 -33
  444. data/rbi/lib/modern_treasury/models/ledger_event_handler_create_params.rbi +32 -35
  445. data/rbi/lib/modern_treasury/models/ledger_event_handler_delete_params.rbi +6 -8
  446. data/rbi/lib/modern_treasury/models/ledger_event_handler_list_params.rbi +17 -11
  447. data/rbi/lib/modern_treasury/models/ledger_event_handler_retrieve_params.rbi +6 -8
  448. data/rbi/lib/modern_treasury/models/ledger_event_handler_variable.rbi +9 -13
  449. data/rbi/lib/modern_treasury/models/ledger_list_params.rbi +18 -12
  450. data/rbi/lib/modern_treasury/models/ledger_retrieve_params.rbi +6 -8
  451. data/rbi/lib/modern_treasury/models/ledger_transaction.rbi +23 -28
  452. data/rbi/lib/modern_treasury/models/ledger_transaction_create_params.rbi +47 -50
  453. data/rbi/lib/modern_treasury/models/ledger_transaction_create_partial_post_params.rbi +36 -33
  454. data/rbi/lib/modern_treasury/models/ledger_transaction_create_reversal_params.rbi +27 -26
  455. data/rbi/lib/modern_treasury/models/ledger_transaction_list_params.rbi +53 -48
  456. data/rbi/lib/modern_treasury/models/ledger_transaction_retrieve_params.rbi +6 -8
  457. data/rbi/lib/modern_treasury/models/ledger_transaction_update_params.rbi +51 -49
  458. data/rbi/lib/modern_treasury/models/ledger_transactions/ledger_transaction_version.rbi +86 -95
  459. data/rbi/lib/modern_treasury/models/ledger_transactions/version_list_params.rbi +11 -14
  460. data/rbi/lib/modern_treasury/models/ledger_update_params.rbi +7 -9
  461. data/rbi/lib/modern_treasury/models/ledgerable_event.rbi +5 -8
  462. data/rbi/lib/modern_treasury/models/ledgerable_event_create_params.rbi +7 -9
  463. data/rbi/lib/modern_treasury/models/ledgerable_event_retrieve_params.rbi +6 -8
  464. data/rbi/lib/modern_treasury/models/legal_entity.rbi +73 -54
  465. data/rbi/lib/modern_treasury/models/legal_entity_association.rbi +94 -72
  466. data/rbi/lib/modern_treasury/models/legal_entity_association_create_params.rbi +110 -87
  467. data/rbi/lib/modern_treasury/models/legal_entity_compliance_detail.rbi +103 -0
  468. data/rbi/lib/modern_treasury/models/legal_entity_create_params.rbi +183 -144
  469. data/rbi/lib/modern_treasury/models/legal_entity_industry_classification.rbi +136 -0
  470. data/rbi/lib/modern_treasury/models/legal_entity_list_params.rbi +11 -15
  471. data/rbi/lib/modern_treasury/models/legal_entity_retrieve_params.rbi +6 -8
  472. data/rbi/lib/modern_treasury/models/legal_entity_update_params.rbi +74 -52
  473. data/rbi/lib/modern_treasury/models/line_item.rbi +24 -26
  474. data/rbi/lib/modern_treasury/models/line_item_list_params.rbi +9 -12
  475. data/rbi/lib/modern_treasury/models/line_item_retrieve_params.rbi +9 -12
  476. data/rbi/lib/modern_treasury/models/line_item_update_params.rbi +10 -13
  477. data/rbi/lib/modern_treasury/models/paper_item.rbi +10 -13
  478. data/rbi/lib/modern_treasury/models/paper_item_list_params.rbi +7 -10
  479. data/rbi/lib/modern_treasury/models/paper_item_retrieve_params.rbi +6 -8
  480. data/rbi/lib/modern_treasury/models/payment_flow.rbi +37 -42
  481. data/rbi/lib/modern_treasury/models/payment_flow_create_params.rbi +15 -19
  482. data/rbi/lib/modern_treasury/models/payment_flow_list_params.rbi +6 -9
  483. data/rbi/lib/modern_treasury/models/payment_flow_retrieve_params.rbi +6 -8
  484. data/rbi/lib/modern_treasury/models/payment_flow_update_params.rbi +11 -14
  485. data/rbi/lib/modern_treasury/models/payment_order.rbi +162 -132
  486. data/rbi/lib/modern_treasury/models/payment_order_create_async_params.rbi +243 -267
  487. data/rbi/lib/modern_treasury/models/payment_order_create_params.rbi +285 -285
  488. data/rbi/lib/modern_treasury/models/payment_order_list_params.rbi +21 -27
  489. data/rbi/lib/modern_treasury/models/payment_order_retrieve_params.rbi +6 -8
  490. data/rbi/lib/modern_treasury/models/payment_order_subtype.rbi +7 -7
  491. data/rbi/lib/modern_treasury/models/payment_order_type.rbi +5 -6
  492. data/rbi/lib/modern_treasury/models/payment_order_update_params.rbi +216 -225
  493. data/rbi/lib/modern_treasury/models/payment_orders/reversal.rbi +11 -16
  494. data/rbi/lib/modern_treasury/models/payment_orders/reversal_create_params.rbi +63 -72
  495. data/rbi/lib/modern_treasury/models/payment_orders/reversal_list_params.rbi +6 -8
  496. data/rbi/lib/modern_treasury/models/payment_orders/reversal_retrieve_params.rbi +6 -8
  497. data/rbi/lib/modern_treasury/models/payment_reference.rbi +25 -18
  498. data/rbi/lib/modern_treasury/models/payment_reference_list_params.rbi +12 -16
  499. data/rbi/lib/modern_treasury/models/payment_reference_retireve_params.rbi +6 -8
  500. data/rbi/lib/modern_treasury/models/payment_reference_retrieve_params.rbi +6 -8
  501. data/rbi/lib/modern_treasury/models/ping_response.rbi +3 -5
  502. data/rbi/lib/modern_treasury/models/reconciliation_rule.rbi +16 -20
  503. data/rbi/lib/modern_treasury/models/return_create_params.rbi +38 -35
  504. data/rbi/lib/modern_treasury/models/return_list_params.rbi +13 -17
  505. data/rbi/lib/modern_treasury/models/return_object.rbi +91 -61
  506. data/rbi/lib/modern_treasury/models/return_retrieve_params.rbi +6 -8
  507. data/rbi/lib/modern_treasury/models/routing_detail.rbi +22 -30
  508. data/rbi/lib/modern_treasury/models/routing_detail_create_params.rbi +27 -25
  509. data/rbi/lib/modern_treasury/models/routing_detail_delete_params.rbi +9 -12
  510. data/rbi/lib/modern_treasury/models/routing_detail_list_params.rbi +6 -8
  511. data/rbi/lib/modern_treasury/models/routing_detail_retrieve_params.rbi +6 -8
  512. data/rbi/lib/modern_treasury/models/routing_number_lookup_request.rbi +34 -30
  513. data/rbi/lib/modern_treasury/models/transaction.rbi +56 -48
  514. data/rbi/lib/modern_treasury/models/transaction_create_params.rbi +18 -22
  515. data/rbi/lib/modern_treasury/models/transaction_delete_params.rbi +6 -8
  516. data/rbi/lib/modern_treasury/models/transaction_direction.rbi +4 -4
  517. data/rbi/lib/modern_treasury/models/transaction_list_params.rbi +12 -15
  518. data/rbi/lib/modern_treasury/models/transaction_retrieve_params.rbi +6 -8
  519. data/rbi/lib/modern_treasury/models/transaction_update_params.rbi +7 -9
  520. data/rbi/lib/modern_treasury/models/transactions/line_item_create_params.rbi +7 -9
  521. data/rbi/lib/modern_treasury/models/transactions/line_item_delete_params.rbi +6 -8
  522. data/rbi/lib/modern_treasury/models/transactions/line_item_list_params.rbi +16 -11
  523. data/rbi/lib/modern_treasury/models/transactions/line_item_retrieve_params.rbi +6 -8
  524. data/rbi/lib/modern_treasury/models/transactions/transaction_line_item.rbi +27 -26
  525. data/rbi/lib/modern_treasury/models/validation_validate_routing_number_params.rbi +15 -17
  526. data/rbi/lib/modern_treasury/models/virtual_account.rbi +13 -16
  527. data/rbi/lib/modern_treasury/models/virtual_account_create_params.rbi +83 -67
  528. data/rbi/lib/modern_treasury/models/virtual_account_delete_params.rbi +6 -8
  529. data/rbi/lib/modern_treasury/models/virtual_account_list_params.rbi +8 -11
  530. data/rbi/lib/modern_treasury/models/virtual_account_retrieve_params.rbi +6 -8
  531. data/rbi/lib/modern_treasury/models/virtual_account_update_params.rbi +12 -7
  532. data/rbi/lib/modern_treasury/models/wealth_and_employment_details.rbi +22 -31
  533. data/rbi/lib/modern_treasury/request_options.rbi +11 -28
  534. data/rbi/lib/modern_treasury/resources/account_collection_flows.rbi +12 -20
  535. data/rbi/lib/modern_treasury/resources/account_details.rbi +12 -20
  536. data/rbi/lib/modern_treasury/resources/bulk_requests.rbi +25 -31
  537. data/rbi/lib/modern_treasury/resources/bulk_results.rbi +10 -14
  538. data/rbi/lib/modern_treasury/resources/connection_legal_entities.rbi +12 -20
  539. data/rbi/lib/modern_treasury/resources/connections.rbi +5 -7
  540. data/rbi/lib/modern_treasury/resources/counterparties.rbi +38 -50
  541. data/rbi/lib/modern_treasury/resources/documents.rbi +12 -18
  542. data/rbi/lib/modern_treasury/resources/events.rbi +7 -11
  543. data/rbi/lib/modern_treasury/resources/expected_payments.rbi +47 -57
  544. data/rbi/lib/modern_treasury/resources/external_accounts.rbi +62 -52
  545. data/rbi/lib/modern_treasury/resources/foreign_exchange_quotes.rbi +13 -19
  546. data/rbi/lib/modern_treasury/resources/incoming_payment_details.rbi +25 -29
  547. data/rbi/lib/modern_treasury/resources/internal_accounts/balance_reports.rbi +39 -27
  548. data/rbi/lib/modern_treasury/resources/internal_accounts.rbi +20 -25
  549. data/rbi/lib/modern_treasury/resources/invoices/line_items.rbi +52 -37
  550. data/rbi/lib/modern_treasury/resources/invoices.rbi +71 -81
  551. data/rbi/lib/modern_treasury/resources/ledger_account_balance_monitors.rbi +19 -29
  552. data/rbi/lib/modern_treasury/resources/ledger_account_categories.rbi +37 -52
  553. data/rbi/lib/modern_treasury/resources/ledger_account_settlements/account_entries.rbi +19 -13
  554. data/rbi/lib/modern_treasury/resources/ledger_account_settlements.rbi +29 -37
  555. data/rbi/lib/modern_treasury/resources/ledger_account_statements.rbi +10 -14
  556. data/rbi/lib/modern_treasury/resources/ledger_accounts.rbi +47 -54
  557. data/rbi/lib/modern_treasury/resources/ledger_entries.rbi +32 -38
  558. data/rbi/lib/modern_treasury/resources/ledger_event_handlers.rbi +22 -27
  559. data/rbi/lib/modern_treasury/resources/ledger_transactions/versions.rbi +17 -12
  560. data/rbi/lib/modern_treasury/resources/ledger_transactions.rbi +71 -73
  561. data/rbi/lib/modern_treasury/resources/ledgerable_events.rbi +7 -11
  562. data/rbi/lib/modern_treasury/resources/ledgers.rbi +20 -30
  563. data/rbi/lib/modern_treasury/resources/legal_entities.rbi +39 -37
  564. data/rbi/lib/modern_treasury/resources/legal_entity_associations.rbi +6 -8
  565. data/rbi/lib/modern_treasury/resources/line_items.rbi +10 -16
  566. data/rbi/lib/modern_treasury/resources/paper_items.rbi +8 -12
  567. data/rbi/lib/modern_treasury/resources/payment_flows.rbi +17 -25
  568. data/rbi/lib/modern_treasury/resources/payment_orders/reversals.rbi +30 -21
  569. data/rbi/lib/modern_treasury/resources/payment_orders.rbi +201 -198
  570. data/rbi/lib/modern_treasury/resources/payment_references.rbi +9 -13
  571. data/rbi/lib/modern_treasury/resources/returns.rbi +19 -22
  572. data/rbi/lib/modern_treasury/resources/routing_details.rbi +14 -22
  573. data/rbi/lib/modern_treasury/resources/transactions/line_items.rbi +31 -17
  574. data/rbi/lib/modern_treasury/resources/transactions.rbi +28 -38
  575. data/rbi/lib/modern_treasury/resources/validations.rbi +8 -10
  576. data/rbi/lib/modern_treasury/resources/virtual_accounts.rbi +38 -35
  577. data/rbi/lib/modern_treasury/version.rbi +1 -1
  578. data/sig/modern_treasury/client.rbs +2 -2
  579. data/sig/modern_treasury/errors.rbs +98 -96
  580. data/sig/modern_treasury/internal/page.rbs +19 -0
  581. data/sig/modern_treasury/internal/transport/base_client.rbs +110 -0
  582. data/sig/modern_treasury/internal/transport/pooled_net_requester.rbs +41 -0
  583. data/sig/modern_treasury/internal/type/array_of.rbs +43 -0
  584. data/sig/modern_treasury/internal/type/base_model.rbs +86 -0
  585. data/sig/modern_treasury/internal/type/base_page.rbs +24 -0
  586. data/sig/modern_treasury/internal/type/boolean.rbs +23 -0
  587. data/sig/modern_treasury/internal/type/converter.rbs +54 -0
  588. data/sig/modern_treasury/internal/type/enum.rbs +29 -0
  589. data/sig/modern_treasury/internal/type/hash_of.rbs +43 -0
  590. data/sig/modern_treasury/internal/type/io_like.rbs +23 -0
  591. data/sig/modern_treasury/internal/type/request_parameters.rbs +16 -0
  592. data/sig/modern_treasury/internal/type/union.rbs +47 -0
  593. data/sig/modern_treasury/internal/type/unknown.rbs +23 -0
  594. data/sig/modern_treasury/internal/util.rbs +156 -0
  595. data/sig/modern_treasury/internal.rbs +5 -0
  596. data/sig/modern_treasury/models/account_collection_flow.rbs +4 -4
  597. data/sig/modern_treasury/models/account_collection_flow_create_params.rbs +5 -5
  598. data/sig/modern_treasury/models/account_collection_flow_list_params.rbs +4 -4
  599. data/sig/modern_treasury/models/account_collection_flow_retrieve_params.rbs +4 -4
  600. data/sig/modern_treasury/models/account_collection_flow_update_params.rbs +5 -5
  601. data/sig/modern_treasury/models/account_detail.rbs +2 -2
  602. data/sig/modern_treasury/models/account_detail_create_params.rbs +6 -6
  603. data/sig/modern_treasury/models/account_detail_delete_params.rbs +5 -5
  604. data/sig/modern_treasury/models/account_detail_list_params.rbs +4 -4
  605. data/sig/modern_treasury/models/account_detail_retrieve_params.rbs +4 -4
  606. data/sig/modern_treasury/models/accounts_type.rbs +1 -1
  607. data/sig/modern_treasury/models/async_response.rbs +1 -1
  608. data/sig/modern_treasury/models/bank_settings.rbs +1 -1
  609. data/sig/modern_treasury/models/bulk_request.rbs +13 -6
  610. data/sig/modern_treasury/models/bulk_request_create_params.rbs +83 -76
  611. data/sig/modern_treasury/models/bulk_request_list_params.rbs +16 -9
  612. data/sig/modern_treasury/models/bulk_request_retrieve_params.rbs +4 -4
  613. data/sig/modern_treasury/models/bulk_result.rbs +13 -9
  614. data/sig/modern_treasury/models/bulk_result_list_params.rbs +13 -9
  615. data/sig/modern_treasury/models/bulk_result_retrieve_params.rbs +5 -4
  616. data/sig/modern_treasury/models/client_ping_params.rbs +5 -4
  617. data/sig/modern_treasury/models/connection.rbs +1 -1
  618. data/sig/modern_treasury/models/connection_legal_entity.rbs +2 -2
  619. data/sig/modern_treasury/models/connection_legal_entity_create_params.rbs +48 -24
  620. data/sig/modern_treasury/models/connection_legal_entity_list_params.rbs +5 -5
  621. data/sig/modern_treasury/models/connection_legal_entity_retrieve_params.rbs +4 -4
  622. data/sig/modern_treasury/models/connection_legal_entity_update_params.rbs +5 -5
  623. data/sig/modern_treasury/models/connection_list_params.rbs +4 -4
  624. data/sig/modern_treasury/models/counterparty.rbs +9 -9
  625. data/sig/modern_treasury/models/counterparty_collect_account_params.rbs +7 -7
  626. data/sig/modern_treasury/models/counterparty_collect_account_response.rbs +1 -1
  627. data/sig/modern_treasury/models/counterparty_create_params.rbs +64 -40
  628. data/sig/modern_treasury/models/counterparty_delete_params.rbs +5 -4
  629. data/sig/modern_treasury/models/counterparty_list_params.rbs +4 -4
  630. data/sig/modern_treasury/models/counterparty_retrieve_params.rbs +4 -4
  631. data/sig/modern_treasury/models/counterparty_update_params.rbs +4 -4
  632. data/sig/modern_treasury/models/currency.rbs +1 -1
  633. data/sig/modern_treasury/models/document.rbs +4 -4
  634. data/sig/modern_treasury/models/document_create_params.rbs +8 -8
  635. data/sig/modern_treasury/models/document_list_params.rbs +5 -5
  636. data/sig/modern_treasury/models/document_retrieve_params.rbs +5 -4
  637. data/sig/modern_treasury/models/event.rbs +1 -1
  638. data/sig/modern_treasury/models/event_list_params.rbs +4 -4
  639. data/sig/modern_treasury/models/event_retrieve_params.rbs +5 -4
  640. data/sig/modern_treasury/models/expected_payment.rbs +4 -4
  641. data/sig/modern_treasury/models/expected_payment_create_params.rbs +10 -10
  642. data/sig/modern_treasury/models/expected_payment_delete_params.rbs +4 -4
  643. data/sig/modern_treasury/models/expected_payment_list_params.rbs +6 -6
  644. data/sig/modern_treasury/models/expected_payment_retrieve_params.rbs +4 -4
  645. data/sig/modern_treasury/models/expected_payment_type.rbs +1 -1
  646. data/sig/modern_treasury/models/expected_payment_update_params.rbs +6 -6
  647. data/sig/modern_treasury/models/external_account.rbs +7 -7
  648. data/sig/modern_treasury/models/external_account_complete_verification_params.rbs +5 -4
  649. data/sig/modern_treasury/models/external_account_create_params.rbs +15 -15
  650. data/sig/modern_treasury/models/external_account_delete_params.rbs +4 -4
  651. data/sig/modern_treasury/models/external_account_list_params.rbs +4 -4
  652. data/sig/modern_treasury/models/external_account_retrieve_params.rbs +4 -4
  653. data/sig/modern_treasury/models/external_account_type.rbs +1 -1
  654. data/sig/modern_treasury/models/external_account_update_params.rbs +6 -6
  655. data/sig/modern_treasury/models/external_account_verify_params.rbs +7 -7
  656. data/sig/modern_treasury/models/external_account_verify_response.rbs +5 -5
  657. data/sig/modern_treasury/models/foreign_exchange_quote.rbs +2 -2
  658. data/sig/modern_treasury/models/foreign_exchange_quote_create_params.rbs +4 -4
  659. data/sig/modern_treasury/models/foreign_exchange_quote_list_params.rbs +4 -4
  660. data/sig/modern_treasury/models/foreign_exchange_quote_retrieve_params.rbs +4 -4
  661. data/sig/modern_treasury/models/incoming_payment_detail.rbs +22 -6
  662. data/sig/modern_treasury/models/incoming_payment_detail_create_async_params.rbs +27 -7
  663. data/sig/modern_treasury/models/incoming_payment_detail_list_params.rbs +23 -7
  664. data/sig/modern_treasury/models/incoming_payment_detail_retrieve_params.rbs +4 -4
  665. data/sig/modern_treasury/models/incoming_payment_detail_update_params.rbs +5 -4
  666. data/sig/modern_treasury/models/internal_account.rbs +4 -4
  667. data/sig/modern_treasury/models/internal_account_create_params.rbs +6 -6
  668. data/sig/modern_treasury/models/internal_account_list_params.rbs +5 -5
  669. data/sig/modern_treasury/models/internal_account_retrieve_params.rbs +4 -4
  670. data/sig/modern_treasury/models/internal_account_update_params.rbs +4 -4
  671. data/sig/modern_treasury/models/internal_accounts/balance_report.rbs +4 -4
  672. data/sig/modern_treasury/models/internal_accounts/balance_report_create_params.rbs +7 -7
  673. data/sig/modern_treasury/models/internal_accounts/balance_report_delete_params.rbs +5 -4
  674. data/sig/modern_treasury/models/internal_accounts/balance_report_list_params.rbs +5 -5
  675. data/sig/modern_treasury/models/internal_accounts/balance_report_retrieve_params.rbs +5 -4
  676. data/sig/modern_treasury/models/invoice.rbs +9 -9
  677. data/sig/modern_treasury/models/invoice_add_payment_order_params.rbs +4 -4
  678. data/sig/modern_treasury/models/invoice_create_params.rbs +11 -11
  679. data/sig/modern_treasury/models/invoice_list_params.rbs +5 -5
  680. data/sig/modern_treasury/models/invoice_retrieve_params.rbs +5 -4
  681. data/sig/modern_treasury/models/invoice_update_params.rbs +11 -11
  682. data/sig/modern_treasury/models/invoices/invoice_line_item.rbs +1 -1
  683. data/sig/modern_treasury/models/invoices/line_item_create_params.rbs +4 -4
  684. data/sig/modern_treasury/models/invoices/line_item_delete_params.rbs +5 -4
  685. data/sig/modern_treasury/models/invoices/line_item_list_params.rbs +4 -4
  686. data/sig/modern_treasury/models/invoices/line_item_retrieve_params.rbs +5 -4
  687. data/sig/modern_treasury/models/invoices/line_item_update_params.rbs +4 -4
  688. data/sig/modern_treasury/models/ledger.rbs +1 -1
  689. data/sig/modern_treasury/models/ledger_account.rbs +6 -6
  690. data/sig/modern_treasury/models/ledger_account_balance_monitor.rbs +7 -7
  691. data/sig/modern_treasury/models/ledger_account_balance_monitor_create_params.rbs +5 -5
  692. data/sig/modern_treasury/models/ledger_account_balance_monitor_delete_params.rbs +4 -4
  693. data/sig/modern_treasury/models/ledger_account_balance_monitor_list_params.rbs +4 -4
  694. data/sig/modern_treasury/models/ledger_account_balance_monitor_retrieve_params.rbs +4 -4
  695. data/sig/modern_treasury/models/ledger_account_balance_monitor_update_params.rbs +4 -4
  696. data/sig/modern_treasury/models/ledger_account_category.rbs +5 -5
  697. data/sig/modern_treasury/models/ledger_account_category_add_ledger_account_params.rbs +4 -4
  698. data/sig/modern_treasury/models/ledger_account_category_add_nested_category_params.rbs +4 -4
  699. data/sig/modern_treasury/models/ledger_account_category_create_params.rbs +4 -4
  700. data/sig/modern_treasury/models/ledger_account_category_delete_params.rbs +4 -4
  701. data/sig/modern_treasury/models/ledger_account_category_list_params.rbs +5 -5
  702. data/sig/modern_treasury/models/ledger_account_category_remove_ledger_account_params.rbs +4 -4
  703. data/sig/modern_treasury/models/ledger_account_category_remove_nested_category_params.rbs +4 -4
  704. data/sig/modern_treasury/models/ledger_account_category_retrieve_params.rbs +5 -5
  705. data/sig/modern_treasury/models/ledger_account_category_update_params.rbs +4 -4
  706. data/sig/modern_treasury/models/ledger_account_create_params.rbs +5 -5
  707. data/sig/modern_treasury/models/ledger_account_delete_params.rbs +4 -4
  708. data/sig/modern_treasury/models/ledger_account_list_params.rbs +8 -8
  709. data/sig/modern_treasury/models/ledger_account_retrieve_params.rbs +5 -5
  710. data/sig/modern_treasury/models/ledger_account_settlement.rbs +2 -2
  711. data/sig/modern_treasury/models/ledger_account_settlement_create_params.rbs +5 -5
  712. data/sig/modern_treasury/models/ledger_account_settlement_list_params.rbs +4 -4
  713. data/sig/modern_treasury/models/ledger_account_settlement_retrieve_params.rbs +4 -4
  714. data/sig/modern_treasury/models/ledger_account_settlement_update_params.rbs +5 -5
  715. data/sig/modern_treasury/models/ledger_account_settlements/account_entry_delete_params.rbs +7 -6
  716. data/sig/modern_treasury/models/ledger_account_settlements/account_entry_update_params.rbs +4 -4
  717. data/sig/modern_treasury/models/ledger_account_statement_create_params.rbs +4 -4
  718. data/sig/modern_treasury/models/ledger_account_statement_create_response.rbs +9 -9
  719. data/sig/modern_treasury/models/ledger_account_statement_retrieve_params.rbs +4 -4
  720. data/sig/modern_treasury/models/ledger_account_statement_retrieve_response.rbs +9 -9
  721. data/sig/modern_treasury/models/ledger_account_update_params.rbs +4 -4
  722. data/sig/modern_treasury/models/ledger_create_params.rbs +4 -4
  723. data/sig/modern_treasury/models/ledger_delete_params.rbs +5 -4
  724. data/sig/modern_treasury/models/ledger_entry.rbs +6 -6
  725. data/sig/modern_treasury/models/ledger_entry_list_params.rbs +8 -8
  726. data/sig/modern_treasury/models/ledger_entry_retrieve_params.rbs +5 -4
  727. data/sig/modern_treasury/models/ledger_entry_update_params.rbs +5 -4
  728. data/sig/modern_treasury/models/ledger_event_handler.rbs +4 -4
  729. data/sig/modern_treasury/models/ledger_event_handler_create_params.rbs +7 -7
  730. data/sig/modern_treasury/models/ledger_event_handler_delete_params.rbs +4 -4
  731. data/sig/modern_treasury/models/ledger_event_handler_list_params.rbs +4 -4
  732. data/sig/modern_treasury/models/ledger_event_handler_retrieve_params.rbs +4 -4
  733. data/sig/modern_treasury/models/ledger_event_handler_variable.rbs +2 -2
  734. data/sig/modern_treasury/models/ledger_list_params.rbs +4 -4
  735. data/sig/modern_treasury/models/ledger_retrieve_params.rbs +5 -4
  736. data/sig/modern_treasury/models/ledger_transaction.rbs +3 -3
  737. data/sig/modern_treasury/models/ledger_transaction_create_params.rbs +7 -7
  738. data/sig/modern_treasury/models/ledger_transaction_create_partial_post_params.rbs +6 -6
  739. data/sig/modern_treasury/models/ledger_transaction_create_reversal_params.rbs +6 -6
  740. data/sig/modern_treasury/models/ledger_transaction_list_params.rbs +9 -9
  741. data/sig/modern_treasury/models/ledger_transaction_retrieve_params.rbs +4 -4
  742. data/sig/modern_treasury/models/ledger_transaction_update_params.rbs +7 -7
  743. data/sig/modern_treasury/models/ledger_transactions/ledger_transaction_version.rbs +9 -9
  744. data/sig/modern_treasury/models/ledger_transactions/version_list_params.rbs +4 -4
  745. data/sig/modern_treasury/models/ledger_update_params.rbs +4 -4
  746. data/sig/modern_treasury/models/ledgerable_event.rbs +1 -1
  747. data/sig/modern_treasury/models/ledgerable_event_create_params.rbs +4 -4
  748. data/sig/modern_treasury/models/ledgerable_event_retrieve_params.rbs +4 -4
  749. data/sig/modern_treasury/models/legal_entity.rbs +17 -9
  750. data/sig/modern_treasury/models/legal_entity_association.rbs +19 -11
  751. data/sig/modern_treasury/models/legal_entity_association_create_params.rbs +26 -14
  752. data/sig/modern_treasury/models/legal_entity_compliance_detail.rbs +62 -0
  753. data/sig/modern_treasury/models/legal_entity_create_params.rbs +47 -23
  754. data/sig/modern_treasury/models/legal_entity_industry_classification.rbs +85 -0
  755. data/sig/modern_treasury/models/legal_entity_list_params.rbs +5 -5
  756. data/sig/modern_treasury/models/legal_entity_retrieve_params.rbs +4 -4
  757. data/sig/modern_treasury/models/legal_entity_update_params.rbs +23 -11
  758. data/sig/modern_treasury/models/line_item.rbs +3 -3
  759. data/sig/modern_treasury/models/line_item_list_params.rbs +5 -5
  760. data/sig/modern_treasury/models/line_item_retrieve_params.rbs +5 -5
  761. data/sig/modern_treasury/models/line_item_update_params.rbs +5 -5
  762. data/sig/modern_treasury/models/paper_item.rbs +2 -2
  763. data/sig/modern_treasury/models/paper_item_list_params.rbs +4 -4
  764. data/sig/modern_treasury/models/paper_item_retrieve_params.rbs +5 -4
  765. data/sig/modern_treasury/models/payment_flow.rbs +5 -5
  766. data/sig/modern_treasury/models/payment_flow_create_params.rbs +5 -5
  767. data/sig/modern_treasury/models/payment_flow_list_params.rbs +4 -4
  768. data/sig/modern_treasury/models/payment_flow_retrieve_params.rbs +4 -4
  769. data/sig/modern_treasury/models/payment_flow_update_params.rbs +5 -5
  770. data/sig/modern_treasury/models/payment_order.rbs +19 -13
  771. data/sig/modern_treasury/models/payment_order_create_async_params.rbs +27 -27
  772. data/sig/modern_treasury/models/payment_order_create_params.rbs +32 -32
  773. data/sig/modern_treasury/models/payment_order_list_params.rbs +7 -7
  774. data/sig/modern_treasury/models/payment_order_retrieve_params.rbs +4 -4
  775. data/sig/modern_treasury/models/payment_order_subtype.rbs +1 -1
  776. data/sig/modern_treasury/models/payment_order_type.rbs +1 -1
  777. data/sig/modern_treasury/models/payment_order_update_params.rbs +24 -24
  778. data/sig/modern_treasury/models/payment_orders/reversal.rbs +3 -3
  779. data/sig/modern_treasury/models/payment_orders/reversal_create_params.rbs +9 -9
  780. data/sig/modern_treasury/models/payment_orders/reversal_list_params.rbs +4 -4
  781. data/sig/modern_treasury/models/payment_orders/reversal_retrieve_params.rbs +5 -4
  782. data/sig/modern_treasury/models/payment_reference.rbs +9 -3
  783. data/sig/modern_treasury/models/payment_reference_list_params.rbs +5 -5
  784. data/sig/modern_treasury/models/payment_reference_retireve_params.rbs +4 -4
  785. data/sig/modern_treasury/models/payment_reference_retrieve_params.rbs +4 -4
  786. data/sig/modern_treasury/models/ping_response.rbs +1 -1
  787. data/sig/modern_treasury/models/reconciliation_rule.rbs +3 -3
  788. data/sig/modern_treasury/models/return_create_params.rbs +23 -19
  789. data/sig/modern_treasury/models/return_list_params.rbs +5 -5
  790. data/sig/modern_treasury/models/return_object.rbs +33 -23
  791. data/sig/modern_treasury/models/return_retrieve_params.rbs +5 -4
  792. data/sig/modern_treasury/models/routing_detail.rbs +4 -4
  793. data/sig/modern_treasury/models/routing_detail_create_params.rbs +7 -7
  794. data/sig/modern_treasury/models/routing_detail_delete_params.rbs +5 -5
  795. data/sig/modern_treasury/models/routing_detail_list_params.rbs +4 -4
  796. data/sig/modern_treasury/models/routing_detail_retrieve_params.rbs +4 -4
  797. data/sig/modern_treasury/models/routing_number_lookup_request.rbs +6 -4
  798. data/sig/modern_treasury/models/transaction.rbs +6 -4
  799. data/sig/modern_treasury/models/transaction_create_params.rbs +5 -5
  800. data/sig/modern_treasury/models/transaction_delete_params.rbs +5 -4
  801. data/sig/modern_treasury/models/transaction_direction.rbs +1 -1
  802. data/sig/modern_treasury/models/transaction_list_params.rbs +4 -4
  803. data/sig/modern_treasury/models/transaction_retrieve_params.rbs +5 -4
  804. data/sig/modern_treasury/models/transaction_update_params.rbs +5 -4
  805. data/sig/modern_treasury/models/transactions/line_item_create_params.rbs +4 -4
  806. data/sig/modern_treasury/models/transactions/line_item_delete_params.rbs +5 -4
  807. data/sig/modern_treasury/models/transactions/line_item_list_params.rbs +5 -5
  808. data/sig/modern_treasury/models/transactions/line_item_retrieve_params.rbs +5 -4
  809. data/sig/modern_treasury/models/transactions/transaction_line_item.rbs +3 -3
  810. data/sig/modern_treasury/models/validation_validate_routing_number_params.rbs +5 -5
  811. data/sig/modern_treasury/models/virtual_account.rbs +1 -1
  812. data/sig/modern_treasury/models/virtual_account_create_params.rbs +11 -11
  813. data/sig/modern_treasury/models/virtual_account_delete_params.rbs +4 -4
  814. data/sig/modern_treasury/models/virtual_account_list_params.rbs +4 -4
  815. data/sig/modern_treasury/models/virtual_account_retrieve_params.rbs +4 -4
  816. data/sig/modern_treasury/models/virtual_account_update_params.rbs +4 -4
  817. data/sig/modern_treasury/models/wealth_and_employment_details.rbs +7 -7
  818. data/sig/modern_treasury/request_options.rbs +1 -11
  819. data/sig/modern_treasury/resources/account_collection_flows.rbs +1 -1
  820. data/sig/modern_treasury/resources/account_details.rbs +1 -1
  821. data/sig/modern_treasury/resources/bulk_requests.rbs +1 -1
  822. data/sig/modern_treasury/resources/bulk_results.rbs +1 -1
  823. data/sig/modern_treasury/resources/connection_legal_entities.rbs +1 -1
  824. data/sig/modern_treasury/resources/connections.rbs +1 -1
  825. data/sig/modern_treasury/resources/counterparties.rbs +1 -1
  826. data/sig/modern_treasury/resources/documents.rbs +2 -2
  827. data/sig/modern_treasury/resources/events.rbs +1 -1
  828. data/sig/modern_treasury/resources/expected_payments.rbs +1 -1
  829. data/sig/modern_treasury/resources/external_accounts.rbs +1 -1
  830. data/sig/modern_treasury/resources/foreign_exchange_quotes.rbs +1 -1
  831. data/sig/modern_treasury/resources/incoming_payment_details.rbs +2 -1
  832. data/sig/modern_treasury/resources/internal_accounts/balance_reports.rbs +1 -1
  833. data/sig/modern_treasury/resources/internal_accounts.rbs +1 -1
  834. data/sig/modern_treasury/resources/invoices/line_items.rbs +1 -1
  835. data/sig/modern_treasury/resources/invoices.rbs +1 -1
  836. data/sig/modern_treasury/resources/ledger_account_balance_monitors.rbs +1 -1
  837. data/sig/modern_treasury/resources/ledger_account_categories.rbs +1 -1
  838. data/sig/modern_treasury/resources/ledger_account_settlements/account_entries.rbs +1 -1
  839. data/sig/modern_treasury/resources/ledger_account_settlements.rbs +1 -1
  840. data/sig/modern_treasury/resources/ledger_accounts.rbs +1 -1
  841. data/sig/modern_treasury/resources/ledger_entries.rbs +1 -1
  842. data/sig/modern_treasury/resources/ledger_event_handlers.rbs +1 -1
  843. data/sig/modern_treasury/resources/ledger_transactions/versions.rbs +1 -1
  844. data/sig/modern_treasury/resources/ledger_transactions.rbs +1 -1
  845. data/sig/modern_treasury/resources/ledgers.rbs +1 -1
  846. data/sig/modern_treasury/resources/legal_entities.rbs +5 -1
  847. data/sig/modern_treasury/resources/line_items.rbs +1 -1
  848. data/sig/modern_treasury/resources/paper_items.rbs +1 -1
  849. data/sig/modern_treasury/resources/payment_flows.rbs +1 -1
  850. data/sig/modern_treasury/resources/payment_orders/reversals.rbs +1 -1
  851. data/sig/modern_treasury/resources/payment_orders.rbs +1 -1
  852. data/sig/modern_treasury/resources/payment_references.rbs +1 -1
  853. data/sig/modern_treasury/resources/returns.rbs +2 -1
  854. data/sig/modern_treasury/resources/routing_details.rbs +1 -1
  855. data/sig/modern_treasury/resources/transactions/line_items.rbs +1 -1
  856. data/sig/modern_treasury/resources/transactions.rbs +1 -1
  857. data/sig/modern_treasury/resources/virtual_accounts.rbs +1 -1
  858. data/sig/modern_treasury/version.rbs +1 -1
  859. metadata +59 -23
  860. data/lib/modern_treasury/base_client.rb +0 -457
  861. data/lib/modern_treasury/base_model.rb +0 -1211
  862. data/lib/modern_treasury/base_page.rb +0 -59
  863. data/lib/modern_treasury/extern.rb +0 -7
  864. data/lib/modern_treasury/page.rb +0 -92
  865. data/lib/modern_treasury/pooled_net_requester.rb +0 -180
  866. data/lib/modern_treasury/util.rb +0 -728
  867. data/rbi/lib/modern_treasury/base_client.rbi +0 -197
  868. data/rbi/lib/modern_treasury/base_model.rbi +0 -645
  869. data/rbi/lib/modern_treasury/base_page.rbi +0 -36
  870. data/rbi/lib/modern_treasury/extern.rbi +0 -7
  871. data/rbi/lib/modern_treasury/page.rbi +0 -31
  872. data/rbi/lib/modern_treasury/pooled_net_requester.rbi +0 -62
  873. data/rbi/lib/modern_treasury/util.rbi +0 -281
  874. data/sig/modern_treasury/base_client.rbs +0 -108
  875. data/sig/modern_treasury/base_model.rbs +0 -262
  876. data/sig/modern_treasury/base_page.rbs +0 -20
  877. data/sig/modern_treasury/extern.rbs +0 -4
  878. data/sig/modern_treasury/page.rbs +0 -17
  879. data/sig/modern_treasury/pooled_net_requester.rbs +0 -37
  880. data/sig/modern_treasury/util.rbs +0 -136
data/CHANGELOG.md ADDED
@@ -0,0 +1,635 @@
1
+ # Changelog
2
+
3
+ ## 0.1.0-alpha.18 (2025-04-17)
4
+
5
+ Full Changelog: [v0.1.0-alpha.17...v0.1.0-alpha.18](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.17...v0.1.0-alpha.18)
6
+
7
+ ### Features
8
+
9
+ * **client:** enable setting base URL from environment variable ([8b57199](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8b57199c16d42d8071872ba0d782887700247b80))
10
+ * use Pathname alongside raw IO handles for file uploads ([#362](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/362)) ([597ca71](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/597ca71588eb90a6a7c0ad3fc170378bcba1f599))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * always send idempotency header when specified as a request option ([be266d1](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/be266d1d21f0db2b1542c61d448e66421bdb92e2))
16
+ * **client:** send correct HTTP path ([2befc5f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2befc5fa50540d382cd929703eec84e3c9595afb))
17
+ * inaccuracies in the README.md ([6546328](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/65463285d724960027021dcf2ff351d06be0f10e))
18
+ * **internal:** update release-please to use ruby strategy for README.md ([#366](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/366)) ([a04f5fd](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a04f5fd4909acf8e7ee4e2554f06a87ba51166e6))
19
+ * raise connection error for errors that result from HTTP transports ([#363](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/363)) ([5391daa](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5391daa2da684394e8ae235133f9f0437e33d7e9))
20
+
21
+
22
+ ### Chores
23
+
24
+ * add README docs for using solargraph when installing gem from git ([#361](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/361)) ([6768c5a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6768c5ab9d99bfe84382c9129cd092a789646531))
25
+ * ensure readme.md is bumped when release please updates versions ([#365](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/365)) ([97c0c4a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/97c0c4af8f89730fc2e1b3785bd346774ab90401))
26
+ * fix readme typo ([#368](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/368)) ([4362053](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4362053ecd2442a4e8a40fdd75332efacdb8aba2))
27
+ * **internal:** always run post-processing when formatting when syntax_tree ([4e47da9](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4e47da9b1a896bebea37a4287b5175d7519b99f9))
28
+ * **internal:** contribute.md and contributor QoL improvements ([8297e5a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8297e5a75ff90e1787e77286092672ce5961d8a2))
29
+ * **internal:** expand CI branch coverage ([#367](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/367)) ([5ee08dc](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5ee08dc8e0598365a230df36ecade1e86c202759))
30
+ * **internal:** loosen internal type restrictions ([5c895bd](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5c895bdb64e2e32678ae632f246db0d4856c7c46))
31
+ * **internal:** minor touch ups on sdk internals ([ae77c2f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ae77c2f7e48a4c3f26d7e4db97b973ec68ca51d2))
32
+ * **internal:** mostly README touch ups ([568453c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/568453cc2806f30273ad19866064a421cd33b7ee))
33
+ * **internal:** protect SSE parsing pipeline from broken UTF-8 characters ([f67f9d8](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f67f9d8970659c3895bc8f7dc2f2bd6c269532af))
34
+ * **internal:** reduce CI branch coverage ([33a4b73](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/33a4b73c08d7ac413d999d5f1390924ce82382a8))
35
+ * **internal:** version bump ([#358](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/358)) ([a8942eb](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a8942ebb7120bd68049f6e9422a5e54cd87d0541))
36
+ * loosen const and integer coercion rules ([#364](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/364)) ([3c2b2f4](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3c2b2f4c8d46b6d3870164dcd117c814c54a9253))
37
+ * make client tests look prettier ([#360](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/360)) ([7d2283b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7d2283b7d3a0092c82d9baf01b37af791ef6c40f))
38
+ * make internal types pretty print ([b76c12a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b76c12ab4ff61ce339ea4fc1df769014b4996570))
39
+
40
+
41
+ ### Documentation
42
+
43
+ * update documentation links to be more uniform ([9f1a370](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9f1a3701c2ac13f94737ee9e89e7eef12252ed8e))
44
+
45
+ ## 0.1.0-alpha.17 (2025-04-06)
46
+
47
+ Full Changelog: [v0.1.0-alpha.16...v0.1.0-alpha.17](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.16...v0.1.0-alpha.17)
48
+
49
+ ### ⚠ BREAKING CHANGES
50
+
51
+ * bump min supported ruby version to 3.1 (oldest non-EOL) ([#340](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/340))
52
+ * remove top level type aliases to relocated classes ([#339](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/339))
53
+ * use descriptive prefixes for enum names that start with otherwise illegal identifiers ([#337](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/337))
54
+
55
+ ### Features
56
+
57
+ * add MCP server ([3aa7780](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3aa77804dceedbb3efae995c98c9f8077ff1faba))
58
+ * add reference links in yard ([#330](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/330)) ([cb2ef85](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/cb2ef8514bb2bc2e7d359b19570687d9e75f6fb2))
59
+ * allow all valid `JSON` types to be encoded ([#349](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/349)) ([9bd6f82](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9bd6f82f0dbfeaa78355e875a087bcc8dcea335c))
60
+ * bump min supported ruby version to 3.1 (oldest non-EOL) ([#340](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/340)) ([53d55b9](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/53d55b91f390d703dbe25754ab6a3075f0c2f1c0))
61
+ * implement `to_json` for base model ([#335](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/335)) ([7a56d21](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7a56d210eb933bca6003046c89d2d455f590b5f6))
62
+ * **internal:** converter interface should recurse without schema ([#321](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/321)) ([ded9140](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ded9140f4e2d9d8a9785afdaa578d08e10fa7ea9))
63
+ * link response models to their methods in yard doc ([#332](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/332)) ([05d1e20](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/05d1e20ead49c2c3653bb3cd08f662c2d829e91a))
64
+ * remove top level type aliases to relocated classes ([#339](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/339)) ([9afce0d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9afce0d0f25ef07a8a857b1dcc9f7bbb7530a1b5))
65
+ * support query, header, and body params that have identical names ([#348](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/348)) ([e35fb82](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/e35fb82d31d79b2671fde813a837ec062a2d369a))
66
+ * support solargraph generics ([#343](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/343)) ([a81a079](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a81a07990c1994bff073ea0d646821306481a6b9))
67
+
68
+
69
+ ### Bug Fixes
70
+
71
+ * converter should transform stringio into string where applicable ([#351](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/351)) ([f4a849d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f4a849dd63737683a01741ed322f1d7562ccd23a))
72
+ * path interpolation template strings ([#329](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/329)) ([f1ee0a1](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f1ee0a1fc3afdbd745fb6fb40db96303854af648))
73
+ * pre-release version string should match ruby, not semver conventions ([#342](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/342)) ([4dc22d4](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4dc22d4bba56267d9bab69ed71c918f77d35add1))
74
+ * switch to github compatible markdown engine ([#326](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/326)) ([b238e1a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b238e1aefdf777f39ce8ace5ca215124d48206ee))
75
+ * use descriptive prefixes for enum names that start with otherwise illegal identifiers ([#337](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/337)) ([f30e768](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f30e768a6e784f8c856b58caf6ad6ba5c9b3abf0))
76
+
77
+
78
+ ### Chores
79
+
80
+ * always fold up method bodies in sorbet type definitions ([#355](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/355)) ([c0b5534](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c0b5534c3fede2b2021fc116d05a3dc73ff75504))
81
+ * **api:** updates to bulk creation request, legal entity schemas and more ([#316](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/316)) ([a03bb4d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a03bb4d6a6e779dce45bf424f67c2b31ba8da146))
82
+ * configure new SDK language ([a6de59e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a6de59e84504a01f3da3010ddb79308d0a96d677))
83
+ * configure new SDK language ([09a49b9](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/09a49b950b33b3940c337d260621a57f69583475))
84
+ * demonstrate how to make undocumented requests in README ([#341](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/341)) ([c3489e3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c3489e35444392a4e357959b2d104708b500332e))
85
+ * do not use literals for version in type definitions ([#344](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/344)) ([822ce3f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/822ce3f828da0ad1f8adae0b421089a5799999a9))
86
+ * document LSP support in read me ([#347](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/347)) ([f978eb3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f978eb34aef0e95c239e56e01cac224b64ca0005))
87
+ * extract error classes into own module ([#336](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/336)) ([48820b7](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/48820b79fbce435d12114ce166ae732f54f33ac9))
88
+ * fix misc rubocop errors ([#327](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/327)) ([9de60b3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9de60b3cf4aff93a7239083892e0128e31dbfe81))
89
+ * improve yard docs readability ([#331](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/331)) ([739d3ee](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/739d3ee42507a3e0c43364a88c3cd10174df1121))
90
+ * internal codegen changes ([cc68144](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/cc681440dddb8bb316155518bfe68137c11e146e))
91
+ * **internal:** minor refactoring of utils ([#320](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/320)) ([5ea443d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5ea443d4e6e2e8c646817f81345b57a19524f77d))
92
+ * **internal:** misc small improvements ([#352](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/352)) ([8bbe0ab](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8bbe0aba630f2197bc3c0d2e5e58d42bfee4ce7e))
93
+ * **internal:** more concise handling of parameter naming conflicts ([#357](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/357)) ([f58b2f2](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f58b2f2731c0ef7d699e1b32f19fd01e2ad47f0c))
94
+ * **internal:** remove CI condition ([#319](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/319)) ([fa5282f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fa5282fb5bf2042e625b88e3ad47dd335997f9f5))
95
+ * **internal:** rubocop rules ([#354](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/354)) ([afd8ba5](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/afd8ba5585e9a3cb7869e327ac2586f49e6db585))
96
+ * **internal:** run rubocop linter in parallel ([#353](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/353)) ([370a349](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/370a349e3b31e63f084cbc934cacb0ae2cbbdba4))
97
+ * misc sdk polish ([#346](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/346)) ([21230fa](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/21230fa66c9368c67d4dafb64f6137437c25d8a8))
98
+ * more accurate type annotations for SDK internals ([#324](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/324)) ([7e768dd](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7e768dd81bee770ae246bef5bb9c56329cde9625))
99
+ * move private classes into internal module ([#338](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/338)) ([29f5b63](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/29f5b631a578f2c2cc4ac6ee7f76d9e37eef5e3f))
100
+ * order client variables by "importance" ([#334](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/334)) ([fb43aa5](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fb43aa558cea5eb7b079b17c1baaa201f61df79c))
101
+ * relax sorbet enum parameters to allow `String` in addition to `Symbol` ([#333](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/333)) ([ea508e7](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ea508e7c5e69b8bace4d222796fe71bf4ab4c366))
102
+ * relocate internal modules ([#323](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/323)) ([47869c8](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/47869c8f805fb642cef8b25bfe8b150c06d4daab))
103
+ * Remove deprecated/unused remote spec feature ([88c38e8](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/88c38e87ab1d1795b06698fb7dd5bc701daf6d2b))
104
+ * remove unnecessary & confusing module ([#322](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/322)) ([96f186c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/96f186c6efec72c630ae5f25f8f49adcccce50b3))
105
+ * rename confusing `Type::BooleanModel` to `Type::Boolean` ([#350](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/350)) ([5a22de7](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5a22de720869b8090535696a2c309ebae284c073))
106
+ * simplify internal utils ([#345](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/345)) ([cfbcae4](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/cfbcae4a8cf325ee82657d5d72b7b8532c78e7ec))
107
+ * update readme ([#325](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/325)) ([794e9b6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/794e9b63de57bdabe0358fbf28352c6c366093da))
108
+ * update yard comment formatting ([#356](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/356)) ([ef20bc0](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ef20bc0a2cecdefd4505812ae16c69881ae46f26))
109
+ * use fully qualified name in sorbet README example ([#328](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/328)) ([b99eba2](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b99eba2b7e588e3dc3233f1f7ce148c2ef7059ea))
110
+
111
+ ## 0.1.0-alpha.16 (2025-03-27)
112
+
113
+ Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
114
+
115
+ ### ⚠ BREAKING CHANGES
116
+
117
+ * use tagged enums in sorbet type definitions ([#302](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/302))
118
+ * support `for item in stream` style iteration on `Stream`s ([#300](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/300))
119
+ * **model:** base model should recursively store coerced base models ([#289](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/289))
120
+
121
+ ### Features
122
+
123
+ * add deprecation notice to enum members and resources ([#244](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/244)) ([fb72692](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fb72692ef48d0beeb9c5cc0ce29d9ce57cdb9fd5))
124
+ * add jsonl support ([#258](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/258)) ([976b6cc](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/976b6cc94ba23e3fe45f3ccf89cdacc30437d2da))
125
+ * add SKIP_BREW env var to ./scripts/bootstrap ([#262](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/262)) ([6dde65a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6dde65a27f715100ac7efd110e2e62f29da9db89))
126
+ * consistently accept `AnyHash` types in parameter positions in sorbet ([#307](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/307)) ([7c5b92c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7c5b92ca758bac921b0093bbb87b59383606d514))
127
+ * **internal:** modified tests for thread and fiber safety ([#250](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/250)) ([dfae756](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/dfae756f1770139b8a03a4883aa46d34b6cedfdd))
128
+ * isolate platform headers ([#245](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/245)) ([37ee661](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/37ee661500df8b2a5c5b45fa48152a14ec7fb601))
129
+ * prevent tapioca from introspecting the gem internals ([#306](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/306)) ([ab48c2e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ab48c2ecc47cb4f253a8276c3ef67ee72956ec0f))
130
+ * support `for item in stream` style iteration on `Stream`s ([#300](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/300)) ([57a92cf](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/57a92cf5eb08cbd41c543e5153422c6db75b09d8))
131
+ * support client level methods ([#265](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/265)) ([bd55768](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/bd557686ba505e3c60a007b6ef41ebc68bea8b37))
132
+ * support jsonl uploads ([#277](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/277)) ([e72650d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/e72650db988af6f1bca15defb9a061b8c510e919))
133
+ * support streaming uploads ([#270](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/270)) ([a4f928e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a4f928ee5a2a23d58ee0ff90cce869a9dde601a6))
134
+ * use tagged enums in sorbet type definitions ([#302](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/302)) ([3f08a9b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3f08a9b1dad4c6af9da1863c0a9de7a91edef4fd))
135
+ * use Time type instead of String ([#248](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/248)) ([43a8bce](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/43a8bce634d49d9e185c70030ba5eebbbee1fe88))
136
+
137
+
138
+ ### Bug Fixes
139
+
140
+ * bad documentation url for gemdocs.org ([#288](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/288)) ([1ec5b6f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/1ec5b6f6dbd2276dcafacfcf40ede4680c876da2))
141
+ * better support header parameters ([#251](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/251)) ([ea3f187](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ea3f1875e37f7cef409980927e84c3766263b068))
142
+ * enums should only coerce matching symbols into strings ([#271](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/271)) ([54a0d52](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/54a0d52532c402ef5cf184dfb5e48f499120680e))
143
+ * label optional keyword arguments in *.rbs type definitions ([#298](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/298)) ([484b14c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/484b14c1baf14839dfeba00e2b50b199aef45dce))
144
+ * **model:** base model should recursively store coerced base models ([#289](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/289)) ([6dcd8ee](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6dcd8ee4ddb0429c7c31db5ee483220356d8a288))
145
+ * pages should be able to accept non-converter models ([#310](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/310)) ([b68aa0f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b68aa0fb3f18bdcb64bdf12982159754696fa9fe))
146
+ * rectify a mistake where wrong lines were chosen during rebase ([#266](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/266)) ([c802cd1](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c802cd188f414afae8c51a12e067feeab78d6d46))
147
+ * resolve tapioca derived sorbet errors ([#301](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/301)) ([5def2e0](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5def2e0076a1c599eef945ea87a157178753ebff))
148
+ * sorbet class aliases are not type aliases ([#297](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/297)) ([0b2ed47](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/0b2ed47703ee3df1cdc7d54115cced647a9d2ff8))
149
+ * yard example tag formatting ([#304](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/304)) ([c2bbb15](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c2bbb1560c8f0d9eda8b0e9a7495521dba317625))
150
+
151
+
152
+ ### Chores
153
+
154
+ * `BaseModel` fields that are `BaseModel` typed should also accept `Hash` ([#303](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/303)) ([0f19c3f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/0f19c3f8111ba89df2f675eb0def49d2cd54e823))
155
+ * add `[@yieldparam](https://github.com/yieldparam)` to yard doc ([#293](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/293)) ([fcc16ec](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fcc16ec81f9da585d3a496f0a11a9831c5191973))
156
+ * add `sorbet` section to README ([#263](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/263)) ([520a6f6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/520a6f6e21bbcb4e2050d26684b9166244773b12))
157
+ * add example directory ([#296](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/296)) ([fcf4305](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fcf430583250d5d94dce5a4e189c7c4c1374f443))
158
+ * add more examples to README.md ([#264](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/264)) ([7ad1314](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7ad1314455b2c37a26253792f3754703277b7358))
159
+ * add most doc strings to rbi type definitions ([#278](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/278)) ([957e838](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/957e838cf25877b399bda8ba62c8b1ace20db9e9))
160
+ * add type annotations for enum and union member listing methods ([#305](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/305)) ([f22016b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f22016b098d65cc4dc6e0c40d388bd6bcb782ba7))
161
+ * be consistent and use lower case headers everywhere ([#252](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/252)) ([17b99c3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/17b99c3773896718c3f892eed230487f7fd779bc))
162
+ * bump lockfile ([#255](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/255)) ([3bb9a63](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3bb9a63411a8c6feeccad1d8e3c928a60cd0bd04))
163
+ * disable dangerous rubocop auto correct rule ([#312](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/312)) ([35c3f9a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/35c3f9abfaa32eec7c85a620ec1958fbeb7190f6))
164
+ * disable overloads in `*.rbs` definitions for readable LSP errors ([#299](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/299)) ([59eae12](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/59eae125ac716b8592ec4085bbfa68d58e945520))
165
+ * disable unnecessary linter rules for sorbet manifests ([#292](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/292)) ([3860a7f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3860a7f5580c6c360b097ff4ebafbc20e0650113))
166
+ * do not label modules as abstract ([#287](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/287)) ([fdc9bab](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fdc9bab299e51058cf1e2e064ebd28b4529cf6ce))
167
+ * document Client's concurrency capability ([#291](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/291)) ([ad2e938](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ad2e9387a1b30c7d01d13a799b740fb007ead56a))
168
+ * document union variants in yard doc ([#282](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/282)) ([e74d95e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/e74d95e3899561aa99679f419531860d0f759002))
169
+ * ensure doc strings for rbi method arguments ([#279](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/279)) ([852e73c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/852e73c7ae27707e67c74d3653f726b4f785831e))
170
+ * error fields are now mutable in keeping with rest of SDK ([#281](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/281)) ([230c82a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/230c82a6f34799acff8c3b9c2a5cb5d452882988))
171
+ * fused enum should use faster internal iteration by default ([#268](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/268)) ([039e8e3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/039e8e3e70f5d95886526944365ffe93b20e7b57))
172
+ * generate better supported rbi signatures ([#260](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/260)) ([24a7a0b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/24a7a0be46446742ba39a4b5c04a6fa04c09d26c))
173
+ * ignore some spurious linter warnings and formatting changes ([#290](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/290)) ([cc00998](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/cc00998f6c12586875def66d86f426d794e22250))
174
+ * improve documentation ([#269](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/269)) ([8827afe](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8827afee672339402beb1ed67159a77ecb326ede))
175
+ * improve rbi typedef for page classes ([#274](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/274)) ([b554a85](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b554a858f1c9f4a8904ff2cec74e88eb942b61ae))
176
+ * **internal:** add sorbet config for SDK local development ([#295](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/295)) ([8b134d2](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8b134d228300cc041e4143dd8bcce4a792cf8157))
177
+ * **internal:** add utils methods for parsing SSE ([#253](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/253)) ([0bfd6f6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/0bfd6f69f8255beea8af70668b12cde28413c87a))
178
+ * **internal:** group related utils together ([#247](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/247)) ([7433b72](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7433b728498965cd6c403d8111f0574dfec54335))
179
+ * **internal:** prune unused `extern` references ([#242](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/242)) ([3a44bf4](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3a44bf4d6624ed702295e6b7f434f2d1cec1f4a3))
180
+ * **internal:** remove extra empty newlines ([#275](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/275)) ([4c4d3e7](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4c4d3e77a972df4399be1d37585a091fbd26104e))
181
+ * mark non-inheritable SDK internal classes as final ([#284](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/284)) ([eec18e8](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/eec18e8d531fdb3de779dc1e8d7977c7ff919db9))
182
+ * modify sorbet initializers to better support auto-completion ([#261](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/261)) ([342f949](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/342f9492844abf691981fe616085dd0a90464efd))
183
+ * more aggressive tapioca detection logic for skipping compiler introspection ([#315](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/315)) ([ec93f39](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ec93f39cfd8c43e0c8eaf82daad90f74a6cab4c2))
184
+ * more readable output when tests fail ([#313](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/313)) ([68e6ebf](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/68e6ebf0e4790f24730ba2d89f54ca946e1e141b))
185
+ * move examples into tests ([#257](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/257)) ([fed4bb0](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fed4bb0f821bfe0072896519c5419f7ee7f316de))
186
+ * pagination ([#267](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/267)) ([37d0695](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/37d06957f4738772cc24bd00c3866e780cb95208))
187
+ * recursively accept `AnyHash` for `BaseModel`s in arrays and hashes ([#308](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/308)) ([a11f16b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a11f16bb8a1293bd958ce040d131f3e79805f1b3))
188
+ * reduce verbosity in type declarations ([#311](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/311)) ([000bb00](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/000bb001597f30b977cdbe86725968be0fc58c8a))
189
+ * refactor BasePage to have initializer ([#273](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/273)) ([d7310d5](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/d7310d52af5a201a2ddfc1f01b5a739efda60c72))
190
+ * **refactor:** improve requester internals ([#246](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/246)) ([cf4388f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/cf4388faaf7f871a005a6ef60b9e0f44f4ea03b0))
191
+ * remove stale thread local checks ([#272](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/272)) ([cda480c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/cda480cb4e4d044dc07b86d7ab922182dd34fa7a))
192
+ * rename misleading variable ([#256](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/256)) ([5d27783](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5d277830203c12ee4745b2905d12cf7b02a12891))
193
+ * sdk client internal refactoring ([#286](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/286)) ([c22dc61](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c22dc619a1f52aa868ce7d70a4a1be9f9811ddbf))
194
+ * sdk internal updates ([#276](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/276)) ([99b568c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/99b568c1aa7a2c459e55651f0844350d9644da40))
195
+ * slightly more consistent type definition layout ([#283](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/283)) ([6d3fab6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6d3fab6b14967169a84e242391222572d270f7b1))
196
+ * support different EOLs in streaming ([#259](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/259)) ([3726c3d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3726c3d3f6f0fc92d4f6bc74092293601c84b5c2))
197
+ * switch to prettier looking sorbet annotations ([#309](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/309)) ([7a9697a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7a9697a41665dabd07d05a93be5db76f500ce8c7))
198
+ * touch up sdk usage examples ([#280](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/280)) ([ba2e4bc](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ba2e4bcd80c478f7600c068ec7fd313707d3e1ce))
199
+ * update custom timeout header name ([#254](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/254)) ([05892f9](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/05892f94f01a5fd8a31d5211c1fbe886f93b966b))
200
+ * use generics instead of overloading for sorbet type definitions ([#285](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/285)) ([60c0274](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/60c02749fe27dada0a830b6dea3b7282d78ae742))
201
+ * use multi-line formatting style for really long lines ([#294](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/294)) ([3a1710c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3a1710c5523848f3edc1ad09f0cc917f74dc48b2))
202
+
203
+
204
+ ### Documentation
205
+
206
+ * update URLs from stainlessapi.com to stainless.com ([#249](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/249)) ([4b26881](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4b268816ee6ccd4f2c8e0757c853058baaaf82e1))
207
+
208
+ ## 0.1.0-alpha.15 (2025-02-21)
209
+
210
+ Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.14...v0.1.0-alpha.15)
211
+
212
+ ### Features
213
+
214
+ * make `build_request` overridable ([#238](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/238)) ([6e779f7](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6e779f7d539463db7518abdc0c71913580f2ab1f))
215
+
216
+
217
+ ### Chores
218
+
219
+ * add type annotations for requester ([#239](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/239)) ([fa0d3fe](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fa0d3fef94a8b038ef2b793feeb68e424a20c139))
220
+ * **internal:** refactor request stack ([#237](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/237)) ([1aa2a1d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/1aa2a1d4937b4bffc69705563612ed50fec39c82))
221
+ * make MFA optional depending on token ([#234](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/234)) ([b5af3cf](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b5af3cfce0877b2b9acb88cf0a700ea911ecb7fe))
222
+ * move basemodel examples into tests ([#236](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/236)) ([6243121](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/624312124e248600fb0292cabe46eccc0dc7f939))
223
+ * reorganize import ordering ([#240](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/240)) ([e862d05](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/e862d052b61501c761d2ca69b1eee81b7570c56d))
224
+ * sort imports via topological dependency & file path ([#241](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/241)) ([2d17f3e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2d17f3e3d27e8fdab2eff3574de3d65a2dc68f67))
225
+
226
+ ## 0.1.0-alpha.14 (2025-02-19)
227
+
228
+ Full Changelog: [v0.1.0-alpha.13...v0.1.0-alpha.14](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.13...v0.1.0-alpha.14)
229
+
230
+ ### ⚠ BREAKING CHANGES
231
+
232
+ * encode objects in multipart encoding as JSON ([#206](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/206))
233
+ * base page should be module instead of class ([#197](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/197))
234
+ * breaking change - improved request options signatures ([#191](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/191))
235
+
236
+ ### Features
237
+
238
+ * breaking change - improved request options signatures ([#191](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/191)) ([0024863](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/00248638aa3dbb46960da7faa8c1f9ec8b1a9801))
239
+ * bundle typing manifests with gem release ([#219](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/219)) ([f307c50](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f307c50fb0f06358a59c43101db7b42a18df45ee))
240
+ * **client:** send `X-Stainless-Read-Timeout` header ([#208](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/208)) ([ca214f6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ca214f6a25af6b03e3468a531261d3366ac32086))
241
+ * enable type annotations ([#198](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/198)) ([d3293dd](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/d3293dd50eb1c947a86fecf5fd598c6ebdc1ab94))
242
+ * improve interface readability, especially in `*.rbi` ([#200](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/200)) ([4fa44ec](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4fa44ecf2ff8e3e024523ba885c5dc507aa51dd2))
243
+ * improve sorbet attribute signatures ([#199](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/199)) ([058e8cb](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/058e8cbfacd51b864f0f83d9bbab0bcc26f7f2ac))
244
+ * inline sorbet type aliases ([#215](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/215)) ([6f729c1](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6f729c115df9597141ba098cd6b6ab93baa0e3e5))
245
+ * support const enums ([#189](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/189)) ([b7c2fcc](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b7c2fcc5cf99ad586a1a5f9ad3671192915ee046))
246
+ * support overlapping HTTP requests in same Fiber ([#228](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/228)) ([5bff049](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5bff0497931079a0d2c13aa635dc84940e5b05e1))
247
+ * unify param & return types in yard ([#195](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/195)) ([db72553](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/db72553236250c09b66cba4550e2c9beadf18d14))
248
+
249
+
250
+ ### Bug Fixes
251
+
252
+ * base client type annotations ([#211](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/211)) ([7844e59](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7844e59681739e123261359db4e98363ef59416c))
253
+ * base page should be module instead of class ([#197](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/197)) ([1e440ea](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/1e440eaa22739370b6e248a56965d41f18911499))
254
+ * correctly mark optional arrays and hashes as nullable ([#201](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/201)) ([b226c47](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b226c47432b0fe806ca363f2cf603c9151047abe))
255
+ * encode objects in multipart encoding as JSON ([#206](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/206)) ([54bbc66](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/54bbc66f9729bfd131f06097bc5ae72b18ea31b1))
256
+ * mark nullable property as nullable ([#202](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/202)) ([55d140a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/55d140a62725dc92fa7da80954a24adf9f34224f))
257
+ * sorbet request method signatures should support default values ([#214](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/214)) ([ed35053](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ed35053b4e71dec020670b797f6ba376393ac6aa))
258
+ * ssl timeout not required when TCP socket open timeout specified ([#229](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/229)) ([7173972](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7173972a2c3623dbfdc424497f77e07043972b47))
259
+ * temporarily run CI without bundler cache ([#217](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/217)) ([3b1ddbd](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3b1ddbd942acc268e96379ecc8235b3201c6a920))
260
+ * **type signature:** remove extraneous `params` from resource methods ([#204](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/204)) ([d776b74](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/d776b74573795784ee926186c4d2c84c76adfb6b))
261
+ * update outdated examples ([#213](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/213)) ([4980f7a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4980f7a0bf9415c0ae089001a14dc7422a002625))
262
+
263
+
264
+ ### Chores
265
+
266
+ * bump lockfile ([#232](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/232)) ([4b3dc70](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4b3dc70de28ad5f5267728751dcb670ac0f79e75))
267
+ * bump sorbet ([#222](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/222)) ([f9fd964](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f9fd9641c1cbc0e7e999f1b81cf2f06f0e77b01b))
268
+ * clamp timeout to range of positive floats ([#209](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/209)) ([133b26f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/133b26f42a68dfd1cc32233dd99fc4266f877cf1))
269
+ * clean up client tests ([#230](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/230)) ([82c5462](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/82c54625f5c727a35b990c9115a9565489a5f9d8))
270
+ * do not git ignore `bin/` ([#218](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/218)) ([7e2fb52](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7e2fb52d9550b4c06231b7bf6a7b7b6a3889855f))
271
+ * enable full pagination tests ([#226](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/226)) ([e5f53ef](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/e5f53ef359307ec5c0cae683189d471b9ffae7a5))
272
+ * fix a yard doc comment ([#192](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/192)) ([f4d692d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f4d692d0097dee7d5bcde3d79f09d95b0a8d14c0))
273
+ * formatting change for `*.rbi` files ([#216](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/216)) ([8d45576](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8d45576f38df234a1a9e7179e9b99ff0b7639ec2))
274
+ * fully qualify `Array` and `Hash` in rbs files to avoid collisions ([#221](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/221)) ([114a85a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/114a85a15afd31e9003ca44904615ab1d16839e7))
275
+ * **internal:** bump dependencies ([#224](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/224)) ([898ac45](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/898ac4503989c015330ae143ba14a680ef2aac25))
276
+ * **internal:** formatting ([#231](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/231)) ([e13ad42](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/e13ad423b18cadf690281c357f97473312abdc44))
277
+ * **internal:** update dependencies ([#207](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/207)) ([aa506f2](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/aa506f26be7ceee01d65bafc96a8ca87760b4557))
278
+ * **internal:** update lock file ([#203](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/203)) ([f702918](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f702918a9533d3020b341e4b17888899524fe04d))
279
+ * **internal:** update lock file ([#205](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/205)) ([c50c320](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c50c320ad013aa13f5d841c7cbea338dec214b64))
280
+ * **internal:** update lock file ([#210](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/210)) ([7d153ef](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7d153efd878833c046685fbfd015b149003f3b64))
281
+ * **internal:** update lock file ([#227](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/227)) ([4bfda6a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4bfda6a82a2573ee025359374980a98a20b66bc6))
282
+ * refactor util method signatures ([#194](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/194)) ([2e1075a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2e1075a30f959d448d08f51120bf12fbf3f86906))
283
+ * rename internal type aliases ([#233](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/233)) ([5e138d9](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5e138d9a89360c8a954f5eb8cefc336108c11a35))
284
+ * support (deprecated) ruby 3.0 as well ([#212](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/212)) ([0e9e2a7](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/0e9e2a7eb6daeb2d3fb5ec9126ba5feb135a28f9))
285
+ * update deps ([#220](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/220)) ([0269f2f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/0269f2f284eb8f06d5454179193956deb9fcf2f1))
286
+ * update deps ([#223](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/223)) ([238f120](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/238f12070b58046658cb64ac80749636777090ac))
287
+ * use concise syntax for pattern matching ([#225](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/225)) ([0adb49f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/0adb49f019711b935890fcb85ae5c3502ea1889a))
288
+
289
+
290
+ ### Refactors
291
+
292
+ * **client:** impose consistent sdk internals layout ([#196](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/196)) ([9f0a078](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9f0a078731fb738d6d3e6ad128056f30c9aba5f5))
293
+ * extract some base client internals into utils ([#193](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/193)) ([7362dba](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7362dba889fd21c936979443a0e83162db31121d))
294
+
295
+ ## 0.1.0-alpha.13 (2025-01-22)
296
+
297
+ Full Changelog: [v0.1.0-alpha.12...v0.1.0-alpha.13](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.12...v0.1.0-alpha.13)
298
+
299
+ ### Chores
300
+
301
+ * **api:** adds new APIs for LedgerAccountSettlement LedgerEntries ([#188](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/188)) ([1ca1a78](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/1ca1a7819de400f5656689553387377f0ba3c846))
302
+ * improve yard doc folding and reduce repetition ([#187](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/187)) ([aa11ac4](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/aa11ac47e63f2a6023082cbf810565d843074459))
303
+ * use more descriptive rubocop output format ([#185](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/185)) ([6be7f8c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6be7f8c4e1cfb0e040860aaecdf3fdecf224c856))
304
+
305
+ ## 0.1.0-alpha.12 (2025-01-21)
306
+
307
+ Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
308
+
309
+ ### Features
310
+
311
+ * ruby add nilability annotations ([#181](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/181)) ([8a1b7e8](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8a1b7e8ca44adc77d200bd33a0356c7cef58a1ad))
312
+ * run rubocop in multiple processes when formatting ([#176](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/176)) ([53f1afc](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/53f1afc6b3b4a10fe4b5e55b332842d14bb13b56))
313
+
314
+
315
+ ### Chores
316
+
317
+ * minor formatting changes ([#182](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/182)) ([e9e4d65](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/e9e4d65691b9f22c5c93c4db39ebf517f29e2413))
318
+ * more detailed yard docs for base client ([#184](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/184)) ([30c8a39](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/30c8a3915cd0ee8a9753a4c6472c96cd1e4d64a8))
319
+ * more detailed yard docs for sdk utils ([#183](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/183)) ([ff7948d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ff7948d98b7cb3bffbcb73262259999b639b1ffa))
320
+ * re-order init params in accordance with their optionality ([#180](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/180)) ([ad95042](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ad95042c1dd3b228976d866a89f49b7581b05ccd))
321
+ * re-order resource classes constructor position ([#178](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/178)) ([2c83d22](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2c83d224ade5da91bf51f486f72d49898bdd8aea))
322
+ * touch up yard docs with more spec compliant syntax ([#179](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/179)) ([675187f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/675187f42480ad28fc1350a28ba0104b2ff1049f))
323
+
324
+ ## 0.1.0-alpha.11 (2025-01-13)
325
+
326
+ Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
327
+
328
+ ### Features
329
+
330
+ * escape path params ([#159](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/159)) ([51d3009](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/51d300992dc2caf67e92d5905a796585c853b52b))
331
+ * examples for working with discriminated unions ([#173](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/173)) ([4073fe4](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4073fe4ee316991b45a271cfd3239f8145a938ca))
332
+ * exercise connection pool in tests ([#161](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/161)) ([2564185](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/25641851ce51699bbb426f23c02db90a5bb44812))
333
+ * generate enum examples ([#148](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/148)) ([dc7dd95](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/dc7dd95cf3baed41d0536625c9c68248c05a2437))
334
+ * generate some omitted class names in doc comments ([#145](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/145)) ([8b33411](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8b3341191ee8dc400df0dbcc5cad2a53a807f694))
335
+ * implement subsumption operator for base classes ([#143](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/143)) ([83098a3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/83098a30b568a03a97d93747f1d1c1fd54d954e4))
336
+ * implement unions ([#158](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/158)) ([25f9b4b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/25f9b4b6153ae15b0aeeae5023f6d1fbf184cbda))
337
+ * improve `ArrayOf` DSL to use `:[]` instead of `.new` ([#150](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/150)) ([59ad085](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/59ad085f4cde045496199f885d389f4b4bb303ae))
338
+ * make enum classes thread safe ([#160](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/160)) ([8583271](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/85832719f1966de1f1d392ca6d55ec9cadfccd81))
339
+ * more consistent ArrayOf and HashOf DSL with re: lambda usage ([#174](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/174)) ([2e613d6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2e613d63d40e834d5aa79e5f2236a1147b6989ae))
340
+ * rb: render kwargs in constructors ([#156](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/156)) ([6fb48d6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6fb48d6d23e5ef404190b33f019942c750a1caf3))
341
+ * render recursive ref in return positions ([#157](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/157)) ([cef7c96](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/cef7c96d4bcca9f2bcc8ad7a8bff9b2b9cac3087))
342
+ * render yard docs with hash and nil? info ([#155](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/155)) ([a2fafad](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a2fafad6ed4bbef32a1e57978a295111868e666e))
343
+ * seal private constructors ([#147](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/147)) ([4e0d8c8](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4e0d8c8cb3c7c407e3192ce5180d7991ebf9c3f6))
344
+ * use pattern matching in parsing pagination responses ([#146](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/146)) ([a68acf0](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a68acf057839b6f79d7ae83c9c90e8b32b99bbb1))
345
+
346
+
347
+ ### Bug Fixes
348
+
349
+ * correctly annotate nil values in yard ([#164](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/164)) ([566e307](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/566e30795dc0f522ace9c95a4e0a8e3e26f3f3e5))
350
+ * correctly geneate array and map schemas with models ([#154](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/154)) ([3491af3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3491af3c54b509f8204ae1139893874e275a7311))
351
+ * correctly mark some error values as optional ([#168](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/168)) ([90d667e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/90d667e3c26b069bb95419f297989e1156344d0d))
352
+ * error classes did not call `.to_s` on error uri ([#162](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/162)) ([7438d68](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7438d68e4246c6ee80e5c10bfac82d093786cdc2))
353
+ * fix union variant duplication ([#169](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/169)) ([fd2c704](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fd2c704094183923696fd126f1ebcda1a997610c))
354
+
355
+
356
+ ### Chores
357
+
358
+ * accept `BaseClient` where `Client` were accepted ([#170](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/170)) ([26a5262](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/26a526239962610cb68aef4211bdb1382ed26c6f))
359
+ * add more private yard doc annotations ([#151](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/151)) ([ca6d481](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ca6d4815a33f651867ed23202ba6d1d9d669fa33))
360
+ * adjust method param class position in yard doc for convenience ([#171](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/171)) ([289b586](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/289b586e193614d585fc19a286184f0f76d7a65e))
361
+ * adjust whitespace in comments ([#165](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/165)) ([85f3189](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/85f31898aac0a23ef05c253234690fb42b611d2d))
362
+ * bump license year ([#163](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/163)) ([5a25733](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5a25733d55717562feba661057d6f62374b00cac))
363
+ * generate params class initializers ([#139](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/139)) ([f6d8b6f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f6d8b6f9723be8b07a3d992f67748195142627db))
364
+ * improve doc comment readability ([#138](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/138)) ([968d060](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/968d060001247463893d84245dc77b15cc574e42))
365
+ * improve uri interpolation internals ([#175](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/175)) ([3799f7b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3799f7bff80e2bb2440b392c9d684d2451a6704d))
366
+ * **internal:** bump dependencies ([#172](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/172)) ([8aee63e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8aee63ef749998595510f0825c2cf77275635bf9))
367
+ * **internal:** improve sdk internal docs / types ([#167](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/167)) ([54ec275](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/54ec2752d36bcc69e7f1d282505baf190895f838))
368
+ * link to param model in method yard docs ([#136](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/136)) ([677dbb1](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/677dbb1ff60f92c6d6c3739aecc4eedd16f5ff4f))
369
+ * mark deprecated methods ([#140](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/140)) ([54b7639](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/54b763952bd03926b570f4df5df62c8c65b283dd))
370
+ * migrate to pattern matching for testing ([#152](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/152)) ([271e9c4](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/271e9c4557c98452adff177e0eb4904a2c419d98))
371
+ * minor scripting improvements ([#166](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/166)) ([e6605f3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/e6605f3f2f1b45b3c7cf35c45aa67e24675eb203))
372
+ * more explicit privacy annotations ([#141](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/141)) ([37af495](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/37af4955917da9b161df0dd195be7d34135012a8))
373
+ * re-arrange request-options method definitions ([#142](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/142)) ([ebb52e1](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ebb52e1003d7a7c2e452e8d5cd9ebc55d9d44fb2))
374
+ * slightly more robust utils ([#137](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/137)) ([2e2e65e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2e2e65e2ebb282e793e1135f7f13401b409564da))
375
+ * styling improvements in doc strings ([#135](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/135)) ([db45ec0](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/db45ec03bd10e8ffa3369d09413f8d78fed21e49))
376
+
377
+ ## 0.1.0-alpha.10 (2024-12-16)
378
+
379
+ Full Changelog: [v0.1.0-alpha.9...v0.1.0-alpha.10](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.9...v0.1.0-alpha.10)
380
+
381
+ ### ⚠ BREAKING CHANGES
382
+
383
+ * (breaking change) flatter error hierarchy ([#123](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/123))
384
+ * (breaking change) introduce nesting for models under deeply nested resources ([#120](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/120))
385
+
386
+ ### Features
387
+
388
+ * ! (breaking change) pull path params not in the last position into the params argument ([#116](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/116)) ([fab651d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fab651d937fb244a4a866b03517b3928275c29f5))
389
+ * (breaking change) flatter error hierarchy ([#123](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/123)) ([1953910](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/1953910d60a41d48663bc14a99dc7996358b20ee))
390
+ * (breaking change) introduce nesting for models under deeply nested resources ([#120](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/120)) ([b20d301](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b20d301b06286b44f5d5f6935777d43efe24fa97))
391
+ * fix `to_enum` and `enum_for` built-ins for pagination classes ([#121](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/121)) ([5dc9a32](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5dc9a32c478ed91381e97bea8441ed76147ddb10))
392
+ * generate params classes ([#131](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/131)) ([d371f30](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/d371f30da68f44876afdbd77ae2ae5fa18314c6c))
393
+ * rename fields when they collide with ruby internals ([#114](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/114)) ([7cca6f3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7cca6f37196ad8c99abb22d6c057ca84f0b384b2))
394
+
395
+
396
+ ### Bug Fixes
397
+
398
+ * **client:** various items, including keying connection pool by origin, not host ([#134](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/134)) ([5127f88](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5127f88917fe035ff508d397b5a5048c6c39a732))
399
+ * converter now rejects unexpected arguments correctly ([#112](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/112)) ([3d1246f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/3d1246f0381abb22793f28dc68c0ccd845432da9))
400
+
401
+
402
+ ### Chores
403
+
404
+ * **api:** additional fields for requests to get BalanceReports and create LegalEntities ([#113](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/113)) ([5ba0bbf](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5ba0bbf7f58aa01d7cdf1728e7584e3c4ba42be8))
405
+ * **client:** extract out client agnostic code into utils ([#133](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/133)) ([b4b0369](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b4b03694f7f4b0330508e3043b7a6ddb7d155dfe))
406
+ * **client:** refactor to use RFC3986_PARSER for URL handling ([#127](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/127)) ([c44648c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c44648cd7cb94d0c0618f21fd0b50a91fd0750ce))
407
+ * **internal:** bump dependencies ([#118](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/118)) ([c5dae56](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c5dae5673cdc62d4c43f6d3e5fd08ddcbcbb9141))
408
+ * **internal:** bump dependencies ([#125](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/125)) ([13b8bba](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/13b8bba05ce54259f24a09ebc210ab856085c475))
409
+ * **internal:** bump dependencies ([#126](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/126)) ([1e9a0ef](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/1e9a0ef98d62345478a59cc65486c4fa713c7050))
410
+ * minor refactors ([#122](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/122)) ([6fe07c8](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6fe07c89a7b371ac531c472fe0c2d3de4399610c))
411
+ * misc code formatting changes ([#124](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/124)) ([a42bc63](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a42bc63def143de30e8067a241e3c0b01e4ab893))
412
+ * reduce test verbosity ([#128](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/128)) ([5b8d012](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5b8d012c2f825a37bf8605bd005d24cb041f2a62))
413
+ * rename internal variable ([#132](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/132)) ([a97dc66](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a97dc668a23c98333a7c07f503f112ea7915f31b))
414
+ * reorganize request construction hash to mirror HTTP semantics ([#117](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/117)) ([1d64865](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/1d64865025db85d19fd80f5c81a91cd9f6e954cc))
415
+ * sync openapi spec ([#119](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/119)) ([45358b8](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/45358b85522817dd18ce0ae8eebca14e1cff6492))
416
+ * **tests:** limit array example length ([#109](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/109)) ([b9b0422](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b9b0422aff92389bb1d33dd888b36aff3d1d8b18))
417
+
418
+
419
+ ### Refactors
420
+
421
+ * avoid unnecessary setter invocation ([#115](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/115)) ([a7e3f90](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a7e3f90ca70c9dc8caca4897accbef89817f498a))
422
+ * remove special testing only request header ([#130](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/130)) ([b42f5f4](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b42f5f4ab585b6c2919db2a7e28b7b5322308a93))
423
+
424
+ ## 0.1.0-alpha.9 (2024-11-12)
425
+
426
+ Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
427
+
428
+ ### Features
429
+
430
+ * annotate client type on resources ([#79](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/79)) ([71af1ae](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/71af1aeadda354e6d765e3bfd3d162101a8db07f))
431
+ * **api:** updates to required fields for ExpectedPayments ([#87](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/87)) ([9fbea98](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9fbea98ab046cd1cea8263f40c5220256c5a3664))
432
+ * breaking change - replace deprecated 'DateTime' class in favour of 'Time' class ([#74](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/74)) ([e2a92f2](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/e2a92f20395de996034a70e91b79e06a6389fe2f))
433
+ * **client:** add support for file uploads ([#73](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/73)) ([dc98885](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/dc988857458f7a2d8d6c477cfc571347090f8361))
434
+ * **client:** configurable timeouts ([#81](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/81)) ([178fa82](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/178fa82eb4900d2a4a5559f915ff008edfdf0bf2))
435
+ * **client:** generate classes for enums ([#64](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/64)) ([066eb0e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/066eb0e07db8b1cc95f8d54a91857f76ee08edcf))
436
+ * **client:** improved .inspect output ([64f1f66](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/64f1f66ae21a956103678b3004c1c372f38a20f2))
437
+ * **client:** parse dates in responses ([#67](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/67)) ([342e8df](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/342e8df6a18f3ee06d93a2b9f9fc4f2270e5f66c))
438
+ * **client:** send retry count header ([#70](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/70)) ([712c5aa](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/712c5aaa7af308fca772fc010a3c0798c094a521))
439
+ * **client:** support rightward assignment ([#84](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/84)) ([55cefd5](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/55cefd5fa21ff4ed84c1fbd63be1905fdd25b66d))
440
+ * enable gem building ([#72](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/72)) ([87668f8](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/87668f83e6d03ae52f33c77f07358811e96aacd9))
441
+ * explicitly mark more internal methods with `private` ([#105](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/105)) ([107725c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/107725cc513381a8c56efce41ab5764bf78455bc))
442
+ * generate omitted tests ([#75](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/75)) ([5d33bcf](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5d33bcf714c2bb222d80124aff8fefef21586b4b))
443
+ * modernize sdk internals ([#95](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/95)) ([f3aa57e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f3aa57ea96ad102ccca7cdc4e60ff1a485c6af3a))
444
+ * replace test/unit with minitest to enable parallel testing ([#77](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/77)) ([0ce9c35](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/0ce9c35bb2f1d48a6853cf26453bfe7363719c5a))
445
+ * switch to yard `@!parse` directive for init signatures instead of dummy methods ([#86](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/86)) ([fe4acec](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fe4acec615ed6b60e280f910e87bb4ce8fdedf47))
446
+
447
+
448
+ ### Bug Fixes
449
+
450
+ * **client:** point accessors to the correct keys ([64f1f66](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/64f1f66ae21a956103678b3004c1c372f38a20f2))
451
+ * run bundle install before publishing ruby gems ([#99](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/99)) ([5929d4d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5929d4d5164ad43dcbb6a3851fc4061b4968eec7))
452
+ * **tests,docs:** use snake_case for option names ([#88](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/88)) ([64f1f66](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/64f1f66ae21a956103678b3004c1c372f38a20f2))
453
+
454
+
455
+ ### Chores
456
+
457
+ * **api:** fields and parameters added to bulk actions, transactions and invoice creation ([#68](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/68)) ([0255b40](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/0255b408e77b7fbeee1ac5209fc8ebc7fdd720af))
458
+ * **client:** normalize header names ([#76](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/76)) ([d2adfb8](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/d2adfb88e123b0123a5232ea039d93a8f5dfa5fe))
459
+ * consolidate imports ([#90](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/90)) ([59c7f19](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/59c7f19989d7786b533dd74cf0eb10faaf679ea9))
460
+ * formatting consistency update ([#85](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/85)) ([d36401b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/d36401bef8b79f23c8acb1afe7a088d303367978))
461
+ * fully qualify class name for inheritance ([#102](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/102)) ([1fb97e5](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/1fb97e5c135541876165a26a73bb10f05460e252))
462
+ * generate yard docs on page classes ([#101](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/101)) ([41da934](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/41da934f38daf8200576fe8057dbafef7d1e6514))
463
+ * **internal:** bump webrick dependency ([#69](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/69)) ([1949e59](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/1949e5963de959489513c3c9671ce4cb9237c255))
464
+ * **internal:** make lint rules more strict ([#66](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/66)) ([f862f23](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f862f230af710e139f88f15d701cb260ee447f8f))
465
+ * minor improvements to param type yard doc ([#91](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/91)) ([fe734e0](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/fe734e05d93fe2d7ac5984d859e3fd2d6d26b93a))
466
+ * minor refactorings on base client ([#97](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/97)) ([e13ff94](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/e13ff949ce22a17d3dfd8702b3b02be0e337e214))
467
+ * reduce format task verbosity ([#78](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/78)) ([7394cfa](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7394cfad85d25701e457adf23603b76e346d167e))
468
+ * refactor base client internals ([#106](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/106)) ([4504ec1](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4504ec18914c6c6fc4db8475554de1feae2e0556))
469
+ * refactor base client methods ([#98](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/98)) ([5786db0](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/5786db0e4b38a085e53b67ffa99a07109bfdd8cf))
470
+ * switch over to relative requires for gem locals ([#89](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/89)) ([781dbdb](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/781dbdb765c7d31575a5e6fca9cf1c8abe34d18d))
471
+ * **tests:** support overriding base url with an env var ([#82](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/82)) ([7d419f7](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7d419f7b76f0f4a0957315f1fd87804d42de3f9f))
472
+ * **types:** add types for Model#initialize ([#83](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/83)) ([c8b4185](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c8b4185476ad5c9e7cbb73a53f5d92937ecb2b1e))
473
+ * **types:** more detailed type documentation ([#71](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/71)) ([9e6eb5a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9e6eb5ace1eee7e25e797c3f6ba3aebed1b570a0))
474
+ * yard doc improvements ([#94](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/94)) ([4eafb46](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4eafb464fbb2b6405be8392fff59d68df9befa06))
475
+
476
+
477
+ ### Refactors
478
+
479
+ * clean up base client send_request method ([#100](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/100)) ([0a00593](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/0a005931c89c8db85e4761444c85b8f483bf008a))
480
+ * client constructor ([#108](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/108)) ([8a3dc06](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8a3dc060f1c4657bd8b141bdc63b0f7e0d693566))
481
+ * extract out url handling functions into utils ([#96](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/96)) ([ed0c8dd](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ed0c8dd3b457f47a3480586976e9065221600668))
482
+ * private base client internals ([#107](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/107)) ([c7a96d5](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c7a96d5352083206cca0b66b1fcfd4889634f846))
483
+
484
+ ## 0.1.0-alpha.8 (2024-09-17)
485
+
486
+ Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)
487
+
488
+ ### Features
489
+
490
+ * **client:** public model initializer ([#62](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/62)) ([18c4881](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/18c488131e6dacc30169e7bae1653468b2eb234e))
491
+
492
+ ## 0.1.0-alpha.7 (2024-09-09)
493
+
494
+ Full Changelog: [v0.1.0-alpha.6...v0.1.0-alpha.7](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.6...v0.1.0-alpha.7)
495
+
496
+ ### Chores
497
+
498
+ * **internal:** bump dependencies ([#56](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/56)) ([45c204f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/45c204f5991646eadb2a65eb8f505d024596f858))
499
+ * **internal:** dependency updates ([#57](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/57)) ([273d43f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/273d43fb6db204eefdfdddb5a5b317e425cd4550))
500
+ * **internal:** update dependencies ([#55](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/55)) ([9b6e02f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9b6e02f76aab9213fafd1c8236c1dba3f1e847d9))
501
+ * **tests:** add tests for all resources ([#59](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/59)) ([52370ca](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/52370ca5d4ca4d14bfad6a4d34d85079aa23fe14))
502
+
503
+
504
+ ### Documentation
505
+
506
+ * minor examples improvement ([#53](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/53)) ([d3275c7](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/d3275c749b5fe7c72d4af40f007f768b6b15ef7b))
507
+
508
+ ## 0.1.0-alpha.6 (2024-08-23)
509
+
510
+ Full Changelog: [v0.1.0-alpha.5...v0.1.0-alpha.6](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.5...v0.1.0-alpha.6)
511
+
512
+ ### Bug Fixes
513
+
514
+ * **client:** keep authorization headers on same-origin redirects ([#52](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/52)) ([b6f81e5](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b6f81e5179a3bc9df9755c8483ed044f2dc63c06))
515
+
516
+
517
+ ### Chores
518
+
519
+ * **client:** follow standards for retry-after; retry-after-ms support ([#50](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/50)) ([f11cf4d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f11cf4d1386c95bb716aab00a5db69e404918c8c))
520
+
521
+ ## 0.1.0-alpha.5 (2024-08-20)
522
+
523
+ Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
524
+
525
+ ### Features
526
+
527
+ * **client:** follow redirects ([#49](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/49)) ([4b60d06](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4b60d0696596f82223e94a6a0220c7e58111b54d))
528
+
529
+
530
+ ### Chores
531
+
532
+ * fix typo in comment ([#46](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/46)) ([09997c9](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/09997c9675ff78935ffe234cc468dbe095374a04))
533
+
534
+ ## 0.1.0-alpha.4 (2024-07-18)
535
+
536
+ Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
537
+
538
+ ### Chores
539
+
540
+ * **ci:** limit release doctor target branches ([#36](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/36)) ([27e8594](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/27e85941837a7518eabb16ee7ac28370cf8ae13e))
541
+ * updates ([#34](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/34)) ([9c62823](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9c62823399f4e8884368c3ee1dac61e7b05815c1))
542
+
543
+ ## 0.1.0-alpha.3 (2024-07-15)
544
+
545
+ Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
546
+
547
+ ### Features
548
+
549
+ * **api:** updates ([#32](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/32)) ([c457124](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c4571245bcd238bb1fb64f682f64fe7ad3e8f70d))
550
+
551
+
552
+ ### Chores
553
+
554
+ * **docs:** minor update to formatting of API link in README ([#33](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/33)) ([06622e7](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/06622e75bce9cb1abaed2340a7bfefd33200cbbd))
555
+
556
+
557
+ ### Documentation
558
+
559
+ * **examples:** update example values ([#30](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/30)) ([b42f71e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b42f71e20b84c28a19696d5d4bf7995e4ac0f6a1))
560
+
561
+ ## 0.1.0-alpha.2 (2024-07-01)
562
+
563
+ Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
564
+
565
+ ### Features
566
+
567
+ * **api:** updates ([#29](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/29)) ([2d96db1](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2d96db1558af1a8cb7bc8de5114d07a7db87f71f))
568
+
569
+
570
+ ### Chores
571
+
572
+ * gitignore test server logs ([#27](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/27)) ([aa768df](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/aa768df85d4025a498fc39f0137d1747db27c4b7))
573
+
574
+ ## 0.1.0-alpha.1 (2024-06-04)
575
+
576
+ Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
577
+
578
+ ### Features
579
+
580
+ * **api:** add currency to ledger account categories ([#19](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/19)) ([2478e4f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2478e4f59af0c196c94772c947883c5d8442f115))
581
+ * **api:** add kr_brn kr_crn kr_rrn enum values ([#24](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/24)) ([6217a24](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6217a24f8d89be95b95bc8c2630319198ad2fd97))
582
+ * **api:** add risk rating field ([#25](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/25)) ([b2f1a04](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/b2f1a04ac3d02a1febc88aaf975d13cb6e65a94d))
583
+ * **api:** invoice overdue reminders ([8682dc3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8682dc32ae60b5f7dadef39115d9290341415c5e))
584
+ * **api:** mark ConnectionLegalEntity response properties as required ([#21](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/21)) ([6c2e58f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/6c2e58fd597d15236c941f9e3a5c0a7a3f275eca))
585
+ * **api:** remove deprecated ledger account payouts ([#20](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/20)) ([8682dc3](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8682dc32ae60b5f7dadef39115d9290341415c5e))
586
+ * **api:** updates ([#12](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/12)) ([f71802b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/f71802b40e3897c1f6fe65575fbdd3f91c0de940))
587
+ * **api:** various API updates ([#5](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/5)) ([00a00b6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/00a00b6c4b2ea5418795d075b9f91cf0d3ae2802))
588
+ * propagate resource description field from stainless config to SDK docs ([#14](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/14)) ([d51e25f](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/d51e25f34c8df06da5fcfb616f4f9ae3e9f837b4))
589
+
590
+
591
+ ### Chores
592
+
593
+ * add support for managing releases ([#3](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/3)) ([93e3f61](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/93e3f615edc4ad360eebd0f3f17f08d2f7b30300))
594
+ * adjust configuration for release management ([2abd38b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2abd38b7a8d9733291cdb76594cd53d9b8975d3d))
595
+ * **docs:** add SECURITY.md ([#16](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/16)) ([7ca1b50](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7ca1b5054795f110364683939bda273faa6003c9))
596
+ * **docs:** streamline payment purpose and vendor failure handling ([#17](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/17)) ([4c5cad2](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/4c5cad2d687425d005ea0b7300f2f7ffb65ad668))
597
+ * **internal:** add code reviewer ([#23](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/23)) ([47619ae](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/47619ae6f49696d42e1b538118de4ab65fbb541b))
598
+ * **internal:** add dev scripts ([#22](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/22)) ([221360a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/221360af31fe4cc810dc056d3fa0b7cbd531788b))
599
+ * **internal:** add link to openapi spec ([#7](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/7)) ([ed26191](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/ed261919aa39631b89c1247799465cca6b7b8b72))
600
+ * **internal:** add scripts/mock ([#8](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/8)) ([7e2c6c6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/7e2c6c68c0e42f7179df98438cb2c0b3cc35b2b8))
601
+ * **internal:** bump mock server version to ~5.8.0 ([#10](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/10)) ([404683a](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/404683ab408f6a667fbe3f796f295a0b3a237e1e))
602
+ * **internal:** fix generated version numbers ([#13](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/13)) ([9799e3b](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9799e3baa9000f598f77d43e7077b1bb9ff5137d))
603
+ * **internal:** fix generated version numbers ([#18](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/18)) ([66c6822](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/66c6822a121dee0b8da807723dd8c2fcb520ecde))
604
+ * **internal:** sync urls ([#26](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/26)) ([37672e6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/37672e6b5badf10322fae0e3cd98b3898e06acc5))
605
+
606
+
607
+ ### Documentation
608
+
609
+ * add return annotations to resource definitions ([#15](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/15)) ([2f49bb6](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2f49bb6ff7b5a7b822a1f4975a68fd7899252745))
610
+ * update README to point to canonical repo, remove incorrect hard-coded content ([#1](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/1)) ([d9f280e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/d9f280ef1eb5ac071f2483c1777659a28f4e6e7e))
611
+
612
+
613
+ ### Refactors
614
+
615
+ * improve type conversion framework and fix YARD return type edge cases ([#11](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/11)) ([a1d899e](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/a1d899e34031bf37d59961079e5aa0958c2a9e7a))
616
+ * remove Converter.same_type? in favor of using native Ruby methods like kind_of? ([#2](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/2)) ([8b811cc](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/8b811cceeac7fe7a72a7a3f4a2c659018bc452e6))
617
+
618
+ ## 0.0.1-alpha.1 (2024-04-25)
619
+
620
+ Full Changelog: [v0.0.1-alpha.0...v0.0.1-alpha.1](https://github.com/Modern-Treasury/modern-treasury-ruby/compare/v0.0.1-alpha.0...v0.0.1-alpha.1)
621
+
622
+ ### Chores
623
+
624
+ * add support for managing releases ([#3](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/3)) ([2b960f5](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/2b960f5617c3b92165bf3caf2372c02f429a0d9d))
625
+ * adjust configuration for release management ([defc93c](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/defc93c87959fdbaebc78cccff0b560331fc25b4))
626
+
627
+
628
+ ### Documentation
629
+
630
+ * update README to point to canonical repo, remove incorrect hard-coded content ([#1](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/1)) ([9596c7d](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/9596c7d1bb0d250c847aeb985537cfeb79b06c63))
631
+
632
+
633
+ ### Refactors
634
+
635
+ * remove Converter.same_type? in favor of using native Ruby methods like kind_of? ([#2](https://github.com/Modern-Treasury/modern-treasury-ruby/issues/2)) ([c270b00](https://github.com/Modern-Treasury/modern-treasury-ruby/commit/c270b00014c4ff40b956c8012848e07357b3a333))