@moovio/sdk 0.22.4 → 0.22.5
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 +12 -12
- 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 +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/partnerfees.d.ts +7 -7
- package/models/components/partnerfees.d.ts.map +1 -1
- package/models/components/partnerfees.js +7 -7
- package/models/components/partnerfees.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/partnerfees.ts +17 -17
package/bin/mcp-server.js
CHANGED
|
@@ -34030,9 +34030,9 @@ var init_config = __esm(() => {
|
|
|
34030
34030
|
SDK_METADATA = {
|
|
34031
34031
|
language: "typescript",
|
|
34032
34032
|
openapiDocVersion: "latest",
|
|
34033
|
-
sdkVersion: "0.22.
|
|
34033
|
+
sdkVersion: "0.22.5",
|
|
34034
34034
|
genVersion: "2.781.2",
|
|
34035
|
-
userAgent: "speakeasy-sdk/typescript 0.22.
|
|
34035
|
+
userAgent: "speakeasy-sdk/typescript 0.22.5 2.781.2 latest @moovio/sdk"
|
|
34036
34036
|
};
|
|
34037
34037
|
});
|
|
34038
34038
|
|
|
@@ -40179,16 +40179,16 @@ var init_billingsummaryinterchange = __esm(() => {
|
|
|
40179
40179
|
var PartnerFees$inboundSchema, PartnerFees$outboundSchema;
|
|
40180
40180
|
var init_partnerfees = __esm(() => {
|
|
40181
40181
|
init_esm();
|
|
40182
|
-
|
|
40182
|
+
init_amountdecimal();
|
|
40183
40183
|
PartnerFees$inboundSchema = objectType({
|
|
40184
|
-
minimumCommitment:
|
|
40185
|
-
monthlyPlatform:
|
|
40186
|
-
total:
|
|
40184
|
+
minimumCommitment: AmountDecimal$inboundSchema,
|
|
40185
|
+
monthlyPlatform: AmountDecimal$inboundSchema,
|
|
40186
|
+
total: AmountDecimal$inboundSchema
|
|
40187
40187
|
});
|
|
40188
40188
|
PartnerFees$outboundSchema = objectType({
|
|
40189
|
-
minimumCommitment:
|
|
40190
|
-
monthlyPlatform:
|
|
40191
|
-
total:
|
|
40189
|
+
minimumCommitment: AmountDecimal$outboundSchema,
|
|
40190
|
+
monthlyPlatform: AmountDecimal$outboundSchema,
|
|
40191
|
+
total: AmountDecimal$outboundSchema
|
|
40192
40192
|
});
|
|
40193
40193
|
});
|
|
40194
40194
|
|
|
@@ -81426,7 +81426,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
81426
81426
|
function createMCPServer(deps) {
|
|
81427
81427
|
const server = new McpServer({
|
|
81428
81428
|
name: "Moov",
|
|
81429
|
-
version: "0.22.
|
|
81429
|
+
version: "0.22.5"
|
|
81430
81430
|
});
|
|
81431
81431
|
const client = new MoovCore({
|
|
81432
81432
|
security: deps.security,
|
|
@@ -82984,7 +82984,7 @@ var routes = rn({
|
|
|
82984
82984
|
var app = Ve(routes, {
|
|
82985
82985
|
name: "mcp",
|
|
82986
82986
|
versionInfo: {
|
|
82987
|
-
currentVersion: "0.22.
|
|
82987
|
+
currentVersion: "0.22.5"
|
|
82988
82988
|
}
|
|
82989
82989
|
});
|
|
82990
82990
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -82992,5 +82992,5 @@ export {
|
|
|
82992
82992
|
app
|
|
82993
82993
|
};
|
|
82994
82994
|
|
|
82995
|
-
//# debugId=
|
|
82995
|
+
//# debugId=B8C56C911EE59F5E64756E2164756E21
|
|
82996
82996
|
//# sourceMappingURL=mcp-server.js.map
|