baileys-antiban 1.3.1 → 1.4.0
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/CHANGELOG.md +17 -0
- package/README.md +26 -3
- package/dist/wrapper.d.ts +14 -1
- package/dist/wrapper.js +14 -1
- package/package.json +15 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.4.0] - 2026-04-18
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Transport-agnostic support** — works with both `baileys` and `@oxidezap/baileyrs` (Rust/WASM WhatsApp library)
|
|
12
|
+
- Both transports now listed as optional peer dependencies
|
|
13
|
+
- GitHub Actions CI workflow with dual-transport matrix testing (Node 18.x + 20.x × baileys + baileyrs)
|
|
14
|
+
- New test suite: `tests/transport-agnostic.test.ts` for duck-typed socket validation
|
|
15
|
+
- Updated JSDoc examples showing usage with both transports
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- `peerDependencies` now includes both `baileys` and `@oxidezap/baileyrs` as optional
|
|
19
|
+
- Package description updated to mention transport-agnostic support
|
|
20
|
+
- Wrapper comments clarify baileyrs timelock behavior (no `reachoutTimeLock` events in v0.0.8 — operates in detection-only mode)
|
|
21
|
+
|
|
22
|
+
### Why
|
|
23
|
+
Positions baileys-antiban as "Switzerland" of WhatsApp anti-ban — works with any Baileys-compatible transport layer. No breaking changes for existing baileys users.
|
|
24
|
+
|
|
8
25
|
## [1.3.1] - 2026-04-16
|
|
9
26
|
|
|
10
27
|
### Changed
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://nodejs.org/)
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
**Transport-agnostic** anti-ban middleware — protect your WhatsApp number with human-like messaging patterns. Works with both [Baileys](https://github.com/WhiskeySockets/Baileys) and [@oxidezap/baileyrs](https://github.com/oxidezap/baileyrs) (Rust/WASM).
|
|
8
8
|
|
|
9
9
|
## v1.3 New Features
|
|
10
10
|
|
|
@@ -93,20 +93,43 @@ WhatsApp bans numbers that behave like bots. This library makes your Baileys bot
|
|
|
93
93
|
- **Contact graph enforcement** (v1.3) — requires handshakes before bulk/group sends
|
|
94
94
|
- **Circadian rhythm** (v1.3) — realistic time-of-day activity patterns
|
|
95
95
|
|
|
96
|
+
## Supported Transports
|
|
97
|
+
|
|
98
|
+
**v1.4+** is transport-agnostic and works with any Baileys-compatible WhatsApp library:
|
|
99
|
+
|
|
100
|
+
- **[Baileys](https://github.com/WhiskeySockets/Baileys)** (Node.js, JavaScript/TypeScript)
|
|
101
|
+
- **[@oxidezap/baileyrs](https://github.com/oxidezap/baileyrs)** (Rust/WASM, Baileys-compatible API)
|
|
102
|
+
|
|
103
|
+
Both use the same `wrapSocket()` integration. Zero code changes needed.
|
|
104
|
+
|
|
96
105
|
## Installation
|
|
97
106
|
|
|
107
|
+
### With Baileys (Node.js)
|
|
108
|
+
|
|
98
109
|
```bash
|
|
99
|
-
npm install baileys-antiban
|
|
110
|
+
npm install baileys baileys-antiban
|
|
100
111
|
```
|
|
101
112
|
|
|
102
|
-
|
|
113
|
+
### With baileyrs (Rust/WASM)
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
npm install @oxidezap/baileyrs baileys-antiban
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
Requires Node.js ≥16.
|
|
103
120
|
|
|
104
121
|
## Quick Start
|
|
105
122
|
|
|
106
123
|
### Option 1: Wrap Your Socket (Easiest)
|
|
107
124
|
|
|
125
|
+
Works with both baileys and baileyrs — same code:
|
|
126
|
+
|
|
108
127
|
```typescript
|
|
128
|
+
// With baileys:
|
|
109
129
|
import makeWASocket from 'baileys';
|
|
130
|
+
// OR with baileyrs:
|
|
131
|
+
// import { makeWASocket } from '@oxidezap/baileyrs';
|
|
132
|
+
|
|
110
133
|
import { wrapSocket } from 'baileys-antiban';
|
|
111
134
|
|
|
112
135
|
const sock = makeWASocket({ /* your config */ });
|
package/dist/wrapper.d.ts
CHANGED
|
@@ -1,18 +1,31 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Socket Wrapper — Drop-in replacement that wraps sendMessage with anti-ban protection
|
|
3
3
|
*
|
|
4
|
-
*
|
|
4
|
+
* Works with both baileys and @oxidezap/baileyrs transports.
|
|
5
|
+
*
|
|
6
|
+
* Usage with baileys:
|
|
5
7
|
* import makeWASocket from 'baileys';
|
|
6
8
|
* import { wrapSocket } from 'baileys-antiban';
|
|
7
9
|
*
|
|
8
10
|
* const sock = makeWASocket({ ... });
|
|
9
11
|
* const safeSock = wrapSocket(sock);
|
|
10
12
|
*
|
|
13
|
+
* Usage with baileyrs:
|
|
14
|
+
* import { makeWASocket } from '@oxidezap/baileyrs';
|
|
15
|
+
* import { wrapSocket } from 'baileys-antiban';
|
|
16
|
+
*
|
|
17
|
+
* const sock = makeWASocket({ ... });
|
|
18
|
+
* const safeSock = wrapSocket(sock);
|
|
19
|
+
*
|
|
11
20
|
* // Use safeSock.sendMessage() — automatically rate-limited and monitored
|
|
12
21
|
* await safeSock.sendMessage(jid, { text: 'Hello!' });
|
|
13
22
|
*
|
|
14
23
|
* // Check health anytime
|
|
15
24
|
* console.log(safeSock.antiban.getStats());
|
|
25
|
+
*
|
|
26
|
+
* Note: reachoutTimeLock timelock module silently noops on baileyrs until upstream
|
|
27
|
+
* emits reachoutTimeLock events — confirmed NOT present in baileyrs v0.0.8.
|
|
28
|
+
* Timelock guard will operate in detection-only mode (relies on 463 errors only).
|
|
16
29
|
*/
|
|
17
30
|
import { AntiBan, type AntiBanConfig } from './antiban.js';
|
|
18
31
|
import type { WarmUpState } from './warmup.js';
|
package/dist/wrapper.js
CHANGED
|
@@ -1,18 +1,31 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Socket Wrapper — Drop-in replacement that wraps sendMessage with anti-ban protection
|
|
3
3
|
*
|
|
4
|
-
*
|
|
4
|
+
* Works with both baileys and @oxidezap/baileyrs transports.
|
|
5
|
+
*
|
|
6
|
+
* Usage with baileys:
|
|
5
7
|
* import makeWASocket from 'baileys';
|
|
6
8
|
* import { wrapSocket } from 'baileys-antiban';
|
|
7
9
|
*
|
|
8
10
|
* const sock = makeWASocket({ ... });
|
|
9
11
|
* const safeSock = wrapSocket(sock);
|
|
10
12
|
*
|
|
13
|
+
* Usage with baileyrs:
|
|
14
|
+
* import { makeWASocket } from '@oxidezap/baileyrs';
|
|
15
|
+
* import { wrapSocket } from 'baileys-antiban';
|
|
16
|
+
*
|
|
17
|
+
* const sock = makeWASocket({ ... });
|
|
18
|
+
* const safeSock = wrapSocket(sock);
|
|
19
|
+
*
|
|
11
20
|
* // Use safeSock.sendMessage() — automatically rate-limited and monitored
|
|
12
21
|
* await safeSock.sendMessage(jid, { text: 'Hello!' });
|
|
13
22
|
*
|
|
14
23
|
* // Check health anytime
|
|
15
24
|
* console.log(safeSock.antiban.getStats());
|
|
25
|
+
*
|
|
26
|
+
* Note: reachoutTimeLock timelock module silently noops on baileyrs until upstream
|
|
27
|
+
* emits reachoutTimeLock events — confirmed NOT present in baileyrs v0.0.8.
|
|
28
|
+
* Timelock guard will operate in detection-only mode (relies on 463 errors only).
|
|
16
29
|
*/
|
|
17
30
|
import { AntiBan } from './antiban.js';
|
|
18
31
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "baileys-antiban",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.4.0",
|
|
4
|
+
"description": "Transport-agnostic anti-ban middleware for Baileys and baileyrs — human-like messaging patterns to protect your WhatsApp number",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"type": "module",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"keywords": [
|
|
31
31
|
"baileys",
|
|
32
|
+
"baileyrs",
|
|
32
33
|
"whatsapp",
|
|
33
34
|
"anti-ban",
|
|
34
35
|
"rate-limit",
|
|
@@ -36,7 +37,8 @@
|
|
|
36
37
|
"whatsapp-bot",
|
|
37
38
|
"bot-protection",
|
|
38
39
|
"whatsapp-api",
|
|
39
|
-
"nodejs"
|
|
40
|
+
"nodejs",
|
|
41
|
+
"transport-agnostic"
|
|
40
42
|
],
|
|
41
43
|
"author": "Kobus Wentzel <kobie@pop.co.za>",
|
|
42
44
|
"license": "MIT",
|
|
@@ -49,13 +51,22 @@
|
|
|
49
51
|
},
|
|
50
52
|
"homepage": "https://github.com/kobie3717/baileys-antiban#readme",
|
|
51
53
|
"peerDependencies": {
|
|
54
|
+
"@oxidezap/baileyrs": ">=0.0.8",
|
|
52
55
|
"baileys": ">=6.0.0"
|
|
53
56
|
},
|
|
57
|
+
"peerDependenciesMeta": {
|
|
58
|
+
"baileys": {
|
|
59
|
+
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"@oxidezap/baileyrs": {
|
|
62
|
+
"optional": true
|
|
63
|
+
}
|
|
64
|
+
},
|
|
54
65
|
"devDependencies": {
|
|
55
66
|
"@types/jest": "^29.5.14",
|
|
56
67
|
"@types/node": "^20.0.0",
|
|
57
68
|
"jest": "^29.7.0",
|
|
58
|
-
"ts-jest": "^29.4.
|
|
69
|
+
"ts-jest": "^29.4.9",
|
|
59
70
|
"tsx": "^4.21.0",
|
|
60
71
|
"typescript": "^5.0.0"
|
|
61
72
|
}
|