@riocrypto/common 1.0.2496 → 1.0.2500
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/index.d.ts
CHANGED
|
@@ -472,6 +472,7 @@ export * from "./types/liquidity-sourcing-exclusion";
|
|
|
472
472
|
export * from "./types/liquidity-sourcing-exclusion-type";
|
|
473
473
|
export * from "./types/liquidity-sourcing-settings";
|
|
474
474
|
export * from "./types/stablecoin-type";
|
|
475
|
+
export * from "./types/static-bank-payment-reference";
|
|
475
476
|
export * from "./helpers/get-stablecoin-type";
|
|
476
477
|
export * from "./helpers/is-usd-backed-crypto";
|
|
477
478
|
export * from "./helpers/is-eur-backed-crypto";
|
package/build/index.js
CHANGED
|
@@ -488,6 +488,7 @@ __exportStar(require("./types/liquidity-sourcing-exclusion"), exports);
|
|
|
488
488
|
__exportStar(require("./types/liquidity-sourcing-exclusion-type"), exports);
|
|
489
489
|
__exportStar(require("./types/liquidity-sourcing-settings"), exports);
|
|
490
490
|
__exportStar(require("./types/stablecoin-type"), exports);
|
|
491
|
+
__exportStar(require("./types/static-bank-payment-reference"), exports);
|
|
491
492
|
__exportStar(require("./helpers/get-stablecoin-type"), exports);
|
|
492
493
|
__exportStar(require("./helpers/is-usd-backed-crypto"), exports);
|
|
493
494
|
__exportStar(require("./helpers/is-eur-backed-crypto"), exports);
|
|
@@ -34,5 +34,6 @@ export declare enum UserAttribute {
|
|
|
34
34
|
NoAfterHoursMarkupForMXNQuotes = "noAfterHoursMarkupForMXNQuotes",
|
|
35
35
|
NoAfterHoursMarkupForPENQuotes = "noAfterHoursMarkupForPENQuotes",
|
|
36
36
|
CanRequestEmergencySupport = "canRequestEmergencySupport",
|
|
37
|
-
CanSkipAdvancedVerificationsForBankAccounts = "canSkipAdvancedVerificationsForBankAccounts"
|
|
37
|
+
CanSkipAdvancedVerificationsForBankAccounts = "canSkipAdvancedVerificationsForBankAccounts",
|
|
38
|
+
NoUSDTHarmonizing = "NoUSDTHarmonizing"
|
|
38
39
|
}
|
|
@@ -39,4 +39,5 @@ var UserAttribute;
|
|
|
39
39
|
UserAttribute["NoAfterHoursMarkupForPENQuotes"] = "noAfterHoursMarkupForPENQuotes";
|
|
40
40
|
UserAttribute["CanRequestEmergencySupport"] = "canRequestEmergencySupport";
|
|
41
41
|
UserAttribute["CanSkipAdvancedVerificationsForBankAccounts"] = "canSkipAdvancedVerificationsForBankAccounts";
|
|
42
|
+
UserAttribute["NoUSDTHarmonizing"] = "NoUSDTHarmonizing";
|
|
42
43
|
})(UserAttribute = exports.UserAttribute || (exports.UserAttribute = {}));
|