gifted-baileys 1.5.6 → 1.5.7

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 (252) hide show
  1. package/README.md +9 -0
  2. package/WAProto/WAProto.proto +969 -88
  3. package/WAProto/index.d.ts +13199 -1260
  4. package/WAProto/index.js +124901 -74525
  5. package/lib/Defaults/baileys-version.json +3 -0
  6. package/lib/Defaults/index.d.ts +284 -0
  7. package/{src → lib}/Defaults/index.js +7 -14
  8. package/lib/Signal/libsignal.d.ts +3 -0
  9. package/lib/Signal/libsignal.js +161 -0
  10. package/lib/Socket/Client/abstract-socket-client.d.ts +15 -0
  11. package/lib/Socket/Client/index.d.ts +2 -0
  12. package/{src → lib}/Socket/Client/index.js +2 -3
  13. package/lib/Socket/Client/mobile-socket-client.d.ts +12 -0
  14. package/lib/Socket/Client/mobile-socket-client.js +65 -0
  15. package/lib/Socket/Client/types.d.ts +17 -0
  16. package/lib/Socket/Client/types.js +13 -0
  17. package/lib/Socket/Client/websocket.d.ts +12 -0
  18. package/lib/Socket/Client/websocket.js +62 -0
  19. package/lib/Socket/business.d.ts +170 -0
  20. package/{src → lib}/Socket/business.js +28 -33
  21. package/lib/Socket/chats.d.ts +81 -0
  22. package/{src → lib}/Socket/chats.js +174 -176
  23. package/lib/Socket/groups.d.ts +115 -0
  24. package/{src → lib}/Socket/groups.js +80 -68
  25. package/lib/Socket/index.d.ts +172 -0
  26. package/{src → lib}/Socket/index.js +4 -1
  27. package/lib/Socket/messages-recv.d.ts +158 -0
  28. package/{src → lib}/Socket/messages-recv.js +378 -211
  29. package/lib/Socket/messages-send.d.ts +155 -0
  30. package/{src → lib}/Socket/messages-send.js +452 -177
  31. package/lib/Socket/newsletter.d.ts +132 -0
  32. package/{src → lib}/Socket/newsletter.js +107 -98
  33. package/lib/Socket/registration.d.ts +264 -0
  34. package/{src → lib}/Socket/registration.js +56 -48
  35. package/lib/Socket/socket.d.ts +44 -0
  36. package/{src → lib}/Socket/socket.js +77 -77
  37. package/lib/Socket/usync.d.ts +37 -0
  38. package/lib/Socket/usync.js +70 -0
  39. package/lib/Store/index.d.ts +3 -0
  40. package/lib/Store/make-cache-manager-store.d.ts +14 -0
  41. package/{src → lib}/Store/make-cache-manager-store.js +25 -34
  42. package/lib/Store/make-in-memory-store.d.ts +118 -0
  43. package/{src → lib}/Store/make-in-memory-store.js +36 -32
  44. package/lib/Store/make-ordered-dictionary.d.ts +13 -0
  45. package/lib/Store/object-repository.d.ts +10 -0
  46. package/{src → lib}/Store/object-repository.js +1 -1
  47. package/lib/Types/Auth.d.ts +109 -0
  48. package/lib/Types/Call.d.ts +13 -0
  49. package/lib/Types/Chat.d.ts +107 -0
  50. package/{src/Types/Contact.ts → lib/Types/Contact.d.ts} +8 -9
  51. package/lib/Types/Events.d.ts +172 -0
  52. package/lib/Types/GroupMetadata.d.ts +56 -0
  53. package/lib/Types/Label.d.ts +46 -0
  54. package/{src/Types/LabelAssociation.ts → lib/Types/LabelAssociation.d.ts} +16 -22
  55. package/lib/Types/Message.d.ts +433 -0
  56. package/lib/Types/Newsletter.d.ts +92 -0
  57. package/lib/Types/Product.d.ts +78 -0
  58. package/lib/Types/Signal.d.ts +57 -0
  59. package/{src/Types/Socket.ts → lib/Types/Socket.d.ts} +61 -68
  60. package/lib/Types/State.d.ts +27 -0
  61. package/lib/Types/USync.d.ts +25 -0
  62. package/lib/Types/index.d.ts +66 -0
  63. package/lib/Utils/auth-utils.d.ts +18 -0
  64. package/{src → lib}/Utils/auth-utils.js +73 -90
  65. package/lib/Utils/baileys-event-stream.d.ts +16 -0
  66. package/lib/Utils/baileys-event-stream.js +63 -0
  67. package/lib/Utils/business.d.ts +22 -0
  68. package/{src → lib}/Utils/business.js +15 -43
  69. package/lib/Utils/chat-utils.d.ts +70 -0
  70. package/{src → lib}/Utils/chat-utils.js +87 -94
  71. package/lib/Utils/crypto.d.ts +40 -0
  72. package/{src → lib}/Utils/crypto.js +4 -2
  73. package/lib/Utils/decode-wa-message.d.ts +36 -0
  74. package/lib/Utils/decode-wa-message.js +226 -0
  75. package/lib/Utils/event-buffer.d.ts +35 -0
  76. package/{src → lib}/Utils/event-buffer.js +4 -13
  77. package/lib/Utils/generics.d.ts +88 -0
  78. package/{src → lib}/Utils/generics.js +67 -86
  79. package/lib/Utils/history.d.ts +19 -0
  80. package/{src → lib}/Utils/history.js +13 -39
  81. package/lib/Utils/index.d.ts +17 -0
  82. package/lib/Utils/link-preview.d.ts +21 -0
  83. package/{src → lib}/Utils/link-preview.js +17 -54
  84. package/lib/Utils/logger.d.ts +2 -0
  85. package/lib/Utils/lt-hash.d.ts +12 -0
  86. package/lib/Utils/make-mutex.d.ts +7 -0
  87. package/{src → lib}/Utils/make-mutex.js +4 -13
  88. package/lib/Utils/messages-media.d.ts +113 -0
  89. package/{src → lib}/Utils/messages-media.js +193 -255
  90. package/lib/Utils/messages.d.ts +77 -0
  91. package/{src → lib}/Utils/messages.js +588 -118
  92. package/lib/Utils/noise-handler.d.ts +20 -0
  93. package/lib/Utils/process-message.d.ts +41 -0
  94. package/{src → lib}/Utils/process-message.js +27 -30
  95. package/lib/Utils/signal.d.ts +33 -0
  96. package/{src → lib}/Utils/signal.js +25 -42
  97. package/lib/Utils/use-multi-file-auth-state.d.ts +12 -0
  98. package/{src → lib}/Utils/use-multi-file-auth-state.js +27 -28
  99. package/lib/Utils/validate-connection.d.ts +11 -0
  100. package/{src → lib}/Utils/validate-connection.js +40 -9
  101. package/lib/WABinary/constants.d.ts +27 -0
  102. package/lib/WABinary/decode.d.ts +6 -0
  103. package/lib/WABinary/encode.d.ts +2 -0
  104. package/{src → lib}/WABinary/encode.js +16 -10
  105. package/lib/WABinary/generic-utils.d.ts +14 -0
  106. package/lib/WABinary/index.d.ts +5 -0
  107. package/lib/WABinary/jid-utils.d.ts +31 -0
  108. package/lib/WABinary/types.d.ts +18 -0
  109. package/lib/WABinary/types.js +2 -0
  110. package/lib/WAM/BinaryInfo.d.ts +8 -0
  111. package/lib/WAM/constants.d.ts +38 -0
  112. package/lib/WAM/encode.d.ts +2 -0
  113. package/lib/WAM/index.d.ts +3 -0
  114. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +9 -0
  115. package/lib/WAUSync/Protocols/USyncContactProtocol.js +32 -0
  116. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +22 -0
  117. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +57 -0
  118. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +12 -0
  119. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +30 -0
  120. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +12 -0
  121. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +42 -0
  122. package/lib/WAUSync/Protocols/index.d.ts +4 -0
  123. package/lib/WAUSync/Protocols/index.js +20 -0
  124. package/lib/WAUSync/USyncQuery.d.ts +26 -0
  125. package/lib/WAUSync/USyncQuery.js +79 -0
  126. package/lib/WAUSync/USyncUser.d.ts +10 -0
  127. package/lib/WAUSync/USyncUser.js +22 -0
  128. package/lib/WAUSync/index.d.ts +3 -0
  129. package/lib/WAUSync/index.js +19 -0
  130. package/{src → lib}/index.js +1 -0
  131. package/package.json +26 -8
  132. package/LICENSE +0 -21
  133. package/src/Defaults/baileys-version.json +0 -3
  134. package/src/Defaults/index.ts +0 -131
  135. package/src/README.md +0 -1
  136. package/src/Signal/libsignal.js +0 -180
  137. package/src/Signal/libsignal.ts +0 -141
  138. package/src/Socket/Client/abstract-socket-client.ts +0 -19
  139. package/src/Socket/Client/index.ts +0 -3
  140. package/src/Socket/Client/mobile-socket-client.js +0 -78
  141. package/src/Socket/Client/mobile-socket-client.ts +0 -66
  142. package/src/Socket/Client/web-socket-client.js +0 -75
  143. package/src/Socket/Client/web-socket-client.ts +0 -57
  144. package/src/Socket/business.ts +0 -281
  145. package/src/Socket/chats.ts +0 -1030
  146. package/src/Socket/groups.ts +0 -356
  147. package/src/Socket/index.ts +0 -13
  148. package/src/Socket/messages-recv.ts +0 -985
  149. package/src/Socket/messages-send.ts +0 -871
  150. package/src/Socket/newsletter.ts +0 -282
  151. package/src/Socket/registration.ts +0 -250
  152. package/src/Socket/socket.ts +0 -777
  153. package/src/Store/index.ts +0 -3
  154. package/src/Store/make-cache-manager-store.ts +0 -100
  155. package/src/Store/make-in-memory-store.ts +0 -475
  156. package/src/Store/make-ordered-dictionary.ts +0 -86
  157. package/src/Store/object-repository.ts +0 -32
  158. package/src/Tests/test.app-state-sync.js +0 -204
  159. package/src/Tests/test.app-state-sync.ts +0 -207
  160. package/src/Tests/test.event-buffer.js +0 -270
  161. package/src/Tests/test.event-buffer.ts +0 -319
  162. package/src/Tests/test.key-store.js +0 -76
  163. package/src/Tests/test.key-store.ts +0 -92
  164. package/src/Tests/test.libsignal.js +0 -141
  165. package/src/Tests/test.libsignal.ts +0 -186
  166. package/src/Tests/test.media-download.js +0 -93
  167. package/src/Tests/test.media-download.ts +0 -76
  168. package/src/Tests/test.messages.js +0 -33
  169. package/src/Tests/test.messages.ts +0 -37
  170. package/src/Tests/utils.js +0 -34
  171. package/src/Tests/utils.ts +0 -36
  172. package/src/Types/Auth.ts +0 -113
  173. package/src/Types/Call.ts +0 -15
  174. package/src/Types/Chat.ts +0 -106
  175. package/src/Types/Events.ts +0 -93
  176. package/src/Types/GroupMetadata.ts +0 -53
  177. package/src/Types/Label.ts +0 -36
  178. package/src/Types/Message.ts +0 -288
  179. package/src/Types/Newsletter.ts +0 -98
  180. package/src/Types/Product.ts +0 -85
  181. package/src/Types/Signal.ts +0 -68
  182. package/src/Types/State.ts +0 -29
  183. package/src/Types/index.ts +0 -59
  184. package/src/Utils/auth-utils.ts +0 -222
  185. package/src/Utils/baileys-event-stream.js +0 -92
  186. package/src/Utils/baileys-event-stream.ts +0 -66
  187. package/src/Utils/business.ts +0 -275
  188. package/src/Utils/chat-utils.ts +0 -860
  189. package/src/Utils/crypto.ts +0 -131
  190. package/src/Utils/decode-wa-message.js +0 -211
  191. package/src/Utils/decode-wa-message.ts +0 -228
  192. package/src/Utils/event-buffer.ts +0 -613
  193. package/src/Utils/generics.ts +0 -434
  194. package/src/Utils/history.ts +0 -112
  195. package/src/Utils/index.ts +0 -17
  196. package/src/Utils/link-preview.ts +0 -122
  197. package/src/Utils/logger.ts +0 -3
  198. package/src/Utils/lt-hash.ts +0 -61
  199. package/src/Utils/make-mutex.ts +0 -44
  200. package/src/Utils/messages-media.ts +0 -847
  201. package/src/Utils/messages.ts +0 -956
  202. package/src/Utils/noise-handler.ts +0 -197
  203. package/src/Utils/process-message.ts +0 -414
  204. package/src/Utils/signal.ts +0 -177
  205. package/src/Utils/use-multi-file-auth-state.ts +0 -90
  206. package/src/Utils/validate-connection.ts +0 -238
  207. package/src/WABinary/constants.ts +0 -42
  208. package/src/WABinary/decode.ts +0 -265
  209. package/src/WABinary/encode.ts +0 -236
  210. package/src/WABinary/generic-utils.ts +0 -121
  211. package/src/WABinary/index.ts +0 -5
  212. package/src/WABinary/jid-utils.ts +0 -68
  213. package/src/WABinary/types.ts +0 -17
  214. package/src/WAM/BinaryInfo.ts +0 -12
  215. package/src/WAM/constants.ts +0 -15382
  216. package/src/WAM/encode.ts +0 -174
  217. package/src/WAM/index.ts +0 -3
  218. package/src/gifted +0 -1
  219. package/src/index.ts +0 -13
  220. /package/{src → lib}/Defaults/phonenumber-mcc.json +0 -0
  221. /package/{src → lib}/Socket/Client/abstract-socket-client.js +0 -0
  222. /package/{src → lib}/Store/index.js +0 -0
  223. /package/{src → lib}/Store/make-ordered-dictionary.js +0 -0
  224. /package/{src → lib}/Types/Auth.js +0 -0
  225. /package/{src → lib}/Types/Call.js +0 -0
  226. /package/{src → lib}/Types/Chat.js +0 -0
  227. /package/{src → lib}/Types/Contact.js +0 -0
  228. /package/{src → lib}/Types/Events.js +0 -0
  229. /package/{src → lib}/Types/GroupMetadata.js +0 -0
  230. /package/{src → lib}/Types/Label.js +0 -0
  231. /package/{src → lib}/Types/LabelAssociation.js +0 -0
  232. /package/{src → lib}/Types/Message.js +0 -0
  233. /package/{src → lib}/Types/Newsletter.js +0 -0
  234. /package/{src → lib}/Types/Product.js +0 -0
  235. /package/{src → lib}/Types/Signal.js +0 -0
  236. /package/{src → lib}/Types/Socket.js +0 -0
  237. /package/{src → lib}/Types/State.js +0 -0
  238. /package/{src/WABinary/types.js → lib/Types/USync.js} +0 -0
  239. /package/{src → lib}/Types/index.js +0 -0
  240. /package/{src → lib}/Utils/index.js +0 -0
  241. /package/{src → lib}/Utils/logger.js +0 -0
  242. /package/{src → lib}/Utils/lt-hash.js +0 -0
  243. /package/{src → lib}/Utils/noise-handler.js +0 -0
  244. /package/{src → lib}/WABinary/constants.js +0 -0
  245. /package/{src → lib}/WABinary/decode.js +0 -0
  246. /package/{src → lib}/WABinary/generic-utils.js +0 -0
  247. /package/{src → lib}/WABinary/index.js +0 -0
  248. /package/{src → lib}/WABinary/jid-utils.js +0 -0
  249. /package/{src → lib}/WAM/BinaryInfo.js +0 -0
  250. /package/{src → lib}/WAM/constants.js +0 -0
  251. /package/{src → lib}/WAM/encode.js +0 -0
  252. /package/{src → lib}/WAM/index.js +0 -0
package/src/WAM/encode.ts DELETED
@@ -1,174 +0,0 @@
1
- import { BinaryInfo } from './BinaryInfo'
2
- import { FLAG_BYTE, FLAG_EVENT, FLAG_EXTENDED, FLAG_FIELD, FLAG_GLOBAL, WEB_EVENTS, WEB_GLOBALS } from './constants'
3
-
4
- const getHeaderBitLength = (key: number) => (key < 256 ? 2 : 3)
5
- type Value = number | null | string
6
-
7
-
8
- export const encodeWAM = (binaryInfo: BinaryInfo) => {
9
- binaryInfo.buffer = []
10
-
11
- encodeWAMHeader(binaryInfo)
12
- encodeEvents(binaryInfo)
13
-
14
- console.log(binaryInfo.buffer)
15
- const totalSize = binaryInfo.buffer
16
- .map((a) => a.length)
17
- .reduce((a, b) => a + b)
18
- const buffer = Buffer.alloc(totalSize)
19
- let offset = 0
20
- binaryInfo.buffer.forEach((buffer_) => {
21
- buffer_.copy(buffer, offset)
22
- offset += buffer_.length
23
- })
24
-
25
- return buffer
26
- }
27
-
28
- function encodeWAMHeader(binaryInfo: BinaryInfo) {
29
- const headerBuffer = Buffer.alloc(8) // starting buffer
30
- headerBuffer.write('WAM', 0, 'utf8')
31
- headerBuffer.writeUInt8(binaryInfo.protocolVersion, 3)
32
- headerBuffer.writeUInt8(1, 4) //random flag
33
- headerBuffer.writeUInt16BE(binaryInfo.sequence, 5)
34
- headerBuffer.writeUInt8(0, 7) // regular channel
35
-
36
- binaryInfo.buffer.push(headerBuffer)
37
- }
38
-
39
- function encodeGlobalAttributes(binaryInfo: BinaryInfo, globals: {[key: string]: Value}) {
40
- for(const [key, _value] of Object.entries(globals)) {
41
- const id = WEB_GLOBALS.find(a => a?.name === key)!.id
42
- let value = _value
43
- if(typeof value === 'boolean') {
44
- value = value ? 1 : 0
45
- }
46
-
47
- binaryInfo.buffer.push(serializeData(id, value, FLAG_GLOBAL))
48
- }
49
- }
50
-
51
- function encodeEvents(binaryInfo: BinaryInfo) {
52
- for(const [
53
- name,
54
- { props, globals },
55
- ] of binaryInfo.events.map((a) => Object.entries(a)[0])) {
56
- encodeGlobalAttributes(binaryInfo, globals)
57
- const event = WEB_EVENTS.find((a) => a.name === name)!
58
-
59
- const props_ = Object.entries(props)
60
-
61
- let extended = false
62
-
63
- for(const [, value] of props_) {
64
- extended ||= value !== null
65
- }
66
-
67
- const eventFlag = extended ? FLAG_EVENT : FLAG_EVENT | FLAG_EXTENDED
68
- binaryInfo.buffer.push(serializeData(event.id, -event.weight, eventFlag))
69
-
70
- for(let i = 0; i < props_.length; i++) {
71
- const [key, _value] = props_[i]
72
- const id = (event.props)[key][0]
73
- extended = i < (props_.length - 1)
74
- let value = _value
75
- if(typeof value === 'boolean') {
76
- value = value ? 1 : 0
77
- }
78
-
79
- const fieldFlag = extended ? FLAG_EVENT : FLAG_FIELD | FLAG_EXTENDED
80
- binaryInfo.buffer.push(serializeData(id, value as Value, fieldFlag))
81
- }
82
- }
83
- }
84
-
85
-
86
- function serializeData(key: number, value: Value, flag: number): Buffer {
87
- const bufferLength = getHeaderBitLength(key)
88
- let buffer: Buffer
89
- let offset = 0
90
- if(value === null) {
91
- if(flag === FLAG_GLOBAL) {
92
- buffer = Buffer.alloc(bufferLength)
93
- offset = serializeHeader(buffer, offset, key, flag)
94
- return buffer
95
- }
96
- } else if(typeof value === 'number' && Number.isInteger(value)) {
97
- // is number
98
- if(value === 0 || value === 1) {
99
- buffer = Buffer.alloc(bufferLength)
100
- offset = serializeHeader(buffer, offset, key, flag | ((value + 1) << 4))
101
- return buffer
102
- } else if(-128 <= value && value < 128) {
103
- buffer = Buffer.alloc(bufferLength + 1)
104
- offset = serializeHeader(buffer, offset, key, flag | (3 << 4))
105
- buffer.writeInt8(value, offset)
106
- return buffer
107
- } else if(-32768 <= value && value < 32768) {
108
- buffer = Buffer.alloc(bufferLength + 2)
109
- offset = serializeHeader(buffer, offset, key, flag | (4 << 4))
110
- buffer.writeInt16LE(value, offset)
111
- return buffer
112
- } else if(-2147483648 <= value && value < 2147483648) {
113
- buffer = Buffer.alloc(bufferLength + 4)
114
- offset = serializeHeader(buffer, offset, key, flag | (5 << 4))
115
- buffer.writeInt32LE(value, offset)
116
- return buffer
117
- } else {
118
- buffer = Buffer.alloc(bufferLength + 8)
119
- offset = serializeHeader(buffer, offset, key, flag | (7 << 4))
120
- buffer.writeDoubleLE(value, offset)
121
- return buffer
122
- }
123
- } else if(typeof value === 'number') {
124
- // is float
125
- buffer = Buffer.alloc(bufferLength + 8)
126
- offset = serializeHeader(buffer, offset, key, flag | (7 << 4))
127
- buffer.writeDoubleLE(value, offset)
128
- return buffer
129
- } else if(typeof value === 'string') {
130
- // is string
131
- const utf8Bytes = Buffer.byteLength(value, 'utf8')
132
- if(utf8Bytes < 256) {
133
- buffer = Buffer.alloc(bufferLength + 1 + utf8Bytes)
134
- offset = serializeHeader(buffer, offset, key, flag | (8 << 4))
135
- buffer.writeUint8(utf8Bytes, offset++)
136
- } else if(utf8Bytes < 65536) {
137
- buffer = Buffer.alloc(bufferLength + 2 + utf8Bytes)
138
- offset = serializeHeader(buffer, offset, key, flag | (9 << 4))
139
- buffer.writeUInt16LE(utf8Bytes, offset)
140
- offset += 2
141
- } else {
142
- buffer = Buffer.alloc(bufferLength + 4 + utf8Bytes)
143
- offset = serializeHeader(buffer, offset, key, flag | (10 << 4))
144
- buffer.writeUInt32LE(utf8Bytes, offset)
145
- offset += 4
146
- }
147
-
148
- buffer.write(value, offset, 'utf8')
149
- return buffer
150
- }
151
-
152
- throw 'missing'
153
- }
154
-
155
- function serializeHeader(
156
- buffer: Buffer,
157
- offset: number,
158
- key: number,
159
- flag: number
160
- ) {
161
- if(key < 256) {
162
- buffer.writeUInt8(flag, offset)
163
- offset += 1
164
- buffer.writeUInt8(key, offset)
165
- offset += 1
166
- } else {
167
- buffer.writeUInt8(flag | FLAG_BYTE, offset)
168
- offset += 1
169
- buffer.writeUInt16LE(key, offset)
170
- offset += 2
171
- }
172
-
173
- return offset
174
- }
package/src/WAM/index.ts DELETED
@@ -1,3 +0,0 @@
1
- export * from './constants'
2
- export * from './encode'
3
- export * from './BinaryInfo'
package/src/gifted DELETED
@@ -1 +0,0 @@
1
-
package/src/index.ts DELETED
@@ -1,13 +0,0 @@
1
- import makeWASocket from './Socket'
2
-
3
- export * from '../WAProto'
4
- export * from './Utils'
5
- export * from './Types'
6
- export * from './Store'
7
- export * from './Defaults'
8
- export * from './WABinary'
9
- export * from './WAM'
10
-
11
- export type WASocket = ReturnType<typeof makeWASocket>
12
- export { makeWASocket }
13
- export default makeWASocket
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes