@baileys-md/baileys 12.0.0 → 12.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/LICENSE +21 -13
  2. package/WAProto/WAProto.proto +769 -233
  3. package/WAProto/index.js +65813 -141372
  4. package/lib/Defaults/index.js +128 -113
  5. package/lib/KeyDB/BinarySearch.js +30 -0
  6. package/lib/KeyDB/KeyedDB.js +178 -0
  7. package/lib/KeyDB/index.js +14 -0
  8. package/lib/Signal/Group/ciphertext-message.js +22 -14
  9. package/lib/Signal/Group/group-session-builder.js +21 -42
  10. package/lib/Signal/Group/group_cipher.js +85 -87
  11. package/lib/Signal/Group/index.js +23 -57
  12. package/lib/Signal/Group/keyhelper.js +28 -52
  13. package/lib/Signal/Group/sender-chain-key.js +37 -33
  14. package/lib/Signal/Group/sender-key-distribution-message.js +73 -63
  15. package/lib/Signal/Group/sender-key-message.js +75 -66
  16. package/lib/Signal/Group/sender-key-name.js +55 -44
  17. package/lib/Signal/Group/sender-key-record.js +49 -49
  18. package/lib/Signal/Group/sender-key-state.js +90 -93
  19. package/lib/Signal/Group/sender-message-key.js +37 -28
  20. package/lib/Signal/libsignal.js +324 -163
  21. package/lib/Signal/lid-mapping.js +166 -0
  22. package/lib/Socket/Client/index.js +14 -18
  23. package/lib/Socket/Client/types.js +12 -12
  24. package/lib/Socket/Client/websocket.js +60 -109
  25. package/lib/Socket/business.js +359 -242
  26. package/lib/Socket/chats.js +857 -898
  27. package/lib/Socket/communities.js +413 -0
  28. package/lib/Socket/groups.js +304 -324
  29. package/lib/Socket/index.js +25 -9
  30. package/lib/Socket/messages-recv.js +1109 -1000
  31. package/lib/Socket/messages-send.js +615 -387
  32. package/lib/Socket/mex.js +45 -0
  33. package/lib/Socket/newsletter.js +231 -227
  34. package/lib/Socket/socket.js +803 -628
  35. package/lib/Store/index.js +18 -8
  36. package/lib/Store/make-cache-manager-store.js +75 -0
  37. package/lib/Store/make-in-memory-store.js +286 -435
  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 +13 -2
  41. package/lib/Types/Bussines.js +13 -0
  42. package/lib/Types/Call.js +13 -2
  43. package/lib/Types/Chat.js +19 -4
  44. package/lib/Types/Contact.js +13 -2
  45. package/lib/Types/Events.js +13 -2
  46. package/lib/Types/GroupMetadata.js +13 -2
  47. package/lib/Types/Label.js +43 -26
  48. package/lib/Types/LabelAssociation.js +16 -8
  49. package/lib/Types/Message.js +22 -7
  50. package/lib/Types/Newsletter.js +42 -17
  51. package/lib/Types/Product.js +13 -2
  52. package/lib/Types/Signal.js +13 -2
  53. package/lib/Types/Socket.js +14 -2
  54. package/lib/Types/State.js +21 -2
  55. package/lib/Types/USync.js +13 -2
  56. package/lib/Types/index.js +37 -41
  57. package/lib/Utils/auth-utils.js +219 -189
  58. package/lib/Utils/baileys-event-stream.js +54 -0
  59. package/lib/Utils/browser-utils.js +21 -31
  60. package/lib/Utils/business.js +213 -214
  61. package/lib/Utils/chat-utils.js +711 -689
  62. package/lib/Utils/crypto.js +112 -175
  63. package/lib/Utils/decode-wa-message.js +254 -194
  64. package/lib/Utils/event-buffer.js +510 -500
  65. package/lib/Utils/generics.js +318 -430
  66. package/lib/Utils/history.js +83 -90
  67. package/lib/Utils/index.js +31 -35
  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 +33 -48
  73. package/lib/Utils/messages-media.js +516 -784
  74. package/lib/Utils/messages.js +347 -489
  75. package/lib/Utils/noise-handler.js +138 -144
  76. package/lib/Utils/pre-key-manager.js +95 -0
  77. package/lib/Utils/process-message.js +331 -384
  78. package/lib/Utils/signal.js +157 -139
  79. package/lib/Utils/use-multi-file-auth-state.js +119 -91
  80. package/lib/Utils/validate-connection.js +184 -203
  81. package/lib/WABinary/constants.js +1308 -1298
  82. package/lib/WABinary/decode.js +241 -256
  83. package/lib/WABinary/encode.js +217 -239
  84. package/lib/WABinary/generic-utils.js +131 -40
  85. package/lib/WABinary/index.js +17 -21
  86. package/lib/WABinary/jid-utils.js +97 -79
  87. package/lib/WABinary/types.js +13 -2
  88. package/lib/WAM/BinaryInfo.js +20 -12
  89. package/lib/WAM/constants.js +22863 -15348
  90. package/lib/WAM/encode.js +145 -136
  91. package/lib/WAM/index.js +15 -19
  92. package/lib/WAUSync/Protocols/USyncContactProtocol.js +39 -31
  93. package/lib/WAUSync/Protocols/USyncDeviceProtocol.js +61 -54
  94. package/lib/WAUSync/Protocols/USyncDisappearingModeProtocol.js +39 -29
  95. package/lib/WAUSync/Protocols/USyncStatusProtocol.js +48 -40
  96. package/lib/WAUSync/Protocols/UsyncBotProfileProtocol.js +62 -51
  97. package/lib/WAUSync/Protocols/UsyncLIDProtocol.js +38 -21
  98. package/lib/WAUSync/Protocols/index.js +17 -20
  99. package/lib/WAUSync/USyncQuery.js +98 -86
  100. package/lib/WAUSync/USyncUser.js +35 -26
  101. package/lib/WAUSync/index.js +16 -19
  102. package/lib/index.js +23 -41
  103. package/package.json +46 -56
  104. package/README.md +0 -113
  105. package/WAProto/GenerateStatics.sh +0 -4
  106. package/lib/Defaults/wileys-version.json +0 -3
  107. package/lib/Signal/Group/queue-job.js +0 -57
  108. package/lib/Socket/usync.js +0 -70
  109. package/lib/Utils/wileys-event-stream.js +0 -63
@@ -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
+ //=======================================================//