diff --git a/docs/Base.html b/docs/Base.html
index 554537d..b0ba1ed 100644
--- a/docs/Base.html
+++ b/docs/Base.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Base
+ whatsapp-web.js 1.16.3 » Class: Base
@@ -15,7 +15,7 @@
@@ -50,7 +50,7 @@
diff --git a/docs/BaseAuthStrategy.html b/docs/BaseAuthStrategy.html
index 1303c80..13f8803 100644
--- a/docs/BaseAuthStrategy.html
+++ b/docs/BaseAuthStrategy.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: BaseAuthStrategy
+ whatsapp-web.js 1.16.3 » Class: BaseAuthStrategy
@@ -15,7 +15,7 @@
@@ -50,7 +50,7 @@
diff --git a/docs/BusinessContact.html b/docs/BusinessContact.html
index 577a981..a1b7a43 100644
--- a/docs/BusinessContact.html
+++ b/docs/BusinessContact.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: BusinessContact
+ whatsapp-web.js 1.16.3 » Class: BusinessContact
@@ -15,7 +15,7 @@
@@ -326,7 +326,7 @@
diff --git a/docs/Buttons.html b/docs/Buttons.html
index d023a0b..77c7ea3 100644
--- a/docs/Buttons.html
+++ b/docs/Buttons.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Buttons
+ whatsapp-web.js 1.16.3 » Class: Buttons
@@ -15,7 +15,7 @@
@@ -234,7 +234,7 @@ Returns: [{ buttonId:'customId',buttonText:{'displayText':
diff --git a/docs/Call.html b/docs/Call.html
index ac6aae7..21ed7dc 100644
--- a/docs/Call.html
+++ b/docs/Call.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Call
+ whatsapp-web.js 1.16.3 » Class: Call
@@ -15,7 +15,7 @@
@@ -144,7 +144,7 @@
diff --git a/docs/Chat.html b/docs/Chat.html
index c5003f0..5e78db1 100644
--- a/docs/Chat.html
+++ b/docs/Chat.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Chat
+ whatsapp-web.js 1.16.3 » Class: Chat
@@ -15,7 +15,7 @@
@@ -483,7 +483,7 @@
diff --git a/docs/Client.html b/docs/Client.html
index b5def02..eb864f0 100644
--- a/docs/Client.html
+++ b/docs/Client.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Client
+ whatsapp-web.js 1.16.3 » Class: Client
@@ -15,7 +15,7 @@
@@ -2310,7 +2310,7 @@
diff --git a/docs/Client.js.html b/docs/Client.js.html
index ce8f841..f216dea 100644
--- a/docs/Client.js.html
+++ b/docs/Client.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: Client.js
+ whatsapp-web.js 1.16.3 » Source: Client.js
@@ -15,7 +15,7 @@
@@ -907,11 +907,20 @@ class Client extends EventEmitter {
* @returns {Promise<string>}
*/
async getProfilePicUrl(contactId) {
- const profilePic = await this.pupPage.evaluate((contactId) => {
- const chatWid = window.Store.WidFactory.createWid(contactId);
- return window.Store.getProfilePicFull(chatWid);
+ const profilePic = await this.pupPage.evaluate(async contactId => {
+ let asyncPic;
+ if (window.Store.Features.features.MD_BACKEND) {
+ const chatWid = window.Store.WidFactory.createWid(contactId);
+ asyncPic = await window.Store.getProfilePicFull(chatWid).catch(() => {
+ return undefined;
+ });
+ } else {
+ asyncPic = await window.Store.Wap.profilePicFind(contactId).catch(() => {
+ return undefined;
+ });
+ }
+ return asyncPic;
}, contactId);
-
return profilePic ? profilePic.eurl : undefined;
}
@@ -1119,7 +1128,7 @@ module.exports = Client;
diff --git a/docs/ClientInfo.html b/docs/ClientInfo.html
index 135e56b..02373c7 100644
--- a/docs/ClientInfo.html
+++ b/docs/ClientInfo.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: ClientInfo
+ whatsapp-web.js 1.16.3 » Class: ClientInfo
@@ -15,7 +15,7 @@
@@ -242,7 +242,7 @@
diff --git a/docs/Contact.html b/docs/Contact.html
index 7bb4281..8a4b86c 100644
--- a/docs/Contact.html
+++ b/docs/Contact.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Contact
+ whatsapp-web.js 1.16.3 » Class: Contact
@@ -15,7 +15,7 @@
@@ -293,7 +293,7 @@
diff --git a/docs/GroupChat.html b/docs/GroupChat.html
index 8d5c95f..47baadb 100644
--- a/docs/GroupChat.html
+++ b/docs/GroupChat.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: GroupChat
+ whatsapp-web.js 1.16.3 » Class: GroupChat
@@ -15,7 +15,7 @@
@@ -927,7 +927,7 @@
diff --git a/docs/GroupNotification.html b/docs/GroupNotification.html
index c23c701..bd03b2c 100644
--- a/docs/GroupNotification.html
+++ b/docs/GroupNotification.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: GroupNotification
+ whatsapp-web.js 1.16.3 » Class: GroupNotification
@@ -15,7 +15,7 @@
@@ -233,7 +233,7 @@
diff --git a/docs/InterfaceController.html b/docs/InterfaceController.html
index 64757ec..8385cff 100644
--- a/docs/InterfaceController.html
+++ b/docs/InterfaceController.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: InterfaceController
+ whatsapp-web.js 1.16.3 » Class: InterfaceController
@@ -15,7 +15,7 @@
@@ -382,7 +382,7 @@
diff --git a/docs/Label.html b/docs/Label.html
index 5eb747c..8e62acd 100644
--- a/docs/Label.html
+++ b/docs/Label.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Label
+ whatsapp-web.js 1.16.3 » Class: Label
@@ -15,7 +15,7 @@
@@ -163,7 +163,7 @@
diff --git a/docs/LegacySessionAuth.html b/docs/LegacySessionAuth.html
index a05e84d..347e29a 100644
--- a/docs/LegacySessionAuth.html
+++ b/docs/LegacySessionAuth.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: LegacySessionAuth
+ whatsapp-web.js 1.16.3 » Class: LegacySessionAuth
@@ -15,7 +15,7 @@
@@ -173,7 +173,7 @@
diff --git a/docs/List.html b/docs/List.html
index bbd2a64..276d480 100644
--- a/docs/List.html
+++ b/docs/List.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: List
+ whatsapp-web.js 1.16.3 » Class: List
@@ -15,7 +15,7 @@
@@ -256,7 +256,7 @@ Returns: [{'title':'sectionTitle','rows':[{'r
diff --git a/docs/LocalAuth.html b/docs/LocalAuth.html
index c650020..c93f92f 100644
--- a/docs/LocalAuth.html
+++ b/docs/LocalAuth.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: LocalAuth
+ whatsapp-web.js 1.16.3 » Class: LocalAuth
@@ -15,7 +15,7 @@
@@ -120,7 +120,7 @@
diff --git a/docs/Location.html b/docs/Location.html
index f2e7df4..299c48b 100644
--- a/docs/Location.html
+++ b/docs/Location.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Location
+ whatsapp-web.js 1.16.3 » Class: Location
@@ -15,7 +15,7 @@
@@ -149,7 +149,7 @@
diff --git a/docs/Message.html b/docs/Message.html
index 8043bcc..8d21a52 100644
--- a/docs/Message.html
+++ b/docs/Message.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Message
+ whatsapp-web.js 1.16.3 » Class: Message
@@ -15,7 +15,7 @@
@@ -609,7 +609,7 @@
diff --git a/docs/MessageMedia.html b/docs/MessageMedia.html
index 3b6a71c..c515714 100644
--- a/docs/MessageMedia.html
+++ b/docs/MessageMedia.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: MessageMedia
+ whatsapp-web.js 1.16.3 » Class: MessageMedia
@@ -15,7 +15,7 @@
@@ -343,7 +343,7 @@
diff --git a/docs/NoAuth.html b/docs/NoAuth.html
index 0f86be1..730f7f1 100644
--- a/docs/NoAuth.html
+++ b/docs/NoAuth.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: NoAuth
+ whatsapp-web.js 1.16.3 » Class: NoAuth
@@ -15,7 +15,7 @@
@@ -51,7 +51,7 @@
diff --git a/docs/Order.html b/docs/Order.html
index 2e6f902..bd37916 100644
--- a/docs/Order.html
+++ b/docs/Order.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Order
+ whatsapp-web.js 1.16.3 » Class: Order
@@ -15,7 +15,7 @@
@@ -102,7 +102,7 @@
diff --git a/docs/PrivateChat.html b/docs/PrivateChat.html
index 8b8f504..dbcf628 100644
--- a/docs/PrivateChat.html
+++ b/docs/PrivateChat.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: PrivateChat
+ whatsapp-web.js 1.16.3 » Class: PrivateChat
@@ -15,7 +15,7 @@
@@ -519,7 +519,7 @@
diff --git a/docs/PrivateContact.html b/docs/PrivateContact.html
index 979cef9..a1c7392 100644
--- a/docs/PrivateContact.html
+++ b/docs/PrivateContact.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: PrivateContact
+ whatsapp-web.js 1.16.3 » Class: PrivateContact
@@ -15,7 +15,7 @@
@@ -319,7 +319,7 @@
diff --git a/docs/Product.html b/docs/Product.html
index 2cdc60f..6372daf 100644
--- a/docs/Product.html
+++ b/docs/Product.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Product
+ whatsapp-web.js 1.16.3 » Class: Product
@@ -15,7 +15,7 @@
@@ -127,7 +127,7 @@
diff --git a/docs/Util.html b/docs/Util.html
index fb63110..202e943 100644
--- a/docs/Util.html
+++ b/docs/Util.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Class: Util
+ whatsapp-web.js 1.16.3 » Class: Util
@@ -15,7 +15,7 @@
@@ -243,7 +243,7 @@
diff --git a/docs/authStrategies_BaseAuthStrategy.js.html b/docs/authStrategies_BaseAuthStrategy.js.html
index 0eb8bdd..d6ae5ee 100644
--- a/docs/authStrategies_BaseAuthStrategy.js.html
+++ b/docs/authStrategies_BaseAuthStrategy.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: authStrategies/BaseAuthStrategy.js
+ whatsapp-web.js 1.16.3 » Source: authStrategies/BaseAuthStrategy.js
@@ -15,7 +15,7 @@
@@ -62,7 +62,7 @@ module.exports = BaseAuthStrategy;
diff --git a/docs/authStrategies_LegacySessionAuth.js.html b/docs/authStrategies_LegacySessionAuth.js.html
index 65abdad..d99be0c 100644
--- a/docs/authStrategies_LegacySessionAuth.js.html
+++ b/docs/authStrategies_LegacySessionAuth.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: authStrategies/LegacySessionAuth.js
+ whatsapp-web.js 1.16.3 » Source: authStrategies/LegacySessionAuth.js
@@ -15,7 +15,7 @@
@@ -110,7 +110,7 @@ module.exports = LegacySessionAuth;
diff --git a/docs/authStrategies_LocalAuth.js.html b/docs/authStrategies_LocalAuth.js.html
index 798650a..0be330b 100644
--- a/docs/authStrategies_LocalAuth.js.html
+++ b/docs/authStrategies_LocalAuth.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: authStrategies/LocalAuth.js
+ whatsapp-web.js 1.16.3 » Source: authStrategies/LocalAuth.js
@@ -15,7 +15,7 @@
@@ -91,7 +91,7 @@ module.exports = LocalAuth;
diff --git a/docs/authStrategies_NoAuth.js.html b/docs/authStrategies_NoAuth.js.html
index e9f35f1..8a0c284 100644
--- a/docs/authStrategies_NoAuth.js.html
+++ b/docs/authStrategies_NoAuth.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: authStrategies/NoAuth.js
+ whatsapp-web.js 1.16.3 » Source: authStrategies/NoAuth.js
@@ -15,7 +15,7 @@
@@ -50,7 +50,7 @@ module.exports = NoAuth;
diff --git a/docs/global.html b/docs/global.html
index 43cf17f..9b6ce31 100644
--- a/docs/global.html
+++ b/docs/global.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Globals
+ whatsapp-web.js 1.16.3 » Globals
@@ -15,7 +15,7 @@
@@ -1980,7 +1980,7 @@
diff --git a/docs/index.html b/docs/index.html
index 5335ae4..b140a0f 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Home
+ whatsapp-web.js 1.16.3 » Home
@@ -15,7 +15,7 @@
@@ -27,7 +27,7 @@
@@ -3149,7 +3149,7 @@ client.initialize();
diff --git a/docs/structures_Base.js.html b/docs/structures_Base.js.html
index 4096421..5c6f4ac 100644
--- a/docs/structures_Base.js.html
+++ b/docs/structures_Base.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Base.js
+ whatsapp-web.js 1.16.3 » Source: structures/Base.js
@@ -15,7 +15,7 @@
@@ -60,7 +60,7 @@ module.exports = Base;
diff --git a/docs/structures_BusinessContact.js.html b/docs/structures_BusinessContact.js.html
index 954e341..ae90cb2 100644
--- a/docs/structures_BusinessContact.js.html
+++ b/docs/structures_BusinessContact.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/BusinessContact.js
+ whatsapp-web.js 1.16.3 » Source: structures/BusinessContact.js
@@ -15,7 +15,7 @@
@@ -59,7 +59,7 @@ module.exports = BusinessContact;
diff --git a/docs/structures_Buttons.js.html b/docs/structures_Buttons.js.html
index 3560b86..e4a487f 100644
--- a/docs/structures_Buttons.js.html
+++ b/docs/structures_Buttons.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Buttons.js
+ whatsapp-web.js 1.16.3 » Source: structures/Buttons.js
@@ -15,7 +15,7 @@
@@ -120,7 +120,7 @@ module.exports = Buttons;
diff --git a/docs/structures_Call.js.html b/docs/structures_Call.js.html
index 72d85a3..87ae905 100644
--- a/docs/structures_Call.js.html
+++ b/docs/structures_Call.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Call.js
+ whatsapp-web.js 1.16.3 » Source: structures/Call.js
@@ -15,7 +15,7 @@
@@ -106,7 +106,7 @@ module.exports = Call;
diff --git a/docs/structures_Chat.js.html b/docs/structures_Chat.js.html
index 3d8ab56..fd5191f 100644
--- a/docs/structures_Chat.js.html
+++ b/docs/structures_Chat.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Chat.js
+ whatsapp-web.js 1.16.3 » Source: structures/Chat.js
@@ -15,7 +15,7 @@
@@ -290,7 +290,7 @@ module.exports = Chat;
diff --git a/docs/structures_ClientInfo.js.html b/docs/structures_ClientInfo.js.html
index 0b42a2f..5041954 100644
--- a/docs/structures_ClientInfo.js.html
+++ b/docs/structures_ClientInfo.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/ClientInfo.js
+ whatsapp-web.js 1.16.3 » Source: structures/ClientInfo.js
@@ -15,7 +15,7 @@
@@ -109,7 +109,7 @@ module.exports = ClientInfo;
diff --git a/docs/structures_Contact.js.html b/docs/structures_Contact.js.html
index 50ec098..8730a37 100644
--- a/docs/structures_Contact.js.html
+++ b/docs/structures_Contact.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Contact.js
+ whatsapp-web.js 1.16.3 » Source: structures/Contact.js
@@ -15,7 +15,7 @@
@@ -245,7 +245,7 @@ module.exports = Contact;
diff --git a/docs/structures_GroupChat.js.html b/docs/structures_GroupChat.js.html
index 4b585df..5d12def 100644
--- a/docs/structures_GroupChat.js.html
+++ b/docs/structures_GroupChat.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/GroupChat.js
+ whatsapp-web.js 1.16.3 » Source: structures/GroupChat.js
@@ -15,7 +15,7 @@
@@ -272,7 +272,7 @@ module.exports = GroupChat;
diff --git a/docs/structures_GroupNotification.js.html b/docs/structures_GroupNotification.js.html
index 9c423a0..2ab7da9 100644
--- a/docs/structures_GroupNotification.js.html
+++ b/docs/structures_GroupNotification.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/GroupNotification.js
+ whatsapp-web.js 1.16.3 » Source: structures/GroupNotification.js
@@ -15,7 +15,7 @@
@@ -143,7 +143,7 @@ module.exports = GroupNotification;
diff --git a/docs/structures_Label.js.html b/docs/structures_Label.js.html
index 7900aec..4fa2700 100644
--- a/docs/structures_Label.js.html
+++ b/docs/structures_Label.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Label.js
+ whatsapp-web.js 1.16.3 » Source: structures/Label.js
@@ -15,7 +15,7 @@
@@ -88,7 +88,7 @@ module.exports = Label;
diff --git a/docs/structures_List.js.html b/docs/structures_List.js.html
index 18b6148..3cddd83 100644
--- a/docs/structures_List.js.html
+++ b/docs/structures_List.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/List.js
+ whatsapp-web.js 1.16.3 » Source: structures/List.js
@@ -15,7 +15,7 @@
@@ -118,7 +118,7 @@ module.exports = List;
diff --git a/docs/structures_Location.js.html b/docs/structures_Location.js.html
index 69c0e94..11a1d20 100644
--- a/docs/structures_Location.js.html
+++ b/docs/structures_Location.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Location.js
+ whatsapp-web.js 1.16.3 » Source: structures/Location.js
@@ -15,7 +15,7 @@
@@ -71,7 +71,7 @@ module.exports = Location;
diff --git a/docs/structures_Message.js.html b/docs/structures_Message.js.html
index 386b4fc..caefb86 100644
--- a/docs/structures_Message.js.html
+++ b/docs/structures_Message.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Message.js
+ whatsapp-web.js 1.16.3 » Source: structures/Message.js
@@ -15,7 +15,7 @@
@@ -554,7 +554,7 @@ module.exports = Message;
diff --git a/docs/structures_MessageMedia.js.html b/docs/structures_MessageMedia.js.html
index bf831d9..a0f4a4d 100644
--- a/docs/structures_MessageMedia.js.html
+++ b/docs/structures_MessageMedia.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/MessageMedia.js
+ whatsapp-web.js 1.16.3 » Source: structures/MessageMedia.js
@@ -15,7 +15,7 @@
@@ -142,7 +142,7 @@ module.exports = MessageMedia;
diff --git a/docs/structures_Order.js.html b/docs/structures_Order.js.html
index c3755e3..372f9fd 100644
--- a/docs/structures_Order.js.html
+++ b/docs/structures_Order.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Order.js
+ whatsapp-web.js 1.16.3 » Source: structures/Order.js
@@ -15,7 +15,7 @@
@@ -90,7 +90,7 @@ module.exports = Order;
diff --git a/docs/structures_Payment.js.html b/docs/structures_Payment.js.html
index 3709555..c4b4b3b 100644
--- a/docs/structures_Payment.js.html
+++ b/docs/structures_Payment.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Payment.js
+ whatsapp-web.js 1.16.3 » Source: structures/Payment.js
@@ -15,7 +15,7 @@
@@ -118,7 +118,7 @@ module.exports = Payment;
diff --git a/docs/structures_PrivateChat.js.html b/docs/structures_PrivateChat.js.html
index 3ca9b7f..5c24844 100644
--- a/docs/structures_PrivateChat.js.html
+++ b/docs/structures_PrivateChat.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/PrivateChat.js
+ whatsapp-web.js 1.16.3 » Source: structures/PrivateChat.js
@@ -15,7 +15,7 @@
@@ -51,7 +51,7 @@ module.exports = PrivateChat;
diff --git a/docs/structures_PrivateContact.js.html b/docs/structures_PrivateContact.js.html
index 055ee50..9f4052e 100644
--- a/docs/structures_PrivateContact.js.html
+++ b/docs/structures_PrivateContact.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/PrivateContact.js
+ whatsapp-web.js 1.16.3 » Source: structures/PrivateContact.js
@@ -15,7 +15,7 @@
@@ -51,7 +51,7 @@ module.exports = PrivateContact;
diff --git a/docs/structures_Product.js.html b/docs/structures_Product.js.html
index edc76a4..61bcf04 100644
--- a/docs/structures_Product.js.html
+++ b/docs/structures_Product.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/Product.js
+ whatsapp-web.js 1.16.3 » Source: structures/Product.js
@@ -15,7 +15,7 @@
@@ -106,7 +106,7 @@ module.exports = Product;
diff --git a/docs/structures_ProductMetadata.js.html b/docs/structures_ProductMetadata.js.html
index 65d486a..eed1f70 100644
--- a/docs/structures_ProductMetadata.js.html
+++ b/docs/structures_ProductMetadata.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: structures/ProductMetadata.js
+ whatsapp-web.js 1.16.3 » Source: structures/ProductMetadata.js
@@ -15,7 +15,7 @@
@@ -63,7 +63,7 @@ module.exports = ProductMetadata;
diff --git a/docs/util_Constants.js.html b/docs/util_Constants.js.html
index e7d05d3..49fc53e 100644
--- a/docs/util_Constants.js.html
+++ b/docs/util_Constants.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: util/Constants.js
+ whatsapp-web.js 1.16.3 » Source: util/Constants.js
@@ -15,7 +15,7 @@
@@ -197,7 +197,7 @@ exports.MessageAck = {
diff --git a/docs/util_InterfaceController.js.html b/docs/util_InterfaceController.js.html
index a7a5700..bf9c46c 100644
--- a/docs/util_InterfaceController.js.html
+++ b/docs/util_InterfaceController.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: util/InterfaceController.js
+ whatsapp-web.js 1.16.3 » Source: util/InterfaceController.js
@@ -15,7 +15,7 @@
@@ -160,7 +160,7 @@ module.exports = InterfaceController;
diff --git a/docs/util_Util.js.html b/docs/util_Util.js.html
index b662084..129aede 100644
--- a/docs/util_Util.js.html
+++ b/docs/util_Util.js.html
@@ -4,7 +4,7 @@
- whatsapp-web.js 1.16.2 » Source: util/Util.js
+ whatsapp-web.js 1.16.3 » Source: util/Util.js
@@ -15,7 +15,7 @@
@@ -226,7 +226,7 @@ module.exports = Util;
diff --git a/package.json b/package.json
index da97b20..b4c2a31 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "whatsapp-web.js",
- "version": "1.16.2",
+ "version": "1.16.3",
"description": "Library for interacting with the WhatsApp Web API ",
"main": "./index.js",
"typings": "./index.d.ts",