@fazzcode/baileys 0.1.6 → 2.0.6

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 (209) hide show
  1. package/LICENSE +21 -0
  2. package/WAProto/WAProto.proto +5311 -0
  3. package/WAProto/index.js +83385 -119575
  4. package/lib/Defaults/index.js +117 -124
  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 +12 -14
  9. package/lib/Signal/Group/group-session-builder.js +10 -42
  10. package/lib/Signal/Group/group_cipher.js +75 -87
  11. package/lib/Signal/Group/index.js +13 -57
  12. package/lib/Signal/Group/keyhelper.js +17 -52
  13. package/lib/Signal/Group/sender-chain-key.js +27 -33
  14. package/lib/Signal/Group/sender-key-distribution-message.js +62 -63
  15. package/lib/Signal/Group/sender-key-message.js +65 -66
  16. package/lib/Signal/Group/sender-key-name.js +45 -44
  17. package/lib/Signal/Group/sender-key-record.js +39 -49
  18. package/lib/Signal/Group/sender-key-state.js +80 -93
  19. package/lib/Signal/Group/sender-message-key.js +27 -28
  20. package/lib/Signal/libsignal.js +313 -163
  21. package/lib/Signal/lid-mapping.js +155 -0
  22. package/lib/Socket/Client/index.js +4 -19
  23. package/lib/Socket/Client/types.js +13 -0
  24. package/lib/Socket/Client/websocket.js +52 -0
  25. package/lib/Socket/business.js +359 -242
  26. package/lib/Socket/chats.js +851 -830
  27. package/lib/Socket/communities.js +413 -0
  28. package/lib/Socket/groups.js +304 -309
  29. package/lib/Socket/index.js +15 -9
  30. package/lib/Socket/messages-recv.js +1107 -1054
  31. package/lib/Socket/messages-send.js +709 -414
  32. package/lib/Socket/mex.js +45 -0
  33. package/lib/Socket/newsletter.js +232 -318
  34. package/lib/Socket/socket.js +789 -599
  35. package/lib/Store/index.js +6 -10
  36. package/lib/Store/make-cache-manager-store.js +73 -81
  37. package/lib/Store/make-in-memory-store.js +286 -423
  38. package/lib/Store/make-ordered-dictionary.js +77 -79
  39. package/lib/Store/object-repository.js +24 -26
  40. package/lib/Types/Auth.js +3 -2
  41. package/lib/Types/Bussines.js +3 -0
  42. package/lib/Types/Call.js +3 -2
  43. package/lib/Types/Chat.js +9 -4
  44. package/lib/Types/Contact.js +3 -2
  45. package/lib/Types/Events.js +3 -2
  46. package/lib/Types/GroupMetadata.js +3 -2
  47. package/lib/Types/Label.js +24 -26
  48. package/lib/Types/LabelAssociation.js +6 -8
  49. package/lib/Types/Message.js +12 -9
  50. package/lib/Types/Newsletter.js +31 -30
  51. package/lib/Types/Newsletter.js.bak +33 -0
  52. package/lib/Types/Product.js +3 -2
  53. package/lib/Types/Signal.js +3 -2
  54. package/lib/Types/Socket.js +4 -2
  55. package/lib/Types/State.js +11 -2
  56. package/lib/Types/USync.js +3 -2
  57. package/lib/Types/index.js +27 -41
  58. package/lib/Utils/auth-utils.js +211 -198
  59. package/lib/Utils/baileys-event-stream.js +42 -61
  60. package/lib/Utils/browser-utils.js +25 -0
  61. package/lib/Utils/business.js +213 -214
  62. package/lib/Utils/chat-utils.js +710 -687
  63. package/lib/Utils/crypto.js +112 -133
  64. package/lib/Utils/decode-wa-message.js +252 -183
  65. package/lib/Utils/event-buffer.js +510 -496
  66. package/lib/Utils/generics.js +328 -356
  67. package/lib/Utils/history.js +83 -92
  68. package/lib/Utils/index.js +21 -33
  69. package/lib/Utils/link-preview.js +71 -83
  70. package/lib/Utils/logger.js +5 -7
  71. package/lib/Utils/lt-hash.js +40 -46
  72. package/lib/Utils/make-mutex.js +34 -41
  73. package/lib/Utils/message-retry-manager.js +113 -0
  74. package/lib/Utils/messages-media.js +548 -678
  75. package/lib/Utils/messages.js +352 -249
  76. package/lib/Utils/noise-handler.js +138 -149
  77. package/lib/Utils/pre-key-manager.js +85 -0
  78. package/lib/Utils/process-message.js +323 -303
  79. package/lib/Utils/signal.js +148 -138
  80. package/lib/Utils/use-multi-file-auth-state.js +98 -67
  81. package/lib/Utils/validate-connection.js +183 -188
  82. package/lib/WABinary/constants.js +1298 -35
  83. package/lib/WABinary/decode.js +237 -249
  84. package/lib/WABinary/encode.js +208 -218
  85. package/lib/WABinary/generic-utils.js +53 -57
  86. package/lib/WABinary/index.js +7 -21
  87. package/lib/WABinary/jid-utils.js +89 -58
  88. package/lib/WABinary/types.js +3 -2
  89. package/lib/WAM/BinaryInfo.js +10 -12
  90. package/lib/WAM/constants.js +22851 -15348
  91. package/lib/WAM/encode.js +135 -136
  92. package/lib/WAM/index.js +5 -19
  93. package/lib/WAUSync/Protocols/USyncContactProtocol.js +28 -30
  94. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +49 -53
  95. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +27 -28
  96. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +36 -39
  97. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +50 -50
  98. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +26 -20
  99. package/lib/WAUSync/Protocols/index.js +6 -20
  100. package/lib/WAUSync/USyncQuery.js +86 -85
  101. package/lib/WAUSync/USyncUser.js +23 -25
  102. package/lib/WAUSync/index.js +5 -19
  103. package/lib/index.js +32 -34
  104. package/package.json +99 -105
  105. package/README.MD +0 -121
  106. package/engine-requirements.js +0 -10
  107. package/lib/Defaults/baileys-version.json +0 -3
  108. package/lib/Defaults/index.d.ts +0 -53
  109. package/lib/Defaults/phonenumber-mcc.json +0 -223
  110. package/lib/Signal/Group/ciphertext-message.d.ts +0 -9
  111. package/lib/Signal/Group/group-session-builder.d.ts +0 -14
  112. package/lib/Signal/Group/group_cipher.d.ts +0 -17
  113. package/lib/Signal/Group/index.d.ts +0 -11
  114. package/lib/Signal/Group/keyhelper.d.ts +0 -10
  115. package/lib/Signal/Group/queue-job.d.ts +0 -1
  116. package/lib/Signal/Group/queue-job.js +0 -57
  117. package/lib/Signal/Group/sender-chain-key.d.ts +0 -13
  118. package/lib/Signal/Group/sender-key-distribution-message.d.ts +0 -16
  119. package/lib/Signal/Group/sender-key-message.d.ts +0 -18
  120. package/lib/Signal/Group/sender-key-name.d.ts +0 -17
  121. package/lib/Signal/Group/sender-key-record.d.ts +0 -30
  122. package/lib/Signal/Group/sender-key-state.d.ts +0 -38
  123. package/lib/Signal/Group/sender-message-key.d.ts +0 -11
  124. package/lib/Signal/libsignal.d.ts +0 -3
  125. package/lib/Socket/Client/abstract-socket-client.d.ts +0 -17
  126. package/lib/Socket/Client/abstract-socket-client.js +0 -13
  127. package/lib/Socket/Client/index.d.ts +0 -3
  128. package/lib/Socket/Client/mobile-socket-client.d.ts +0 -13
  129. package/lib/Socket/Client/mobile-socket-client.js +0 -65
  130. package/lib/Socket/Client/web-socket-client.d.ts +0 -12
  131. package/lib/Socket/Client/web-socket-client.js +0 -62
  132. package/lib/Socket/business.d.ts +0 -171
  133. package/lib/Socket/chats.d.ts +0 -80
  134. package/lib/Socket/dugong.d.ts +0 -219
  135. package/lib/Socket/dugong.js +0 -441
  136. package/lib/Socket/groups.d.ts +0 -115
  137. package/lib/Socket/index.d.ts +0 -173
  138. package/lib/Socket/messages-recv.d.ts +0 -161
  139. package/lib/Socket/messages-send.d.ts +0 -149
  140. package/lib/Socket/newsletter.d.ts +0 -134
  141. package/lib/Socket/registration.d.ts +0 -267
  142. package/lib/Socket/registration.js +0 -166
  143. package/lib/Socket/socket.d.ts +0 -43
  144. package/lib/Socket/usync.d.ts +0 -36
  145. package/lib/Socket/usync.js +0 -70
  146. package/lib/Store/index.d.ts +0 -3
  147. package/lib/Store/make-cache-manager-store.d.ts +0 -13
  148. package/lib/Store/make-in-memory-store.d.ts +0 -118
  149. package/lib/Store/make-ordered-dictionary.d.ts +0 -13
  150. package/lib/Store/object-repository.d.ts +0 -10
  151. package/lib/Types/Auth.d.ts +0 -110
  152. package/lib/Types/Call.d.ts +0 -13
  153. package/lib/Types/Chat.d.ts +0 -102
  154. package/lib/Types/Contact.d.ts +0 -19
  155. package/lib/Types/Events.d.ts +0 -157
  156. package/lib/Types/GroupMetadata.d.ts +0 -55
  157. package/lib/Types/Label.d.ts +0 -35
  158. package/lib/Types/LabelAssociation.d.ts +0 -29
  159. package/lib/Types/Message.d.ts +0 -273
  160. package/lib/Types/Newsletter.d.ts +0 -92
  161. package/lib/Types/Product.d.ts +0 -78
  162. package/lib/Types/Signal.d.ts +0 -57
  163. package/lib/Types/Socket.d.ts +0 -111
  164. package/lib/Types/State.d.ts +0 -27
  165. package/lib/Types/USync.d.ts +0 -25
  166. package/lib/Types/index.d.ts +0 -57
  167. package/lib/Utils/auth-utils.d.ts +0 -18
  168. package/lib/Utils/baileys-event-stream.d.ts +0 -16
  169. package/lib/Utils/business.d.ts +0 -22
  170. package/lib/Utils/chat-utils.d.ts +0 -71
  171. package/lib/Utils/crypto.d.ts +0 -41
  172. package/lib/Utils/decode-wa-message.d.ts +0 -19
  173. package/lib/Utils/event-buffer.d.ts +0 -35
  174. package/lib/Utils/generics.d.ts +0 -92
  175. package/lib/Utils/history.d.ts +0 -15
  176. package/lib/Utils/index.d.ts +0 -17
  177. package/lib/Utils/link-preview.d.ts +0 -21
  178. package/lib/Utils/logger.d.ts +0 -4
  179. package/lib/Utils/lt-hash.d.ts +0 -12
  180. package/lib/Utils/make-mutex.d.ts +0 -7
  181. package/lib/Utils/messages-media.d.ts +0 -116
  182. package/lib/Utils/messages.d.ts +0 -77
  183. package/lib/Utils/noise-handler.d.ts +0 -21
  184. package/lib/Utils/process-message.d.ts +0 -41
  185. package/lib/Utils/signal.d.ts +0 -32
  186. package/lib/Utils/use-multi-file-auth-state.d.ts +0 -13
  187. package/lib/Utils/validate-connection.d.ts +0 -11
  188. package/lib/WABinary/constants.d.ts +0 -27
  189. package/lib/WABinary/decode.d.ts +0 -7
  190. package/lib/WABinary/encode.d.ts +0 -3
  191. package/lib/WABinary/generic-utils.d.ts +0 -16
  192. package/lib/WABinary/index.d.ts +0 -5
  193. package/lib/WABinary/jid-utils.d.ts +0 -31
  194. package/lib/WABinary/types.d.ts +0 -18
  195. package/lib/WAM/BinaryInfo.d.ts +0 -17
  196. package/lib/WAM/constants.d.ts +0 -38
  197. package/lib/WAM/encode.d.ts +0 -3
  198. package/lib/WAM/index.d.ts +0 -3
  199. package/lib/WAUSync/Protocols/USyncContactProtocol.d.ts +0 -9
  200. package/lib/WAUSync/Protocols/USyncDeviceProtocol.d.ts +0 -22
  201. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.d.ts +0 -12
  202. package/lib/WAUSync/Protocols/USyncStatusProtocol.d.ts +0 -12
  203. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.d.ts +0 -25
  204. package/lib/WAUSync/Protocols/UsyncLIDProtocol.d.ts +0 -8
  205. package/lib/WAUSync/Protocols/index.d.ts +0 -4
  206. package/lib/WAUSync/USyncQuery.d.ts +0 -28
  207. package/lib/WAUSync/USyncUser.d.ts +0 -12
  208. package/lib/WAUSync/index.d.ts +0 -3
  209. package/lib/index.d.ts +0 -12
@@ -1,260 +1,377 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.makeBusinessSocket = void 0;
4
- const business_1 = require("../Utils/business");
5
- const WABinary_1 = require("../WABinary");
6
- const generic_utils_1 = require("../WABinary/generic-utils");
7
- const messages_recv_1 = require("./messages-recv");
8
- const makeBusinessSocket = (config) => {
9
- const sock = (0, messages_recv_1.makeMessagesRecvSocket)(config);
10
- const { authState, query, waUploadToServer } = sock;
11
- const getCatalog = async ({ jid, limit, cursor }) => {
12
- var _a;
13
- jid = jid || ((_a = authState.creds.me) === null || _a === void 0 ? void 0 : _a.id);
14
- jid = (0, WABinary_1.jidNormalizedUser)(jid);
15
- const queryParamNodes = [
1
+ //=======================================================//
2
+ import { parseCatalogNode, parseCollectionsNode, parseOrderDetailsNode, parseProductNode, toProductNode, uploadingNecessaryImagesOfProduct } from "../Utils/business.js";
3
+ import { jidNormalizedUser, S_WHATSAPP_NET } from "../WABinary/index.js";
4
+ import { getBinaryNodeChild } from "../WABinary/generic-utils.js";
5
+ import { makeMessagesRecvSocket } from "./messages-recv.js";
6
+ import { getRawMediaUploadData } from "../Utils/index.js";
7
+ //=======================================================//
8
+ export const makeBusinessSocket = (config) => {
9
+ const sock = makeMessagesRecvSocket(config);
10
+ const { authState, query, waUploadToServer } = sock;
11
+ const updateBussinesProfile = async (args) => {
12
+ const node = [];
13
+ const simpleFields = ["address", "email", "description"];
14
+ node.push(...simpleFields
15
+ .filter(key => args[key])
16
+ .map(key => ({
17
+ tag: key,
18
+ attrs: {},
19
+ content: args[key]
20
+ })));
21
+ if (args.websites) {
22
+ node.push(...args.websites.map(website => ({
23
+ tag: "website",
24
+ attrs: {},
25
+ content: website
26
+ })));
27
+ }
28
+ if (args.hours) {
29
+ node.push({
30
+ tag: "business_hours",
31
+ attrs: { timezone: args.hours.timezone },
32
+ content: args.hours.days.map(config => {
33
+ const base = {
34
+ tag: "business_hours_config",
35
+ attrs: { day_of_week: config.day, mode: config.mode }
36
+ };
37
+ if (config.mode === "specific_hours") {
38
+ return {
39
+ ...base,
40
+ attrs: {
41
+ ...base.attrs,
42
+ open_time: config.openTimeInMinutes,
43
+ close_time: config.closeTimeInMinutes
44
+ }
45
+ };
46
+ }
47
+ return base;
48
+ })
49
+ });
50
+ }
51
+ const result = await query({
52
+ tag: "iq",
53
+ attrs: {
54
+ to: S_WHATSAPP_NET,
55
+ type: "set",
56
+ xmlns: "w:biz"
57
+ },
58
+ content: [
59
+ {
60
+ tag: "business_profile",
61
+ attrs: {
62
+ v: "3",
63
+ mutation_type: "delta"
64
+ },
65
+ content: node
66
+ }
67
+ ]
68
+ });
69
+ return result;
70
+ };
71
+ const updateCoverPhoto = async (photo) => {
72
+ const { fileSha256, filePath } = await getRawMediaUploadData(photo, "biz-cover-photo");
73
+ const fileSha256B64 = fileSha256.toString("base64");
74
+ const { meta_hmac, fbid, ts } = await waUploadToServer(filePath, {
75
+ fileEncSha256B64: fileSha256B64,
76
+ mediaType: "biz-cover-photo"
77
+ });
78
+ await query({
79
+ tag: "iq",
80
+ attrs: {
81
+ to: S_WHATSAPP_NET,
82
+ type: "set",
83
+ xmlns: "w:biz"
84
+ },
85
+ content: [
86
+ {
87
+ tag: "business_profile",
88
+ attrs: {
89
+ v: "3",
90
+ mutation_type: "delta"
91
+ },
92
+ content: [
16
93
  {
17
- tag: 'limit',
18
- attrs: {},
19
- content: Buffer.from((limit || 10).toString())
94
+ tag: "cover_photo",
95
+ attrs: { id: String(fbid), op: "update", token: meta_hmac, ts: String(ts) }
96
+ }
97
+ ]
98
+ }
99
+ ]
100
+ });
101
+ return fbid;
102
+ };
103
+ const removeCoverPhoto = async (id) => {
104
+ return await query({
105
+ tag: "iq",
106
+ attrs: {
107
+ to: S_WHATSAPP_NET,
108
+ type: "set",
109
+ xmlns: "w:biz"
110
+ },
111
+ content: [
112
+ {
113
+ tag: "business_profile",
114
+ attrs: {
115
+ v: "3",
116
+ mutation_type: "delta"
117
+ },
118
+ content: [
119
+ {
120
+ tag: "cover_photo",
121
+ attrs: { op: "delete", id }
122
+ }
123
+ ]
124
+ }
125
+ ]
126
+ });
127
+ };
128
+ const getCatalog = async ({ jid, limit, cursor }) => {
129
+ jid = jid || authState.creds.me?.id;
130
+ jid = jidNormalizedUser(jid);
131
+ const queryParamNodes = [
132
+ {
133
+ tag: "limit",
134
+ attrs: {},
135
+ content: Buffer.from((limit || 10).toString())
136
+ },
137
+ {
138
+ tag: "width",
139
+ attrs: {},
140
+ content: Buffer.from("100")
141
+ },
142
+ {
143
+ tag: "height",
144
+ attrs: {},
145
+ content: Buffer.from("100")
146
+ }
147
+ ];
148
+ if (cursor) {
149
+ queryParamNodes.push({
150
+ tag: "after",
151
+ attrs: {},
152
+ content: cursor
153
+ });
154
+ }
155
+ const result = await query({
156
+ tag: "iq",
157
+ attrs: {
158
+ to: S_WHATSAPP_NET,
159
+ type: "get",
160
+ xmlns: "w:biz:catalog"
161
+ },
162
+ content: [
163
+ {
164
+ tag: "product_catalog",
165
+ attrs: {
166
+ jid,
167
+ allow_shop_source: "true"
168
+ },
169
+ content: queryParamNodes
170
+ }
171
+ ]
172
+ });
173
+ return parseCatalogNode(result);
174
+ };
175
+ const getCollections = async (jid, limit = 51) => {
176
+ jid = jid || authState.creds.me?.id;
177
+ jid = jidNormalizedUser(jid);
178
+ const result = await query({
179
+ tag: "iq",
180
+ attrs: {
181
+ to: S_WHATSAPP_NET,
182
+ type: "get",
183
+ xmlns: "w:biz:catalog",
184
+ smax_id: "35"
185
+ },
186
+ content: [
187
+ {
188
+ tag: "collections",
189
+ attrs: {
190
+ biz_jid: jid
191
+ },
192
+ content: [
193
+ {
194
+ tag: "collection_limit",
195
+ attrs: {},
196
+ content: Buffer.from(limit.toString())
20
197
  },
21
198
  {
22
- tag: 'width',
23
- attrs: {},
24
- content: Buffer.from('100')
199
+ tag: "item_limit",
200
+ attrs: {},
201
+ content: Buffer.from(limit.toString())
25
202
  },
26
203
  {
27
- tag: 'height',
28
- attrs: {},
29
- content: Buffer.from('100')
204
+ tag: "width",
205
+ attrs: {},
206
+ content: Buffer.from("100")
30
207
  },
31
- ];
32
- if (cursor) {
33
- queryParamNodes.push({
34
- tag: 'after',
35
- attrs: {},
36
- content: cursor
37
- });
208
+ {
209
+ tag: "height",
210
+ attrs: {},
211
+ content: Buffer.from("100")
212
+ }
213
+ ]
38
214
  }
39
- const result = await query({
40
- tag: 'iq',
41
- attrs: {
42
- to: WABinary_1.S_WHATSAPP_NET,
43
- type: 'get',
44
- xmlns: 'w:biz:catalog'
45
- },
46
- content: [
47
- {
48
- tag: 'product_catalog',
49
- attrs: {
50
- jid,
51
- 'allow_shop_source': 'true'
52
- },
53
- content: queryParamNodes
54
- }
55
- ]
56
- });
57
- return (0, business_1.parseCatalogNode)(result);
58
- };
59
- const getCollections = async (jid, limit = 51) => {
60
- var _a;
61
- jid = jid || ((_a = authState.creds.me) === null || _a === void 0 ? void 0 : _a.id);
62
- jid = (0, WABinary_1.jidNormalizedUser)(jid);
63
- const result = await query({
64
- tag: 'iq',
65
- attrs: {
66
- to: WABinary_1.S_WHATSAPP_NET,
67
- type: 'get',
68
- xmlns: 'w:biz:catalog',
69
- 'smax_id': '35'
70
- },
71
- content: [
215
+ ]
216
+ });
217
+ return parseCollectionsNode(result);
218
+ };
219
+ const getOrderDetails = async (orderId, tokenBase64) => {
220
+ const result = await query({
221
+ tag: "iq",
222
+ attrs: {
223
+ to: S_WHATSAPP_NET,
224
+ type: "get",
225
+ xmlns: "fb:thrift_iq",
226
+ smax_id: "5"
227
+ },
228
+ content: [
229
+ {
230
+ tag: "order",
231
+ attrs: {
232
+ op: "get",
233
+ id: orderId
234
+ },
235
+ content: [
236
+ {
237
+ tag: "image_dimensions",
238
+ attrs: {},
239
+ content: [
72
240
  {
73
- tag: 'collections',
74
- attrs: {
75
- 'biz_jid': jid,
76
- },
77
- content: [
78
- {
79
- tag: 'collection_limit',
80
- attrs: {},
81
- content: Buffer.from(limit.toString())
82
- },
83
- {
84
- tag: 'item_limit',
85
- attrs: {},
86
- content: Buffer.from(limit.toString())
87
- },
88
- {
89
- tag: 'width',
90
- attrs: {},
91
- content: Buffer.from('100')
92
- },
93
- {
94
- tag: 'height',
95
- attrs: {},
96
- content: Buffer.from('100')
97
- }
98
- ]
99
- }
100
- ]
101
- });
102
- return (0, business_1.parseCollectionsNode)(result);
103
- };
104
- const getOrderDetails = async (orderId, tokenBase64) => {
105
- const result = await query({
106
- tag: 'iq',
107
- attrs: {
108
- to: WABinary_1.S_WHATSAPP_NET,
109
- type: 'get',
110
- xmlns: 'fb:thrift_iq',
111
- 'smax_id': '5'
112
- },
113
- content: [
241
+ tag: "width",
242
+ attrs: {},
243
+ content: Buffer.from("100")
244
+ },
114
245
  {
115
- tag: 'order',
116
- attrs: {
117
- op: 'get',
118
- id: orderId
119
- },
120
- content: [
121
- {
122
- tag: 'image_dimensions',
123
- attrs: {},
124
- content: [
125
- {
126
- tag: 'width',
127
- attrs: {},
128
- content: Buffer.from('100')
129
- },
130
- {
131
- tag: 'height',
132
- attrs: {},
133
- content: Buffer.from('100')
134
- }
135
- ]
136
- },
137
- {
138
- tag: 'token',
139
- attrs: {},
140
- content: Buffer.from(tokenBase64)
141
- }
142
- ]
246
+ tag: "height",
247
+ attrs: {},
248
+ content: Buffer.from("100")
143
249
  }
144
- ]
145
- });
146
- return (0, business_1.parseOrderDetailsNode)(result);
147
- };
148
- const productUpdate = async (productId, update) => {
149
- update = await (0, business_1.uploadingNecessaryImagesOfProduct)(update, waUploadToServer);
150
- const editNode = (0, business_1.toProductNode)(productId, update);
151
- const result = await query({
152
- tag: 'iq',
153
- attrs: {
154
- to: WABinary_1.S_WHATSAPP_NET,
155
- type: 'set',
156
- xmlns: 'w:biz:catalog'
250
+ ]
157
251
  },
158
- content: [
159
- {
160
- tag: 'product_catalog_edit',
161
- attrs: { v: '1' },
162
- content: [
163
- editNode,
164
- {
165
- tag: 'width',
166
- attrs: {},
167
- content: '100'
168
- },
169
- {
170
- tag: 'height',
171
- attrs: {},
172
- content: '100'
173
- }
174
- ]
175
- }
176
- ]
177
- });
178
- const productCatalogEditNode = (0, generic_utils_1.getBinaryNodeChild)(result, 'product_catalog_edit');
179
- const productNode = (0, generic_utils_1.getBinaryNodeChild)(productCatalogEditNode, 'product');
180
- return (0, business_1.parseProductNode)(productNode);
181
- };
182
- const productCreate = async (create) => {
183
- // ensure isHidden is defined
184
- create.isHidden = !!create.isHidden;
185
- create = await (0, business_1.uploadingNecessaryImagesOfProduct)(create, waUploadToServer);
186
- const createNode = (0, business_1.toProductNode)(undefined, create);
187
- const result = await query({
188
- tag: 'iq',
189
- attrs: {
190
- to: WABinary_1.S_WHATSAPP_NET,
191
- type: 'set',
192
- xmlns: 'w:biz:catalog'
252
+ {
253
+ tag: "token",
254
+ attrs: {},
255
+ content: Buffer.from(tokenBase64)
256
+ }
257
+ ]
258
+ }
259
+ ]
260
+ });
261
+ return parseOrderDetailsNode(result);
262
+ };
263
+ const productUpdate = async (productId, update) => {
264
+ update = await uploadingNecessaryImagesOfProduct(update, waUploadToServer);
265
+ const editNode = toProductNode(productId, update);
266
+ const result = await query({
267
+ tag: "iq",
268
+ attrs: {
269
+ to: S_WHATSAPP_NET,
270
+ type: "set",
271
+ xmlns: "w:biz:catalog"
272
+ },
273
+ content: [
274
+ {
275
+ tag: "product_catalog_edit",
276
+ attrs: { v: "1" },
277
+ content: [
278
+ editNode,
279
+ {
280
+ tag: "width",
281
+ attrs: {},
282
+ content: "100"
193
283
  },
194
- content: [
195
- {
196
- tag: 'product_catalog_add',
197
- attrs: { v: '1' },
198
- content: [
199
- createNode,
200
- {
201
- tag: 'width',
202
- attrs: {},
203
- content: '100'
204
- },
205
- {
206
- tag: 'height',
207
- attrs: {},
208
- content: '100'
209
- }
210
- ]
211
- }
212
- ]
213
- });
214
- const productCatalogAddNode = (0, generic_utils_1.getBinaryNodeChild)(result, 'product_catalog_add');
215
- const productNode = (0, generic_utils_1.getBinaryNodeChild)(productCatalogAddNode, 'product');
216
- return (0, business_1.parseProductNode)(productNode);
217
- };
218
- const productDelete = async (productIds) => {
219
- const result = await query({
220
- tag: 'iq',
221
- attrs: {
222
- to: WABinary_1.S_WHATSAPP_NET,
223
- type: 'set',
224
- xmlns: 'w:biz:catalog'
284
+ {
285
+ tag: "height",
286
+ attrs: {},
287
+ content: "100"
288
+ }
289
+ ]
290
+ }
291
+ ]
292
+ });
293
+ const productCatalogEditNode = getBinaryNodeChild(result, "product_catalog_edit");
294
+ const productNode = getBinaryNodeChild(productCatalogEditNode, "product");
295
+ return parseProductNode(productNode);
296
+ };
297
+ const productCreate = async (create) => {
298
+ create.isHidden = !!create.isHidden;
299
+ create = await uploadingNecessaryImagesOfProduct(create, waUploadToServer);
300
+ const createNode = toProductNode(undefined, create);
301
+ const result = await query({
302
+ tag: "iq",
303
+ attrs: {
304
+ to: S_WHATSAPP_NET,
305
+ type: "set",
306
+ xmlns: "w:biz:catalog"
307
+ },
308
+ content: [
309
+ {
310
+ tag: "product_catalog_add",
311
+ attrs: { v: "1" },
312
+ content: [
313
+ createNode,
314
+ {
315
+ tag: "width",
316
+ attrs: {},
317
+ content: "100"
225
318
  },
319
+ {
320
+ tag: "height",
321
+ attrs: {},
322
+ content: "100"
323
+ }
324
+ ]
325
+ }
326
+ ]
327
+ });
328
+ const productCatalogAddNode = getBinaryNodeChild(result, "product_catalog_add");
329
+ const productNode = getBinaryNodeChild(productCatalogAddNode, "product");
330
+ return parseProductNode(productNode);
331
+ };
332
+ const productDelete = async (productIds) => {
333
+ const result = await query({
334
+ tag: "iq",
335
+ attrs: {
336
+ to: S_WHATSAPP_NET,
337
+ type: "set",
338
+ xmlns: "w:biz:catalog"
339
+ },
340
+ content: [
341
+ {
342
+ tag: "product_catalog_delete",
343
+ attrs: { v: "1" },
344
+ content: productIds.map(id => ({
345
+ tag: "product",
346
+ attrs: {},
226
347
  content: [
227
- {
228
- tag: 'product_catalog_delete',
229
- attrs: { v: '1' },
230
- content: productIds.map(id => ({
231
- tag: 'product',
232
- attrs: {},
233
- content: [
234
- {
235
- tag: 'id',
236
- attrs: {},
237
- content: Buffer.from(id)
238
- }
239
- ]
240
- }))
241
- }
348
+ {
349
+ tag: "id",
350
+ attrs: {},
351
+ content: Buffer.from(id)
352
+ }
242
353
  ]
243
- });
244
- const productCatalogDelNode = (0, generic_utils_1.getBinaryNodeChild)(result, 'product_catalog_delete');
245
- return {
246
- deleted: +((productCatalogDelNode === null || productCatalogDelNode === void 0 ? void 0 : productCatalogDelNode.attrs.deleted_count) || 0)
247
- };
248
- };
354
+ }))
355
+ }
356
+ ]
357
+ });
358
+ const productCatalogDelNode = getBinaryNodeChild(result, "product_catalog_delete");
249
359
  return {
250
- ...sock,
251
- logger: config.logger,
252
- getOrderDetails,
253
- getCatalog,
254
- getCollections,
255
- productCreate,
256
- productDelete,
257
- productUpdate
360
+ deleted: +(productCatalogDelNode?.attrs.deleted_count || 0)
258
361
  };
362
+ };
363
+ return {
364
+ ...sock,
365
+ logger: config.logger,
366
+ getOrderDetails,
367
+ getCatalog,
368
+ getCollections,
369
+ productCreate,
370
+ productDelete,
371
+ productUpdate,
372
+ updateBussinesProfile,
373
+ updateCoverPhoto,
374
+ removeCoverPhoto
375
+ };
259
376
  };
260
- exports.makeBusinessSocket = makeBusinessSocket;
377
+ //=======================================================//