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