@moovio/sdk 24.1.9 → 24.1.10
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/lib/config.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/mcp-server.js.map +1 -1
- package/mcp-server/server.js +1 -1
- package/mcp-server/server.js.map +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: "v2024.01.00",
|
|
52882
|
-
sdkVersion: "24.1.
|
|
52883
|
-
genVersion: "2.
|
|
52884
|
-
userAgent: "speakeasy-sdk/typescript 24.1.
|
|
52882
|
+
sdkVersion: "24.1.10",
|
|
52883
|
+
genVersion: "2.835.2",
|
|
52884
|
+
userAgent: "speakeasy-sdk/typescript 24.1.10 2.835.2 v2024.01.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(),
|
|
@@ -98775,7 +98777,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
98775
98777
|
function createMCPServer(deps) {
|
|
98776
98778
|
const server = new McpServer({
|
|
98777
98779
|
name: "Moov",
|
|
98778
|
-
version: "24.1.
|
|
98780
|
+
version: "24.1.10"
|
|
98779
98781
|
});
|
|
98780
98782
|
const client = new MoovCore({
|
|
98781
98783
|
security: deps.security,
|
|
@@ -100329,7 +100331,7 @@ var routes = rn({
|
|
|
100329
100331
|
var app = Ve(routes, {
|
|
100330
100332
|
name: "mcp",
|
|
100331
100333
|
versionInfo: {
|
|
100332
|
-
currentVersion: "24.1.
|
|
100334
|
+
currentVersion: "24.1.10"
|
|
100333
100335
|
}
|
|
100334
100336
|
});
|
|
100335
100337
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -100337,5 +100339,5 @@ export {
|
|
|
100337
100339
|
app
|
|
100338
100340
|
};
|
|
100339
100341
|
|
|
100340
|
-
//# debugId=
|
|
100342
|
+
//# debugId=6E344F418A44845D64756E2164756E21
|
|
100341
100343
|
//# sourceMappingURL=mcp-server.js.map
|