@moovio/sdk 26.4.2 → 26.4.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 (37) hide show
  1. package/bin/mcp-server.js +59 -35
  2. package/bin/mcp-server.js.map +11 -10
  3. package/jsr.json +1 -1
  4. package/lib/config.d.ts +3 -3
  5. package/lib/config.js +3 -3
  6. package/lib/config.js.map +1 -1
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/components/collectionpaymentmethodtype.d.ts +1 -0
  10. package/models/components/collectionpaymentmethodtype.d.ts.map +1 -1
  11. package/models/components/collectionpaymentmethodtype.js +1 -0
  12. package/models/components/collectionpaymentmethodtype.js.map +1 -1
  13. package/models/components/googlepayresponse.d.ts +45 -3
  14. package/models/components/googlepayresponse.d.ts.map +1 -1
  15. package/models/components/googlepayresponse.js +24 -3
  16. package/models/components/googlepayresponse.js.map +1 -1
  17. package/models/components/index.d.ts +1 -0
  18. package/models/components/index.d.ts.map +1 -1
  19. package/models/components/index.js +1 -0
  20. package/models/components/index.js.map +1 -1
  21. package/models/components/rtptransactiondetails.d.ts +45 -0
  22. package/models/components/rtptransactiondetails.d.ts.map +1 -0
  23. package/models/components/rtptransactiondetails.js +75 -0
  24. package/models/components/rtptransactiondetails.js.map +1 -0
  25. package/models/components/transferdestination.d.ts +5 -43
  26. package/models/components/transferdestination.d.ts.map +1 -1
  27. package/models/components/transferdestination.js +4 -36
  28. package/models/components/transferdestination.js.map +1 -1
  29. package/package.json +1 -1
  30. package/src/lib/config.ts +3 -3
  31. package/src/mcp-server/mcp-server.ts +1 -1
  32. package/src/mcp-server/server.ts +1 -1
  33. package/src/models/components/collectionpaymentmethodtype.ts +1 -0
  34. package/src/models/components/googlepayresponse.ts +63 -5
  35. package/src/models/components/index.ts +1 -0
  36. package/src/models/components/rtptransactiondetails.ts +104 -0
  37. package/src/models/components/transferdestination.ts +11 -95
package/bin/mcp-server.js CHANGED
@@ -52879,9 +52879,9 @@ var init_config = __esm(() => {
52879
52879
  SDK_METADATA = {
52880
52880
  language: "typescript",
52881
52881
  openapiDocVersion: "v2026.04.00",
52882
- sdkVersion: "26.4.2",
52883
- genVersion: "2.881.17",
52884
- userAgent: "speakeasy-sdk/typescript 26.4.2 2.881.17 v2026.04.00 @moovio/sdk"
52882
+ sdkVersion: "26.4.4",
52883
+ genVersion: "2.882.0",
52884
+ userAgent: "speakeasy-sdk/typescript 26.4.4 2.882.0 v2026.04.00 @moovio/sdk"
52885
52885
  };
52886
52886
  });
52887
52887
 
@@ -60802,7 +60802,8 @@ var init_collectionpaymentmethodtype = __esm(() => {
60802
60802
  CollectionPaymentMethodType = {
60803
60803
  ApplePay: "apple-pay",
60804
60804
  CardPayment: "card-payment",
60805
- AchDebitCollect: "ach-debit-collect"
60805
+ AchDebitCollect: "ach-debit-collect",
60806
+ GooglePay: "google-pay"
60806
60807
  };
60807
60808
  CollectionPaymentMethodType$inboundSchema = nativeEnumType(CollectionPaymentMethodType);
60808
60809
  CollectionPaymentMethodType$outboundSchema = CollectionPaymentMethodType$inboundSchema;
@@ -61295,24 +61296,39 @@ var init_transferamountdetails = __esm(() => {
61295
61296
  });
61296
61297
 
61297
61298
  // src/models/components/googlepayresponse.ts
61298
- var GooglePayResponse$inboundSchema, GooglePayResponse$outboundSchema;
61299
+ var AuthMethod, AuthMethod$inboundSchema, AuthMethod$outboundSchema, GooglePayResponse$inboundSchema, GooglePayResponse$outboundSchema;
61299
61300
  var init_googlepayresponse = __esm(() => {
61300
61301
  init_esm();
61301
61302
  init_cardbrand();
61302
61303
  init_cardexpiration();
61304
+ init_cardtype();
61305
+ AuthMethod = {
61306
+ PanOnly: "PAN_ONLY",
61307
+ Cryptogram3Ds: "CRYPTOGRAM_3DS"
61308
+ };
61309
+ AuthMethod$inboundSchema = nativeEnumType(AuthMethod);
61310
+ AuthMethod$outboundSchema = AuthMethod$inboundSchema;
61303
61311
  GooglePayResponse$inboundSchema = objectType({
61312
+ tokenID: stringType(),
61304
61313
  brand: CardBrand$inboundSchema,
61305
- cardDetails: stringType(),
61314
+ cardType: CardType$inboundSchema,
61315
+ cardDisplayName: stringType(),
61306
61316
  fingerprint: stringType(),
61307
61317
  expiration: CardExpiration$inboundSchema,
61308
- issuerCountry: stringType().optional()
61318
+ dynamicLastFour: stringType(),
61319
+ issuerCountry: stringType().optional(),
61320
+ authMethod: AuthMethod$inboundSchema.optional()
61309
61321
  });
61310
61322
  GooglePayResponse$outboundSchema = objectType({
61323
+ tokenID: stringType(),
61311
61324
  brand: CardBrand$outboundSchema,
61312
- cardDetails: stringType(),
61325
+ cardType: CardType$outboundSchema,
61326
+ cardDisplayName: stringType(),
61313
61327
  fingerprint: stringType(),
61314
61328
  expiration: CardExpiration$outboundSchema,
61315
- issuerCountry: stringType().optional()
61329
+ dynamicLastFour: stringType(),
61330
+ issuerCountry: stringType().optional(),
61331
+ authMethod: AuthMethod$outboundSchema.optional()
61316
61332
  });
61317
61333
  });
61318
61334
 
@@ -61428,6 +61444,32 @@ var init_rtptransactionstatus = __esm(() => {
61428
61444
  RTPTransactionStatus$outboundSchema = RTPTransactionStatus$inboundSchema;
61429
61445
  });
61430
61446
 
61447
+ // src/models/components/rtptransactiondetails.ts
61448
+ var RTPTransactionDetails$inboundSchema, RTPTransactionDetails$outboundSchema;
61449
+ var init_rtptransactiondetails = __esm(() => {
61450
+ init_esm();
61451
+ init_rtpfailurecode();
61452
+ init_rtptransactionstatus();
61453
+ RTPTransactionDetails$inboundSchema = objectType({
61454
+ status: RTPTransactionStatus$inboundSchema.optional(),
61455
+ networkResponseCode: stringType().optional(),
61456
+ failureCode: RTPFailureCode$inboundSchema.optional(),
61457
+ initiatedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61458
+ completedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61459
+ failedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61460
+ acceptedWithoutPostingOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional()
61461
+ });
61462
+ RTPTransactionDetails$outboundSchema = objectType({
61463
+ status: RTPTransactionStatus$outboundSchema.optional(),
61464
+ networkResponseCode: stringType().optional(),
61465
+ failureCode: RTPFailureCode$outboundSchema.optional(),
61466
+ initiatedOn: dateType().transform((v2) => v2.toISOString()).optional(),
61467
+ completedOn: dateType().transform((v2) => v2.toISOString()).optional(),
61468
+ failedOn: dateType().transform((v2) => v2.toISOString()).optional(),
61469
+ acceptedWithoutPostingOn: dateType().transform((v2) => v2.toISOString()).optional()
61470
+ });
61471
+ });
61472
+
61431
61473
  // src/models/components/transferaccount.ts
61432
61474
  var TransferAccount$inboundSchema, TransferAccount$outboundSchema;
61433
61475
  var init_transferaccount = __esm(() => {
@@ -61501,7 +61543,7 @@ var init_transferpaymentmethodtype = __esm(() => {
61501
61543
  });
61502
61544
 
61503
61545
  // src/models/components/transferdestination.ts
61504
- var RtpDetails$inboundSchema, RtpDetails$outboundSchema, TransferDestination$inboundSchema, TransferDestination$outboundSchema;
61546
+ var TransferDestination$inboundSchema, TransferDestination$outboundSchema;
61505
61547
  var init_transferdestination = __esm(() => {
61506
61548
  init_esm();
61507
61549
  init_achtransactiondetails();
@@ -61509,31 +61551,12 @@ var init_transferdestination = __esm(() => {
61509
61551
  init_cardtransactiondetails();
61510
61552
  init_googlepayresponse();
61511
61553
  init_instantbanktransactiondetails();
61512
- init_rtpfailurecode();
61513
- init_rtptransactionstatus();
61554
+ init_rtptransactiondetails();
61514
61555
  init_transferaccount();
61515
61556
  init_transferpaymentmethodsbankaccount();
61516
61557
  init_transferpaymentmethodscard();
61517
61558
  init_transferpaymentmethodswallet();
61518
61559
  init_transferpaymentmethodtype();
61519
- RtpDetails$inboundSchema = objectType({
61520
- status: RTPTransactionStatus$inboundSchema.optional(),
61521
- networkResponseCode: stringType().optional(),
61522
- failureCode: RTPFailureCode$inboundSchema.optional(),
61523
- initiatedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61524
- completedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61525
- failedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61526
- acceptedWithoutPostingOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional()
61527
- });
61528
- RtpDetails$outboundSchema = objectType({
61529
- status: RTPTransactionStatus$outboundSchema.optional(),
61530
- networkResponseCode: stringType().optional(),
61531
- failureCode: RTPFailureCode$outboundSchema.optional(),
61532
- initiatedOn: dateType().transform((v2) => v2.toISOString()).optional(),
61533
- completedOn: dateType().transform((v2) => v2.toISOString()).optional(),
61534
- failedOn: dateType().transform((v2) => v2.toISOString()).optional(),
61535
- acceptedWithoutPostingOn: dateType().transform((v2) => v2.toISOString()).optional()
61536
- });
61537
61560
  TransferDestination$inboundSchema = objectType({
61538
61561
  paymentMethodID: stringType(),
61539
61562
  paymentMethodType: TransferPaymentMethodType$inboundSchema,
@@ -61545,7 +61568,7 @@ var init_transferdestination = __esm(() => {
61545
61568
  applePay: ApplePayResponse$inboundSchema.optional(),
61546
61569
  googlePay: GooglePayResponse$inboundSchema.optional(),
61547
61570
  cardDetails: CardTransactionDetails$inboundSchema.optional(),
61548
- rtpDetails: lazyType(() => RtpDetails$inboundSchema).optional(),
61571
+ rtpDetails: RTPTransactionDetails$inboundSchema.optional(),
61549
61572
  instantBankDetails: InstantBankTransactionDetails$inboundSchema.optional()
61550
61573
  });
61551
61574
  TransferDestination$outboundSchema = objectType({
@@ -61559,7 +61582,7 @@ var init_transferdestination = __esm(() => {
61559
61582
  applePay: ApplePayResponse$outboundSchema.optional(),
61560
61583
  googlePay: GooglePayResponse$outboundSchema.optional(),
61561
61584
  cardDetails: CardTransactionDetails$outboundSchema.optional(),
61562
- rtpDetails: lazyType(() => RtpDetails$outboundSchema).optional(),
61585
+ rtpDetails: RTPTransactionDetails$outboundSchema.optional(),
61563
61586
  instantBankDetails: InstantBankTransactionDetails$outboundSchema.optional()
61564
61587
  });
61565
61588
  });
@@ -70109,6 +70132,7 @@ var init_components = __esm(() => {
70109
70132
  init_rtpinstitution();
70110
70133
  init_rtprejectioncode();
70111
70134
  init_rtpservices();
70135
+ init_rtptransactiondetails();
70112
70136
  init_rtptransactionstatus();
70113
70137
  init_runtransfer();
70114
70138
  init_scheduledtransferimagemetadata();
@@ -102233,7 +102257,7 @@ var init_webhooksUpdate2 = __esm(() => {
102233
102257
  function createMCPServer(deps) {
102234
102258
  const server = new McpServer({
102235
102259
  name: "Moov",
102236
- version: "26.4.2"
102260
+ version: "26.4.4"
102237
102261
  });
102238
102262
  const client = new MoovCore({
102239
102263
  security: deps.security,
@@ -103820,7 +103844,7 @@ var routes = rn({
103820
103844
  var app = Ve(routes, {
103821
103845
  name: "mcp",
103822
103846
  versionInfo: {
103823
- currentVersion: "26.4.2"
103847
+ currentVersion: "26.4.4"
103824
103848
  }
103825
103849
  });
103826
103850
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -103828,5 +103852,5 @@ export {
103828
103852
  app
103829
103853
  };
103830
103854
 
103831
- //# debugId=B9DFD792F255AA5564756E2164756E21
103855
+ //# debugId=613A51CD3F22849F64756E2164756E21
103832
103856
  //# sourceMappingURL=mcp-server.js.map