@riocrypto/common 1.0.2525 → 1.0.2527

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.
@@ -18,6 +18,7 @@ export interface BinanceRFQOrder {
18
18
  bidQuantity: number | null;
19
19
  offerPrice: number | null;
20
20
  offerQuantity: number | null;
21
+ rioOrderId: string | null;
21
22
  createdAt: Date;
22
23
  updatedAt: Date;
23
24
  }
@@ -5,6 +5,7 @@ export interface BinanceRFQQuote {
5
5
  rfqId: string;
6
6
  quoteId: string;
7
7
  clientQuoteId: string;
8
+ binanceRFQOrderId: string;
8
9
  baseAsset: string;
9
10
  quoteAsset: string;
10
11
  side: BinanceRFQSide;
@@ -4,6 +4,7 @@ export interface BinanceRFQTrade {
4
4
  rfqId: string;
5
5
  quoteId: string;
6
6
  tradeId: string;
7
+ binanceRFQOrderId: string;
7
8
  executedPrice: number;
8
9
  executedQty: number;
9
10
  tradeStatus: BinanceRFQTradeStatus;
@@ -149,5 +149,6 @@ export interface Order {
149
149
  sessionId: string;
150
150
  settlementId: string;
151
151
  };
152
+ binanceRFQOrderId?: string;
152
153
  version: number;
153
154
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riocrypto/common",
3
- "version": "1.0.2525",
3
+ "version": "1.0.2527",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",