Update content of files

This commit is contained in:
GitHub Action 2024-06-03 09:50:00 +00:00
parent cd9a9fa5cf
commit 3b8bc3a140
2 changed files with 8 additions and 17 deletions

View file

@ -1300,19 +1300,6 @@ a.tm-menu-link:focus {
background: var(--field-bg-color);
position: relative;
}
.tm-field-hint {
margin: 8px 14px;
}
.tm-field .form-control-link {
cursor: pointer;
}
.tm-field .form-control-link:hover {
text-decoration: none;
}
.tm-field .form-control-link.urgent {
color: var(--unavail-color);
}
.tm-search-field:before {
position: absolute;
margin: 4px 9px;
@ -2590,6 +2577,10 @@ a.tm-table-action-link:hover {
filter: blur(7px);
}
.tm-field-hint {
margin: 8px 14px;
}
.tm-number-form-group {
margin: 36px 0 0;
}

View file

@ -8065,16 +8065,16 @@ searchCallMessages offset:string limit:int32 only_missed:Bool = FoundMessages;
//@limit The maximum number of messages to be returned; up to 100
searchOutgoingDocumentMessages query:string limit:int32 = FoundMessages;
//@description Searches for public channel posts with the given hashtag. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit
//@hashtag Hashtag to search for
//@description Searches for public channel posts with the given hashtag or cashtag. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit
//@hashtag Hashtag or cashtag to search for
//@offset Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results
//@limit The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit
searchPublicHashtagMessages hashtag:string offset:string limit:int32 = FoundMessages;
//@description Returns recently searched for hashtags by their prefix @prefix Prefix of hashtags to return @limit The maximum number of hashtags to be returned
//@description Returns recently searched for hashtags or cashtags by their prefix @prefix Prefix of hashtags or cashtags to return @limit The maximum number of items to be returned
getSearchedForHashtags prefix:string limit:int32 = Hashtags;
//@description Removes a hashtag from the list of recently searched for hashtags @hashtag Hashtag to delete
//@description Removes a hashtag or a cashtag from the list of recently searched for hashtags or cashtags @hashtag Hashtag or cashtag to delete
removeSearchedForHashtag hashtag:string = Ok;
//@description Clears the list of recently searched for hashtags