@moovio/sdk 0.21.12 → 0.21.13
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/paymentlink.d.ts +5 -0
- package/models/components/paymentlink.d.ts.map +1 -1
- package/models/components/paymentlink.js +2 -0
- package/models/components/paymentlink.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/paymentlink.ts +7 -0
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.21.
|
|
34034
|
-
genVersion: "2.755.
|
|
34035
|
-
userAgent: "speakeasy-sdk/typescript 0.21.
|
|
34033
|
+
sdkVersion: "0.21.13",
|
|
34034
|
+
genVersion: "2.755.9",
|
|
34035
|
+
userAgent: "speakeasy-sdk/typescript 0.21.13 2.755.9 latest @moovio/sdk"
|
|
34036
34036
|
};
|
|
34037
34037
|
});
|
|
34038
34038
|
|
|
@@ -45514,6 +45514,7 @@ var init_paymentlink = __esm(() => {
|
|
|
45514
45514
|
status: PaymentLinkStatus$inboundSchema,
|
|
45515
45515
|
partnerAccountID: stringType(),
|
|
45516
45516
|
merchantAccountID: stringType(),
|
|
45517
|
+
ownerAccountID: stringType(),
|
|
45517
45518
|
merchantPaymentMethodID: stringType(),
|
|
45518
45519
|
link: stringType(),
|
|
45519
45520
|
amount: Amount$inboundSchema,
|
|
@@ -45537,6 +45538,7 @@ var init_paymentlink = __esm(() => {
|
|
|
45537
45538
|
status: PaymentLinkStatus$outboundSchema,
|
|
45538
45539
|
partnerAccountID: stringType(),
|
|
45539
45540
|
merchantAccountID: stringType(),
|
|
45541
|
+
ownerAccountID: stringType(),
|
|
45540
45542
|
merchantPaymentMethodID: stringType(),
|
|
45541
45543
|
link: stringType(),
|
|
45542
45544
|
amount: Amount$outboundSchema,
|
|
@@ -79657,7 +79659,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
79657
79659
|
function createMCPServer(deps) {
|
|
79658
79660
|
const server = new McpServer({
|
|
79659
79661
|
name: "Moov",
|
|
79660
|
-
version: "0.21.
|
|
79662
|
+
version: "0.21.13"
|
|
79661
79663
|
});
|
|
79662
79664
|
const client = new MoovCore({
|
|
79663
79665
|
security: deps.security,
|
|
@@ -81205,7 +81207,7 @@ var routes = rn({
|
|
|
81205
81207
|
var app = Ve(routes, {
|
|
81206
81208
|
name: "mcp",
|
|
81207
81209
|
versionInfo: {
|
|
81208
|
-
currentVersion: "0.21.
|
|
81210
|
+
currentVersion: "0.21.13"
|
|
81209
81211
|
}
|
|
81210
81212
|
});
|
|
81211
81213
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -81213,5 +81215,5 @@ export {
|
|
|
81213
81215
|
app
|
|
81214
81216
|
};
|
|
81215
81217
|
|
|
81216
|
-
//# debugId=
|
|
81218
|
+
//# debugId=B96C137EE00CD9D464756E2164756E21
|
|
81217
81219
|
//# sourceMappingURL=mcp-server.js.map
|