binance 3.3.1 → 3.3.3
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/README.md +3 -0
- package/lib/types/spot.d.ts +4 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -20,6 +20,9 @@
|
|
|
20
20
|
|
|
21
21
|
[1]: https://www.npmjs.com/package/binance
|
|
22
22
|
|
|
23
|
+
> [!TIP]
|
|
24
|
+
> Upcoming change: As part of the [Siebly.io](https://siebly.io/?ref=ghbinance) brand, this SDK will soon be hosted under the [Siebly.io GitHub organisation](https://github.com/sieblyio). The migration is seamless and requires no user changes.
|
|
25
|
+
|
|
23
26
|
Updated & performant JavaScript & Node.js SDK for the Binance REST APIs and WebSockets:
|
|
24
27
|
|
|
25
28
|
- Professional, robust & performant Binance SDK with leading trading volume in production (livenet).
|
package/lib/types/spot.d.ts
CHANGED
|
@@ -417,17 +417,18 @@ export interface APITradingStatus {
|
|
|
417
417
|
export interface APIPermissions {
|
|
418
418
|
ipRestrict: boolean;
|
|
419
419
|
createTime: number;
|
|
420
|
+
enableReading: boolean;
|
|
420
421
|
enableWithdrawals: boolean;
|
|
421
422
|
enableInternalTransfer: boolean;
|
|
423
|
+
enableMargin: boolean;
|
|
424
|
+
enableFutures: boolean;
|
|
422
425
|
permitsUniversalTransfer: boolean;
|
|
423
426
|
enableVanillaOptions: boolean;
|
|
424
|
-
enableReading: boolean;
|
|
425
|
-
enableFutures: boolean;
|
|
426
|
-
enableMargin: boolean;
|
|
427
427
|
enableSpotAndMarginTrading: boolean;
|
|
428
428
|
tradingAuthorityExpirationTime: number;
|
|
429
429
|
enableFixApiTrade: boolean;
|
|
430
430
|
enableFixReadOnly: boolean;
|
|
431
|
+
enablePortfolioMarginTrading: true;
|
|
431
432
|
}
|
|
432
433
|
export interface AssetDetail {
|
|
433
434
|
minWithdrawAmount: numberInString;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "binance",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.3",
|
|
4
4
|
"description": "Professional 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",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"prepublishOnly": "npm run build:clean",
|
|
22
22
|
"betapublish": "npm publish --tag beta"
|
|
23
23
|
},
|
|
24
|
-
"author": "Tiago Siebler (https://
|
|
24
|
+
"author": "Tiago Siebler (https://siebly.io)",
|
|
25
25
|
"contributors": [
|
|
26
26
|
"Zoey Garvey",
|
|
27
27
|
"Clifford Roche <clifford.roche@gmail.com> (http://www.cliffordroche.ca)",
|