From 36687f984b3da02378ccdd84be388b303b35736a Mon Sep 17 00:00:00 2001
From: GitHub Action
Date: Thu, 30 Mar 2023 16:30:22 +0000
Subject: [PATCH] Update content of files
---
data/web/corefork.telegram.org/api/auth.html | 5 +-
.../api/bots/webapps.html | 37 ++++++++++++
.../web/corefork.telegram.org/api/layers.html | 26 ++++----
data/web/corefork.telegram.org/api/links.html | 14 +----
.../constructor/appWebViewResultUrl.html | 30 +++-------
.../constructor/attachMenuBot.html | 2 +-
.../constructor/auth.authorization | 6 +-
.../constructor/auth.loggedOut | 8 +--
.../constructor/botApp.html | 60 +++++++------------
.../constructor/botAppNotModified.html | 13 ++--
.../constructor/defaultHistoryTTL.html | 25 ++------
.../constructor/dialog.html | 2 +
.../constructor/forumTopic.html | 34 ++++-------
.../method/account.reorderUsernames | 2 +-
.../method/channels.createChannel | 3 +-
.../method/channels.createForumTopic | 8 ++-
.../method/channels.editForumTopic | 30 +++++++++-
.../method/messages.createChat | 3 +-
.../method/messages.getBotApp | 50 +++++-----------
.../method/messages.requestAppWebView | 1 +
.../method/messages.setDefaultHistoryTTL | 27 ++-------
.../method/messages.toggleBotInAttachMenu | 4 +-
.../type/AppWebViewResult.html | 32 +++-------
data/web/corefork.telegram.org/type/Bool.html | 2 +-
.../corefork.telegram.org/type/BotApp.html | 28 ++++-----
.../type/DefaultHistoryTTL.html | 29 ++-------
.../type/ForumTopic.html | 26 +++-----
.../type/ReadParticipantDate.html | 15 ++---
.../type/RequestPeerType.html | 23 ++-----
.../type/StickerKeyword.html | 15 ++---
.../type/TextWithEntities.html | 20 +++----
.../corefork.telegram.org/type/Updates.html | 4 +-
.../corefork.telegram.org/type/Username.html | 15 ++---
.../type/account.AutoSaveSettings | 25 ++------
.../corefork.telegram.org/type/help.AppConfig | 32 +++-------
.../type/messages.BotApp | 32 +++-------
.../type/messages.ForumTopics | 30 +++-------
37 files changed, 265 insertions(+), 453 deletions(-)
diff --git a/data/web/corefork.telegram.org/api/auth.html b/data/web/corefork.telegram.org/api/auth.html
index 576f073d4e..9a73e8ae32 100644
--- a/data/web/corefork.telegram.org/api/auth.html
+++ b/data/web/corefork.telegram.org/api/auth.html
@@ -51,9 +51,10 @@
To show a nicely formatted and validated phone number field, the help.countriesList constructor can be obtained using the help.getCountriesList method.
The help.countriesList config is then used as described here » .
Then, a text message containing an authorization code is sent to the user's phone using auth.sendCode .
-However, this is not always the case, if logout tokens are used:
- Logout tokens
+However, this is not always the case, if future auth tokens are used:
+ Future auth tokens
When invoking auth.logOut on a previously authorized session with 2FA enabled, the server may return a future_auth_token
, which should be stored in the local database.
+A future_auth_token
is also contained in the auth.authorization returned when logging in.
At all times, the logout token database should contain at most 20 tokens: evict older tokens as new tokens are added.
When invoking auth.sendCode , all logout tokens present in the database should be provided to codeSettings.logout_tokens
.
If any of the logout tokens matches the account we're trying to login into and the token hasn't expired, auth.sendCode will directly return a SESSION_PASSWORD_NEEDED
RPC error, directly asking the user to enter the 2FA password , without sending any authorization code.
diff --git a/data/web/corefork.telegram.org/api/bots/webapps.html b/data/web/corefork.telegram.org/api/bots/webapps.html
index 05fea3422a..1ccdf132d9 100644
--- a/data/web/corefork.telegram.org/api/bots/webapps.html
+++ b/data/web/corefork.telegram.org/api/bots/webapps.html
@@ -153,6 +153,43 @@ The webview must be closed after invoking the messages.requestWebView , and then open a webview using the url
contained in the returned webViewResultUrl .
After loading the webview, until it is closed by a web_app_close event , the user client must invoke messages.prolongWebView every 60 seconds: if the method call returns QUERY_ID_INVALID
, the webview must be closed.
The opened URL's fragment parameters already contain basic information about the user and a query_id
parameter, that is exposed by the bot web apps JS library : this query_id
can then be used by the bot to invoke messages.sendWebViewResultMessage , passing an InputBotInlineResult constructor that will automatically send a message with optionally attached media, and even inline buttons on behalf of the user.
+ Bot web apps
+Schema:
+inputBotAppID #a920bd7a id:long access_hash:long = InputBotApp ;
+inputBotAppShortName #908c0407 bot_id:InputUser short_name:string = InputBotApp ;
+
+botAppNotModified #5da674b7 = BotApp ;
+botApp #95fcd1d6 flags:# id:long access_hash:long short_name:string title:string description:string photo:Photo document:flags.0?Document hash:long = BotApp ;
+
+messages.botApp #eb50adf5 flags:# inactive:flags.0?true request_write_access:flags.1?true app:BotApp = messages.BotApp ;
+
+appWebViewResultUrl #3c1b4f0d url:string = AppWebViewResult ;
+
+---functions---
+
+messages.getBotApp #34fdc5c3 app:InputBotApp hash:long = messages.BotApp ;
+
+messages.requestAppWebView #8c5a3b3c flags:# write_allowed:flags.0?true peer:InputPeer app:InputBotApp start_param:flags.1?string theme_params:flags.2?DataJSON platform:string = AppWebViewResult ;
+
+messages.prolongWebView #7ff34309 flags:# silent:flags.5?true peer:InputPeer bot:InputUser query_id:long reply_to_msg_id:flags.0?int top_msg_id:flags.9?int send_as:flags.13?InputPeer = Bool ;
+Another way to open web apps is by using bot web app links » .
+These links are different from bot attachment menu deep links » , because they don't require the user to install an attachment menu, and a single bot can offer multiple web apps, distinguished by their short_name
.
+These links should be handled as follows:
+
+Check if bot_username
parameter of the link is indeed a bot username, if so then
+Invoke messages.getBotApp , passing an inputBotAppShortName with the short_name
contained in the appname
query string parameter.
+If the client has already encountered an app with this short name from the same bot before, pass the hash
of the cached botApp constructor to messages.getBotApp .
+If a messages.botApp constructor is returned, open the web app by invoking messages.requestAppWebView , generating an inputBotAppID constructor from id
and access_hash
of the returned botApp , or from previously cached information if we already met the bot app and botAppNotModified was returned.
+If the client has clicked on the link in a Telegram chat, pass the chat's peer information into peer
; otherwise pass the bot's peer information, instead.
+If the messages.botApp .inactive
flag is set, ask confirmation from the user before opening the web app.
+If the startapp
query string parameter is present, pass it to start_param
when invoking messages.requestAppWebView .
+If the messages.botApp .request_write_access
flag is set, the bot is asking permission to send messages to the user: if the user agrees, set the write_allowed
flag when invoking messages.requestAppWebView .
+
+
+
+Finally, open the webview using the url
contained in the returned appWebViewResultUrl .
+Since there is no linked inline query, web_app_data_send
events must be ignored.
+The bot can, however, write to the user directly if it already has a chat with the user or if it requested permission via request_write_access
and the user granted it with write_allowed
.
Theme parameters
Bot web apps can be themed according to the following theme parameters, passed as a JSON object to the theme_params
parameter of the messages.requestSimpleWebView and messages.requestWebView methods.
This JSON object has the the following keys, containing color theme information (hex string, RGB, no alpha) to pass to the web app:
diff --git a/data/web/corefork.telegram.org/api/layers.html b/data/web/corefork.telegram.org/api/layers.html
index 7c3d010e55..1349a42baa 100644
--- a/data/web/corefork.telegram.org/api/layers.html
+++ b/data/web/corefork.telegram.org/api/layers.html
@@ -57,7 +57,7 @@
Schema changes
New Methods
New Constructors
@@ -437,7 +437,7 @@
Added channelAdminLogEventActionDeleteTopic -
Added channelAdminLogEventActionPinTopic -
Added forumTopicDeleted -
-Added forumTopic -
+Added forumTopic - Represents a forum topic .
Added messages.forumTopics -
Added messageActionTopicCreate -
Added messageActionTopicEdit -
@@ -1283,7 +1283,7 @@ Also, discussion group admins can now messages.getAvailableReactions #18dea0ac hash:int = messages.AvailableReactions ;
messages.setDefaultReaction #d960c4d4 reaction:string = Bool ;
-Anonymous posting in public groups , protected content , device management , login via missed call , mention users in inline buttons even if they don't have a username , logout tokens , improvements to join requests and stickers.
+Anonymous posting in public groups , protected content , device management , login via missed call , mention users in inline buttons even if they don't have a username , future auth tokens , improvements to join requests and stickers.
Schema changes
New Methods
Changed Constructors
diff --git a/data/web/corefork.telegram.org/api/links.html b/data/web/corefork.telegram.org/api/links.html
index 668da80e29..5c81e8d29b 100644
--- a/data/web/corefork.telegram.org/api/links.html
+++ b/data/web/corefork.telegram.org/api/links.html
@@ -830,18 +830,8 @@ tg://resolve?domain=<bot_username>&startgroup&admin=<permission
Bot web app links
Used to share bot web apps .
-These links should be handled as follows:
-
-Check if bot_username
is indeed a bot username, if so then
-Invoke messages.getBotApp , passing an inputBotAppShortName with the short_name
contained in the appname
query string parameter.
-If a messages.botApp constructor is returned, open the web app by invoking messages.requestAppWebView .
-If the client has clicked on the link in a Telegram chat, pass the chat's peer information into peer
; otherwise pass the bot's peer information, instead.
-If the messages.botApp .inactive
flag is set, ask confirmation from the user before opening the web app.
-If the startapp
query string parameter is present, pass it to start_param
when invoking messages.requestAppWebView .
-If the messages.botApp .request_write_access
flag is set, the bot is asking permission to send messages to the user: if the user agrees, set the write_allowed
flag when invoking messages.requestAppWebView .
-
-
-
+These links are different from bot attachment menu deep links , because they don't require the user to install an attachment menu, and a single bot can offer multiple web apps, distinguished by their short_name
.
+These links should be handled as specified in the bot web app documentation » .
t.me
syntax:
t.me/<bot_username>/<short_name>?startapp=<start_parameter>
tg:
syntax:
diff --git a/data/web/corefork.telegram.org/constructor/appWebViewResultUrl.html b/data/web/corefork.telegram.org/constructor/appWebViewResultUrl.html
index 90495aa8b6..668202abb5 100644
--- a/data/web/corefork.telegram.org/constructor/appWebViewResultUrl.html
+++ b/data/web/corefork.telegram.org/constructor/appWebViewResultUrl.html
@@ -4,26 +4,10 @@
appWebViewResultUrl
-
+
-
+
@@ -58,7 +42,8 @@ AppWebViewResult">
appWebViewResultUrl
-
+
Contains the link that must be used to open a bot web app .
+
+
AppWebViewResult
+
Related pages
+
+
Bots can offer users interactive HTML5 web apps to completely replace any website.
diff --git a/data/web/corefork.telegram.org/constructor/attachMenuBot.html b/data/web/corefork.telegram.org/constructor/attachMenuBot.html
index b1311d0365..cb1b1b30cc 100644
--- a/data/web/corefork.telegram.org/constructor/attachMenuBot.html
+++ b/data/web/corefork.telegram.org/constructor/attachMenuBot.html
@@ -84,7 +84,7 @@
request_write_access
flags .2?true
-
+Whether the bot would like to send messages to the user.
bot_id
diff --git a/data/web/corefork.telegram.org/constructor/auth.authorization b/data/web/corefork.telegram.org/constructor/auth.authorization
index 165db901c1..5ed3f74e9e 100644
--- a/data/web/corefork.telegram.org/constructor/auth.authorization
+++ b/data/web/corefork.telegram.org/constructor/auth.authorization
@@ -89,7 +89,7 @@
future_auth_token
flags .2?bytes
-
+A future auth token
user
@@ -101,7 +101,9 @@
Type
auth.Authorization
Related pages
-
+
+
+How to register a user's phone to start using the API.
diff --git a/data/web/corefork.telegram.org/constructor/auth.loggedOut b/data/web/corefork.telegram.org/constructor/auth.loggedOut
index 2645f0dac8..a762045ed2 100644
--- a/data/web/corefork.telegram.org/constructor/auth.loggedOut
+++ b/data/web/corefork.telegram.org/constructor/auth.loggedOut
@@ -4,10 +4,10 @@
auth.loggedOut
-
+
-
+
@@ -42,7 +42,7 @@
auth.loggedOut
- Logout token » to be used on subsequent authorizations
+
Future auth token » to be used on subsequent authorizations
@@ -74,7 +74,7 @@
future_auth_token
flags .0?bytes
-Logout token » to be used on subsequent authorizations
+Future auth token » to be used on subsequent authorizations
diff --git a/data/web/corefork.telegram.org/constructor/botApp.html b/data/web/corefork.telegram.org/constructor/botApp.html
index 6d4aa26fbc..9fe80cfd68 100644
--- a/data/web/corefork.telegram.org/constructor/botApp.html
+++ b/data/web/corefork.telegram.org/constructor/botApp.html
@@ -4,38 +4,10 @@
botApp
-
+
-
+
@@ -70,7 +42,8 @@ string…">
botApp
-
+
Contains information about a bot web app .
+
+
BotApp
+
Related pages
+
+
Telegram clients must handle special tg:// and t.me deep links encountered in messages, link entities and in other apps by registering OS handlers.
+
+
Obtain information about a bot web app
+
+
Bots can offer users interactive HTML5 web apps to completely replace any website.
diff --git a/data/web/corefork.telegram.org/constructor/botAppNotModified.html b/data/web/corefork.telegram.org/constructor/botAppNotModified.html
index 5b6e0814a6..80f079a7a3 100644
--- a/data/web/corefork.telegram.org/constructor/botAppNotModified.html
+++ b/data/web/corefork.telegram.org/constructor/botAppNotModified.html
@@ -4,16 +4,10 @@
botAppNotModified
-
+
-
+
@@ -48,7 +42,8 @@ BotApp">
botAppNotModified
-
+
Bot app info hasn't changed.
+
Layer 155
diff --git a/data/web/corefork.telegram.org/constructor/defaultHistoryTTL.html b/data/web/corefork.telegram.org/constructor/defaultHistoryTTL.html
index 89633a6988..b6d688c028 100644
--- a/data/web/corefork.telegram.org/constructor/defaultHistoryTTL.html
+++ b/data/web/corefork.telegram.org/constructor/defaultHistoryTTL.html
@@ -4,26 +4,10 @@
defaultHistoryTTL
-
+
-
+
@@ -58,7 +42,8 @@ DefaultHistoryTTL">
defaultHistoryTTL
-
+
Contains info about the default value of the Time-To-Live setting, applied to all new chats.
+
Layer 155
@@ -84,7 +69,7 @@ DefaultHistoryTTL">
period
int
-
+Time-To-Live setting applied to all new chats.
diff --git a/data/web/corefork.telegram.org/constructor/dialog.html b/data/web/corefork.telegram.org/constructor/dialog.html
index f4594503fb..b1dd88ca95 100644
--- a/data/web/corefork.telegram.org/constructor/dialog.html
+++ b/data/web/corefork.telegram.org/constructor/dialog.html
@@ -150,6 +150,8 @@
Telegram allows mentioning other users in case of urgent duckling matters, and quickly navigating to those mentions in order to read them as swiftly as possible.
How to subscribe to updates and handle them properly.
+
+How to handle message drafts
Telegram allows placing chats into folders, based on their type, mute status, or other custom criteria, thanks to folder blacklists and whitelists.
diff --git a/data/web/corefork.telegram.org/constructor/forumTopic.html b/data/web/corefork.telegram.org/constructor/forumTopic.html
index 22bd99b347..033c2f5d7e 100644
--- a/data/web/corefork.telegram.org/constructor/forumTopic.html
+++ b/data/web/corefork.telegram.org/constructor/forumTopic.html
@@ -4,30 +4,10 @@
forumTopic
-
+
-
+
@@ -183,7 +163,7 @@ Whether…">
draft
-flags .1?DraftMessage
+flags .4?DraftMessage
Message draft
@@ -191,8 +171,14 @@ Whether…">
Type
ForumTopic
Related pages
+
+
Telegram allows creating forums with multiple distinct topics.
-
Telegram allows including animated and static custom emojis inside of messages.
+Telegram allows including animated and static custom emojis inside of messages.
+
+Telegram allows mentioning other users in case of urgent duckling matters, and quickly navigating to those mentions in order to read them as swiftly as possible.
+
+How to handle message drafts
diff --git a/data/web/corefork.telegram.org/method/account.reorderUsernames b/data/web/corefork.telegram.org/method/account.reorderUsernames
index 6cb29bf997..b138c2f498 100644
--- a/data/web/corefork.telegram.org/method/account.reorderUsernames
+++ b/data/web/corefork.telegram.org/method/account.reorderUsernames
@@ -91,7 +91,7 @@
400
ORDER_INVALID
-
+The specified username order is invalid.
diff --git a/data/web/corefork.telegram.org/method/channels.createChannel b/data/web/corefork.telegram.org/method/channels.createChannel
index 23130cbee2..9ae3c1bea9 100644
--- a/data/web/corefork.telegram.org/method/channels.createChannel
+++ b/data/web/corefork.telegram.org/method/channels.createChannel
@@ -172,7 +172,8 @@
Import chat history from a foreign chat app into a specific Telegram chat, click here for more info about imported chats » .
Telegram allows creating forums with multiple distinct topics.
-
+
+Changes the default value of the Time-To-Live setting, applied to all new chats.
diff --git a/data/web/corefork.telegram.org/method/channels.createForumTopic b/data/web/corefork.telegram.org/method/channels.createForumTopic
index 6065d4af08..2e68d7a182 100644
--- a/data/web/corefork.telegram.org/method/channels.createForumTopic
+++ b/data/web/corefork.telegram.org/method/channels.createForumTopic
@@ -4,10 +4,10 @@
channels.createForumTopic
-
+
-
+
@@ -137,7 +137,9 @@
Telegram allows including animated and static custom emojis inside of messages.
-
+
+
+How to handle admin permissions, granular bans and global permissions in channels, groups and supergroups.
diff --git a/data/web/corefork.telegram.org/method/channels.editForumTopic b/data/web/corefork.telegram.org/method/channels.editForumTopic
index 704272fd5c..fc68b112fb 100644
--- a/data/web/corefork.telegram.org/method/channels.editForumTopic
+++ b/data/web/corefork.telegram.org/method/channels.editForumTopic
@@ -4,10 +4,10 @@
channels.editForumTopic
-
+
-
+
@@ -113,6 +113,28 @@
Result
Updates
+ Possible errors
+
+
+
+Code
+Type
+Description
+
+
+
+
+400
+TOPIC_ID_INVALID
+The specified topic ID is invalid.
+
+
+400
+TOPIC_NOT_MODIFIED
+The updated topic info is equal to the current topic info, nothing was changed.
+
+
+
Bots can use this method
Related pages
@@ -120,7 +142,9 @@
-Telegram allows creating forums with multiple distinct topics.
+Telegram allows creating forums with multiple distinct topics.
+
+How to handle admin permissions, granular bans and global permissions in channels, groups and supergroups.
diff --git a/data/web/corefork.telegram.org/method/messages.createChat b/data/web/corefork.telegram.org/method/messages.createChat
index a38827c381..19d2cd9bc3 100644
--- a/data/web/corefork.telegram.org/method/messages.createChat
+++ b/data/web/corefork.telegram.org/method/messages.createChat
@@ -141,7 +141,8 @@
Related pages
-
+
+Changes the default value of the Time-To-Live setting, applied to all new chats.
diff --git a/data/web/corefork.telegram.org/method/messages.getBotApp b/data/web/corefork.telegram.org/method/messages.getBotApp
index 1533f8e844..c21bf923e2 100644
--- a/data/web/corefork.telegram.org/method/messages.getBotApp
+++ b/data/web/corefork.telegram.org/method/messages.getBotApp
@@ -4,40 +4,10 @@
messages.getBotApp
-
+
-
+
@@ -72,7 +42,8 @@ Description…">
messages.getBotApp
-
+
Obtain information about a bot web app
+
+
Bots can use this method
+
Related pages
+
+
Telegram clients must handle special tg:// and t.me deep links encountered in messages, link entities and in other apps by registering OS handlers.
+
+
How to fetch results from large lists of objects.
+
+
Bots can offer users interactive HTML5 web apps to completely replace any website.
diff --git a/data/web/corefork.telegram.org/method/messages.requestAppWebView b/data/web/corefork.telegram.org/method/messages.requestAppWebView
index 8117f29f8c..9639ff2745 100644
--- a/data/web/corefork.telegram.org/method/messages.requestAppWebView
+++ b/data/web/corefork.telegram.org/method/messages.requestAppWebView
@@ -113,6 +113,7 @@
Telegram clients must handle special tg:// and t.me deep links encountered in messages, link entities and in other apps by registering OS handlers.
+
Obtain information about a bot web app
Bots can offer users interactive HTML5 web apps to completely replace any website.
diff --git a/data/web/corefork.telegram.org/method/messages.setDefaultHistoryTTL b/data/web/corefork.telegram.org/method/messages.setDefaultHistoryTTL
index 3d84bae6ae..c25a42a957 100644
--- a/data/web/corefork.telegram.org/method/messages.setDefaultHistoryTTL
+++ b/data/web/corefork.telegram.org/method/messages.setDefaultHistoryTTL
@@ -4,28 +4,10 @@
messages.setDefaultHistoryTTL
-
+
-
+
@@ -60,7 +42,8 @@ Bots can use this method">
messages.setDefaultHistoryTTL
-
+
Changes the default value of the Time-To-Live setting, applied to all new chats.
+
Layer 155
@@ -89,7 +72,7 @@ Bots can use this method">
period
int
-
+The new default Time-To-Live of all messages sent in new chats.
diff --git a/data/web/corefork.telegram.org/method/messages.toggleBotInAttachMenu b/data/web/corefork.telegram.org/method/messages.toggleBotInAttachMenu
index 41feceafd7..1058a81304 100644
--- a/data/web/corefork.telegram.org/method/messages.toggleBotInAttachMenu
+++ b/data/web/corefork.telegram.org/method/messages.toggleBotInAttachMenu
@@ -77,7 +77,7 @@
write_allowed
flags .0?true
-
+Whether the user authorizes the bot to write messages to them, if requested by attachMenuBot .request_write_access
bot
@@ -94,6 +94,8 @@
Result
Bool
Related pages
+
+Represents a bot web app that can be launched from the attachment menu »
Bots can install attachment menu entries, offering conveniently accessible, versatile web apps.
diff --git a/data/web/corefork.telegram.org/type/AppWebViewResult.html b/data/web/corefork.telegram.org/type/AppWebViewResult.html
index 5499fce52d..77bda215df 100644
--- a/data/web/corefork.telegram.org/type/AppWebViewResult.html
+++ b/data/web/corefork.telegram.org/type/AppWebViewResult.html
@@ -4,28 +4,10 @@
AppWebViewResult
-
+
-
+
@@ -60,7 +42,8 @@ Open a…">
AppWebViewResult
-
+
Contains the link that must be used to open a bot web app .
+
-
+
+
Related pages
+
+
Bots can offer users interactive HTML5 web apps to completely replace any website.
diff --git a/data/web/corefork.telegram.org/type/Bool.html b/data/web/corefork.telegram.org/type/Bool.html
index 95c74eab54..767cde90e8 100644
--- a/data/web/corefork.telegram.org/type/Bool.html
+++ b/data/web/corefork.telegram.org/type/Bool.html
@@ -748,7 +748,7 @@
messages.setDefaultHistoryTTL
-
+Changes the default value of the Time-To-Live setting, applied to all new chats.
auth.requestFirebaseSms
diff --git a/data/web/corefork.telegram.org/type/BotApp.html b/data/web/corefork.telegram.org/type/BotApp.html
index c162a38dc8..582df670ea 100644
--- a/data/web/corefork.telegram.org/type/BotApp.html
+++ b/data/web/corefork.telegram.org/type/BotApp.html
@@ -4,22 +4,10 @@
BotApp
-
+
-
+
@@ -54,7 +42,8 @@ botApp
BotApp
-
+
Contains information about a bot web app .
+
+
+
Related pages
+
+
Bots can offer users interactive HTML5 web apps to completely replace any website.
diff --git a/data/web/corefork.telegram.org/type/DefaultHistoryTTL.html b/data/web/corefork.telegram.org/type/DefaultHistoryTTL.html
index fccbf0c813..bf7f0a3577 100644
--- a/data/web/corefork.telegram.org/type/DefaultHistoryTTL.html
+++ b/data/web/corefork.telegram.org/type/DefaultHistoryTTL.html
@@ -4,28 +4,10 @@
DefaultHistoryTTL
-
+
-
+
@@ -60,7 +42,8 @@ messages.getDefaultHistoryTTL
DefaultHistoryTTL
-
+
Contains info about the default value of the Time-To-Live setting, applied to all new chats.
+
Layer 155
@@ -88,7 +71,7 @@ messages.getDefaultHistoryTTL
defaultHistoryTTL
-
+Contains info about the default value of the Time-To-Live setting, applied to all new chats.
@@ -103,7 +86,7 @@ messages.getDefaultHistoryTTL
messages.getDefaultHistoryTTL
-
+Gets the default value of the Time-To-Live setting, applied to all new chats.
diff --git a/data/web/corefork.telegram.org/type/ForumTopic.html b/data/web/corefork.telegram.org/type/ForumTopic.html
index a8f8cde7d0..167303ca94 100644
--- a/data/web/corefork.telegram.org/type/ForumTopic.html
+++ b/data/web/corefork.telegram.org/type/ForumTopic.html
@@ -4,22 +4,10 @@
ForumTopic
-
+
-
+
@@ -54,7 +42,8 @@ forumTopic
ForumTopic
-
forumTopic
-
+Represents a forum topic .
-
+
+
Related pages
+
+
Telegram allows creating forums with multiple distinct topics.
diff --git a/data/web/corefork.telegram.org/type/ReadParticipantDate.html b/data/web/corefork.telegram.org/type/ReadParticipantDate.html
index 1f0694e28c..c51047f2d5 100644
--- a/data/web/corefork.telegram.org/type/ReadParticipantDate.html
+++ b/data/web/corefork.telegram.org/type/ReadParticipantDate.html
@@ -4,18 +4,10 @@
ReadParticipantDate
-
+
-
+
@@ -50,7 +42,8 @@ readParticipantDate
ReadParticipantDate
-
+
Contains info about when a certain participant has read a message
+
Layer 155
diff --git a/data/web/corefork.telegram.org/type/RequestPeerType.html b/data/web/corefork.telegram.org/type/RequestPeerType.html
index 09e71c87d1..facb881646 100644
--- a/data/web/corefork.telegram.org/type/RequestPeerType.html
+++ b/data/web/corefork.telegram.org/type/RequestPeerType.html
@@ -4,26 +4,10 @@
RequestPeerType
-
+
-
+
@@ -58,7 +42,8 @@ requestPeerTypeBroadcast
RequestPeerType
-
+
Type of requested peer
+
Layer 155
diff --git a/data/web/corefork.telegram.org/type/StickerKeyword.html b/data/web/corefork.telegram.org/type/StickerKeyword.html
index 538c21553b..58a50244aa 100644
--- a/data/web/corefork.telegram.org/type/StickerKeyword.html
+++ b/data/web/corefork.telegram.org/type/StickerKeyword.html
@@ -4,18 +4,10 @@
StickerKeyword
-
+
-
+
@@ -50,7 +42,8 @@ stickerKeyword
StickerKeyword
-
+
Keywords for a certain sticker
+
diff --git a/data/web/corefork.telegram.org/type/messages.BotApp b/data/web/corefork.telegram.org/type/messages.BotApp
index f38805263e..8e56c54cca 100644
--- a/data/web/corefork.telegram.org/type/messages.BotApp
+++ b/data/web/corefork.telegram.org/type/messages.BotApp
@@ -4,28 +4,10 @@
messages.BotApp
-
+
-
+
@@ -60,7 +42,8 @@ messages.getBotApp
messages.BotApp
-
+
Contains information about a bot web app
+
+
+
Related pages
+
+
Bots can offer users interactive HTML5 web apps to completely replace any website.
diff --git a/data/web/corefork.telegram.org/type/messages.ForumTopics b/data/web/corefork.telegram.org/type/messages.ForumTopics
index 6237499008..5cb2b8f490 100644
--- a/data/web/corefork.telegram.org/type/messages.ForumTopics
+++ b/data/web/corefork.telegram.org/type/messages.ForumTopics
@@ -4,28 +4,10 @@
messages.ForumTopics
-
+
-
+
@@ -60,7 +42,8 @@ Get topics…">
messages.ForumTopics
-
+
Contains information about multiple forum topics
+
+
+
Related pages
+
+
Telegram allows creating forums with multiple distinct topics.