Comparing version 2.2.9 to 2.2.10
@@ -14,2 +14,3 @@ export * from './'; | ||
export * from './util/WsStore'; | ||
export * from './util/usdm'; | ||
export * from './websocket-client'; |
@@ -26,3 +26,4 @@ "use strict"; | ||
__exportStar(require("./util/WsStore"), exports); | ||
__exportStar(require("./util/usdm"), exports); | ||
__exportStar(require("./websocket-client"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -1,2 +0,2 @@ | ||
import { BooleanString, BooleanStringCapitalised, ExchangeFilter, KlineInterval, numberInString, OrderBookRow, OrderResponseType, OrderSide, OrderStatus, OrderTimeInForce, OrderType, RateLimiter, SymbolFilter } from './shared'; | ||
import { BooleanString, BooleanStringCapitalised, ExchangeFilter, KlineInterval, numberInString, OrderBookRow, OrderResponseType, OrderSide, OrderStatus, OrderTimeInForce, OrderType, RateLimiter, SymbolIcebergPartsFilter, SymbolLotSizeFilter, SymbolMarketLotSizeFilter, SymbolMaxIcebergOrdersFilter, SymbolMaxPositionFilter, SymbolPriceFilter } from './shared'; | ||
export declare type FuturesContractType = 'PERPETUAL' | 'CURRENT_MONTH' | 'NEXT_MONTH' | 'CURRENT_QUARTER' | 'NEXT_QUARTER'; | ||
@@ -138,2 +138,21 @@ export interface ContinuousContractKlinesParams { | ||
export declare type ContractStatus = 'PENDING_TRADING' | 'TRADING' | 'PRE_DELIVERING' | 'DELIVERING' | 'DELIVERED' | 'CANCELLED' | 'PRE_SETTLE' | 'SETTLING' | 'CLOSE'; | ||
export interface FuturesSymbolPercentPriceFilter { | ||
filterType: 'PERCENT_PRICE'; | ||
multiplierUp: numberInString; | ||
multiplierDown: numberInString; | ||
multiplierDecimal: numberInString; | ||
} | ||
export interface FuturesSymbolMaxOrdersFilter { | ||
filterType: 'MAX_NUM_ORDERS'; | ||
limit: number; | ||
} | ||
export interface FuturesSymbolMaxAlgoOrdersFilter { | ||
filterType: 'MAX_NUM_ALGO_ORDERS'; | ||
limit: number; | ||
} | ||
export interface FuturesSymbolMinNotionalFilter { | ||
filterType: 'MIN_NOTIONAL'; | ||
notional: numberInString; | ||
} | ||
export declare type FuturesSymbolFilter = SymbolPriceFilter | FuturesSymbolPercentPriceFilter | SymbolLotSizeFilter | FuturesSymbolMinNotionalFilter | SymbolIcebergPartsFilter | SymbolMarketLotSizeFilter | FuturesSymbolMaxOrdersFilter | FuturesSymbolMaxAlgoOrdersFilter | SymbolMaxIcebergOrdersFilter | SymbolMaxPositionFilter; | ||
export interface FuturesSymbolExchangeInfo { | ||
@@ -159,3 +178,3 @@ symbol: string; | ||
triggerProtect: numberInString; | ||
filters: SymbolFilter[]; | ||
filters: FuturesSymbolFilter[]; | ||
OrderType: OrderType[]; | ||
@@ -162,0 +181,0 @@ timeInForce: OrderTimeInForce[]; |
@@ -71,2 +71,3 @@ "use strict"; | ||
'multiplierUp', | ||
'multiplierDecimal', | ||
'newTraderRebateCommission', | ||
@@ -73,0 +74,0 @@ 'notional', |
{ | ||
"name": "binance", | ||
"version": "2.2.9", | ||
"version": "2.2.10", | ||
"description": "Node.js connector for Binance's REST APIs and WebSockets, with TypeScript & integration tests.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
418718
68
7596