diff --git a/package-lock.json b/package-lock.json index c3e606d..2f55492 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "binance", - "version": "2.13.6", + "version": "2.13.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "binance", - "version": "2.13.6", + "version": "2.13.7", "license": "MIT", "dependencies": { "axios": "^1.6.2", diff --git a/package.json b/package.json index 74ca625..651eab8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "binance", - "version": "2.13.6", + "version": "2.13.7", "description": "Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests.", "main": "lib/index.js", "types": "lib/index.d.ts", diff --git a/src/types/futures.ts b/src/types/futures.ts index fd6e1a1..87b4b50 100644 --- a/src/types/futures.ts +++ b/src/types/futures.ts @@ -17,6 +17,7 @@ import { SymbolMaxIcebergOrdersFilter, SymbolMaxPositionFilter, SymbolPriceFilter, + SelfTradePreventionMode, } from './shared'; export type FuturesContractType = @@ -106,12 +107,6 @@ export type FuturesOrderType = | 'TAKE_PROFIT_MARKET' | 'TRAILING_STOP_MARKET'; -export type SelfTradePreventionMode = - | 'NONE' - | 'EXPIRE_TAKER' - | 'EXPIRE_MAKER' - | 'EXPIRE_BOTH'; - export type PriceMatchMode = | 'NONE' | 'OPPONENT'