@vanzxy/baileys 1.3.8 → 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/NOTICE.md +41 -0
- package/lib/Utils/MessageBuilder.js +2423 -0
- package/lib/Utils/index.js +1 -0
- package/lib/Utils/messages.js +15 -1
- package/lib/Utils/rich-message-utils.js +32 -7
- package/lib/WABinary/generic-utils.js +6 -1
- package/package.json +7 -2
- package/LICENSE +0 -23
package/NOTICE.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Third-Party Notices
|
|
2
|
+
|
|
3
|
+
This project (`@vanzxy/baileys`) is built on top of, and includes code
|
|
4
|
+
adapted from, the following projects. Attribution kept here per their
|
|
5
|
+
original license terms, instead of inline in each source file.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## lib/Utils/MessageBuilder.js — AIRich / Button / ButtonV2 / Carousel / Toolkit
|
|
10
|
+
|
|
11
|
+
Base implementation ("NIXCODE — Advanced WhatsApp Interactive Message
|
|
12
|
+
Builder") originally created by **Nixel**, with contributions from
|
|
13
|
+
**Ahmad tumbuh kembang**. Obtained via the `@blurose/baileys` (1.1.13) fork.
|
|
14
|
+
|
|
15
|
+
- WhatsApp: wa.me/6285188349341
|
|
16
|
+
- Channel: https://whatsapp.com/channel/0029VbCV1ck8fewpdNb2TY2k
|
|
17
|
+
- Copyright (c) 2026 Nixel
|
|
18
|
+
|
|
19
|
+
Original license terms:
|
|
20
|
+
> Permission is granted to use and modify this library for personal or
|
|
21
|
+
> commercial projects. Reuploading, reselling, relicensing, or
|
|
22
|
+
> redistributing this library as a standalone product is prohibited.
|
|
23
|
+
> Do not claim this project as your own original work.
|
|
24
|
+
|
|
25
|
+
Ported into `@vanzxy/baileys` 1.3.9 with modifications (see git history /
|
|
26
|
+
inline `Vanz@` comments for specifics): lazy-loading of optional
|
|
27
|
+
`sharp`/`fluent-ffmpeg` dependencies, faster default behavior for
|
|
28
|
+
`addVideo()`, `verificationMetadata` signing added to `AIRich.build()`,
|
|
29
|
+
and neutral fallback text (previously referenced the original author's
|
|
30
|
+
name in a small number of user-facing fallback strings).
|
|
31
|
+
|
|
32
|
+
Additional performance/authenticity reference drawn from `arslan-baileys`
|
|
33
|
+
(1.1.0), which shares the same underlying builder API.
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## rich-message-utils.js — AIRICH inline-image bug fix
|
|
38
|
+
|
|
39
|
+
Original implementation is this project's own; fixed 2026-08-15 (bad
|
|
40
|
+
protobuf field shape for `AIRichResponseInlineImageMetadata.imageUrl`
|
|
41
|
+
causing silently-dropped image data on encode).
|