@moovio/sdk 0.12.2 → 0.12.3
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/bin/mcp-server.js +10 -10
- package/bin/mcp-server.js.map +6 -6
- 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.js +1 -1
- package/models/components/bankaccountexception.d.ts +4 -4
- package/models/components/bankaccountexception.d.ts.map +1 -1
- package/models/components/bankaccountexception.js +4 -4
- package/models/components/bankaccountexception.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/bankaccountexception.ts +8 -8
package/bin/mcp-server.js
CHANGED
|
@@ -34246,9 +34246,9 @@ var init_config = __esm(() => {
|
|
|
34246
34246
|
SDK_METADATA = {
|
|
34247
34247
|
language: "typescript",
|
|
34248
34248
|
openapiDocVersion: "latest",
|
|
34249
|
-
sdkVersion: "0.12.
|
|
34250
|
-
genVersion: "2.
|
|
34251
|
-
userAgent: "speakeasy-sdk/typescript 0.12.
|
|
34249
|
+
sdkVersion: "0.12.3",
|
|
34250
|
+
genVersion: "2.624.0",
|
|
34251
|
+
userAgent: "speakeasy-sdk/typescript 0.12.3 2.624.0 latest @moovio/sdk"
|
|
34252
34252
|
};
|
|
34253
34253
|
});
|
|
34254
34254
|
|
|
@@ -37554,13 +37554,13 @@ var init_bankaccountexception = __esm(() => {
|
|
|
37554
37554
|
init_achreturncode();
|
|
37555
37555
|
init_rtprejectioncode();
|
|
37556
37556
|
BankAccountException$inboundSchema = objectType({
|
|
37557
|
-
achReturnCode: ACHReturnCode$inboundSchema,
|
|
37558
|
-
rtpRejectionCode: RTPRejectionCode$inboundSchema,
|
|
37557
|
+
achReturnCode: ACHReturnCode$inboundSchema.optional(),
|
|
37558
|
+
rtpRejectionCode: RTPRejectionCode$inboundSchema.optional(),
|
|
37559
37559
|
description: stringType()
|
|
37560
37560
|
});
|
|
37561
37561
|
BankAccountException$outboundSchema = objectType({
|
|
37562
|
-
achReturnCode: ACHReturnCode$outboundSchema,
|
|
37563
|
-
rtpRejectionCode: RTPRejectionCode$outboundSchema,
|
|
37562
|
+
achReturnCode: ACHReturnCode$outboundSchema.optional(),
|
|
37563
|
+
rtpRejectionCode: RTPRejectionCode$outboundSchema.optional(),
|
|
37564
37564
|
description: stringType()
|
|
37565
37565
|
});
|
|
37566
37566
|
((BankAccountException$) => {
|
|
@@ -73373,7 +73373,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
73373
73373
|
function createMCPServer(deps) {
|
|
73374
73374
|
const server = new McpServer({
|
|
73375
73375
|
name: "Moov",
|
|
73376
|
-
version: "0.12.
|
|
73376
|
+
version: "0.12.3"
|
|
73377
73377
|
});
|
|
73378
73378
|
const client = new MoovCore({
|
|
73379
73379
|
security: deps.security,
|
|
@@ -74885,7 +74885,7 @@ var routes = rn({
|
|
|
74885
74885
|
var app = Ve(routes, {
|
|
74886
74886
|
name: "mcp",
|
|
74887
74887
|
versionInfo: {
|
|
74888
|
-
currentVersion: "0.12.
|
|
74888
|
+
currentVersion: "0.12.3"
|
|
74889
74889
|
}
|
|
74890
74890
|
});
|
|
74891
74891
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -74893,5 +74893,5 @@ export {
|
|
|
74893
74893
|
app
|
|
74894
74894
|
};
|
|
74895
74895
|
|
|
74896
|
-
//# debugId=
|
|
74896
|
+
//# debugId=1662C8BF2E99011364756E2164756E21
|
|
74897
74897
|
//# sourceMappingURL=mcp-server.js.map
|