File size: 4,457 Bytes
4c34106
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * This file is part of WPPConnect.
 *
 * WPPConnect is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * WPPConnect is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with WPPConnect.  If not, see <https://www.gnu.org/licenses/>.
 */

export { areAllMessagesLoaded } from './are-all-messages-loaded';
export { downloadFile } from './download-file-with-credentials';
export { encryptAndUploadFile } from './encrypt-and-upload-file';
export { getAllChats } from './get-all-chats';
export { getAllChatIds } from './get-all-chats-ids';
export { getAllChatsWithMessages } from './get-all-chats-with-messages';
export { getAllContacts } from './get-all-contacts';
export { getAllGroupMetadata } from './get-all-group-metadata';
export { getAllGroups } from './get-all-groups';
export { getAllMessagesInChat } from './get-all-messages-in-chat';
export { getAllNewMessages } from './get-all-new-messages';
export { getAllUnreadMessages } from './get-all-unread-messages';
export { getBatteryLevel } from './get-battery-level';
export { getChat } from './get-chat';
export { getChatById } from './get-chat-by-id';
export { getChatByName } from './get-chat-by-name';
export { getAllChatsWithNewMessages } from './get-chats-with-new-messages';
export { getCommonGroups } from './get-common-groups';
export { getContact } from './get-contact';
export { getGroupMetadata } from './get-group-metadata';
export { getGroupParticipantIDs } from './get-group-participant-ids';
export { _getGroupParticipants } from './get-group-participants';
export { getHost } from './get-host';
export { getWid } from './get-wid';
export { getMe } from './get-me';
export { getMyContacts } from './get-my-contacts';
export { getNewId } from './get-new-id';
export { getNumberProfile } from './get-number-profile';
export { getUnreadMessages } from './get-unread-messages';
export { getUnreadMessagesInChat } from './get-unread-messages-in-chat';
export { hasUndreadMessages } from './has-unread-messages';
export { isConnected } from './is-connected';
export { isLoggedIn } from './is-logged-in';
export {
  asyncLoadAllEarlierMessages,
  loadAllEarlierMessages,
} from './load-all-earlier-chat-messages';
export { loadAndGetAllMessagesInChat } from './load-and-get-all-messages-in-chat';
export { loadChatEarlierMessages } from './load-earlier-chat-messages';
export { loadEarlierMessagesTillDate } from './load-earlier-messages-til-date';
export { processFiles } from './process-files';
export { processMessageObj } from './process-message-object';
export { sendChatstate } from './send-chat-state';
export { sendFile } from './send-file';
export { sendImage } from './send-image';
export { sendPtt } from './send-ptt';
export { sendImageWithProduct } from './send-image-with-product';
export { sendLocation } from './send-location';
export { sendMessage } from './send-message';
export { sendMessageOptions } from './sendMessageOptions';
export { sendMessageWithTags } from './send-message-with-tags';
export { sendMessageWithThumb } from './send-message-with-thumb';
export { sendMessage2 } from './send-message2';
export { sendVideoAsGif } from './send-video-as-gif';
export { setMyName } from './set-my-name';
export { forwardMessages } from './forward-messages';
export { getMessageById } from './get-message-by-id';
export { getMessages } from './get-messages';
export { setTheme, getTheme } from './theme';
export { sendLinkPreview } from './send-link-preview';
export { sendExist, scope, getchatId } from './check-send-exist';
export { setProfilePic } from './set-profile-pic';
export { pinChat } from './fix-chat';
export { getSessionTokenBrowser } from './get-session-token';
export { sendMute } from './send-mute';
export { createProduct } from './create-product';
export { getListMute, interfaceMute } from './get-list-mute';
export * from './phoneWatchdog';
export * from './presence';
export * from './set-online-presence';
export * from './set-temporary-messages';
export * from './star-messages';