@skyzopedia/baileys-mod 3.0.2

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.
Files changed (104) hide show
  1. package/LICENSE +21 -0
  2. package/WAProto/WAProto.proto +5311 -0
  3. package/WAProto/index.js +94091 -0
  4. package/lib/Defaults/index.js +123 -0
  5. package/lib/KeyDB/BinarySearch.js +20 -0
  6. package/lib/KeyDB/KeyedDB.js +167 -0
  7. package/lib/KeyDB/index.js +4 -0
  8. package/lib/Signal/Group/ciphertext-message.js +13 -0
  9. package/lib/Signal/Group/group-session-builder.js +32 -0
  10. package/lib/Signal/Group/group_cipher.js +84 -0
  11. package/lib/Signal/Group/index.js +13 -0
  12. package/lib/Signal/Group/keyhelper.js +20 -0
  13. package/lib/Signal/Group/sender-chain-key.js +28 -0
  14. package/lib/Signal/Group/sender-key-distribution-message.js +65 -0
  15. package/lib/Signal/Group/sender-key-message.js +68 -0
  16. package/lib/Signal/Group/sender-key-name.js +52 -0
  17. package/lib/Signal/Group/sender-key-record.js +43 -0
  18. package/lib/Signal/Group/sender-key-state.js +86 -0
  19. package/lib/Signal/Group/sender-message-key.js +28 -0
  20. package/lib/Signal/libsignal.js +324 -0
  21. package/lib/Signal/lid-mapping.js +155 -0
  22. package/lib/Socket/Client/index.js +4 -0
  23. package/lib/Socket/Client/types.js +13 -0
  24. package/lib/Socket/Client/websocket.js +52 -0
  25. package/lib/Socket/business.js +377 -0
  26. package/lib/Socket/chats.js +881 -0
  27. package/lib/Socket/communities.js +413 -0
  28. package/lib/Socket/groups.js +312 -0
  29. package/lib/Socket/index.js +16 -0
  30. package/lib/Socket/messages-recv.js +1163 -0
  31. package/lib/Socket/messages-send.js +1082 -0
  32. package/lib/Socket/mex.js +45 -0
  33. package/lib/Socket/newsletter.js +259 -0
  34. package/lib/Socket/socket.js +781 -0
  35. package/lib/Store/index.js +6 -0
  36. package/lib/Store/make-cache-manager-store.js +75 -0
  37. package/lib/Store/make-in-memory-store.js +290 -0
  38. package/lib/Store/make-ordered-dictionary.js +79 -0
  39. package/lib/Store/object-repository.js +25 -0
  40. package/lib/Types/Auth.js +3 -0
  41. package/lib/Types/Bussines.js +3 -0
  42. package/lib/Types/Call.js +3 -0
  43. package/lib/Types/Chat.js +9 -0
  44. package/lib/Types/Contact.js +3 -0
  45. package/lib/Types/Events.js +3 -0
  46. package/lib/Types/GroupMetadata.js +3 -0
  47. package/lib/Types/Label.js +25 -0
  48. package/lib/Types/LabelAssociation.js +7 -0
  49. package/lib/Types/Message.js +12 -0
  50. package/lib/Types/Newsletter.js +33 -0
  51. package/lib/Types/Newsletter.js.bak +33 -0
  52. package/lib/Types/Product.js +3 -0
  53. package/lib/Types/Signal.js +3 -0
  54. package/lib/Types/Socket.js +4 -0
  55. package/lib/Types/State.js +11 -0
  56. package/lib/Types/USync.js +3 -0
  57. package/lib/Types/index.js +28 -0
  58. package/lib/Utils/auth-utils.js +219 -0
  59. package/lib/Utils/baileys-event-stream.js +44 -0
  60. package/lib/Utils/browser-utils.js +17 -0
  61. package/lib/Utils/business.js +233 -0
  62. package/lib/Utils/chat-utils.js +752 -0
  63. package/lib/Utils/crypto.js +130 -0
  64. package/lib/Utils/decode-wa-message.js +267 -0
  65. package/lib/Utils/event-buffer.js +528 -0
  66. package/lib/Utils/generics.js +355 -0
  67. package/lib/Utils/history.js +87 -0
  68. package/lib/Utils/index.js +21 -0
  69. package/lib/Utils/link-preview.js +81 -0
  70. package/lib/Utils/logger.js +5 -0
  71. package/lib/Utils/lt-hash.js +45 -0
  72. package/lib/Utils/make-mutex.js +36 -0
  73. package/lib/Utils/message-retry-manager.js +113 -0
  74. package/lib/Utils/messages-media.js +601 -0
  75. package/lib/Utils/messages.js +776 -0
  76. package/lib/Utils/noise-handler.js +144 -0
  77. package/lib/Utils/pre-key-manager.js +85 -0
  78. package/lib/Utils/process-message.js +341 -0
  79. package/lib/Utils/signal.js +161 -0
  80. package/lib/Utils/use-multi-file-auth-state.js +111 -0
  81. package/lib/Utils/validate-connection.js +200 -0
  82. package/lib/WABinary/constants.js +1303 -0
  83. package/lib/WABinary/decode.js +240 -0
  84. package/lib/WABinary/encode.js +218 -0
  85. package/lib/WABinary/generic-utils.js +113 -0
  86. package/lib/WABinary/index.js +7 -0
  87. package/lib/WABinary/jid-utils.js +93 -0
  88. package/lib/WABinary/types.js +3 -0
  89. package/lib/WAM/BinaryInfo.js +11 -0
  90. package/lib/WAM/constants.js +22853 -0
  91. package/lib/WAM/encode.js +154 -0
  92. package/lib/WAM/index.js +5 -0
  93. package/lib/WAUSync/Protocols/USyncContactProtocol.js +30 -0
  94. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +53 -0
  95. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +29 -0
  96. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +39 -0
  97. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +53 -0
  98. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +30 -0
  99. package/lib/WAUSync/Protocols/index.js +6 -0
  100. package/lib/WAUSync/USyncQuery.js +90 -0
  101. package/lib/WAUSync/USyncUser.js +24 -0
  102. package/lib/WAUSync/index.js +5 -0
  103. package/lib/index.js +15 -0
  104. package/package.json +102 -0
@@ -0,0 +1,154 @@
1
+ //=======================================================//
2
+ import { FLAG_BYTE, FLAG_EVENT, FLAG_EXTENDED, FLAG_FIELD, FLAG_GLOBAL, WEB_EVENTS, WEB_GLOBALS } from "./constants.js";
3
+ import { BinaryInfo } from "./BinaryInfo.js";
4
+ //=======================================================//
5
+ const getHeaderBitLength = (key) => (key < 256 ? 2 : 3);
6
+ export const encodeWAM = (binaryInfo) => {
7
+ binaryInfo.buffer = [];
8
+ encodeWAMHeader(binaryInfo);
9
+ encodeEvents(binaryInfo);
10
+ const totalSize = binaryInfo.buffer.map(a => a.length).reduce((a, b) => a + b);
11
+ const buffer = Buffer.alloc(totalSize);
12
+ let offset = 0;
13
+ for (const buffer_ of binaryInfo.buffer) {
14
+ buffer_.copy(buffer, offset);
15
+ offset += buffer_.length;
16
+ }
17
+ return buffer;
18
+ };
19
+ //=======================================================//
20
+ function encodeWAMHeader(binaryInfo) {
21
+ const headerBuffer = Buffer.alloc(8);
22
+ headerBuffer.write("WAM", 0, "utf8");
23
+ headerBuffer.writeUInt8(binaryInfo.protocolVersion, 3);
24
+ headerBuffer.writeUInt8(1, 4);
25
+ headerBuffer.writeUInt16BE(binaryInfo.sequence, 5);
26
+ headerBuffer.writeUInt8(0, 7);
27
+ binaryInfo.buffer.push(headerBuffer);
28
+ }
29
+ //=======================================================//
30
+ function encodeGlobalAttributes(binaryInfo, globals) {
31
+ for (const [key, _value] of Object.entries(globals)) {
32
+ const id = WEB_GLOBALS.find(a => a?.name === key).id;
33
+ let value = _value;
34
+ if (typeof value === "boolean") {
35
+ value = value ? 1 : 0;
36
+ }
37
+ binaryInfo.buffer.push(serializeData(id, value, FLAG_GLOBAL));
38
+ }
39
+ }
40
+ //=======================================================//
41
+ function encodeEvents(binaryInfo) {
42
+ for (const [name, { props, globals }] of binaryInfo.events.map(a => Object.entries(a)[0])) {
43
+ encodeGlobalAttributes(binaryInfo, globals);
44
+ const event = WEB_EVENTS.find(a => a.name === name);
45
+ const props_ = Object.entries(props);
46
+ let extended = false;
47
+ for (const [, value] of props_) {
48
+ extended || (extended = value !== null);
49
+ }
50
+ const eventFlag = extended ? FLAG_EVENT : FLAG_EVENT | FLAG_EXTENDED;
51
+ binaryInfo.buffer.push(serializeData(event.id, -event.weight, eventFlag));
52
+ for (let i = 0; i < props_.length; i++) {
53
+ const [key, _value] = props_[i];
54
+ const id = event.props[key]?.[0];
55
+ extended = i < props_.length - 1;
56
+ let value = _value;
57
+ if (typeof value === "boolean") {
58
+ value = value ? 1 : 0;
59
+ }
60
+ const fieldFlag = extended ? FLAG_EVENT : FLAG_FIELD | FLAG_EXTENDED;
61
+ binaryInfo.buffer.push(serializeData(id, value, fieldFlag));
62
+ }
63
+ }
64
+ }
65
+ //=======================================================//
66
+ function serializeData(key, value, flag) {
67
+ const bufferLength = getHeaderBitLength(key);
68
+ let buffer;
69
+ let offset = 0;
70
+ if (value === null) {
71
+ if (flag === FLAG_GLOBAL) {
72
+ buffer = Buffer.alloc(bufferLength);
73
+ offset = serializeHeader(buffer, offset, key, flag);
74
+ return buffer;
75
+ }
76
+ }
77
+ else if (typeof value === "number" && Number.isInteger(value)) {
78
+ if (value === 0 || value === 1) {
79
+ buffer = Buffer.alloc(bufferLength);
80
+ offset = serializeHeader(buffer, offset, key, flag | ((value + 1) << 4));
81
+ return buffer;
82
+ }
83
+ else if (-128 <= value && value < 128) {
84
+ buffer = Buffer.alloc(bufferLength + 1);
85
+ offset = serializeHeader(buffer, offset, key, flag | (3 << 4));
86
+ buffer.writeInt8(value, offset);
87
+ return buffer;
88
+ }
89
+ else if (-32768 <= value && value < 32768) {
90
+ buffer = Buffer.alloc(bufferLength + 2);
91
+ offset = serializeHeader(buffer, offset, key, flag | (4 << 4));
92
+ buffer.writeInt16LE(value, offset);
93
+ return buffer;
94
+ }
95
+ else if (-2147483648 <= value && value < 2147483648) {
96
+ buffer = Buffer.alloc(bufferLength + 4);
97
+ offset = serializeHeader(buffer, offset, key, flag | (5 << 4));
98
+ buffer.writeInt32LE(value, offset);
99
+ return buffer;
100
+ }
101
+ else {
102
+ buffer = Buffer.alloc(bufferLength + 8);
103
+ offset = serializeHeader(buffer, offset, key, flag | (7 << 4));
104
+ buffer.writeDoubleLE(value, offset);
105
+ return buffer;
106
+ }
107
+ }
108
+ else if (typeof value === "number") {
109
+ buffer = Buffer.alloc(bufferLength + 8);
110
+ offset = serializeHeader(buffer, offset, key, flag | (7 << 4));
111
+ buffer.writeDoubleLE(value, offset);
112
+ return buffer;
113
+ }
114
+ else if (typeof value === "string") {
115
+ const utf8Bytes = Buffer.byteLength(value, "utf8");
116
+ if (utf8Bytes < 256) {
117
+ buffer = Buffer.alloc(bufferLength + 1 + utf8Bytes);
118
+ offset = serializeHeader(buffer, offset, key, flag | (8 << 4));
119
+ buffer.writeUint8(utf8Bytes, offset++);
120
+ }
121
+ else if (utf8Bytes < 65536) {
122
+ buffer = Buffer.alloc(bufferLength + 2 + utf8Bytes);
123
+ offset = serializeHeader(buffer, offset, key, flag | (9 << 4));
124
+ buffer.writeUInt16LE(utf8Bytes, offset);
125
+ offset += 2;
126
+ }
127
+ else {
128
+ buffer = Buffer.alloc(bufferLength + 4 + utf8Bytes);
129
+ offset = serializeHeader(buffer, offset, key, flag | (10 << 4));
130
+ buffer.writeUInt32LE(utf8Bytes, offset);
131
+ offset += 4;
132
+ }
133
+ buffer.write(value, offset, "utf8");
134
+ return buffer;
135
+ }
136
+ throw "missing";
137
+ }
138
+ //=======================================================//
139
+ function serializeHeader(buffer, offset, key, flag) {
140
+ if (key < 256) {
141
+ buffer.writeUInt8(flag, offset);
142
+ offset += 1;
143
+ buffer.writeUInt8(key, offset);
144
+ offset += 1;
145
+ }
146
+ else {
147
+ buffer.writeUInt8(flag | FLAG_BYTE, offset);
148
+ offset += 1;
149
+ buffer.writeUInt16LE(key, offset);
150
+ offset += 2;
151
+ }
152
+ return offset;
153
+ }
154
+ //=======================================================//
@@ -0,0 +1,5 @@
1
+ //=======================================================//
2
+ export * from "./BinaryInfo.js";
3
+ export * from "./constants.js";
4
+ export * from "./encode.js";
5
+ //=======================================================//
@@ -0,0 +1,30 @@
1
+ //=======================================================//
2
+ import { assertNodeErrorFree } from "../../WABinary/index.js";
3
+ import { USyncUser } from "../USyncUser.js";
4
+ //=======================================================//
5
+ export class USyncContactProtocol {
6
+ constructor() {
7
+ this.name = "contact";
8
+ }
9
+ getQueryElement() {
10
+ return {
11
+ tag: "contact",
12
+ attrs: {}
13
+ };
14
+ }
15
+ getUserElement(user) {
16
+ return {
17
+ tag: "contact",
18
+ attrs: {},
19
+ content: user.phone
20
+ };
21
+ }
22
+ parser(node) {
23
+ if (node.tag === "contact") {
24
+ assertNodeErrorFree(node);
25
+ return node?.attrs?.type === "in";
26
+ }
27
+ return false;
28
+ }
29
+ }
30
+ //=======================================================//
@@ -0,0 +1,53 @@
1
+ //=======================================================//
2
+ import { assertNodeErrorFree, getBinaryNodeChild } from "../../WABinary/index.js";
3
+ //=======================================================//
4
+ export class USyncDeviceProtocol {
5
+ constructor() {
6
+ this.name = "devices";
7
+ }
8
+ getQueryElement() {
9
+ return {
10
+ tag: "devices",
11
+ attrs: {
12
+ version: "2"
13
+ }
14
+ };
15
+ }
16
+ getUserElement() {
17
+ return null;
18
+ }
19
+ parser(node) {
20
+ const deviceList = [];
21
+ let keyIndex = undefined;
22
+ if (node.tag === "devices") {
23
+ assertNodeErrorFree(node);
24
+ const deviceListNode = getBinaryNodeChild(node, "device-list");
25
+ const keyIndexNode = getBinaryNodeChild(node, "key-index-list");
26
+ if (Array.isArray(deviceListNode?.content)) {
27
+ for (const { tag, attrs } of deviceListNode.content) {
28
+ const id = +attrs.id;
29
+ const keyIndex = +attrs["key-index"];
30
+ if (tag === "device") {
31
+ deviceList.push({
32
+ id,
33
+ keyIndex,
34
+ isHosted: !!(attrs["is_hosted"] && attrs["is_hosted"] === "true")
35
+ });
36
+ }
37
+ }
38
+ }
39
+ if (keyIndexNode?.tag === "key-index-list") {
40
+ keyIndex = {
41
+ timestamp: +keyIndexNode.attrs["ts"],
42
+ signedKeyIndex: keyIndexNode?.content,
43
+ expectedTimestamp: keyIndexNode.attrs["expected_ts"] ? +keyIndexNode.attrs["expected_ts"] : undefined
44
+ };
45
+ }
46
+ }
47
+ return {
48
+ deviceList,
49
+ keyIndex
50
+ };
51
+ }
52
+ }
53
+ //=======================================================//
@@ -0,0 +1,29 @@
1
+ //=======================================================//
2
+ import { assertNodeErrorFree } from "../../WABinary/index.js";
3
+ //=======================================================//
4
+ export class USyncDisappearingModeProtocol {
5
+ constructor() {
6
+ this.name = "disappearing_mode";
7
+ }
8
+ getQueryElement() {
9
+ return {
10
+ tag: "disappearing_mode",
11
+ attrs: {}
12
+ };
13
+ }
14
+ getUserElement() {
15
+ return null;
16
+ }
17
+ parser(node) {
18
+ if (node.tag === "disappearing_mode") {
19
+ assertNodeErrorFree(node);
20
+ const duration = +node?.attrs.duration;
21
+ const setAt = new Date(+(node?.attrs.t || 0) * 1000);
22
+ return {
23
+ duration,
24
+ setAt
25
+ };
26
+ }
27
+ }
28
+ }
29
+ //=======================================================//
@@ -0,0 +1,39 @@
1
+ //=======================================================//
2
+ import { assertNodeErrorFree } from "../../WABinary/index.js";
3
+ export class USyncStatusProtocol {
4
+ constructor() {
5
+ this.name = "status";
6
+ }
7
+ getQueryElement() {
8
+ return {
9
+ tag: "status",
10
+ attrs: {}
11
+ };
12
+ }
13
+ getUserElement() {
14
+ return null;
15
+ }
16
+ parser(node) {
17
+ if (node.tag === "status") {
18
+ assertNodeErrorFree(node);
19
+ let status = node?.content?.toString() ?? null;
20
+ const setAt = new Date(+(node?.attrs.t || 0) * 1000);
21
+ if (!status) {
22
+ if (node.attrs?.code && +node.attrs.code === 401) {
23
+ status = "";
24
+ }
25
+ else {
26
+ status = null;
27
+ }
28
+ }
29
+ else if (typeof status === "string" && status.length === 0) {
30
+ status = null;
31
+ }
32
+ return {
33
+ status,
34
+ setAt
35
+ };
36
+ }
37
+ }
38
+ }
39
+ //=======================================================//
@@ -0,0 +1,53 @@
1
+ //=======================================================//
2
+ import { getBinaryNodeChild, getBinaryNodeChildren, getBinaryNodeChildString } from "../../WABinary/index.js";
3
+ import { USyncUser } from "../USyncUser.js";
4
+ //=======================================================//
5
+ export class USyncBotProfileProtocol {
6
+ constructor() {
7
+ this.name = "bot";
8
+ }
9
+ getQueryElement() {
10
+ return {
11
+ tag: "bot",
12
+ attrs: {},
13
+ content: [{ tag: "profile", attrs: { v: "1" } }]
14
+ };
15
+ }
16
+ getUserElement(user) {
17
+ return {
18
+ tag: "bot",
19
+ attrs: {},
20
+ content: [{ tag: "profile", attrs: { persona_id: user.personaId } }]
21
+ };
22
+ }
23
+ parser(node) {
24
+ const botNode = getBinaryNodeChild(node, "bot");
25
+ const profile = getBinaryNodeChild(botNode, "profile");
26
+ const commandsNode = getBinaryNodeChild(profile, "commands");
27
+ const promptsNode = getBinaryNodeChild(profile, "prompts");
28
+ const commands = [];
29
+ const prompts = [];
30
+ for (const command of getBinaryNodeChildren(commandsNode, "command")) {
31
+ commands.push({
32
+ name: getBinaryNodeChildString(command, "name"),
33
+ description: getBinaryNodeChildString(command, "description")
34
+ });
35
+ }
36
+ for (const prompt of getBinaryNodeChildren(promptsNode, "prompt")) {
37
+ prompts.push(`${getBinaryNodeChildString(prompt, "emoji")} ${getBinaryNodeChildString(prompt, "text")}`);
38
+ }
39
+ return {
40
+ isDefault: !!getBinaryNodeChild(profile, "default"),
41
+ jid: node.attrs.jid,
42
+ name: getBinaryNodeChildString(profile, "name"),
43
+ attributes: getBinaryNodeChildString(profile, "attributes"),
44
+ description: getBinaryNodeChildString(profile, "description"),
45
+ category: getBinaryNodeChildString(profile, "category"),
46
+ personaId: profile.attrs["persona_id"],
47
+ commandsDescription: getBinaryNodeChildString(commandsNode, "description"),
48
+ commands,
49
+ prompts
50
+ };
51
+ }
52
+ }
53
+ //=======================================================//
@@ -0,0 +1,30 @@
1
+ //=======================================================//
2
+ export class USyncLIDProtocol {
3
+ constructor() {
4
+ this.name = "lid";
5
+ }
6
+ getQueryElement() {
7
+ return {
8
+ tag: "lid",
9
+ attrs: {}
10
+ };
11
+ }
12
+ getUserElement(user) {
13
+ if (user.lid) {
14
+ return {
15
+ tag: "lid",
16
+ attrs: { jid: user.lid }
17
+ };
18
+ }
19
+ else {
20
+ return null;
21
+ }
22
+ }
23
+ parser(node) {
24
+ if (node.tag === "lid") {
25
+ return node.attrs.val;
26
+ }
27
+ return null;
28
+ }
29
+ }
30
+ //=======================================================//
@@ -0,0 +1,6 @@
1
+ //=======================================================//
2
+ export * from "./USyncDisappearingModeProtocol.js";
3
+ export * from "./USyncContactProtocol.js";
4
+ export * from "./USyncDeviceProtocol.js";
5
+ export * from "./USyncStatusProtocol.js";
6
+ //=======================================================//
@@ -0,0 +1,90 @@
1
+ //=======================================================//
2
+ import { USyncContactProtocol, USyncDeviceProtocol, USyncDisappearingModeProtocol, USyncStatusProtocol } from "./Protocols/index.js";
3
+ import { USyncBotProfileProtocol } from "./Protocols/UsyncBotProfileProtocol.js";
4
+ import { USyncLIDProtocol } from "./Protocols/UsyncLIDProtocol.js";
5
+ import { getBinaryNodeChild } from "../WABinary/index.js";
6
+ import { USyncUser } from "./USyncUser.js";
7
+ //=======================================================//
8
+ export class USyncQuery {
9
+ constructor() {
10
+ this.protocols = [];
11
+ this.users = [];
12
+ this.context = "interactive";
13
+ this.mode = "query";
14
+ }
15
+ withMode(mode) {
16
+ this.mode = mode;
17
+ return this;
18
+ }
19
+ withContext(context) {
20
+ this.context = context;
21
+ return this;
22
+ }
23
+ withUser(user) {
24
+ this.users.push(user);
25
+ return this;
26
+ }
27
+ parseUSyncQueryResult(result) {
28
+ if (!result || result.attrs.type !== "result") {
29
+ return;
30
+ }
31
+ const protocolMap = Object.fromEntries(this.protocols.map(protocol => {
32
+ return [protocol.name, protocol.parser];
33
+ }));
34
+ const queryResult = {
35
+ list: [],
36
+ sideList: []
37
+ };
38
+ const usyncNode = getBinaryNodeChild(result, "usync");
39
+ const listNode = usyncNode ? getBinaryNodeChild(usyncNode, "list") : undefined;
40
+ if (listNode?.content && Array.isArray(listNode.content)) {
41
+ queryResult.list = listNode.content.reduce((acc, node) => {
42
+ const id = node?.attrs.jid;
43
+ if (id) {
44
+ const data = Array.isArray(node?.content)
45
+ ? Object.fromEntries(node.content
46
+ .map(content => {
47
+ const protocol = content.tag;
48
+ const parser = protocolMap[protocol];
49
+ if (parser) {
50
+ return [protocol, parser(content)];
51
+ }
52
+ else {
53
+ return [protocol, null];
54
+ }
55
+ })
56
+ .filter(([, b]) => b !== null))
57
+ : {};
58
+ acc.push({ ...data, id });
59
+ }
60
+ return acc;
61
+ }, []);
62
+ }
63
+ return queryResult;
64
+ }
65
+ withDeviceProtocol() {
66
+ this.protocols.push(new USyncDeviceProtocol());
67
+ return this;
68
+ }
69
+ withContactProtocol() {
70
+ this.protocols.push(new USyncContactProtocol());
71
+ return this;
72
+ }
73
+ withStatusProtocol() {
74
+ this.protocols.push(new USyncStatusProtocol());
75
+ return this;
76
+ }
77
+ withDisappearingModeProtocol() {
78
+ this.protocols.push(new USyncDisappearingModeProtocol());
79
+ return this;
80
+ }
81
+ withBotProfileProtocol() {
82
+ this.protocols.push(new USyncBotProfileProtocol());
83
+ return this;
84
+ }
85
+ withLIDProtocol() {
86
+ this.protocols.push(new USyncLIDProtocol());
87
+ return this;
88
+ }
89
+ }
90
+ //=======================================================//
@@ -0,0 +1,24 @@
1
+ //=======================================================//
2
+ export class USyncUser {
3
+ withId(id) {
4
+ this.id = id;
5
+ return this;
6
+ }
7
+ withLid(lid) {
8
+ this.lid = lid;
9
+ return this;
10
+ }
11
+ withPhone(phone) {
12
+ this.phone = phone;
13
+ return this;
14
+ }
15
+ withType(type) {
16
+ this.type = type;
17
+ return this;
18
+ }
19
+ withPersonaId(personaId) {
20
+ this.personaId = personaId;
21
+ return this;
22
+ }
23
+ }
24
+ //=======================================================//
@@ -0,0 +1,5 @@
1
+ //=======================================================//
2
+ export * from "./Protocols/index.js";
3
+ export * from "./USyncQuery.js";
4
+ export * from "./USyncUser.js";
5
+ //=======================================================//
package/lib/index.js ADDED
@@ -0,0 +1,15 @@
1
+ //=======================================================//
2
+ import makeWASocket from "./Socket/index.js";
3
+ //=======================================================//
4
+ export * from "./Defaults/index.js";
5
+ export * from "./WABinary/index.js";
6
+ export * from "../WAProto/index.js";
7
+ export * from "./WAUSync/index.js";
8
+ export * from "./Store/index.js";
9
+ export * from "./Utils/index.js";
10
+ export * from "./Types/index.js";
11
+ export * from "./WAM/index.js";
12
+ //=======================================================//
13
+ export { makeWASocket };
14
+ export default makeWASocket;
15
+ //=======================================================//
package/package.json ADDED
@@ -0,0 +1,102 @@
1
+ {
2
+ "name": "@skyzopedia/baileys-mod",
3
+ "version": "3.0.2",
4
+ "description": "Websocket Whatsapp API for Node.js",
5
+ "keywords": [
6
+ "whatsapp",
7
+ "websocket",
8
+ "api",
9
+ "nodejs",
10
+ "baileys",
11
+ "wabot",
12
+ "proto",
13
+ "whatsapp-websocket"
14
+ ],
15
+ "homepage": "https://github.com/skyzopedia/Baileys",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+ssh://git@github.com/skyzopedia/Baileys.git"
19
+ },
20
+ "license": "MIT",
21
+ "author": "Skyzopedia",
22
+ "main": "./lib/index.js",
23
+ "files": [
24
+ "lib/*",
25
+ "WAProto/*"
26
+ ],
27
+ "scripts": {
28
+ "changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
29
+ "changelog:preview": "conventional-changelog -p angular -u",
30
+ "changelog:last": "conventional-changelog -p angular -r 2",
31
+ "gen:protobuf": "sh WAProto/GenerateStatics.sh",
32
+ "example": "node --inspect Example/example.js",
33
+ "lint": "eslint src --ext .js",
34
+ "lint:fix": "yarn lint --fix",
35
+ "release": "release-it",
36
+ "test": "jest"
37
+ },
38
+ "dependencies": {
39
+ "@whiskeysockets/eslint-config": "github:whiskeysockets/eslint-config",
40
+ "@cacheable/node-cache": "*",
41
+ "gradient-string": "2.0.2",
42
+ "libsignal-xeuka": "*",
43
+ "moment-timezone": "*",
44
+ "music-metadata": "*",
45
+ "cache-manager": "*",
46
+ "async-mutex": "*",
47
+ "@hapi/boom": "*",
48
+ "pbjs": "^0.0.14",
49
+ "protobufjs": "*",
50
+ "lru-cache": "*",
51
+ "readline": "*",
52
+ "p-queue": "*",
53
+ "lodash": "*",
54
+ "figlet": "*",
55
+ "axios": "*",
56
+ "path": "*",
57
+ "pino": "*",
58
+ "ws": "*",
59
+ "fs": "*",
60
+ "os": "*"
61
+ },
62
+ "devDependencies": {
63
+ "conventional-changelog-cli": "*",
64
+ "link-preview-js": "*",
65
+ "protobufjs-cli": "*",
66
+ "cache-manager": "*",
67
+ "@types/jest": "*",
68
+ "@types/node": "*",
69
+ "release-it": "*",
70
+ "@types/ws": "*",
71
+ "eslint": "*",
72
+ "jest": "*",
73
+ "json": "*",
74
+ "open": "*"
75
+ },
76
+ "peerDependencies": {
77
+ "link-preview-js": "*",
78
+ "audio-decode": "*",
79
+ "jimp": ">=0.16.0"
80
+ },
81
+ "peerDependenciesMeta": {
82
+ "audio-decode": {
83
+ "optional": true
84
+ },
85
+ "jimp": {
86
+ "optional": true
87
+ },
88
+ "link-preview-js": {
89
+ "optional": true
90
+ }
91
+ },
92
+ "packageManager": "yarn@1.22.19",
93
+ "engines": {
94
+ "node": ">=20.0.0"
95
+ },
96
+ "directories": {
97
+ "lib": "lib"
98
+ },
99
+ "bugs": {
100
+ "url": "https://github.com/skyzopedia/Baileys/issues"
101
+ }
102
+ }