@cuenca-mx/cuenca-js 0.0.14-dev10 → 0.0.14-dev12

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.
@@ -445,6 +445,8 @@ class UserStatus {
445
445
 
446
446
  static Deactivated = new UserStatus('deactivated');
447
447
 
448
+ static InReview = new UserStatus('in_review');
449
+
448
450
  static Fraud = new UserStatus('fraud');
449
451
 
450
452
  static PldBlocked = new UserStatus('pld_blocked');
@@ -454,6 +456,16 @@ class UserStatus {
454
456
  }
455
457
  }
456
458
 
459
+ class UserType {
460
+ static Moral = new UserType('moral');
461
+
462
+ static Physical = new UserType('physical');
463
+
464
+ constructor(value) {
465
+ this.value = value;
466
+ }
467
+ }
468
+
457
469
  class VerificationStatus {
458
470
  static Created = new VerificationStatus('created');
459
471
 
@@ -533,6 +545,7 @@ exports.TrackDataMethod = TrackDataMethod;
533
545
  exports.TransactionStatus = TransactionStatus;
534
546
  exports.TransferNetwork = TransferNetwork;
535
547
  exports.UserStatus = UserStatus;
548
+ exports.UserType = UserType;
536
549
  exports.VerificationStatus = VerificationStatus;
537
550
  exports.VerificationType = VerificationType;
538
551
  exports.WalletTransactionType = WalletTransactionType;
@@ -443,6 +443,8 @@ class UserStatus {
443
443
 
444
444
  static Deactivated = new UserStatus('deactivated');
445
445
 
446
+ static InReview = new UserStatus('in_review');
447
+
446
448
  static Fraud = new UserStatus('fraud');
447
449
 
448
450
  static PldBlocked = new UserStatus('pld_blocked');
@@ -452,6 +454,16 @@ class UserStatus {
452
454
  }
453
455
  }
454
456
 
457
+ class UserType {
458
+ static Moral = new UserType('moral');
459
+
460
+ static Physical = new UserType('physical');
461
+
462
+ constructor(value) {
463
+ this.value = value;
464
+ }
465
+ }
466
+
455
467
  class VerificationStatus {
456
468
  static Created = new VerificationStatus('created');
457
469
 
@@ -501,4 +513,4 @@ const dateToUTC = (date) => {
501
513
  const enumValueFromString = (enumValue, value) =>
502
514
  Object.values(enumValue).find((enumV) => enumV.value === value);
503
515
 
504
- export { AlertStatus as A, BridgeAccountStatus as B, Currency as C, DepositNetwork as D, EntryType as E, FileFormat as F, KYCFileType as K, MLIndicatorLevel as M, Network as N, Phase as P, SourceAlertType as S, TransactionStatus as T, UserStatus as U, VerificationStatus as V, WalletTransactionType as W, MLIndicatorPeriod as a, MLIndicatorType as b, PLDFinterType as c, dateToUTC as d, enumValueFromString as e, BridgeBankAccountStatus as f, BridgeTransactionType as g, CardFundingType as h, CardIssuer as i, CardStatus as j, CardType as k, CardErrorType as l, CardTransactionType as m, CommissionType as n, SavingCategory as o, ServiceProviderCategory as p, SessionType as q, TransferNetwork as r, VerificationType as s, TrackDataMethod as t };
516
+ export { AlertStatus as A, BridgeAccountStatus as B, Currency as C, DepositNetwork as D, EntryType as E, FileFormat as F, KYCFileType as K, MLIndicatorLevel as M, Network as N, Phase as P, SourceAlertType as S, TransactionStatus as T, UserStatus as U, VerificationStatus as V, WalletTransactionType as W, MLIndicatorPeriod as a, MLIndicatorType as b, PLDFinterType as c, dateToUTC as d, enumValueFromString as e, BridgeBankAccountStatus as f, BridgeTransactionType as g, CardFundingType as h, CardIssuer as i, CardStatus as j, CardType as k, CardErrorType as l, CardTransactionType as m, CommissionType as n, SavingCategory as o, ServiceProviderCategory as p, SessionType as q, TransferNetwork as r, VerificationType as s, TrackDataMethod as t, UserType as u };