@riocrypto/common 1.0.2468 → 1.0.2470

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
@@ -458,6 +458,7 @@ export * from "./types/liquidity-sourcing-step-type";
458
458
  export * from "./types/liquidity-sourcing-step-status";
459
459
  export * from "./types/liquidity-sourcing-exclusion";
460
460
  export * from "./types/liquidity-sourcing-exclusion-type";
461
+ export * from "./types/liquidity-sourcing-settings";
461
462
  export * from "./classes/KYCFieldClass";
462
463
  export * from "./classes/KYCFileClass";
463
464
  export * from "./classes/CountryAsset";
package/build/index.js CHANGED
@@ -474,6 +474,7 @@ __exportStar(require("./types/liquidity-sourcing-step-type"), exports);
474
474
  __exportStar(require("./types/liquidity-sourcing-step-status"), exports);
475
475
  __exportStar(require("./types/liquidity-sourcing-exclusion"), exports);
476
476
  __exportStar(require("./types/liquidity-sourcing-exclusion-type"), exports);
477
+ __exportStar(require("./types/liquidity-sourcing-settings"), exports);
477
478
  __exportStar(require("./classes/KYCFieldClass"), exports);
478
479
  __exportStar(require("./classes/KYCFileClass"), exports);
479
480
  __exportStar(require("./classes/CountryAsset"), exports);
@@ -0,0 +1,7 @@
1
+ export interface LiquiditySourcingSettings {
2
+ id: string;
3
+ mxnEnabled: boolean;
4
+ usdcEnabled: boolean;
5
+ usdtEnabled: boolean;
6
+ updatedAt: Date;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2468",
3
+ "version": "1.0.2470",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",