@moovio/sdk 26.7.2 → 26.7.3

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 +30 -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 +59 -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 +55 -0
  41. 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.07.00",
53654
- sdkVersion: "26.7.2",
53654
+ sdkVersion: "26.7.3",
53655
53655
  genVersion: "2.935.1",
53656
- userAgent: "speakeasy-sdk/typescript 26.7.2 2.935.1 v2026.07.00 @moovio/sdk"
53656
+ userAgent: "speakeasy-sdk/typescript 26.7.3 2.935.1 v2026.07.00 @moovio/sdk"
53657
53657
  };
53658
53658
  });
53659
53659
 
@@ -64949,7 +64949,8 @@ var init_webhookeventtype = __esm(() => {
64949
64949
  WalletUpdated: "wallet.updated",
64950
64950
  WalletTransactionUpdated: "walletTransaction.updated",
64951
64951
  BillingStatementCreated: "billingStatement.created",
64952
- AuthorizationExpiring: "authorization.expiring"
64952
+ AuthorizationExpiring: "authorization.expiring",
64953
+ EventTest: "event.test"
64953
64954
  };
64954
64955
  WebhookEventType$inboundSchema = inboundSchema(WebhookEventType);
64955
64956
  WebhookEventType$outboundSchema = outboundSchema(WebhookEventType);
@@ -66936,6 +66937,7 @@ var init_issuedcardauthorization = __esm(() => {
66936
66937
  IssuedCardAuthorization$inboundSchema = objectType({
66937
66938
  authorizationID: string4(),
66938
66939
  issuedCardID: string4(),
66940
+ lastFourCardNumber: optional3(string4()),
66939
66941
  fundingWalletID: string4(),
66940
66942
  network: CardIssuingNetwork$inboundSchema,
66941
66943
  authorizedAmount: string4(),
@@ -66947,6 +66949,7 @@ var init_issuedcardauthorization = __esm(() => {
66947
66949
  IssuedCardAuthorization$outboundSchema = objectType({
66948
66950
  authorizationID: stringType(),
66949
66951
  issuedCardID: stringType(),
66952
+ lastFourCardNumber: stringType().optional(),
66950
66953
  fundingWalletID: stringType(),
66951
66954
  network: CardIssuingNetwork$outboundSchema,
66952
66955
  authorizedAmount: stringType(),
@@ -67018,6 +67021,7 @@ var init_issuedcardtransaction = __esm(() => {
67018
67021
  IssuedCardTransaction$inboundSchema = objectType({
67019
67022
  cardTransactionID: string4(),
67020
67023
  issuedCardID: string4(),
67024
+ lastFourCardNumber: optional3(string4()),
67021
67025
  fundingWalletID: string4(),
67022
67026
  amount: string4(),
67023
67027
  authorizationID: optional3(string4()),
@@ -67028,6 +67032,7 @@ var init_issuedcardtransaction = __esm(() => {
67028
67032
  IssuedCardTransaction$outboundSchema = objectType({
67029
67033
  cardTransactionID: stringType(),
67030
67034
  issuedCardID: stringType(),
67035
+ lastFourCardNumber: stringType().optional(),
67031
67036
  fundingWalletID: stringType(),
67032
67037
  amount: stringType(),
67033
67038
  authorizationID: stringType().optional(),
@@ -71817,6 +71822,19 @@ var init_webhookdatadisputeupdated = __esm(() => {
71817
71822
  });
71818
71823
  });
71819
71824
 
71825
+ // src/models/components/webhookdataeventtest.ts
71826
+ var WebhookDataEventTest$inboundSchema, WebhookDataEventTest$outboundSchema;
71827
+ var init_webhookdataeventtest = __esm(() => {
71828
+ init_v3();
71829
+ init_primitives2();
71830
+ WebhookDataEventTest$inboundSchema = objectType({
71831
+ ping: boolean4()
71832
+ });
71833
+ WebhookDataEventTest$outboundSchema = objectType({
71834
+ ping: booleanType()
71835
+ });
71836
+ });
71837
+
71820
71838
  // src/models/components/webhookdatainvoicecreated.ts
71821
71839
  var WebhookDataInvoiceCreated$inboundSchema, WebhookDataInvoiceCreated$outboundSchema;
71822
71840
  var init_webhookdatainvoicecreated = __esm(() => {
@@ -72287,6 +72305,7 @@ var init_webhookdata = __esm(() => {
72287
72305
  init_webhookdatacardautoupdated();
72288
72306
  init_webhookdatadisputecreated();
72289
72307
  init_webhookdatadisputeupdated();
72308
+ init_webhookdataeventtest();
72290
72309
  init_webhookdatainvoicecreated();
72291
72310
  init_webhookdatainvoiceupdated();
72292
72311
  init_webhookdatanetworkidupdated();
@@ -72347,7 +72366,8 @@ var init_webhookdata = __esm(() => {
72347
72366
  WebhookDataAccountCreated$inboundSchema,
72348
72367
  WebhookDataAccountUpdated$inboundSchema,
72349
72368
  WebhookDataAccountDisconnected$inboundSchema,
72350
- WebhookDataNetworkIDUpdated$inboundSchema
72369
+ WebhookDataNetworkIDUpdated$inboundSchema,
72370
+ WebhookDataEventTest$inboundSchema
72351
72371
  ]);
72352
72372
  WebhookData$outboundSchema = smartUnion([
72353
72373
  WebhookDataDisputeCreated$outboundSchema,
@@ -72387,7 +72407,8 @@ var init_webhookdata = __esm(() => {
72387
72407
  WebhookDataAccountCreated$outboundSchema,
72388
72408
  WebhookDataAccountUpdated$outboundSchema,
72389
72409
  WebhookDataAccountDisconnected$outboundSchema,
72390
- WebhookDataNetworkIDUpdated$outboundSchema
72410
+ WebhookDataNetworkIDUpdated$outboundSchema,
72411
+ WebhookDataEventTest$outboundSchema
72391
72412
  ]);
72392
72413
  });
72393
72414
 
@@ -73059,6 +73080,7 @@ var init_components = __esm(() => {
73059
73080
  init_webhookdatacardautoupdated();
73060
73081
  init_webhookdatadisputecreated();
73061
73082
  init_webhookdatadisputeupdated();
73083
+ init_webhookdataeventtest();
73062
73084
  init_webhookdatainvoicecreated();
73063
73085
  init_webhookdatainvoiceupdated();
73064
73086
  init_webhookdatanetworkidupdated();
@@ -106202,7 +106224,7 @@ var init_webhooksUpdate2 = __esm(() => {
106202
106224
  function createMCPServer(deps) {
106203
106225
  const server = new McpServer({
106204
106226
  name: "Moov",
106205
- version: "26.7.2"
106227
+ version: "26.7.3"
106206
106228
  });
106207
106229
  const client = new MoovCore({
106208
106230
  security: deps.security,
@@ -107810,7 +107832,7 @@ var routes = rn({
107810
107832
  var app = Ve(routes, {
107811
107833
  name: "mcp",
107812
107834
  versionInfo: {
107813
- currentVersion: "26.7.2"
107835
+ currentVersion: "26.7.3"
107814
107836
  }
107815
107837
  });
107816
107838
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -107818,5 +107840,5 @@ export {
107818
107840
  app
107819
107841
  };
107820
107842
 
107821
- //# debugId=E07D7EDA54EBEBD664756E2164756E21
107843
+ //# debugId=D3A0D995CDAFE94B64756E2164756E21
107822
107844
  //# sourceMappingURL=mcp-server.js.map