@moovio/sdk 25.9.7 → 25.9.8

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.
Files changed (41) hide show
  1. package/bin/mcp-server.js +29 -8
  2. package/bin/mcp-server.js.map +12 -11
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +2 -2
  5. package/lib/config.js +2 -2
  6. package/mcp-server/mcp-server.js +1 -1
  7. package/mcp-server/server.js +1 -1
  8. package/models/components/index.d.ts +1 -0
  9. package/models/components/index.d.ts.map +1 -1
  10. package/models/components/index.js +1 -0
  11. package/models/components/index.js.map +1 -1
  12. package/models/components/issuedcardauthorization.d.ts +5 -0
  13. package/models/components/issuedcardauthorization.d.ts.map +1 -1
  14. package/models/components/issuedcardauthorization.js +2 -0
  15. package/models/components/issuedcardauthorization.js.map +1 -1
  16. package/models/components/issuedcardtransaction.d.ts +5 -0
  17. package/models/components/issuedcardtransaction.d.ts.map +1 -1
  18. package/models/components/issuedcardtransaction.js +2 -0
  19. package/models/components/issuedcardtransaction.js.map +1 -1
  20. package/models/components/webhookdata.d.ts +3 -2
  21. package/models/components/webhookdata.d.ts.map +1 -1
  22. package/models/components/webhookdata.js +3 -0
  23. package/models/components/webhookdata.js.map +1 -1
  24. package/models/components/webhookdataeventtest.d.ts +20 -0
  25. package/models/components/webhookdataeventtest.d.ts.map +1 -0
  26. package/models/components/webhookdataeventtest.js +58 -0
  27. package/models/components/webhookdataeventtest.js.map +1 -0
  28. package/models/components/webhookeventtype.d.ts +1 -0
  29. package/models/components/webhookeventtype.d.ts.map +1 -1
  30. package/models/components/webhookeventtype.js +1 -0
  31. package/models/components/webhookeventtype.js.map +1 -1
  32. package/package.json +1 -1
  33. package/src/lib/config.ts +2 -2
  34. package/src/mcp-server/mcp-server.ts +1 -1
  35. package/src/mcp-server/server.ts +1 -1
  36. package/src/models/components/index.ts +1 -0
  37. package/src/models/components/issuedcardauthorization.ts +7 -0
  38. package/src/models/components/issuedcardtransaction.ts +7 -0
  39. package/src/models/components/webhookdata.ts +12 -2
  40. package/src/models/components/webhookdataeventtest.ts +54 -0
  41. 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: "v2025.07.00",
52977
- sdkVersion: "25.9.7",
52977
+ sdkVersion: "25.9.8",
52978
52978
  genVersion: "2.935.1",
52979
- userAgent: "speakeasy-sdk/typescript 25.9.7 2.935.1 v2025.07.00 @moovio/sdk"
52979
+ userAgent: "speakeasy-sdk/typescript 25.9.8 2.935.1 v2025.07.00 @moovio/sdk"
52980
52980
  };
52981
52981
  });
52982
52982
 
@@ -63021,7 +63021,8 @@ var init_webhookeventtype = __esm(() => {
63021
63021
  WalletUpdated: "wallet.updated",
63022
63022
  WalletTransactionUpdated: "walletTransaction.updated",
63023
63023
  BillingStatementCreated: "billingStatement.created",
63024
- AuthorizationExpiring: "authorization.expiring"
63024
+ AuthorizationExpiring: "authorization.expiring",
63025
+ EventTest: "event.test"
63025
63026
  };
63026
63027
  WebhookEventType$inboundSchema = nativeEnumType(WebhookEventType);
63027
63028
  WebhookEventType$outboundSchema = WebhookEventType$inboundSchema;
@@ -64262,6 +64263,7 @@ var init_issuedcardauthorization = __esm(() => {
64262
64263
  IssuedCardAuthorization$inboundSchema = objectType({
64263
64264
  authorizationID: stringType(),
64264
64265
  issuedCardID: stringType(),
64266
+ lastFourCardNumber: stringType().optional(),
64265
64267
  fundingWalletID: stringType(),
64266
64268
  network: CardIssuingNetwork$inboundSchema,
64267
64269
  authorizedAmount: stringType(),
@@ -64273,6 +64275,7 @@ var init_issuedcardauthorization = __esm(() => {
64273
64275
  IssuedCardAuthorization$outboundSchema = objectType({
64274
64276
  authorizationID: stringType(),
64275
64277
  issuedCardID: stringType(),
64278
+ lastFourCardNumber: stringType().optional(),
64276
64279
  fundingWalletID: stringType(),
64277
64280
  network: CardIssuingNetwork$outboundSchema,
64278
64281
  authorizedAmount: stringType(),
@@ -64342,6 +64345,7 @@ var init_issuedcardtransaction = __esm(() => {
64342
64345
  IssuedCardTransaction$inboundSchema = objectType({
64343
64346
  cardTransactionID: stringType(),
64344
64347
  issuedCardID: stringType(),
64348
+ lastFourCardNumber: stringType().optional(),
64345
64349
  fundingWalletID: stringType(),
64346
64350
  amount: stringType(),
64347
64351
  authorizationID: stringType().optional(),
@@ -64352,6 +64356,7 @@ var init_issuedcardtransaction = __esm(() => {
64352
64356
  IssuedCardTransaction$outboundSchema = objectType({
64353
64357
  cardTransactionID: stringType(),
64354
64358
  issuedCardID: stringType(),
64359
+ lastFourCardNumber: stringType().optional(),
64355
64360
  fundingWalletID: stringType(),
64356
64361
  amount: stringType(),
64357
64362
  authorizationID: stringType().optional(),
@@ -68142,6 +68147,18 @@ var init_webhookdatadisputeupdated = __esm(() => {
68142
68147
  });
68143
68148
  });
68144
68149
 
68150
+ // src/models/components/webhookdataeventtest.ts
68151
+ var WebhookDataEventTest$inboundSchema, WebhookDataEventTest$outboundSchema;
68152
+ var init_webhookdataeventtest = __esm(() => {
68153
+ init_esm();
68154
+ WebhookDataEventTest$inboundSchema = objectType({
68155
+ ping: booleanType()
68156
+ });
68157
+ WebhookDataEventTest$outboundSchema = objectType({
68158
+ ping: booleanType()
68159
+ });
68160
+ });
68161
+
68145
68162
  // src/models/components/webhookdatainvoicecreated.ts
68146
68163
  var WebhookDataInvoiceCreated$inboundSchema, WebhookDataInvoiceCreated$outboundSchema;
68147
68164
  var init_webhookdatainvoicecreated = __esm(() => {
@@ -68589,6 +68606,7 @@ var init_webhookdata = __esm(() => {
68589
68606
  init_webhookdatacardautoupdated();
68590
68607
  init_webhookdatadisputecreated();
68591
68608
  init_webhookdatadisputeupdated();
68609
+ init_webhookdataeventtest();
68592
68610
  init_webhookdatainvoicecreated();
68593
68611
  init_webhookdatainvoiceupdated();
68594
68612
  init_webhookdatanetworkidupdated();
@@ -68649,7 +68667,8 @@ var init_webhookdata = __esm(() => {
68649
68667
  WebhookDataAccountCreated$inboundSchema,
68650
68668
  WebhookDataAccountUpdated$inboundSchema,
68651
68669
  WebhookDataAccountDisconnected$inboundSchema,
68652
- WebhookDataNetworkIDUpdated$inboundSchema
68670
+ WebhookDataNetworkIDUpdated$inboundSchema,
68671
+ WebhookDataEventTest$inboundSchema
68653
68672
  ]);
68654
68673
  WebhookData$outboundSchema = unionType([
68655
68674
  WebhookDataDisputeCreated$outboundSchema,
@@ -68689,7 +68708,8 @@ var init_webhookdata = __esm(() => {
68689
68708
  WebhookDataAccountCreated$outboundSchema,
68690
68709
  WebhookDataAccountUpdated$outboundSchema,
68691
68710
  WebhookDataAccountDisconnected$outboundSchema,
68692
- WebhookDataNetworkIDUpdated$outboundSchema
68711
+ WebhookDataNetworkIDUpdated$outboundSchema,
68712
+ WebhookDataEventTest$outboundSchema
68693
68713
  ]);
68694
68714
  });
68695
68715
 
@@ -69253,6 +69273,7 @@ var init_components = __esm(() => {
69253
69273
  init_webhookdatacardautoupdated();
69254
69274
  init_webhookdatadisputecreated();
69255
69275
  init_webhookdatadisputeupdated();
69276
+ init_webhookdataeventtest();
69256
69277
  init_webhookdatainvoicecreated();
69257
69278
  init_webhookdatainvoiceupdated();
69258
69279
  init_webhookdatanetworkidupdated();
@@ -98703,7 +98724,7 @@ var init_webhooksUpdate2 = __esm(() => {
98703
98724
  function createMCPServer(deps) {
98704
98725
  const server = new McpServer({
98705
98726
  name: "Moov",
98706
- version: "25.9.7"
98727
+ version: "25.9.8"
98707
98728
  });
98708
98729
  const client = new MoovCore({
98709
98730
  security: deps.security,
@@ -100273,7 +100294,7 @@ var routes = rn({
100273
100294
  var app = Ve(routes, {
100274
100295
  name: "mcp",
100275
100296
  versionInfo: {
100276
- currentVersion: "25.9.7"
100297
+ currentVersion: "25.9.8"
100277
100298
  }
100278
100299
  });
100279
100300
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -100281,5 +100302,5 @@ export {
100281
100302
  app
100282
100303
  };
100283
100304
 
100284
- //# debugId=ADFF115F873AC17864756E2164756E21
100305
+ //# debugId=E3142641240D7CDA64756E2164756E21
100285
100306
  //# sourceMappingURL=mcp-server.js.map