From f8797ac0391185c7f49070851b5e7a8d213340cf Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Sat, 29 Nov 2025 11:57:35 +0000 Subject: [PATCH 1/5] fix(package): include types folder --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 69a2c8b2..a076b282 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,8 @@ }, "files": [ "dist", - "index.d.ts" + "index.d.ts", + "types" ], "scripts": { "build": "rm -rf dist && babel src -d dist", From 89c5f125e0c594d9c4772a09e1941f564f6d5e70 Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Sat, 29 Nov 2025 11:57:50 +0000 Subject: [PATCH 2/5] release: cut the 0.13.3 release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a076b282..58deb211 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "binance-api-node", - "version": "0.13.2", + "version": "0.13.3", "description": "A node API wrapper for Binance", "main": "dist", "browser": { From 95b2bab76f1798c57c0c6513415f19ea8255bfce Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Sat, 29 Nov 2025 11:58:09 +0000 Subject: [PATCH 3/5] release: cut the 0.13.4 release --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 58deb211..c7887f64 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "binance-api-node", - "version": "0.13.3", + "version": "0.13.4", "description": "A node API wrapper for Binance", "main": "dist", "browser": { From 81a6de897c3924e2e188b89dde248ee59bfcb067 Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Mon, 8 Dec 2025 14:05:35 +0000 Subject: [PATCH 4/5] chore: update readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index bffddd79..be0852b6 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ Import the module and create a new client. Passing api keys is optional only if you don't plan on doing authenticated calls. You can create an api key [here](https://www.binance.com/userCenter/createApi.html). If you want to create demo/testnet keys click [here](https://demo.binance.com/) + ```js import Binance from 'binance-api-node' @@ -91,6 +92,7 @@ client.ws.ticker('BTCUSDT', ticker => console.log(ticker)) ``` **Notes:** +- `binance-api-node` fully supports the new algo service introduced on the Decemeber 9th of 2025 - Proxy support is only available in Node.js environment - Browsers use system/OS proxy settings automatically - Supports HTTP and HTTPS proxies (use `http://` or `https://` protocol) From 48e1843859ca6a597ff46ff9b9b932f51968226f Mon Sep 17 00:00:00 2001 From: carlosmiei <43336371+carlosmiei@users.noreply.github.com> Date: Wed, 17 Dec 2025 10:25:48 +0000 Subject: [PATCH 5/5] fix(futuresLeverageBracket): symbol not required --- types/futures.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/futures.d.ts b/types/futures.d.ts index 2789e64a..e07c0a58 100644 --- a/types/futures.d.ts +++ b/types/futures.d.ts @@ -399,7 +399,7 @@ export interface FuturesEndpoints extends BinanceRestClient { unrealizedPnl: string; marginLevel: string; }>>; - futuresLeverageBracket(payload: { symbol: string }): Promise