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.
- package/lib/types/futures.d.ts +1 -0
- package/lib/types/shared.d.ts +1 -1
- package/package.json +1 -1
package/lib/types/futures.d.ts
CHANGED
package/lib/types/shared.d.ts
CHANGED
|
@@ -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