@moovio/sdk 0.14.7 → 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 +11 -11
- 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 +2 -2
- package/lib/config.js +2 -2
- 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 +2 -2
- 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/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -39,8 +39,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
39
39
|
export declare const SDK_METADATA: {
|
|
40
40
|
readonly language: "typescript";
|
|
41
41
|
readonly openapiDocVersion: "latest";
|
|
42
|
-
readonly sdkVersion: "0.14.
|
|
42
|
+
readonly sdkVersion: "0.14.8";
|
|
43
43
|
readonly genVersion: "2.656.9";
|
|
44
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.14.
|
|
44
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.14.8 2.656.9 latest @moovio/sdk";
|
|
45
45
|
};
|
|
46
46
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -31,8 +31,8 @@ function serverURLFromOptions(options) {
|
|
|
31
31
|
exports.SDK_METADATA = {
|
|
32
32
|
language: "typescript",
|
|
33
33
|
openapiDocVersion: "latest",
|
|
34
|
-
sdkVersion: "0.14.
|
|
34
|
+
sdkVersion: "0.14.8",
|
|
35
35
|
genVersion: "2.656.9",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 0.14.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 0.14.8 2.656.9 latest @moovio/sdk",
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.js.map
|
package/mcp-server/mcp-server.js
CHANGED
|
@@ -22,7 +22,7 @@ const routes = (0, core_1.buildRouteMap)({
|
|
|
22
22
|
exports.app = (0, core_1.buildApplication)(routes, {
|
|
23
23
|
name: "mcp",
|
|
24
24
|
versionInfo: {
|
|
25
|
-
currentVersion: "0.14.
|
|
25
|
+
currentVersion: "0.14.8",
|
|
26
26
|
},
|
|
27
27
|
});
|
|
28
28
|
(0, core_1.run)(exports.app, node_process_1.default.argv.slice(2), (0, cli_js_1.buildContext)(node_process_1.default));
|
package/mcp-server/server.js
CHANGED
|
@@ -154,7 +154,7 @@ const walletTransactionsList_js_1 = require("./tools/walletTransactionsList.js")
|
|
|
154
154
|
function createMCPServer(deps) {
|
|
155
155
|
const server = new mcp_js_1.McpServer({
|
|
156
156
|
name: "Moov",
|
|
157
|
-
version: "0.14.
|
|
157
|
+
version: "0.14.8",
|
|
158
158
|
});
|
|
159
159
|
const client = new core_js_1.MoovCore({
|
|
160
160
|
security: deps.security,
|
|
@@ -5,17 +5,17 @@ import { ACHInstitution, ACHInstitution$Outbound } from "./achinstitution.js";
|
|
|
5
5
|
import { RTPInstitution, RTPInstitution$Outbound } from "./rtpinstitution.js";
|
|
6
6
|
import { WireInstitution, WireInstitution$Outbound } from "./wireinstitution.js";
|
|
7
7
|
export type InstitutionsSearchResponse = {
|
|
8
|
-
ach: Array<ACHInstitution
|
|
9
|
-
rtp: Array<RTPInstitution
|
|
10
|
-
wire: Array<WireInstitution
|
|
8
|
+
ach: Array<ACHInstitution> | null;
|
|
9
|
+
rtp: Array<RTPInstitution> | null;
|
|
10
|
+
wire: Array<WireInstitution> | null;
|
|
11
11
|
};
|
|
12
12
|
/** @internal */
|
|
13
13
|
export declare const InstitutionsSearchResponse$inboundSchema: z.ZodType<InstitutionsSearchResponse, z.ZodTypeDef, unknown>;
|
|
14
14
|
/** @internal */
|
|
15
15
|
export type InstitutionsSearchResponse$Outbound = {
|
|
16
|
-
ach: Array<ACHInstitution$Outbound
|
|
17
|
-
rtp: Array<RTPInstitution$Outbound
|
|
18
|
-
wire: Array<WireInstitution$Outbound
|
|
16
|
+
ach: Array<ACHInstitution$Outbound> | null;
|
|
17
|
+
rtp: Array<RTPInstitution$Outbound> | null;
|
|
18
|
+
wire: Array<WireInstitution$Outbound> | null;
|
|
19
19
|
};
|
|
20
20
|
/** @internal */
|
|
21
21
|
export declare const InstitutionsSearchResponse$outboundSchema: z.ZodType<InstitutionsSearchResponse$Outbound, z.ZodTypeDef, InstitutionsSearchResponse>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"institutionssearchresponse.d.ts","sourceRoot":"","sources":["../../src/models/components/institutionssearchresponse.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,cAAc,EAEd,uBAAuB,EAExB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,cAAc,EAEd,uBAAuB,EAExB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,eAAe,EAEf,wBAAwB,EAEzB,MAAM,sBAAsB,CAAC;AAE9B,MAAM,MAAM,0BAA0B,GAAG;IACvC,GAAG,EAAE,KAAK,CAAC,cAAc,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"institutionssearchresponse.d.ts","sourceRoot":"","sources":["../../src/models/components/institutionssearchresponse.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,iCAAiC,CAAC;AACrE,OAAO,EACL,cAAc,EAEd,uBAAuB,EAExB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,cAAc,EAEd,uBAAuB,EAExB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,eAAe,EAEf,wBAAwB,EAEzB,MAAM,sBAAsB,CAAC;AAE9B,MAAM,MAAM,0BAA0B,GAAG;IACvC,GAAG,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;IAClC,GAAG,EAAE,KAAK,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC;IAClC,IAAI,EAAE,KAAK,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC;CACrC,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,OAAO,CAC9D,0BAA0B,EAC1B,CAAC,CAAC,UAAU,EACZ,OAAO,CAKP,CAAC;AAEH,gBAAgB;AAChB,MAAM,MAAM,mCAAmC,GAAG;IAChD,GAAG,EAAE,KAAK,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC;IAC3C,GAAG,EAAE,KAAK,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC;IAC3C,IAAI,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC;CAC9C,CAAC;AAEF,gBAAgB;AAChB,eAAO,MAAM,yCAAyC,EAAE,CAAC,CAAC,OAAO,CAC/D,mCAAmC,EACnC,CAAC,CAAC,UAAU,EACZ,0BAA0B,CAK1B,CAAC;AAEH;;;GAGG;AACH,yBAAiB,2BAA2B,CAAC;IAC3C,0EAA0E;IACnE,MAAM,aAAa,8DAA2C,CAAC;IACtE,2EAA2E;IACpE,MAAM,cAAc,0FAA4C,CAAC;IACxE,qEAAqE;IACrE,KAAY,QAAQ,GAAG,mCAAmC,CAAC;CAC5D;AAED,wBAAgB,gCAAgC,CAC9C,0BAA0B,EAAE,0BAA0B,GACrD,MAAM,CAIR;AAED,wBAAgB,kCAAkC,CAChD,UAAU,EAAE,MAAM,GACjB,eAAe,CAAC,0BAA0B,EAAE,kBAAkB,CAAC,CAMjE"}
|
|
@@ -46,15 +46,15 @@ const rtpinstitution_js_1 = require("./rtpinstitution.js");
|
|
|
46
46
|
const wireinstitution_js_1 = require("./wireinstitution.js");
|
|
47
47
|
/** @internal */
|
|
48
48
|
exports.InstitutionsSearchResponse$inboundSchema = z.object({
|
|
49
|
-
ach: z.array(achinstitution_js_1.ACHInstitution$inboundSchema),
|
|
50
|
-
rtp: z.array(rtpinstitution_js_1.RTPInstitution$inboundSchema),
|
|
51
|
-
wire: z.array(wireinstitution_js_1.WireInstitution$inboundSchema),
|
|
49
|
+
ach: z.nullable(z.array(achinstitution_js_1.ACHInstitution$inboundSchema)),
|
|
50
|
+
rtp: z.nullable(z.array(rtpinstitution_js_1.RTPInstitution$inboundSchema)),
|
|
51
|
+
wire: z.nullable(z.array(wireinstitution_js_1.WireInstitution$inboundSchema)),
|
|
52
52
|
});
|
|
53
53
|
/** @internal */
|
|
54
54
|
exports.InstitutionsSearchResponse$outboundSchema = z.object({
|
|
55
|
-
ach: z.array(achinstitution_js_1.ACHInstitution$outboundSchema),
|
|
56
|
-
rtp: z.array(rtpinstitution_js_1.RTPInstitution$outboundSchema),
|
|
57
|
-
wire: z.array(wireinstitution_js_1.WireInstitution$outboundSchema),
|
|
55
|
+
ach: z.nullable(z.array(achinstitution_js_1.ACHInstitution$outboundSchema)),
|
|
56
|
+
rtp: z.nullable(z.array(rtpinstitution_js_1.RTPInstitution$outboundSchema)),
|
|
57
|
+
wire: z.nullable(z.array(wireinstitution_js_1.WireInstitution$outboundSchema)),
|
|
58
58
|
});
|
|
59
59
|
/**
|
|
60
60
|
* @internal
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"institutionssearchresponse.js","sourceRoot":"","sources":["../../src/models/components/institutionssearchresponse.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyEH,4EAMC;AAED,gFAQC;AAvFD,uCAAyB;AACzB,qDAAiD;AAGjD,2DAK6B;AAC7B,2DAK6B;AAC7B,6DAK8B;AAQ9B,gBAAgB;AACH,QAAA,wCAAwC,GAIjD,CAAC,CAAC,MAAM,CAAC;IACX,GAAG,EAAE,CAAC,CAAC,KAAK,CAAC,gDAA4B,CAAC;
|
|
1
|
+
{"version":3,"file":"institutionssearchresponse.js","sourceRoot":"","sources":["../../src/models/components/institutionssearchresponse.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyEH,4EAMC;AAED,gFAQC;AAvFD,uCAAyB;AACzB,qDAAiD;AAGjD,2DAK6B;AAC7B,2DAK6B;AAC7B,6DAK8B;AAQ9B,gBAAgB;AACH,QAAA,wCAAwC,GAIjD,CAAC,CAAC,MAAM,CAAC;IACX,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,gDAA4B,CAAC,CAAC;IACtD,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,gDAA4B,CAAC,CAAC;IACtD,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,kDAA6B,CAAC,CAAC;CACzD,CAAC,CAAC;AASH,gBAAgB;AACH,QAAA,yCAAyC,GAIlD,CAAC,CAAC,MAAM,CAAC;IACX,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,iDAA6B,CAAC,CAAC;IACvD,GAAG,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,iDAA6B,CAAC,CAAC;IACvD,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,mDAA8B,CAAC,CAAC;CAC1D,CAAC,CAAC;AAEH;;;GAGG;AACH,IAAiB,2BAA2B,CAO3C;AAPD,WAAiB,2BAA2B;IAC1C,0EAA0E;IAC7D,yCAAa,GAAG,gDAAwC,CAAC;IACtE,2EAA2E;IAC9D,0CAAc,GAAG,iDAAyC,CAAC;AAG1E,CAAC,EAPgB,2BAA2B,2CAA3B,2BAA2B,QAO3C;AAED,SAAgB,gCAAgC,CAC9C,0BAAsD;IAEtD,OAAO,IAAI,CAAC,SAAS,CACnB,iDAAyC,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAC5E,CAAC;AACJ,CAAC;AAED,SAAgB,kCAAkC,CAChD,UAAkB;IAElB,OAAO,IAAA,sBAAS,EACd,UAAU,EACV,CAAC,CAAC,EAAE,EAAE,CAAC,gDAAwC,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EACpE,wDAAwD,CACzD,CAAC;AACJ,CAAC"}
|
package/package.json
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -73,7 +73,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
73
73
|
export const SDK_METADATA = {
|
|
74
74
|
language: "typescript",
|
|
75
75
|
openapiDocVersion: "latest",
|
|
76
|
-
sdkVersion: "0.14.
|
|
76
|
+
sdkVersion: "0.14.8",
|
|
77
77
|
genVersion: "2.656.9",
|
|
78
|
-
userAgent: "speakeasy-sdk/typescript 0.14.
|
|
78
|
+
userAgent: "speakeasy-sdk/typescript 0.14.8 2.656.9 latest @moovio/sdk",
|
|
79
79
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -26,9 +26,9 @@ import {
|
|
|
26
26
|
} from "./wireinstitution.js";
|
|
27
27
|
|
|
28
28
|
export type InstitutionsSearchResponse = {
|
|
29
|
-
ach: Array<ACHInstitution
|
|
30
|
-
rtp: Array<RTPInstitution
|
|
31
|
-
wire: Array<WireInstitution
|
|
29
|
+
ach: Array<ACHInstitution> | null;
|
|
30
|
+
rtp: Array<RTPInstitution> | null;
|
|
31
|
+
wire: Array<WireInstitution> | null;
|
|
32
32
|
};
|
|
33
33
|
|
|
34
34
|
/** @internal */
|
|
@@ -37,16 +37,16 @@ export const InstitutionsSearchResponse$inboundSchema: z.ZodType<
|
|
|
37
37
|
z.ZodTypeDef,
|
|
38
38
|
unknown
|
|
39
39
|
> = z.object({
|
|
40
|
-
ach: z.array(ACHInstitution$inboundSchema),
|
|
41
|
-
rtp: z.array(RTPInstitution$inboundSchema),
|
|
42
|
-
wire: z.array(WireInstitution$inboundSchema),
|
|
40
|
+
ach: z.nullable(z.array(ACHInstitution$inboundSchema)),
|
|
41
|
+
rtp: z.nullable(z.array(RTPInstitution$inboundSchema)),
|
|
42
|
+
wire: z.nullable(z.array(WireInstitution$inboundSchema)),
|
|
43
43
|
});
|
|
44
44
|
|
|
45
45
|
/** @internal */
|
|
46
46
|
export type InstitutionsSearchResponse$Outbound = {
|
|
47
|
-
ach: Array<ACHInstitution$Outbound
|
|
48
|
-
rtp: Array<RTPInstitution$Outbound
|
|
49
|
-
wire: Array<WireInstitution$Outbound
|
|
47
|
+
ach: Array<ACHInstitution$Outbound> | null;
|
|
48
|
+
rtp: Array<RTPInstitution$Outbound> | null;
|
|
49
|
+
wire: Array<WireInstitution$Outbound> | null;
|
|
50
50
|
};
|
|
51
51
|
|
|
52
52
|
/** @internal */
|
|
@@ -55,9 +55,9 @@ export const InstitutionsSearchResponse$outboundSchema: z.ZodType<
|
|
|
55
55
|
z.ZodTypeDef,
|
|
56
56
|
InstitutionsSearchResponse
|
|
57
57
|
> = z.object({
|
|
58
|
-
ach: z.array(ACHInstitution$outboundSchema),
|
|
59
|
-
rtp: z.array(RTPInstitution$outboundSchema),
|
|
60
|
-
wire: z.array(WireInstitution$outboundSchema),
|
|
58
|
+
ach: z.nullable(z.array(ACHInstitution$outboundSchema)),
|
|
59
|
+
rtp: z.nullable(z.array(RTPInstitution$outboundSchema)),
|
|
60
|
+
wire: z.nullable(z.array(WireInstitution$outboundSchema)),
|
|
61
61
|
});
|
|
62
62
|
|
|
63
63
|
/**
|