64 lines
2.8 KiB
TypeScript
64 lines
2.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, leaveChannel, deleteChannel, createGroupChat, editChatPhoto,
|
|
toggleChatPinned, toggleChatArchived, toggleDialogUnread,
|
|
fetchChatFolders, editChatFolder, deleteChatFolder, fetchRecommendedChatFolders,
|
|
getChatByUsername, togglePreHistoryHidden, updateChatDefaultBannedRights, updateChatMemberBannedRights,
|
|
updateChatTitle, updateChatAbout, toggleSignatures, updateChatAdmin, fetchGroupsForDiscussion, setDiscussionGroup,
|
|
migrateChat, openChatByInvite, fetchMembers, importChatInvite,
|
|
} 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,
|
|
fetchMessageLink,
|
|
} from './messages';
|
|
|
|
export {
|
|
fetchFullUser, fetchNearestCountry,
|
|
fetchTopUsers, fetchContactList, fetchUsers,
|
|
updateContact, deleteUser, fetchProfilePhotos,
|
|
} from './users';
|
|
|
|
export {
|
|
fetchStickerSets, fetchRecentStickers, fetchFavoriteStickers, fetchFeaturedStickers,
|
|
faveSticker, fetchStickers, fetchSavedGifs, searchStickers, installStickerSet, uninstallStickerSet,
|
|
searchGifs, fetchAnimatedEmojis, fetchStickersForEmoji, fetchEmojiKeywords,
|
|
} from './symbols';
|
|
|
|
export {
|
|
checkChatUsername, setChatUsername, updatePrivateLink,
|
|
} 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,
|
|
} from './settings';
|
|
|
|
export {
|
|
getPasswordInfo, checkPassword, clearPassword, updatePassword, updateRecoveryEmail, provideRecoveryEmailCode,
|
|
} from './twoFaSettings';
|
|
|
|
export {
|
|
answerCallbackButton,
|
|
} from './bots';
|
|
|
|
export {
|
|
validateRequestedInfo, sendPaymentForm, getPaymentForm, getReceipt,
|
|
} from './payments';
|