binance 2.15.7 → 2.15.8

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.
@@ -256,6 +256,7 @@ export interface FundingRateHistory {
256
256
  symbol: string;
257
257
  fundingRate: numberInString;
258
258
  fundingTime: number;
259
+ markPrice: numberInString;
259
260
  }
260
261
  export interface FuturesSymbolOrderBookTicker {
261
262
  symbol: string;
@@ -22,7 +22,7 @@ export type OrderExecutionType = 'NEW' | 'CANCELED' | 'REJECTED' | 'TRADE' | 'EX
22
22
  export type OCOStatus = 'RESPONSE' | 'EXEC_STARTED' | 'ALL_DONE';
23
23
  export type OCOOrderStatus = 'EXECUTING' | 'ALL_DONE' | 'REJECT';
24
24
  export type OrderType = 'LIMIT' | 'LIMIT_MAKER' | 'MARKET' | 'STOP_LOSS' | 'STOP_LOSS_LIMIT' | 'TAKE_PROFIT' | 'TAKE_PROFIT_LIMIT';
25
- export type OrderListOrderType = 'STOP_LOSS_LIMIT' | 'STOP_LOSS' | 'LIMIT_MAKER';
25
+ export type OrderListOrderType = 'STOP_LOSS_LIMIT' | 'STOP_LOSS' | 'LIMIT_MAKER' | 'TAKE_PROFIT' | 'TAKE_PROFIT_LIMIT';
26
26
  export type SelfTradePreventionMode = 'EXPIRE_TAKER' | 'EXPIRE_MAKER' | 'EXPIRE_BOTH' | 'NONE';
27
27
  export interface BasicAssetParam {
28
28
  asset: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "binance",
3
- "version": "2.15.7",
3
+ "version": "2.15.8",
4
4
  "description": "Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",