@moovio/sdk 26.3.7 → 26.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: "v2026.01.00",
52977
- sdkVersion: "26.3.7",
52977
+ sdkVersion: "26.3.8",
52978
52978
  genVersion: "2.935.1",
52979
- userAgent: "speakeasy-sdk/typescript 26.3.7 2.935.1 v2026.01.00 @moovio/sdk"
52979
+ userAgent: "speakeasy-sdk/typescript 26.3.8 2.935.1 v2026.01.00 @moovio/sdk"
52980
52980
  };
52981
52981
  });
52982
52982
 
@@ -63023,7 +63023,8 @@ var init_webhookeventtype = __esm(() => {
63023
63023
  WalletUpdated: "wallet.updated",
63024
63024
  WalletTransactionUpdated: "walletTransaction.updated",
63025
63025
  BillingStatementCreated: "billingStatement.created",
63026
- AuthorizationExpiring: "authorization.expiring"
63026
+ AuthorizationExpiring: "authorization.expiring",
63027
+ EventTest: "event.test"
63027
63028
  };
63028
63029
  WebhookEventType$inboundSchema = nativeEnumType(WebhookEventType);
63029
63030
  WebhookEventType$outboundSchema = WebhookEventType$inboundSchema;
@@ -64298,6 +64299,7 @@ var init_issuedcardauthorization = __esm(() => {
64298
64299
  IssuedCardAuthorization$inboundSchema = objectType({
64299
64300
  authorizationID: stringType(),
64300
64301
  issuedCardID: stringType(),
64302
+ lastFourCardNumber: stringType().optional(),
64301
64303
  fundingWalletID: stringType(),
64302
64304
  network: CardIssuingNetwork$inboundSchema,
64303
64305
  authorizedAmount: stringType(),
@@ -64309,6 +64311,7 @@ var init_issuedcardauthorization = __esm(() => {
64309
64311
  IssuedCardAuthorization$outboundSchema = objectType({
64310
64312
  authorizationID: stringType(),
64311
64313
  issuedCardID: stringType(),
64314
+ lastFourCardNumber: stringType().optional(),
64312
64315
  fundingWalletID: stringType(),
64313
64316
  network: CardIssuingNetwork$outboundSchema,
64314
64317
  authorizedAmount: stringType(),
@@ -64378,6 +64381,7 @@ var init_issuedcardtransaction = __esm(() => {
64378
64381
  IssuedCardTransaction$inboundSchema = objectType({
64379
64382
  cardTransactionID: stringType(),
64380
64383
  issuedCardID: stringType(),
64384
+ lastFourCardNumber: stringType().optional(),
64381
64385
  fundingWalletID: stringType(),
64382
64386
  amount: stringType(),
64383
64387
  authorizationID: stringType().optional(),
@@ -64388,6 +64392,7 @@ var init_issuedcardtransaction = __esm(() => {
64388
64392
  IssuedCardTransaction$outboundSchema = objectType({
64389
64393
  cardTransactionID: stringType(),
64390
64394
  issuedCardID: stringType(),
64395
+ lastFourCardNumber: stringType().optional(),
64391
64396
  fundingWalletID: stringType(),
64392
64397
  amount: stringType(),
64393
64398
  authorizationID: stringType().optional(),
@@ -68184,6 +68189,18 @@ var init_webhookdatadisputeupdated = __esm(() => {
68184
68189
  });
68185
68190
  });
68186
68191
 
68192
+ // src/models/components/webhookdataeventtest.ts
68193
+ var WebhookDataEventTest$inboundSchema, WebhookDataEventTest$outboundSchema;
68194
+ var init_webhookdataeventtest = __esm(() => {
68195
+ init_esm();
68196
+ WebhookDataEventTest$inboundSchema = objectType({
68197
+ ping: booleanType()
68198
+ });
68199
+ WebhookDataEventTest$outboundSchema = objectType({
68200
+ ping: booleanType()
68201
+ });
68202
+ });
68203
+
68187
68204
  // src/models/components/webhookdatainvoicecreated.ts
68188
68205
  var WebhookDataInvoiceCreated$inboundSchema, WebhookDataInvoiceCreated$outboundSchema;
68189
68206
  var init_webhookdatainvoicecreated = __esm(() => {
@@ -68631,6 +68648,7 @@ var init_webhookdata = __esm(() => {
68631
68648
  init_webhookdatacardautoupdated();
68632
68649
  init_webhookdatadisputecreated();
68633
68650
  init_webhookdatadisputeupdated();
68651
+ init_webhookdataeventtest();
68634
68652
  init_webhookdatainvoicecreated();
68635
68653
  init_webhookdatainvoiceupdated();
68636
68654
  init_webhookdatanetworkidupdated();
@@ -68691,7 +68709,8 @@ var init_webhookdata = __esm(() => {
68691
68709
  WebhookDataAccountCreated$inboundSchema,
68692
68710
  WebhookDataAccountUpdated$inboundSchema,
68693
68711
  WebhookDataAccountDisconnected$inboundSchema,
68694
- WebhookDataNetworkIDUpdated$inboundSchema
68712
+ WebhookDataNetworkIDUpdated$inboundSchema,
68713
+ WebhookDataEventTest$inboundSchema
68695
68714
  ]);
68696
68715
  WebhookData$outboundSchema = unionType([
68697
68716
  WebhookDataDisputeCreated$outboundSchema,
@@ -68731,7 +68750,8 @@ var init_webhookdata = __esm(() => {
68731
68750
  WebhookDataAccountCreated$outboundSchema,
68732
68751
  WebhookDataAccountUpdated$outboundSchema,
68733
68752
  WebhookDataAccountDisconnected$outboundSchema,
68734
- WebhookDataNetworkIDUpdated$outboundSchema
68753
+ WebhookDataNetworkIDUpdated$outboundSchema,
68754
+ WebhookDataEventTest$outboundSchema
68735
68755
  ]);
68736
68756
  });
68737
68757
 
@@ -69297,6 +69317,7 @@ var init_components = __esm(() => {
69297
69317
  init_webhookdatacardautoupdated();
69298
69318
  init_webhookdatadisputecreated();
69299
69319
  init_webhookdatadisputeupdated();
69320
+ init_webhookdataeventtest();
69300
69321
  init_webhookdatainvoicecreated();
69301
69322
  init_webhookdatainvoiceupdated();
69302
69323
  init_webhookdatanetworkidupdated();
@@ -98747,7 +98768,7 @@ var init_webhooksUpdate2 = __esm(() => {
98747
98768
  function createMCPServer(deps) {
98748
98769
  const server = new McpServer({
98749
98770
  name: "Moov",
98750
- version: "26.3.7"
98771
+ version: "26.3.8"
98751
98772
  });
98752
98773
  const client = new MoovCore({
98753
98774
  security: deps.security,
@@ -100317,7 +100338,7 @@ var routes = rn({
100317
100338
  var app = Ve(routes, {
100318
100339
  name: "mcp",
100319
100340
  versionInfo: {
100320
- currentVersion: "26.3.7"
100341
+ currentVersion: "26.3.8"
100321
100342
  }
100322
100343
  });
100323
100344
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -100325,5 +100346,5 @@ export {
100325
100346
  app
100326
100347
  };
100327
100348
 
100328
- //# debugId=FF2580ABD5C928C564756E2164756E21
100349
+ //# debugId=3D7C526B7F21306D64756E2164756E21
100329
100350
  //# sourceMappingURL=mcp-server.js.map