increase 0.1.0

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 (425) hide show
  1. package/.eslintrc.js +10 -0
  2. package/.prettierrc +6 -0
  3. package/.stats.yml +1 -0
  4. package/LICENSE +201 -0
  5. package/README.md +211 -0
  6. package/api.md +477 -0
  7. package/bin/check-test-server +50 -0
  8. package/build +12 -0
  9. package/check-version.ts +15 -0
  10. package/core.ts +908 -0
  11. package/dist/cjs/check-version.d.ts +1 -0
  12. package/dist/cjs/check-version.js +21 -0
  13. package/dist/cjs/check-version.js.map +1 -0
  14. package/dist/cjs/core.d.ts +262 -0
  15. package/dist/cjs/core.js +978 -0
  16. package/dist/cjs/core.js.map +1 -0
  17. package/dist/cjs/fetch-polyfill.d.ts +5 -0
  18. package/dist/cjs/fetch-polyfill.js +55 -0
  19. package/dist/cjs/fetch-polyfill.js.map +1 -0
  20. package/dist/cjs/index.d.ts +201 -0
  21. package/dist/cjs/index.js +180 -0
  22. package/dist/cjs/index.js.map +1 -0
  23. package/dist/cjs/pagination.d.ts +28 -0
  24. package/dist/cjs/pagination.js +30 -0
  25. package/dist/cjs/pagination.js.map +1 -0
  26. package/dist/cjs/resource.d.ts +11 -0
  27. package/dist/cjs/resource.js +17 -0
  28. package/dist/cjs/resource.js.map +1 -0
  29. package/dist/cjs/resources/account-numbers.d.ts +103 -0
  30. package/dist/cjs/resources/account-numbers.js +37 -0
  31. package/dist/cjs/resources/account-numbers.js.map +1 -0
  32. package/dist/cjs/resources/account-statements.d.ts +99 -0
  33. package/dist/cjs/resources/account-statements.js +25 -0
  34. package/dist/cjs/resources/account-statements.js.map +1 -0
  35. package/dist/cjs/resources/account-transfers.d.ts +189 -0
  36. package/dist/cjs/resources/account-transfers.js +43 -0
  37. package/dist/cjs/resources/account-transfers.js.map +1 -0
  38. package/dist/cjs/resources/accounts.d.ts +133 -0
  39. package/dist/cjs/resources/accounts.js +43 -0
  40. package/dist/cjs/resources/accounts.js.map +1 -0
  41. package/dist/cjs/resources/ach-prenotifications.d.ts +188 -0
  42. package/dist/cjs/resources/ach-prenotifications.js +35 -0
  43. package/dist/cjs/resources/ach-prenotifications.js.map +1 -0
  44. package/dist/cjs/resources/ach-transfers.d.ts +375 -0
  45. package/dist/cjs/resources/ach-transfers.js +43 -0
  46. package/dist/cjs/resources/ach-transfers.js.map +1 -0
  47. package/dist/cjs/resources/card-disputes.d.ts +143 -0
  48. package/dist/cjs/resources/card-disputes.js +31 -0
  49. package/dist/cjs/resources/card-disputes.js.map +1 -0
  50. package/dist/cjs/resources/card-profiles.d.ts +183 -0
  51. package/dist/cjs/resources/card-profiles.js +31 -0
  52. package/dist/cjs/resources/card-profiles.js.map +1 -0
  53. package/dist/cjs/resources/cards.d.ts +316 -0
  54. package/dist/cjs/resources/cards.js +43 -0
  55. package/dist/cjs/resources/cards.js.map +1 -0
  56. package/dist/cjs/resources/check-deposits.d.ts +241 -0
  57. package/dist/cjs/resources/check-deposits.js +31 -0
  58. package/dist/cjs/resources/check-deposits.js.map +1 -0
  59. package/dist/cjs/resources/check-transfers.d.ts +331 -0
  60. package/dist/cjs/resources/check-transfers.js +49 -0
  61. package/dist/cjs/resources/check-transfers.js.map +1 -0
  62. package/dist/cjs/resources/declined-transactions.d.ts +424 -0
  63. package/dist/cjs/resources/declined-transactions.js +29 -0
  64. package/dist/cjs/resources/declined-transactions.js.map +1 -0
  65. package/dist/cjs/resources/digital-wallet-tokens.d.ts +85 -0
  66. package/dist/cjs/resources/digital-wallet-tokens.js +29 -0
  67. package/dist/cjs/resources/digital-wallet-tokens.js.map +1 -0
  68. package/dist/cjs/resources/documents.d.ts +87 -0
  69. package/dist/cjs/resources/documents.js +25 -0
  70. package/dist/cjs/resources/documents.js.map +1 -0
  71. package/dist/cjs/resources/entities/entities.d.ts +1383 -0
  72. package/dist/cjs/resources/entities/entities.js +36 -0
  73. package/dist/cjs/resources/entities/entities.js.map +1 -0
  74. package/dist/cjs/resources/entities/index.d.ts +2 -0
  75. package/dist/cjs/resources/entities/index.js +12 -0
  76. package/dist/cjs/resources/entities/index.js.map +1 -0
  77. package/dist/cjs/resources/entities/supplemental-documents.d.ts +19 -0
  78. package/dist/cjs/resources/entities/supplemental-documents.js +15 -0
  79. package/dist/cjs/resources/entities/supplemental-documents.js.map +1 -0
  80. package/dist/cjs/resources/event-subscriptions.d.ts +196 -0
  81. package/dist/cjs/resources/event-subscriptions.js +37 -0
  82. package/dist/cjs/resources/event-subscriptions.js.map +1 -0
  83. package/dist/cjs/resources/events.d.ts +183 -0
  84. package/dist/cjs/resources/events.js +25 -0
  85. package/dist/cjs/resources/events.js.map +1 -0
  86. package/dist/cjs/resources/external-accounts.d.ts +121 -0
  87. package/dist/cjs/resources/external-accounts.js +37 -0
  88. package/dist/cjs/resources/external-accounts.js.map +1 -0
  89. package/dist/cjs/resources/files.d.ts +148 -0
  90. package/dist/cjs/resources/files.js +34 -0
  91. package/dist/cjs/resources/files.js.map +1 -0
  92. package/dist/cjs/resources/groups.d.ts +37 -0
  93. package/dist/cjs/resources/groups.js +15 -0
  94. package/dist/cjs/resources/groups.js.map +1 -0
  95. package/dist/cjs/resources/inbound-ach-transfer-returns.d.ts +106 -0
  96. package/dist/cjs/resources/inbound-ach-transfer-returns.js +35 -0
  97. package/dist/cjs/resources/inbound-ach-transfer-returns.js.map +1 -0
  98. package/dist/cjs/resources/inbound-wire-drawdown-requests.d.ts +124 -0
  99. package/dist/cjs/resources/inbound-wire-drawdown-requests.js +29 -0
  100. package/dist/cjs/resources/inbound-wire-drawdown-requests.js.map +1 -0
  101. package/dist/cjs/resources/index.d.ts +163 -0
  102. package/dist/cjs/resources/index.js +478 -0
  103. package/dist/cjs/resources/index.js.map +1 -0
  104. package/dist/cjs/resources/limits.d.ts +105 -0
  105. package/dist/cjs/resources/limits.js +37 -0
  106. package/dist/cjs/resources/limits.js.map +1 -0
  107. package/dist/cjs/resources/oauth-connections.d.ts +50 -0
  108. package/dist/cjs/resources/oauth-connections.js +25 -0
  109. package/dist/cjs/resources/oauth-connections.js.map +1 -0
  110. package/dist/cjs/resources/pending-transactions.d.ts +397 -0
  111. package/dist/cjs/resources/pending-transactions.js +29 -0
  112. package/dist/cjs/resources/pending-transactions.js.map +1 -0
  113. package/dist/cjs/resources/real-time-decisions.d.ts +289 -0
  114. package/dist/cjs/resources/real-time-decisions.js +21 -0
  115. package/dist/cjs/resources/real-time-decisions.js.map +1 -0
  116. package/dist/cjs/resources/routing-numbers.d.ts +49 -0
  117. package/dist/cjs/resources/routing-numbers.js +21 -0
  118. package/dist/cjs/resources/routing-numbers.js.map +1 -0
  119. package/dist/cjs/resources/shared.d.ts +15 -0
  120. package/dist/cjs/resources/shared.js +4 -0
  121. package/dist/cjs/resources/shared.js.map +1 -0
  122. package/dist/cjs/resources/simulations/account-statements.d.ts +19 -0
  123. package/dist/cjs/resources/simulations/account-statements.js +16 -0
  124. package/dist/cjs/resources/simulations/account-statements.js.map +1 -0
  125. package/dist/cjs/resources/simulations/account-transfers.d.ts +15 -0
  126. package/dist/cjs/resources/simulations/account-transfers.js +18 -0
  127. package/dist/cjs/resources/simulations/account-transfers.js.map +1 -0
  128. package/dist/cjs/resources/simulations/ach-transfers.d.ts +1488 -0
  129. package/dist/cjs/resources/simulations/ach-transfers.js +39 -0
  130. package/dist/cjs/resources/simulations/ach-transfers.js.map +1 -0
  131. package/dist/cjs/resources/simulations/card-disputes.d.ts +26 -0
  132. package/dist/cjs/resources/simulations/card-disputes.js +18 -0
  133. package/dist/cjs/resources/simulations/card-disputes.js.map +1 -0
  134. package/dist/cjs/resources/simulations/card-refunds.d.ts +20 -0
  135. package/dist/cjs/resources/simulations/card-refunds.js +16 -0
  136. package/dist/cjs/resources/simulations/card-refunds.js.map +1 -0
  137. package/dist/cjs/resources/simulations/cards.d.ts +793 -0
  138. package/dist/cjs/resources/simulations/cards.js +31 -0
  139. package/dist/cjs/resources/simulations/cards.js.map +1 -0
  140. package/dist/cjs/resources/simulations/check-deposits.d.ts +30 -0
  141. package/dist/cjs/resources/simulations/check-deposits.js +31 -0
  142. package/dist/cjs/resources/simulations/check-deposits.js.map +1 -0
  143. package/dist/cjs/resources/simulations/check-transfers.d.ts +22 -0
  144. package/dist/cjs/resources/simulations/check-transfers.js +24 -0
  145. package/dist/cjs/resources/simulations/check-transfers.js.map +1 -0
  146. package/dist/cjs/resources/simulations/digital-wallet-token-requests.d.ts +43 -0
  147. package/dist/cjs/resources/simulations/digital-wallet-token-requests.js +16 -0
  148. package/dist/cjs/resources/simulations/digital-wallet-token-requests.js.map +1 -0
  149. package/dist/cjs/resources/simulations/documents.d.ts +18 -0
  150. package/dist/cjs/resources/simulations/documents.js +15 -0
  151. package/dist/cjs/resources/simulations/documents.js.map +1 -0
  152. package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.d.ts +101 -0
  153. package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.js +16 -0
  154. package/dist/cjs/resources/simulations/inbound-wire-drawdown-requests.js.map +1 -0
  155. package/dist/cjs/resources/simulations/index.d.ts +20 -0
  156. package/dist/cjs/resources/simulations/index.js +4 -0
  157. package/dist/cjs/resources/simulations/index.js.map +1 -0
  158. package/dist/cjs/resources/simulations/real-time-payments-transfers.d.ts +1431 -0
  159. package/dist/cjs/resources/simulations/real-time-payments-transfers.js +16 -0
  160. package/dist/cjs/resources/simulations/real-time-payments-transfers.js.map +1 -0
  161. package/dist/cjs/resources/simulations/simulations.d.ts +29 -0
  162. package/dist/cjs/resources/simulations/simulations.js +44 -0
  163. package/dist/cjs/resources/simulations/simulations.js.map +1 -0
  164. package/dist/cjs/resources/simulations/wire-transfers.d.ts +1104 -0
  165. package/dist/cjs/resources/simulations/wire-transfers.js +15 -0
  166. package/dist/cjs/resources/simulations/wire-transfers.js.map +1 -0
  167. package/dist/cjs/resources/transactions.d.ts +1101 -0
  168. package/dist/cjs/resources/transactions.js +25 -0
  169. package/dist/cjs/resources/transactions.js.map +1 -0
  170. package/dist/cjs/resources/wire-drawdown-requests.d.ts +148 -0
  171. package/dist/cjs/resources/wire-drawdown-requests.js +35 -0
  172. package/dist/cjs/resources/wire-drawdown-requests.js.map +1 -0
  173. package/dist/cjs/resources/wire-transfers.d.ts +310 -0
  174. package/dist/cjs/resources/wire-transfers.js +60 -0
  175. package/dist/cjs/resources/wire-transfers.js.map +1 -0
  176. package/dist/cjs/tests/api-resources/account-numbers.test.d.ts +1 -0
  177. package/dist/cjs/tests/api-resources/account-numbers.test.js +104 -0
  178. package/dist/cjs/tests/api-resources/account-numbers.test.js.map +1 -0
  179. package/dist/cjs/tests/api-resources/account-statements.test.d.ts +1 -0
  180. package/dist/cjs/tests/api-resources/account-statements.test.js +101 -0
  181. package/dist/cjs/tests/api-resources/account-statements.test.js.map +1 -0
  182. package/dist/cjs/tests/api-resources/account-transfers.test.d.ts +1 -0
  183. package/dist/cjs/tests/api-resources/account-transfers.test.js +146 -0
  184. package/dist/cjs/tests/api-resources/account-transfers.test.js.map +1 -0
  185. package/dist/cjs/tests/api-resources/accounts.test.d.ts +1 -0
  186. package/dist/cjs/tests/api-resources/accounts.test.js +119 -0
  187. package/dist/cjs/tests/api-resources/accounts.test.js.map +1 -0
  188. package/dist/cjs/tests/api-resources/ach-prenotifications.test.d.ts +1 -0
  189. package/dist/cjs/tests/api-resources/ach-prenotifications.test.js +125 -0
  190. package/dist/cjs/tests/api-resources/ach-prenotifications.test.js.map +1 -0
  191. package/dist/cjs/tests/api-resources/ach-transfers.test.d.ts +1 -0
  192. package/dist/cjs/tests/api-resources/ach-transfers.test.js +159 -0
  193. package/dist/cjs/tests/api-resources/ach-transfers.test.js.map +1 -0
  194. package/dist/cjs/tests/api-resources/card-disputes.test.d.ts +1 -0
  195. package/dist/cjs/tests/api-resources/card-disputes.test.js +108 -0
  196. package/dist/cjs/tests/api-resources/card-disputes.test.js.map +1 -0
  197. package/dist/cjs/tests/api-resources/card-profiles.test.d.ts +1 -0
  198. package/dist/cjs/tests/api-resources/card-profiles.test.js +97 -0
  199. package/dist/cjs/tests/api-resources/card-profiles.test.js.map +1 -0
  200. package/dist/cjs/tests/api-resources/cards.test.d.ts +1 -0
  201. package/dist/cjs/tests/api-resources/cards.test.js +138 -0
  202. package/dist/cjs/tests/api-resources/cards.test.js.map +1 -0
  203. package/dist/cjs/tests/api-resources/check-deposits.test.d.ts +1 -0
  204. package/dist/cjs/tests/api-resources/check-deposits.test.js +113 -0
  205. package/dist/cjs/tests/api-resources/check-deposits.test.js.map +1 -0
  206. package/dist/cjs/tests/api-resources/check-transfers.test.d.ts +1 -0
  207. package/dist/cjs/tests/api-resources/check-transfers.test.js +172 -0
  208. package/dist/cjs/tests/api-resources/check-transfers.test.js.map +1 -0
  209. package/dist/cjs/tests/api-resources/declined-transactions.test.d.ts +1 -0
  210. package/dist/cjs/tests/api-resources/declined-transactions.test.js +105 -0
  211. package/dist/cjs/tests/api-resources/declined-transactions.test.js.map +1 -0
  212. package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.d.ts +1 -0
  213. package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.js +103 -0
  214. package/dist/cjs/tests/api-resources/digital-wallet-tokens.test.js.map +1 -0
  215. package/dist/cjs/tests/api-resources/documents.test.d.ts +1 -0
  216. package/dist/cjs/tests/api-resources/documents.test.js +101 -0
  217. package/dist/cjs/tests/api-resources/documents.test.js.map +1 -0
  218. package/dist/cjs/tests/api-resources/entities/entities.test.d.ts +1 -0
  219. package/dist/cjs/tests/api-resources/entities/entities.test.js +280 -0
  220. package/dist/cjs/tests/api-resources/entities/entities.test.js.map +1 -0
  221. package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.d.ts +1 -0
  222. package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.js +49 -0
  223. package/dist/cjs/tests/api-resources/entities/supplemental-documents.test.js.map +1 -0
  224. package/dist/cjs/tests/api-resources/event-subscriptions.test.d.ts +1 -0
  225. package/dist/cjs/tests/api-resources/event-subscriptions.test.js +109 -0
  226. package/dist/cjs/tests/api-resources/event-subscriptions.test.js.map +1 -0
  227. package/dist/cjs/tests/api-resources/events.test.d.ts +1 -0
  228. package/dist/cjs/tests/api-resources/events.test.js +101 -0
  229. package/dist/cjs/tests/api-resources/events.test.js.map +1 -0
  230. package/dist/cjs/tests/api-resources/external-accounts.test.d.ts +1 -0
  231. package/dist/cjs/tests/api-resources/external-accounts.test.js +113 -0
  232. package/dist/cjs/tests/api-resources/external-accounts.test.js.map +1 -0
  233. package/dist/cjs/tests/api-resources/files.test.d.ts +1 -0
  234. package/dist/cjs/tests/api-resources/files.test.js +117 -0
  235. package/dist/cjs/tests/api-resources/files.test.js.map +1 -0
  236. package/dist/cjs/tests/api-resources/groups.test.d.ts +1 -0
  237. package/dist/cjs/tests/api-resources/groups.test.js +54 -0
  238. package/dist/cjs/tests/api-resources/groups.test.js.map +1 -0
  239. package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.d.ts +1 -0
  240. package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.js +90 -0
  241. package/dist/cjs/tests/api-resources/inbound-ach-transfer-returns.test.js.map +1 -0
  242. package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.d.ts +1 -0
  243. package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.js +83 -0
  244. package/dist/cjs/tests/api-resources/inbound-wire-drawdown-requests.test.js.map +1 -0
  245. package/dist/cjs/tests/api-resources/limits.test.d.ts +1 -0
  246. package/dist/cjs/tests/api-resources/limits.test.js +100 -0
  247. package/dist/cjs/tests/api-resources/limits.test.js.map +1 -0
  248. package/dist/cjs/tests/api-resources/oauth-connections.test.d.ts +1 -0
  249. package/dist/cjs/tests/api-resources/oauth-connections.test.js +78 -0
  250. package/dist/cjs/tests/api-resources/oauth-connections.test.js.map +1 -0
  251. package/dist/cjs/tests/api-resources/pending-transactions.test.d.ts +1 -0
  252. package/dist/cjs/tests/api-resources/pending-transactions.test.js +97 -0
  253. package/dist/cjs/tests/api-resources/pending-transactions.test.js.map +1 -0
  254. package/dist/cjs/tests/api-resources/real-time-decisions.test.d.ts +1 -0
  255. package/dist/cjs/tests/api-resources/real-time-decisions.test.js +71 -0
  256. package/dist/cjs/tests/api-resources/real-time-decisions.test.js.map +1 -0
  257. package/dist/cjs/tests/api-resources/routing-numbers.test.d.ts +1 -0
  258. package/dist/cjs/tests/api-resources/routing-numbers.test.js +55 -0
  259. package/dist/cjs/tests/api-resources/routing-numbers.test.js.map +1 -0
  260. package/dist/cjs/tests/api-resources/simulations/account-statements.test.d.ts +1 -0
  261. package/dist/cjs/tests/api-resources/simulations/account-statements.test.js +49 -0
  262. package/dist/cjs/tests/api-resources/simulations/account-statements.test.js.map +1 -0
  263. package/dist/cjs/tests/api-resources/simulations/account-transfers.test.d.ts +1 -0
  264. package/dist/cjs/tests/api-resources/simulations/account-transfers.test.js +60 -0
  265. package/dist/cjs/tests/api-resources/simulations/account-transfers.test.js.map +1 -0
  266. package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.d.ts +1 -0
  267. package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.js +92 -0
  268. package/dist/cjs/tests/api-resources/simulations/ach-transfers.test.js.map +1 -0
  269. package/dist/cjs/tests/api-resources/simulations/card-disputes.test.d.ts +1 -0
  270. package/dist/cjs/tests/api-resources/simulations/card-disputes.test.js +56 -0
  271. package/dist/cjs/tests/api-resources/simulations/card-disputes.test.js.map +1 -0
  272. package/dist/cjs/tests/api-resources/simulations/card-refunds.test.d.ts +1 -0
  273. package/dist/cjs/tests/api-resources/simulations/card-refunds.test.js +49 -0
  274. package/dist/cjs/tests/api-resources/simulations/card-refunds.test.js.map +1 -0
  275. package/dist/cjs/tests/api-resources/simulations/cards.test.d.ts +1 -0
  276. package/dist/cjs/tests/api-resources/simulations/cards.test.js +70 -0
  277. package/dist/cjs/tests/api-resources/simulations/cards.test.js.map +1 -0
  278. package/dist/cjs/tests/api-resources/simulations/check-deposits.test.d.ts +1 -0
  279. package/dist/cjs/tests/api-resources/simulations/check-deposits.test.js +86 -0
  280. package/dist/cjs/tests/api-resources/simulations/check-deposits.test.js.map +1 -0
  281. package/dist/cjs/tests/api-resources/simulations/check-transfers.test.d.ts +1 -0
  282. package/dist/cjs/tests/api-resources/simulations/check-transfers.test.js +73 -0
  283. package/dist/cjs/tests/api-resources/simulations/check-transfers.test.js.map +1 -0
  284. package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.d.ts +1 -0
  285. package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.js +49 -0
  286. package/dist/cjs/tests/api-resources/simulations/digital-wallet-token-requests.test.js.map +1 -0
  287. package/dist/cjs/tests/api-resources/simulations/documents.test.d.ts +1 -0
  288. package/dist/cjs/tests/api-resources/simulations/documents.test.js +49 -0
  289. package/dist/cjs/tests/api-resources/simulations/documents.test.js.map +1 -0
  290. package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.d.ts +1 -0
  291. package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.js +81 -0
  292. package/dist/cjs/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.js.map +1 -0
  293. package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.d.ts +1 -0
  294. package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.js +62 -0
  295. package/dist/cjs/tests/api-resources/simulations/real-time-payments-transfers.test.js.map +1 -0
  296. package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.d.ts +1 -0
  297. package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.js +70 -0
  298. package/dist/cjs/tests/api-resources/simulations/wire-transfers.test.js.map +1 -0
  299. package/dist/cjs/tests/api-resources/transactions.test.d.ts +1 -0
  300. package/dist/cjs/tests/api-resources/transactions.test.js +109 -0
  301. package/dist/cjs/tests/api-resources/transactions.test.js.map +1 -0
  302. package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.d.ts +1 -0
  303. package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.js +110 -0
  304. package/dist/cjs/tests/api-resources/wire-drawdown-requests.test.js.map +1 -0
  305. package/dist/cjs/tests/api-resources/wire-transfers.test.d.ts +1 -0
  306. package/dist/cjs/tests/api-resources/wire-transfers.test.js +184 -0
  307. package/dist/cjs/tests/api-resources/wire-transfers.test.js.map +1 -0
  308. package/dist/cjs/tests/form.test.d.ts +1 -0
  309. package/dist/cjs/tests/form.test.js +60 -0
  310. package/dist/cjs/tests/form.test.js.map +1 -0
  311. package/dist/cjs/tests/index.test.d.ts +1 -0
  312. package/dist/cjs/tests/index.test.js +44 -0
  313. package/dist/cjs/tests/index.test.js.map +1 -0
  314. package/dist/cjs/tests/responses.test.d.ts +1 -0
  315. package/dist/cjs/tests/responses.test.js +59 -0
  316. package/dist/cjs/tests/responses.test.js.map +1 -0
  317. package/dist/cjs/version.d.ts +1 -0
  318. package/dist/cjs/version.js +5 -0
  319. package/dist/cjs/version.js.map +1 -0
  320. package/fetch-polyfill.ts +69 -0
  321. package/index.ts +276 -0
  322. package/jest.config.js +8 -0
  323. package/package.json +47 -0
  324. package/pagination.ts +58 -0
  325. package/resource.ts +24 -0
  326. package/resources/account-numbers.ts +141 -0
  327. package/resources/account-statements.ts +132 -0
  328. package/resources/account-transfers.ts +244 -0
  329. package/resources/accounts.ts +179 -0
  330. package/resources/ach-prenotifications.ts +242 -0
  331. package/resources/ach-transfers.ts +465 -0
  332. package/resources/card-disputes.ts +187 -0
  333. package/resources/card-profiles.ts +236 -0
  334. package/resources/cards.ts +398 -0
  335. package/resources/check-deposits.ts +303 -0
  336. package/resources/check-transfers.ts +422 -0
  337. package/resources/declined-transactions.ts +547 -0
  338. package/resources/digital-wallet-tokens.ts +115 -0
  339. package/resources/documents.ts +119 -0
  340. package/resources/entities/entities.ts +1668 -0
  341. package/resources/entities/index.ts +4 -0
  342. package/resources/entities/supplemental-documents.ts +25 -0
  343. package/resources/event-subscriptions.ts +232 -0
  344. package/resources/events.ts +215 -0
  345. package/resources/external-accounts.ts +162 -0
  346. package/resources/files.ts +188 -0
  347. package/resources/groups.ts +47 -0
  348. package/resources/inbound-ach-transfer-returns.ts +142 -0
  349. package/resources/inbound-wire-drawdown-requests.ts +168 -0
  350. package/resources/index.ts +165 -0
  351. package/resources/limits.ts +144 -0
  352. package/resources/oauth-connections.ts +74 -0
  353. package/resources/pending-transactions.ts +491 -0
  354. package/resources/real-time-decisions.ts +345 -0
  355. package/resources/routing-numbers.ts +62 -0
  356. package/resources/shared.ts +17 -0
  357. package/resources/simulations/account-statements.ts +25 -0
  358. package/resources/simulations/account-transfers.ts +20 -0
  359. package/resources/simulations/ach-transfers.ts +1873 -0
  360. package/resources/simulations/card-disputes.ts +33 -0
  361. package/resources/simulations/card-refunds.ts +26 -0
  362. package/resources/simulations/cards.ts +979 -0
  363. package/resources/simulations/check-deposits.ts +41 -0
  364. package/resources/simulations/check-transfers.ts +30 -0
  365. package/resources/simulations/digital-wallet-token-requests.ts +52 -0
  366. package/resources/simulations/documents.ts +24 -0
  367. package/resources/simulations/inbound-wire-drawdown-requests.ts +126 -0
  368. package/resources/simulations/index.ts +22 -0
  369. package/resources/simulations/real-time-payments-transfers.ts +1809 -0
  370. package/resources/simulations/simulations.ts +32 -0
  371. package/resources/simulations/wire-transfers.ts +1391 -0
  372. package/resources/transactions.ts +1393 -0
  373. package/resources/wire-drawdown-requests.ts +195 -0
  374. package/resources/wire-transfers.ts +399 -0
  375. package/tests/api-resources/account-numbers.test.ts +67 -0
  376. package/tests/api-resources/account-statements.test.ts +64 -0
  377. package/tests/api-resources/account-transfers.test.ts +109 -0
  378. package/tests/api-resources/accounts.test.ts +82 -0
  379. package/tests/api-resources/ach-prenotifications.test.ts +86 -0
  380. package/tests/api-resources/ach-transfers.test.ts +120 -0
  381. package/tests/api-resources/card-disputes.test.ts +71 -0
  382. package/tests/api-resources/card-profiles.test.ts +60 -0
  383. package/tests/api-resources/cards.test.ts +101 -0
  384. package/tests/api-resources/check-deposits.test.ts +74 -0
  385. package/tests/api-resources/check-transfers.test.ts +135 -0
  386. package/tests/api-resources/declined-transactions.test.ts +68 -0
  387. package/tests/api-resources/digital-wallet-tokens.test.ts +64 -0
  388. package/tests/api-resources/documents.test.ts +64 -0
  389. package/tests/api-resources/entities/entities.test.ts +243 -0
  390. package/tests/api-resources/entities/supplemental-documents.test.ts +12 -0
  391. package/tests/api-resources/event-subscriptions.test.ts +69 -0
  392. package/tests/api-resources/events.test.ts +64 -0
  393. package/tests/api-resources/external-accounts.test.ts +76 -0
  394. package/tests/api-resources/files.test.ts +81 -0
  395. package/tests/api-resources/groups.test.ts +17 -0
  396. package/tests/api-resources/inbound-ach-transfer-returns.test.ts +53 -0
  397. package/tests/api-resources/inbound-wire-drawdown-requests.test.ts +46 -0
  398. package/tests/api-resources/limits.test.ts +63 -0
  399. package/tests/api-resources/oauth-connections.test.ts +41 -0
  400. package/tests/api-resources/pending-transactions.test.ts +58 -0
  401. package/tests/api-resources/real-time-decisions.test.ts +34 -0
  402. package/tests/api-resources/routing-numbers.test.ts +18 -0
  403. package/tests/api-resources/simulations/account-statements.test.ts +12 -0
  404. package/tests/api-resources/simulations/account-transfers.test.ts +23 -0
  405. package/tests/api-resources/simulations/ach-transfers.test.ts +52 -0
  406. package/tests/api-resources/simulations/card-disputes.test.ts +19 -0
  407. package/tests/api-resources/simulations/card-refunds.test.ts +12 -0
  408. package/tests/api-resources/simulations/cards.test.ts +33 -0
  409. package/tests/api-resources/simulations/check-deposits.test.ts +49 -0
  410. package/tests/api-resources/simulations/check-transfers.test.ts +34 -0
  411. package/tests/api-resources/simulations/digital-wallet-token-requests.test.ts +12 -0
  412. package/tests/api-resources/simulations/documents.test.ts +12 -0
  413. package/tests/api-resources/simulations/inbound-wire-drawdown-requests.test.ts +44 -0
  414. package/tests/api-resources/simulations/real-time-payments-transfers.test.ts +25 -0
  415. package/tests/api-resources/simulations/wire-transfers.test.ts +33 -0
  416. package/tests/api-resources/transactions.test.ts +70 -0
  417. package/tests/api-resources/wire-drawdown-requests.test.ts +73 -0
  418. package/tests/api-resources/wire-transfers.test.ts +147 -0
  419. package/tests/form.test.ts +27 -0
  420. package/tests/index.test.ts +47 -0
  421. package/tests/responses.test.ts +25 -0
  422. package/tsconfig.cjs.json +8 -0
  423. package/tsconfig.json +37 -0
  424. package/typings/digest-fetch/index.d.ts +33 -0
  425. package/version.ts +1 -0
@@ -0,0 +1,1104 @@
1
+ import * as Core from '../../core';
2
+ import { APIResource } from '../../resource';
3
+ export declare class WireTransfers extends APIResource {
4
+ /**
5
+ * Simulates an inbound Wire Transfer to your account.
6
+ */
7
+ createInbound(
8
+ body: WireTransferCreateInboundParams,
9
+ options?: Core.RequestOptions,
10
+ ): Promise<Core.APIResponse<WireTransferSimulation>>;
11
+ }
12
+ /**
13
+ * The results of an inbound Wire Transfer simulation.
14
+ */
15
+ export interface WireTransferSimulation {
16
+ /**
17
+ * If the Wire Transfer attempt succeeds, this will contain the resulting
18
+ * [Transaction](#transactions) object. The Transaction's `source` will be of
19
+ * `category: inbound_wire_transfer`.
20
+ */
21
+ transaction: WireTransferSimulation.Transaction;
22
+ /**
23
+ * A constant representing the object's type. For this resource it will always be
24
+ * `inbound_wire_transfer_simulation_result`.
25
+ */
26
+ type: 'inbound_wire_transfer_simulation_result';
27
+ }
28
+ export declare namespace WireTransferSimulation {
29
+ interface Transaction {
30
+ /**
31
+ * The identifier for the Account the Transaction belongs to.
32
+ */
33
+ account_id: string;
34
+ /**
35
+ * The Transaction amount in the minor unit of its currency. For dollars, for
36
+ * example, this is cents.
37
+ */
38
+ amount: number;
39
+ /**
40
+ * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date on which the
41
+ * Transaction occured.
42
+ */
43
+ created_at: string;
44
+ /**
45
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
46
+ * Transaction's currency. This will match the currency on the Transcation's
47
+ * Account.
48
+ */
49
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
50
+ /**
51
+ * For a Transaction related to a transfer, this is the description you provide.
52
+ * For a Transaction related to a payment, this is the description the vendor
53
+ * provides.
54
+ */
55
+ description: string;
56
+ /**
57
+ * The Transaction identifier.
58
+ */
59
+ id: string;
60
+ /**
61
+ * The identifier for the route this Transaction came through. Routes are things
62
+ * like cards and ACH details.
63
+ */
64
+ route_id: string | null;
65
+ /**
66
+ * The type of the route this Transaction came through.
67
+ */
68
+ route_type: string | null;
69
+ /**
70
+ * This is an object giving more details on the network-level event that caused the
71
+ * Transaction. Note that for backwards compatibility reasons, additional
72
+ * undocumented keys may appear in this object. These should be treated as
73
+ * deprecated and will be removed in the future.
74
+ */
75
+ source: Transaction.Source;
76
+ /**
77
+ * A constant representing the object's type. For this resource it will always be
78
+ * `transaction`.
79
+ */
80
+ type: 'transaction';
81
+ }
82
+ namespace Transaction {
83
+ interface Source {
84
+ /**
85
+ * A Account Transfer Intention object. This field will be present in the JSON
86
+ * response if and only if `category` is equal to `account_transfer_intention`.
87
+ */
88
+ account_transfer_intention: Source.AccountTransferIntention | null;
89
+ /**
90
+ * A ACH Check Conversion object. This field will be present in the JSON response
91
+ * if and only if `category` is equal to `ach_check_conversion`.
92
+ */
93
+ ach_check_conversion: Source.ACHCheckConversion | null;
94
+ /**
95
+ * A ACH Check Conversion Return object. This field will be present in the JSON
96
+ * response if and only if `category` is equal to `ach_check_conversion_return`.
97
+ */
98
+ ach_check_conversion_return: Source.ACHCheckConversionReturn | null;
99
+ /**
100
+ * A ACH Transfer Intention object. This field will be present in the JSON response
101
+ * if and only if `category` is equal to `ach_transfer_intention`.
102
+ */
103
+ ach_transfer_intention: Source.ACHTransferIntention | null;
104
+ /**
105
+ * A ACH Transfer Rejection object. This field will be present in the JSON response
106
+ * if and only if `category` is equal to `ach_transfer_rejection`.
107
+ */
108
+ ach_transfer_rejection: Source.ACHTransferRejection | null;
109
+ /**
110
+ * A ACH Transfer Return object. This field will be present in the JSON response if
111
+ * and only if `category` is equal to `ach_transfer_return`.
112
+ */
113
+ ach_transfer_return: Source.ACHTransferReturn | null;
114
+ /**
115
+ * A Card Dispute Acceptance object. This field will be present in the JSON
116
+ * response if and only if `category` is equal to `card_dispute_acceptance`.
117
+ */
118
+ card_dispute_acceptance: Source.CardDisputeAcceptance | null;
119
+ /**
120
+ * A Card Refund object. This field will be present in the JSON response if and
121
+ * only if `category` is equal to `card_refund`.
122
+ */
123
+ card_refund: Source.CardRefund | null;
124
+ /**
125
+ * A Deprecated Card Refund object. This field will be present in the JSON response
126
+ * if and only if `category` is equal to `card_route_refund`.
127
+ */
128
+ card_route_refund: Source.CardRouteRefund | null;
129
+ /**
130
+ * A Deprecated Card Settlement object. This field will be present in the JSON
131
+ * response if and only if `category` is equal to `card_route_settlement`.
132
+ */
133
+ card_route_settlement: Source.CardRouteSettlement | null;
134
+ /**
135
+ * A Card Settlement object. This field will be present in the JSON response if and
136
+ * only if `category` is equal to `card_settlement`.
137
+ */
138
+ card_settlement: Source.CardSettlement | null;
139
+ /**
140
+ * The type of transaction that took place. We may add additional possible values
141
+ * for this enum over time; your application should be able to handle such
142
+ * additions gracefully.
143
+ */
144
+ category:
145
+ | 'account_transfer_intention'
146
+ | 'ach_check_conversion_return'
147
+ | 'ach_check_conversion'
148
+ | 'ach_transfer_intention'
149
+ | 'ach_transfer_rejection'
150
+ | 'ach_transfer_return'
151
+ | 'card_dispute_acceptance'
152
+ | 'card_refund'
153
+ | 'card_settlement'
154
+ | 'check_deposit_acceptance'
155
+ | 'check_deposit_return'
156
+ | 'check_transfer_intention'
157
+ | 'check_transfer_return'
158
+ | 'check_transfer_rejection'
159
+ | 'check_transfer_stop_payment_request'
160
+ | 'dispute_resolution'
161
+ | 'empyreal_cash_deposit'
162
+ | 'inbound_ach_transfer'
163
+ | 'inbound_ach_transfer_return_intention'
164
+ | 'inbound_check'
165
+ | 'inbound_international_ach_transfer'
166
+ | 'inbound_real_time_payments_transfer_confirmation'
167
+ | 'inbound_wire_drawdown_payment_reversal'
168
+ | 'inbound_wire_drawdown_payment'
169
+ | 'inbound_wire_reversal'
170
+ | 'inbound_wire_transfer'
171
+ | 'interest_payment'
172
+ | 'internal_general_ledger_transaction'
173
+ | 'internal_source'
174
+ | 'card_route_refund'
175
+ | 'card_route_settlement'
176
+ | 'real_time_payments_transfer_acknowledgement'
177
+ | 'sample_funds'
178
+ | 'wire_drawdown_payment_intention'
179
+ | 'wire_drawdown_payment_rejection'
180
+ | 'wire_transfer_intention'
181
+ | 'wire_transfer_rejection'
182
+ | 'other';
183
+ /**
184
+ * A Check Deposit Acceptance object. This field will be present in the JSON
185
+ * response if and only if `category` is equal to `check_deposit_acceptance`.
186
+ */
187
+ check_deposit_acceptance: Source.CheckDepositAcceptance | null;
188
+ /**
189
+ * A Check Deposit Return object. This field will be present in the JSON response
190
+ * if and only if `category` is equal to `check_deposit_return`.
191
+ */
192
+ check_deposit_return: Source.CheckDepositReturn | null;
193
+ /**
194
+ * A Check Transfer Intention object. This field will be present in the JSON
195
+ * response if and only if `category` is equal to `check_transfer_intention`.
196
+ */
197
+ check_transfer_intention: Source.CheckTransferIntention | null;
198
+ /**
199
+ * A Check Transfer Rejection object. This field will be present in the JSON
200
+ * response if and only if `category` is equal to `check_transfer_rejection`.
201
+ */
202
+ check_transfer_rejection: Source.CheckTransferRejection | null;
203
+ /**
204
+ * A Check Transfer Return object. This field will be present in the JSON response
205
+ * if and only if `category` is equal to `check_transfer_return`.
206
+ */
207
+ check_transfer_return: Source.CheckTransferReturn | null;
208
+ /**
209
+ * A Check Transfer Stop Payment Request object. This field will be present in the
210
+ * JSON response if and only if `category` is equal to
211
+ * `check_transfer_stop_payment_request`.
212
+ */
213
+ check_transfer_stop_payment_request: Source.CheckTransferStopPaymentRequest | null;
214
+ /**
215
+ * A Dispute Resolution object. This field will be present in the JSON response if
216
+ * and only if `category` is equal to `dispute_resolution`.
217
+ */
218
+ dispute_resolution: Source.DisputeResolution | null;
219
+ /**
220
+ * A Empyreal Cash Deposit object. This field will be present in the JSON response
221
+ * if and only if `category` is equal to `empyreal_cash_deposit`.
222
+ */
223
+ empyreal_cash_deposit: Source.EmpyrealCashDeposit | null;
224
+ /**
225
+ * A Inbound ACH Transfer object. This field will be present in the JSON response
226
+ * if and only if `category` is equal to `inbound_ach_transfer`.
227
+ */
228
+ inbound_ach_transfer: Source.InboundACHTransfer | null;
229
+ /**
230
+ * A Inbound Check object. This field will be present in the JSON response if and
231
+ * only if `category` is equal to `inbound_check`.
232
+ */
233
+ inbound_check: Source.InboundCheck | null;
234
+ /**
235
+ * A Inbound International ACH Transfer object. This field will be present in the
236
+ * JSON response if and only if `category` is equal to
237
+ * `inbound_international_ach_transfer`.
238
+ */
239
+ inbound_international_ach_transfer: Source.InboundInternationalACHTransfer | null;
240
+ /**
241
+ * A Inbound Real Time Payments Transfer Confirmation object. This field will be
242
+ * present in the JSON response if and only if `category` is equal to
243
+ * `inbound_real_time_payments_transfer_confirmation`.
244
+ */
245
+ inbound_real_time_payments_transfer_confirmation: Source.InboundRealTimePaymentsTransferConfirmation | null;
246
+ /**
247
+ * A Inbound Wire Drawdown Payment object. This field will be present in the JSON
248
+ * response if and only if `category` is equal to `inbound_wire_drawdown_payment`.
249
+ */
250
+ inbound_wire_drawdown_payment: Source.InboundWireDrawdownPayment | null;
251
+ /**
252
+ * A Inbound Wire Drawdown Payment Reversal object. This field will be present in
253
+ * the JSON response if and only if `category` is equal to
254
+ * `inbound_wire_drawdown_payment_reversal`.
255
+ */
256
+ inbound_wire_drawdown_payment_reversal: Source.InboundWireDrawdownPaymentReversal | null;
257
+ /**
258
+ * A Inbound Wire Reversal object. This field will be present in the JSON response
259
+ * if and only if `category` is equal to `inbound_wire_reversal`.
260
+ */
261
+ inbound_wire_reversal: Source.InboundWireReversal | null;
262
+ /**
263
+ * A Inbound Wire Transfer object. This field will be present in the JSON response
264
+ * if and only if `category` is equal to `inbound_wire_transfer`.
265
+ */
266
+ inbound_wire_transfer: Source.InboundWireTransfer | null;
267
+ /**
268
+ * A Interest Payment object. This field will be present in the JSON response if
269
+ * and only if `category` is equal to `interest_payment`.
270
+ */
271
+ interest_payment: Source.InterestPayment | null;
272
+ /**
273
+ * A Internal Source object. This field will be present in the JSON response if and
274
+ * only if `category` is equal to `internal_source`.
275
+ */
276
+ internal_source: Source.InternalSource | null;
277
+ /**
278
+ * A Sample Funds object. This field will be present in the JSON response if and
279
+ * only if `category` is equal to `sample_funds`.
280
+ */
281
+ sample_funds: Source.SampleFunds | null;
282
+ /**
283
+ * A Wire Drawdown Payment Intention object. This field will be present in the JSON
284
+ * response if and only if `category` is equal to
285
+ * `wire_drawdown_payment_intention`.
286
+ */
287
+ wire_drawdown_payment_intention: Source.WireDrawdownPaymentIntention | null;
288
+ /**
289
+ * A Wire Drawdown Payment Rejection object. This field will be present in the JSON
290
+ * response if and only if `category` is equal to
291
+ * `wire_drawdown_payment_rejection`.
292
+ */
293
+ wire_drawdown_payment_rejection: Source.WireDrawdownPaymentRejection | null;
294
+ /**
295
+ * A Wire Transfer Intention object. This field will be present in the JSON
296
+ * response if and only if `category` is equal to `wire_transfer_intention`.
297
+ */
298
+ wire_transfer_intention: Source.WireTransferIntention | null;
299
+ /**
300
+ * A Wire Transfer Rejection object. This field will be present in the JSON
301
+ * response if and only if `category` is equal to `wire_transfer_rejection`.
302
+ */
303
+ wire_transfer_rejection: Source.WireTransferRejection | null;
304
+ }
305
+ namespace Source {
306
+ interface AccountTransferIntention {
307
+ /**
308
+ * The pending amount in the minor unit of the transaction's currency. For dollars,
309
+ * for example, this is cents.
310
+ */
311
+ amount: number;
312
+ /**
313
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the destination
314
+ * account currency.
315
+ */
316
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
317
+ /**
318
+ * The description you chose to give the transfer.
319
+ */
320
+ description: string;
321
+ /**
322
+ * The identifier of the Account to where the Account Transfer was sent.
323
+ */
324
+ destination_account_id: string;
325
+ /**
326
+ * The identifier of the Account from where the Account Transfer was sent.
327
+ */
328
+ source_account_id: string;
329
+ /**
330
+ * The identifier of the Account Transfer that led to this Pending Transaction.
331
+ */
332
+ transfer_id: string;
333
+ }
334
+ interface ACHCheckConversionReturn {
335
+ /**
336
+ * The amount in the minor unit of the transaction's currency. For dollars, for
337
+ * example, this is cents.
338
+ */
339
+ amount: number;
340
+ /**
341
+ * Why the transfer was returned.
342
+ */
343
+ return_reason_code: string;
344
+ }
345
+ interface ACHCheckConversion {
346
+ /**
347
+ * The amount in the minor unit of the transaction's currency. For dollars, for
348
+ * example, this is cents.
349
+ */
350
+ amount: number;
351
+ /**
352
+ * The identifier of the File containing an image of the returned check.
353
+ */
354
+ file_id: string;
355
+ }
356
+ interface ACHTransferIntention {
357
+ account_number: string;
358
+ /**
359
+ * The amount in the minor unit of the transaction's currency. For dollars, for
360
+ * example, this is cents.
361
+ */
362
+ amount: number;
363
+ routing_number: string;
364
+ statement_descriptor: string;
365
+ /**
366
+ * The identifier of the ACH Transfer that led to this Transaction.
367
+ */
368
+ transfer_id: string;
369
+ }
370
+ interface ACHTransferRejection {
371
+ /**
372
+ * The identifier of the ACH Transfer that led to this Transaction.
373
+ */
374
+ transfer_id: string;
375
+ }
376
+ interface ACHTransferReturn {
377
+ /**
378
+ * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
379
+ * the transfer was created.
380
+ */
381
+ created_at: string;
382
+ /**
383
+ * Why the ACH Transfer was returned.
384
+ */
385
+ return_reason_code:
386
+ | 'insufficient_fund'
387
+ | 'no_account'
388
+ | 'account_closed'
389
+ | 'invalid_account_number_structure'
390
+ | 'account_frozen_entry_returned_per_ofac_instruction'
391
+ | 'credit_entry_refused_by_receiver'
392
+ | 'unauthorized_debit_to_consumer_account_using_corporate_sec_code'
393
+ | 'corporate_customer_advised_not_authorized'
394
+ | 'payment_stopped'
395
+ | 'non_transaction_account'
396
+ | 'uncollected_funds'
397
+ | 'routing_number_check_digit_error'
398
+ | 'customer_advised_unauthorized_improper_ineligible_or_incomplete'
399
+ | 'amount_field_error'
400
+ | 'authorization_revoked_by_customer'
401
+ | 'invalid_ach_routing_number'
402
+ | 'file_record_edit_criteria'
403
+ | 'enr_invalid_individual_name'
404
+ | 'returned_per_odfi_request'
405
+ | 'addenda_error'
406
+ | 'limited_participation_dfi'
407
+ | 'incorrectly_coded_outbound_international_payment'
408
+ | 'other';
409
+ /**
410
+ * The identifier of the Tranasaction associated with this return.
411
+ */
412
+ transaction_id: string;
413
+ /**
414
+ * The identifier of the ACH Transfer associated with this return.
415
+ */
416
+ transfer_id: string;
417
+ }
418
+ interface CardDisputeAcceptance {
419
+ /**
420
+ * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
421
+ * the Card Dispute was accepted.
422
+ */
423
+ accepted_at: string;
424
+ /**
425
+ * The identifier of the Card Dispute that was accepted.
426
+ */
427
+ card_dispute_id: string;
428
+ /**
429
+ * The identifier of the Transaction that was created to return the disputed funds
430
+ * to your account.
431
+ */
432
+ transaction_id: string | null;
433
+ }
434
+ interface CardRefund {
435
+ /**
436
+ * The pending amount in the minor unit of the transaction's currency. For dollars,
437
+ * for example, this is cents.
438
+ */
439
+ amount: number;
440
+ /**
441
+ * The identifier for the Transaction this refunds, if any.
442
+ */
443
+ card_settlement_transaction_id: string | null;
444
+ /**
445
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
446
+ * transaction's currency.
447
+ */
448
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
449
+ /**
450
+ * A constant representing the object's type. For this resource it will always be
451
+ * `card_refund`.
452
+ */
453
+ type: 'card_refund';
454
+ }
455
+ interface CardSettlement {
456
+ /**
457
+ * The amount in the minor unit of the transaction's settlement currency. For
458
+ * dollars, for example, this is cents.
459
+ */
460
+ amount: number;
461
+ /**
462
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
463
+ * transaction's settlement currency.
464
+ */
465
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
466
+ merchant_category_code: string;
467
+ merchant_city: string | null;
468
+ merchant_country: string;
469
+ merchant_name: string | null;
470
+ merchant_state: string | null;
471
+ /**
472
+ * The identifier of the Pending Transaction associated with this Transaction.
473
+ */
474
+ pending_transaction_id: string | null;
475
+ /**
476
+ * The amount in the minor unit of the transaction's presentment currency.
477
+ */
478
+ presentment_amount: number;
479
+ /**
480
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
481
+ * transaction's presentment currency.
482
+ */
483
+ presentment_currency: string;
484
+ /**
485
+ * A constant representing the object's type. For this resource it will always be
486
+ * `card_settlement`.
487
+ */
488
+ type: 'card_settlement';
489
+ }
490
+ interface CheckDepositAcceptance {
491
+ /**
492
+ * The account number printed on the check.
493
+ */
494
+ account_number: string;
495
+ /**
496
+ * The amount to be deposited in the minor unit of the transaction's currency. For
497
+ * dollars, for example, this is cents.
498
+ */
499
+ amount: number;
500
+ /**
501
+ * An additional line of metadata printed on the check. This typically includes the
502
+ * check number for business checks.
503
+ */
504
+ auxiliary_on_us: string | null;
505
+ /**
506
+ * The ID of the Check Deposit that was accepted.
507
+ */
508
+ check_deposit_id: string;
509
+ /**
510
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
511
+ * transaction's currency.
512
+ */
513
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
514
+ /**
515
+ * The routing number printed on the check.
516
+ */
517
+ routing_number: string;
518
+ /**
519
+ * The check serial number, if present, for consumer checks. For business checks,
520
+ * the serial number is usually in the `auxiliary_on_us` field.
521
+ */
522
+ serial_number: string | null;
523
+ }
524
+ interface CheckDepositReturn {
525
+ /**
526
+ * The amount in the minor unit of the transaction's currency. For dollars, for
527
+ * example, this is cents.
528
+ */
529
+ amount: number;
530
+ /**
531
+ * The identifier of the Check Deposit that was returned.
532
+ */
533
+ check_deposit_id: string;
534
+ /**
535
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
536
+ * transaction's currency.
537
+ */
538
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
539
+ return_reason:
540
+ | 'ach_conversion_not_supported'
541
+ | 'closed_account'
542
+ | 'duplicate_submission'
543
+ | 'insufficient_funds'
544
+ | 'no_account'
545
+ | 'not_authorized'
546
+ | 'stale_dated'
547
+ | 'stop_payment'
548
+ | 'unknown_reason'
549
+ | 'unmatched_details'
550
+ | 'unreadable_image';
551
+ /**
552
+ * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
553
+ * the check deposit was returned.
554
+ */
555
+ returned_at: string;
556
+ /**
557
+ * The identifier of the transaction that reversed the original check deposit
558
+ * transaction.
559
+ */
560
+ transaction_id: string;
561
+ }
562
+ interface CheckTransferIntention {
563
+ /**
564
+ * The city of the check's destination.
565
+ */
566
+ address_city: string;
567
+ /**
568
+ * The street address of the check's destination.
569
+ */
570
+ address_line1: string;
571
+ /**
572
+ * The second line of the address of the check's destination.
573
+ */
574
+ address_line2: string | null;
575
+ /**
576
+ * The state of the check's destination.
577
+ */
578
+ address_state: string;
579
+ /**
580
+ * The postal code of the check's destination.
581
+ */
582
+ address_zip: string;
583
+ /**
584
+ * The transfer amount in USD cents.
585
+ */
586
+ amount: number;
587
+ /**
588
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the check's
589
+ * currency.
590
+ */
591
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
592
+ /**
593
+ * The name that will be printed on the check.
594
+ */
595
+ recipient_name: string;
596
+ /**
597
+ * The identifier of the Check Transfer with which this is associated.
598
+ */
599
+ transfer_id: string;
600
+ }
601
+ interface CheckTransferReturn {
602
+ /**
603
+ * If available, a document with additional information about the return.
604
+ */
605
+ file_id: string | null;
606
+ /**
607
+ * The identifier of the returned Check Transfer.
608
+ */
609
+ transfer_id: string;
610
+ }
611
+ interface CheckTransferRejection {
612
+ /**
613
+ * The identifier of the Check Transfer that led to this Transaction.
614
+ */
615
+ transfer_id: string;
616
+ }
617
+ interface CheckTransferStopPaymentRequest {
618
+ /**
619
+ * The time the stop-payment was requested.
620
+ */
621
+ requested_at: string;
622
+ /**
623
+ * The transaction ID of the corresponding credit transaction.
624
+ */
625
+ transaction_id: string;
626
+ /**
627
+ * The ID of the check transfer that was stopped.
628
+ */
629
+ transfer_id: string;
630
+ /**
631
+ * A constant representing the object's type. For this resource it will always be
632
+ * `check_transfer_stop_payment_request`.
633
+ */
634
+ type: 'check_transfer_stop_payment_request';
635
+ }
636
+ interface DisputeResolution {
637
+ /**
638
+ * The amount in the minor unit of the transaction's currency. For dollars, for
639
+ * example, this is cents.
640
+ */
641
+ amount: number;
642
+ /**
643
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
644
+ * transaction's currency.
645
+ */
646
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
647
+ /**
648
+ * The identifier of the Transaction that was disputed.
649
+ */
650
+ disputed_transaction_id: string;
651
+ }
652
+ interface EmpyrealCashDeposit {
653
+ /**
654
+ * The amount in the minor unit of the transaction's currency. For dollars, for
655
+ * example, this is cents.
656
+ */
657
+ amount: number;
658
+ bag_id: string;
659
+ deposit_date: string;
660
+ }
661
+ interface InboundACHTransfer {
662
+ /**
663
+ * The amount in the minor unit of the destination account currency. For dollars,
664
+ * for example, this is cents.
665
+ */
666
+ amount: number;
667
+ originator_company_descriptive_date: string | null;
668
+ originator_company_discretionary_data: string | null;
669
+ originator_company_entry_description: string;
670
+ originator_company_id: string;
671
+ originator_company_name: string;
672
+ receiver_id_number: string | null;
673
+ receiver_name: string | null;
674
+ trace_number: string;
675
+ }
676
+ interface InboundCheck {
677
+ /**
678
+ * The amount in the minor unit of the destination account currency. For dollars,
679
+ * for example, this is cents.
680
+ */
681
+ amount: number;
682
+ check_front_image_file_id: string | null;
683
+ check_number: string | null;
684
+ check_rear_image_file_id: string | null;
685
+ /**
686
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
687
+ * transaction's currency.
688
+ */
689
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
690
+ }
691
+ interface InboundInternationalACHTransfer {
692
+ /**
693
+ * The amount in the minor unit of the destination account currency. For dollars,
694
+ * for example, this is cents.
695
+ */
696
+ amount: number;
697
+ destination_country_code: string;
698
+ destination_currency_code: string;
699
+ foreign_exchange_indicator: string;
700
+ foreign_exchange_reference: string | null;
701
+ foreign_exchange_reference_indicator: string;
702
+ foreign_payment_amount: number;
703
+ foreign_trace_number: string | null;
704
+ international_transaction_type_code: string;
705
+ originating_currency_code: string;
706
+ originating_depository_financial_institution_branch_country: string;
707
+ originating_depository_financial_institution_id: string;
708
+ originating_depository_financial_institution_id_qualifier: string;
709
+ originating_depository_financial_institution_name: string;
710
+ originator_city: string;
711
+ originator_company_entry_description: string;
712
+ originator_country: string;
713
+ originator_identification: string;
714
+ originator_name: string;
715
+ originator_postal_code: string | null;
716
+ originator_state_or_province: string | null;
717
+ originator_street_address: string;
718
+ payment_related_information: string | null;
719
+ payment_related_information2: string | null;
720
+ receiver_city: string;
721
+ receiver_country: string;
722
+ receiver_identification_number: string | null;
723
+ receiver_postal_code: string | null;
724
+ receiver_state_or_province: string | null;
725
+ receiver_street_address: string;
726
+ receiving_company_or_individual_name: string;
727
+ receiving_depository_financial_institution_country: string;
728
+ receiving_depository_financial_institution_id: string;
729
+ receiving_depository_financial_institution_id_qualifier: string;
730
+ receiving_depository_financial_institution_name: string;
731
+ trace_number: string;
732
+ }
733
+ interface InboundRealTimePaymentsTransferConfirmation {
734
+ /**
735
+ * The amount in the minor unit of the transfer's currency. For dollars, for
736
+ * example, this is cents.
737
+ */
738
+ amount: number;
739
+ /**
740
+ * The name the sender of the transfer specified as the recipient of the transfer.
741
+ */
742
+ creditor_name: string;
743
+ /**
744
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code of the transfer's
745
+ * currency. This will always be "USD" for a Real Time Payments transfer.
746
+ */
747
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
748
+ /**
749
+ * The account number of the account that sent the transfer.
750
+ */
751
+ debtor_account_number: string;
752
+ /**
753
+ * The name provided by the sender of the transfer.
754
+ */
755
+ debtor_name: string;
756
+ /**
757
+ * The routing number of the account that sent the transfer.
758
+ */
759
+ debtor_routing_number: string;
760
+ /**
761
+ * Additional information included with the transfer.
762
+ */
763
+ remittance_information: string | null;
764
+ /**
765
+ * The Real Time Payments network identification of the transfer
766
+ */
767
+ transaction_identification: string;
768
+ }
769
+ interface InboundWireDrawdownPaymentReversal {
770
+ /**
771
+ * The amount that was reversed.
772
+ */
773
+ amount: number;
774
+ /**
775
+ * The description on the reversal message from Fedwire.
776
+ */
777
+ description: string;
778
+ /**
779
+ * The Fedwire cycle date for the wire reversal.
780
+ */
781
+ input_cycle_date: string;
782
+ /**
783
+ * The Fedwire transaction identifier.
784
+ */
785
+ input_message_accountability_data: string;
786
+ /**
787
+ * The Fedwire sequence number.
788
+ */
789
+ input_sequence_number: string;
790
+ /**
791
+ * The Fedwire input source identifier.
792
+ */
793
+ input_source: string;
794
+ /**
795
+ * The Fedwire cycle date for the wire transfer that was reversed.
796
+ */
797
+ previous_message_input_cycle_date: string;
798
+ /**
799
+ * The Fedwire transaction identifier for the wire transfer that was reversed.
800
+ */
801
+ previous_message_input_message_accountability_data: string;
802
+ /**
803
+ * The Fedwire sequence number for the wire transfer that was reversed.
804
+ */
805
+ previous_message_input_sequence_number: string;
806
+ /**
807
+ * The Fedwire input source identifier for the wire transfer that was reversed.
808
+ */
809
+ previous_message_input_source: string;
810
+ }
811
+ interface InboundWireDrawdownPayment {
812
+ /**
813
+ * The amount in the minor unit of the transaction's currency. For dollars, for
814
+ * example, this is cents.
815
+ */
816
+ amount: number;
817
+ beneficiary_address_line1: string | null;
818
+ beneficiary_address_line2: string | null;
819
+ beneficiary_address_line3: string | null;
820
+ beneficiary_name: string | null;
821
+ beneficiary_reference: string | null;
822
+ description: string;
823
+ input_message_accountability_data: string | null;
824
+ originator_address_line1: string | null;
825
+ originator_address_line2: string | null;
826
+ originator_address_line3: string | null;
827
+ originator_name: string | null;
828
+ originator_to_beneficiary_information: string | null;
829
+ }
830
+ interface InboundWireReversal {
831
+ /**
832
+ * The amount that was reversed.
833
+ */
834
+ amount: number;
835
+ /**
836
+ * The description on the reversal message from Fedwire.
837
+ */
838
+ description: string;
839
+ /**
840
+ * Additional financial institution information included in the wire reversal.
841
+ */
842
+ financial_institution_to_financial_institution_information: string | null;
843
+ /**
844
+ * The Fedwire cycle date for the wire reversal.
845
+ */
846
+ input_cycle_date: string;
847
+ /**
848
+ * The Fedwire transaction identifier.
849
+ */
850
+ input_message_accountability_data: string;
851
+ /**
852
+ * The Fedwire sequence number.
853
+ */
854
+ input_sequence_number: string;
855
+ /**
856
+ * The Fedwire input source identifier.
857
+ */
858
+ input_source: string;
859
+ /**
860
+ * The Fedwire cycle date for the wire transfer that was reversed.
861
+ */
862
+ previous_message_input_cycle_date: string;
863
+ /**
864
+ * The Fedwire transaction identifier for the wire transfer that was reversed.
865
+ */
866
+ previous_message_input_message_accountability_data: string;
867
+ /**
868
+ * The Fedwire sequence number for the wire transfer that was reversed.
869
+ */
870
+ previous_message_input_sequence_number: string;
871
+ /**
872
+ * The Fedwire input source identifier for the wire transfer that was reversed.
873
+ */
874
+ previous_message_input_source: string;
875
+ /**
876
+ * Information included in the wire reversal for the receiving financial
877
+ * institution.
878
+ */
879
+ receiver_financial_institution_information: string | null;
880
+ }
881
+ interface InboundWireTransfer {
882
+ /**
883
+ * The amount in the minor unit of the transaction's currency. For dollars, for
884
+ * example, this is cents.
885
+ */
886
+ amount: number;
887
+ beneficiary_address_line1: string | null;
888
+ beneficiary_address_line2: string | null;
889
+ beneficiary_address_line3: string | null;
890
+ beneficiary_name: string | null;
891
+ beneficiary_reference: string | null;
892
+ description: string;
893
+ input_message_accountability_data: string | null;
894
+ originator_address_line1: string | null;
895
+ originator_address_line2: string | null;
896
+ originator_address_line3: string | null;
897
+ originator_name: string | null;
898
+ originator_to_beneficiary_information: string | null;
899
+ originator_to_beneficiary_information_line1: string | null;
900
+ originator_to_beneficiary_information_line2: string | null;
901
+ originator_to_beneficiary_information_line3: string | null;
902
+ originator_to_beneficiary_information_line4: string | null;
903
+ }
904
+ interface InterestPayment {
905
+ /**
906
+ * The account on which the interest was accrued.
907
+ */
908
+ accrued_on_account_id: string | null;
909
+ /**
910
+ * The amount in the minor unit of the transaction's currency. For dollars, for
911
+ * example, this is cents.
912
+ */
913
+ amount: number;
914
+ /**
915
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
916
+ * currency.
917
+ */
918
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
919
+ /**
920
+ * The end of the period for which this transaction paid interest.
921
+ */
922
+ period_end: string;
923
+ /**
924
+ * The start of the period for which this transaction paid interest.
925
+ */
926
+ period_start: string;
927
+ }
928
+ interface InternalSource {
929
+ /**
930
+ * The amount in the minor unit of the transaction's currency. For dollars, for
931
+ * example, this is cents.
932
+ */
933
+ amount: number;
934
+ /**
935
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transaction
936
+ * currency.
937
+ */
938
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
939
+ reason:
940
+ | 'bank_migration'
941
+ | 'cashback'
942
+ | 'empyreal_adjustment'
943
+ | 'error'
944
+ | 'error_correction'
945
+ | 'fees'
946
+ | 'interest'
947
+ | 'sample_funds'
948
+ | 'sample_funds_return';
949
+ }
950
+ interface CardRouteRefund {
951
+ /**
952
+ * The refunded amount in the minor unit of the refunded currency. For dollars, for
953
+ * example, this is cents.
954
+ */
955
+ amount: number;
956
+ /**
957
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the refund
958
+ * currency.
959
+ */
960
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
961
+ merchant_acceptor_id: string;
962
+ merchant_category_code: string | null;
963
+ merchant_city: string | null;
964
+ merchant_country: string;
965
+ merchant_descriptor: string;
966
+ merchant_state: string | null;
967
+ }
968
+ interface CardRouteSettlement {
969
+ /**
970
+ * The settled amount in the minor unit of the settlement currency. For dollars,
971
+ * for example, this is cents.
972
+ */
973
+ amount: number;
974
+ /**
975
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the settlement
976
+ * currency.
977
+ */
978
+ currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
979
+ merchant_acceptor_id: string;
980
+ merchant_category_code: string | null;
981
+ merchant_city: string | null;
982
+ merchant_country: string | null;
983
+ merchant_descriptor: string;
984
+ merchant_state: string | null;
985
+ }
986
+ interface SampleFunds {
987
+ /**
988
+ * Where the sample funds came from.
989
+ */
990
+ originator: string;
991
+ }
992
+ interface WireDrawdownPaymentIntention {
993
+ account_number: string;
994
+ /**
995
+ * The transfer amount in USD cents.
996
+ */
997
+ amount: number;
998
+ message_to_recipient: string;
999
+ routing_number: string;
1000
+ transfer_id: string;
1001
+ }
1002
+ interface WireDrawdownPaymentRejection {
1003
+ transfer_id: string;
1004
+ }
1005
+ interface WireTransferIntention {
1006
+ /**
1007
+ * The destination account number.
1008
+ */
1009
+ account_number: string;
1010
+ /**
1011
+ * The transfer amount in USD cents.
1012
+ */
1013
+ amount: number;
1014
+ /**
1015
+ * The message that will show on the recipient's bank statement.
1016
+ */
1017
+ message_to_recipient: string;
1018
+ /**
1019
+ * The American Bankers' Association (ABA) Routing Transit Number (RTN).
1020
+ */
1021
+ routing_number: string;
1022
+ transfer_id: string;
1023
+ }
1024
+ interface WireTransferRejection {
1025
+ transfer_id: string;
1026
+ }
1027
+ }
1028
+ }
1029
+ }
1030
+ export interface WireTransferCreateInboundParams {
1031
+ /**
1032
+ * The identifier of the Account Number the inbound Wire Transfer is for.
1033
+ */
1034
+ account_number_id: string;
1035
+ /**
1036
+ * The transfer amount in cents. Must be positive.
1037
+ */
1038
+ amount: number;
1039
+ /**
1040
+ * The sending bank will set beneficiary_address_line1 in production. You can
1041
+ * simulate any value here.
1042
+ */
1043
+ beneficiary_address_line1?: string;
1044
+ /**
1045
+ * The sending bank will set beneficiary_address_line2 in production. You can
1046
+ * simulate any value here.
1047
+ */
1048
+ beneficiary_address_line2?: string;
1049
+ /**
1050
+ * The sending bank will set beneficiary_address_line3 in production. You can
1051
+ * simulate any value here.
1052
+ */
1053
+ beneficiary_address_line3?: string;
1054
+ /**
1055
+ * The sending bank will set beneficiary_name in production. You can simulate any
1056
+ * value here.
1057
+ */
1058
+ beneficiary_name?: string;
1059
+ /**
1060
+ * The sending bank will set beneficiary_reference in production. You can simulate
1061
+ * any value here.
1062
+ */
1063
+ beneficiary_reference?: string;
1064
+ /**
1065
+ * The sending bank will set originator_address_line1 in production. You can
1066
+ * simulate any value here.
1067
+ */
1068
+ originator_address_line1?: string;
1069
+ /**
1070
+ * The sending bank will set originator_address_line2 in production. You can
1071
+ * simulate any value here.
1072
+ */
1073
+ originator_address_line2?: string;
1074
+ /**
1075
+ * The sending bank will set originator_address_line3 in production. You can
1076
+ * simulate any value here.
1077
+ */
1078
+ originator_address_line3?: string;
1079
+ /**
1080
+ * The sending bank will set originator_name in production. You can simulate any
1081
+ * value here.
1082
+ */
1083
+ originator_name?: string;
1084
+ /**
1085
+ * The sending bank will set originator_to_beneficiary_information_line1 in
1086
+ * production. You can simulate any value here.
1087
+ */
1088
+ originator_to_beneficiary_information_line1?: string;
1089
+ /**
1090
+ * The sending bank will set originator_to_beneficiary_information_line2 in
1091
+ * production. You can simulate any value here.
1092
+ */
1093
+ originator_to_beneficiary_information_line2?: string;
1094
+ /**
1095
+ * The sending bank will set originator_to_beneficiary_information_line3 in
1096
+ * production. You can simulate any value here.
1097
+ */
1098
+ originator_to_beneficiary_information_line3?: string;
1099
+ /**
1100
+ * The sending bank will set originator_to_beneficiary_information_line4 in
1101
+ * production. You can simulate any value here.
1102
+ */
1103
+ originator_to_beneficiary_information_line4?: string;
1104
+ }