@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);
@@ -0,0 +1,10 @@
1
+ import { Country } from "./country";
2
+ import { Fiat } from "./fiat";
3
+ export interface StaticBankPaymentReference {
4
+ id: string;
5
+ createdAt: Date;
6
+ userId: string;
7
+ country: Country;
8
+ fiat: Fiat;
9
+ reference: string;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2496",
3
+ "version": "1.0.2500",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",