@moovio/sdk 0.14.16 → 0.14.17
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 +7 -7
- package/bin/mcp-server.js.map +5 -5
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/underwritingstatus.d.ts +6 -6
- package/models/components/underwritingstatus.js +2 -2
- package/models/components/underwritingstatus.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/underwritingstatus.ts +2 -2
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.14.
|
|
42
|
+
readonly sdkVersion: "0.14.17";
|
|
43
43
|
readonly genVersion: "2.667.0";
|
|
44
|
-
readonly userAgent: "speakeasy-sdk/typescript 0.14.
|
|
44
|
+
readonly userAgent: "speakeasy-sdk/typescript 0.14.17 2.667.0 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.14.
|
|
34
|
+
sdkVersion: "0.14.17",
|
|
35
35
|
genVersion: "2.667.0",
|
|
36
|
-
userAgent: "speakeasy-sdk/typescript 0.14.
|
|
36
|
+
userAgent: "speakeasy-sdk/typescript 0.14.17 2.667.0 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.14.
|
|
25
|
+
currentVersion: "0.14.17",
|
|
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
|
@@ -155,7 +155,7 @@ const walletTransactionsList_js_1 = require("./tools/walletTransactionsList.js")
|
|
|
155
155
|
function createMCPServer(deps) {
|
|
156
156
|
const server = new mcp_js_1.McpServer({
|
|
157
157
|
name: "Moov",
|
|
158
|
-
version: "0.14.
|
|
158
|
+
version: "0.14.17",
|
|
159
159
|
});
|
|
160
160
|
const client = new core_js_1.MoovCore({
|
|
161
161
|
security: deps.security,
|
|
@@ -6,9 +6,9 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
6
6
|
export declare const UnderwritingStatus: {
|
|
7
7
|
readonly Approved: "approved";
|
|
8
8
|
readonly Rejected: "rejected";
|
|
9
|
-
readonly PendingReview: "
|
|
9
|
+
readonly PendingReview: "pending_review";
|
|
10
10
|
readonly Pending: "pending";
|
|
11
|
-
readonly NotRequested: "
|
|
11
|
+
readonly NotRequested: "not_requested";
|
|
12
12
|
};
|
|
13
13
|
/**
|
|
14
14
|
* @deprecated enum: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
@@ -27,17 +27,17 @@ export declare namespace UnderwritingStatus$ {
|
|
|
27
27
|
const inboundSchema: z.ZodNativeEnum<{
|
|
28
28
|
readonly Approved: "approved";
|
|
29
29
|
readonly Rejected: "rejected";
|
|
30
|
-
readonly PendingReview: "
|
|
30
|
+
readonly PendingReview: "pending_review";
|
|
31
31
|
readonly Pending: "pending";
|
|
32
|
-
readonly NotRequested: "
|
|
32
|
+
readonly NotRequested: "not_requested";
|
|
33
33
|
}>;
|
|
34
34
|
/** @deprecated use `UnderwritingStatus$outboundSchema` instead. */
|
|
35
35
|
const outboundSchema: z.ZodNativeEnum<{
|
|
36
36
|
readonly Approved: "approved";
|
|
37
37
|
readonly Rejected: "rejected";
|
|
38
|
-
readonly PendingReview: "
|
|
38
|
+
readonly PendingReview: "pending_review";
|
|
39
39
|
readonly Pending: "pending";
|
|
40
|
-
readonly NotRequested: "
|
|
40
|
+
readonly NotRequested: "not_requested";
|
|
41
41
|
}>;
|
|
42
42
|
}
|
|
43
43
|
//# sourceMappingURL=underwritingstatus.d.ts.map
|
|
@@ -44,9 +44,9 @@ const z = __importStar(require("zod"));
|
|
|
44
44
|
exports.UnderwritingStatus = {
|
|
45
45
|
Approved: "approved",
|
|
46
46
|
Rejected: "rejected",
|
|
47
|
-
PendingReview: "
|
|
47
|
+
PendingReview: "pending_review",
|
|
48
48
|
Pending: "pending",
|
|
49
|
-
NotRequested: "
|
|
49
|
+
NotRequested: "not_requested",
|
|
50
50
|
};
|
|
51
51
|
/** @internal */
|
|
52
52
|
exports.UnderwritingStatus$inboundSchema = z.nativeEnum(exports.UnderwritingStatus);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"underwritingstatus.js","sourceRoot":"","sources":["../../src/models/components/underwritingstatus.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,kBAAkB,GAAG;IAChC,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;IACpB,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"underwritingstatus.js","sourceRoot":"","sources":["../../src/models/components/underwritingstatus.ts"],"names":[],"mappings":";AAAA;;GAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,uCAAyB;AAGzB;;GAEG;AACU,QAAA,kBAAkB,GAAG;IAChC,QAAQ,EAAE,UAAU;IACpB,QAAQ,EAAE,UAAU;IACpB,aAAa,EAAE,gBAAgB;IAC/B,OAAO,EAAE,SAAS;IAClB,YAAY,EAAE,eAAe;CACrB,CAAC;AAMX,gBAAgB;AACH,QAAA,gCAAgC,GAEzC,CAAC,CAAC,UAAU,CAAC,0BAAkB,CAAC,CAAC;AAErC,gBAAgB;AACH,QAAA,iCAAiC,GAE1C,wCAAgC,CAAC;AAErC;;;GAGG;AACH,IAAiB,mBAAmB,CAKnC;AALD,WAAiB,mBAAmB;IAClC,kEAAkE;IACrD,iCAAa,GAAG,wCAAgC,CAAC;IAC9D,mEAAmE;IACtD,kCAAc,GAAG,yCAAiC,CAAC;AAClE,CAAC,EALgB,mBAAmB,mCAAnB,mBAAmB,QAKnC"}
|
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.14.
|
|
76
|
+
sdkVersion: "0.14.17",
|
|
77
77
|
genVersion: "2.667.0",
|
|
78
|
-
userAgent: "speakeasy-sdk/typescript 0.14.
|
|
78
|
+
userAgent: "speakeasy-sdk/typescript 0.14.17 2.667.0 latest @moovio/sdk",
|
|
79
79
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -11,9 +11,9 @@ import { ClosedEnum } from "../../types/enums.js";
|
|
|
11
11
|
export const UnderwritingStatus = {
|
|
12
12
|
Approved: "approved",
|
|
13
13
|
Rejected: "rejected",
|
|
14
|
-
PendingReview: "
|
|
14
|
+
PendingReview: "pending_review",
|
|
15
15
|
Pending: "pending",
|
|
16
|
-
NotRequested: "
|
|
16
|
+
NotRequested: "not_requested",
|
|
17
17
|
} as const;
|
|
18
18
|
/**
|
|
19
19
|
* @deprecated enum: This will be removed in a future release, please migrate away from it as soon as possible.
|