@moovio/sdk 25.6.7 → 25.6.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.04.00",
52977
- sdkVersion: "25.6.7",
52977
+ sdkVersion: "25.6.8",
52978
52978
  genVersion: "2.935.1",
52979
- userAgent: "speakeasy-sdk/typescript 25.6.7 2.935.1 v2025.04.00 @moovio/sdk"
52979
+ userAgent: "speakeasy-sdk/typescript 25.6.8 2.935.1 v2025.04.00 @moovio/sdk"
52980
52980
  };
52981
52981
  });
52982
52982
 
@@ -62576,7 +62576,8 @@ var init_webhookeventtype = __esm(() => {
62576
62576
  WalletUpdated: "wallet.updated",
62577
62577
  WalletTransactionUpdated: "walletTransaction.updated",
62578
62578
  BillingStatementCreated: "billingStatement.created",
62579
- AuthorizationExpiring: "authorization.expiring"
62579
+ AuthorizationExpiring: "authorization.expiring",
62580
+ EventTest: "event.test"
62580
62581
  };
62581
62582
  WebhookEventType$inboundSchema = nativeEnumType(WebhookEventType);
62582
62583
  WebhookEventType$outboundSchema = WebhookEventType$inboundSchema;
@@ -63802,6 +63803,7 @@ var init_issuedcardauthorization = __esm(() => {
63802
63803
  IssuedCardAuthorization$inboundSchema = objectType({
63803
63804
  authorizationID: stringType(),
63804
63805
  issuedCardID: stringType(),
63806
+ lastFourCardNumber: stringType().optional(),
63805
63807
  fundingWalletID: stringType(),
63806
63808
  network: CardIssuingNetwork$inboundSchema,
63807
63809
  authorizedAmount: stringType(),
@@ -63813,6 +63815,7 @@ var init_issuedcardauthorization = __esm(() => {
63813
63815
  IssuedCardAuthorization$outboundSchema = objectType({
63814
63816
  authorizationID: stringType(),
63815
63817
  issuedCardID: stringType(),
63818
+ lastFourCardNumber: stringType().optional(),
63816
63819
  fundingWalletID: stringType(),
63817
63820
  network: CardIssuingNetwork$outboundSchema,
63818
63821
  authorizedAmount: stringType(),
@@ -63882,6 +63885,7 @@ var init_issuedcardtransaction = __esm(() => {
63882
63885
  IssuedCardTransaction$inboundSchema = objectType({
63883
63886
  cardTransactionID: stringType(),
63884
63887
  issuedCardID: stringType(),
63888
+ lastFourCardNumber: stringType().optional(),
63885
63889
  fundingWalletID: stringType(),
63886
63890
  amount: stringType(),
63887
63891
  authorizationID: stringType().optional(),
@@ -63892,6 +63896,7 @@ var init_issuedcardtransaction = __esm(() => {
63892
63896
  IssuedCardTransaction$outboundSchema = objectType({
63893
63897
  cardTransactionID: stringType(),
63894
63898
  issuedCardID: stringType(),
63899
+ lastFourCardNumber: stringType().optional(),
63895
63900
  fundingWalletID: stringType(),
63896
63901
  amount: stringType(),
63897
63902
  authorizationID: stringType().optional(),
@@ -67247,6 +67252,18 @@ var init_webhookdatadisputeupdated = __esm(() => {
67247
67252
  });
67248
67253
  });
67249
67254
 
67255
+ // src/models/components/webhookdataeventtest.ts
67256
+ var WebhookDataEventTest$inboundSchema, WebhookDataEventTest$outboundSchema;
67257
+ var init_webhookdataeventtest = __esm(() => {
67258
+ init_esm();
67259
+ WebhookDataEventTest$inboundSchema = objectType({
67260
+ ping: booleanType()
67261
+ });
67262
+ WebhookDataEventTest$outboundSchema = objectType({
67263
+ ping: booleanType()
67264
+ });
67265
+ });
67266
+
67250
67267
  // src/models/components/webhookdatainvoicecreated.ts
67251
67268
  var WebhookDataInvoiceCreated$inboundSchema, WebhookDataInvoiceCreated$outboundSchema;
67252
67269
  var init_webhookdatainvoicecreated = __esm(() => {
@@ -67694,6 +67711,7 @@ var init_webhookdata = __esm(() => {
67694
67711
  init_webhookdatacardautoupdated();
67695
67712
  init_webhookdatadisputecreated();
67696
67713
  init_webhookdatadisputeupdated();
67714
+ init_webhookdataeventtest();
67697
67715
  init_webhookdatainvoicecreated();
67698
67716
  init_webhookdatainvoiceupdated();
67699
67717
  init_webhookdatanetworkidupdated();
@@ -67754,7 +67772,8 @@ var init_webhookdata = __esm(() => {
67754
67772
  WebhookDataAccountCreated$inboundSchema,
67755
67773
  WebhookDataAccountUpdated$inboundSchema,
67756
67774
  WebhookDataAccountDisconnected$inboundSchema,
67757
- WebhookDataNetworkIDUpdated$inboundSchema
67775
+ WebhookDataNetworkIDUpdated$inboundSchema,
67776
+ WebhookDataEventTest$inboundSchema
67758
67777
  ]);
67759
67778
  WebhookData$outboundSchema = unionType([
67760
67779
  WebhookDataDisputeCreated$outboundSchema,
@@ -67794,7 +67813,8 @@ var init_webhookdata = __esm(() => {
67794
67813
  WebhookDataAccountCreated$outboundSchema,
67795
67814
  WebhookDataAccountUpdated$outboundSchema,
67796
67815
  WebhookDataAccountDisconnected$outboundSchema,
67797
- WebhookDataNetworkIDUpdated$outboundSchema
67816
+ WebhookDataNetworkIDUpdated$outboundSchema,
67817
+ WebhookDataEventTest$outboundSchema
67798
67818
  ]);
67799
67819
  });
67800
67820
 
@@ -68309,6 +68329,7 @@ var init_components = __esm(() => {
68309
68329
  init_webhookdatacardautoupdated();
68310
68330
  init_webhookdatadisputecreated();
68311
68331
  init_webhookdatadisputeupdated();
68332
+ init_webhookdataeventtest();
68312
68333
  init_webhookdatainvoicecreated();
68313
68334
  init_webhookdatainvoiceupdated();
68314
68335
  init_webhookdatanetworkidupdated();
@@ -96600,7 +96621,7 @@ var init_webhooksUpdate2 = __esm(() => {
96600
96621
  function createMCPServer(deps) {
96601
96622
  const server = new McpServer({
96602
96623
  name: "Moov",
96603
- version: "25.6.7"
96624
+ version: "25.6.8"
96604
96625
  });
96605
96626
  const client = new MoovCore({
96606
96627
  security: deps.security,
@@ -98158,7 +98179,7 @@ var routes = rn({
98158
98179
  var app = Ve(routes, {
98159
98180
  name: "mcp",
98160
98181
  versionInfo: {
98161
- currentVersion: "25.6.7"
98182
+ currentVersion: "25.6.8"
98162
98183
  }
98163
98184
  });
98164
98185
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -98166,5 +98187,5 @@ export {
98166
98187
  app
98167
98188
  };
98168
98189
 
98169
- //# debugId=E9608886CEDD84B664756E2164756E21
98190
+ //# debugId=FF9358ECB7AE53F864756E2164756E21
98170
98191
  //# sourceMappingURL=mcp-server.js.map