@moovio/sdk 24.3.7 → 24.3.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: "v2024.01.00",
52977
- sdkVersion: "24.3.7",
52977
+ sdkVersion: "24.3.8",
52978
52978
  genVersion: "2.935.1",
52979
- userAgent: "speakeasy-sdk/typescript 24.3.7 2.935.1 v2024.01.00 @moovio/sdk"
52979
+ userAgent: "speakeasy-sdk/typescript 24.3.8 2.935.1 v2024.01.00 @moovio/sdk"
52980
52980
  };
52981
52981
  });
52982
52982
 
@@ -62439,7 +62439,8 @@ var init_webhookeventtype = __esm(() => {
62439
62439
  WalletUpdated: "wallet.updated",
62440
62440
  WalletTransactionUpdated: "walletTransaction.updated",
62441
62441
  BillingStatementCreated: "billingStatement.created",
62442
- AuthorizationExpiring: "authorization.expiring"
62442
+ AuthorizationExpiring: "authorization.expiring",
62443
+ EventTest: "event.test"
62443
62444
  };
62444
62445
  WebhookEventType$inboundSchema = nativeEnumType(WebhookEventType);
62445
62446
  WebhookEventType$outboundSchema = WebhookEventType$inboundSchema;
@@ -63665,6 +63666,7 @@ var init_issuedcardauthorization = __esm(() => {
63665
63666
  IssuedCardAuthorization$inboundSchema = objectType({
63666
63667
  authorizationID: stringType(),
63667
63668
  issuedCardID: stringType(),
63669
+ lastFourCardNumber: stringType().optional(),
63668
63670
  fundingWalletID: stringType(),
63669
63671
  network: CardIssuingNetwork$inboundSchema,
63670
63672
  authorizedAmount: stringType(),
@@ -63676,6 +63678,7 @@ var init_issuedcardauthorization = __esm(() => {
63676
63678
  IssuedCardAuthorization$outboundSchema = objectType({
63677
63679
  authorizationID: stringType(),
63678
63680
  issuedCardID: stringType(),
63681
+ lastFourCardNumber: stringType().optional(),
63679
63682
  fundingWalletID: stringType(),
63680
63683
  network: CardIssuingNetwork$outboundSchema,
63681
63684
  authorizedAmount: stringType(),
@@ -63745,6 +63748,7 @@ var init_issuedcardtransaction = __esm(() => {
63745
63748
  IssuedCardTransaction$inboundSchema = objectType({
63746
63749
  cardTransactionID: stringType(),
63747
63750
  issuedCardID: stringType(),
63751
+ lastFourCardNumber: stringType().optional(),
63748
63752
  fundingWalletID: stringType(),
63749
63753
  amount: stringType(),
63750
63754
  authorizationID: stringType().optional(),
@@ -63755,6 +63759,7 @@ var init_issuedcardtransaction = __esm(() => {
63755
63759
  IssuedCardTransaction$outboundSchema = objectType({
63756
63760
  cardTransactionID: stringType(),
63757
63761
  issuedCardID: stringType(),
63762
+ lastFourCardNumber: stringType().optional(),
63758
63763
  fundingWalletID: stringType(),
63759
63764
  amount: stringType(),
63760
63765
  authorizationID: stringType().optional(),
@@ -67104,6 +67109,18 @@ var init_webhookdatadisputeupdated = __esm(() => {
67104
67109
  });
67105
67110
  });
67106
67111
 
67112
+ // src/models/components/webhookdataeventtest.ts
67113
+ var WebhookDataEventTest$inboundSchema, WebhookDataEventTest$outboundSchema;
67114
+ var init_webhookdataeventtest = __esm(() => {
67115
+ init_esm();
67116
+ WebhookDataEventTest$inboundSchema = objectType({
67117
+ ping: booleanType()
67118
+ });
67119
+ WebhookDataEventTest$outboundSchema = objectType({
67120
+ ping: booleanType()
67121
+ });
67122
+ });
67123
+
67107
67124
  // src/models/components/webhookdatainvoicecreated.ts
67108
67125
  var WebhookDataInvoiceCreated$inboundSchema, WebhookDataInvoiceCreated$outboundSchema;
67109
67126
  var init_webhookdatainvoicecreated = __esm(() => {
@@ -67551,6 +67568,7 @@ var init_webhookdata = __esm(() => {
67551
67568
  init_webhookdatacardautoupdated();
67552
67569
  init_webhookdatadisputecreated();
67553
67570
  init_webhookdatadisputeupdated();
67571
+ init_webhookdataeventtest();
67554
67572
  init_webhookdatainvoicecreated();
67555
67573
  init_webhookdatainvoiceupdated();
67556
67574
  init_webhookdatanetworkidupdated();
@@ -67611,7 +67629,8 @@ var init_webhookdata = __esm(() => {
67611
67629
  WebhookDataAccountCreated$inboundSchema,
67612
67630
  WebhookDataAccountUpdated$inboundSchema,
67613
67631
  WebhookDataAccountDisconnected$inboundSchema,
67614
- WebhookDataNetworkIDUpdated$inboundSchema
67632
+ WebhookDataNetworkIDUpdated$inboundSchema,
67633
+ WebhookDataEventTest$inboundSchema
67615
67634
  ]);
67616
67635
  WebhookData$outboundSchema = unionType([
67617
67636
  WebhookDataDisputeCreated$outboundSchema,
@@ -67651,7 +67670,8 @@ var init_webhookdata = __esm(() => {
67651
67670
  WebhookDataAccountCreated$outboundSchema,
67652
67671
  WebhookDataAccountUpdated$outboundSchema,
67653
67672
  WebhookDataAccountDisconnected$outboundSchema,
67654
- WebhookDataNetworkIDUpdated$outboundSchema
67673
+ WebhookDataNetworkIDUpdated$outboundSchema,
67674
+ WebhookDataEventTest$outboundSchema
67655
67675
  ]);
67656
67676
  });
67657
67677
 
@@ -68160,6 +68180,7 @@ var init_components = __esm(() => {
68160
68180
  init_webhookdatacardautoupdated();
68161
68181
  init_webhookdatadisputecreated();
68162
68182
  init_webhookdatadisputeupdated();
68183
+ init_webhookdataeventtest();
68163
68184
  init_webhookdatainvoicecreated();
68164
68185
  init_webhookdatainvoiceupdated();
68165
68186
  init_webhookdatanetworkidupdated();
@@ -96451,7 +96472,7 @@ var init_webhooksUpdate2 = __esm(() => {
96451
96472
  function createMCPServer(deps) {
96452
96473
  const server = new McpServer({
96453
96474
  name: "Moov",
96454
- version: "24.3.7"
96475
+ version: "24.3.8"
96455
96476
  });
96456
96477
  const client = new MoovCore({
96457
96478
  security: deps.security,
@@ -98009,7 +98030,7 @@ var routes = rn({
98009
98030
  var app = Ve(routes, {
98010
98031
  name: "mcp",
98011
98032
  versionInfo: {
98012
- currentVersion: "24.3.7"
98033
+ currentVersion: "24.3.8"
98013
98034
  }
98014
98035
  });
98015
98036
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -98017,5 +98038,5 @@ export {
98017
98038
  app
98018
98039
  };
98019
98040
 
98020
- //# debugId=15B24D643B2568B564756E2164756E21
98041
+ //# debugId=C82E0D657BF8400964756E2164756E21
98021
98042
  //# sourceMappingURL=mcp-server.js.map