@moovio/sdk 0.15.1 → 0.15.2

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 (92) hide show
  1. package/README.md +7 -3
  2. package/bin/mcp-server.js +360 -49
  3. package/bin/mcp-server.js.map +20 -16
  4. package/docs/sdks/transfers/README.md +8 -6
  5. package/docs/sdks/wallets/README.md +14 -13
  6. package/docs/sdks/wallettransactions/README.md +4 -3
  7. package/examples/package-lock.json +1 -1
  8. package/funcs/transfersList.d.ts +2 -1
  9. package/funcs/transfersList.d.ts.map +1 -1
  10. package/funcs/transfersList.js +4 -1
  11. package/funcs/transfersList.js.map +1 -1
  12. package/funcs/transfersUpdate.d.ts +2 -1
  13. package/funcs/transfersUpdate.d.ts.map +1 -1
  14. package/funcs/transfersUpdate.js +4 -1
  15. package/funcs/transfersUpdate.js.map +1 -1
  16. package/funcs/walletTransactionsList.d.ts +2 -1
  17. package/funcs/walletTransactionsList.d.ts.map +1 -1
  18. package/funcs/walletTransactionsList.js +4 -1
  19. package/funcs/walletTransactionsList.js.map +1 -1
  20. package/funcs/walletsCreate.d.ts +1 -1
  21. package/funcs/walletsCreate.d.ts.map +1 -1
  22. package/funcs/walletsCreate.js +3 -1
  23. package/funcs/walletsCreate.js.map +1 -1
  24. package/funcs/walletsList.d.ts +2 -1
  25. package/funcs/walletsList.d.ts.map +1 -1
  26. package/funcs/walletsList.js +4 -1
  27. package/funcs/walletsList.js.map +1 -1
  28. package/funcs/walletsUpdate.d.ts +1 -1
  29. package/funcs/walletsUpdate.d.ts.map +1 -1
  30. package/funcs/walletsUpdate.js +3 -1
  31. package/funcs/walletsUpdate.js.map +1 -1
  32. package/jsr.json +1 -1
  33. package/lib/config.d.ts +2 -2
  34. package/lib/config.js +2 -2
  35. package/mcp-server/mcp-server.js +1 -1
  36. package/mcp-server/server.js +1 -1
  37. package/models/errors/createwalletvalidationerror.d.ts +41 -0
  38. package/models/errors/createwalletvalidationerror.d.ts.map +1 -0
  39. package/models/errors/{createwalleterror.js → createwalletvalidationerror.js} +15 -15
  40. package/models/errors/createwalletvalidationerror.js.map +1 -0
  41. package/models/errors/index.d.ts +6 -2
  42. package/models/errors/index.d.ts.map +1 -1
  43. package/models/errors/index.js +6 -2
  44. package/models/errors/index.js.map +1 -1
  45. package/models/errors/listtransfersvalidationerror.d.ts +69 -0
  46. package/models/errors/listtransfersvalidationerror.d.ts.map +1 -0
  47. package/models/errors/listtransfersvalidationerror.js +130 -0
  48. package/models/errors/listtransfersvalidationerror.js.map +1 -0
  49. package/models/errors/listwalletsvalidationerror.d.ts +45 -0
  50. package/models/errors/listwalletsvalidationerror.d.ts.map +1 -0
  51. package/models/errors/listwalletsvalidationerror.js +98 -0
  52. package/models/errors/listwalletsvalidationerror.js.map +1 -0
  53. package/models/errors/listwallettransactionsvalidationerror.d.ts +72 -0
  54. package/models/errors/listwallettransactionsvalidationerror.d.ts.map +1 -0
  55. package/models/errors/listwallettransactionsvalidationerror.js +140 -0
  56. package/models/errors/listwallettransactionsvalidationerror.js.map +1 -0
  57. package/models/errors/patchtransfervalidationerror.d.ts +39 -0
  58. package/models/errors/patchtransfervalidationerror.d.ts.map +1 -0
  59. package/models/errors/patchtransfervalidationerror.js +90 -0
  60. package/models/errors/patchtransfervalidationerror.js.map +1 -0
  61. package/models/errors/patchwalletvalidationerror.d.ts +44 -0
  62. package/models/errors/patchwalletvalidationerror.d.ts.map +1 -0
  63. package/models/errors/{patchwalleterror.js → patchwalletvalidationerror.js} +15 -15
  64. package/models/errors/patchwalletvalidationerror.js.map +1 -0
  65. package/models/errors/transfervalidationerror.d.ts +6 -12
  66. package/models/errors/transfervalidationerror.d.ts.map +1 -1
  67. package/models/errors/transfervalidationerror.js +8 -10
  68. package/models/errors/transfervalidationerror.js.map +1 -1
  69. package/package.json +1 -1
  70. package/src/funcs/transfersList.ts +8 -1
  71. package/src/funcs/transfersUpdate.ts +8 -1
  72. package/src/funcs/walletTransactionsList.ts +8 -1
  73. package/src/funcs/walletsCreate.ts +6 -4
  74. package/src/funcs/walletsList.ts +8 -1
  75. package/src/funcs/walletsUpdate.ts +6 -4
  76. package/src/lib/config.ts +2 -2
  77. package/src/mcp-server/mcp-server.ts +1 -1
  78. package/src/mcp-server/server.ts +1 -1
  79. package/src/models/errors/{createwalleterror.ts → createwalletvalidationerror.ts} +20 -20
  80. package/src/models/errors/index.ts +6 -2
  81. package/src/models/errors/listtransfersvalidationerror.ts +145 -0
  82. package/src/models/errors/listwalletsvalidationerror.ts +97 -0
  83. package/src/models/errors/listwallettransactionsvalidationerror.ts +165 -0
  84. package/src/models/errors/patchtransfervalidationerror.ts +85 -0
  85. package/src/models/errors/{patchwalleterror.ts → patchwalletvalidationerror.ts} +20 -20
  86. package/src/models/errors/transfervalidationerror.ts +12 -20
  87. package/models/errors/createwalleterror.d.ts +0 -41
  88. package/models/errors/createwalleterror.d.ts.map +0 -1
  89. package/models/errors/createwalleterror.js.map +0 -1
  90. package/models/errors/patchwalleterror.d.ts +0 -44
  91. package/models/errors/patchwalleterror.d.ts.map +0 -1
  92. package/models/errors/patchwalleterror.js.map +0 -1
package/README.md CHANGED
@@ -2205,7 +2205,7 @@ run();
2205
2205
  **Primary error:**
2206
2206
  * [`MoovError`](./src/models/errors/mooverror.ts): The base class for HTTP error responses.
2207
2207
 
2208
- <details><summary>Less common errors (45)</summary>
2208
+ <details><summary>Less common errors (49)</summary>
2209
2209
 
2210
2210
  <br />
2211
2211
 
@@ -2246,12 +2246,16 @@ run();
2246
2246
  * [`UpdateTicketError`](./src/models/errors/updateticketerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2247
2247
  * [`TransferOptionsValidationError`](./src/models/errors/transferoptionsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2248
2248
  * [`TransferValidationError`](./src/models/errors/transfervalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2249
+ * [`ListTransfersValidationError`](./src/models/errors/listtransfersvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2250
+ * [`PatchTransferValidationError`](./src/models/errors/patchtransfervalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2249
2251
  * [`RefundValidationError`](./src/models/errors/refundvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2250
2252
  * [`ReversalValidationError`](./src/models/errors/reversalvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2251
2253
  * [`UpsertUnderwritingError`](./src/models/errors/upsertunderwritingerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2252
2254
  * [`UpdateUnderwritingError`](./src/models/errors/updateunderwritingerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2253
- * [`CreateWalletError`](./src/models/errors/createwalleterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2254
- * [`PatchWalletError`](./src/models/errors/patchwalleterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2255
+ * [`CreateWalletValidationError`](./src/models/errors/createwalletvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2256
+ * [`ListWalletsValidationError`](./src/models/errors/listwalletsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2257
+ * [`PatchWalletValidationError`](./src/models/errors/patchwalletvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2258
+ * [`ListWalletTransactionsValidationError`](./src/models/errors/listwallettransactionsvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2255
2259
  * [`RequestCardError`](./src/models/errors/requestcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2256
2260
  * [`UpdateIssuedCardError`](./src/models/errors/updateissuedcarderror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*
2257
2261
  * [`RevokeTokenRequestError`](./src/models/errors/revoketokenrequesterror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 1 of 147 methods.*