@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.
- package/build/{data-92aab1cc.cjs → data-e4c28528.cjs} +13 -0
- package/build/{data-7e8b28c6.mjs → data-fa5e8a84.mjs} +13 -1
- package/build/index.cjs +412 -39
- package/build/index.mjs +381 -8
- package/build/requests/index.cjs +3 -2
- package/build/requests/index.mjs +3 -3
- package/build/types/index.cjs +80 -26
- package/build/types/index.mjs +49 -2
- package/build/umd/cuenca.umd.js +1 -1
- package/build/{identities-0e0a6f42.cjs → vulnerableActivity-8f7d19e6.cjs} +388 -194
- package/build/{identities-38d66e33.mjs → vulnerableActivity-e1e6fdf0.mjs} +381 -194
- package/build/{walletTransactionRequest-da986c71.cjs → walletTransactionRequest-7a9ae1a7.cjs} +109 -4
- package/build/{walletTransactionRequest-d05a25a9.mjs → walletTransactionRequest-dcc77215.mjs} +109 -5
- package/package.json +3 -2
|
@@ -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 };
|