modern-treasury-mcp 2.37.0 → 2.38.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 (261) hide show
  1. package/README.md +7 -0
  2. package/package.json +2 -2
  3. package/server.js +1 -1
  4. package/server.mjs +1 -1
  5. package/src/server.ts +1 -1
  6. package/src/tools/account-details/create-account-details.ts +4 -0
  7. package/src/tools/bulk-requests/create-bulk-requests.ts +55 -1
  8. package/src/tools/bulk-requests/list-bulk-requests.ts +1 -0
  9. package/src/tools/bulk-results/list-bulk-results.ts +1 -0
  10. package/src/tools/connection-legal-entities/create-connection-legal-entities.ts +22 -0
  11. package/src/tools/counterparties/create-counterparties.ts +45 -1
  12. package/src/tools/documents/create-documents.ts +2 -2
  13. package/src/tools/documents/list-documents.ts +2 -2
  14. package/src/tools/expected-payments/create-expected-payments.ts +15 -0
  15. package/src/tools/expected-payments/list-expected-payments.ts +14 -0
  16. package/src/tools/expected-payments/update-expected-payments.ts +15 -0
  17. package/src/tools/external-accounts/create-external-accounts.ts +23 -1
  18. package/src/tools/external-accounts/update-external-accounts.ts +15 -1
  19. package/src/tools/external-accounts/verify-external-accounts.ts +11 -0
  20. package/src/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.ts +7 -0
  21. package/src/tools/incoming-payment-details/create-async-incoming-payment-details.ts +7 -0
  22. package/src/tools/index.ts +8 -0
  23. package/src/tools/internal-accounts/create-internal-accounts.ts +20 -0
  24. package/src/tools/internal-accounts/list-internal-accounts.ts +11 -0
  25. package/src/tools/invoices/create-invoices.ts +11 -0
  26. package/src/tools/invoices/update-invoices.ts +11 -0
  27. package/src/tools/legal-entities/create-legal-entities.ts +22 -0
  28. package/src/tools/legal-entities/update-legal-entities.ts +11 -0
  29. package/src/tools/legal-entity-associations/create-legal-entity-associations.ts +11 -0
  30. package/src/tools/payment-actions/create-payment-actions.ts +50 -0
  31. package/src/tools/payment-actions/list-payment-actions.ts +90 -0
  32. package/src/tools/payment-actions/retrieve-payment-actions.ts +31 -0
  33. package/src/tools/payment-actions/update-payment-actions.ts +37 -0
  34. package/src/tools/payment-orders/create-async-payment-orders.ts +34 -1
  35. package/src/tools/payment-orders/create-payment-orders.ts +36 -3
  36. package/src/tools/payment-orders/list-payment-orders.ts +4 -0
  37. package/src/tools/payment-orders/update-payment-orders.ts +34 -1
  38. package/src/tools/returns/create-returns.ts +40 -0
  39. package/src/tools/routing-details/create-routing-details.ts +4 -0
  40. package/src/tools/transactions/create-transactions.ts +4 -0
  41. package/src/tools/virtual-accounts/create-virtual-accounts.ts +8 -0
  42. package/tools/account-details/create-account-details.d.mts.map +1 -1
  43. package/tools/account-details/create-account-details.d.ts.map +1 -1
  44. package/tools/account-details/create-account-details.js +4 -0
  45. package/tools/account-details/create-account-details.js.map +1 -1
  46. package/tools/account-details/create-account-details.mjs +4 -0
  47. package/tools/account-details/create-account-details.mjs.map +1 -1
  48. package/tools/bulk-requests/create-bulk-requests.d.mts.map +1 -1
  49. package/tools/bulk-requests/create-bulk-requests.d.ts.map +1 -1
  50. package/tools/bulk-requests/create-bulk-requests.js +55 -1
  51. package/tools/bulk-requests/create-bulk-requests.js.map +1 -1
  52. package/tools/bulk-requests/create-bulk-requests.mjs +55 -1
  53. package/tools/bulk-requests/create-bulk-requests.mjs.map +1 -1
  54. package/tools/bulk-requests/list-bulk-requests.d.mts.map +1 -1
  55. package/tools/bulk-requests/list-bulk-requests.d.ts.map +1 -1
  56. package/tools/bulk-requests/list-bulk-requests.js +1 -0
  57. package/tools/bulk-requests/list-bulk-requests.js.map +1 -1
  58. package/tools/bulk-requests/list-bulk-requests.mjs +1 -0
  59. package/tools/bulk-requests/list-bulk-requests.mjs.map +1 -1
  60. package/tools/bulk-results/list-bulk-results.d.mts.map +1 -1
  61. package/tools/bulk-results/list-bulk-results.d.ts.map +1 -1
  62. package/tools/bulk-results/list-bulk-results.js +1 -0
  63. package/tools/bulk-results/list-bulk-results.js.map +1 -1
  64. package/tools/bulk-results/list-bulk-results.mjs +1 -0
  65. package/tools/bulk-results/list-bulk-results.mjs.map +1 -1
  66. package/tools/connection-legal-entities/create-connection-legal-entities.d.mts.map +1 -1
  67. package/tools/connection-legal-entities/create-connection-legal-entities.d.ts.map +1 -1
  68. package/tools/connection-legal-entities/create-connection-legal-entities.js +20 -0
  69. package/tools/connection-legal-entities/create-connection-legal-entities.js.map +1 -1
  70. package/tools/connection-legal-entities/create-connection-legal-entities.mjs +20 -0
  71. package/tools/connection-legal-entities/create-connection-legal-entities.mjs.map +1 -1
  72. package/tools/counterparties/create-counterparties.d.mts.map +1 -1
  73. package/tools/counterparties/create-counterparties.d.ts.map +1 -1
  74. package/tools/counterparties/create-counterparties.js +43 -1
  75. package/tools/counterparties/create-counterparties.js.map +1 -1
  76. package/tools/counterparties/create-counterparties.mjs +43 -1
  77. package/tools/counterparties/create-counterparties.mjs.map +1 -1
  78. package/tools/documents/create-documents.js +2 -2
  79. package/tools/documents/create-documents.js.map +1 -1
  80. package/tools/documents/create-documents.mjs +2 -2
  81. package/tools/documents/create-documents.mjs.map +1 -1
  82. package/tools/documents/list-documents.js +2 -2
  83. package/tools/documents/list-documents.js.map +1 -1
  84. package/tools/documents/list-documents.mjs +2 -2
  85. package/tools/documents/list-documents.mjs.map +1 -1
  86. package/tools/expected-payments/create-expected-payments.d.mts.map +1 -1
  87. package/tools/expected-payments/create-expected-payments.d.ts.map +1 -1
  88. package/tools/expected-payments/create-expected-payments.js +15 -0
  89. package/tools/expected-payments/create-expected-payments.js.map +1 -1
  90. package/tools/expected-payments/create-expected-payments.mjs +15 -0
  91. package/tools/expected-payments/create-expected-payments.mjs.map +1 -1
  92. package/tools/expected-payments/list-expected-payments.d.mts.map +1 -1
  93. package/tools/expected-payments/list-expected-payments.d.ts.map +1 -1
  94. package/tools/expected-payments/list-expected-payments.js +14 -0
  95. package/tools/expected-payments/list-expected-payments.js.map +1 -1
  96. package/tools/expected-payments/list-expected-payments.mjs +14 -0
  97. package/tools/expected-payments/list-expected-payments.mjs.map +1 -1
  98. package/tools/expected-payments/update-expected-payments.d.mts.map +1 -1
  99. package/tools/expected-payments/update-expected-payments.d.ts.map +1 -1
  100. package/tools/expected-payments/update-expected-payments.js +15 -0
  101. package/tools/expected-payments/update-expected-payments.js.map +1 -1
  102. package/tools/expected-payments/update-expected-payments.mjs +15 -0
  103. package/tools/expected-payments/update-expected-payments.mjs.map +1 -1
  104. package/tools/external-accounts/create-external-accounts.d.mts.map +1 -1
  105. package/tools/external-accounts/create-external-accounts.d.ts.map +1 -1
  106. package/tools/external-accounts/create-external-accounts.js +23 -1
  107. package/tools/external-accounts/create-external-accounts.js.map +1 -1
  108. package/tools/external-accounts/create-external-accounts.mjs +23 -1
  109. package/tools/external-accounts/create-external-accounts.mjs.map +1 -1
  110. package/tools/external-accounts/update-external-accounts.d.mts.map +1 -1
  111. package/tools/external-accounts/update-external-accounts.d.ts.map +1 -1
  112. package/tools/external-accounts/update-external-accounts.js +15 -1
  113. package/tools/external-accounts/update-external-accounts.js.map +1 -1
  114. package/tools/external-accounts/update-external-accounts.mjs +15 -1
  115. package/tools/external-accounts/update-external-accounts.mjs.map +1 -1
  116. package/tools/external-accounts/verify-external-accounts.d.mts.map +1 -1
  117. package/tools/external-accounts/verify-external-accounts.d.ts.map +1 -1
  118. package/tools/external-accounts/verify-external-accounts.js +11 -0
  119. package/tools/external-accounts/verify-external-accounts.js.map +1 -1
  120. package/tools/external-accounts/verify-external-accounts.mjs +11 -0
  121. package/tools/external-accounts/verify-external-accounts.mjs.map +1 -1
  122. package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.d.mts.map +1 -1
  123. package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.d.ts.map +1 -1
  124. package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.js +7 -0
  125. package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.js.map +1 -1
  126. package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.mjs +7 -0
  127. package/tools/foreign-exchange-quotes/create-foreign-exchange-quotes.mjs.map +1 -1
  128. package/tools/incoming-payment-details/create-async-incoming-payment-details.d.mts.map +1 -1
  129. package/tools/incoming-payment-details/create-async-incoming-payment-details.d.ts.map +1 -1
  130. package/tools/incoming-payment-details/create-async-incoming-payment-details.js +7 -0
  131. package/tools/incoming-payment-details/create-async-incoming-payment-details.js.map +1 -1
  132. package/tools/incoming-payment-details/create-async-incoming-payment-details.mjs +7 -0
  133. package/tools/incoming-payment-details/create-async-incoming-payment-details.mjs.map +1 -1
  134. package/tools/index.d.mts.map +1 -1
  135. package/tools/index.d.ts.map +1 -1
  136. package/tools/index.js +8 -0
  137. package/tools/index.js.map +1 -1
  138. package/tools/index.mjs +8 -0
  139. package/tools/index.mjs.map +1 -1
  140. package/tools/internal-accounts/create-internal-accounts.d.mts.map +1 -1
  141. package/tools/internal-accounts/create-internal-accounts.d.ts.map +1 -1
  142. package/tools/internal-accounts/create-internal-accounts.js +19 -0
  143. package/tools/internal-accounts/create-internal-accounts.js.map +1 -1
  144. package/tools/internal-accounts/create-internal-accounts.mjs +19 -0
  145. package/tools/internal-accounts/create-internal-accounts.mjs.map +1 -1
  146. package/tools/internal-accounts/list-internal-accounts.d.mts.map +1 -1
  147. package/tools/internal-accounts/list-internal-accounts.d.ts.map +1 -1
  148. package/tools/internal-accounts/list-internal-accounts.js +11 -0
  149. package/tools/internal-accounts/list-internal-accounts.js.map +1 -1
  150. package/tools/internal-accounts/list-internal-accounts.mjs +11 -0
  151. package/tools/internal-accounts/list-internal-accounts.mjs.map +1 -1
  152. package/tools/invoices/create-invoices.d.mts.map +1 -1
  153. package/tools/invoices/create-invoices.d.ts.map +1 -1
  154. package/tools/invoices/create-invoices.js +11 -0
  155. package/tools/invoices/create-invoices.js.map +1 -1
  156. package/tools/invoices/create-invoices.mjs +11 -0
  157. package/tools/invoices/create-invoices.mjs.map +1 -1
  158. package/tools/invoices/update-invoices.d.mts.map +1 -1
  159. package/tools/invoices/update-invoices.d.ts.map +1 -1
  160. package/tools/invoices/update-invoices.js +11 -0
  161. package/tools/invoices/update-invoices.js.map +1 -1
  162. package/tools/invoices/update-invoices.mjs +11 -0
  163. package/tools/invoices/update-invoices.mjs.map +1 -1
  164. package/tools/legal-entities/create-legal-entities.d.mts.map +1 -1
  165. package/tools/legal-entities/create-legal-entities.d.ts.map +1 -1
  166. package/tools/legal-entities/create-legal-entities.js +20 -0
  167. package/tools/legal-entities/create-legal-entities.js.map +1 -1
  168. package/tools/legal-entities/create-legal-entities.mjs +20 -0
  169. package/tools/legal-entities/create-legal-entities.mjs.map +1 -1
  170. package/tools/legal-entities/update-legal-entities.d.mts.map +1 -1
  171. package/tools/legal-entities/update-legal-entities.d.ts.map +1 -1
  172. package/tools/legal-entities/update-legal-entities.js +10 -0
  173. package/tools/legal-entities/update-legal-entities.js.map +1 -1
  174. package/tools/legal-entities/update-legal-entities.mjs +10 -0
  175. package/tools/legal-entities/update-legal-entities.mjs.map +1 -1
  176. package/tools/legal-entity-associations/create-legal-entity-associations.d.mts.map +1 -1
  177. package/tools/legal-entity-associations/create-legal-entity-associations.d.ts.map +1 -1
  178. package/tools/legal-entity-associations/create-legal-entity-associations.js +10 -0
  179. package/tools/legal-entity-associations/create-legal-entity-associations.js.map +1 -1
  180. package/tools/legal-entity-associations/create-legal-entity-associations.mjs +10 -0
  181. package/tools/legal-entity-associations/create-legal-entity-associations.mjs.map +1 -1
  182. package/tools/payment-actions/create-payment-actions.d.mts +32 -0
  183. package/tools/payment-actions/create-payment-actions.d.mts.map +1 -0
  184. package/tools/payment-actions/create-payment-actions.d.ts +32 -0
  185. package/tools/payment-actions/create-payment-actions.d.ts.map +1 -0
  186. package/tools/payment-actions/create-payment-actions.js +45 -0
  187. package/tools/payment-actions/create-payment-actions.js.map +1 -0
  188. package/tools/payment-actions/create-payment-actions.mjs +41 -0
  189. package/tools/payment-actions/create-payment-actions.mjs.map +1 -0
  190. package/tools/payment-actions/list-payment-actions.d.mts +32 -0
  191. package/tools/payment-actions/list-payment-actions.d.mts.map +1 -0
  192. package/tools/payment-actions/list-payment-actions.d.ts +32 -0
  193. package/tools/payment-actions/list-payment-actions.d.ts.map +1 -0
  194. package/tools/payment-actions/list-payment-actions.js +84 -0
  195. package/tools/payment-actions/list-payment-actions.js.map +1 -0
  196. package/tools/payment-actions/list-payment-actions.mjs +80 -0
  197. package/tools/payment-actions/list-payment-actions.mjs.map +1 -0
  198. package/tools/payment-actions/retrieve-payment-actions.d.mts +32 -0
  199. package/tools/payment-actions/retrieve-payment-actions.d.mts.map +1 -0
  200. package/tools/payment-actions/retrieve-payment-actions.d.ts +32 -0
  201. package/tools/payment-actions/retrieve-payment-actions.d.ts.map +1 -0
  202. package/tools/payment-actions/retrieve-payment-actions.js +28 -0
  203. package/tools/payment-actions/retrieve-payment-actions.js.map +1 -0
  204. package/tools/payment-actions/retrieve-payment-actions.mjs +24 -0
  205. package/tools/payment-actions/retrieve-payment-actions.mjs.map +1 -0
  206. package/tools/payment-actions/update-payment-actions.d.mts +32 -0
  207. package/tools/payment-actions/update-payment-actions.d.mts.map +1 -0
  208. package/tools/payment-actions/update-payment-actions.d.ts +32 -0
  209. package/tools/payment-actions/update-payment-actions.d.ts.map +1 -0
  210. package/tools/payment-actions/update-payment-actions.js +33 -0
  211. package/tools/payment-actions/update-payment-actions.js.map +1 -0
  212. package/tools/payment-actions/update-payment-actions.mjs +29 -0
  213. package/tools/payment-actions/update-payment-actions.mjs.map +1 -0
  214. package/tools/payment-orders/create-async-payment-orders.d.mts.map +1 -1
  215. package/tools/payment-orders/create-async-payment-orders.d.ts.map +1 -1
  216. package/tools/payment-orders/create-async-payment-orders.js +34 -1
  217. package/tools/payment-orders/create-async-payment-orders.js.map +1 -1
  218. package/tools/payment-orders/create-async-payment-orders.mjs +34 -1
  219. package/tools/payment-orders/create-async-payment-orders.mjs.map +1 -1
  220. package/tools/payment-orders/create-payment-orders.d.mts.map +1 -1
  221. package/tools/payment-orders/create-payment-orders.d.ts.map +1 -1
  222. package/tools/payment-orders/create-payment-orders.js +36 -3
  223. package/tools/payment-orders/create-payment-orders.js.map +1 -1
  224. package/tools/payment-orders/create-payment-orders.mjs +36 -3
  225. package/tools/payment-orders/create-payment-orders.mjs.map +1 -1
  226. package/tools/payment-orders/list-payment-orders.d.mts.map +1 -1
  227. package/tools/payment-orders/list-payment-orders.d.ts.map +1 -1
  228. package/tools/payment-orders/list-payment-orders.js +4 -0
  229. package/tools/payment-orders/list-payment-orders.js.map +1 -1
  230. package/tools/payment-orders/list-payment-orders.mjs +4 -0
  231. package/tools/payment-orders/list-payment-orders.mjs.map +1 -1
  232. package/tools/payment-orders/update-payment-orders.d.mts.map +1 -1
  233. package/tools/payment-orders/update-payment-orders.d.ts.map +1 -1
  234. package/tools/payment-orders/update-payment-orders.js +34 -1
  235. package/tools/payment-orders/update-payment-orders.js.map +1 -1
  236. package/tools/payment-orders/update-payment-orders.mjs +34 -1
  237. package/tools/payment-orders/update-payment-orders.mjs.map +1 -1
  238. package/tools/returns/create-returns.d.mts.map +1 -1
  239. package/tools/returns/create-returns.d.ts.map +1 -1
  240. package/tools/returns/create-returns.js +40 -0
  241. package/tools/returns/create-returns.js.map +1 -1
  242. package/tools/returns/create-returns.mjs +40 -0
  243. package/tools/returns/create-returns.mjs.map +1 -1
  244. package/tools/routing-details/create-routing-details.d.mts.map +1 -1
  245. package/tools/routing-details/create-routing-details.d.ts.map +1 -1
  246. package/tools/routing-details/create-routing-details.js +4 -0
  247. package/tools/routing-details/create-routing-details.js.map +1 -1
  248. package/tools/routing-details/create-routing-details.mjs +4 -0
  249. package/tools/routing-details/create-routing-details.mjs.map +1 -1
  250. package/tools/transactions/create-transactions.d.mts.map +1 -1
  251. package/tools/transactions/create-transactions.d.ts.map +1 -1
  252. package/tools/transactions/create-transactions.js +4 -0
  253. package/tools/transactions/create-transactions.js.map +1 -1
  254. package/tools/transactions/create-transactions.mjs +4 -0
  255. package/tools/transactions/create-transactions.mjs.map +1 -1
  256. package/tools/virtual-accounts/create-virtual-accounts.d.mts.map +1 -1
  257. package/tools/virtual-accounts/create-virtual-accounts.d.ts.map +1 -1
  258. package/tools/virtual-accounts/create-virtual-accounts.js +8 -0
  259. package/tools/virtual-accounts/create-virtual-accounts.js.map +1 -1
  260. package/tools/virtual-accounts/create-virtual-accounts.mjs +8 -0
  261. package/tools/virtual-accounts/create-virtual-accounts.mjs.map +1 -1
package/README.md CHANGED
@@ -460,3 +460,10 @@ The following tools are available in this MCP server.
460
460
  ### Resource `legal_entity_associations`:
461
461
 
462
462
  - `create_legal_entity_associations` (`write`): create legal_entity_association
463
+
464
+ ### Resource `payment_actions`:
465
+
466
+ - `create_payment_actions` (`write`): Create a payment action.
467
+ - `retrieve_payment_actions` (`read`): Get details on a single payment action.
468
+ - `update_payment_actions` (`write`): Update a single payment action.
469
+ - `list_payment_actions` (`read`): Get a list of all payment actions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "modern-treasury-mcp",
3
- "version": "2.37.0",
3
+ "version": "2.38.0",
4
4
  "description": "The official MCP Server for the Modern Treasury API",
5
5
  "author": "Modern Treasury <sdk-feedback@moderntreasury.com>",
6
6
  "types": "./index.d.ts",
@@ -24,7 +24,7 @@
24
24
  "fix": "eslint --fix --ext ts,js ."
25
25
  },
26
26
  "dependencies": {
27
- "modern-treasury": "^2.37.0",
27
+ "modern-treasury": "^2.38.0",
28
28
  "@modelcontextprotocol/sdk": "^1.6.1",
29
29
  "yargs": "^17.7.2",
30
30
  "@cloudflare/cabidela": "^0.2.4",
package/server.js CHANGED
@@ -19,7 +19,7 @@ Object.defineProperty(exports, "endpoints", { enumerable: true, get: function ()
19
19
  // Create server instance
20
20
  exports.server = new mcp_js_1.McpServer({
21
21
  name: 'modern_treasury_api',
22
- version: '2.37.0',
22
+ version: '2.38.0',
23
23
  }, {
24
24
  capabilities: {
25
25
  tools: {},
package/server.mjs CHANGED
@@ -9,7 +9,7 @@ export { endpoints } from "./tools.mjs";
9
9
  // Create server instance
10
10
  export const server = new McpServer({
11
11
  name: 'modern_treasury_api',
12
- version: '2.37.0',
12
+ version: '2.38.0',
13
13
  }, {
14
14
  capabilities: {
15
15
  tools: {},
package/src/server.ts CHANGED
@@ -19,7 +19,7 @@ export { endpoints } from './tools';
19
19
  export const server = new McpServer(
20
20
  {
21
21
  name: 'modern_treasury_api',
22
- version: '2.37.0',
22
+ version: '2.38.0',
23
23
  },
24
24
  {
25
25
  capabilities: {
@@ -33,14 +33,18 @@ export const tool: Tool = {
33
33
  'One of `iban`, `clabe`, `wallet_address`, or `other`. Use `other` if the bank account number is in a generic format.',
34
34
  enum: [
35
35
  'au_number',
36
+ 'base_address',
36
37
  'clabe',
38
+ 'ethereum_address',
37
39
  'hk_number',
38
40
  'iban',
39
41
  'id_number',
40
42
  'nz_number',
41
43
  'other',
42
44
  'pan',
45
+ 'polygon_address',
43
46
  'sg_number',
47
+ 'solana_address',
44
48
  'wallet_address',
45
49
  ],
46
50
  },
@@ -30,6 +30,7 @@ export const tool: Tool = {
30
30
  'ledger_transaction',
31
31
  'expected_payment',
32
32
  'transaction',
33
+ 'transaction_line_item',
33
34
  'entity_link',
34
35
  ],
35
36
  },
@@ -320,14 +321,18 @@ export const tool: Tool = {
320
321
  type: 'string',
321
322
  enum: [
322
323
  'au_number',
324
+ 'base_address',
323
325
  'clabe',
326
+ 'ethereum_address',
324
327
  'hk_number',
325
328
  'iban',
326
329
  'id_number',
327
330
  'nz_number',
328
331
  'other',
329
332
  'pan',
333
+ 'polygon_address',
330
334
  'sg_number',
335
+ 'solana_address',
331
336
  'wallet_address',
332
337
  ],
333
338
  },
@@ -506,6 +511,7 @@ export const tool: Tool = {
506
511
  'ach',
507
512
  'au_becs',
508
513
  'bacs',
514
+ 'base',
509
515
  'book',
510
516
  'card',
511
517
  'chats',
@@ -513,6 +519,7 @@ export const tool: Tool = {
513
519
  'cross_border',
514
520
  'dk_nets',
515
521
  'eft',
522
+ 'ethereum',
516
523
  'hu_ics',
517
524
  'interac',
518
525
  'masav',
@@ -521,6 +528,7 @@ export const tool: Tool = {
521
528
  'nics',
522
529
  'nz_becs',
523
530
  'pl_elixir',
531
+ 'polygon',
524
532
  'provxchange',
525
533
  'ro_sent',
526
534
  'rtp',
@@ -531,6 +539,7 @@ export const tool: Tool = {
531
539
  'sic',
532
540
  'signet',
533
541
  'sknbi',
542
+ 'solana',
534
543
  'wire',
535
544
  'zengin',
536
545
  ],
@@ -966,6 +975,7 @@ export const tool: Tool = {
966
975
  'ach',
967
976
  'au_becs',
968
977
  'bacs',
978
+ 'base',
969
979
  'book',
970
980
  'card',
971
981
  'chats',
@@ -973,6 +983,7 @@ export const tool: Tool = {
973
983
  'cross_border',
974
984
  'dk_nets',
975
985
  'eft',
986
+ 'ethereum',
976
987
  'hu_ics',
977
988
  'interac',
978
989
  'masav',
@@ -981,6 +992,7 @@ export const tool: Tool = {
981
992
  'nics',
982
993
  'nz_becs',
983
994
  'pl_elixir',
995
+ 'polygon',
984
996
  'provxchange',
985
997
  'ro_sent',
986
998
  'rtp',
@@ -991,6 +1003,7 @@ export const tool: Tool = {
991
1003
  'sic',
992
1004
  'signet',
993
1005
  'sknbi',
1006
+ 'solana',
994
1007
  'wire',
995
1008
  'zengin',
996
1009
  'other',
@@ -1191,14 +1204,18 @@ export const tool: Tool = {
1191
1204
  type: 'string',
1192
1205
  enum: [
1193
1206
  'au_number',
1207
+ 'base_address',
1194
1208
  'clabe',
1209
+ 'ethereum_address',
1195
1210
  'hk_number',
1196
1211
  'iban',
1197
1212
  'id_number',
1198
1213
  'nz_number',
1199
1214
  'other',
1200
1215
  'pan',
1216
+ 'polygon_address',
1201
1217
  'sg_number',
1218
+ 'solana_address',
1202
1219
  'wallet_address',
1203
1220
  ],
1204
1221
  },
@@ -1377,6 +1394,7 @@ export const tool: Tool = {
1377
1394
  'ach',
1378
1395
  'au_becs',
1379
1396
  'bacs',
1397
+ 'base',
1380
1398
  'book',
1381
1399
  'card',
1382
1400
  'chats',
@@ -1384,6 +1402,7 @@ export const tool: Tool = {
1384
1402
  'cross_border',
1385
1403
  'dk_nets',
1386
1404
  'eft',
1405
+ 'ethereum',
1387
1406
  'hu_ics',
1388
1407
  'interac',
1389
1408
  'masav',
@@ -1392,6 +1411,7 @@ export const tool: Tool = {
1392
1411
  'nics',
1393
1412
  'nz_becs',
1394
1413
  'pl_elixir',
1414
+ 'polygon',
1395
1415
  'provxchange',
1396
1416
  'ro_sent',
1397
1417
  'rtp',
@@ -1402,6 +1422,7 @@ export const tool: Tool = {
1402
1422
  'sic',
1403
1423
  'signet',
1404
1424
  'sknbi',
1425
+ 'solana',
1405
1426
  'wire',
1406
1427
  'zengin',
1407
1428
  ],
@@ -1700,6 +1721,7 @@ export const tool: Tool = {
1700
1721
  'ach',
1701
1722
  'au_becs',
1702
1723
  'bacs',
1724
+ 'base',
1703
1725
  'book',
1704
1726
  'card',
1705
1727
  'chats',
@@ -1707,6 +1729,7 @@ export const tool: Tool = {
1707
1729
  'cross_border',
1708
1730
  'dk_nets',
1709
1731
  'eft',
1732
+ 'ethereum',
1710
1733
  'hu_ics',
1711
1734
  'interac',
1712
1735
  'masav',
@@ -1715,6 +1738,7 @@ export const tool: Tool = {
1715
1738
  'nics',
1716
1739
  'nz_becs',
1717
1740
  'pl_elixir',
1741
+ 'polygon',
1718
1742
  'provxchange',
1719
1743
  'ro_sent',
1720
1744
  'rtp',
@@ -1725,6 +1749,7 @@ export const tool: Tool = {
1725
1749
  'sic',
1726
1750
  'signet',
1727
1751
  'sknbi',
1752
+ 'solana',
1728
1753
  'wire',
1729
1754
  'zengin',
1730
1755
  ],
@@ -1783,6 +1808,7 @@ export const tool: Tool = {
1783
1808
  'ERN',
1784
1809
  'ETB',
1785
1810
  'EUR',
1811
+ 'EURC',
1786
1812
  'FJD',
1787
1813
  'FKP',
1788
1814
  'GBP',
@@ -1858,12 +1884,14 @@ export const tool: Tool = {
1858
1884
  'PKR',
1859
1885
  'PLN',
1860
1886
  'PYG',
1887
+ 'PYUSD',
1861
1888
  'QAR',
1862
1889
  'RON',
1863
1890
  'RSD',
1864
1891
  'RUB',
1865
1892
  'RWF',
1866
1893
  'SAR',
1894
+ 'SBC',
1867
1895
  'SBD',
1868
1896
  'SCR',
1869
1897
  'SDG',
@@ -1892,6 +1920,10 @@ export const tool: Tool = {
1892
1920
  'UAH',
1893
1921
  'UGX',
1894
1922
  'USD',
1923
+ 'USDB',
1924
+ 'USDC',
1925
+ 'USDP',
1926
+ 'USDT',
1895
1927
  'UYU',
1896
1928
  'UZS',
1897
1929
  'VEF',
@@ -1931,7 +1963,21 @@ export const tool: Tool = {
1931
1963
  external_account_type: {
1932
1964
  type: 'string',
1933
1965
  description: 'Can be `checking`, `savings` or `other`.',
1934
- enum: ['cash', 'checking', 'general_ledger', 'loan', 'non_resident', 'other', 'overdraft', 'savings'],
1966
+ enum: [
1967
+ 'base_wallet',
1968
+ 'cash',
1969
+ 'checking',
1970
+ 'crypto_wallet',
1971
+ 'ethereum_wallet',
1972
+ 'general_ledger',
1973
+ 'loan',
1974
+ 'non_resident',
1975
+ 'other',
1976
+ 'overdraft',
1977
+ 'polygon_wallet',
1978
+ 'savings',
1979
+ 'solana_wallet',
1980
+ ],
1935
1981
  },
1936
1982
  payment_order_subtype: {
1937
1983
  type: 'string',
@@ -2021,6 +2067,7 @@ export const tool: Tool = {
2021
2067
  'ach',
2022
2068
  'au_becs',
2023
2069
  'bacs',
2070
+ 'base',
2024
2071
  'book',
2025
2072
  'card',
2026
2073
  'chats',
@@ -2028,6 +2075,7 @@ export const tool: Tool = {
2028
2075
  'cross_border',
2029
2076
  'dk_nets',
2030
2077
  'eft',
2078
+ 'ethereum',
2031
2079
  'hu_ics',
2032
2080
  'interac',
2033
2081
  'masav',
@@ -2036,6 +2084,7 @@ export const tool: Tool = {
2036
2084
  'nics',
2037
2085
  'nz_becs',
2038
2086
  'pl_elixir',
2087
+ 'polygon',
2039
2088
  'provxchange',
2040
2089
  'ro_sent',
2041
2090
  'rtp',
@@ -2046,6 +2095,7 @@ export const tool: Tool = {
2046
2095
  'sic',
2047
2096
  'signet',
2048
2097
  'sknbi',
2098
+ 'solana',
2049
2099
  'wire',
2050
2100
  'zengin',
2051
2101
  ],
@@ -2061,6 +2111,7 @@ export const tool: Tool = {
2061
2111
  'ach',
2062
2112
  'au_becs',
2063
2113
  'bacs',
2114
+ 'base',
2064
2115
  'book',
2065
2116
  'card',
2066
2117
  'chats',
@@ -2068,6 +2119,7 @@ export const tool: Tool = {
2068
2119
  'cross_border',
2069
2120
  'dk_nets',
2070
2121
  'eft',
2122
+ 'ethereum',
2071
2123
  'hu_ics',
2072
2124
  'interac',
2073
2125
  'masav',
@@ -2076,6 +2128,7 @@ export const tool: Tool = {
2076
2128
  'nics',
2077
2129
  'nz_becs',
2078
2130
  'pl_elixir',
2131
+ 'polygon',
2079
2132
  'provxchange',
2080
2133
  'ro_sent',
2081
2134
  'rtp',
@@ -2086,6 +2139,7 @@ export const tool: Tool = {
2086
2139
  'sic',
2087
2140
  'signet',
2088
2141
  'sknbi',
2142
+ 'solana',
2089
2143
  'wire',
2090
2144
  'zengin',
2091
2145
  ],
@@ -41,6 +41,7 @@ export const tool: Tool = {
41
41
  'ledger_transaction',
42
42
  'expected_payment',
43
43
  'transaction',
44
+ 'transaction_line_item',
44
45
  'entity_link',
45
46
  ],
46
47
  },
@@ -34,6 +34,7 @@ export const tool: Tool = {
34
34
  'expected_payment',
35
35
  'transaction',
36
36
  'entity_link',
37
+ 'transaction_line_item',
37
38
  'bulk_error',
38
39
  ],
39
40
  },
@@ -126,6 +126,7 @@ export const tool: Tool = {
126
126
  'cl_rut',
127
127
  'co_cedulas',
128
128
  'co_nit',
129
+ 'drivers_license',
129
130
  'hn_id',
130
131
  'hn_rtn',
131
132
  'in_lei',
@@ -141,11 +142,21 @@ export const tool: Tool = {
141
142
  'vn_tin',
142
143
  ],
143
144
  },
145
+ expiration_date: {
146
+ type: 'string',
147
+ description:
148
+ 'The date when the Identification is no longer considered valid by the issuing authority.',
149
+ format: 'date',
150
+ },
144
151
  issuing_country: {
145
152
  type: 'string',
146
153
  description:
147
154
  'The ISO 3166-1 alpha-2 country code of the country that issued the identification',
148
155
  },
156
+ issuing_region: {
157
+ type: 'string',
158
+ description: 'The region in which the identifcation was issued.',
159
+ },
149
160
  },
150
161
  required: ['id_number', 'id_type'],
151
162
  },
@@ -282,6 +293,7 @@ export const tool: Tool = {
282
293
  'cl_rut',
283
294
  'co_cedulas',
284
295
  'co_nit',
296
+ 'drivers_license',
285
297
  'hn_id',
286
298
  'hn_rtn',
287
299
  'in_lei',
@@ -297,11 +309,21 @@ export const tool: Tool = {
297
309
  'vn_tin',
298
310
  ],
299
311
  },
312
+ expiration_date: {
313
+ type: 'string',
314
+ description:
315
+ 'The date when the Identification is no longer considered valid by the issuing authority.',
316
+ format: 'date',
317
+ },
300
318
  issuing_country: {
301
319
  type: 'string',
302
320
  description:
303
321
  'The ISO 3166-1 alpha-2 country code of the country that issued the identification',
304
322
  },
323
+ issuing_region: {
324
+ type: 'string',
325
+ description: 'The region in which the identifcation was issued.',
326
+ },
305
327
  },
306
328
  required: ['id_number', 'id_type'],
307
329
  },
@@ -50,14 +50,18 @@ export const tool: Tool = {
50
50
  type: 'string',
51
51
  enum: [
52
52
  'au_number',
53
+ 'base_address',
53
54
  'clabe',
55
+ 'ethereum_address',
54
56
  'hk_number',
55
57
  'iban',
56
58
  'id_number',
57
59
  'nz_number',
58
60
  'other',
59
61
  'pan',
62
+ 'polygon_address',
60
63
  'sg_number',
64
+ 'solana_address',
61
65
  'wallet_address',
62
66
  ],
63
67
  },
@@ -235,6 +239,7 @@ export const tool: Tool = {
235
239
  'ach',
236
240
  'au_becs',
237
241
  'bacs',
242
+ 'base',
238
243
  'book',
239
244
  'card',
240
245
  'chats',
@@ -242,6 +247,7 @@ export const tool: Tool = {
242
247
  'cross_border',
243
248
  'dk_nets',
244
249
  'eft',
250
+ 'ethereum',
245
251
  'hu_ics',
246
252
  'interac',
247
253
  'masav',
@@ -250,6 +256,7 @@ export const tool: Tool = {
250
256
  'nics',
251
257
  'nz_becs',
252
258
  'pl_elixir',
259
+ 'polygon',
253
260
  'provxchange',
254
261
  'ro_sent',
255
262
  'rtp',
@@ -260,6 +267,7 @@ export const tool: Tool = {
260
267
  'sic',
261
268
  'signet',
262
269
  'sknbi',
270
+ 'solana',
263
271
  'wire',
264
272
  'zengin',
265
273
  ],
@@ -392,6 +400,7 @@ export const tool: Tool = {
392
400
  'cl_rut',
393
401
  'co_cedulas',
394
402
  'co_nit',
403
+ 'drivers_license',
395
404
  'hn_id',
396
405
  'hn_rtn',
397
406
  'in_lei',
@@ -407,11 +416,21 @@ export const tool: Tool = {
407
416
  'vn_tin',
408
417
  ],
409
418
  },
419
+ expiration_date: {
420
+ type: 'string',
421
+ description:
422
+ 'The date when the Identification is no longer considered valid by the issuing authority.',
423
+ format: 'date',
424
+ },
410
425
  issuing_country: {
411
426
  type: 'string',
412
427
  description:
413
428
  'The ISO 3166-1 alpha-2 country code of the country that issued the identification',
414
429
  },
430
+ issuing_region: {
431
+ type: 'string',
432
+ description: 'The region in which the identifcation was issued.',
433
+ },
415
434
  },
416
435
  required: ['id_number', 'id_type'],
417
436
  },
@@ -548,6 +567,7 @@ export const tool: Tool = {
548
567
  'cl_rut',
549
568
  'co_cedulas',
550
569
  'co_nit',
570
+ 'drivers_license',
551
571
  'hn_id',
552
572
  'hn_rtn',
553
573
  'in_lei',
@@ -563,11 +583,21 @@ export const tool: Tool = {
563
583
  'vn_tin',
564
584
  ],
565
585
  },
586
+ expiration_date: {
587
+ type: 'string',
588
+ description:
589
+ 'The date when the Identification is no longer considered valid by the issuing authority.',
590
+ format: 'date',
591
+ },
566
592
  issuing_country: {
567
593
  type: 'string',
568
594
  description:
569
595
  'The ISO 3166-1 alpha-2 country code of the country that issued the identification',
570
596
  },
597
+ issuing_region: {
598
+ type: 'string',
599
+ description: 'The region in which the identifcation was issued.',
600
+ },
571
601
  },
572
602
  required: ['id_number', 'id_type'],
573
603
  },
@@ -755,7 +785,21 @@ export const tool: Tool = {
755
785
  external_account_type: {
756
786
  type: 'string',
757
787
  description: 'Can be `checking`, `savings` or `other`.',
758
- enum: ['cash', 'checking', 'general_ledger', 'loan', 'non_resident', 'other', 'overdraft', 'savings'],
788
+ enum: [
789
+ 'base_wallet',
790
+ 'cash',
791
+ 'checking',
792
+ 'crypto_wallet',
793
+ 'ethereum_wallet',
794
+ 'general_ledger',
795
+ 'loan',
796
+ 'non_resident',
797
+ 'other',
798
+ 'overdraft',
799
+ 'polygon_wallet',
800
+ 'savings',
801
+ 'solana_wallet',
802
+ ],
759
803
  },
760
804
  transaction_direction: {
761
805
  type: 'string',
@@ -23,18 +23,18 @@ export const tool: Tool = {
23
23
  documentable_type: {
24
24
  type: 'string',
25
25
  enum: [
26
- 'cases',
27
26
  'counterparties',
28
27
  'expected_payments',
29
28
  'external_accounts',
29
+ 'identifications',
30
30
  'incoming_payment_details',
31
31
  'internal_accounts',
32
32
  'organizations',
33
33
  'paper_items',
34
34
  'payment_orders',
35
35
  'transactions',
36
- 'decisions',
37
36
  'connections',
37
+ 'conversations',
38
38
  ],
39
39
  },
40
40
  file: {
@@ -28,18 +28,18 @@ export const tool: Tool = {
28
28
  description:
29
29
  'The type of the associated object. Currently can be one of `payment_order`, `transaction`, `paper_item`, `expected_payment`, `counterparty`, `organization`, `case`, `internal_account`, `decision`, or `external_account`.',
30
30
  enum: [
31
- 'cases',
32
31
  'counterparties',
33
32
  'expected_payments',
34
33
  'external_accounts',
34
+ 'identifications',
35
35
  'incoming_payment_details',
36
36
  'internal_accounts',
37
37
  'organizations',
38
38
  'paper_items',
39
39
  'payment_orders',
40
40
  'transactions',
41
- 'decisions',
42
41
  'connections',
42
+ 'conversations',
43
43
  ],
44
44
  },
45
45
  per_page: {