@riocrypto/common 1.0.1932 → 1.0.1933

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
@@ -341,6 +341,8 @@ export * from "./types/external-trading-algorithm-status";
341
341
  export * from "./types/external-trading-algorithm-type";
342
342
  export * from "./types/external-trading-provider";
343
343
  export * from "./types/external-trade-amount-type";
344
+ export * from "./types/auth-dashboard-settings";
345
+ export * from "./types/admin-auth-dashboard-settings";
344
346
  export * from "./classes/KYCFieldClass";
345
347
  export * from "./classes/KYCFileClass";
346
348
  export * from "./classes/CountryAsset";
package/build/index.js CHANGED
@@ -357,6 +357,8 @@ __exportStar(require("./types/external-trading-algorithm-status"), exports);
357
357
  __exportStar(require("./types/external-trading-algorithm-type"), exports);
358
358
  __exportStar(require("./types/external-trading-provider"), exports);
359
359
  __exportStar(require("./types/external-trade-amount-type"), exports);
360
+ __exportStar(require("./types/auth-dashboard-settings"), exports);
361
+ __exportStar(require("./types/admin-auth-dashboard-settings"), exports);
360
362
  __exportStar(require("./classes/KYCFieldClass"), exports);
361
363
  __exportStar(require("./classes/KYCFileClass"), exports);
362
364
  __exportStar(require("./classes/CountryAsset"), exports);
@@ -0,0 +1,4 @@
1
+ export interface AdminAuthDashboardSettings {
2
+ adminAuthId: string;
3
+ hideBackgroundAnimation?: boolean;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ export interface AuthDashboardSettings {
2
+ authId: string;
3
+ hideBackgroundAnimation?: boolean;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -4,7 +4,6 @@ import { Side } from "./side";
4
4
  import { TradingMarket } from "./trading-market";
5
5
  export interface DashboardSettings {
6
6
  userId: string;
7
- hideBackgroundAnimation?: boolean;
8
7
  previousTrade?: {
9
8
  market: TradingMarket;
10
9
  side: Side;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1932",
3
+ "version": "1.0.1933",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",