77 lines
3.8 KiB
TypeScript
77 lines
3.8 KiB
TypeScript
export {
|
|
destroy, disconnect, downloadMedia, fetchCurrentUser,
|
|
} from './client';
|
|
|
|
export {
|
|
provideAuthPhoneNumber, provideAuthCode, provideAuthPassword, provideAuthRegistration, restartAuth, restartAuthWithQr,
|
|
} from './auth';
|
|
|
|
export {
|
|
fetchChats, fetchFullChat, searchChats, requestChatUpdate,
|
|
saveDraft, clearDraft, fetchChat, updateChatMutedState,
|
|
createChannel, joinChannel, deleteChatUser, deleteChat, leaveChannel, deleteChannel, createGroupChat, editChatPhoto,
|
|
toggleChatPinned, toggleChatArchived, toggleDialogUnread, setChatEnabledReactions,
|
|
fetchChatFolders, editChatFolder, deleteChatFolder, fetchRecommendedChatFolders,
|
|
getChatByUsername, togglePreHistoryHidden, updateChatDefaultBannedRights, updateChatMemberBannedRights,
|
|
updateChatTitle, updateChatAbout, toggleSignatures, updateChatAdmin, fetchGroupsForDiscussion, setDiscussionGroup,
|
|
migrateChat, openChatByInvite, fetchMembers, importChatInvite, addChatMembers, deleteChatMember, toggleIsProtected,
|
|
} from './chats';
|
|
|
|
export {
|
|
fetchMessages, fetchMessage, sendMessage, pinMessage, unpinAllMessages, deleteMessages, deleteHistory,
|
|
markMessageListRead, markMessagesRead, requestThreadInfoUpdate, searchMessagesLocal, searchMessagesGlobal,
|
|
fetchWebPagePreview, editMessage, forwardMessages, loadPollOptionResults, sendPollVote, findFirstMessageIdAfterDate,
|
|
fetchPinnedMessages, fetchScheduledHistory, sendScheduledMessages, rescheduleMessage, deleteScheduledMessages,
|
|
reportMessages, sendMessageAction, fetchSeenBy, fetchSponsoredMessages, viewSponsoredMessage, fetchSendAs,
|
|
saveDefaultSendAs,
|
|
} from './messages';
|
|
|
|
export {
|
|
fetchFullUser, fetchNearestCountry, fetchTopUsers, fetchContactList, fetchUsers,
|
|
addContact, updateContact, deleteContact, fetchProfilePhotos, fetchCommonChats,
|
|
} from './users';
|
|
|
|
export {
|
|
fetchStickerSets, fetchRecentStickers, fetchFavoriteStickers, fetchFeaturedStickers,
|
|
faveSticker, fetchStickers, fetchSavedGifs, searchStickers, installStickerSet, uninstallStickerSet,
|
|
searchGifs, fetchAnimatedEmojis, fetchStickersForEmoji, fetchEmojiKeywords, fetchAnimatedEmojiEffects,
|
|
} from './symbols';
|
|
|
|
export {
|
|
checkChatUsername, setChatUsername, updatePrivateLink,
|
|
fetchExportedChatInvites, editExportedChatInvite, exportChatInvite, deleteExportedChatInvite,
|
|
deleteRevokedExportedChatInvites, fetchChatInviteImporters, hideChatJoinRequest, hideAllChatJoinRequests,
|
|
} from './management';
|
|
|
|
export {
|
|
updateProfile, checkUsername, updateUsername, fetchBlockedContacts, blockContact, unblockContact,
|
|
updateProfilePhoto, uploadProfilePhoto, fetchWallpapers, uploadWallpaper,
|
|
fetchAuthorizations, terminateAuthorization, terminateAllAuthorizations,
|
|
fetchNotificationExceptions, fetchNotificationSettings, updateContactSignUpNotification, updateNotificationSettings,
|
|
fetchLanguages, fetchLangPack, fetchPrivacySettings, setPrivacySettings, registerDevice, unregisterDevice,
|
|
updateIsOnline, fetchContentSettings, updateContentSettings, fetchLangStrings, fetchCountryList, fetchAppConfig,
|
|
} from './settings';
|
|
|
|
export {
|
|
getPasswordInfo, checkPassword, clearPassword, updatePassword, updateRecoveryEmail, provideRecoveryEmailCode,
|
|
} from './twoFaSettings';
|
|
|
|
export {
|
|
answerCallbackButton, fetchTopInlineBots, fetchInlineBot, fetchInlineBotResults, sendInlineBotResult, startBot,
|
|
} from './bots';
|
|
|
|
export {
|
|
validateRequestedInfo, sendPaymentForm, getPaymentForm, getReceipt,
|
|
} from './payments';
|
|
|
|
export {
|
|
getGroupCall, joinGroupCall, discardGroupCall, createGroupCall,
|
|
editGroupCallTitle, editGroupCallParticipant, exportGroupCallInvite, fetchGroupCallParticipants,
|
|
joinGroupCallPresentation, leaveGroupCall, leaveGroupCallPresentation, toggleGroupCallStartSubscription,
|
|
} from './calls';
|
|
|
|
export {
|
|
getAvailableReactions, sendReaction, sendEmojiInteraction, fetchMessageReactionsList,
|
|
setDefaultReaction, fetchMessageReactions, sendWatchingEmojiInteraction,
|
|
} from './reactions';
|