@moovio/sdk 25.10.0 → 26.4.0-dev.0
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 +31 -9
- package/bin/mcp-server.js.map +10 -9
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.d.ts.map +1 -1
- 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/index.d.ts +1 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +1 -0
- package/models/components/index.js.map +1 -1
- package/models/components/instantbankcreditpaymentmethod.d.ts +31 -0
- package/models/components/instantbankcreditpaymentmethod.d.ts.map +1 -0
- package/models/components/instantbankcreditpaymentmethod.js +63 -0
- package/models/components/instantbankcreditpaymentmethod.js.map +1 -0
- package/models/components/paymentmethod.d.ts +3 -2
- package/models/components/paymentmethod.d.ts.map +1 -1
- package/models/components/paymentmethod.js +3 -0
- package/models/components/paymentmethod.js.map +1 -1
- package/models/components/paymentmethodtype.d.ts +1 -0
- package/models/components/paymentmethodtype.d.ts.map +1 -1
- package/models/components/paymentmethodtype.js +1 -0
- package/models/components/paymentmethodtype.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +4 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/index.ts +1 -0
- package/src/models/components/instantbankcreditpaymentmethod.ts +76 -0
- package/src/models/components/paymentmethod.ts +12 -2
- package/src/models/components/paymentmethodtype.ts +1 -0
package/bin/mcp-server.js
CHANGED
|
@@ -52412,10 +52412,10 @@ var init_config = __esm(() => {
|
|
|
52412
52412
|
];
|
|
52413
52413
|
SDK_METADATA = {
|
|
52414
52414
|
language: "typescript",
|
|
52415
|
-
openapiDocVersion: "
|
|
52416
|
-
sdkVersion: "
|
|
52415
|
+
openapiDocVersion: "v2026.04.00",
|
|
52416
|
+
sdkVersion: "26.4.0-dev.0",
|
|
52417
52417
|
genVersion: "2.803.3",
|
|
52418
|
-
userAgent: "speakeasy-sdk/typescript
|
|
52418
|
+
userAgent: "speakeasy-sdk/typescript 26.4.0-dev.0 2.803.3 v2026.04.00 @moovio/sdk"
|
|
52419
52419
|
};
|
|
52420
52420
|
});
|
|
52421
52421
|
|
|
@@ -55908,7 +55908,8 @@ var init_paymentmethodtype = __esm(() => {
|
|
|
55908
55908
|
PushToCard: "push-to-card",
|
|
55909
55909
|
PullFromCard: "pull-from-card",
|
|
55910
55910
|
ApplePay: "apple-pay",
|
|
55911
|
-
CardPresentPayment: "card-present-payment"
|
|
55911
|
+
CardPresentPayment: "card-present-payment",
|
|
55912
|
+
InstantBankCredit: "instant-bank-credit"
|
|
55912
55913
|
};
|
|
55913
55914
|
PaymentMethodType$inboundSchema = nativeEnumType(PaymentMethodType);
|
|
55914
55915
|
PaymentMethodType$outboundSchema = PaymentMethodType$inboundSchema;
|
|
@@ -62986,6 +62987,23 @@ var init_individualnameupdate = __esm(() => {
|
|
|
62986
62987
|
});
|
|
62987
62988
|
});
|
|
62988
62989
|
|
|
62990
|
+
// src/models/components/instantbankcreditpaymentmethod.ts
|
|
62991
|
+
var InstantBankCreditPaymentMethod$inboundSchema, InstantBankCreditPaymentMethod$outboundSchema;
|
|
62992
|
+
var init_instantbankcreditpaymentmethod = __esm(() => {
|
|
62993
|
+
init_esm();
|
|
62994
|
+
init_paymentmethodsbankaccount();
|
|
62995
|
+
InstantBankCreditPaymentMethod$inboundSchema = objectType({
|
|
62996
|
+
paymentMethodID: stringType(),
|
|
62997
|
+
paymentMethodType: literalType("instant-bank-credit"),
|
|
62998
|
+
bankAccount: PaymentMethodsBankAccount$inboundSchema
|
|
62999
|
+
});
|
|
63000
|
+
InstantBankCreditPaymentMethod$outboundSchema = objectType({
|
|
63001
|
+
paymentMethodID: stringType(),
|
|
63002
|
+
paymentMethodType: literalType("instant-bank-credit"),
|
|
63003
|
+
bankAccount: PaymentMethodsBankAccount$outboundSchema
|
|
63004
|
+
});
|
|
63005
|
+
});
|
|
63006
|
+
|
|
62989
63007
|
// src/models/components/instantpaymentfees.ts
|
|
62990
63008
|
var InstantPaymentFees$inboundSchema, InstantPaymentFees$outboundSchema;
|
|
62991
63009
|
var init_instantpaymentfees = __esm(() => {
|
|
@@ -64669,6 +64687,7 @@ var init_paymentmethod = __esm(() => {
|
|
|
64669
64687
|
init_applepaypaymentmethod();
|
|
64670
64688
|
init_cardpaymentpaymentmethod();
|
|
64671
64689
|
init_cardpresentpaymentpaymentmethod();
|
|
64690
|
+
init_instantbankcreditpaymentmethod();
|
|
64672
64691
|
init_moovwalletpaymentmethod();
|
|
64673
64692
|
init_pullfromcardpaymentmethod();
|
|
64674
64693
|
init_pushtocardpaymentmethod();
|
|
@@ -64684,7 +64703,8 @@ var init_paymentmethod = __esm(() => {
|
|
|
64684
64703
|
PushToCardPaymentMethod$inboundSchema,
|
|
64685
64704
|
PullFromCardPaymentMethod$inboundSchema,
|
|
64686
64705
|
ApplePayPaymentMethod$inboundSchema,
|
|
64687
|
-
CardPresentPaymentPaymentMethod$inboundSchema
|
|
64706
|
+
CardPresentPaymentPaymentMethod$inboundSchema,
|
|
64707
|
+
InstantBankCreditPaymentMethod$inboundSchema
|
|
64688
64708
|
]);
|
|
64689
64709
|
PaymentMethod$outboundSchema = unionType([
|
|
64690
64710
|
MoovWalletPaymentMethod$outboundSchema,
|
|
@@ -64697,7 +64717,8 @@ var init_paymentmethod = __esm(() => {
|
|
|
64697
64717
|
PushToCardPaymentMethod$outboundSchema,
|
|
64698
64718
|
PullFromCardPaymentMethod$outboundSchema,
|
|
64699
64719
|
ApplePayPaymentMethod$outboundSchema,
|
|
64700
|
-
CardPresentPaymentPaymentMethod$outboundSchema
|
|
64720
|
+
CardPresentPaymentPaymentMethod$outboundSchema,
|
|
64721
|
+
InstantBankCreditPaymentMethod$outboundSchema
|
|
64701
64722
|
]);
|
|
64702
64723
|
});
|
|
64703
64724
|
|
|
@@ -67727,6 +67748,7 @@ var init_components = __esm(() => {
|
|
|
67727
67748
|
init_individualprofile();
|
|
67728
67749
|
init_industrycodes();
|
|
67729
67750
|
init_industrytaxonomy();
|
|
67751
|
+
init_instantbankcreditpaymentmethod();
|
|
67730
67752
|
init_instantpaymentfees();
|
|
67731
67753
|
init_institutionssearchresponse();
|
|
67732
67754
|
init_invoicestatus();
|
|
@@ -100214,7 +100236,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
100214
100236
|
function createMCPServer(deps) {
|
|
100215
100237
|
const server = new McpServer({
|
|
100216
100238
|
name: "Moov",
|
|
100217
|
-
version: "
|
|
100239
|
+
version: "26.4.0-dev.0"
|
|
100218
100240
|
});
|
|
100219
100241
|
const client = new MoovCore({
|
|
100220
100242
|
security: deps.security,
|
|
@@ -101780,7 +101802,7 @@ var routes = rn({
|
|
|
101780
101802
|
var app = Ve(routes, {
|
|
101781
101803
|
name: "mcp",
|
|
101782
101804
|
versionInfo: {
|
|
101783
|
-
currentVersion: "
|
|
101805
|
+
currentVersion: "26.4.0-dev.0"
|
|
101784
101806
|
}
|
|
101785
101807
|
});
|
|
101786
101808
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -101788,5 +101810,5 @@ export {
|
|
|
101788
101810
|
app
|
|
101789
101811
|
};
|
|
101790
101812
|
|
|
101791
|
-
//# debugId=
|
|
101813
|
+
//# debugId=3D796353F2710E7E64756E2164756E21
|
|
101792
101814
|
//# sourceMappingURL=mcp-server.js.map
|