binance 2.0.32 → 2.0.33
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/shared.d.ts +4 -1
- package/package.json +1 -1
package/lib/types/shared.d.ts
CHANGED
|
@@ -3,7 +3,10 @@ export declare type ExchangeSymbol = string;
|
|
|
3
3
|
export declare type BooleanString = 'true' | 'false';
|
|
4
4
|
export declare type BooleanStringCapitalised = 'TRUE' | 'FALSE';
|
|
5
5
|
export declare type BinanceBaseUrlKey = 'spot' | 'spot1' | 'spot2' | 'spot3' | 'spot4' | 'usdmtest' | 'usdm' | 'coinm' | 'voptions' | 'voptionstest';
|
|
6
|
-
|
|
6
|
+
/**
|
|
7
|
+
* Time in force. Note: `GTE_GTC` is not officially documented, use at your own risk.
|
|
8
|
+
*/
|
|
9
|
+
export declare type OrderTimeInForce = 'GTC' | 'IOC' | 'FOK' | 'GTE_GTC';
|
|
7
10
|
export declare type StringBoolean = 'TRUE' | 'FALSE';
|
|
8
11
|
export declare type SideEffects = 'MARGIN_BUY' | 'AUTO_REPAY' | 'NO_SIDE_EFFECT';
|
|
9
12
|
/**
|