@moovio/sdk 0.15.7 → 0.16.1
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 +0 -1
- package/bin/mcp-server.js +6 -6
- package/bin/mcp-server.js.map +7 -7
- 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/paymentmethodswallet.d.ts +2 -2
- package/models/components/wallet.d.ts +2 -2
- package/models/components/wallettype.d.ts +4 -4
- package/models/components/wallettype.js +2 -2
- 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/paymentmethodswallet.ts +2 -2
- package/src/models/components/wallet.ts +2 -2
- package/src/models/components/wallettype.ts +4 -4
- package/docs/sdks/moov/README.md +0 -10
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.
|
|
43
|
-
readonly genVersion: "2.
|
|
44
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.
|
|
42
|
+
readonly sdkVersion: "0.16.1";
|
|
43
|
+
readonly genVersion: "2.722.5";
|
|
44
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.16.1 2.722.5 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.
|
|
35
|
-
genVersion: "2.
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 0.
|
|
34
|
+
sdkVersion: "0.16.1",
|
|
35
|
+
genVersion: "2.722.5",
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 0.16.1 2.722.5 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.
|
|
25
|
+
currentVersion: "0.16.1",
|
|
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
|
@@ -163,7 +163,7 @@ const walletTransactionsList_js_1 = require("./tools/walletTransactionsList.js")
|
|
|
163
163
|
function createMCPServer(deps) {
|
|
164
164
|
const server = new mcp_js_1.McpServer({
|
|
165
165
|
name: "Moov",
|
|
166
|
-
version: "0.
|
|
166
|
+
version: "0.16.1",
|
|
167
167
|
});
|
|
168
168
|
const client = new core_js_1.MoovCore({
|
|
169
169
|
security: deps.security,
|
|
@@ -9,8 +9,8 @@ export type PaymentMethodsWallet = {
|
|
|
9
9
|
* Type of a wallet.
|
|
10
10
|
*
|
|
11
11
|
* @remarks
|
|
12
|
-
* - `default`: The
|
|
13
|
-
* - `general`:
|
|
12
|
+
* - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
|
|
13
|
+
* - `general`: An additional, user-defined wallet created via API or Dashboard.
|
|
14
14
|
*/
|
|
15
15
|
walletType: WalletType;
|
|
16
16
|
};
|
|
@@ -27,8 +27,8 @@ export type Wallet = {
|
|
|
27
27
|
* Type of a wallet.
|
|
28
28
|
*
|
|
29
29
|
* @remarks
|
|
30
|
-
* - `default`: The
|
|
31
|
-
* - `general`:
|
|
30
|
+
* - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
|
|
31
|
+
* - `general`: An additional, user-defined wallet created via API or Dashboard.
|
|
32
32
|
*/
|
|
33
33
|
walletType: WalletType;
|
|
34
34
|
/**
|
|
@@ -4,8 +4,8 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
4
4
|
* Type of a wallet.
|
|
5
5
|
*
|
|
6
6
|
* @remarks
|
|
7
|
-
* - `default`: The
|
|
8
|
-
* - `general`:
|
|
7
|
+
* - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
|
|
8
|
+
* - `general`: An additional, user-defined wallet created via API or Dashboard.
|
|
9
9
|
*/
|
|
10
10
|
export declare const WalletType: {
|
|
11
11
|
readonly Default: "default";
|
|
@@ -15,8 +15,8 @@ export declare const WalletType: {
|
|
|
15
15
|
* Type of a wallet.
|
|
16
16
|
*
|
|
17
17
|
* @remarks
|
|
18
|
-
* - `default`: The
|
|
19
|
-
* - `general`:
|
|
18
|
+
* - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
|
|
19
|
+
* - `general`: An additional, user-defined wallet created via API or Dashboard.
|
|
20
20
|
*/
|
|
21
21
|
export type WalletType = ClosedEnum<typeof WalletType>;
|
|
22
22
|
/** @internal */
|
|
@@ -42,8 +42,8 @@ const z = __importStar(require("zod"));
|
|
|
42
42
|
* Type of a wallet.
|
|
43
43
|
*
|
|
44
44
|
* @remarks
|
|
45
|
-
* - `default`: The
|
|
46
|
-
* - `general`:
|
|
45
|
+
* - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
|
|
46
|
+
* - `general`: An additional, user-defined wallet created via API or Dashboard.
|
|
47
47
|
*/
|
|
48
48
|
exports.WalletType = {
|
|
49
49
|
Default: "default",
|
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.
|
|
77
|
-
genVersion: "2.
|
|
78
|
-
userAgent: "speakeasy-sdk/typescript 0.
|
|
76
|
+
sdkVersion: "0.16.1",
|
|
77
|
+
genVersion: "2.722.5",
|
|
78
|
+
userAgent: "speakeasy-sdk/typescript 0.16.1 2.722.5 latest @moovio/sdk",
|
|
79
79
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -19,8 +19,8 @@ export type PaymentMethodsWallet = {
|
|
|
19
19
|
* Type of a wallet.
|
|
20
20
|
*
|
|
21
21
|
* @remarks
|
|
22
|
-
* - `default`: The
|
|
23
|
-
* - `general`:
|
|
22
|
+
* - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
|
|
23
|
+
* - `general`: An additional, user-defined wallet created via API or Dashboard.
|
|
24
24
|
*/
|
|
25
25
|
walletType: WalletType;
|
|
26
26
|
};
|
|
@@ -46,8 +46,8 @@ export type Wallet = {
|
|
|
46
46
|
* Type of a wallet.
|
|
47
47
|
*
|
|
48
48
|
* @remarks
|
|
49
|
-
* - `default`: The
|
|
50
|
-
* - `general`:
|
|
49
|
+
* - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
|
|
50
|
+
* - `general`: An additional, user-defined wallet created via API or Dashboard.
|
|
51
51
|
*/
|
|
52
52
|
walletType: WalletType;
|
|
53
53
|
/**
|
|
@@ -9,8 +9,8 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
9
9
|
* Type of a wallet.
|
|
10
10
|
*
|
|
11
11
|
* @remarks
|
|
12
|
-
* - `default`: The
|
|
13
|
-
* - `general`:
|
|
12
|
+
* - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
|
|
13
|
+
* - `general`: An additional, user-defined wallet created via API or Dashboard.
|
|
14
14
|
*/
|
|
15
15
|
export const WalletType = {
|
|
16
16
|
Default: "default",
|
|
@@ -20,8 +20,8 @@ export const WalletType = {
|
|
|
20
20
|
* Type of a wallet.
|
|
21
21
|
*
|
|
22
22
|
* @remarks
|
|
23
|
-
* - `default`: The
|
|
24
|
-
* - `general`:
|
|
23
|
+
* - `default`: The system-generated wallet automatically created when an account is granted the wallet capability.
|
|
24
|
+
* - `general`: An additional, user-defined wallet created via API or Dashboard.
|
|
25
25
|
*/
|
|
26
26
|
export type WalletType = ClosedEnum<typeof WalletType>;
|
|
27
27
|
|
package/docs/sdks/moov/README.md
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# Moov SDK
|
|
2
|
-
|
|
3
|
-
## Overview
|
|
4
|
-
|
|
5
|
-
Moov API: Moov is a platform that enables developers to integrate all aspects of money movement with ease and speed.
|
|
6
|
-
The Moov API makes it simple for platforms to send, receive, and store money. Our API is based upon REST
|
|
7
|
-
principles, returns JSON responses, and uses standard HTTP response codes. To learn more about how Moov
|
|
8
|
-
works at a high level, read our [concepts](https://docs.moov.io/guides/get-started/glossary/) guide.
|
|
9
|
-
|
|
10
|
-
### Available Operations
|