100 lines
5.0 KiB
TypeScript
100 lines
5.0 KiB
TypeScript
export {
|
|
destroy, disconnect, downloadMedia, fetchCurrentUser, repairFileReference,
|
|
} from './client';
|
|
|
|
export {
|
|
reportPeer, reportProfilePhoto, changeSessionSettings, changeSessionTtl,
|
|
} from './account';
|
|
|
|
export {
|
|
provideAuthPhoneNumber, provideAuthCode, provideAuthPassword, provideAuthRegistration, restartAuth, restartAuthWithQr,
|
|
} from './auth';
|
|
|
|
export {
|
|
fetchChats, fetchFullChat, searchChats, requestChatUpdate, fetchChatSettings,
|
|
saveDraft, clearDraft, fetchChat, updateChatMutedState,
|
|
createChannel, joinChannel, deleteChatUser, deleteChat, leaveChannel, deleteChannel, createGroupChat, editChatPhoto,
|
|
toggleChatPinned, toggleChatArchived, toggleDialogUnread, setChatEnabledReactions,
|
|
fetchChatFolders, editChatFolder, deleteChatFolder, sortChatFolders, fetchRecommendedChatFolders,
|
|
getChatByUsername, togglePreHistoryHidden, updateChatDefaultBannedRights, updateChatMemberBannedRights,
|
|
updateChatTitle, updateChatAbout, toggleSignatures, updateChatAdmin, fetchGroupsForDiscussion, setDiscussionGroup,
|
|
migrateChat, openChatByInvite, fetchMembers, importChatInvite, addChatMembers, deleteChatMember, toggleIsProtected,
|
|
getChatByPhoneNumber, toggleJoinToSend, toggleJoinRequest,
|
|
} 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, fetchUnreadReactions, readAllReactions, fetchUnreadMentions, readAllMentions, transcribeAudio,
|
|
closePoll,
|
|
} from './messages';
|
|
|
|
export {
|
|
fetchFullUser, fetchNearestCountry, fetchTopUsers, fetchContactList, fetchUsers,
|
|
updateContact, importContact, deleteContact, fetchProfilePhotos, fetchCommonChats, reportSpam,
|
|
} from './users';
|
|
|
|
export {
|
|
fetchStickerSets, fetchRecentStickers, fetchFavoriteStickers, fetchFeaturedStickers,
|
|
faveSticker, fetchStickers, fetchSavedGifs, saveGif, searchStickers, installStickerSet, uninstallStickerSet,
|
|
searchGifs, fetchAnimatedEmojis, fetchStickersForEmoji, fetchEmojiKeywords, fetchAnimatedEmojiEffects,
|
|
removeRecentSticker, clearRecentStickers,
|
|
} from './symbols';
|
|
|
|
export {
|
|
checkChatUsername, setChatUsername, updatePrivateLink,
|
|
fetchExportedChatInvites, editExportedChatInvite, exportChatInvite, deleteExportedChatInvite,
|
|
deleteRevokedExportedChatInvites, fetchChatInviteImporters, hideChatJoinRequest, hideAllChatJoinRequests,
|
|
hideChatReportPanel,
|
|
} from './management';
|
|
|
|
export {
|
|
updateProfile, checkUsername, updateUsername, fetchBlockedContacts, blockContact, unblockContact,
|
|
updateProfilePhoto, uploadProfilePhoto, fetchWallpapers, uploadWallpaper,
|
|
fetchAuthorizations, terminateAuthorization, terminateAllAuthorizations,
|
|
fetchWebAuthorizations, terminateWebAuthorization, terminateAllWebAuthorizations,
|
|
fetchNotificationExceptions, fetchNotificationSettings, updateContactSignUpNotification, updateNotificationSettings,
|
|
fetchLanguages, fetchLangPack, fetchPrivacySettings, setPrivacySettings, registerDevice, unregisterDevice,
|
|
updateIsOnline, fetchContentSettings, updateContentSettings, fetchLangStrings, fetchCountryList, fetchAppConfig,
|
|
fetchGlobalPrivacySettings, updateGlobalPrivacySettings,
|
|
} from './settings';
|
|
|
|
export {
|
|
getPasswordInfo, checkPassword, clearPassword, updatePassword, updateRecoveryEmail, provideRecoveryEmailCode,
|
|
} from './twoFaSettings';
|
|
|
|
export {
|
|
answerCallbackButton, fetchTopInlineBots, fetchInlineBot, fetchInlineBotResults, sendInlineBotResult, startBot,
|
|
requestWebView, requestSimpleWebView, sendWebViewData, prolongWebView, loadAttachMenuBots, toggleBotInAttachMenu,
|
|
requestBotUrlAuth, requestLinkUrlAuth, acceptBotUrlAuth, acceptLinkUrlAuth,
|
|
} from './bots';
|
|
|
|
export {
|
|
validateRequestedInfo, sendPaymentForm, getPaymentForm, getReceipt, fetchPremiumPromo,
|
|
} from './payments';
|
|
|
|
export {
|
|
getGroupCall, joinGroupCall, discardGroupCall, createGroupCall,
|
|
editGroupCallTitle, editGroupCallParticipant, exportGroupCallInvite, fetchGroupCallParticipants,
|
|
joinGroupCallPresentation, leaveGroupCall, leaveGroupCallPresentation, toggleGroupCallStartSubscription,
|
|
requestCall, getDhConfig, confirmCall, sendSignalingData, acceptCall, discardCall, setCallRating, receivedCall,
|
|
} from './calls';
|
|
|
|
export {
|
|
getAvailableReactions, sendReaction, sendEmojiInteraction, fetchMessageReactionsList,
|
|
setDefaultReaction, fetchMessageReactions, sendWatchingEmojiInteraction,
|
|
} from './reactions';
|
|
|
|
export {
|
|
fetchChannelStatistics, fetchGroupStatistics, fetchMessageStatistics,
|
|
fetchMessagePublicForwards, fetchStatisticsAsyncGraph,
|
|
} from './statistics';
|
|
|
|
export {
|
|
acceptPhoneCall, confirmPhoneCall, requestPhoneCall, decodePhoneCallData, createPhoneCallState,
|
|
destroyPhoneCallState, encodePhoneCallData,
|
|
} from './phoneCallState';
|