@wppconnect/wa-js 1.0.15 → 1.1.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 (255) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/README.md +68 -0
  3. package/dist/assert/assertIsBusiness.d.ts +20 -0
  4. package/dist/assert/index.d.ts +1 -0
  5. package/dist/auth/eventEmitter.d.ts +52 -0
  6. package/dist/{blocklist/Blocklist.d.ts → auth/events/index.d.ts} +3 -11
  7. package/dist/{contact/types.d.ts → auth/events/registerChangeEvent.d.ts} +1 -3
  8. package/dist/auth/events/registerIdleEvent.d.ts +16 -0
  9. package/dist/auth/events/registerLogoutEvent.d.ts +16 -0
  10. package/dist/auth/functions/getAuthCode.d.ts +22 -0
  11. package/dist/{contact/Contact.d.ts → auth/functions/index.d.ts} +7 -11
  12. package/dist/auth/functions/isAuthenticated.d.ts +16 -0
  13. package/dist/auth/functions/isIdle.d.ts +16 -0
  14. package/dist/auth/functions/isMultiDevice.d.ts +16 -0
  15. package/dist/auth/functions/logout.d.ts +16 -0
  16. package/dist/auth/functions/poke.d.ts +16 -0
  17. package/dist/auth/functions/setMultiDevice.d.ts +23 -0
  18. package/dist/auth/index.d.ts +3 -4
  19. package/dist/auth/types.d.ts +0 -5
  20. package/dist/blocklist/eventEmitter.d.ts +49 -0
  21. package/dist/blocklist/events/index.d.ts +16 -0
  22. package/dist/blocklist/events/registerSyncedEvent.d.ts +16 -0
  23. package/dist/blocklist/functions/all.d.ts +17 -0
  24. package/dist/blocklist/functions/blockContact.d.ts +18 -0
  25. package/dist/blocklist/functions/index.d.ts +19 -0
  26. package/dist/blocklist/functions/isBlocked.d.ts +17 -0
  27. package/dist/blocklist/functions/unblockContact.d.ts +18 -0
  28. package/dist/blocklist/index.d.ts +3 -5
  29. package/dist/blocklist/types.d.ts +0 -3
  30. package/dist/chat/defaultSendMessageOptions.d.ts +19 -0
  31. package/dist/chat/eventEmitter.d.ts +107 -0
  32. package/dist/chat/events/index.d.ts +18 -0
  33. package/dist/chat/events/registerAckMessageEvent.d.ts +16 -0
  34. package/dist/chat/events/registerLiveLocationUpdateEvent.d.ts +16 -0
  35. package/dist/chat/events/registerRevokeMessageEvent.d.ts +16 -0
  36. package/dist/chat/functions/clear.d.ts +26 -0
  37. package/dist/chat/functions/delete.d.ts +26 -0
  38. package/dist/chat/functions/deleteMessage.d.ts +35 -0
  39. package/dist/chat/functions/downloadMedia.d.ts +21 -0
  40. package/dist/chat/functions/find.d.ts +24 -0
  41. package/dist/chat/functions/generateMessageID.d.ts +22 -0
  42. package/dist/chat/functions/get.d.ts +22 -0
  43. package/dist/chat/functions/getMessageById.d.ts +35 -0
  44. package/dist/chat/functions/getMessages.d.ts +48 -0
  45. package/dist/chat/functions/index.d.ts +37 -0
  46. package/dist/chat/functions/markIsComposing.d.ts +31 -0
  47. package/dist/chat/functions/markIsPaused.d.ts +27 -0
  48. package/dist/chat/functions/markIsRead.d.ts +30 -0
  49. package/dist/chat/functions/markIsRecording.d.ts +31 -0
  50. package/dist/chat/functions/markIsUnread.d.ts +29 -0
  51. package/dist/chat/functions/prepareLinkPreview.d.ts +53 -0
  52. package/dist/chat/functions/prepareMessageButtons.d.ts +40 -0
  53. package/dist/chat/functions/prepareRawMessage.d.ts +23 -0
  54. package/dist/chat/functions/sendFileMessage.d.ts +116 -0
  55. package/dist/{group/types.d.ts → chat/functions/sendListMessage.d.ts} +26 -25
  56. package/dist/chat/functions/sendRawMessage.d.ts +22 -0
  57. package/dist/chat/functions/sendTextMessage.d.ts +23 -0
  58. package/dist/chat/functions/sendVCardContactMessage.d.ts +27 -0
  59. package/dist/chat/index.d.ts +4 -4
  60. package/dist/chat/types.d.ts +32 -105
  61. package/dist/contact/eventEmitter.d.ts +48 -0
  62. package/dist/contact/functions/index.d.ts +16 -0
  63. package/dist/contact/functions/queryExists.d.ts +20 -0
  64. package/dist/contact/index.d.ts +2 -5
  65. package/dist/group/eventEmitter.d.ts +48 -0
  66. package/dist/group/functions/addParticipants.d.ts +17 -0
  67. package/dist/group/functions/canAdd.d.ts +17 -0
  68. package/dist/group/functions/canDemote.d.ts +17 -0
  69. package/dist/group/functions/canPromote.d.ts +17 -0
  70. package/dist/group/functions/canRemove.d.ts +17 -0
  71. package/dist/group/functions/create.d.ts +25 -0
  72. package/dist/group/functions/demoteParticipants.d.ts +17 -0
  73. package/dist/group/functions/ensureGroup.d.ts +17 -0
  74. package/dist/group/functions/ensureGroupAndParticipants.d.ts +20 -0
  75. package/dist/group/functions/getParticipants.d.ts +25 -0
  76. package/dist/group/functions/iAmAdmin.d.ts +17 -0
  77. package/dist/group/functions/iAmMember.d.ts +17 -0
  78. package/dist/group/functions/iAmRestrictedMember.d.ts +17 -0
  79. package/dist/group/functions/iAmSuperAdmin.d.ts +17 -0
  80. package/dist/group/functions/index.d.ts +31 -0
  81. package/dist/group/functions/promoteParticipants.d.ts +17 -0
  82. package/dist/group/functions/removeParticipants.d.ts +17 -0
  83. package/dist/group/index.d.ts +2 -5
  84. package/dist/index.d.ts +7 -8
  85. package/dist/labels/eventEmitter.d.ts +48 -0
  86. package/dist/labels/functions/addNewLabel.d.ts +35 -0
  87. package/dist/labels/functions/addOrRemoveLabels.d.ts +31 -0
  88. package/dist/labels/functions/colorIsInLabelPalette.d.ts +26 -0
  89. package/dist/labels/functions/deleteAllLabels.d.ts +17 -0
  90. package/dist/labels/functions/deleteLabel.d.ts +21 -0
  91. package/dist/labels/functions/getAllLabels.d.ts +17 -0
  92. package/dist/labels/functions/getLabelColorPalette.d.ts +19 -0
  93. package/dist/labels/functions/getNewLabelColor.d.ts +19 -0
  94. package/dist/labels/functions/index.d.ts +23 -0
  95. package/dist/labels/index.d.ts +2 -4
  96. package/dist/labels/types.d.ts +5 -6
  97. package/dist/status/{types.d.ts → defaultSendStatusOptions.d.ts} +3 -12
  98. package/dist/status/eventEmitter.d.ts +49 -0
  99. package/dist/status/events/index.d.ts +16 -0
  100. package/dist/status/events/registerSyncedEvent.d.ts +16 -0
  101. package/dist/status/functions/get.d.ts +17 -0
  102. package/dist/status/functions/getMyStatus.d.ts +17 -0
  103. package/dist/status/functions/index.d.ts +19 -0
  104. package/dist/status/functions/sendRawStatus.d.ts +20 -0
  105. package/dist/status/functions/sendTextStatus.d.ts +31 -0
  106. package/dist/status/index.d.ts +4 -5
  107. package/dist/util/convertToFile.d.ts +16 -0
  108. package/dist/webpack.d.ts +2 -1
  109. package/dist/whatsapp/collections/BaseCollection.d.ts +3 -3
  110. package/dist/whatsapp/collections/BlocklistCollection.d.ts +1 -1
  111. package/dist/whatsapp/collections/BusinessCategoriesResultCollection.d.ts +1 -1
  112. package/dist/whatsapp/collections/BusinessProfileCollection.d.ts +1 -1
  113. package/dist/whatsapp/collections/ButtonCollection.d.ts +1 -1
  114. package/dist/whatsapp/collections/CallCollection.d.ts +1 -1
  115. package/dist/whatsapp/collections/CartCollection.d.ts +1 -1
  116. package/dist/whatsapp/collections/CartItemCollection.d.ts +1 -1
  117. package/dist/whatsapp/collections/CatalogCollection.d.ts +1 -1
  118. package/dist/whatsapp/collections/ChatCollection.d.ts +1 -1
  119. package/dist/whatsapp/collections/ChatstateCollection.d.ts +1 -1
  120. package/dist/whatsapp/collections/Collection.d.ts +4 -3
  121. package/dist/whatsapp/collections/ContactCollection.d.ts +1 -1
  122. package/dist/whatsapp/collections/EmojiVariantCollection.d.ts +1 -1
  123. package/dist/whatsapp/collections/GroupMetadataCollection.d.ts +3 -5
  124. package/dist/whatsapp/collections/LabelCollection.d.ts +3 -2
  125. package/dist/whatsapp/collections/LabelItemCollection.d.ts +1 -1
  126. package/dist/whatsapp/collections/LiveLocationCollection.d.ts +3 -4
  127. package/dist/whatsapp/collections/MsgCollection.d.ts +1 -1
  128. package/dist/whatsapp/collections/MsgInfoCollection.d.ts +1 -1
  129. package/dist/whatsapp/collections/MuteCollection.d.ts +1 -1
  130. package/dist/whatsapp/collections/OrderCollection.d.ts +1 -1
  131. package/dist/whatsapp/collections/OrderItemCollection.d.ts +1 -1
  132. package/dist/whatsapp/collections/ParticipantCollection.d.ts +1 -1
  133. package/dist/whatsapp/collections/PresenceCollection.d.ts +1 -1
  134. package/dist/whatsapp/collections/ProductCollCollection.d.ts +1 -1
  135. package/dist/whatsapp/collections/ProductCollection.d.ts +1 -1
  136. package/dist/whatsapp/collections/ProductImageCollection.d.ts +1 -1
  137. package/dist/whatsapp/collections/ProductMessageListCollection.d.ts +1 -1
  138. package/dist/whatsapp/collections/ProfilePicThumbCollection.d.ts +1 -1
  139. package/dist/whatsapp/collections/QuickReplyCollection.d.ts +1 -1
  140. package/dist/whatsapp/collections/RecentEmojiCollection.d.ts +1 -1
  141. package/dist/whatsapp/collections/RecentStickerCollection.d.ts +1 -1
  142. package/dist/whatsapp/collections/StarredMsgCollection.d.ts +1 -1
  143. package/dist/whatsapp/collections/StarredStickerCollection.d.ts +1 -1
  144. package/dist/whatsapp/collections/StatusCollection.d.ts +1 -1
  145. package/dist/whatsapp/collections/StatusV3Collection.d.ts +1 -1
  146. package/dist/whatsapp/collections/StickerCollection.d.ts +1 -1
  147. package/dist/whatsapp/collections/StickerPackCollection.d.ts +1 -1
  148. package/dist/whatsapp/collections/StickerSearchCollection.d.ts +1 -1
  149. package/dist/whatsapp/collections/TemplateButtonCollection.d.ts +1 -1
  150. package/dist/whatsapp/enums/LogoutReason.d.ts +1 -1
  151. package/dist/whatsapp/enums/OUTWARD_TYPES.d.ts +1 -1
  152. package/dist/whatsapp/enums/SendMsgResult.d.ts +1 -1
  153. package/dist/whatsapp/functions/addAndSendMsgToChat.d.ts +1 -1
  154. package/dist/whatsapp/functions/blockContact.d.ts +2 -2
  155. package/dist/whatsapp/functions/fetchLinkPreview.d.ts +29 -0
  156. package/dist/whatsapp/functions/findChat.d.ts +1 -1
  157. package/dist/whatsapp/functions/findFirstWebLink.d.ts +17 -0
  158. package/dist/whatsapp/functions/getOrGenerate.d.ts +1 -1
  159. package/dist/whatsapp/functions/groupParticipants.d.ts +4 -4
  160. package/dist/whatsapp/functions/handleAck.d.ts +21 -0
  161. package/dist/whatsapp/functions/index.d.ts +4 -0
  162. package/dist/whatsapp/functions/isAuthenticated.d.ts +1 -1
  163. package/dist/{auth/Auth.d.ts → whatsapp/functions/markSeen.d.ts} +11 -17
  164. package/dist/whatsapp/functions/msgFindQuery.d.ts +1 -1
  165. package/dist/whatsapp/functions/products.d.ts +4 -4
  166. package/dist/whatsapp/functions/randomId.d.ts +2 -2
  167. package/dist/whatsapp/functions/sendClear.d.ts +1 -1
  168. package/dist/whatsapp/functions/sendCreateGroup.d.ts +1 -1
  169. package/dist/whatsapp/functions/sendDelete.d.ts +1 -1
  170. package/dist/whatsapp/functions/sendQueryExists.d.ts +1 -1
  171. package/dist/whatsapp/functions/sendTextMsgToChat.d.ts +1 -1
  172. package/dist/whatsapp/functions/uploadProductImage.d.ts +1 -1
  173. package/dist/whatsapp/misc/Base64.d.ts +1 -1
  174. package/dist/whatsapp/misc/Browser.d.ts +1 -1
  175. package/dist/whatsapp/misc/ChatPresence.d.ts +25 -0
  176. package/dist/whatsapp/misc/Clock.d.ts +2 -4
  177. package/dist/whatsapp/misc/Cmd.d.ts +2 -2
  178. package/dist/whatsapp/misc/Conn.d.ts +1 -1
  179. package/dist/whatsapp/misc/Constants.d.ts +1 -1
  180. package/dist/whatsapp/misc/EventEmitter.d.ts +1 -1
  181. package/dist/whatsapp/misc/Features.d.ts +1 -1
  182. package/dist/whatsapp/misc/ImageUtils.d.ts +1 -1
  183. package/dist/whatsapp/misc/Locale.d.ts +1 -1
  184. package/dist/whatsapp/misc/MediaBlobCache.d.ts +30 -0
  185. package/dist/whatsapp/misc/MediaObject.d.ts +1 -1
  186. package/dist/whatsapp/misc/MediaObjectUtil.d.ts +1 -1
  187. package/dist/whatsapp/misc/MediaPrep.d.ts +1 -1
  188. package/dist/whatsapp/misc/MediaUtils.d.ts +1 -1
  189. package/dist/whatsapp/misc/MsgKey.d.ts +1 -1
  190. package/dist/whatsapp/misc/MsgLoadState.d.ts +2 -2
  191. package/dist/whatsapp/misc/OpaqueData.d.ts +2 -2
  192. package/dist/whatsapp/misc/State.d.ts +1 -1
  193. package/dist/whatsapp/misc/UserPrefs.d.ts +1 -1
  194. package/dist/whatsapp/misc/VCard.d.ts +1 -1
  195. package/dist/whatsapp/misc/Wid.d.ts +1 -1
  196. package/dist/whatsapp/misc/WidFactory.d.ts +1 -1
  197. package/dist/whatsapp/misc/index.d.ts +2 -0
  198. package/dist/whatsapp/models/AttachMediaModel.d.ts +2 -2
  199. package/dist/whatsapp/models/BlocklistModel.d.ts +2 -2
  200. package/dist/whatsapp/models/BusinessCategoriesResultModel.d.ts +2 -2
  201. package/dist/whatsapp/models/BusinessProfileModel.d.ts +2 -2
  202. package/dist/whatsapp/models/CallModel.d.ts +2 -2
  203. package/dist/whatsapp/models/CallParticipantModel.d.ts +2 -2
  204. package/dist/whatsapp/models/CartItemModel.d.ts +2 -2
  205. package/dist/whatsapp/models/CartModel.d.ts +2 -2
  206. package/dist/whatsapp/models/CatalogModel.d.ts +2 -2
  207. package/dist/whatsapp/models/ChatModel.d.ts +4 -4
  208. package/dist/whatsapp/models/ChatPreferenceModel.d.ts +2 -2
  209. package/dist/whatsapp/models/ChatstateModel.d.ts +2 -2
  210. package/dist/whatsapp/models/ConnModel.d.ts +2 -2
  211. package/dist/whatsapp/models/ContactModel.d.ts +2 -2
  212. package/dist/whatsapp/models/ConversionTupleModel.d.ts +2 -2
  213. package/dist/whatsapp/models/EmojiVariantModel.d.ts +2 -2
  214. package/dist/whatsapp/models/GroupMetadataModel.d.ts +2 -2
  215. package/dist/whatsapp/models/LabelItemModel.d.ts +2 -2
  216. package/dist/whatsapp/models/LabelModel.d.ts +2 -2
  217. package/dist/whatsapp/models/LiveLocationModel.d.ts +4 -3
  218. package/dist/whatsapp/models/LiveLocationParticipantModel.d.ts +2 -2
  219. package/dist/whatsapp/models/MediaDataModel.d.ts +2 -2
  220. package/dist/whatsapp/models/Model.d.ts +1 -1
  221. package/dist/whatsapp/models/ModelChatBase.d.ts +1 -1
  222. package/dist/whatsapp/models/MsgButtonReplyMsgModel.d.ts +2 -2
  223. package/dist/whatsapp/models/MsgInfoModel.d.ts +2 -2
  224. package/dist/whatsapp/models/MsgModel.d.ts +25 -15
  225. package/dist/whatsapp/models/MuteModel.d.ts +2 -2
  226. package/dist/whatsapp/models/OrderItemModel.d.ts +2 -2
  227. package/dist/whatsapp/models/OrderModel.d.ts +2 -2
  228. package/dist/whatsapp/models/ParticipantModel.d.ts +2 -2
  229. package/dist/whatsapp/models/ProductCollModel.d.ts +2 -2
  230. package/dist/whatsapp/models/ProductImageModel.d.ts +2 -2
  231. package/dist/whatsapp/models/ProductMessageListModel.d.ts +2 -2
  232. package/dist/whatsapp/models/ProductModel.d.ts +2 -2
  233. package/dist/whatsapp/models/ProfilePicThumbModel.d.ts +2 -2
  234. package/dist/whatsapp/models/QuickReplyModel.d.ts +2 -2
  235. package/dist/whatsapp/models/RecentEmojiModel.d.ts +2 -2
  236. package/dist/whatsapp/models/RecentStickerModel.d.ts +2 -2
  237. package/dist/whatsapp/models/ReplyButtonModel.d.ts +2 -2
  238. package/dist/whatsapp/models/StateModel.d.ts +2 -2
  239. package/dist/whatsapp/models/StatusModel.d.ts +2 -2
  240. package/dist/whatsapp/models/StatusV3Model.d.ts +2 -2
  241. package/dist/whatsapp/models/StickerModel.d.ts +2 -2
  242. package/dist/whatsapp/models/StickerPackModel.d.ts +2 -2
  243. package/dist/whatsapp/models/TemplateButtonModel.d.ts +2 -2
  244. package/dist/whatsapp/models/UnreadMentionModel.d.ts +2 -2
  245. package/dist/whatsapp/models/WebCallModel.d.ts +2 -2
  246. package/dist/whatsapp/multidevice/adv.d.ts +1 -1
  247. package/dist/whatsapp/multidevice/waNoiseInfo.d.ts +1 -1
  248. package/dist/whatsapp/multidevice/waSignalStore.d.ts +1 -1
  249. package/dist/whatsapp/stores.d.ts +29 -29
  250. package/dist/wppconnect-wa.js +1 -1
  251. package/package.json +18 -18
  252. package/dist/chat/Chat.d.ts +0 -162
  253. package/dist/group/Group.d.ts +0 -45
  254. package/dist/labels/Labels.d.ts +0 -52
  255. package/dist/status/Status.d.ts +0 -37
@@ -15,7 +15,8 @@
15
15
  */
16
16
  import { TextFontStyle } from '../../enums';
17
17
  import { ButtonCollection, MsgCollection } from '../collections';
18
- import { MsgKey, Wid } from '../misc';
18
+ import { MediaObject, MsgKey, Wid } from '../misc';
19
+ import { ChatModel, MediaDataModel } from '.';
19
20
  import { Model, ModelOptions, ModelPropertiesContructor, ModelProxy } from './Model';
20
21
  interface Props {
21
22
  id: MsgKey;
@@ -41,15 +42,15 @@ interface Props {
41
42
  interactiveAnnotations?: any;
42
43
  clientUrl?: any;
43
44
  loc?: any;
44
- lat?: any;
45
- lng?: any;
45
+ lat?: number;
46
+ lng?: number;
46
47
  isLive: boolean;
47
- accuracy?: any;
48
- speed?: any;
49
- degrees?: any;
50
- comment?: any;
51
- sequence?: any;
52
- shareDuration?: any;
48
+ accuracy?: number;
49
+ speed?: number;
50
+ degrees?: number;
51
+ comment?: string;
52
+ sequence?: number;
53
+ shareDuration?: number;
53
54
  finalLat?: any;
54
55
  finalLng?: any;
55
56
  finalAccuracy?: any;
@@ -217,12 +218,12 @@ interface Session {
217
218
  startOfDaySkew?: any;
218
219
  isQuotedMsgAvailable: boolean;
219
220
  senderObj?: any;
220
- mediaData?: any;
221
+ mediaData?: MediaDataModel;
221
222
  forwardedFromWeb?: any;
222
223
  linksIndexParsed?: any;
223
224
  }
224
225
  interface Derived {
225
- chat?: any;
226
+ chat?: ChatModel;
226
227
  hasTemplateButtons: boolean;
227
228
  ephemeralExpirationTimestamp?: any;
228
229
  isEphemeral: boolean;
@@ -256,7 +257,7 @@ interface Derived {
256
257
  numTimesForwarded?: any;
257
258
  isFrequentlyForwarded: boolean;
258
259
  eventType?: any;
259
- sender?: any;
260
+ sender?: Wid;
260
261
  text?: any;
261
262
  containsEmoji?: any;
262
263
  isFailed: boolean;
@@ -264,7 +265,15 @@ interface Derived {
264
265
  isUnsentMedia: boolean;
265
266
  dir?: any;
266
267
  rtl?: any;
267
- linkPreview?: any;
268
+ linkPreview?: {
269
+ title?: string;
270
+ description?: string;
271
+ canonicalUrl?: string;
272
+ matchedText: string;
273
+ richPreviewType: number;
274
+ thumbnail?: string;
275
+ doNotPlayInline: boolean;
276
+ };
268
277
  isGroupsV4InviteExpired: boolean;
269
278
  isPersistent: boolean;
270
279
  isUnreadType: boolean;
@@ -275,13 +284,14 @@ interface Derived {
275
284
  initialPageSize?: any;
276
285
  productListHeaderImage?: any;
277
286
  }
278
- /** @whatsapp 2.2146.9:92954 */
287
+ /** @whatsapp 2.2147.16:92954 */
279
288
  export declare interface MsgModel extends ModelProxy<Props, Session, Derived> {
280
289
  }
281
- /** @whatsapp 2.2146.9:92954 */
290
+ /** @whatsapp 2.2147.16:92954 */
282
291
  export declare class MsgModel extends Model {
283
292
  idClass: typeof MsgKey;
284
293
  constructor(proterties: ModelPropertiesContructor<MsgModel, 'id'>, options?: ModelOptions);
294
+ mediaObject?: MediaObject;
285
295
  getLinks(e?: number): any;
286
296
  getHeaderLinks(): any;
287
297
  getFooterLinks(): any;
@@ -27,10 +27,10 @@ interface Session {
27
27
  interface Derived {
28
28
  isMuted: boolean;
29
29
  }
30
- /** @whatsapp 2.2146.9:43376 */
30
+ /** @whatsapp 2.2147.16:43376 */
31
31
  export declare interface MuteModel extends ModelProxy<Props, Session, Derived> {
32
32
  }
33
- /** @whatsapp 2.2146.9:43376 */
33
+ /** @whatsapp 2.2147.16:43376 */
34
34
  export declare class MuteModel extends Model<MuteCollection> {
35
35
  idClass: typeof Wid;
36
36
  allowedIds?: any;
@@ -29,10 +29,10 @@ interface Session {
29
29
  interface Derived {
30
30
  mediaData?: any;
31
31
  }
32
- /** @whatsapp 2.2146.9:70334 */
32
+ /** @whatsapp 2.2147.16:70334 */
33
33
  export declare interface OrderItemModel extends ModelProxy<Props, Session, Derived> {
34
34
  }
35
- /** @whatsapp 2.2146.9:70334 */
35
+ /** @whatsapp 2.2147.16:70334 */
36
36
  export declare class OrderItemModel extends Model<OrderCollection> {
37
37
  constructor(proterties?: ModelPropertiesContructor<OrderItemModel>, options?: ModelOptions);
38
38
  getCollection(): OrderCollection;
@@ -32,10 +32,10 @@ interface Session {
32
32
  interface Derived {
33
33
  totalItemCount?: any;
34
34
  }
35
- /** @whatsapp 2.2146.9:63444 */
35
+ /** @whatsapp 2.2147.16:63444 */
36
36
  export declare interface OrderModel extends ModelProxy<Props, Session, Derived> {
37
37
  }
38
- /** @whatsapp 2.2146.9:63444 */
38
+ /** @whatsapp 2.2147.16:63444 */
39
39
  export declare class OrderModel extends Model<OrderCollection> {
40
40
  constructor(proterties?: ModelPropertiesContructor<OrderModel>, options?: ModelOptions);
41
41
  triggerItemCollectionUpdate(): any;
@@ -27,10 +27,10 @@ interface Session {
27
27
  }
28
28
  interface Derived {
29
29
  }
30
- /** @whatsapp 2.2146.9:47684 */
30
+ /** @whatsapp 2.2147.16:47684 */
31
31
  export declare interface ParticipantModel extends ModelProxy<Props, Session, Derived> {
32
32
  }
33
- /** @whatsapp 2.2146.9:47684 */
33
+ /** @whatsapp 2.2147.16:47684 */
34
34
  export declare class ParticipantModel extends Model {
35
35
  idClass: typeof Wid;
36
36
  constructor(proterties?: ModelPropertiesContructor<ParticipantModel>, options?: ModelOptions);
@@ -26,10 +26,10 @@ interface Session {
26
26
  }
27
27
  interface Derived {
28
28
  }
29
- /** @whatsapp 2.2146.9:13532 */
29
+ /** @whatsapp 2.2147.16:13532 */
30
30
  export declare interface ProductCollModel extends ModelProxy<Props, Session, Derived> {
31
31
  }
32
- /** @whatsapp 2.2146.9:13532 */
32
+ /** @whatsapp 2.2147.16:13532 */
33
33
  export declare class ProductCollModel extends Model {
34
34
  constructor(proterties?: ModelPropertiesContructor<ProductCollModel>, options?: ModelOptions);
35
35
  addProducts(e?: any): any;
@@ -28,10 +28,10 @@ interface Session {
28
28
  }
29
29
  interface Derived {
30
30
  }
31
- /** @whatsapp 2.2146.9:569 */
31
+ /** @whatsapp 2.2147.16:569 */
32
32
  export declare interface ProductImageModel extends ModelProxy<Props, Session, Derived> {
33
33
  }
34
- /** @whatsapp 2.2146.9:569 */
34
+ /** @whatsapp 2.2147.16:569 */
35
35
  export declare class ProductImageModel extends Model {
36
36
  constructor(proterties?: ModelPropertiesContructor<ProductImageModel>, options?: ModelOptions);
37
37
  triggerImageUpdate(): any;
@@ -25,10 +25,10 @@ interface Session {
25
25
  }
26
26
  interface Derived {
27
27
  }
28
- /** @whatsapp 2.2146.9:16689 */
28
+ /** @whatsapp 2.2147.16:16689 */
29
29
  export declare interface ProductMessageListModel extends ModelProxy<Props, Session, Derived> {
30
30
  }
31
- /** @whatsapp 2.2146.9:16689 */
31
+ /** @whatsapp 2.2147.16:16689 */
32
32
  export declare class ProductMessageListModel extends Model {
33
33
  idClass: typeof MsgKey;
34
34
  constructor(proterties?: ModelPropertiesContructor<ProductMessageListModel>, options?: ModelOptions);
@@ -47,10 +47,10 @@ interface Session {
47
47
  }
48
48
  interface Derived {
49
49
  }
50
- /** @whatsapp 2.2146.9:78150 */
50
+ /** @whatsapp 2.2147.16:78150 */
51
51
  export declare interface ProductModel extends ModelProxy<Props, Session, Derived> {
52
52
  }
53
- /** @whatsapp 2.2146.9:78150 */
53
+ /** @whatsapp 2.2147.16:78150 */
54
54
  export declare class ProductModel extends Model {
55
55
  constructor(proterties?: ModelPropertiesContructor<ProductModel>, options?: ModelOptions);
56
56
  triggerImageUpdate(): any;
@@ -34,10 +34,10 @@ interface Derived {
34
34
  imgFull?: any;
35
35
  fallbackType?: any;
36
36
  }
37
- /** @whatsapp 2.2146.9:5924 */
37
+ /** @whatsapp 2.2147.16:5924 */
38
38
  export declare interface ProfilePicThumbModel extends ModelProxy<Props, Session, Derived> {
39
39
  }
40
- /** @whatsapp 2.2146.9:5924 */
40
+ /** @whatsapp 2.2147.16:5924 */
41
41
  export declare class ProfilePicThumbModel extends Model<ProfilePicThumbCollection> {
42
42
  idClass: typeof Wid;
43
43
  constructor(proterties?: ModelPropertiesContructor<ProfilePicThumbModel>, options?: ModelOptions);
@@ -29,10 +29,10 @@ interface Session {
29
29
  interface Derived {
30
30
  totalCount?: any;
31
31
  }
32
- /** @whatsapp 2.2146.9:64779 */
32
+ /** @whatsapp 2.2147.16:64779 */
33
33
  export declare interface QuickReplyModel extends ModelProxy<Props, Session, Derived> {
34
34
  }
35
- /** @whatsapp 2.2146.9:64779 */
35
+ /** @whatsapp 2.2147.16:64779 */
36
36
  export declare class QuickReplyModel extends Model<QuickReplyCollection> {
37
37
  constructor(proterties?: ModelPropertiesContructor<QuickReplyModel>, options?: ModelOptions);
38
38
  useOnce(): any;
@@ -23,10 +23,10 @@ interface Session {
23
23
  }
24
24
  interface Derived {
25
25
  }
26
- /** @whatsapp 2.2146.9:96276 */
26
+ /** @whatsapp 2.2147.16:96276 */
27
27
  export declare interface RecentEmojiModel extends ModelProxy<Props, Session, Derived> {
28
28
  }
29
- /** @whatsapp 2.2146.9:96276 */
29
+ /** @whatsapp 2.2147.16:96276 */
30
30
  export declare class RecentEmojiModel extends Model {
31
31
  constructor(proterties?: ModelPropertiesContructor<RecentEmojiModel>, options?: ModelOptions);
32
32
  }
@@ -25,10 +25,10 @@ interface Session {
25
25
  }
26
26
  interface Derived {
27
27
  }
28
- /** @whatsapp 2.2146.9:84959 */
28
+ /** @whatsapp 2.2147.16:84959 */
29
29
  export declare interface RecentStickerModel extends ModelProxy<Props, Session, Derived> {
30
30
  }
31
- /** @whatsapp 2.2146.9:84959 */
31
+ /** @whatsapp 2.2147.16:84959 */
32
32
  export declare class RecentStickerModel extends Model {
33
33
  constructor(proterties?: ModelPropertiesContructor<RecentStickerModel>, options?: ModelOptions);
34
34
  }
@@ -24,10 +24,10 @@ interface Session {
24
24
  }
25
25
  interface Derived {
26
26
  }
27
- /** @whatsapp 2.2146.9:46420 */
27
+ /** @whatsapp 2.2147.16:46420 */
28
28
  export declare interface ReplyButtonModel extends ModelProxy<Props, Session, Derived> {
29
29
  }
30
- /** @whatsapp 2.2146.9:46420 */
30
+ /** @whatsapp 2.2147.16:46420 */
31
31
  export declare class ReplyButtonModel extends Model {
32
32
  constructor(proterties?: ModelPropertiesContructor<ReplyButtonModel>, options?: ModelOptions);
33
33
  }
@@ -54,10 +54,10 @@ interface Session {
54
54
  }
55
55
  interface Derived {
56
56
  }
57
- /** @whatsapp 2.2146.9:72787 */
57
+ /** @whatsapp 2.2147.16:72787 */
58
58
  export declare interface StateModel extends ModelProxy<Props, Session, Derived> {
59
59
  }
60
- /** @whatsapp 2.2146.9:72787 */
60
+ /** @whatsapp 2.2147.16:72787 */
61
61
  export declare class StateModel extends Model {
62
62
  constructor(proterties?: ModelPropertiesContructor<StateModel>, options?: ModelOptions);
63
63
  initialize(): any;
@@ -25,10 +25,10 @@ interface Session {
25
25
  }
26
26
  interface Derived {
27
27
  }
28
- /** @whatsapp 2.2146.9:92472 */
28
+ /** @whatsapp 2.2147.16:92472 */
29
29
  export declare interface StatusModel extends ModelProxy<Props, Session, Derived> {
30
30
  }
31
- /** @whatsapp 2.2146.9:92472 */
31
+ /** @whatsapp 2.2147.16:92472 */
32
32
  export declare class StatusModel extends Model<StatusCollection> {
33
33
  idClass: typeof Wid;
34
34
  constructor(proterties?: ModelPropertiesContructor<StatusModel>, options?: ModelOptions);
@@ -35,10 +35,10 @@ interface Derived {
35
35
  readCount?: any;
36
36
  lastStatus?: any;
37
37
  }
38
- /** @whatsapp 2.2146.9:9455 */
38
+ /** @whatsapp 2.2147.16:9455 */
39
39
  export declare interface StatusV3Model extends ModelProxy<Props, Session, Derived> {
40
40
  }
41
- /** @whatsapp 2.2146.9:9455 */
41
+ /** @whatsapp 2.2147.16:9455 */
42
42
  export declare class StatusV3Model extends Model<StatusV3Collection> {
43
43
  idClass: typeof Wid;
44
44
  constructor(proterties?: ModelPropertiesContructor<StatusV3Model>, options?: ModelOptions);
@@ -37,10 +37,10 @@ interface Session {
37
37
  }
38
38
  interface Derived {
39
39
  }
40
- /** @whatsapp 2.2146.9:92537 */
40
+ /** @whatsapp 2.2147.16:92537 */
41
41
  export declare interface StickerModel extends ModelProxy<Props, Session, Derived> {
42
42
  }
43
- /** @whatsapp 2.2146.9:92537 */
43
+ /** @whatsapp 2.2147.16:92537 */
44
44
  export declare class StickerModel extends Model {
45
45
  constructor(proterties?: ModelPropertiesContructor<StickerModel>, options?: ModelOptions);
46
46
  downloadMedia(): any;
@@ -39,10 +39,10 @@ interface Derived {
39
39
  isPlaceholder: boolean;
40
40
  isFirstParty: boolean;
41
41
  }
42
- /** @whatsapp 2.2146.9:86668 */
42
+ /** @whatsapp 2.2147.16:86668 */
43
43
  export declare interface StickerPackModel extends ModelProxy<Props, Session, Derived> {
44
44
  }
45
- /** @whatsapp 2.2146.9:86668 */
45
+ /** @whatsapp 2.2147.16:86668 */
46
46
  export declare class StickerPackModel extends Model {
47
47
  constructor(proterties?: ModelPropertiesContructor<StickerPackModel>, options?: ModelOptions);
48
48
  downloadMedia(): any;
@@ -28,10 +28,10 @@ interface Session {
28
28
  }
29
29
  interface Derived {
30
30
  }
31
- /** @whatsapp 2.2146.9:65159 */
31
+ /** @whatsapp 2.2147.16:65159 */
32
32
  export declare interface TemplateButtonModel extends ModelProxy<Props, Session, Derived> {
33
33
  }
34
- /** @whatsapp 2.2146.9:65159 */
34
+ /** @whatsapp 2.2147.16:65159 */
35
35
  export declare class TemplateButtonModel extends Model {
36
36
  constructor(proterties?: ModelPropertiesContructor<TemplateButtonModel>, options?: ModelOptions);
37
37
  }
@@ -23,10 +23,10 @@ interface Session {
23
23
  }
24
24
  interface Derived {
25
25
  }
26
- /** @whatsapp 2.2146.9:85739 */
26
+ /** @whatsapp 2.2147.16:85739 */
27
27
  export declare interface UnreadMentionModel extends ModelProxy<Props, Session, Derived> {
28
28
  }
29
- /** @whatsapp 2.2146.9:85739 */
29
+ /** @whatsapp 2.2147.16:85739 */
30
30
  export declare class UnreadMentionModel extends Model {
31
31
  constructor(proterties?: ModelPropertiesContructor<UnreadMentionModel>, options?: ModelOptions);
32
32
  }
@@ -27,10 +27,10 @@ interface Session {
27
27
  }
28
28
  interface Derived {
29
29
  }
30
- /** @whatsapp 2.2146.9:91442 */
30
+ /** @whatsapp 2.2147.16:91442 */
31
31
  export declare interface WebCallModel extends ModelProxy<Props, Session, Derived> {
32
32
  }
33
- /** @whatsapp 2.2146.9:91442 */
33
+ /** @whatsapp 2.2147.16:91442 */
34
34
  export declare class WebCallModel extends Model {
35
35
  constructor(proterties?: ModelPropertiesContructor<WebCallModel>, options?: ModelOptions);
36
36
  }
@@ -13,7 +13,7 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- /** @whatsapp 2.2146.9:2019 */
16
+ /** @whatsapp 2.2147.16:2019 */
17
17
  export declare namespace adv {
18
18
  function generateADVSecretKey(): string;
19
19
  function getADVSecretKey(): string;
@@ -24,6 +24,6 @@ declare class NoiseInfo {
24
24
  get(): Promise<NoiseInfoData>;
25
25
  set(info: Promise<NoiseInfoData>): any;
26
26
  }
27
- /** @whatsapp 2.2146.9:79188 */
27
+ /** @whatsapp 2.2147.16:79188 */
28
28
  export declare const waNoiseInfo: NoiseInfo;
29
29
  export {};
@@ -68,6 +68,6 @@ declare class SignalStore {
68
68
  markKeyAsUploaded(e?: any): any;
69
69
  rotateSignedPreKey(e?: any, t?: any): any;
70
70
  }
71
- /** @whatsapp 2.2146.9:93381 */
71
+ /** @whatsapp 2.2147.16:93381 */
72
72
  export declare const waSignalStore: SignalStore;
73
73
  export {};
@@ -14,61 +14,61 @@
14
14
  * limitations under the License.
15
15
  */
16
16
  import * as collections from './collections';
17
- /** @whatsapp 2.2146.9:15701 */
17
+ /** @whatsapp 2.2147.16:15701 */
18
18
  export declare const BlocklistStore: collections.BlocklistCollection;
19
- /** @whatsapp 2.2146.9:54100 */
19
+ /** @whatsapp 2.2147.16:54100 */
20
20
  export declare const BusinessCategoriesResultStore: collections.BusinessCategoriesResultCollection;
21
- /** @whatsapp 2.2146.9:8581 */
21
+ /** @whatsapp 2.2147.16:8581 */
22
22
  export declare const BusinessProfileStore: collections.BusinessProfileCollection;
23
- /** @whatsapp 2.2146.9:15971 */
23
+ /** @whatsapp 2.2147.16:15971 */
24
24
  export declare const CallStore: collections.CallCollection;
25
- /** @whatsapp 2.2146.9:25523 */
25
+ /** @whatsapp 2.2147.16:25523 */
26
26
  export declare const CartStore: collections.CartCollection;
27
- /** @whatsapp 2.2146.9:60028 */
27
+ /** @whatsapp 2.2147.16:60028 */
28
28
  export declare const CatalogStore: collections.CatalogCollection;
29
- /** @whatsapp 2.2146.9:84758 */
29
+ /** @whatsapp 2.2147.16:84758 */
30
30
  export declare const ChatStore: collections.ChatCollection;
31
- /** @whatsapp 2.2146.9:17025 */
31
+ /** @whatsapp 2.2147.16:17025 */
32
32
  export declare const ContactStore: collections.ContactCollection;
33
- /** @whatsapp 2.2146.9:41098 */
33
+ /** @whatsapp 2.2147.16:41098 */
34
34
  export declare const EmojiVariantStore: collections.EmojiVariantCollection;
35
- /** @whatsapp 2.2146.9:75798 */
35
+ /** @whatsapp 2.2147.16:75798 */
36
36
  export declare const GroupMetadataStore: collections.GroupMetadataCollection;
37
- /** @whatsapp 2.2146.9:59606 */
37
+ /** @whatsapp 2.2147.16:59606 */
38
38
  export declare const LabelStore: collections.LabelCollection;
39
- /** @whatsapp 2.2146.9:31104 */
39
+ /** @whatsapp 2.2147.16:31104 */
40
40
  export declare const LiveLocationStore: collections.LiveLocationCollection;
41
- /** @whatsapp 2.2146.9:45472 */
41
+ /** @whatsapp 2.2147.16:45472 */
42
42
  export declare const MsgStore: collections.MsgCollection;
43
- /** @whatsapp 2.2146.9:57636 */
43
+ /** @whatsapp 2.2147.16:57636 */
44
44
  export declare const MsgInfoStore: collections.MsgInfoCollection;
45
- /** @whatsapp 2.2146.9:80959 */
45
+ /** @whatsapp 2.2147.16:80959 */
46
46
  export declare const MuteStore: collections.MuteCollection;
47
- /** @whatsapp 2.2146.9:98052 */
47
+ /** @whatsapp 2.2147.16:98052 */
48
48
  export declare const OrderStore: collections.OrderCollection;
49
- /** @whatsapp 2.2146.9:48327 */
49
+ /** @whatsapp 2.2147.16:48327 */
50
50
  export declare const PresenceStore: collections.PresenceCollection;
51
- /** @whatsapp 2.2146.9:97038 */
51
+ /** @whatsapp 2.2147.16:97038 */
52
52
  export declare const ProductMessageListStore: collections.ProductMessageListCollection;
53
- /** @whatsapp 2.2146.9:3165 */
53
+ /** @whatsapp 2.2147.16:3165 */
54
54
  export declare const ProfilePicThumbStore: collections.ProfilePicThumbCollection;
55
- /** @whatsapp 2.2146.9:60123 */
55
+ /** @whatsapp 2.2147.16:60123 */
56
56
  export declare const QuickReplyStore: collections.QuickReplyCollection;
57
- /** @whatsapp 2.2146.9:30462 */
57
+ /** @whatsapp 2.2147.16:30462 */
58
58
  export declare const RecentEmojiStore: collections.RecentEmojiCollection;
59
- /** @whatsapp 2.2146.9:27686 */
59
+ /** @whatsapp 2.2147.16:27686 */
60
60
  export declare const RecentStickerStore: collections.RecentStickerCollection;
61
- /** @whatsapp 2.2146.9:30118 */
61
+ /** @whatsapp 2.2147.16:30118 */
62
62
  export declare const StarredMsgStore: collections.StarredMsgCollection;
63
- /** @whatsapp 2.2146.9:68477 */
63
+ /** @whatsapp 2.2147.16:68477 */
64
64
  export declare const StarredStickerStore: collections.StarredStickerCollection;
65
- /** @whatsapp 2.2146.9:22360 */
65
+ /** @whatsapp 2.2147.16:22360 */
66
66
  export declare const StatusStore: collections.StatusCollection;
67
- /** @whatsapp 2.2146.9:70173 */
67
+ /** @whatsapp 2.2147.16:70173 */
68
68
  export declare const StatusV3Store: collections.StatusV3Collection;
69
- /** @whatsapp 2.2146.9:16482 */
69
+ /** @whatsapp 2.2147.16:16482 */
70
70
  export declare const StickerStore: collections.StickerCollection;
71
- /** @whatsapp 2.2146.9:45822 */
71
+ /** @whatsapp 2.2147.16:45822 */
72
72
  export declare const StickerPackStore: collections.StickerPackCollection;
73
- /** @whatsapp 2.2146.9:6009 */
73
+ /** @whatsapp 2.2147.16:6009 */
74
74
  export declare const StickerSearchStore: collections.StickerSearchCollection;