@moovio/sdk 25.12.3 → 25.12.5
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 +6 -6
- package/bin/mcp-server.js.map +9 -9
- 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/filedetails.d.ts +1 -1
- package/models/components/filepurpose.d.ts +2 -2
- package/models/components/filepurpose.js +1 -1
- package/models/components/issuingintervallimit.d.ts +2 -2
- package/models/components/issuingintervallimit.js +1 -1
- package/models/components/issuingvelocitylimit.d.ts +1 -1
- package/models/components/onboardinginvite.d.ts +1 -1
- 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/filedetails.ts +1 -1
- package/src/models/components/filepurpose.ts +2 -2
- package/src/models/components/issuingintervallimit.ts +2 -2
- package/src/models/components/issuingvelocitylimit.ts +1 -1
- package/src/models/components/onboardinginvite.ts +1 -1
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: "v2025.10.00";
|
|
42
|
-
readonly sdkVersion: "25.12.
|
|
43
|
-
readonly genVersion: "2.
|
|
44
|
-
readonly userAgent: "speakeasy-sdk/typescript 25.12.
|
|
42
|
+
readonly sdkVersion: "25.12.5";
|
|
43
|
+
readonly genVersion: "2.924.0";
|
|
44
|
+
readonly userAgent: "speakeasy-sdk/typescript 25.12.5 2.924.0 v2025.10.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: "v2025.10.00",
|
|
34
|
-
sdkVersion: "25.12.
|
|
35
|
-
genVersion: "2.
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 25.12.
|
|
34
|
+
sdkVersion: "25.12.5",
|
|
35
|
+
genVersion: "2.924.0",
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 25.12.5 2.924.0 v2025.10.00 @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: "25.12.
|
|
25
|
+
currentVersion: "25.12.5",
|
|
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
|
@@ -185,7 +185,7 @@ const webhooksUpdate_js_1 = require("./tools/webhooksUpdate.js");
|
|
|
185
185
|
function createMCPServer(deps) {
|
|
186
186
|
const server = new mcp_js_1.McpServer({
|
|
187
187
|
name: "Moov",
|
|
188
|
-
version: "25.12.
|
|
188
|
+
version: "25.12.5",
|
|
189
189
|
});
|
|
190
190
|
const client = new core_js_1.MoovCore({
|
|
191
191
|
security: deps.security,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as z from "zod/v3";
|
|
2
2
|
import { ClosedEnum } from "../../types/enums.js";
|
|
3
3
|
/**
|
|
4
|
-
* The file
|
|
4
|
+
* The purpose of the file being uploaded.
|
|
5
5
|
*/
|
|
6
6
|
export declare const FilePurpose: {
|
|
7
7
|
readonly BusinessVerification: "business_verification";
|
|
@@ -12,7 +12,7 @@ export declare const FilePurpose: {
|
|
|
12
12
|
readonly IdentityVerification: "identity_verification";
|
|
13
13
|
};
|
|
14
14
|
/**
|
|
15
|
-
* The file
|
|
15
|
+
* The purpose of the file being uploaded.
|
|
16
16
|
*/
|
|
17
17
|
export type FilePurpose = ClosedEnum<typeof FilePurpose>;
|
|
18
18
|
/** @internal */
|
|
@@ -39,7 +39,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
39
39
|
exports.FilePurpose$outboundSchema = exports.FilePurpose$inboundSchema = exports.FilePurpose = void 0;
|
|
40
40
|
const z = __importStar(require("zod/v3"));
|
|
41
41
|
/**
|
|
42
|
-
* The file
|
|
42
|
+
* The purpose of the file being uploaded.
|
|
43
43
|
*/
|
|
44
44
|
exports.FilePurpose = {
|
|
45
45
|
BusinessVerification: "business_verification",
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as z from "zod/v3";
|
|
2
2
|
import { ClosedEnum } from "../../types/enums.js";
|
|
3
3
|
/**
|
|
4
|
-
* Specifies the time frame for
|
|
4
|
+
* Specifies the time frame for a velocity limit. `per-transaction` applies to each individual authorization and never resets. Time-based intervals (where supported) reset at midnight ET.
|
|
5
5
|
*/
|
|
6
6
|
export declare const IssuingIntervalLimit: {
|
|
7
7
|
readonly PerTransaction: "per-transaction";
|
|
8
8
|
};
|
|
9
9
|
/**
|
|
10
|
-
* Specifies the time frame for
|
|
10
|
+
* Specifies the time frame for a velocity limit. `per-transaction` applies to each individual authorization and never resets. Time-based intervals (where supported) reset at midnight ET.
|
|
11
11
|
*/
|
|
12
12
|
export type IssuingIntervalLimit = ClosedEnum<typeof IssuingIntervalLimit>;
|
|
13
13
|
/** @internal */
|
|
@@ -39,7 +39,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
39
39
|
exports.IssuingIntervalLimit$outboundSchema = exports.IssuingIntervalLimit$inboundSchema = exports.IssuingIntervalLimit = void 0;
|
|
40
40
|
const z = __importStar(require("zod/v3"));
|
|
41
41
|
/**
|
|
42
|
-
* Specifies the time frame for
|
|
42
|
+
* Specifies the time frame for a velocity limit. `per-transaction` applies to each individual authorization and never resets. Time-based intervals (where supported) reset at midnight ET.
|
|
43
43
|
*/
|
|
44
44
|
exports.IssuingIntervalLimit = {
|
|
45
45
|
PerTransaction: "per-transaction",
|
|
@@ -8,7 +8,7 @@ export type IssuingVelocityLimit = {
|
|
|
8
8
|
*/
|
|
9
9
|
amount: number;
|
|
10
10
|
/**
|
|
11
|
-
* Specifies the time frame for
|
|
11
|
+
* Specifies the time frame for a velocity limit. `per-transaction` applies to each individual authorization and never resets. Time-based intervals (where supported) reset at midnight ET.
|
|
12
12
|
*/
|
|
13
13
|
interval: IssuingIntervalLimit;
|
|
14
14
|
};
|
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: "v2025.10.00",
|
|
76
|
-
sdkVersion: "25.12.
|
|
77
|
-
genVersion: "2.
|
|
78
|
-
userAgent: "speakeasy-sdk/typescript 25.12.
|
|
76
|
+
sdkVersion: "25.12.5",
|
|
77
|
+
genVersion: "2.924.0",
|
|
78
|
+
userAgent: "speakeasy-sdk/typescript 25.12.5 2.924.0 v2025.10.00 @moovio/sdk",
|
|
79
79
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -6,7 +6,7 @@ import * as z from "zod/v3";
|
|
|
6
6
|
import { ClosedEnum } from "../../types/enums.js";
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* The file
|
|
9
|
+
* The purpose of the file being uploaded.
|
|
10
10
|
*/
|
|
11
11
|
export const FilePurpose = {
|
|
12
12
|
BusinessVerification: "business_verification",
|
|
@@ -17,7 +17,7 @@ export const FilePurpose = {
|
|
|
17
17
|
IdentityVerification: "identity_verification",
|
|
18
18
|
} as const;
|
|
19
19
|
/**
|
|
20
|
-
* The file
|
|
20
|
+
* The purpose of the file being uploaded.
|
|
21
21
|
*/
|
|
22
22
|
export type FilePurpose = ClosedEnum<typeof FilePurpose>;
|
|
23
23
|
|
|
@@ -6,13 +6,13 @@ import * as z from "zod/v3";
|
|
|
6
6
|
import { ClosedEnum } from "../../types/enums.js";
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* Specifies the time frame for
|
|
9
|
+
* Specifies the time frame for a velocity limit. `per-transaction` applies to each individual authorization and never resets. Time-based intervals (where supported) reset at midnight ET.
|
|
10
10
|
*/
|
|
11
11
|
export const IssuingIntervalLimit = {
|
|
12
12
|
PerTransaction: "per-transaction",
|
|
13
13
|
} as const;
|
|
14
14
|
/**
|
|
15
|
-
* Specifies the time frame for
|
|
15
|
+
* Specifies the time frame for a velocity limit. `per-transaction` applies to each individual authorization and never resets. Time-based intervals (where supported) reset at midnight ET.
|
|
16
16
|
*/
|
|
17
17
|
export type IssuingIntervalLimit = ClosedEnum<typeof IssuingIntervalLimit>;
|
|
18
18
|
|
|
@@ -18,7 +18,7 @@ export type IssuingVelocityLimit = {
|
|
|
18
18
|
*/
|
|
19
19
|
amount: number;
|
|
20
20
|
/**
|
|
21
|
-
* Specifies the time frame for
|
|
21
|
+
* Specifies the time frame for a velocity limit. `per-transaction` applies to each individual authorization and never resets. Time-based intervals (where supported) reset at midnight ET.
|
|
22
22
|
*/
|
|
23
23
|
interval: IssuingIntervalLimit;
|
|
24
24
|
};
|