@moovio/sdk 0.19.2 → 0.21.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 (86) hide show
  1. package/README.md +70 -46
  2. package/bin/mcp-server.js +1259 -659
  3. package/bin/mcp-server.js.map +19 -9
  4. package/docs/sdks/feeplans/README.md +276 -0
  5. package/examples/package-lock.json +1 -1
  6. package/funcs/feePlansGetResidual.d.ts +17 -0
  7. package/funcs/feePlansGetResidual.d.ts.map +1 -0
  8. package/funcs/feePlansGetResidual.js +129 -0
  9. package/funcs/feePlansGetResidual.js.map +1 -0
  10. package/funcs/feePlansListResidualFees.d.ts +17 -0
  11. package/funcs/feePlansListResidualFees.d.ts.map +1 -0
  12. package/funcs/feePlansListResidualFees.js +136 -0
  13. package/funcs/feePlansListResidualFees.js.map +1 -0
  14. package/funcs/feePlansListResiduals.d.ts +17 -0
  15. package/funcs/feePlansListResiduals.d.ts.map +1 -0
  16. package/funcs/feePlansListResiduals.js +132 -0
  17. package/funcs/feePlansListResiduals.js.map +1 -0
  18. package/jsr.json +1 -1
  19. package/lib/config.d.ts +3 -3
  20. package/lib/config.js +3 -3
  21. package/mcp-server/mcp-server.js +1 -1
  22. package/mcp-server/server.d.ts.map +1 -1
  23. package/mcp-server/server.js +7 -1
  24. package/mcp-server/server.js.map +1 -1
  25. package/mcp-server/tools/feePlansGetResidual.d.ts +8 -0
  26. package/mcp-server/tools/feePlansGetResidual.d.ts.map +1 -0
  27. package/mcp-server/tools/feePlansGetResidual.js +65 -0
  28. package/mcp-server/tools/feePlansGetResidual.js.map +1 -0
  29. package/mcp-server/tools/feePlansListResidualFees.d.ts +8 -0
  30. package/mcp-server/tools/feePlansListResidualFees.d.ts.map +1 -0
  31. package/mcp-server/tools/feePlansListResidualFees.js +65 -0
  32. package/mcp-server/tools/feePlansListResidualFees.js.map +1 -0
  33. package/mcp-server/tools/feePlansListResiduals.d.ts +8 -0
  34. package/mcp-server/tools/feePlansListResiduals.d.ts.map +1 -0
  35. package/mcp-server/tools/feePlansListResiduals.js +65 -0
  36. package/mcp-server/tools/feePlansListResiduals.js.map +1 -0
  37. package/models/components/index.d.ts +1 -0
  38. package/models/components/index.d.ts.map +1 -1
  39. package/models/components/index.js +1 -0
  40. package/models/components/index.js.map +1 -1
  41. package/models/components/productimagemetadata.d.ts +5 -0
  42. package/models/components/productimagemetadata.d.ts.map +1 -1
  43. package/models/components/productimagemetadata.js +2 -0
  44. package/models/components/productimagemetadata.js.map +1 -1
  45. package/models/components/residual.d.ts +59 -0
  46. package/models/components/residual.d.ts.map +1 -0
  47. package/models/components/residual.js +92 -0
  48. package/models/components/residual.js.map +1 -0
  49. package/models/operations/getresidual.d.ts +101 -0
  50. package/models/operations/getresidual.d.ts.map +1 -0
  51. package/models/operations/getresidual.js +147 -0
  52. package/models/operations/getresidual.js.map +1 -0
  53. package/models/operations/index.d.ts +3 -0
  54. package/models/operations/index.d.ts.map +1 -1
  55. package/models/operations/index.js +3 -0
  56. package/models/operations/index.js.map +1 -1
  57. package/models/operations/listresidualfees.d.ts +115 -0
  58. package/models/operations/listresidualfees.d.ts.map +1 -0
  59. package/models/operations/listresidualfees.js +155 -0
  60. package/models/operations/listresidualfees.js.map +1 -0
  61. package/models/operations/listresiduals.d.ts +113 -0
  62. package/models/operations/listresiduals.d.ts.map +1 -0
  63. package/models/operations/listresiduals.js +153 -0
  64. package/models/operations/listresiduals.js.map +1 -0
  65. package/package.json +1 -1
  66. package/sdk/feeplans.d.ts +21 -0
  67. package/sdk/feeplans.d.ts.map +1 -1
  68. package/sdk/feeplans.js +30 -0
  69. package/sdk/feeplans.js.map +1 -1
  70. package/src/funcs/feePlansGetResidual.ts +185 -0
  71. package/src/funcs/feePlansListResidualFees.ts +193 -0
  72. package/src/funcs/feePlansListResiduals.ts +187 -0
  73. package/src/lib/config.ts +3 -3
  74. package/src/mcp-server/mcp-server.ts +1 -1
  75. package/src/mcp-server/server.ts +7 -1
  76. package/src/mcp-server/tools/feePlansGetResidual.ts +38 -0
  77. package/src/mcp-server/tools/feePlansListResidualFees.ts +38 -0
  78. package/src/mcp-server/tools/feePlansListResiduals.ts +38 -0
  79. package/src/models/components/index.ts +1 -0
  80. package/src/models/components/productimagemetadata.ts +7 -0
  81. package/src/models/components/residual.ts +121 -0
  82. package/src/models/operations/getresidual.ts +223 -0
  83. package/src/models/operations/index.ts +3 -0
  84. package/src/models/operations/listresidualfees.ts +245 -0
  85. package/src/models/operations/listresiduals.ts +241 -0
  86. package/src/sdk/feeplans.ts +54 -0
package/README.md CHANGED
@@ -722,6 +722,18 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
722
722
  you'll need to specify the `/accounts/{accountID}/profile.read` scope.
723
723
  * [listPartnerPricingAgreements](docs/sdks/feeplans/README.md#listpartnerpricingagreements) - List all partner pricing agreements associated with an account.
724
724
 
725
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
726
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
727
+ * [listResiduals](docs/sdks/feeplans/README.md#listresiduals) - List all residuals associated with an account.
728
+
729
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
730
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
731
+ * [getResidual](docs/sdks/feeplans/README.md#getresidual) - Get a residual associated with an account.
732
+
733
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
734
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
735
+ * [listResidualFees](docs/sdks/feeplans/README.md#listresidualfees) - List all fees associated with a residual.
736
+
725
737
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
726
738
  you'll need to specify the `/accounts/{accountID}/profile.read` scope.
727
739
 
@@ -1618,6 +1630,10 @@ you'll need to specify the `/profile-enrichment.read` scope.
1618
1630
 
1619
1631
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1620
1632
  you'll need to specify the `/accounts/{accountID}/profile.write` scope.
1633
+ - [`feePlansGetResidual`](docs/sdks/feeplans/README.md#getresidual) - Get a residual associated with an account.
1634
+
1635
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1636
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
1621
1637
  - [`feePlansListFeePlanAgreements`](docs/sdks/feeplans/README.md#listfeeplanagreements) - List all fee plan agreements associated with an account.
1622
1638
 
1623
1639
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -1637,6 +1653,14 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
1637
1653
  you'll need to specify the `/accounts/{accountID}/profile.read` scope.
1638
1654
  - [`feePlansListPartnerPricingAgreements`](docs/sdks/feeplans/README.md#listpartnerpricingagreements) - List all partner pricing agreements associated with an account.
1639
1655
 
1656
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1657
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
1658
+ - [`feePlansListResidualFees`](docs/sdks/feeplans/README.md#listresidualfees) - List all fees associated with a residual.
1659
+
1660
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1661
+ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
1662
+ - [`feePlansListResiduals`](docs/sdks/feeplans/README.md#listresiduals) - List all residuals associated with an account.
1663
+
1640
1664
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1641
1665
  you'll need to specify the `/accounts/{accountID}/profile.read` scope.
1642
1666
  - [`feePlansRetrieveFees`](docs/sdks/feeplans/README.md#retrievefees) - Retrieve fees associated with an account.
@@ -2258,52 +2282,52 @@ run();
2258
2282
 
2259
2283
 
2260
2284
  **Inherit from [`MoovError`](./src/models/errors/mooverror.ts)**:
2261
- * [`GenericError`](./src/models/errors/genericerror.ts): Applicable to 72 of 159 methods.*
2262
- * [`BrandValidationError`](./src/models/errors/brandvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 3 of 159 methods.*
2263
- * [`ImageRequestValidationError`](./src/models/errors/imagerequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 159 methods.*
2264
- * [`ProductRequestValidationError`](./src/models/errors/productrequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 159 methods.*
2265
- * [`ScheduleValidationError`](./src/models/errors/schedulevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 159 methods.*
2266
- * [`TerminalApplicationError`](./src/models/errors/terminalapplicationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 159 methods.*
2267
- * [`Transfer`](./src/models/errors/transfer.ts): Details of a Transfer. Status code `409`. Applicable to 1 of 159 methods.*
2268
- * [`CardAcquiringRefund`](./src/models/errors/cardacquiringrefund.ts): Details of a card refund. Status code `409`. Applicable to 1 of 159 methods.*
2269
- * [`CreateAccountError`](./src/models/errors/createaccounterror.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 159 methods.*
2270
- * [`PatchAccountError`](./src/models/errors/patchaccounterror.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 159 methods.*
2271
- * [`AssignCountriesError`](./src/models/errors/assigncountrieserror.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 159 methods.*
2272
- * [`LinkApplePayError`](./src/models/errors/linkapplepayerror.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 159 methods.*
2273
- * [`BankAccountValidationError`](./src/models/errors/bankaccountvalidationerror.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 159 methods.*
2274
- * [`MicroDepositValidationError`](./src/models/errors/microdepositvalidationerror.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 159 methods.*
2275
- * [`AddCapabilitiesError`](./src/models/errors/addcapabilitieserror.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 159 methods.*
2276
- * [`LinkCardError`](./src/models/errors/linkcarderror.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 159 methods.*
2277
- * [`UpdateCardError`](./src/models/errors/updatecarderror.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 159 methods.*
2278
- * [`FileUploadValidationError`](./src/models/errors/fileuploadvalidationerror.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 159 methods.*
2279
- * [`FeePlanAgreementError`](./src/models/errors/feeplanagreementerror.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 159 methods.*
2280
- * [`FileValidationError`](./src/models/errors/filevalidationerror.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 159 methods.*
2281
- * [`ImageMetadataValidationError`](./src/models/errors/imagemetadatavalidationerror.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 159 methods.*
2282
- * [`CreatePaymentLinkError`](./src/models/errors/createpaymentlinkerror.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 159 methods.*
2283
- * [`UpdatePaymentLinkError`](./src/models/errors/updatepaymentlinkerror.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 159 methods.*
2284
- * [`RepresentativeValidationError`](./src/models/errors/representativevalidationerror.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 159 methods.*
2285
- * [`CreateSweepConfigError`](./src/models/errors/createsweepconfigerror.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 159 methods.*
2286
- * [`PatchSweepConfigError`](./src/models/errors/patchsweepconfigerror.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 159 methods.*
2287
- * [`AccountTerminalApplicationError`](./src/models/errors/accountterminalapplicationerror.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 159 methods.*
2288
- * [`CreateTicketError`](./src/models/errors/createticketerror.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 159 methods.*
2289
- * [`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 159 methods.*
2290
- * [`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 159 methods.*
2291
- * [`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 159 methods.*
2292
- * [`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 159 methods.*
2293
- * [`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 159 methods.*
2294
- * [`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 159 methods.*
2295
- * [`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 159 methods.*
2296
- * [`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 159 methods.*
2297
- * [`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 159 methods.*
2298
- * [`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 159 methods.*
2299
- * [`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 159 methods.*
2300
- * [`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 159 methods.*
2301
- * [`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 159 methods.*
2302
- * [`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 159 methods.*
2303
- * [`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 159 methods.*
2304
- * [`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 159 methods.*
2305
- * [`AuthTokenRequestError`](./src/models/errors/authtokenrequesterror.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 159 methods.*
2306
- * [`OnboardingInviteError`](./src/models/errors/onboardinginviteerror.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 159 methods.*
2285
+ * [`GenericError`](./src/models/errors/genericerror.ts): Applicable to 72 of 162 methods.*
2286
+ * [`BrandValidationError`](./src/models/errors/brandvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 3 of 162 methods.*
2287
+ * [`ImageRequestValidationError`](./src/models/errors/imagerequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 162 methods.*
2288
+ * [`ProductRequestValidationError`](./src/models/errors/productrequestvalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 162 methods.*
2289
+ * [`ScheduleValidationError`](./src/models/errors/schedulevalidationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 162 methods.*
2290
+ * [`TerminalApplicationError`](./src/models/errors/terminalapplicationerror.ts): The request was well-formed, but the contents failed validation. Check the request for missing or invalid fields. Status code `422`. Applicable to 2 of 162 methods.*
2291
+ * [`Transfer`](./src/models/errors/transfer.ts): Details of a Transfer. Status code `409`. Applicable to 1 of 162 methods.*
2292
+ * [`CardAcquiringRefund`](./src/models/errors/cardacquiringrefund.ts): Details of a card refund. Status code `409`. Applicable to 1 of 162 methods.*
2293
+ * [`CreateAccountError`](./src/models/errors/createaccounterror.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 162 methods.*
2294
+ * [`PatchAccountError`](./src/models/errors/patchaccounterror.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 162 methods.*
2295
+ * [`AssignCountriesError`](./src/models/errors/assigncountrieserror.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 162 methods.*
2296
+ * [`LinkApplePayError`](./src/models/errors/linkapplepayerror.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 162 methods.*
2297
+ * [`BankAccountValidationError`](./src/models/errors/bankaccountvalidationerror.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 162 methods.*
2298
+ * [`MicroDepositValidationError`](./src/models/errors/microdepositvalidationerror.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 162 methods.*
2299
+ * [`AddCapabilitiesError`](./src/models/errors/addcapabilitieserror.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 162 methods.*
2300
+ * [`LinkCardError`](./src/models/errors/linkcarderror.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 162 methods.*
2301
+ * [`UpdateCardError`](./src/models/errors/updatecarderror.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 162 methods.*
2302
+ * [`FileUploadValidationError`](./src/models/errors/fileuploadvalidationerror.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 162 methods.*
2303
+ * [`FeePlanAgreementError`](./src/models/errors/feeplanagreementerror.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 162 methods.*
2304
+ * [`FileValidationError`](./src/models/errors/filevalidationerror.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 162 methods.*
2305
+ * [`ImageMetadataValidationError`](./src/models/errors/imagemetadatavalidationerror.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 162 methods.*
2306
+ * [`CreatePaymentLinkError`](./src/models/errors/createpaymentlinkerror.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 162 methods.*
2307
+ * [`UpdatePaymentLinkError`](./src/models/errors/updatepaymentlinkerror.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 162 methods.*
2308
+ * [`RepresentativeValidationError`](./src/models/errors/representativevalidationerror.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 162 methods.*
2309
+ * [`CreateSweepConfigError`](./src/models/errors/createsweepconfigerror.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 162 methods.*
2310
+ * [`PatchSweepConfigError`](./src/models/errors/patchsweepconfigerror.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 162 methods.*
2311
+ * [`AccountTerminalApplicationError`](./src/models/errors/accountterminalapplicationerror.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 162 methods.*
2312
+ * [`CreateTicketError`](./src/models/errors/createticketerror.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 162 methods.*
2313
+ * [`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 162 methods.*
2314
+ * [`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 162 methods.*
2315
+ * [`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 162 methods.*
2316
+ * [`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 162 methods.*
2317
+ * [`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 162 methods.*
2318
+ * [`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 162 methods.*
2319
+ * [`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 162 methods.*
2320
+ * [`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 162 methods.*
2321
+ * [`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 162 methods.*
2322
+ * [`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 162 methods.*
2323
+ * [`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 162 methods.*
2324
+ * [`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 162 methods.*
2325
+ * [`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 162 methods.*
2326
+ * [`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 162 methods.*
2327
+ * [`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 162 methods.*
2328
+ * [`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 162 methods.*
2329
+ * [`AuthTokenRequestError`](./src/models/errors/authtokenrequesterror.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 162 methods.*
2330
+ * [`OnboardingInviteError`](./src/models/errors/onboardinginviteerror.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 162 methods.*
2307
2331
  * [`ResponseValidationError`](./src/models/errors/responsevalidationerror.ts): Type mismatch between the data returned from the server and the structure expected by the SDK. See `error.rawValue` for the raw value and `error.pretty()` for a nicely formatted multi-line string.
2308
2332
 
2309
2333
  </details>