@baileys-md/baileys 11.2.4 → 12.0.1

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 (126) hide show
  1. package/LICENSE +1 -1
  2. package/WAProto/WAProto.proto +5311 -0
  3. package/WAProto/index.js +70084 -131686
  4. package/lib/Defaults/index.js +118 -117
  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/{WASignalGroup/sender_key_name.js → lib/Signal/Group/sender-key-name.js} +10 -28
  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 +314 -151
  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 +847 -844
  27. package/lib/Socket/communities.js +413 -0
  28. package/lib/Socket/groups.js +304 -319
  29. package/lib/Socket/index.js +15 -9
  30. package/lib/Socket/messages-recv.js +1109 -989
  31. package/lib/Socket/messages-send.js +611 -347
  32. package/lib/Socket/mex.js +45 -0
  33. package/lib/Socket/newsletter.js +230 -231
  34. package/lib/Socket/socket.js +795 -616
  35. package/lib/Store/index.js +6 -8
  36. package/lib/Store/make-cache-manager-store.js +73 -81
  37. package/lib/Store/make-in-memory-store.js +286 -427
  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 -7
  50. package/lib/Types/Newsletter.js +32 -17
  51. package/lib/Types/Product.js +3 -2
  52. package/lib/Types/Signal.js +3 -2
  53. package/lib/Types/Socket.js +4 -2
  54. package/lib/Types/State.js +11 -2
  55. package/lib/Types/USync.js +3 -2
  56. package/lib/Types/index.js +27 -41
  57. package/lib/Utils/auth-utils.js +211 -198
  58. package/lib/Utils/baileys-event-stream.js +42 -61
  59. package/lib/Utils/browser-utils.js +25 -0
  60. package/lib/Utils/business.js +213 -214
  61. package/lib/Utils/chat-utils.js +711 -689
  62. package/lib/Utils/crypto.js +112 -133
  63. package/lib/Utils/decode-wa-message.js +254 -186
  64. package/lib/Utils/event-buffer.js +510 -502
  65. package/lib/Utils/generics.js +318 -408
  66. package/lib/Utils/history.js +83 -90
  67. package/lib/Utils/index.js +21 -33
  68. package/lib/Utils/link-preview.js +71 -116
  69. package/lib/Utils/logger.js +5 -7
  70. package/lib/Utils/lt-hash.js +40 -46
  71. package/lib/Utils/make-mutex.js +34 -41
  72. package/lib/Utils/message-retry-manager.js +113 -0
  73. package/lib/Utils/messages-media.js +575 -671
  74. package/lib/Utils/messages.js +354 -462
  75. package/lib/Utils/noise-handler.js +138 -149
  76. package/lib/Utils/pre-key-manager.js +85 -0
  77. package/lib/Utils/process-message.js +323 -354
  78. package/lib/Utils/signal.js +148 -130
  79. package/lib/Utils/use-multi-file-auth-state.js +109 -91
  80. package/lib/Utils/validate-connection.js +183 -190
  81. package/lib/WABinary/constants.js +1298 -35
  82. package/lib/WABinary/decode.js +231 -256
  83. package/lib/WABinary/encode.js +207 -239
  84. package/lib/WABinary/generic-utils.js +119 -40
  85. package/lib/WABinary/index.js +7 -21
  86. package/lib/WABinary/jid-utils.js +88 -64
  87. package/lib/WABinary/types.js +3 -2
  88. package/lib/WAM/BinaryInfo.js +10 -12
  89. package/lib/WAM/constants.js +22851 -15348
  90. package/lib/WAM/encode.js +135 -136
  91. package/lib/WAM/index.js +5 -19
  92. package/lib/WAUSync/Protocols/USyncContactProtocol.js +28 -30
  93. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +49 -53
  94. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +27 -28
  95. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +36 -39
  96. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +50 -50
  97. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +26 -20
  98. package/lib/WAUSync/Protocols/index.js +6 -20
  99. package/lib/WAUSync/USyncQuery.js +86 -85
  100. package/lib/WAUSync/USyncUser.js +23 -25
  101. package/lib/WAUSync/index.js +5 -19
  102. package/lib/index.js +18 -33
  103. package/package.json +52 -57
  104. package/README.md +0 -2
  105. package/WASignalGroup/GroupProtocol.js +0 -1697
  106. package/WASignalGroup/ciphertext_message.js +0 -16
  107. package/WASignalGroup/group_cipher.js +0 -120
  108. package/WASignalGroup/group_session_builder.js +0 -46
  109. package/WASignalGroup/index.js +0 -5
  110. package/WASignalGroup/keyhelper.js +0 -21
  111. package/WASignalGroup/protobufs.js +0 -3
  112. package/WASignalGroup/queue_job.js +0 -69
  113. package/WASignalGroup/sender_chain_key.js +0 -50
  114. package/WASignalGroup/sender_key_distribution_message.js +0 -78
  115. package/WASignalGroup/sender_key_message.js +0 -92
  116. package/WASignalGroup/sender_key_record.js +0 -56
  117. package/WASignalGroup/sender_key_state.js +0 -129
  118. package/WASignalGroup/sender_message_key.js +0 -39
  119. package/lib/Defaults/baileys-version.json +0 -3
  120. package/lib/Defaults/phonenumber-mcc.json +0 -223
  121. package/lib/Socket/Client/abstract-socket-client.js +0 -13
  122. package/lib/Socket/Client/mobile-socket-client.js +0 -65
  123. package/lib/Socket/Client/web-socket-client.js +0 -62
  124. package/lib/Socket/registration.js +0 -166
  125. package/lib/Socket/usync.js +0 -70
  126. package/lib/Store/make-mongo-store.js +0 -567
@@ -0,0 +1,13 @@
1
+ //=======================================================//
2
+ import { EventEmitter } from "events";
3
+ import { URL } from "url";
4
+ //=======================================================//
5
+ export class AbstractSocketClient extends EventEmitter {
6
+ constructor(url, config) {
7
+ super();
8
+ this.url = url;
9
+ this.config = config;
10
+ this.setMaxListeners(0);
11
+ }
12
+ }
13
+ //=======================================================//
@@ -0,0 +1,52 @@
1
+ //=======================================================//
2
+ import { DEFAULT_ORIGIN } from "../../Defaults/index.js";
3
+ import { AbstractSocketClient } from "./types.js";
4
+ import WebSocket from "ws";
5
+ //=======================================================//
6
+ export class WebSocketClient extends AbstractSocketClient {
7
+ constructor() {
8
+ super(...arguments);
9
+ this.socket = null;
10
+ }
11
+ get isOpen() {
12
+ return this.socket?.readyState === WebSocket.OPEN;
13
+ }
14
+ get isClosed() {
15
+ return this.socket === null || this.socket?.readyState === WebSocket.CLOSED;
16
+ }
17
+ get isClosing() {
18
+ return this.socket === null || this.socket?.readyState === WebSocket.CLOSING;
19
+ }
20
+ get isConnecting() {
21
+ return this.socket?.readyState === WebSocket.CONNECTING;
22
+ }
23
+ async connect() {
24
+ if (this.socket) {
25
+ return;
26
+ }
27
+ this.socket = new WebSocket(this.url, {
28
+ origin: DEFAULT_ORIGIN,
29
+ headers: this.config.options?.headers,
30
+ handshakeTimeout: this.config.connectTimeoutMs,
31
+ timeout: this.config.connectTimeoutMs,
32
+ agent: this.config.agent
33
+ });
34
+ this.socket.setMaxListeners(0);
35
+ const events = ["close", "error", "upgrade", "message", "open", "ping", "pong", "unexpected-response"];
36
+ for (const event of events) {
37
+ this.socket?.on(event, (...args) => this.emit(event, ...args));
38
+ }
39
+ }
40
+ async close() {
41
+ if (!this.socket) {
42
+ return;
43
+ }
44
+ this.socket.close();
45
+ this.socket = null;
46
+ }
47
+ send(str, cb) {
48
+ this.socket?.send(str, cb);
49
+ return Boolean(this.socket);
50
+ }
51
+ }
52
+ //=======================================================//
@@ -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
+ //=======================================================//