@riocrypto/common 1.0.1462 → 1.0.1464

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
@@ -235,6 +235,7 @@ export * from "./types/swap-provider";
235
235
  export * from "./types/swap-origin";
236
236
  export * from "./types/address-verification";
237
237
  export * from "./types/bank-account-verification";
238
+ export * from "./types/multipart-liquidity-order";
238
239
  export * from "./classes/Asset";
239
240
  export * from "./classes/KYCFieldClass";
240
241
  export * from "./classes/KYCFileClass";
package/build/index.js CHANGED
@@ -251,6 +251,7 @@ __exportStar(require("./types/swap-provider"), exports);
251
251
  __exportStar(require("./types/swap-origin"), exports);
252
252
  __exportStar(require("./types/address-verification"), exports);
253
253
  __exportStar(require("./types/bank-account-verification"), exports);
254
+ __exportStar(require("./types/multipart-liquidity-order"), exports);
254
255
  __exportStar(require("./classes/Asset"), exports);
255
256
  __exportStar(require("./classes/KYCFieldClass"), exports);
256
257
  __exportStar(require("./classes/KYCFileClass"), exports);
@@ -16,30 +16,4 @@ var Crypto;
16
16
  Crypto["USDTTron"] = "TRX_USDT_S2UZ";
17
17
  Crypto["SOL"] = "SOL";
18
18
  Crypto["TRON"] = "TRX";
19
- // XLM = "XLM",
20
- // sUSDC = "sUSDC",
21
- // AVAX = "AVAX",
22
- // AVAX = "AVAX",
23
- // AVAXCUSDC = "AVAXCUSDC",
24
- // DAI = "DAI",
25
- // mUSDC = "mUSDC",
26
- // MATIC = "MATIC",
27
- // USDT = "USDT",
28
- // BUSD = "BUSD",
29
- // GUSD = "GUSD",
30
- // PAX = "PAX",
31
- // AAVE = "AAVE",
32
- // COMP = "COMP",
33
- // LINK = "LINK",
34
- // WBTC = "WBTC",
35
- // WETH = "WETH",
36
- // BAT = "BAT",
37
- // CRV = "CRV",
38
- // MKR = "MKR",
39
- // SNX = "SNX",
40
- // UNI = "UNI",
41
- // YFI = "YFI",
42
- // ALGO = "ALGO",
43
- // AUSDC = "AUSDC",
44
- // AUSDT = "AUSDT",
45
19
  })(Crypto = exports.Crypto || (exports.Crypto = {}));
@@ -0,0 +1,10 @@
1
+ import { Fiat } from "./fiat";
2
+ export interface MultipartLiquidityOrderAttrs {
3
+ createdAt: Date;
4
+ destinationCrypto: Crypto;
5
+ originFiat: Fiat;
6
+ amountFiat: number;
7
+ amountCrypto?: number;
8
+ status: "bbvaWithdrawn" | "brexDeposited" | "brexWithdrawn" | "coinbaseDeposited" | "coinbaseTrading" | "coinbaseTraded" | "coinbaseWithdrawn" | "done";
9
+ coinbaseOrderId?: string;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -3,6 +3,7 @@ import { OnboardingStatus } from "./onboarding-status";
3
3
  export interface UserQuery {
4
4
  firstName?: string;
5
5
  lastName?: string;
6
+ search?: string;
6
7
  businessName?: string;
7
8
  onboardingStatus?: OnboardingStatus;
8
9
  brokerId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.1462",
3
+ "version": "1.0.1464",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",