@moovio/sdk 25.10.2 → 26.1.1
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.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 +3 -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
|
@@ -52878,10 +52878,10 @@ var init_config = __esm(() => {
|
|
|
52878
52878
|
];
|
|
52879
52879
|
SDK_METADATA = {
|
|
52880
52880
|
language: "typescript",
|
|
52881
|
-
openapiDocVersion: "
|
|
52882
|
-
sdkVersion: "
|
|
52881
|
+
openapiDocVersion: "v2026.01.00",
|
|
52882
|
+
sdkVersion: "26.1.1",
|
|
52883
52883
|
genVersion: "2.811.2",
|
|
52884
|
-
userAgent: "speakeasy-sdk/typescript
|
|
52884
|
+
userAgent: "speakeasy-sdk/typescript 26.1.1 2.811.2 v2026.01.00 @moovio/sdk"
|
|
52885
52885
|
};
|
|
52886
52886
|
});
|
|
52887
52887
|
|
|
@@ -56374,7 +56374,8 @@ var init_paymentmethodtype = __esm(() => {
|
|
|
56374
56374
|
PushToCard: "push-to-card",
|
|
56375
56375
|
PullFromCard: "pull-from-card",
|
|
56376
56376
|
ApplePay: "apple-pay",
|
|
56377
|
-
CardPresentPayment: "card-present-payment"
|
|
56377
|
+
CardPresentPayment: "card-present-payment",
|
|
56378
|
+
InstantBankCredit: "instant-bank-credit"
|
|
56378
56379
|
};
|
|
56379
56380
|
PaymentMethodType$inboundSchema = nativeEnumType(PaymentMethodType);
|
|
56380
56381
|
PaymentMethodType$outboundSchema = PaymentMethodType$inboundSchema;
|
|
@@ -63452,6 +63453,23 @@ var init_individualnameupdate = __esm(() => {
|
|
|
63452
63453
|
});
|
|
63453
63454
|
});
|
|
63454
63455
|
|
|
63456
|
+
// src/models/components/instantbankcreditpaymentmethod.ts
|
|
63457
|
+
var InstantBankCreditPaymentMethod$inboundSchema, InstantBankCreditPaymentMethod$outboundSchema;
|
|
63458
|
+
var init_instantbankcreditpaymentmethod = __esm(() => {
|
|
63459
|
+
init_esm();
|
|
63460
|
+
init_paymentmethodsbankaccount();
|
|
63461
|
+
InstantBankCreditPaymentMethod$inboundSchema = objectType({
|
|
63462
|
+
paymentMethodID: stringType(),
|
|
63463
|
+
paymentMethodType: literalType("instant-bank-credit"),
|
|
63464
|
+
bankAccount: PaymentMethodsBankAccount$inboundSchema
|
|
63465
|
+
});
|
|
63466
|
+
InstantBankCreditPaymentMethod$outboundSchema = objectType({
|
|
63467
|
+
paymentMethodID: stringType(),
|
|
63468
|
+
paymentMethodType: literalType("instant-bank-credit"),
|
|
63469
|
+
bankAccount: PaymentMethodsBankAccount$outboundSchema
|
|
63470
|
+
});
|
|
63471
|
+
});
|
|
63472
|
+
|
|
63455
63473
|
// src/models/components/instantpaymentfees.ts
|
|
63456
63474
|
var InstantPaymentFees$inboundSchema, InstantPaymentFees$outboundSchema;
|
|
63457
63475
|
var init_instantpaymentfees = __esm(() => {
|
|
@@ -65135,6 +65153,7 @@ var init_paymentmethod = __esm(() => {
|
|
|
65135
65153
|
init_applepaypaymentmethod();
|
|
65136
65154
|
init_cardpaymentpaymentmethod();
|
|
65137
65155
|
init_cardpresentpaymentpaymentmethod();
|
|
65156
|
+
init_instantbankcreditpaymentmethod();
|
|
65138
65157
|
init_moovwalletpaymentmethod();
|
|
65139
65158
|
init_pullfromcardpaymentmethod();
|
|
65140
65159
|
init_pushtocardpaymentmethod();
|
|
@@ -65150,7 +65169,8 @@ var init_paymentmethod = __esm(() => {
|
|
|
65150
65169
|
PushToCardPaymentMethod$inboundSchema,
|
|
65151
65170
|
PullFromCardPaymentMethod$inboundSchema,
|
|
65152
65171
|
ApplePayPaymentMethod$inboundSchema,
|
|
65153
|
-
CardPresentPaymentPaymentMethod$inboundSchema
|
|
65172
|
+
CardPresentPaymentPaymentMethod$inboundSchema,
|
|
65173
|
+
InstantBankCreditPaymentMethod$inboundSchema
|
|
65154
65174
|
]);
|
|
65155
65175
|
PaymentMethod$outboundSchema = unionType([
|
|
65156
65176
|
MoovWalletPaymentMethod$outboundSchema,
|
|
@@ -65163,7 +65183,8 @@ var init_paymentmethod = __esm(() => {
|
|
|
65163
65183
|
PushToCardPaymentMethod$outboundSchema,
|
|
65164
65184
|
PullFromCardPaymentMethod$outboundSchema,
|
|
65165
65185
|
ApplePayPaymentMethod$outboundSchema,
|
|
65166
|
-
CardPresentPaymentPaymentMethod$outboundSchema
|
|
65186
|
+
CardPresentPaymentPaymentMethod$outboundSchema,
|
|
65187
|
+
InstantBankCreditPaymentMethod$outboundSchema
|
|
65167
65188
|
]);
|
|
65168
65189
|
});
|
|
65169
65190
|
|
|
@@ -68193,6 +68214,7 @@ var init_components = __esm(() => {
|
|
|
68193
68214
|
init_individualprofile();
|
|
68194
68215
|
init_industrycodes();
|
|
68195
68216
|
init_industrytaxonomy();
|
|
68217
|
+
init_instantbankcreditpaymentmethod();
|
|
68196
68218
|
init_instantpaymentfees();
|
|
68197
68219
|
init_institutionssearchresponse();
|
|
68198
68220
|
init_invoicestatus();
|
|
@@ -100680,7 +100702,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
100680
100702
|
function createMCPServer(deps) {
|
|
100681
100703
|
const server = new McpServer({
|
|
100682
100704
|
name: "Moov",
|
|
100683
|
-
version: "
|
|
100705
|
+
version: "26.1.1"
|
|
100684
100706
|
});
|
|
100685
100707
|
const client = new MoovCore({
|
|
100686
100708
|
security: deps.security,
|
|
@@ -102246,7 +102268,7 @@ var routes = rn({
|
|
|
102246
102268
|
var app = Ve(routes, {
|
|
102247
102269
|
name: "mcp",
|
|
102248
102270
|
versionInfo: {
|
|
102249
|
-
currentVersion: "
|
|
102271
|
+
currentVersion: "26.1.1"
|
|
102250
102272
|
}
|
|
102251
102273
|
});
|
|
102252
102274
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -102254,5 +102276,5 @@ export {
|
|
|
102254
102276
|
app
|
|
102255
102277
|
};
|
|
102256
102278
|
|
|
102257
|
-
//# debugId=
|
|
102279
|
+
//# debugId=B7485F58A09EB15C64756E2164756E21
|
|
102258
102280
|
//# sourceMappingURL=mcp-server.js.map
|