@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.
@@ -18,7 +18,7 @@
18
18
  },
19
19
  "..": {
20
20
  "name": "@moovio/sdk",
21
- "version": "0.15.7",
21
+ "version": "0.16.1",
22
22
  "dependencies": {
23
23
  "decimal.js": "^10.4.3",
24
24
  "zod": "^3.20.0"
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@moovio/sdk",
5
- "version": "0.15.7",
5
+ "version": "0.16.1",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
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.15.7";
43
- readonly genVersion: "2.720.1";
44
- readonly userAgent: "speakeasy-sdk/typescript 0.15.7 2.720.1 latest @moovio/sdk";
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.15.7",
35
- genVersion: "2.720.1",
36
- userAgent: "speakeasy-sdk/typescript 0.15.7 2.720.1 latest @moovio/sdk",
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
@@ -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.15.7",
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));
@@ -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.15.7",
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 primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
13
- * - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
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 primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
31
- * - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
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 primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
8
- * - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
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 primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
19
- * - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
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 primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
46
- * - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moovio/sdk",
3
- "version": "0.15.7",
3
+ "version": "0.16.1",
4
4
  "author": "Moov",
5
5
  "bin": {
6
6
  "mcp": "bin/mcp-server.js"
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.15.7",
77
- genVersion: "2.720.1",
78
- userAgent: "speakeasy-sdk/typescript 0.15.7 2.720.1 latest @moovio/sdk",
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;
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
19
19
  export const app = buildApplication(routes, {
20
20
  name: "mcp",
21
21
  versionInfo: {
22
- currentVersion: "0.15.7",
22
+ currentVersion: "0.16.1",
23
23
  },
24
24
  });
25
25
 
@@ -176,7 +176,7 @@ export function createMCPServer(deps: {
176
176
  }) {
177
177
  const server = new McpServer({
178
178
  name: "Moov",
179
- version: "0.15.7",
179
+ version: "0.16.1",
180
180
  });
181
181
 
182
182
  const client = new MoovCore({
@@ -19,8 +19,8 @@ export type PaymentMethodsWallet = {
19
19
  * Type of a wallet.
20
20
  *
21
21
  * @remarks
22
- * - `default`: The primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
23
- * - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
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 primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
50
- * - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
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 primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
13
- * - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
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 primary system-generated wallet automatically created by Moov when an account is granted the wallet capability. This generates a moov-wallet payment method that is available for use immediately. Only one default wallet exists per account.
24
- * - `general`: A user-defined wallet created via the API to segment funds for specific use cases. Users can create multiple general wallets per account to support internal business models or financial reporting needs.
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
 
@@ -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