@moovio/sdk 0.0.0-dev.19 → 0.0.0-dev.20
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 +27 -69
- package/bin/mcp-server.js.map +9 -11
- 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/googlepayresponse.d.ts +45 -3
- package/models/components/googlepayresponse.d.ts.map +1 -1
- package/models/components/googlepayresponse.js +24 -3
- package/models/components/googlepayresponse.js.map +1 -1
- package/models/components/index.d.ts +0 -2
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +0 -2
- package/models/components/index.js.map +1 -1
- package/models/components/transferdestination.d.ts +0 -46
- package/models/components/transferdestination.d.ts.map +1 -1
- package/models/components/transferdestination.js +1 -33
- package/models/components/transferdestination.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/googlepayresponse.ts +70 -5
- package/src/models/components/index.ts +0 -2
- package/src/models/components/transferdestination.ts +0 -94
- package/models/components/rtpfailurecode.d.ts +0 -26
- package/models/components/rtpfailurecode.d.ts.map +0 -1
- package/models/components/rtpfailurecode.js +0 -60
- package/models/components/rtpfailurecode.js.map +0 -1
- package/models/components/rtptransactionstatus.d.ts +0 -20
- package/models/components/rtptransactionstatus.d.ts.map +0 -1
- package/models/components/rtptransactionstatus.js +0 -54
- package/models/components/rtptransactionstatus.js.map +0 -1
- package/src/models/components/rtpfailurecode.ts +0 -40
- package/src/models/components/rtptransactionstatus.ts +0 -34
package/bin/mcp-server.js
CHANGED
|
@@ -53586,9 +53586,9 @@ var init_config = __esm(() => {
|
|
|
53586
53586
|
SDK_METADATA = {
|
|
53587
53587
|
language: "typescript",
|
|
53588
53588
|
openapiDocVersion: "dev",
|
|
53589
|
-
sdkVersion: "0.0.0-dev.
|
|
53589
|
+
sdkVersion: "0.0.0-dev.20",
|
|
53590
53590
|
genVersion: "2.882.0",
|
|
53591
|
-
userAgent: "speakeasy-sdk/typescript 0.0.0-dev.
|
|
53591
|
+
userAgent: "speakeasy-sdk/typescript 0.0.0-dev.20 2.882.0 dev @moovio/sdk"
|
|
53592
53592
|
};
|
|
53593
53593
|
});
|
|
53594
53594
|
|
|
@@ -62450,25 +62450,41 @@ var init_transfercapture = __esm(() => {
|
|
|
62450
62450
|
});
|
|
62451
62451
|
|
|
62452
62452
|
// src/models/components/googlepayresponse.ts
|
|
62453
|
-
var GooglePayResponse$inboundSchema, GooglePayResponse$outboundSchema;
|
|
62453
|
+
var AuthMethod, AuthMethod$inboundSchema, AuthMethod$outboundSchema, GooglePayResponse$inboundSchema, GooglePayResponse$outboundSchema;
|
|
62454
62454
|
var init_googlepayresponse = __esm(() => {
|
|
62455
62455
|
init_v3();
|
|
62456
|
+
init_enums();
|
|
62456
62457
|
init_primitives2();
|
|
62457
62458
|
init_cardbrand();
|
|
62458
62459
|
init_cardexpiration();
|
|
62460
|
+
init_cardtype();
|
|
62461
|
+
AuthMethod = {
|
|
62462
|
+
PanOnly: "PAN_ONLY",
|
|
62463
|
+
Cryptogram3Ds: "CRYPTOGRAM_3DS"
|
|
62464
|
+
};
|
|
62465
|
+
AuthMethod$inboundSchema = inboundSchema(AuthMethod);
|
|
62466
|
+
AuthMethod$outboundSchema = outboundSchema(AuthMethod);
|
|
62459
62467
|
GooglePayResponse$inboundSchema = objectType({
|
|
62468
|
+
tokenID: string4(),
|
|
62460
62469
|
brand: CardBrand$inboundSchema,
|
|
62461
|
-
|
|
62470
|
+
cardType: CardType$inboundSchema,
|
|
62471
|
+
cardDisplayName: string4(),
|
|
62462
62472
|
fingerprint: string4(),
|
|
62463
62473
|
expiration: CardExpiration$inboundSchema,
|
|
62464
|
-
|
|
62474
|
+
dynamicLastFour: string4(),
|
|
62475
|
+
issuerCountry: optional3(string4()),
|
|
62476
|
+
authMethod: optional3(AuthMethod$inboundSchema)
|
|
62465
62477
|
});
|
|
62466
62478
|
GooglePayResponse$outboundSchema = objectType({
|
|
62479
|
+
tokenID: stringType(),
|
|
62467
62480
|
brand: CardBrand$outboundSchema,
|
|
62468
|
-
|
|
62481
|
+
cardType: CardType$outboundSchema,
|
|
62482
|
+
cardDisplayName: stringType(),
|
|
62469
62483
|
fingerprint: stringType(),
|
|
62470
62484
|
expiration: CardExpiration$outboundSchema,
|
|
62471
|
-
|
|
62485
|
+
dynamicLastFour: stringType(),
|
|
62486
|
+
issuerCountry: stringType().optional(),
|
|
62487
|
+
authMethod: AuthMethod$outboundSchema.optional()
|
|
62472
62488
|
});
|
|
62473
62489
|
});
|
|
62474
62490
|
|
|
@@ -62551,40 +62567,6 @@ var init_instantbanktransactiondetails = __esm(() => {
|
|
|
62551
62567
|
});
|
|
62552
62568
|
});
|
|
62553
62569
|
|
|
62554
|
-
// src/models/components/rtpfailurecode.ts
|
|
62555
|
-
var RTPFailureCode, RTPFailureCode$inboundSchema, RTPFailureCode$outboundSchema;
|
|
62556
|
-
var init_rtpfailurecode = __esm(() => {
|
|
62557
|
-
init_enums();
|
|
62558
|
-
RTPFailureCode = {
|
|
62559
|
-
ProcessingError: "processing-error",
|
|
62560
|
-
InvalidAccount: "invalid-account",
|
|
62561
|
-
AccountClosed: "account-closed",
|
|
62562
|
-
AccountBlocked: "account-blocked",
|
|
62563
|
-
InvalidField: "invalid-field",
|
|
62564
|
-
TransactionNotSupported: "transaction-not-supported",
|
|
62565
|
-
LimitExceeded: "limit-exceeded",
|
|
62566
|
-
InvalidAmount: "invalid-amount",
|
|
62567
|
-
CustomerDeceased: "customer-deceased",
|
|
62568
|
-
Other: "other"
|
|
62569
|
-
};
|
|
62570
|
-
RTPFailureCode$inboundSchema = inboundSchema(RTPFailureCode);
|
|
62571
|
-
RTPFailureCode$outboundSchema = outboundSchema(RTPFailureCode);
|
|
62572
|
-
});
|
|
62573
|
-
|
|
62574
|
-
// src/models/components/rtptransactionstatus.ts
|
|
62575
|
-
var RTPTransactionStatus, RTPTransactionStatus$inboundSchema, RTPTransactionStatus$outboundSchema;
|
|
62576
|
-
var init_rtptransactionstatus = __esm(() => {
|
|
62577
|
-
init_enums();
|
|
62578
|
-
RTPTransactionStatus = {
|
|
62579
|
-
Initiated: "initiated",
|
|
62580
|
-
Completed: "completed",
|
|
62581
|
-
Failed: "failed",
|
|
62582
|
-
AcceptedWithoutPosting: "accepted-without-posting"
|
|
62583
|
-
};
|
|
62584
|
-
RTPTransactionStatus$inboundSchema = inboundSchema(RTPTransactionStatus);
|
|
62585
|
-
RTPTransactionStatus$outboundSchema = outboundSchema(RTPTransactionStatus);
|
|
62586
|
-
});
|
|
62587
|
-
|
|
62588
62570
|
// src/models/components/transferaccount.ts
|
|
62589
62571
|
var TransferAccount$inboundSchema, TransferAccount$outboundSchema;
|
|
62590
62572
|
var init_transferaccount = __esm(() => {
|
|
@@ -62660,7 +62642,7 @@ var init_transferpaymentmethodtype = __esm(() => {
|
|
|
62660
62642
|
});
|
|
62661
62643
|
|
|
62662
62644
|
// src/models/components/transferdestination.ts
|
|
62663
|
-
var
|
|
62645
|
+
var TransferDestination$inboundSchema, TransferDestination$outboundSchema;
|
|
62664
62646
|
var init_transferdestination = __esm(() => {
|
|
62665
62647
|
init_v3();
|
|
62666
62648
|
init_primitives2();
|
|
@@ -62669,31 +62651,11 @@ var init_transferdestination = __esm(() => {
|
|
|
62669
62651
|
init_cardtransactiondetails();
|
|
62670
62652
|
init_googlepayresponse();
|
|
62671
62653
|
init_instantbanktransactiondetails();
|
|
62672
|
-
init_rtpfailurecode();
|
|
62673
|
-
init_rtptransactionstatus();
|
|
62674
62654
|
init_transferaccount();
|
|
62675
62655
|
init_transferpaymentmethodsbankaccount();
|
|
62676
62656
|
init_transferpaymentmethodscard();
|
|
62677
62657
|
init_transferpaymentmethodswallet();
|
|
62678
62658
|
init_transferpaymentmethodtype();
|
|
62679
|
-
RtpDetails$inboundSchema = objectType({
|
|
62680
|
-
status: optional3(RTPTransactionStatus$inboundSchema),
|
|
62681
|
-
networkResponseCode: optional3(string4()),
|
|
62682
|
-
failureCode: optional3(RTPFailureCode$inboundSchema),
|
|
62683
|
-
initiatedOn: optional3(date4()),
|
|
62684
|
-
completedOn: optional3(date4()),
|
|
62685
|
-
failedOn: optional3(date4()),
|
|
62686
|
-
acceptedWithoutPostingOn: optional3(date4())
|
|
62687
|
-
});
|
|
62688
|
-
RtpDetails$outboundSchema = objectType({
|
|
62689
|
-
status: RTPTransactionStatus$outboundSchema.optional(),
|
|
62690
|
-
networkResponseCode: stringType().optional(),
|
|
62691
|
-
failureCode: RTPFailureCode$outboundSchema.optional(),
|
|
62692
|
-
initiatedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62693
|
-
completedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62694
|
-
failedOn: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62695
|
-
acceptedWithoutPostingOn: dateType().transform((v2) => v2.toISOString()).optional()
|
|
62696
|
-
});
|
|
62697
62659
|
TransferDestination$inboundSchema = objectType({
|
|
62698
62660
|
paymentMethodID: string4(),
|
|
62699
62661
|
paymentMethodType: TransferPaymentMethodType$inboundSchema,
|
|
@@ -62705,7 +62667,6 @@ var init_transferdestination = __esm(() => {
|
|
|
62705
62667
|
applePay: optional3(ApplePayResponse$inboundSchema),
|
|
62706
62668
|
googlePay: optional3(GooglePayResponse$inboundSchema),
|
|
62707
62669
|
cardDetails: optional3(CardTransactionDetails$inboundSchema),
|
|
62708
|
-
rtpDetails: optional3(lazyType(() => RtpDetails$inboundSchema)),
|
|
62709
62670
|
instantBankDetails: optional3(InstantBankTransactionDetails$inboundSchema)
|
|
62710
62671
|
});
|
|
62711
62672
|
TransferDestination$outboundSchema = objectType({
|
|
@@ -62719,7 +62680,6 @@ var init_transferdestination = __esm(() => {
|
|
|
62719
62680
|
applePay: ApplePayResponse$outboundSchema.optional(),
|
|
62720
62681
|
googlePay: GooglePayResponse$outboundSchema.optional(),
|
|
62721
62682
|
cardDetails: CardTransactionDetails$outboundSchema.optional(),
|
|
62722
|
-
rtpDetails: lazyType(() => RtpDetails$outboundSchema).optional(),
|
|
62723
62683
|
instantBankDetails: InstantBankTransactionDetails$outboundSchema.optional()
|
|
62724
62684
|
});
|
|
62725
62685
|
});
|
|
@@ -71916,11 +71876,9 @@ var init_components = __esm(() => {
|
|
|
71916
71876
|
init_revoketokenrequest();
|
|
71917
71877
|
init_rtpcreditpaymentmethod();
|
|
71918
71878
|
init_rtpcredittransferpaymentmethod();
|
|
71919
|
-
init_rtpfailurecode();
|
|
71920
71879
|
init_rtpinstitution();
|
|
71921
71880
|
init_rtprejectioncode();
|
|
71922
71881
|
init_rtpservices();
|
|
71923
|
-
init_rtptransactionstatus();
|
|
71924
71882
|
init_runtransfer();
|
|
71925
71883
|
init_scheduledtransferimagemetadata();
|
|
71926
71884
|
init_scheduledtransferlineitem();
|
|
@@ -104487,7 +104445,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
104487
104445
|
function createMCPServer(deps) {
|
|
104488
104446
|
const server = new McpServer({
|
|
104489
104447
|
name: "Moov",
|
|
104490
|
-
version: "0.0.0-dev.
|
|
104448
|
+
version: "0.0.0-dev.20"
|
|
104491
104449
|
});
|
|
104492
104450
|
const client = new MoovCore({
|
|
104493
104451
|
security: deps.security,
|
|
@@ -106087,7 +106045,7 @@ var routes = rn({
|
|
|
106087
106045
|
var app = Ve(routes, {
|
|
106088
106046
|
name: "mcp",
|
|
106089
106047
|
versionInfo: {
|
|
106090
|
-
currentVersion: "0.0.0-dev.
|
|
106048
|
+
currentVersion: "0.0.0-dev.20"
|
|
106091
106049
|
}
|
|
106092
106050
|
});
|
|
106093
106051
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -106095,5 +106053,5 @@ export {
|
|
|
106095
106053
|
app
|
|
106096
106054
|
};
|
|
106097
106055
|
|
|
106098
|
-
//# debugId=
|
|
106056
|
+
//# debugId=8988B3BB35D8B25B64756E2164756E21
|
|
106099
106057
|
//# sourceMappingURL=mcp-server.js.map
|