@moovio/sdk 25.4.7 → 25.4.8
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 +8 -6
- package/bin/mcp-server.js.map +6 -6
- package/examples/package-lock.json +1 -1
- 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/accountfees.d.ts +5 -0
- package/models/components/accountfees.d.ts.map +1 -1
- package/models/components/accountfees.js +2 -0
- package/models/components/accountfees.js.map +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/accountfees.ts +7 -0
package/bin/mcp-server.js
CHANGED
|
@@ -52879,9 +52879,9 @@ var init_config = __esm(() => {
|
|
|
52879
52879
|
SDK_METADATA = {
|
|
52880
52880
|
language: "typescript",
|
|
52881
52881
|
openapiDocVersion: "v2025.04.00",
|
|
52882
|
-
sdkVersion: "25.4.
|
|
52883
|
-
genVersion: "2.
|
|
52884
|
-
userAgent: "speakeasy-sdk/typescript 25.4.
|
|
52882
|
+
sdkVersion: "25.4.8",
|
|
52883
|
+
genVersion: "2.835.2",
|
|
52884
|
+
userAgent: "speakeasy-sdk/typescript 25.4.8 2.835.2 v2025.04.00 @moovio/sdk"
|
|
52885
52885
|
};
|
|
52886
52886
|
});
|
|
52887
52887
|
|
|
@@ -55221,6 +55221,7 @@ var init_accountfees = __esm(() => {
|
|
|
55221
55221
|
AccountFees$inboundSchema = objectType({
|
|
55222
55222
|
walletFee: AmountDecimal$inboundSchema,
|
|
55223
55223
|
merchantPCIFee: AmountDecimal$inboundSchema,
|
|
55224
|
+
invoicePaymentFee: AmountDecimal$inboundSchema,
|
|
55224
55225
|
kybFee: AmountDecimal$inboundSchema.optional(),
|
|
55225
55226
|
kycFee: AmountDecimal$inboundSchema.optional(),
|
|
55226
55227
|
transactionMonitoringFee: AmountDecimal$inboundSchema.optional(),
|
|
@@ -55229,6 +55230,7 @@ var init_accountfees = __esm(() => {
|
|
|
55229
55230
|
AccountFees$outboundSchema = objectType({
|
|
55230
55231
|
walletFee: AmountDecimal$outboundSchema,
|
|
55231
55232
|
merchantPCIFee: AmountDecimal$outboundSchema,
|
|
55233
|
+
invoicePaymentFee: AmountDecimal$outboundSchema,
|
|
55232
55234
|
kybFee: AmountDecimal$outboundSchema.optional(),
|
|
55233
55235
|
kycFee: AmountDecimal$outboundSchema.optional(),
|
|
55234
55236
|
transactionMonitoringFee: AmountDecimal$outboundSchema.optional(),
|
|
@@ -98924,7 +98926,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
98924
98926
|
function createMCPServer(deps) {
|
|
98925
98927
|
const server = new McpServer({
|
|
98926
98928
|
name: "Moov",
|
|
98927
|
-
version: "25.4.
|
|
98929
|
+
version: "25.4.8"
|
|
98928
98930
|
});
|
|
98929
98931
|
const client = new MoovCore({
|
|
98930
98932
|
security: deps.security,
|
|
@@ -100478,7 +100480,7 @@ var routes = rn({
|
|
|
100478
100480
|
var app = Ve(routes, {
|
|
100479
100481
|
name: "mcp",
|
|
100480
100482
|
versionInfo: {
|
|
100481
|
-
currentVersion: "25.4.
|
|
100483
|
+
currentVersion: "25.4.8"
|
|
100482
100484
|
}
|
|
100483
100485
|
});
|
|
100484
100486
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -100486,5 +100488,5 @@ export {
|
|
|
100486
100488
|
app
|
|
100487
100489
|
};
|
|
100488
100490
|
|
|
100489
|
-
//# debugId=
|
|
100491
|
+
//# debugId=039EBBE6CBC4F65864756E2164756E21
|
|
100490
100492
|
//# sourceMappingURL=mcp-server.js.map
|