@moovio/sdk 25.7.7 → 25.7.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.07.00",
|
|
52882
|
-
sdkVersion: "25.7.
|
|
52883
|
-
genVersion: "2.
|
|
52884
|
-
userAgent: "speakeasy-sdk/typescript 25.7.
|
|
52882
|
+
sdkVersion: "25.7.8",
|
|
52883
|
+
genVersion: "2.835.2",
|
|
52884
|
+
userAgent: "speakeasy-sdk/typescript 25.7.8 2.835.2 v2025.07.00 @moovio/sdk"
|
|
52885
52885
|
};
|
|
52886
52886
|
});
|
|
52887
52887
|
|
|
@@ -55242,6 +55242,7 @@ var init_accountfees = __esm(() => {
|
|
|
55242
55242
|
AccountFees$inboundSchema = objectType({
|
|
55243
55243
|
walletFee: AmountDecimal$inboundSchema,
|
|
55244
55244
|
merchantPCIFee: AmountDecimal$inboundSchema,
|
|
55245
|
+
invoicePaymentFee: AmountDecimal$inboundSchema,
|
|
55245
55246
|
kybFee: AmountDecimal$inboundSchema.optional(),
|
|
55246
55247
|
kycFee: AmountDecimal$inboundSchema.optional(),
|
|
55247
55248
|
transactionMonitoringFee: AmountDecimal$inboundSchema.optional(),
|
|
@@ -55250,6 +55251,7 @@ var init_accountfees = __esm(() => {
|
|
|
55250
55251
|
AccountFees$outboundSchema = objectType({
|
|
55251
55252
|
walletFee: AmountDecimal$outboundSchema,
|
|
55252
55253
|
merchantPCIFee: AmountDecimal$outboundSchema,
|
|
55254
|
+
invoicePaymentFee: AmountDecimal$outboundSchema,
|
|
55253
55255
|
kybFee: AmountDecimal$outboundSchema.optional(),
|
|
55254
55256
|
kycFee: AmountDecimal$outboundSchema.optional(),
|
|
55255
55257
|
transactionMonitoringFee: AmountDecimal$outboundSchema.optional(),
|
|
@@ -101140,7 +101142,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
101140
101142
|
function createMCPServer(deps) {
|
|
101141
101143
|
const server = new McpServer({
|
|
101142
101144
|
name: "Moov",
|
|
101143
|
-
version: "25.7.
|
|
101145
|
+
version: "25.7.8"
|
|
101144
101146
|
});
|
|
101145
101147
|
const client = new MoovCore({
|
|
101146
101148
|
security: deps.security,
|
|
@@ -102706,7 +102708,7 @@ var routes = rn({
|
|
|
102706
102708
|
var app = Ve(routes, {
|
|
102707
102709
|
name: "mcp",
|
|
102708
102710
|
versionInfo: {
|
|
102709
|
-
currentVersion: "25.7.
|
|
102711
|
+
currentVersion: "25.7.8"
|
|
102710
102712
|
}
|
|
102711
102713
|
});
|
|
102712
102714
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -102714,5 +102716,5 @@ export {
|
|
|
102714
102716
|
app
|
|
102715
102717
|
};
|
|
102716
102718
|
|
|
102717
|
-
//# debugId=
|
|
102719
|
+
//# debugId=01804076483EA61964756E2164756E21
|
|
102718
102720
|
//# sourceMappingURL=mcp-server.js.map
|