forked from danielcardeenas/sulla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
76 lines (76 loc) Β· 4.12 KB
/
index.js
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
export { addParticipant } from './add-participant';
export { areAllMessagesLoaded } from './are-all-messages-loaded';
export { blockContact } from './block-contact';
export { clearChat } from './clear-chat';
export { createGroup } from './create-group';
export { deleteConversation } from './delete-conversation';
export { deleteMessages } from './delete-messages';
export { demoteParticipant } from './demote-participant';
export { downloadFileWithCredentials } from './download-file-with-credentials';
export { encryptAndUploadFile } from './encrypt-and-upload-file';
export { forwardMessages } from './forward-messages';
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 { getGroupAdmins } from './get-group-admins';
export { getGroupInviteLink } from './get-group-invite-link';
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 { getMe } from './get-me';
export { getMessageById } from './get-message-by-id';
export { getMyContacts } from './get-my-contacts';
export { getNewId } from './get-new-id';
export { getNewMessageId } from './get-new-message-id';
export { getNumberProfile } from './get-number-profile';
export { getProfilePicFromServer } from './get-profile-pic-from-server';
export { getStatus } from './get-status';
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 { leaveGroup } from './leave-group';
export { 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 { promoteParticipant } from './promote-participant';
export { removeParticipant } from './remove-participant';
export { reply } from './reply';
export { revokeGroupInviteLink } from './revoke-invite-link';
export { sendChatstate } from './send-chat-state';
export { sendContact } from './send-contact';
export { sendFile } from './send-file';
export { sendImage } from './send-image';
export { sendImageAsSticker } from './send-image-as-stricker';
export { sendImageWithProduct } from './send-image-with-product';
export { sendLocation } from './send-location';
export { sendMessage } from './send-message';
export { sendMessageToID } from './send-message-to-id';
export { sendMessageWithTags } from './send-message-with-tags';
export { sendMessageWithThumb } from './send-message-with-thumb';
export { sendMessage2 } from './send-message2';
export { sendSeen } from './send-seen';
export { sendSticker } from './send-sticker';
export { sendVideoAsGif } from './send-video-as-gif';
export { setMyName } from './set-my-name';
export { setMyStatus } from './set-my-status';
export { startTyping, stopTyping } from './simulate-typing';
export { unblockContact } from './unblock-contact';