@moovio/sdk 26.10.0-dev.3 → 26.10.0-dev.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 +32 -9
- package/bin/mcp-server.js.map +13 -12
- 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/cardpaymenttransactionstatus.d.ts +1 -0
- package/models/components/cardpaymenttransactionstatus.d.ts.map +1 -1
- package/models/components/cardpaymenttransactionstatus.js +1 -0
- package/models/components/cardpaymenttransactionstatus.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/issuedcardauthorization.d.ts +5 -0
- package/models/components/issuedcardauthorization.d.ts.map +1 -1
- package/models/components/issuedcardauthorization.js +2 -0
- package/models/components/issuedcardauthorization.js.map +1 -1
- package/models/components/issuedcardtransaction.d.ts +5 -0
- package/models/components/issuedcardtransaction.d.ts.map +1 -1
- package/models/components/issuedcardtransaction.js +2 -0
- package/models/components/issuedcardtransaction.js.map +1 -1
- package/models/components/webhookdata.d.ts +3 -2
- package/models/components/webhookdata.d.ts.map +1 -1
- package/models/components/webhookdata.js +3 -0
- package/models/components/webhookdata.js.map +1 -1
- package/models/components/webhookdataeventtest.d.ts +20 -0
- package/models/components/webhookdataeventtest.d.ts.map +1 -0
- package/models/components/webhookdataeventtest.js +59 -0
- package/models/components/webhookdataeventtest.js.map +1 -0
- package/models/components/webhookeventtype.d.ts +1 -0
- package/models/components/webhookeventtype.d.ts.map +1 -1
- package/models/components/webhookeventtype.js +1 -0
- package/models/components/webhookeventtype.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/cardpaymenttransactionstatus.ts +1 -0
- package/src/models/components/index.ts +1 -0
- package/src/models/components/issuedcardauthorization.ts +7 -0
- package/src/models/components/issuedcardtransaction.ts +7 -0
- package/src/models/components/webhookdata.ts +12 -2
- package/src/models/components/webhookdataeventtest.ts +55 -0
- package/src/models/components/webhookeventtype.ts +1 -0
package/bin/mcp-server.js
CHANGED
|
@@ -53651,9 +53651,9 @@ var init_config = __esm(() => {
|
|
|
53651
53651
|
SDK_METADATA = {
|
|
53652
53652
|
language: "typescript",
|
|
53653
53653
|
openapiDocVersion: "v2026.10.00",
|
|
53654
|
-
sdkVersion: "26.10.0-dev.
|
|
53654
|
+
sdkVersion: "26.10.0-dev.5",
|
|
53655
53655
|
genVersion: "2.935.1",
|
|
53656
|
-
userAgent: "speakeasy-sdk/typescript 26.10.0-dev.
|
|
53656
|
+
userAgent: "speakeasy-sdk/typescript 26.10.0-dev.5 2.935.1 v2026.10.00 @moovio/sdk"
|
|
53657
53657
|
};
|
|
53658
53658
|
});
|
|
53659
53659
|
|
|
@@ -62020,7 +62020,8 @@ var init_cardpaymenttransactionstatus = __esm(() => {
|
|
|
62020
62020
|
Canceled: "canceled",
|
|
62021
62021
|
Settled: "settled",
|
|
62022
62022
|
Failed: "failed",
|
|
62023
|
-
Completed: "completed"
|
|
62023
|
+
Completed: "completed",
|
|
62024
|
+
ClearedExternal: "cleared-external"
|
|
62024
62025
|
};
|
|
62025
62026
|
CardPaymentTransactionStatus$inboundSchema = inboundSchema(CardPaymentTransactionStatus);
|
|
62026
62027
|
CardPaymentTransactionStatus$outboundSchema = outboundSchema(CardPaymentTransactionStatus);
|
|
@@ -65493,7 +65494,8 @@ var init_webhookeventtype = __esm(() => {
|
|
|
65493
65494
|
WalletUpdated: "wallet.updated",
|
|
65494
65495
|
WalletTransactionUpdated: "walletTransaction.updated",
|
|
65495
65496
|
BillingStatementCreated: "billingStatement.created",
|
|
65496
|
-
AuthorizationExpiring: "authorization.expiring"
|
|
65497
|
+
AuthorizationExpiring: "authorization.expiring",
|
|
65498
|
+
EventTest: "event.test"
|
|
65497
65499
|
};
|
|
65498
65500
|
WebhookEventType$inboundSchema = inboundSchema(WebhookEventType);
|
|
65499
65501
|
WebhookEventType$outboundSchema = outboundSchema(WebhookEventType);
|
|
@@ -67480,6 +67482,7 @@ var init_issuedcardauthorization = __esm(() => {
|
|
|
67480
67482
|
IssuedCardAuthorization$inboundSchema = objectType({
|
|
67481
67483
|
authorizationID: string4(),
|
|
67482
67484
|
issuedCardID: string4(),
|
|
67485
|
+
lastFourCardNumber: optional3(string4()),
|
|
67483
67486
|
fundingWalletID: string4(),
|
|
67484
67487
|
network: CardIssuingNetwork$inboundSchema,
|
|
67485
67488
|
authorizedAmount: string4(),
|
|
@@ -67491,6 +67494,7 @@ var init_issuedcardauthorization = __esm(() => {
|
|
|
67491
67494
|
IssuedCardAuthorization$outboundSchema = objectType({
|
|
67492
67495
|
authorizationID: stringType(),
|
|
67493
67496
|
issuedCardID: stringType(),
|
|
67497
|
+
lastFourCardNumber: stringType().optional(),
|
|
67494
67498
|
fundingWalletID: stringType(),
|
|
67495
67499
|
network: CardIssuingNetwork$outboundSchema,
|
|
67496
67500
|
authorizedAmount: stringType(),
|
|
@@ -67562,6 +67566,7 @@ var init_issuedcardtransaction = __esm(() => {
|
|
|
67562
67566
|
IssuedCardTransaction$inboundSchema = objectType({
|
|
67563
67567
|
cardTransactionID: string4(),
|
|
67564
67568
|
issuedCardID: string4(),
|
|
67569
|
+
lastFourCardNumber: optional3(string4()),
|
|
67565
67570
|
fundingWalletID: string4(),
|
|
67566
67571
|
amount: string4(),
|
|
67567
67572
|
authorizationID: optional3(string4()),
|
|
@@ -67572,6 +67577,7 @@ var init_issuedcardtransaction = __esm(() => {
|
|
|
67572
67577
|
IssuedCardTransaction$outboundSchema = objectType({
|
|
67573
67578
|
cardTransactionID: stringType(),
|
|
67574
67579
|
issuedCardID: stringType(),
|
|
67580
|
+
lastFourCardNumber: stringType().optional(),
|
|
67575
67581
|
fundingWalletID: stringType(),
|
|
67576
67582
|
amount: stringType(),
|
|
67577
67583
|
authorizationID: stringType().optional(),
|
|
@@ -72444,6 +72450,19 @@ var init_webhookdatadisputeupdated = __esm(() => {
|
|
|
72444
72450
|
});
|
|
72445
72451
|
});
|
|
72446
72452
|
|
|
72453
|
+
// src/models/components/webhookdataeventtest.ts
|
|
72454
|
+
var WebhookDataEventTest$inboundSchema, WebhookDataEventTest$outboundSchema;
|
|
72455
|
+
var init_webhookdataeventtest = __esm(() => {
|
|
72456
|
+
init_v3();
|
|
72457
|
+
init_primitives2();
|
|
72458
|
+
WebhookDataEventTest$inboundSchema = objectType({
|
|
72459
|
+
ping: boolean4()
|
|
72460
|
+
});
|
|
72461
|
+
WebhookDataEventTest$outboundSchema = objectType({
|
|
72462
|
+
ping: booleanType()
|
|
72463
|
+
});
|
|
72464
|
+
});
|
|
72465
|
+
|
|
72447
72466
|
// src/models/components/webhookdatainvoicecreated.ts
|
|
72448
72467
|
var WebhookDataInvoiceCreated$inboundSchema, WebhookDataInvoiceCreated$outboundSchema;
|
|
72449
72468
|
var init_webhookdatainvoicecreated = __esm(() => {
|
|
@@ -72916,6 +72935,7 @@ var init_webhookdata = __esm(() => {
|
|
|
72916
72935
|
init_webhookdatacardautoupdated();
|
|
72917
72936
|
init_webhookdatadisputecreated();
|
|
72918
72937
|
init_webhookdatadisputeupdated();
|
|
72938
|
+
init_webhookdataeventtest();
|
|
72919
72939
|
init_webhookdatainvoicecreated();
|
|
72920
72940
|
init_webhookdatainvoiceupdated();
|
|
72921
72941
|
init_webhookdatanetworkidupdated();
|
|
@@ -72977,7 +72997,8 @@ var init_webhookdata = __esm(() => {
|
|
|
72977
72997
|
WebhookDataAccountCreated$inboundSchema,
|
|
72978
72998
|
WebhookDataAccountUpdated$inboundSchema,
|
|
72979
72999
|
WebhookDataAccountDisconnected$inboundSchema,
|
|
72980
|
-
WebhookDataNetworkIDUpdated$inboundSchema
|
|
73000
|
+
WebhookDataNetworkIDUpdated$inboundSchema,
|
|
73001
|
+
WebhookDataEventTest$inboundSchema
|
|
72981
73002
|
]);
|
|
72982
73003
|
WebhookData$outboundSchema = smartUnion([
|
|
72983
73004
|
WebhookDataDisputeCreated$outboundSchema,
|
|
@@ -73018,7 +73039,8 @@ var init_webhookdata = __esm(() => {
|
|
|
73018
73039
|
WebhookDataAccountCreated$outboundSchema,
|
|
73019
73040
|
WebhookDataAccountUpdated$outboundSchema,
|
|
73020
73041
|
WebhookDataAccountDisconnected$outboundSchema,
|
|
73021
|
-
WebhookDataNetworkIDUpdated$outboundSchema
|
|
73042
|
+
WebhookDataNetworkIDUpdated$outboundSchema,
|
|
73043
|
+
WebhookDataEventTest$outboundSchema
|
|
73022
73044
|
]);
|
|
73023
73045
|
});
|
|
73024
73046
|
|
|
@@ -73717,6 +73739,7 @@ var init_components = __esm(() => {
|
|
|
73717
73739
|
init_webhookdatacardautoupdated();
|
|
73718
73740
|
init_webhookdatadisputecreated();
|
|
73719
73741
|
init_webhookdatadisputeupdated();
|
|
73742
|
+
init_webhookdataeventtest();
|
|
73720
73743
|
init_webhookdatainvoicecreated();
|
|
73721
73744
|
init_webhookdatainvoiceupdated();
|
|
73722
73745
|
init_webhookdatanetworkidupdated();
|
|
@@ -108141,7 +108164,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
108141
108164
|
function createMCPServer(deps) {
|
|
108142
108165
|
const server = new McpServer({
|
|
108143
108166
|
name: "Moov",
|
|
108144
|
-
version: "26.10.0-dev.
|
|
108167
|
+
version: "26.10.0-dev.5"
|
|
108145
108168
|
});
|
|
108146
108169
|
const client = new MoovCore({
|
|
108147
108170
|
security: deps.security,
|
|
@@ -109763,7 +109786,7 @@ var routes = rn({
|
|
|
109763
109786
|
var app = Ve(routes, {
|
|
109764
109787
|
name: "mcp",
|
|
109765
109788
|
versionInfo: {
|
|
109766
|
-
currentVersion: "26.10.0-dev.
|
|
109789
|
+
currentVersion: "26.10.0-dev.5"
|
|
109767
109790
|
}
|
|
109768
109791
|
});
|
|
109769
109792
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -109771,5 +109794,5 @@ export {
|
|
|
109771
109794
|
app
|
|
109772
109795
|
};
|
|
109773
109796
|
|
|
109774
|
-
//# debugId=
|
|
109797
|
+
//# debugId=DE4B46752DA96DD664756E2164756E21
|
|
109775
109798
|
//# sourceMappingURL=mcp-server.js.map
|