@moovio/sdk 0.0.0-dev.2 → 0.0.0-dev.3
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: "dev",
|
|
52882
|
-
sdkVersion: "0.0.0-dev.
|
|
52883
|
-
genVersion: "2.
|
|
52884
|
-
userAgent: "speakeasy-sdk/typescript 0.0.0-dev.
|
|
52882
|
+
sdkVersion: "0.0.0-dev.3",
|
|
52883
|
+
genVersion: "2.835.2",
|
|
52884
|
+
userAgent: "speakeasy-sdk/typescript 0.0.0-dev.3 2.835.2 dev @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(),
|
|
@@ -103083,7 +103085,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
103083
103085
|
function createMCPServer(deps) {
|
|
103084
103086
|
const server = new McpServer({
|
|
103085
103087
|
name: "Moov",
|
|
103086
|
-
version: "0.0.0-dev.
|
|
103088
|
+
version: "0.0.0-dev.3"
|
|
103087
103089
|
});
|
|
103088
103090
|
const client = new MoovCore({
|
|
103089
103091
|
security: deps.security,
|
|
@@ -104661,7 +104663,7 @@ var routes = rn({
|
|
|
104661
104663
|
var app = Ve(routes, {
|
|
104662
104664
|
name: "mcp",
|
|
104663
104665
|
versionInfo: {
|
|
104664
|
-
currentVersion: "0.0.0-dev.
|
|
104666
|
+
currentVersion: "0.0.0-dev.3"
|
|
104665
104667
|
}
|
|
104666
104668
|
});
|
|
104667
104669
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -104669,5 +104671,5 @@ export {
|
|
|
104669
104671
|
app
|
|
104670
104672
|
};
|
|
104671
104673
|
|
|
104672
|
-
//# debugId=
|
|
104674
|
+
//# debugId=6D2F9DAF8ADDE78064756E2164756E21
|
|
104673
104675
|
//# sourceMappingURL=mcp-server.js.map
|