@moovio/sdk 0.10.11 → 0.10.12

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/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@moovio/sdk",
5
- "version": "0.10.11",
5
+ "version": "0.10.12",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
package/lib/config.d.ts CHANGED
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
35
35
  export declare const SDK_METADATA: {
36
36
  readonly language: "typescript";
37
37
  readonly openapiDocVersion: "latest";
38
- readonly sdkVersion: "0.10.11";
39
- readonly genVersion: "2.578.0";
40
- readonly userAgent: "speakeasy-sdk/typescript 0.10.11 2.578.0 latest @moovio/sdk";
38
+ readonly sdkVersion: "0.10.12";
39
+ readonly genVersion: "2.585.2";
40
+ readonly userAgent: "speakeasy-sdk/typescript 0.10.12 2.585.2 latest @moovio/sdk";
41
41
  };
42
42
  //# 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.10.11",
35
- genVersion: "2.578.0",
36
- userAgent: "speakeasy-sdk/typescript 0.10.11 2.578.0 latest @moovio/sdk",
34
+ sdkVersion: "0.10.12",
35
+ genVersion: "2.585.2",
36
+ userAgent: "speakeasy-sdk/typescript 0.10.12 2.585.2 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.10.11",
25
+ currentVersion: "0.10.12",
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));
@@ -144,7 +144,7 @@ const walletTransactionsList_js_1 = require("./tools/walletTransactionsList.js")
144
144
  function createMCPServer(deps) {
145
145
  const server = new mcp_js_1.McpServer({
146
146
  name: "Moov",
147
- version: "0.10.11",
147
+ version: "0.10.12",
148
148
  });
149
149
  const client = new core_js_1.MoovCore({
150
150
  security: deps.security,
@@ -27,7 +27,7 @@ export type CreateTransferRequest = {
27
27
  * Optional header that indicates whether to return a synchronous response that includes full transfer and rail-specific details or an
28
28
  *
29
29
  * @remarks
30
- * asynchronous response indicating the transfer was created (this is the default response if the header is omitted).
30
+ * asynchronous response indicating the transfer was created (this is the default response if the header is omitted). A timeout will occur after 15 seconds.
31
31
  */
32
32
  xWaitFor?: components.TransferWaitFor | undefined;
33
33
  /**
@@ -27,7 +27,7 @@ export type InitiateRefundRequest = {
27
27
  * Optional header that indicates whether to return a synchronous response that includes full transfer and rail-specific details or an
28
28
  *
29
29
  * @remarks
30
- * asynchronous response indicating the transfer was created (this is the default response if the header is omitted).
30
+ * asynchronous response indicating the transfer was created (this is the default response if the header is omitted). A timeout will occur after 15 seconds.
31
31
  */
32
32
  xWaitFor?: components.TransferWaitFor | undefined;
33
33
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moovio/sdk",
3
- "version": "0.10.11",
3
+ "version": "0.10.12",
4
4
  "author": "Moov",
5
5
  "bin": {
6
6
  "mcp": "bin/mcp-server.js"
@@ -18,7 +18,7 @@
18
18
  "prepublishOnly": "npm run build"
19
19
  },
20
20
  "peerDependencies": {
21
- "@modelcontextprotocol/sdk": "^1.5.0",
21
+ "@modelcontextprotocol/sdk": ">=1.5.0 <1.10.0",
22
22
  "zod": ">= 3"
23
23
  },
24
24
  "peerDependenciesMeta": {
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "devDependencies": {
28
28
  "@eslint/js": "^9.19.0",
29
- "@modelcontextprotocol/sdk": "^1.5.0",
29
+ "@modelcontextprotocol/sdk": ">=1.5.0 <1.10.0",
30
30
  "@stricli/core": "^1.1.1",
31
31
  "@types/express": "^4.17.21",
32
32
  "bun": "^1.2.2",
package/src/lib/config.ts CHANGED
@@ -69,7 +69,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
69
69
  export const SDK_METADATA = {
70
70
  language: "typescript",
71
71
  openapiDocVersion: "latest",
72
- sdkVersion: "0.10.11",
73
- genVersion: "2.578.0",
74
- userAgent: "speakeasy-sdk/typescript 0.10.11 2.578.0 latest @moovio/sdk",
72
+ sdkVersion: "0.10.12",
73
+ genVersion: "2.585.2",
74
+ userAgent: "speakeasy-sdk/typescript 0.10.12 2.585.2 latest @moovio/sdk",
75
75
  } 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.10.11",
22
+ currentVersion: "0.10.12",
23
23
  },
24
24
  });
25
25
 
@@ -157,7 +157,7 @@ export function createMCPServer(deps: {
157
157
  }) {
158
158
  const server = new McpServer({
159
159
  name: "Moov",
160
- version: "0.10.11",
160
+ version: "0.10.12",
161
161
  });
162
162
 
163
163
  const client = new MoovCore({
@@ -35,7 +35,7 @@ export type CreateTransferRequest = {
35
35
  * Optional header that indicates whether to return a synchronous response that includes full transfer and rail-specific details or an
36
36
  *
37
37
  * @remarks
38
- * asynchronous response indicating the transfer was created (this is the default response if the header is omitted).
38
+ * asynchronous response indicating the transfer was created (this is the default response if the header is omitted). A timeout will occur after 15 seconds.
39
39
  */
40
40
  xWaitFor?: components.TransferWaitFor | undefined;
41
41
  /**
@@ -35,7 +35,7 @@ export type InitiateRefundRequest = {
35
35
  * Optional header that indicates whether to return a synchronous response that includes full transfer and rail-specific details or an
36
36
  *
37
37
  * @remarks
38
- * asynchronous response indicating the transfer was created (this is the default response if the header is omitted).
38
+ * asynchronous response indicating the transfer was created (this is the default response if the header is omitted). A timeout will occur after 15 seconds.
39
39
  */
40
40
  xWaitFor?: components.TransferWaitFor | undefined;
41
41
  /**