@moovio/sdk 0.14.7 → 0.14.9
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.
- package/README.md +45 -37
- package/bin/mcp-server.js +395 -165
- package/bin/mcp-server.js.map +19 -14
- package/docs/sdks/terminalapplications/README.md +102 -9
- package/examples/package-lock.json +1 -1
- package/funcs/terminalApplicationsCreateVersion.d.ts +18 -0
- package/funcs/terminalApplicationsCreateVersion.d.ts.map +1 -0
- package/funcs/terminalApplicationsCreateVersion.js +137 -0
- package/funcs/terminalApplicationsCreateVersion.js.map +1 -0
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.d.ts.map +1 -1
- package/mcp-server/server.js +3 -1
- package/mcp-server/server.js.map +1 -1
- package/mcp-server/tools/terminalApplicationsCreateVersion.d.ts +8 -0
- package/mcp-server/tools/terminalApplicationsCreateVersion.d.ts.map +1 -0
- package/mcp-server/tools/terminalApplicationsCreateVersion.js +65 -0
- package/mcp-server/tools/terminalApplicationsCreateVersion.js.map +1 -0
- package/models/components/accountterminalapplication.d.ts +40 -0
- package/models/components/accountterminalapplication.d.ts.map +1 -0
- package/models/components/accountterminalapplication.js +71 -0
- package/models/components/accountterminalapplication.js.map +1 -0
- package/models/components/createterminalapplication.d.ts +2 -2
- package/models/components/index.d.ts +2 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +2 -0
- package/models/components/index.js.map +1 -1
- package/models/components/institutionssearchresponse.d.ts +6 -6
- package/models/components/institutionssearchresponse.d.ts.map +1 -1
- package/models/components/institutionssearchresponse.js +6 -6
- package/models/components/institutionssearchresponse.js.map +1 -1
- package/models/components/terminalapplication.d.ts +2 -2
- package/models/components/terminalapplicationversion.d.ts +35 -0
- package/models/components/terminalapplicationversion.d.ts.map +1 -0
- package/models/components/terminalapplicationversion.js +69 -0
- package/models/components/terminalapplicationversion.js.map +1 -0
- package/models/operations/createterminalapplicationversion.d.ts +101 -0
- package/models/operations/createterminalapplicationversion.d.ts.map +1 -0
- package/models/operations/createterminalapplicationversion.js +155 -0
- package/models/operations/createterminalapplicationversion.js.map +1 -0
- package/models/operations/getaccountterminalapplication.d.ts +2 -2
- package/models/operations/getaccountterminalapplication.d.ts.map +1 -1
- package/models/operations/getaccountterminalapplication.js +2 -2
- package/models/operations/getaccountterminalapplication.js.map +1 -1
- package/models/operations/index.d.ts +1 -0
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +1 -0
- package/models/operations/index.js.map +1 -1
- package/models/operations/linkaccountterminalapplication.d.ts +2 -2
- package/models/operations/linkaccountterminalapplication.d.ts.map +1 -1
- package/models/operations/linkaccountterminalapplication.js +2 -2
- package/models/operations/linkaccountterminalapplication.js.map +1 -1
- package/models/operations/listaccountterminalapplications.d.ts +2 -2
- package/models/operations/listaccountterminalapplications.d.ts.map +1 -1
- package/models/operations/listaccountterminalapplications.js +2 -2
- package/models/operations/listaccountterminalapplications.js.map +1 -1
- package/package.json +1 -1
- package/sdk/terminalapplications.d.ts +7 -0
- package/sdk/terminalapplications.d.ts.map +1 -1
- package/sdk/terminalapplications.js +10 -0
- package/sdk/terminalapplications.js.map +1 -1
- package/src/funcs/terminalApplicationsCreateVersion.ts +212 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +3 -1
- package/src/mcp-server/tools/terminalApplicationsCreateVersion.ts +41 -0
- package/src/models/components/accountterminalapplication.ts +79 -0
- package/src/models/components/createterminalapplication.ts +2 -2
- package/src/models/components/index.ts +2 -0
- package/src/models/components/institutionssearchresponse.ts +12 -12
- package/src/models/components/terminalapplication.ts +2 -2
- package/src/models/components/terminalapplicationversion.ts +72 -0
- package/src/models/operations/createterminalapplicationversion.ts +266 -0
- package/src/models/operations/getaccountterminalapplication.ts +4 -4
- package/src/models/operations/index.ts +1 -0
- package/src/models/operations/linkaccountterminalapplication.ts +4 -4
- package/src/models/operations/listaccountterminalapplications.ts +4 -4
- package/src/sdk/terminalapplications.ts +18 -0
package/README.md
CHANGED
|
@@ -1004,6 +1004,10 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
|
|
|
1004
1004
|
you'll need to specify the `/terminal-applications.read` scope.
|
|
1005
1005
|
* [delete](docs/sdks/terminalapplications/README.md#delete) - Delete a specific terminal application.
|
|
1006
1006
|
|
|
1007
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1008
|
+
you'll need to specify the `/terminal-applications.write` scope.
|
|
1009
|
+
* [createVersion](docs/sdks/terminalapplications/README.md#createversion) - Register a new version of a terminal application. For Android applications, this is used to register a new version code of the application.
|
|
1010
|
+
|
|
1007
1011
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1008
1012
|
you'll need to specify the `/terminal-applications.write` scope.
|
|
1009
1013
|
|
|
@@ -1800,6 +1804,10 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
|
|
|
1800
1804
|
you'll need to specify the `/accounts/{accountID}/wallets.write` scope.
|
|
1801
1805
|
- [`terminalApplicationsCreate`](docs/sdks/terminalapplications/README.md#create) - Create a new terminal application.
|
|
1802
1806
|
|
|
1807
|
+
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1808
|
+
you'll need to specify the `/terminal-applications.write` scope.
|
|
1809
|
+
- [`terminalApplicationsCreateVersion`](docs/sdks/terminalapplications/README.md#createversion) - Register a new version of a terminal application. For Android applications, this is used to register a new version code of the application.
|
|
1810
|
+
|
|
1803
1811
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
1804
1812
|
you'll need to specify the `/terminal-applications.write` scope.
|
|
1805
1813
|
- [`terminalApplicationsDelete`](docs/sdks/terminalapplications/README.md#delete) - Delete a specific terminal application.
|
|
@@ -2133,43 +2141,43 @@ run();
|
|
|
2133
2141
|
|
|
2134
2142
|
|
|
2135
2143
|
**Inherit from [`MoovError`](./src/models/errors/mooverror.ts)**:
|
|
2136
|
-
* [`GenericError`](./src/models/errors/genericerror.ts): Applicable to
|
|
2137
|
-
* [`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
|
|
2138
|
-
* [`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
|
|
2139
|
-
* [`
|
|
2140
|
-
* [`
|
|
2141
|
-
* [`
|
|
2142
|
-
* [`
|
|
2143
|
-
* [`
|
|
2144
|
-
* [`
|
|
2145
|
-
* [`
|
|
2146
|
-
* [`
|
|
2147
|
-
* [`
|
|
2148
|
-
* [`
|
|
2149
|
-
* [`
|
|
2150
|
-
* [`
|
|
2151
|
-
* [`
|
|
2152
|
-
* [`
|
|
2153
|
-
* [`
|
|
2154
|
-
* [`
|
|
2155
|
-
* [`
|
|
2156
|
-
* [`
|
|
2157
|
-
* [`
|
|
2158
|
-
* [`
|
|
2159
|
-
* [`
|
|
2160
|
-
* [`
|
|
2161
|
-
* [`
|
|
2162
|
-
* [`
|
|
2163
|
-
* [`
|
|
2164
|
-
* [`
|
|
2165
|
-
* [`
|
|
2166
|
-
* [`
|
|
2167
|
-
* [`
|
|
2168
|
-
* [`
|
|
2169
|
-
* [`
|
|
2170
|
-
* [`
|
|
2171
|
-
* [`
|
|
2172
|
-
* [`
|
|
2144
|
+
* [`GenericError`](./src/models/errors/genericerror.ts): Applicable to 62 of 143 methods.*
|
|
2145
|
+
* [`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 143 methods.*
|
|
2146
|
+
* [`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 143 methods.*
|
|
2147
|
+
* [`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 143 methods.*
|
|
2148
|
+
* [`Transfer`](./src/models/errors/transfer.ts): Details of a Transfer. Status code `409`. Applicable to 1 of 143 methods.*
|
|
2149
|
+
* [`CardAcquiringRefund`](./src/models/errors/cardacquiringrefund.ts): Details of a card refund. Status code `409`. Applicable to 1 of 143 methods.*
|
|
2150
|
+
* [`CreateAccountResponseBody`](./src/models/errors/createaccountresponsebody.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 143 methods.*
|
|
2151
|
+
* [`UpdateAccountResponseBody`](./src/models/errors/updateaccountresponsebody.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 143 methods.*
|
|
2152
|
+
* [`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 143 methods.*
|
|
2153
|
+
* [`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 143 methods.*
|
|
2154
|
+
* [`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 143 methods.*
|
|
2155
|
+
* [`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 143 methods.*
|
|
2156
|
+
* [`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 143 methods.*
|
|
2157
|
+
* [`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 143 methods.*
|
|
2158
|
+
* [`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 143 methods.*
|
|
2159
|
+
* [`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 143 methods.*
|
|
2160
|
+
* [`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 143 methods.*
|
|
2161
|
+
* [`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 143 methods.*
|
|
2162
|
+
* [`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 143 methods.*
|
|
2163
|
+
* [`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 143 methods.*
|
|
2164
|
+
* [`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 143 methods.*
|
|
2165
|
+
* [`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 143 methods.*
|
|
2166
|
+
* [`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 143 methods.*
|
|
2167
|
+
* [`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 143 methods.*
|
|
2168
|
+
* [`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 143 methods.*
|
|
2169
|
+
* [`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 143 methods.*
|
|
2170
|
+
* [`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 143 methods.*
|
|
2171
|
+
* [`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 143 methods.*
|
|
2172
|
+
* [`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 143 methods.*
|
|
2173
|
+
* [`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 143 methods.*
|
|
2174
|
+
* [`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 143 methods.*
|
|
2175
|
+
* [`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 143 methods.*
|
|
2176
|
+
* [`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 143 methods.*
|
|
2177
|
+
* [`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 143 methods.*
|
|
2178
|
+
* [`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 143 methods.*
|
|
2179
|
+
* [`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 143 methods.*
|
|
2180
|
+
* [`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 143 methods.*
|
|
2173
2181
|
* [`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.
|
|
2174
2182
|
|
|
2175
2183
|
</details>
|