Skip to content

Commit ddcad47

Browse files
committed
Bump layer
1 parent 1413b88 commit ddcad47

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+782
-191
lines changed

docs/API_docs/constructors/channelFull.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Full info about a [channel](https://core.telegram.org/api/channel#channels), [su
3434
|paid\_media\_allowed|[Bool](/API_docs/types/Bool.html) | Optional|
3535
|can\_view\_stars\_revenue|[Bool](/API_docs/types/Bool.html) | Optional|
3636
|paid\_reactions\_available|[Bool](/API_docs/types/Bool.html) | Optional|
37+
|stargifts\_available|[Bool](/API_docs/types/Bool.html) | Optional|
3738
|id|[long](/API_docs/types/long.html) | Yes|ID of the channel|
3839
|about|[string](/API_docs/types/string.html) | Yes|Info about the channel|
3940
|participants\_count|[int](/API_docs/types/int.html) | Optional|Number of participants of the channel|
@@ -76,6 +77,7 @@ Full info about a [channel](https://core.telegram.org/api/channel#channels), [su
7677
|boosts\_unrestrict|[int](/API_docs/types/int.html) | Optional|
7778
|emojiset|[StickerSet](/API_docs/types/StickerSet.html) | Optional|
7879
|bot\_verification|[BotVerification](/API_docs/types/BotVerification.html) | Optional|
80+
|stargifts\_count|[int](/API_docs/types/int.html) | Optional|
7981

8082

8183

@@ -85,5 +87,5 @@ Full info about a [channel](https://core.telegram.org/api/channel#channels), [su
8587
### Example:
8688

8789
```
88-
$channelFull = ['_' => 'channelFull', 'can_view_participants' => Bool, 'can_set_username' => Bool, 'can_set_stickers' => Bool, 'hidden_prehistory' => Bool, 'can_set_location' => Bool, 'has_scheduled' => Bool, 'can_view_stats' => Bool, 'blocked' => Bool, 'can_delete_channel' => Bool, 'antispam' => Bool, 'participants_hidden' => Bool, 'translations_disabled' => Bool, 'stories_pinned_available' => Bool, 'view_forum_as_messages' => Bool, 'restricted_sponsored' => Bool, 'can_view_revenue' => Bool, 'paid_media_allowed' => Bool, 'can_view_stars_revenue' => Bool, 'paid_reactions_available' => Bool, 'id' => long, 'about' => 'string', 'participants_count' => int, 'admins_count' => int, 'kicked_count' => int, 'banned_count' => int, 'online_count' => int, 'read_inbox_max_id' => int, 'read_outbox_max_id' => int, 'unread_count' => int, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, 'bot_info' => [BotInfo, BotInfo], 'migrated_from_chat_id' => long, 'migrated_from_max_id' => int, 'pinned_msg_id' => int, 'stickerset' => StickerSet, 'available_min_id' => int, 'folder_id' => int, 'linked_chat_id' => long, 'location' => ChannelLocation, 'slowmode_seconds' => int, 'slowmode_next_send_date' => int, 'stats_dc' => int, 'pts' => int, 'call' => InputGroupCall, 'ttl_period' => int, 'pending_suggestions' => ['string', 'string'], 'groupcall_default_join_as' => Peer, 'theme_emoticon' => 'string', 'requests_pending' => int, 'recent_requesters' => [long, long], 'default_send_as' => Peer, 'available_reactions' => ChatReactions, 'reactions_limit' => int, 'stories' => PeerStories, 'wallpaper' => WallPaper, 'boosts_applied' => int, 'boosts_unrestrict' => int, 'emojiset' => StickerSet, 'bot_verification' => BotVerification];
90+
$channelFull = ['_' => 'channelFull', 'can_view_participants' => Bool, 'can_set_username' => Bool, 'can_set_stickers' => Bool, 'hidden_prehistory' => Bool, 'can_set_location' => Bool, 'has_scheduled' => Bool, 'can_view_stats' => Bool, 'blocked' => Bool, 'can_delete_channel' => Bool, 'antispam' => Bool, 'participants_hidden' => Bool, 'translations_disabled' => Bool, 'stories_pinned_available' => Bool, 'view_forum_as_messages' => Bool, 'restricted_sponsored' => Bool, 'can_view_revenue' => Bool, 'paid_media_allowed' => Bool, 'can_view_stars_revenue' => Bool, 'paid_reactions_available' => Bool, 'stargifts_available' => Bool, 'id' => long, 'about' => 'string', 'participants_count' => int, 'admins_count' => int, 'kicked_count' => int, 'banned_count' => int, 'online_count' => int, 'read_inbox_max_id' => int, 'read_outbox_max_id' => int, 'unread_count' => int, 'chat_photo' => Photo, 'notify_settings' => PeerNotifySettings, 'exported_invite' => ExportedChatInvite, 'bot_info' => [BotInfo, BotInfo], 'migrated_from_chat_id' => long, 'migrated_from_max_id' => int, 'pinned_msg_id' => int, 'stickerset' => StickerSet, 'available_min_id' => int, 'folder_id' => int, 'linked_chat_id' => long, 'location' => ChannelLocation, 'slowmode_seconds' => int, 'slowmode_next_send_date' => int, 'stats_dc' => int, 'pts' => int, 'call' => InputGroupCall, 'ttl_period' => int, 'pending_suggestions' => ['string', 'string'], 'groupcall_default_join_as' => Peer, 'theme_emoticon' => 'string', 'requests_pending' => int, 'recent_requesters' => [long, long], 'default_send_as' => Peer, 'available_reactions' => ChatReactions, 'reactions_limit' => int, 'stories' => PeerStories, 'wallpaper' => WallPaper, 'boosts_applied' => int, 'boosts_unrestrict' => int, 'emojiset' => StickerSet, 'bot_verification' => BotVerification, 'stargifts_count' => int];
8991
```

docs/API_docs/constructors/emojiStatus.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ An [emoji status](https://core.telegram.org/api/emoji-status)
1616
| Name | Type | Required | Description |
1717
|----------|---------------|----------|-------------|
1818
|document\_id|[long](/API_docs/types/long.html) | Yes|[Custom emoji document ID](https://core.telegram.org/api/custom-emoji)|
19+
|until|[int](/API_docs/types/int.html) | Optional|
1920

2021

2122

@@ -25,5 +26,5 @@ An [emoji status](https://core.telegram.org/api/emoji-status)
2526
### Example:
2627

2728
```
28-
$emojiStatus = ['_' => 'emojiStatus', 'document_id' => long];
29+
$emojiStatus = ['_' => 'emojiStatus', 'document_id' => long, 'until' => int];
2930
```
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: "emojiStatusCollectible"
3+
description: "emojiStatusCollectible attributes, type and example"
4+
nav_exclude: true
5+
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
6+
---
7+
# Constructor: emojiStatusCollectible
8+
[Back to constructors index](/API_docs/constructors/index.html)
9+
10+
11+
12+
### Attributes:
13+
14+
| Name | Type | Required |
15+
|----------|---------------|----------|
16+
|collectible\_id|[long](/API_docs/types/long.html) | Yes|
17+
|document\_id|[long](/API_docs/types/long.html) | Yes|
18+
|title|[string](/API_docs/types/string.html) | Yes|
19+
|slug|[string](/API_docs/types/string.html) | Yes|
20+
|pattern\_document\_id|[long](/API_docs/types/long.html) | Yes|
21+
|center\_color|[int](/API_docs/types/int.html) | Yes|
22+
|edge\_color|[int](/API_docs/types/int.html) | Yes|
23+
|pattern\_color|[int](/API_docs/types/int.html) | Yes|
24+
|text\_color|[int](/API_docs/types/int.html) | Yes|
25+
|until|[int](/API_docs/types/int.html) | Optional|
26+
27+
28+
29+
### Type: [EmojiStatus](/API_docs/types/EmojiStatus.html)
30+
31+
32+
### Example:
33+
34+
```
35+
$emojiStatusCollectible = ['_' => 'emojiStatusCollectible', 'collectible_id' => long, 'document_id' => long, 'title' => 'string', 'slug' => 'string', 'pattern_document_id' => long, 'center_color' => int, 'edge_color' => int, 'pattern_color' => int, 'text_color' => int, 'until' => int];
36+
```

docs/API_docs/constructors/emojiStatusUntil.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)