binance 2.8.5 → 2.8.6

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.
@@ -124,7 +124,7 @@ export interface NewOCOParams {
124
124
  limitStrategyType?: number;
125
125
  price: number;
126
126
  limitIcebergQty?: number;
127
- trailingdelta?: number;
127
+ trailingDelta?: number;
128
128
  stopClientOrderId?: string;
129
129
  stopPrice: number;
130
130
  stopStrategyId?: number;
@@ -315,6 +315,7 @@ export interface NewSpotOrderParams {
315
315
  price?: number;
316
316
  newClientOrderId?: string;
317
317
  stopPrice?: number;
318
+ trailingDelta?: number;
318
319
  icebergQty?: number;
319
320
  newOrderRespType?: OrderResponseType;
320
321
  isIsolated?: StringBoolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "binance",
3
- "version": "2.8.5",
3
+ "version": "2.8.6",
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",
@@ -29,7 +29,8 @@
29
29
  "Gavy Aggarwal (http://gavyaggarwal.com/)",
30
30
  "Tony Pettigrew (https://github.com/NeverEnder4)",
31
31
  "Chris <apexearth@gmail.com> (https://github.com/apexearth)",
32
- "Bruno Lobo <me@brunolobo.xyz> (https://brunolobo.xyz)"
32
+ "Bruno Lobo <me@brunolobo.xyz> (https://brunolobo.xyz)",
33
+ "0xSmartCrypto <0xsmartcrypto@gmail.com> (https://twitter.com/0xSmartCrypto)"
33
34
  ],
34
35
  "dependencies": {
35
36
  "axios": "^0.21.0",