@moovio/sdk 26.5.8 → 26.5.10
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 +14 -13
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- 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/cardtransactionstatus.d.ts +1 -0
- package/models/components/cardtransactionstatus.d.ts.map +1 -1
- package/models/components/cardtransactionstatus.js +1 -0
- package/models/components/cardtransactionstatus.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/refundcardstatus.d.ts +1 -0
- package/models/components/refundcardstatus.d.ts.map +1 -1
- package/models/components/refundcardstatus.js +1 -0
- package/models/components/refundcardstatus.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 +58 -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/cardtransactionstatus.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/refundcardstatus.ts +1 -0
- package/src/models/components/webhookdata.ts +12 -2
- package/src/models/components/webhookdataeventtest.ts +54 -0
- package/src/models/components/webhookeventtype.ts +1 -0
package/bin/mcp-server.js
CHANGED
|
@@ -52974,9 +52974,9 @@ var init_config = __esm(() => {
|
|
|
52974
52974
|
SDK_METADATA = {
|
|
52975
52975
|
language: "typescript",
|
|
52976
52976
|
openapiDocVersion: "v2026.04.00",
|
|
52977
|
-
sdkVersion: "26.5.
|
|
52977
|
+
sdkVersion: "26.5.10",
|
|
52978
52978
|
genVersion: "2.935.1",
|
|
52979
|
-
userAgent: "speakeasy-sdk/typescript 26.5.
|
|
52979
|
+
userAgent: "speakeasy-sdk/typescript 26.5.10 2.935.1 v2026.04.00 @moovio/sdk"
|
|
52980
52980
|
};
|
|
52981
52981
|
});
|
|
52982
52982
|
|
|
@@ -60219,7 +60219,8 @@ var init_refundcardstatus = __esm(() => {
|
|
|
60219
60219
|
Confirmed: "confirmed",
|
|
60220
60220
|
Settled: "settled",
|
|
60221
60221
|
Failed: "failed",
|
|
60222
|
-
Completed: "completed"
|
|
60222
|
+
Completed: "completed",
|
|
60223
|
+
ClearedExternal: "cleared-external"
|
|
60223
60224
|
};
|
|
60224
60225
|
RefundCardStatus$inboundSchema = nativeEnumType(RefundCardStatus);
|
|
60225
60226
|
RefundCardStatus$outboundSchema = RefundCardStatus$inboundSchema;
|
|
@@ -60633,6 +60634,7 @@ var init_cardtransactionstatus = __esm(() => {
|
|
|
60633
60634
|
Settled: "settled",
|
|
60634
60635
|
Failed: "failed",
|
|
60635
60636
|
Completed: "completed",
|
|
60637
|
+
ClearedExternal: "cleared-external",
|
|
60636
60638
|
Deferred: "deferred"
|
|
60637
60639
|
};
|
|
60638
60640
|
CardTransactionStatus$inboundSchema = nativeEnumType(CardTransactionStatus);
|
|
@@ -63424,7 +63426,8 @@ var init_webhookeventtype = __esm(() => {
|
|
|
63424
63426
|
WalletUpdated: "wallet.updated",
|
|
63425
63427
|
WalletTransactionUpdated: "walletTransaction.updated",
|
|
63426
63428
|
BillingStatementCreated: "billingStatement.created",
|
|
63427
|
-
AuthorizationExpiring: "authorization.expiring"
|
|
63429
|
+
AuthorizationExpiring: "authorization.expiring",
|
|
63430
|
+
EventTest: "event.test"
|
|
63428
63431
|
};
|
|
63429
63432
|
WebhookEventType$inboundSchema = nativeEnumType(WebhookEventType);
|
|
63430
63433
|
WebhookEventType$outboundSchema = WebhookEventType$inboundSchema;
|
|
@@ -65124,6 +65127,7 @@ var init_issuedcardauthorization = __esm(() => {
|
|
|
65124
65127
|
IssuedCardAuthorization$inboundSchema = objectType({
|
|
65125
65128
|
authorizationID: stringType(),
|
|
65126
65129
|
issuedCardID: stringType(),
|
|
65130
|
+
lastFourCardNumber: stringType().optional(),
|
|
65127
65131
|
fundingWalletID: stringType(),
|
|
65128
65132
|
network: CardIssuingNetwork$inboundSchema,
|
|
65129
65133
|
authorizedAmount: stringType(),
|
|
@@ -65135,6 +65139,7 @@ var init_issuedcardauthorization = __esm(() => {
|
|
|
65135
65139
|
IssuedCardAuthorization$outboundSchema = objectType({
|
|
65136
65140
|
authorizationID: stringType(),
|
|
65137
65141
|
issuedCardID: stringType(),
|
|
65142
|
+
lastFourCardNumber: stringType().optional(),
|
|
65138
65143
|
fundingWalletID: stringType(),
|
|
65139
65144
|
network: CardIssuingNetwork$outboundSchema,
|
|
65140
65145
|
authorizedAmount: stringType(),
|
|
@@ -65204,6 +65209,7 @@ var init_issuedcardtransaction = __esm(() => {
|
|
|
65204
65209
|
IssuedCardTransaction$inboundSchema = objectType({
|
|
65205
65210
|
cardTransactionID: stringType(),
|
|
65206
65211
|
issuedCardID: stringType(),
|
|
65212
|
+
lastFourCardNumber: stringType().optional(),
|
|
65207
65213
|
fundingWalletID: stringType(),
|
|
65208
65214
|
amount: stringType(),
|
|
65209
65215
|
authorizationID: stringType().optional(),
|
|
@@ -65214,6 +65220,7 @@ var init_issuedcardtransaction = __esm(() => {
|
|
|
65214
65220
|
IssuedCardTransaction$outboundSchema = objectType({
|
|
65215
65221
|
cardTransactionID: stringType(),
|
|
65216
65222
|
issuedCardID: stringType(),
|
|
65223
|
+
lastFourCardNumber: stringType().optional(),
|
|
65217
65224
|
fundingWalletID: stringType(),
|
|
65218
65225
|
amount: stringType(),
|
|
65219
65226
|
authorizationID: stringType().optional(),
|
|
@@ -69406,6 +69413,18 @@ var init_webhookdatadisputeupdated = __esm(() => {
|
|
|
69406
69413
|
});
|
|
69407
69414
|
});
|
|
69408
69415
|
|
|
69416
|
+
// src/models/components/webhookdataeventtest.ts
|
|
69417
|
+
var WebhookDataEventTest$inboundSchema, WebhookDataEventTest$outboundSchema;
|
|
69418
|
+
var init_webhookdataeventtest = __esm(() => {
|
|
69419
|
+
init_esm();
|
|
69420
|
+
WebhookDataEventTest$inboundSchema = objectType({
|
|
69421
|
+
ping: booleanType()
|
|
69422
|
+
});
|
|
69423
|
+
WebhookDataEventTest$outboundSchema = objectType({
|
|
69424
|
+
ping: booleanType()
|
|
69425
|
+
});
|
|
69426
|
+
});
|
|
69427
|
+
|
|
69409
69428
|
// src/models/components/webhookdatainvoicecreated.ts
|
|
69410
69429
|
var WebhookDataInvoiceCreated$inboundSchema, WebhookDataInvoiceCreated$outboundSchema;
|
|
69411
69430
|
var init_webhookdatainvoicecreated = __esm(() => {
|
|
@@ -69853,6 +69872,7 @@ var init_webhookdata = __esm(() => {
|
|
|
69853
69872
|
init_webhookdatacardautoupdated();
|
|
69854
69873
|
init_webhookdatadisputecreated();
|
|
69855
69874
|
init_webhookdatadisputeupdated();
|
|
69875
|
+
init_webhookdataeventtest();
|
|
69856
69876
|
init_webhookdatainvoicecreated();
|
|
69857
69877
|
init_webhookdatainvoiceupdated();
|
|
69858
69878
|
init_webhookdatanetworkidupdated();
|
|
@@ -69913,7 +69933,8 @@ var init_webhookdata = __esm(() => {
|
|
|
69913
69933
|
WebhookDataAccountCreated$inboundSchema,
|
|
69914
69934
|
WebhookDataAccountUpdated$inboundSchema,
|
|
69915
69935
|
WebhookDataAccountDisconnected$inboundSchema,
|
|
69916
|
-
WebhookDataNetworkIDUpdated$inboundSchema
|
|
69936
|
+
WebhookDataNetworkIDUpdated$inboundSchema,
|
|
69937
|
+
WebhookDataEventTest$inboundSchema
|
|
69917
69938
|
]);
|
|
69918
69939
|
WebhookData$outboundSchema = unionType([
|
|
69919
69940
|
WebhookDataDisputeCreated$outboundSchema,
|
|
@@ -69953,7 +69974,8 @@ var init_webhookdata = __esm(() => {
|
|
|
69953
69974
|
WebhookDataAccountCreated$outboundSchema,
|
|
69954
69975
|
WebhookDataAccountUpdated$outboundSchema,
|
|
69955
69976
|
WebhookDataAccountDisconnected$outboundSchema,
|
|
69956
|
-
WebhookDataNetworkIDUpdated$outboundSchema
|
|
69977
|
+
WebhookDataNetworkIDUpdated$outboundSchema,
|
|
69978
|
+
WebhookDataEventTest$outboundSchema
|
|
69957
69979
|
]);
|
|
69958
69980
|
});
|
|
69959
69981
|
|
|
@@ -70580,6 +70602,7 @@ var init_components = __esm(() => {
|
|
|
70580
70602
|
init_webhookdatacardautoupdated();
|
|
70581
70603
|
init_webhookdatadisputecreated();
|
|
70582
70604
|
init_webhookdatadisputeupdated();
|
|
70605
|
+
init_webhookdataeventtest();
|
|
70583
70606
|
init_webhookdatainvoicecreated();
|
|
70584
70607
|
init_webhookdatainvoiceupdated();
|
|
70585
70608
|
init_webhookdatanetworkidupdated();
|
|
@@ -102755,7 +102778,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
102755
102778
|
function createMCPServer(deps) {
|
|
102756
102779
|
const server = new McpServer({
|
|
102757
102780
|
name: "Moov",
|
|
102758
|
-
version: "26.5.
|
|
102781
|
+
version: "26.5.10"
|
|
102759
102782
|
});
|
|
102760
102783
|
const client = new MoovCore({
|
|
102761
102784
|
security: deps.security,
|
|
@@ -104355,7 +104378,7 @@ var routes = rn({
|
|
|
104355
104378
|
var app = Ve(routes, {
|
|
104356
104379
|
name: "mcp",
|
|
104357
104380
|
versionInfo: {
|
|
104358
|
-
currentVersion: "26.5.
|
|
104381
|
+
currentVersion: "26.5.10"
|
|
104359
104382
|
}
|
|
104360
104383
|
});
|
|
104361
104384
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -104363,5 +104386,5 @@ export {
|
|
|
104363
104386
|
app
|
|
104364
104387
|
};
|
|
104365
104388
|
|
|
104366
|
-
//# debugId=
|
|
104389
|
+
//# debugId=6903331D3909D88464756E2164756E21
|
|
104367
104390
|
//# sourceMappingURL=mcp-server.js.map
|