@moovio/sdk 24.1.3 → 24.1.4

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": "24.1.3",
21
+ "version": "24.1.4",
22
22
  "dependencies": {
23
23
  "@modelcontextprotocol/sdk": "^1.26.0",
24
24
  "decimal.js": "^10.4.3",
package/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@moovio/sdk",
5
- "version": "24.1.3",
5
+ "version": "24.1.4",
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: "v2024.01.00";
42
- readonly sdkVersion: "24.1.3";
43
- readonly genVersion: "2.809.2";
44
- readonly userAgent: "speakeasy-sdk/typescript 24.1.3 2.809.2 v2024.01.00 @moovio/sdk";
42
+ readonly sdkVersion: "24.1.4";
43
+ readonly genVersion: "2.816.0";
44
+ readonly userAgent: "speakeasy-sdk/typescript 24.1.4 2.816.0 v2024.01.00 @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: "v2024.01.00",
34
- sdkVersion: "24.1.3",
35
- genVersion: "2.809.2",
36
- userAgent: "speakeasy-sdk/typescript 24.1.3 2.809.2 v2024.01.00 @moovio/sdk",
34
+ sdkVersion: "24.1.4",
35
+ genVersion: "2.816.0",
36
+ userAgent: "speakeasy-sdk/typescript 24.1.4 2.816.0 v2024.01.00 @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: "24.1.3",
25
+ currentVersion: "24.1.4",
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));
@@ -177,7 +177,7 @@ const webhooksUpdate_js_1 = require("./tools/webhooksUpdate.js");
177
177
  function createMCPServer(deps) {
178
178
  const server = new mcp_js_1.McpServer({
179
179
  name: "Moov",
180
- version: "24.1.3",
180
+ version: "24.1.4",
181
181
  });
182
182
  const client = new core_js_1.MoovCore({
183
183
  security: deps.security,
@@ -21,10 +21,10 @@ export type CreateTransferGlobals = {
21
21
  };
22
22
  export type CreateTransferRequest = {
23
23
  /**
24
- * Identifies a unique request to create a transfer.
24
+ * Identifies a unique request to create a transfer.
25
25
  *
26
26
  * @remarks
27
- * In order to avoid creating duplicate transfers, the same idempotency key should be reused when retrying a request.
27
+ * In order to avoid creating duplicate transfers, the same idempotency key should be reused when retrying a request.
28
28
  */
29
29
  xIdempotencyKey: string;
30
30
  /**
@@ -23,13 +23,13 @@ export type GetScheduledOccurrenceRequest = {
23
23
  accountID: string;
24
24
  scheduleID: string;
25
25
  /**
26
- * Allows the specification of additional filters beyond the UUID.
26
+ * Allows the specification of additional filters beyond the UUID.
27
27
  *
28
28
  * @remarks
29
29
  *
30
- * Specifying a UUID string returns the exact occurrence.
31
- * Specifying a RFC 3339 timestamp returns the latest occurrence at or before that timestamp.
32
- * Specifying `latest` returns the latest occurrence at or before now.
30
+ * Specifying a UUID string returns the exact occurrence.
31
+ * Specifying a RFC 3339 timestamp returns the latest occurrence at or before that timestamp.
32
+ * Specifying `latest` returns the latest occurrence at or before now.
33
33
  */
34
34
  occurrenceFilter: string;
35
35
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moovio/sdk",
3
- "version": "24.1.3",
3
+ "version": "24.1.4",
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: "v2024.01.00",
76
- sdkVersion: "24.1.3",
77
- genVersion: "2.809.2",
78
- userAgent: "speakeasy-sdk/typescript 24.1.3 2.809.2 v2024.01.00 @moovio/sdk",
76
+ sdkVersion: "24.1.4",
77
+ genVersion: "2.816.0",
78
+ userAgent: "speakeasy-sdk/typescript 24.1.4 2.816.0 v2024.01.00 @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: "24.1.3",
22
+ currentVersion: "24.1.4",
23
23
  },
24
24
  });
25
25
 
@@ -190,7 +190,7 @@ export function createMCPServer(deps: {
190
190
  }) {
191
191
  const server = new McpServer({
192
192
  name: "Moov",
193
- version: "24.1.3",
193
+ version: "24.1.4",
194
194
  });
195
195
 
196
196
  const client = new MoovCore({
@@ -29,10 +29,10 @@ export type CreateTransferGlobals = {
29
29
 
30
30
  export type CreateTransferRequest = {
31
31
  /**
32
- * Identifies a unique request to create a transfer.
32
+ * Identifies a unique request to create a transfer.
33
33
  *
34
34
  * @remarks
35
- * In order to avoid creating duplicate transfers, the same idempotency key should be reused when retrying a request.
35
+ * In order to avoid creating duplicate transfers, the same idempotency key should be reused when retrying a request.
36
36
  */
37
37
  xIdempotencyKey: string;
38
38
  /**
@@ -31,13 +31,13 @@ export type GetScheduledOccurrenceRequest = {
31
31
  accountID: string;
32
32
  scheduleID: string;
33
33
  /**
34
- * Allows the specification of additional filters beyond the UUID.
34
+ * Allows the specification of additional filters beyond the UUID.
35
35
  *
36
36
  * @remarks
37
37
  *
38
- * Specifying a UUID string returns the exact occurrence.
39
- * Specifying a RFC 3339 timestamp returns the latest occurrence at or before that timestamp.
40
- * Specifying `latest` returns the latest occurrence at or before now.
38
+ * Specifying a UUID string returns the exact occurrence.
39
+ * Specifying a RFC 3339 timestamp returns the latest occurrence at or before that timestamp.
40
+ * Specifying `latest` returns the latest occurrence at or before now.
41
41
  */
42
42
  occurrenceFilter: string;
43
43
  };