@moovio/sdk 26.4.3 → 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 (31) hide show
  1. package/bin/mcp-server.js +56 -33
  2. package/bin/mcp-server.js.map +10 -9
  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/googlepayresponse.d.ts +45 -3
  9. package/models/components/googlepayresponse.d.ts.map +1 -1
  10. package/models/components/googlepayresponse.js +24 -3
  11. package/models/components/googlepayresponse.js.map +1 -1
  12. package/models/components/index.d.ts +1 -0
  13. package/models/components/index.d.ts.map +1 -1
  14. package/models/components/index.js +1 -0
  15. package/models/components/index.js.map +1 -1
  16. package/models/components/rtptransactiondetails.d.ts +45 -0
  17. package/models/components/rtptransactiondetails.d.ts.map +1 -0
  18. package/models/components/rtptransactiondetails.js +75 -0
  19. package/models/components/rtptransactiondetails.js.map +1 -0
  20. package/models/components/transferdestination.d.ts +5 -43
  21. package/models/components/transferdestination.d.ts.map +1 -1
  22. package/models/components/transferdestination.js +4 -36
  23. package/models/components/transferdestination.js.map +1 -1
  24. package/package.json +1 -1
  25. package/src/lib/config.ts +2 -2
  26. package/src/mcp-server/mcp-server.ts +1 -1
  27. package/src/mcp-server/server.ts +1 -1
  28. package/src/models/components/googlepayresponse.ts +63 -5
  29. package/src/models/components/index.ts +1 -0
  30. package/src/models/components/rtptransactiondetails.ts +104 -0
  31. 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.3",
52882
+ sdkVersion: "26.4.4",
52883
52883
  genVersion: "2.882.0",
52884
- userAgent: "speakeasy-sdk/typescript 26.4.3 2.882.0 v2026.04.00 @moovio/sdk"
52884
+ userAgent: "speakeasy-sdk/typescript 26.4.4 2.882.0 v2026.04.00 @moovio/sdk"
52885
52885
  };
52886
52886
  });
52887
52887
 
@@ -61296,24 +61296,39 @@ var init_transferamountdetails = __esm(() => {
61296
61296
  });
61297
61297
 
61298
61298
  // src/models/components/googlepayresponse.ts
61299
- var GooglePayResponse$inboundSchema, GooglePayResponse$outboundSchema;
61299
+ var AuthMethod, AuthMethod$inboundSchema, AuthMethod$outboundSchema, GooglePayResponse$inboundSchema, GooglePayResponse$outboundSchema;
61300
61300
  var init_googlepayresponse = __esm(() => {
61301
61301
  init_esm();
61302
61302
  init_cardbrand();
61303
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;
61304
61311
  GooglePayResponse$inboundSchema = objectType({
61312
+ tokenID: stringType(),
61305
61313
  brand: CardBrand$inboundSchema,
61306
- cardDetails: stringType(),
61314
+ cardType: CardType$inboundSchema,
61315
+ cardDisplayName: stringType(),
61307
61316
  fingerprint: stringType(),
61308
61317
  expiration: CardExpiration$inboundSchema,
61309
- issuerCountry: stringType().optional()
61318
+ dynamicLastFour: stringType(),
61319
+ issuerCountry: stringType().optional(),
61320
+ authMethod: AuthMethod$inboundSchema.optional()
61310
61321
  });
61311
61322
  GooglePayResponse$outboundSchema = objectType({
61323
+ tokenID: stringType(),
61312
61324
  brand: CardBrand$outboundSchema,
61313
- cardDetails: stringType(),
61325
+ cardType: CardType$outboundSchema,
61326
+ cardDisplayName: stringType(),
61314
61327
  fingerprint: stringType(),
61315
61328
  expiration: CardExpiration$outboundSchema,
61316
- issuerCountry: stringType().optional()
61329
+ dynamicLastFour: stringType(),
61330
+ issuerCountry: stringType().optional(),
61331
+ authMethod: AuthMethod$outboundSchema.optional()
61317
61332
  });
61318
61333
  });
61319
61334
 
@@ -61429,6 +61444,32 @@ var init_rtptransactionstatus = __esm(() => {
61429
61444
  RTPTransactionStatus$outboundSchema = RTPTransactionStatus$inboundSchema;
61430
61445
  });
61431
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
+
61432
61473
  // src/models/components/transferaccount.ts
61433
61474
  var TransferAccount$inboundSchema, TransferAccount$outboundSchema;
61434
61475
  var init_transferaccount = __esm(() => {
@@ -61502,7 +61543,7 @@ var init_transferpaymentmethodtype = __esm(() => {
61502
61543
  });
61503
61544
 
61504
61545
  // src/models/components/transferdestination.ts
61505
- var RtpDetails$inboundSchema, RtpDetails$outboundSchema, TransferDestination$inboundSchema, TransferDestination$outboundSchema;
61546
+ var TransferDestination$inboundSchema, TransferDestination$outboundSchema;
61506
61547
  var init_transferdestination = __esm(() => {
61507
61548
  init_esm();
61508
61549
  init_achtransactiondetails();
@@ -61510,31 +61551,12 @@ var init_transferdestination = __esm(() => {
61510
61551
  init_cardtransactiondetails();
61511
61552
  init_googlepayresponse();
61512
61553
  init_instantbanktransactiondetails();
61513
- init_rtpfailurecode();
61514
- init_rtptransactionstatus();
61554
+ init_rtptransactiondetails();
61515
61555
  init_transferaccount();
61516
61556
  init_transferpaymentmethodsbankaccount();
61517
61557
  init_transferpaymentmethodscard();
61518
61558
  init_transferpaymentmethodswallet();
61519
61559
  init_transferpaymentmethodtype();
61520
- RtpDetails$inboundSchema = objectType({
61521
- status: RTPTransactionStatus$inboundSchema.optional(),
61522
- networkResponseCode: stringType().optional(),
61523
- failureCode: RTPFailureCode$inboundSchema.optional(),
61524
- initiatedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61525
- completedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61526
- failedOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
61527
- acceptedWithoutPostingOn: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional()
61528
- });
61529
- RtpDetails$outboundSchema = objectType({
61530
- status: RTPTransactionStatus$outboundSchema.optional(),
61531
- networkResponseCode: stringType().optional(),
61532
- failureCode: RTPFailureCode$outboundSchema.optional(),
61533
- initiatedOn: dateType().transform((v2) => v2.toISOString()).optional(),
61534
- completedOn: dateType().transform((v2) => v2.toISOString()).optional(),
61535
- failedOn: dateType().transform((v2) => v2.toISOString()).optional(),
61536
- acceptedWithoutPostingOn: dateType().transform((v2) => v2.toISOString()).optional()
61537
- });
61538
61560
  TransferDestination$inboundSchema = objectType({
61539
61561
  paymentMethodID: stringType(),
61540
61562
  paymentMethodType: TransferPaymentMethodType$inboundSchema,
@@ -61546,7 +61568,7 @@ var init_transferdestination = __esm(() => {
61546
61568
  applePay: ApplePayResponse$inboundSchema.optional(),
61547
61569
  googlePay: GooglePayResponse$inboundSchema.optional(),
61548
61570
  cardDetails: CardTransactionDetails$inboundSchema.optional(),
61549
- rtpDetails: lazyType(() => RtpDetails$inboundSchema).optional(),
61571
+ rtpDetails: RTPTransactionDetails$inboundSchema.optional(),
61550
61572
  instantBankDetails: InstantBankTransactionDetails$inboundSchema.optional()
61551
61573
  });
61552
61574
  TransferDestination$outboundSchema = objectType({
@@ -61560,7 +61582,7 @@ var init_transferdestination = __esm(() => {
61560
61582
  applePay: ApplePayResponse$outboundSchema.optional(),
61561
61583
  googlePay: GooglePayResponse$outboundSchema.optional(),
61562
61584
  cardDetails: CardTransactionDetails$outboundSchema.optional(),
61563
- rtpDetails: lazyType(() => RtpDetails$outboundSchema).optional(),
61585
+ rtpDetails: RTPTransactionDetails$outboundSchema.optional(),
61564
61586
  instantBankDetails: InstantBankTransactionDetails$outboundSchema.optional()
61565
61587
  });
61566
61588
  });
@@ -70110,6 +70132,7 @@ var init_components = __esm(() => {
70110
70132
  init_rtpinstitution();
70111
70133
  init_rtprejectioncode();
70112
70134
  init_rtpservices();
70135
+ init_rtptransactiondetails();
70113
70136
  init_rtptransactionstatus();
70114
70137
  init_runtransfer();
70115
70138
  init_scheduledtransferimagemetadata();
@@ -102234,7 +102257,7 @@ var init_webhooksUpdate2 = __esm(() => {
102234
102257
  function createMCPServer(deps) {
102235
102258
  const server = new McpServer({
102236
102259
  name: "Moov",
102237
- version: "26.4.3"
102260
+ version: "26.4.4"
102238
102261
  });
102239
102262
  const client = new MoovCore({
102240
102263
  security: deps.security,
@@ -103821,7 +103844,7 @@ var routes = rn({
103821
103844
  var app = Ve(routes, {
103822
103845
  name: "mcp",
103823
103846
  versionInfo: {
103824
- currentVersion: "26.4.3"
103847
+ currentVersion: "26.4.4"
103825
103848
  }
103826
103849
  });
103827
103850
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -103829,5 +103852,5 @@ export {
103829
103852
  app
103830
103853
  };
103831
103854
 
103832
- //# debugId=41836995C36E479064756E2164756E21
103855
+ //# debugId=613A51CD3F22849F64756E2164756E21
103833
103856
  //# sourceMappingURL=mcp-server.js.map