@moovio/sdk 0.14.6 → 0.14.8
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 +12 -12
- package/bin/mcp-server.js.map +6 -6
- package/examples/package-lock.json +1 -1
- 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/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/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/institutionssearchresponse.ts +12 -12
package/bin/mcp-server.js
CHANGED
|
@@ -34175,9 +34175,9 @@ var init_config = __esm(() => {
|
|
|
34175
34175
|
SDK_METADATA = {
|
|
34176
34176
|
language: "typescript",
|
|
34177
34177
|
openapiDocVersion: "latest",
|
|
34178
|
-
sdkVersion: "0.14.
|
|
34179
|
-
genVersion: "2.656.
|
|
34180
|
-
userAgent: "speakeasy-sdk/typescript 0.14.
|
|
34178
|
+
sdkVersion: "0.14.8",
|
|
34179
|
+
genVersion: "2.656.9",
|
|
34180
|
+
userAgent: "speakeasy-sdk/typescript 0.14.8 2.656.9 latest @moovio/sdk"
|
|
34181
34181
|
};
|
|
34182
34182
|
});
|
|
34183
34183
|
|
|
@@ -42399,14 +42399,14 @@ var init_institutionssearchresponse = __esm(() => {
|
|
|
42399
42399
|
init_rtpinstitution();
|
|
42400
42400
|
init_wireinstitution();
|
|
42401
42401
|
InstitutionsSearchResponse$inboundSchema = objectType({
|
|
42402
|
-
ach: arrayType(ACHInstitution$inboundSchema),
|
|
42403
|
-
rtp: arrayType(RTPInstitution$inboundSchema),
|
|
42404
|
-
wire: arrayType(WireInstitution$inboundSchema)
|
|
42402
|
+
ach: nullableType(arrayType(ACHInstitution$inboundSchema)),
|
|
42403
|
+
rtp: nullableType(arrayType(RTPInstitution$inboundSchema)),
|
|
42404
|
+
wire: nullableType(arrayType(WireInstitution$inboundSchema))
|
|
42405
42405
|
});
|
|
42406
42406
|
InstitutionsSearchResponse$outboundSchema = objectType({
|
|
42407
|
-
ach: arrayType(ACHInstitution$outboundSchema),
|
|
42408
|
-
rtp: arrayType(RTPInstitution$outboundSchema),
|
|
42409
|
-
wire: arrayType(WireInstitution$outboundSchema)
|
|
42407
|
+
ach: nullableType(arrayType(ACHInstitution$outboundSchema)),
|
|
42408
|
+
rtp: nullableType(arrayType(RTPInstitution$outboundSchema)),
|
|
42409
|
+
wire: nullableType(arrayType(WireInstitution$outboundSchema))
|
|
42410
42410
|
});
|
|
42411
42411
|
((InstitutionsSearchResponse$) => {
|
|
42412
42412
|
InstitutionsSearchResponse$.inboundSchema = InstitutionsSearchResponse$inboundSchema;
|
|
@@ -75740,7 +75740,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
75740
75740
|
function createMCPServer(deps) {
|
|
75741
75741
|
const server = new McpServer({
|
|
75742
75742
|
name: "Moov",
|
|
75743
|
-
version: "0.14.
|
|
75743
|
+
version: "0.14.8"
|
|
75744
75744
|
});
|
|
75745
75745
|
const client = new MoovCore({
|
|
75746
75746
|
security: deps.security,
|
|
@@ -77248,7 +77248,7 @@ var routes = rn({
|
|
|
77248
77248
|
var app = Ve(routes, {
|
|
77249
77249
|
name: "mcp",
|
|
77250
77250
|
versionInfo: {
|
|
77251
|
-
currentVersion: "0.14.
|
|
77251
|
+
currentVersion: "0.14.8"
|
|
77252
77252
|
}
|
|
77253
77253
|
});
|
|
77254
77254
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -77256,5 +77256,5 @@ export {
|
|
|
77256
77256
|
app
|
|
77257
77257
|
};
|
|
77258
77258
|
|
|
77259
|
-
//# debugId=
|
|
77259
|
+
//# debugId=B1D6013015B4082064756E2164756E21
|
|
77260
77260
|
//# sourceMappingURL=mcp-server.js.map
|