@moovio/sdk 0.10.1 → 0.10.2
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 +15 -15
- package/bin/mcp-server.js.map +7 -7
- 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/accountnameverification.d.ts +8 -8
- package/models/components/accountnameverification.d.ts.map +1 -1
- package/models/components/accountnameverification.js +8 -8
- package/models/components/accountnameverification.js.map +1 -1
- package/models/components/cardverification.d.ts +2 -2
- package/models/components/cardverification.d.ts.map +1 -1
- package/models/components/cardverification.js +2 -2
- package/models/components/cardverification.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/accountnameverification.ts +16 -16
- package/src/models/components/cardverification.ts +4 -4
package/bin/mcp-server.js
CHANGED
|
@@ -34213,9 +34213,9 @@ var init_config = __esm(() => {
|
|
|
34213
34213
|
SDK_METADATA = {
|
|
34214
34214
|
language: "typescript",
|
|
34215
34215
|
openapiDocVersion: "latest",
|
|
34216
|
-
sdkVersion: "0.10.
|
|
34216
|
+
sdkVersion: "0.10.2",
|
|
34217
34217
|
genVersion: "2.559.0",
|
|
34218
|
-
userAgent: "speakeasy-sdk/typescript 0.10.
|
|
34218
|
+
userAgent: "speakeasy-sdk/typescript 0.10.2 2.559.0 latest @moovio/sdk"
|
|
34219
34219
|
};
|
|
34220
34220
|
});
|
|
34221
34221
|
|
|
@@ -36197,16 +36197,16 @@ var init_accountnameverification = __esm(() => {
|
|
|
36197
36197
|
init_lib();
|
|
36198
36198
|
init_cardverificationresult();
|
|
36199
36199
|
AccountNameVerification$inboundSchema = objectType({
|
|
36200
|
-
firstName: CardVerificationResult$inboundSchema,
|
|
36201
|
-
lastName: CardVerificationResult$inboundSchema,
|
|
36202
|
-
middleName: CardVerificationResult$inboundSchema,
|
|
36203
|
-
fullName: CardVerificationResult$inboundSchema
|
|
36200
|
+
firstName: CardVerificationResult$inboundSchema.optional(),
|
|
36201
|
+
lastName: CardVerificationResult$inboundSchema.optional(),
|
|
36202
|
+
middleName: CardVerificationResult$inboundSchema.optional(),
|
|
36203
|
+
fullName: CardVerificationResult$inboundSchema.optional()
|
|
36204
36204
|
});
|
|
36205
36205
|
AccountNameVerification$outboundSchema = objectType({
|
|
36206
|
-
firstName: CardVerificationResult$outboundSchema,
|
|
36207
|
-
lastName: CardVerificationResult$outboundSchema,
|
|
36208
|
-
middleName: CardVerificationResult$outboundSchema,
|
|
36209
|
-
fullName: CardVerificationResult$outboundSchema
|
|
36206
|
+
firstName: CardVerificationResult$outboundSchema.optional(),
|
|
36207
|
+
lastName: CardVerificationResult$outboundSchema.optional(),
|
|
36208
|
+
middleName: CardVerificationResult$outboundSchema.optional(),
|
|
36209
|
+
fullName: CardVerificationResult$outboundSchema.optional()
|
|
36210
36210
|
});
|
|
36211
36211
|
((AccountNameVerification$) => {
|
|
36212
36212
|
AccountNameVerification$.inboundSchema = AccountNameVerification$inboundSchema;
|
|
@@ -38184,13 +38184,13 @@ var init_cardverification = __esm(() => {
|
|
|
38184
38184
|
cvv: CardVerificationResult$inboundSchema,
|
|
38185
38185
|
addressLine1: CardVerificationResult$inboundSchema,
|
|
38186
38186
|
postalCode: CardVerificationResult$inboundSchema,
|
|
38187
|
-
accountName: AccountNameVerification$inboundSchema
|
|
38187
|
+
accountName: AccountNameVerification$inboundSchema.optional()
|
|
38188
38188
|
});
|
|
38189
38189
|
CardVerification$outboundSchema = objectType({
|
|
38190
38190
|
cvv: CardVerificationResult$outboundSchema,
|
|
38191
38191
|
addressLine1: CardVerificationResult$outboundSchema,
|
|
38192
38192
|
postalCode: CardVerificationResult$outboundSchema,
|
|
38193
|
-
accountName: AccountNameVerification$outboundSchema
|
|
38193
|
+
accountName: AccountNameVerification$outboundSchema.optional()
|
|
38194
38194
|
});
|
|
38195
38195
|
((CardVerification$) => {
|
|
38196
38196
|
CardVerification$.inboundSchema = CardVerification$inboundSchema;
|
|
@@ -70799,7 +70799,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
70799
70799
|
function createMCPServer(deps) {
|
|
70800
70800
|
const server = new McpServer({
|
|
70801
70801
|
name: "Moov",
|
|
70802
|
-
version: "0.10.
|
|
70802
|
+
version: "0.10.2"
|
|
70803
70803
|
});
|
|
70804
70804
|
const client = new MoovCore({
|
|
70805
70805
|
security: deps.security,
|
|
@@ -72300,7 +72300,7 @@ var routes = rn({
|
|
|
72300
72300
|
var app = Ve(routes, {
|
|
72301
72301
|
name: "mcp",
|
|
72302
72302
|
versionInfo: {
|
|
72303
|
-
currentVersion: "0.10.
|
|
72303
|
+
currentVersion: "0.10.2"
|
|
72304
72304
|
}
|
|
72305
72305
|
});
|
|
72306
72306
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -72308,5 +72308,5 @@ export {
|
|
|
72308
72308
|
app
|
|
72309
72309
|
};
|
|
72310
72310
|
|
|
72311
|
-
//# debugId=
|
|
72311
|
+
//# debugId=1B335FFD6B6A68B364756E2164756E21
|
|
72312
72312
|
//# sourceMappingURL=mcp-server.js.map
|