@moovio/sdk 26.10.0-dev.3 → 26.10.0-dev.4

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.10.00",
53654
- sdkVersion: "26.10.0-dev.3",
53654
+ sdkVersion: "26.10.0-dev.4",
53655
53655
  genVersion: "2.935.1",
53656
- userAgent: "speakeasy-sdk/typescript 26.10.0-dev.3 2.935.1 v2026.10.00 @moovio/sdk"
53656
+ userAgent: "speakeasy-sdk/typescript 26.10.0-dev.4 2.935.1 v2026.10.00 @moovio/sdk"
53657
53657
  };
53658
53658
  });
53659
53659
 
@@ -65493,7 +65493,8 @@ var init_webhookeventtype = __esm(() => {
65493
65493
  WalletUpdated: "wallet.updated",
65494
65494
  WalletTransactionUpdated: "walletTransaction.updated",
65495
65495
  BillingStatementCreated: "billingStatement.created",
65496
- AuthorizationExpiring: "authorization.expiring"
65496
+ AuthorizationExpiring: "authorization.expiring",
65497
+ EventTest: "event.test"
65497
65498
  };
65498
65499
  WebhookEventType$inboundSchema = inboundSchema(WebhookEventType);
65499
65500
  WebhookEventType$outboundSchema = outboundSchema(WebhookEventType);
@@ -67480,6 +67481,7 @@ var init_issuedcardauthorization = __esm(() => {
67480
67481
  IssuedCardAuthorization$inboundSchema = objectType({
67481
67482
  authorizationID: string4(),
67482
67483
  issuedCardID: string4(),
67484
+ lastFourCardNumber: optional3(string4()),
67483
67485
  fundingWalletID: string4(),
67484
67486
  network: CardIssuingNetwork$inboundSchema,
67485
67487
  authorizedAmount: string4(),
@@ -67491,6 +67493,7 @@ var init_issuedcardauthorization = __esm(() => {
67491
67493
  IssuedCardAuthorization$outboundSchema = objectType({
67492
67494
  authorizationID: stringType(),
67493
67495
  issuedCardID: stringType(),
67496
+ lastFourCardNumber: stringType().optional(),
67494
67497
  fundingWalletID: stringType(),
67495
67498
  network: CardIssuingNetwork$outboundSchema,
67496
67499
  authorizedAmount: stringType(),
@@ -67562,6 +67565,7 @@ var init_issuedcardtransaction = __esm(() => {
67562
67565
  IssuedCardTransaction$inboundSchema = objectType({
67563
67566
  cardTransactionID: string4(),
67564
67567
  issuedCardID: string4(),
67568
+ lastFourCardNumber: optional3(string4()),
67565
67569
  fundingWalletID: string4(),
67566
67570
  amount: string4(),
67567
67571
  authorizationID: optional3(string4()),
@@ -67572,6 +67576,7 @@ var init_issuedcardtransaction = __esm(() => {
67572
67576
  IssuedCardTransaction$outboundSchema = objectType({
67573
67577
  cardTransactionID: stringType(),
67574
67578
  issuedCardID: stringType(),
67579
+ lastFourCardNumber: stringType().optional(),
67575
67580
  fundingWalletID: stringType(),
67576
67581
  amount: stringType(),
67577
67582
  authorizationID: stringType().optional(),
@@ -72444,6 +72449,19 @@ var init_webhookdatadisputeupdated = __esm(() => {
72444
72449
  });
72445
72450
  });
72446
72451
 
72452
+ // src/models/components/webhookdataeventtest.ts
72453
+ var WebhookDataEventTest$inboundSchema, WebhookDataEventTest$outboundSchema;
72454
+ var init_webhookdataeventtest = __esm(() => {
72455
+ init_v3();
72456
+ init_primitives2();
72457
+ WebhookDataEventTest$inboundSchema = objectType({
72458
+ ping: boolean4()
72459
+ });
72460
+ WebhookDataEventTest$outboundSchema = objectType({
72461
+ ping: booleanType()
72462
+ });
72463
+ });
72464
+
72447
72465
  // src/models/components/webhookdatainvoicecreated.ts
72448
72466
  var WebhookDataInvoiceCreated$inboundSchema, WebhookDataInvoiceCreated$outboundSchema;
72449
72467
  var init_webhookdatainvoicecreated = __esm(() => {
@@ -72916,6 +72934,7 @@ var init_webhookdata = __esm(() => {
72916
72934
  init_webhookdatacardautoupdated();
72917
72935
  init_webhookdatadisputecreated();
72918
72936
  init_webhookdatadisputeupdated();
72937
+ init_webhookdataeventtest();
72919
72938
  init_webhookdatainvoicecreated();
72920
72939
  init_webhookdatainvoiceupdated();
72921
72940
  init_webhookdatanetworkidupdated();
@@ -72977,7 +72996,8 @@ var init_webhookdata = __esm(() => {
72977
72996
  WebhookDataAccountCreated$inboundSchema,
72978
72997
  WebhookDataAccountUpdated$inboundSchema,
72979
72998
  WebhookDataAccountDisconnected$inboundSchema,
72980
- WebhookDataNetworkIDUpdated$inboundSchema
72999
+ WebhookDataNetworkIDUpdated$inboundSchema,
73000
+ WebhookDataEventTest$inboundSchema
72981
73001
  ]);
72982
73002
  WebhookData$outboundSchema = smartUnion([
72983
73003
  WebhookDataDisputeCreated$outboundSchema,
@@ -73018,7 +73038,8 @@ var init_webhookdata = __esm(() => {
73018
73038
  WebhookDataAccountCreated$outboundSchema,
73019
73039
  WebhookDataAccountUpdated$outboundSchema,
73020
73040
  WebhookDataAccountDisconnected$outboundSchema,
73021
- WebhookDataNetworkIDUpdated$outboundSchema
73041
+ WebhookDataNetworkIDUpdated$outboundSchema,
73042
+ WebhookDataEventTest$outboundSchema
73022
73043
  ]);
73023
73044
  });
73024
73045
 
@@ -73717,6 +73738,7 @@ var init_components = __esm(() => {
73717
73738
  init_webhookdatacardautoupdated();
73718
73739
  init_webhookdatadisputecreated();
73719
73740
  init_webhookdatadisputeupdated();
73741
+ init_webhookdataeventtest();
73720
73742
  init_webhookdatainvoicecreated();
73721
73743
  init_webhookdatainvoiceupdated();
73722
73744
  init_webhookdatanetworkidupdated();
@@ -108141,7 +108163,7 @@ var init_webhooksUpdate2 = __esm(() => {
108141
108163
  function createMCPServer(deps) {
108142
108164
  const server = new McpServer({
108143
108165
  name: "Moov",
108144
- version: "26.10.0-dev.3"
108166
+ version: "26.10.0-dev.4"
108145
108167
  });
108146
108168
  const client = new MoovCore({
108147
108169
  security: deps.security,
@@ -109763,7 +109785,7 @@ var routes = rn({
109763
109785
  var app = Ve(routes, {
109764
109786
  name: "mcp",
109765
109787
  versionInfo: {
109766
- currentVersion: "26.10.0-dev.3"
109788
+ currentVersion: "26.10.0-dev.4"
109767
109789
  }
109768
109790
  });
109769
109791
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -109771,5 +109793,5 @@ export {
109771
109793
  app
109772
109794
  };
109773
109795
 
109774
- //# debugId=D16AA5D5BCEEDD8364756E2164756E21
109796
+ //# debugId=FD74BAF14696034464756E2164756E21
109775
109797
  //# sourceMappingURL=mcp-server.js.map