mtproto 0.0.14 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/data/tl-schema.json +47158 -42684
- data/lib/mtproto/auth_key_generator.rb +2 -2
- data/lib/mtproto/client/api/export_authorization.rb +17 -0
- data/lib/mtproto/client/api/import_authorization.rb +23 -0
- data/lib/mtproto/client/api.rb +2 -0
- data/lib/mtproto/client/rpc.rb +33 -0
- data/lib/mtproto/client.rb +54 -1
- data/lib/mtproto/file_downloader.rb +122 -0
- data/lib/mtproto/tl/constructor_names.rb +324 -109
- data/lib/mtproto/tl/constructors.rb +16 -8
- data/lib/mtproto/tl/objects/bot_command_scope.rb +81 -0
- data/lib/mtproto/tl/objects/channels_join_channel.rb +1 -1
- data/lib/mtproto/tl/objects/channels_update_username.rb +42 -0
- data/lib/mtproto/tl/objects/contacts.rb +1 -1
- data/lib/mtproto/tl/objects/create_bot.rb +54 -0
- data/lib/mtproto/tl/objects/dialogs.rb +25 -10
- data/lib/mtproto/tl/objects/edit_access_settings.rb +46 -0
- data/lib/mtproto/tl/objects/export_authorization.rb +17 -0
- data/lib/mtproto/tl/objects/export_bot_token.rb +32 -0
- data/lib/mtproto/tl/objects/exported_authorization.rb +32 -0
- data/lib/mtproto/tl/objects/exported_bot_token.rb +27 -0
- data/lib/mtproto/tl/objects/forward_messages.rb +12 -3
- data/lib/mtproto/tl/objects/get_access_settings.rb +28 -0
- data/lib/mtproto/tl/objects/get_bot_callback_answer.rb +67 -0
- data/lib/mtproto/tl/objects/get_bot_commands.rb +46 -0
- data/lib/mtproto/tl/objects/get_file.rb +10 -2
- data/lib/mtproto/tl/objects/import_authorization.rb +38 -0
- data/lib/mtproto/tl/objects/input_keyboard_button_request_peer.rb +54 -0
- data/lib/mtproto/tl/objects/keyboard_button_callback.rb +50 -0
- data/lib/mtproto/tl/objects/message.rb +97 -21
- data/lib/mtproto/tl/objects/messages.rb +7 -74
- data/lib/mtproto/tl/objects/messages_get_messages.rb +26 -0
- data/lib/mtproto/tl/objects/reply_inline_markup.rb +30 -0
- data/lib/mtproto/tl/objects/reply_keyboard_markup.rb +35 -0
- data/lib/mtproto/tl/objects/request_peer_type_create_bot.rb +47 -0
- data/lib/mtproto/tl/objects/reset_bot_commands.rb +45 -0
- data/lib/mtproto/tl/objects/send_bot_requested_peer.rb +51 -0
- data/lib/mtproto/tl/objects/send_media.rb +87 -4
- data/lib/mtproto/tl/objects/send_message.rb +7 -2
- data/lib/mtproto/tl/objects/send_message_action.rb +48 -0
- data/lib/mtproto/tl/objects/set_bot_callback_answer.rb +54 -0
- data/lib/mtproto/tl/objects/set_bot_commands.rb +53 -0
- data/lib/mtproto/tl/objects/set_bot_guest_chat_result.rb +84 -0
- data/lib/mtproto/tl/objects/set_bot_info.rb +64 -0
- data/lib/mtproto/tl/objects/set_typing.rb +49 -0
- data/lib/mtproto/tl/objects/update_status.rb +24 -0
- data/lib/mtproto/tl/objects/updates.rb +117 -0
- data/lib/mtproto/tl/objects/updates_difference.rb +45 -69
- data/lib/mtproto/tl/objects/upload_profile_photo.rb +65 -0
- data/lib/mtproto/tl/reader.rb +188 -0
- data/lib/mtproto/transport/abridged_packet_codec.rb +5 -1
- data/lib/mtproto/unencrypted_message.rb +39 -0
- data/lib/mtproto/version.rb +1 -1
- data/lib/mtproto.rb +4 -1
- data/scripts/gen_constructor_names.rb +72 -0
- data/scripts/tl_to_json.rb +72 -0
- data/scripts/verify_ids.rb +33 -0
- metadata +38 -2
- data/lib/mtproto/message/message.rb +0 -85
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
# rubocop:disable Metrics/ModuleLength
|
|
4
4
|
|
|
5
|
-
# Auto-generated
|
|
6
|
-
#
|
|
5
|
+
# Auto-generated id -> constructor/method name map (logging + error messages).
|
|
6
|
+
# API names from data/tl-schema.json (current layer); MTProto transport-layer
|
|
7
|
+
# names preserved from the prior map.
|
|
8
|
+
# Run: ruby scripts/gen_constructor_names.rb
|
|
7
9
|
|
|
8
10
|
require_relative 'constructors'
|
|
9
11
|
|
|
@@ -12,6 +14,7 @@ module MTProto
|
|
|
12
14
|
module ConstructorNames
|
|
13
15
|
NAMES = {
|
|
14
16
|
0x004a8537 => 'securePasswordKdfAlgoUnknown',
|
|
17
|
+
0x004b572c => 'inputRichMessageMarkdown',
|
|
15
18
|
0x007efe0e => 'storage.fileJpeg',
|
|
16
19
|
0x0084cd5a => 'updateTranscribedAudio',
|
|
17
20
|
0x008c703f => 'userStatusOffline',
|
|
@@ -21,22 +24,29 @@ module MTProto
|
|
|
21
24
|
0x00f8ed08 => 'help.peerColors',
|
|
22
25
|
0x01190cf1 => 'inputQuickReplyShortcutId',
|
|
23
26
|
0x0194cb3b => 'inputBusinessGreetingMessage',
|
|
27
|
+
0x01a9fbfc => 'textMentionName',
|
|
28
|
+
0x01c641c2 => 'webPageAttributeStarGiftAuction',
|
|
24
29
|
0x01eb3758 => 'help.userInfo',
|
|
25
30
|
0x01f2bf4a => 'publicForwardMessage',
|
|
26
|
-
0x020b1422 => 'user',
|
|
27
31
|
0x021e1ad6 => 'photoCachedSize',
|
|
28
32
|
0x023f109b => 'forumTopicDeleted',
|
|
29
33
|
0x027477b4 => 'secureRequiredTypeOneOf',
|
|
30
34
|
0x028703c8 => 'inputStickerSetAnimatedEmoji',
|
|
35
|
+
0x02b78156 => 'inputKeyboardButtonRequestPeer',
|
|
31
36
|
0x02cc6383 => 'channelAdminLogEventActionToggleForum',
|
|
37
|
+
0x02e16c98 => 'inputStarGiftAuction',
|
|
38
|
+
0x02ff29d3 => 'textBotCommand',
|
|
32
39
|
0x031224c3 => 'messageActionChatJoinedByLink',
|
|
33
40
|
0x03173d78 => 'updates.getChannelDifference',
|
|
34
41
|
0x031f9590 => 'pageBlockSlideshow',
|
|
35
42
|
0x032512c5 => 'payments.getStarsSubscriptions',
|
|
36
43
|
0x032c3e77 => 'inputGameID',
|
|
37
44
|
0x032da4cf => 'account.verifyEmail',
|
|
45
|
+
0x0330e77f => 'messages.sendMedia',
|
|
46
|
+
0x033ed001 => 'connectedBot',
|
|
38
47
|
0x034b8621 => 'textMarked',
|
|
39
48
|
0x0352dafa => 'inputPrivacyKeyPhoneNumber',
|
|
49
|
+
0x0360d5d2 => 'chatParticipantAdmin',
|
|
40
50
|
0x037c9330 => 'inputMediaUploadedDocument',
|
|
41
51
|
0x0388a3b5 => 'photos.uploadProfilePhoto',
|
|
42
52
|
0x038a08d3 => 'help.getUserInfo',
|
|
@@ -59,17 +69,21 @@ module MTProto
|
|
|
59
69
|
0x0589ee75 => 'messages.editFactCheck',
|
|
60
70
|
0x0598a92a => 'inputGroupCallStream',
|
|
61
71
|
0x05a954c0 => 'messages.receivedMessages',
|
|
72
|
+
0x05f58d0f => 'contacts.search',
|
|
62
73
|
0x062dd747 => 'messages.unpinAllMessages',
|
|
63
74
|
0x0637b7ed => 'topPeerCategoryCorrespondents',
|
|
75
|
+
0x0652c1c5 => 'messageEntityDiffDelete',
|
|
64
76
|
0x0656ac4b => 'channelParticipantsSearch',
|
|
65
77
|
0x068e9916 => 'auth.loginTokenMigrateTo',
|
|
66
78
|
0x0697102b => 'quickReply',
|
|
67
79
|
0x0697f414 => 'privacyKeyVoiceMessages',
|
|
80
|
+
0x06cbe645 => 'userFull',
|
|
68
81
|
0x06dd654c => 'account.getReactionsNotifySettings',
|
|
69
82
|
0x06de6392 => 'bots.toggleUserEmojiStatusPermission',
|
|
70
83
|
0x06e425c4 => 'secureValueTypeDriverLicense',
|
|
71
84
|
0x06ed998c => 'auth.codeTypeFragmentSms',
|
|
72
85
|
0x07141dbf => 'inputEmojiStatusCollectible',
|
|
86
|
+
0x0773c080 => 'inputAiComposeToneID',
|
|
73
87
|
0x07761198 => 'updateChatParticipants',
|
|
74
88
|
0x07967d36 => 'account.getWallPapers',
|
|
75
89
|
0x07b68920 => 'updateChannelViewForumAsMessages',
|
|
@@ -79,12 +93,15 @@ module MTProto
|
|
|
79
93
|
0x08736a09 => 'channels.getFullChannel',
|
|
80
94
|
0x087fc5e7 => 'bots.invokeWebViewCustomMethod',
|
|
81
95
|
0x08a4d87a => 'help.promoData',
|
|
96
|
+
0x08cbec07 => 'messageMediaDice',
|
|
82
97
|
0x08fc711d => 'account.getAccountTTL',
|
|
98
|
+
0x0923d8d1 => 'inputInvoiceStarGiftDropOriginalDetails',
|
|
83
99
|
0x093bcf34 => 'emojiGroupPremium',
|
|
84
100
|
0x093fa0bf => 'smsjobs.updateSettings',
|
|
85
101
|
0x0949d9dc => 'future_salt',
|
|
86
102
|
0x096a0e00 => 'contacts.deleteContacts',
|
|
87
103
|
0x096a18d5 => 'upload.file',
|
|
104
|
+
0x096b2aec => 'pageBlockHeading2',
|
|
88
105
|
0x09c2dd95 => 'messages.setBotPrecheckoutResults',
|
|
89
106
|
0x09c469cd => 'inputBusinessIntro',
|
|
90
107
|
0x09cb7759 => 'updateBotMessageReactions',
|
|
@@ -95,9 +112,11 @@ module MTProto
|
|
|
95
112
|
0x0a339f0b => 'messageReactions',
|
|
96
113
|
0x0a4314f5 => 'messages.sendWebViewResultMessage',
|
|
97
114
|
0x0a4f63c0 => 'storage.filePng',
|
|
115
|
+
0x0a617e7b => 'botInlineMessageRichMessage',
|
|
98
116
|
0x0a7f6bbb => 'channels.getChannels',
|
|
99
117
|
0x0a8eb2be => 'inputReportReasonIllegalDrugs',
|
|
100
118
|
0x0a9f2259 => 'destroy_auth_key_none',
|
|
119
|
+
0x0aa021e5 => 'starGiftAuctionRoundExtendable',
|
|
101
120
|
0x0aa1c39f => 'inputPaymentCredentialsApplePay',
|
|
102
121
|
0x0ade1591 => 'contacts.blocked',
|
|
103
122
|
0x0ae30253 => 'messageRange',
|
|
@@ -128,20 +147,22 @@ module MTProto
|
|
|
128
147
|
0x0e3b2d0c => 'inlineQueryPeerTypeBotPM',
|
|
129
148
|
0x0e5af939 => 'messageReplyStoryHeader',
|
|
130
149
|
0x0e6b76ae => 'channelAdminLogEventActionChangeLocation',
|
|
150
|
+
0x0e6e47c4 => 'pageBlockBlockquoteBlocks',
|
|
151
|
+
0x0e7841f0 => 'messages.reorderPinnedForumTopics',
|
|
131
152
|
0x0e8e37e5 => 'suggestedPost',
|
|
153
|
+
0x0ecc2618 => 'channels.toggleJoinRequest',
|
|
132
154
|
0x0ecf6736 => 'messages.getFeaturedEmojiStickers',
|
|
133
155
|
0x0edc39d0 => 'smsjobs.isEligibleToJoin',
|
|
156
|
+
0x0efa0194 => 'joinChatBotResultDeclined',
|
|
134
157
|
0x0f578105 => 'account.getRecentEmojiStatuses',
|
|
135
158
|
0x0f635e1b => 'messages.getInlineGameHighScores',
|
|
136
159
|
0x0f91b065 => 'payments.exportInvoice',
|
|
137
|
-
0x0f94e5f1 => 'inputMediaPoll',
|
|
138
160
|
0x1013fd9e => 'contacts.deleteByPhones',
|
|
139
161
|
0x107e31a0 => 'messages.searchSentMedia',
|
|
140
162
|
0x1081464c => 'storage.fileWebp',
|
|
141
163
|
0x108d941f => 'updateChannelTooLong',
|
|
142
164
|
0x10a698e8 => 'smsjobs.getStatus',
|
|
143
165
|
0x10ab6dc7 => 'chatlists.exportedInvites',
|
|
144
|
-
0x10b78d29 => 'keyboardButtonUrlAuth',
|
|
145
166
|
0x10cf3123 => 'bots.setBotInfo',
|
|
146
167
|
0x10e6bd2c => 'channels.checkUsername',
|
|
147
168
|
0x10e6e3a6 => 'chatlists.exportedChatlistInvite',
|
|
@@ -153,9 +174,7 @@ module MTProto
|
|
|
153
174
|
0x11679fa7 => 'inputBusinessChatLink',
|
|
154
175
|
0x11965f3a => 'botInlineResult',
|
|
155
176
|
0x11b58939 => 'documentAttributeAnimated',
|
|
156
|
-
0x11dfa986 => 'updateBotChatInviteRequester',
|
|
157
177
|
0x11e831ee => 'channels.getInactiveChannels',
|
|
158
|
-
0x11f812d8 => 'contacts.search',
|
|
159
178
|
0x120b1ab9 => 'businessWeeklyOpen',
|
|
160
179
|
0x124b1c00 => 'stickers.renameStickerSet',
|
|
161
180
|
0x12b299d4 => 'stickerPack',
|
|
@@ -168,9 +187,10 @@ module MTProto
|
|
|
168
187
|
0x13567e8a => 'pageBlockUnsupported',
|
|
169
188
|
0x1359f4e6 => 'bots.canSendMessage',
|
|
170
189
|
0x13659eb0 => 'starsTransaction',
|
|
171
|
-
|
|
190
|
+
0x13704a7c => 'messages.forwardMessages',
|
|
172
191
|
0x137948a5 => 'auth.passwordRecovery',
|
|
173
|
-
|
|
192
|
+
0x139f63fb => 'contacts.updateContactNote',
|
|
193
|
+
0x140502d1 => 'updateWebBrowserException',
|
|
174
194
|
0x1427a5e1 => 'channelParticipantsBanned',
|
|
175
195
|
0x14455871 => 'mediaAreaSuggestedReaction',
|
|
176
196
|
0x145ade0b => 'contact',
|
|
@@ -179,6 +199,7 @@ module MTProto
|
|
|
179
199
|
0x14967978 => 'messages.uploadMedia',
|
|
180
200
|
0x14b0ed0c => 'phoneCallRequested',
|
|
181
201
|
0x14b85813 => 'updateBotMenuButton',
|
|
202
|
+
0x15031189 => 'pageListOrderedItemText',
|
|
182
203
|
0x15051f54 => 'photos.photosSlice',
|
|
183
204
|
0x1508b6af => 'messages.getEmojiKeywordsDifference',
|
|
184
205
|
0x1513e7b0 => 'payments.toggleStarGiftsPinnedToTop',
|
|
@@ -191,16 +212,19 @@ module MTProto
|
|
|
191
212
|
0x160544ca => 'inputStorePaymentPremiumGiveaway',
|
|
192
213
|
0x16115a96 => 'pageBlockRelatedArticles',
|
|
193
214
|
0x161d9628 => 'topPeerCategoryChannels',
|
|
194
|
-
|
|
215
|
+
0x16605e3e => 'messageActionManagedBotCreated',
|
|
195
216
|
0x1662af0b => 'messages.historyImport',
|
|
196
|
-
0x167bd90b => 'payments.starGiftUpgradePreview',
|
|
197
217
|
0x167fc0a1 => 'channels.toggleAutotranslation',
|
|
218
|
+
0x16a4b93c => 'storyItem',
|
|
198
219
|
0x16bf744e => 'sendMessageTypingAction',
|
|
199
220
|
0x16d9703b => 'contactStatus',
|
|
200
221
|
0x16fcc2cb => 'messages.getAttachMenuBots',
|
|
201
222
|
0x1710f156 => 'updateEncryptedChatTyping',
|
|
223
|
+
0x1720b4d8 => 'messages.readPollVotes',
|
|
202
224
|
0x1759c560 => 'pageBlockPhoto',
|
|
225
|
+
0x175df251 => 'messages.updatePinnedForumTopic',
|
|
203
226
|
0x176f8ba1 => 'sendMessageGeoLocationAction',
|
|
227
|
+
0x1782cbb1 => 'aicompose.saveTone',
|
|
204
228
|
0x17aeb75a => 'bots.addPreviewMedia',
|
|
205
229
|
0x17b7a20b => 'updateAttachMenuBots',
|
|
206
230
|
0x17c6b5f6 => 'help.support',
|
|
@@ -225,13 +249,14 @@ module MTProto
|
|
|
225
249
|
0x192efbe3 => 'updateChannelPinnedTopic',
|
|
226
250
|
0x19360dc0 => 'updateFolderPeers',
|
|
227
251
|
0x193b4417 => 'inputNotifyUsers',
|
|
228
|
-
0x198fb446 => 'messages.requestUrlAuth',
|
|
229
252
|
0x1991b13b => 'bots.popularAppBots',
|
|
253
|
+
0x199fed96 => 'inputPollAnswer',
|
|
230
254
|
0x19a13f71 => 'connectedBotStarRef',
|
|
231
|
-
0x19a9b572 => 'savedStarGift',
|
|
232
255
|
0x19ba4a67 => 'account.getPaidMessagesRevenue',
|
|
256
|
+
0x19bc4b6d => 'messages.addPollAnswer',
|
|
233
257
|
0x19c2f763 => 'updates.getDifference',
|
|
234
258
|
0x19d8eb45 => 'stories.report',
|
|
259
|
+
0x1a8afc7e => 'groupCallMessage',
|
|
235
260
|
0x1ab21940 => 'phone.getGroupCallStreamChannels',
|
|
236
261
|
0x1abfb575 => 'inputDocument',
|
|
237
262
|
0x1ad4a04a => 'messages.updateDialogFilter',
|
|
@@ -244,12 +269,14 @@ module MTProto
|
|
|
244
269
|
0x1b3f4df7 => 'updateEditChannelMessage',
|
|
245
270
|
0x1b3faa88 => 'account.sendConfirmPhoneCode',
|
|
246
271
|
0x1b7907ae => 'channelAdminLogEventActionToggleInvites',
|
|
272
|
+
0x1b97dd66 => 'messageReplyHeader',
|
|
247
273
|
0x1bb00451 => 'inputMessagesFilterPinned',
|
|
248
274
|
0x1bbcf300 => 'messages.getSearchCounters',
|
|
249
|
-
|
|
275
|
+
0x1bd54456 => 'channelParticipant',
|
|
250
276
|
0x1bf335b9 => 'updateStoryID',
|
|
251
277
|
0x1bf89d74 => 'messages.sendMultiMedia',
|
|
252
278
|
0x1c199183 => 'account.wallPapersNotModified',
|
|
279
|
+
0x1c32b11c => 'channel',
|
|
253
280
|
0x1c3db333 => 'account.uploadTheme',
|
|
254
281
|
0x1c50d144 => 'phone.leaveGroupCallPresentation',
|
|
255
282
|
0x1c570ed1 => 'webDocument',
|
|
@@ -264,10 +291,12 @@ module MTProto
|
|
|
264
291
|
0x1cff7e08 => 'messages.getSplitRanges',
|
|
265
292
|
0x1d1b1245 => 'inputAppEvent',
|
|
266
293
|
0x1d2652ee => 'account.finishTakeoutSession',
|
|
294
|
+
0x1d73e7ea => 'messages.messages',
|
|
267
295
|
0x1d741ef7 => 'inputStorePaymentStarsGift',
|
|
268
296
|
0x1d998733 => 'contactBirthday',
|
|
269
297
|
0x1da448e2 => 'inputUserFromMessage',
|
|
270
298
|
0x1dab80b7 => 'payments.starsRevenueWithdrawalUrl',
|
|
299
|
+
0x1dbfeca0 => 'phone.deleteGroupCallParticipantMessages',
|
|
271
300
|
0x1dd840f5 => 'messages.getEmojiStickerGroups',
|
|
272
301
|
0x1df92984 => 'invokeWithGooglePlayIntegrity',
|
|
273
302
|
0x1e109708 => 'account.paidMessagesRevenue',
|
|
@@ -275,13 +304,13 @@ module MTProto
|
|
|
275
304
|
0x1e1c7c45 => 'encryptedChatDiscarded',
|
|
276
305
|
0x1e22c78d => 'inputReportReasonViolence',
|
|
277
306
|
0x1e251c95 => 'help.hidePromoData',
|
|
278
|
-
0x1e287d04 => 'inputMediaUploadedPhoto',
|
|
279
307
|
0x1e297bfa => 'updateMessageReactions',
|
|
280
308
|
0x1e36fded => 'inputPhoneCall',
|
|
281
309
|
0x1e76a78c => 'topPeerCategoryPhoneCalls',
|
|
282
310
|
0x1e8caaeb => 'postAddress',
|
|
283
311
|
0x1e91fc99 => 'messages.getSavedDialogs',
|
|
284
312
|
0x1ea2fda7 => 'updateBusinessBotCallbackQuery',
|
|
313
|
+
0x1ecafa10 => 'inputInvoiceStarGiftAuctionBid',
|
|
285
314
|
0x1edaaac2 => 'account.setGlobalPrivacySettings',
|
|
286
315
|
0x1f01c757 => 'starGiftAttributeIdBackdrop',
|
|
287
316
|
0x1f040578 => 'auth.cancelCode',
|
|
@@ -289,8 +318,11 @@ module MTProto
|
|
|
289
318
|
0x1f2b0afd => 'updateNewMessage',
|
|
290
319
|
0x1f307eb7 => 'account.savedRingtoneConverted',
|
|
291
320
|
0x1f4a0e87 => 'payments.createStarGiftCollection',
|
|
321
|
+
0x1fa01357 => 'inputAiComposeToneSlug',
|
|
292
322
|
0x1fad68cd => 'channelAdminLogEvent',
|
|
293
323
|
0x1fb33026 => 'help.getNearestDc',
|
|
324
|
+
0x1fd6f6c1 => 'pageBlockOrderedList',
|
|
325
|
+
0x1fe9a9bf => 'inputAiComposeToneDefault',
|
|
294
326
|
0x2000a518 => 'privacyKeyBirthday',
|
|
295
327
|
0x20212ca8 => 'photos.photo',
|
|
296
328
|
0x204bd158 => 'phone.exportedGroupCallInvite',
|
|
@@ -304,6 +336,7 @@ module MTProto
|
|
|
304
336
|
0x21108ff7 => 'businessRecipients',
|
|
305
337
|
0x211a1788 => 'webPageEmpty',
|
|
306
338
|
0x21202222 => 'messages.getDialogUnreadMarks',
|
|
339
|
+
0x213853a3 => 'bots.getAccessSettings',
|
|
307
340
|
0x2144ca19 => 'rpc_error',
|
|
308
341
|
0x21461b5d => 'privacyValueAllowBots',
|
|
309
342
|
0x219c34e6 => 'phone.toggleGroupCallStartSubscription',
|
|
@@ -311,6 +344,7 @@ module MTProto
|
|
|
311
344
|
0x21a61057 => 'messages.appendTodoList',
|
|
312
345
|
0x21e753bc => 'upload.webFile',
|
|
313
346
|
0x21ec5a5f => 'securePlainEmail',
|
|
347
|
+
0x221bb5e4 => 'todoCompletion',
|
|
314
348
|
0x222600ef => 'messages.exportedChatInviteReplaced',
|
|
315
349
|
0x22567115 => 'channels.checkSearchPostsFlood',
|
|
316
350
|
0x226ccefb => 'auth.codeTypeFlashCall',
|
|
@@ -329,17 +363,14 @@ module MTProto
|
|
|
329
363
|
0x2442485e => 'account.setAccountTTL',
|
|
330
364
|
0x24596d41 => 'inputQuickReplyShortcut',
|
|
331
365
|
0x2478d1cc => 'payments.getPaymentReceipt',
|
|
332
|
-
|
|
366
|
+
0x24c26789 => 'textAutoPhone',
|
|
333
367
|
0x24e6818d => 'upload.getWebFile',
|
|
334
|
-
0x24f40e77 => 'updateMessagePollVote',
|
|
335
368
|
0x250dbaf8 => 'starsTransactionPeerPremiumBot',
|
|
336
369
|
0x257e962b => 'premiumGiftCodeOption',
|
|
337
|
-
0x258aff05 => 'keyboardButtonUrl',
|
|
338
370
|
0x25972bcb => 'sendMessageEmojiInteraction',
|
|
339
371
|
0x25a71742 => 'channels.getChannelRecommendations',
|
|
340
372
|
0x25ae8f4a => 'payments.refundStarsCharge',
|
|
341
373
|
0x25b3eac7 => 'stories.getAlbums',
|
|
342
|
-
0x25e073fc => 'pageListItemBlocks',
|
|
343
374
|
0x25f324f7 => 'updateChannelReadMessagesContents',
|
|
344
375
|
0x26219a58 => 'help.peerColorSet',
|
|
345
376
|
0x2633421b => 'chatFull',
|
|
@@ -360,7 +391,6 @@ module MTProto
|
|
|
360
391
|
0x27bcbbfc => 'inputPeerChannel',
|
|
361
392
|
0x28373599 => 'updateUserEmojiStatus',
|
|
362
393
|
0x283bd312 => 'updateBotPurchasedPaidMedia',
|
|
363
|
-
0x284a1096 => 'payments.checkedGiftCode',
|
|
364
394
|
0x284b3639 => 'stickers.checkShortName',
|
|
365
395
|
0x28a20571 => 'messageEntityCode',
|
|
366
396
|
0x28e16cc8 => 'stories.getStoriesViews',
|
|
@@ -368,12 +398,15 @@ module MTProto
|
|
|
368
398
|
0x2950a18f => 'channels.reorderPinnedForumTopics',
|
|
369
399
|
0x29562865 => 'chatEmpty',
|
|
370
400
|
0x2979eeb2 => 'langPackStringDeleted',
|
|
401
|
+
0x2999beed => 'stats.pollStats',
|
|
371
402
|
0x29a8962c => 'contacts.blockFromReplies',
|
|
372
403
|
0x29b1c66a => 'messages.searchStickers',
|
|
373
404
|
0x29be5899 => 'inputTakeoutFileLocation',
|
|
374
405
|
0x29d0f5ee => 'inputStickerSetEmojiDefaultStatuses',
|
|
375
406
|
0x29ee847a => 'messages.search',
|
|
407
|
+
0x2a17bf5c => 'updateUserTyping',
|
|
376
408
|
0x2a2a697c => 'payments.saveStarGift',
|
|
409
|
+
0x2a3dc7ac => 'groupCallParticipant',
|
|
377
410
|
0x2a862092 => 'messages.uploadImportedMedia',
|
|
378
411
|
0x2ad93719 => 'messages.dialogFilters',
|
|
379
412
|
0x2aee9191 => 'smsjobs.status',
|
|
@@ -385,7 +418,9 @@ module MTProto
|
|
|
385
418
|
0x2c11c0d7 => 'messages.searchCustomEmoji',
|
|
386
419
|
0x2c221edd => 'messages.dhConfig',
|
|
387
420
|
0x2c4ada50 => 'stories.getPeerStories',
|
|
421
|
+
0x2c63a72b => 'stories.editStory',
|
|
388
422
|
0x2c800be5 => 'contacts.importContacts',
|
|
423
|
+
0x2c8f2a25 => 'messageActionSuggestBirthday',
|
|
389
424
|
0x2ca4fdf8 => 'privacyKeyStarGiftsAutoSave',
|
|
390
425
|
0x2ca51fd1 => 'help.getTermsOfServiceUpdate',
|
|
391
426
|
0x2cb51097 => 'messages.favedStickers',
|
|
@@ -410,28 +445,37 @@ module MTProto
|
|
|
410
445
|
0x2ec0533f => 'messageMediaVenue',
|
|
411
446
|
0x2ecd56cd => 'messages.getEmojiStatusGroups',
|
|
412
447
|
0x2ed82995 => 'payments.starGifts',
|
|
448
|
+
0x2eeed1c4 => 'starGiftAuctionUserState',
|
|
413
449
|
0x2efe1722 => 'phone.confirmCall',
|
|
414
450
|
0x2f2ba99f => 'updateChannelWebPage',
|
|
415
451
|
0x2f2f21bf => 'updateReadHistoryOutbox',
|
|
416
452
|
0x2f453e49 => 'inputPrivacyValueAllowCloseFriends',
|
|
453
|
+
0x2f51c337 => 'messages.chatInviteJoinResultWebView',
|
|
454
|
+
0x2f58683c => 'pageListItemText',
|
|
417
455
|
0x2f6cb2ab => 'botCommandScopeDefault',
|
|
456
|
+
0x2f98c3d5 => 'messages.createForumTopic',
|
|
418
457
|
0x2fe601d3 => 'channelParticipantCreator',
|
|
419
458
|
0x2ffe2f7a => 'messageActionConferenceCall',
|
|
420
459
|
0x30535af5 => 'phoneCall',
|
|
421
460
|
0x3072cfa1 => 'gzip_packed',
|
|
422
461
|
0x3081ed9d => 'inlineQueryPeerTypeSameBotPM',
|
|
423
|
-
0x308660c1 => 'keyboardButtonUserProfile',
|
|
424
462
|
0x30a6ec7e => 'messages.stickers',
|
|
425
463
|
0x30eb63f0 => 'stories.canSendStory',
|
|
426
464
|
0x30f443db => 'updateRecentEmojiStatuses',
|
|
465
|
+
0x310240cc => 'auctionBidLevel',
|
|
466
|
+
0x313a9547 => 'starGift',
|
|
427
467
|
0x313bc7f8 => 'updateShortMessage',
|
|
428
468
|
0x31518e9b => 'messageActionRequestedPeer',
|
|
429
469
|
0x315a4974 => 'users.usersSlice',
|
|
430
470
|
0x316ce548 => 'account.setReactionsNotifySettings',
|
|
471
|
+
0x31774388 => 'user',
|
|
472
|
+
0x31813cd8 => 'bots.editAccessSettings',
|
|
473
|
+
0x31a2a35e => 'bots.requestWebViewButton',
|
|
431
474
|
0x31bb5d52 => 'channelAdminLogEventActionChangeWallpaper',
|
|
432
475
|
0x31bd492d => 'messages.messageReactionsList',
|
|
433
476
|
0x31c1c44f => 'messages.getMessageReadParticipants',
|
|
434
477
|
0x31c24808 => 'updateStickerSets',
|
|
478
|
+
0x31c48347 => 'messageActionGiftCode',
|
|
435
479
|
0x31cad303 => 'webPageAttributeStarGiftCollection',
|
|
436
480
|
0x3259950a => 'messages.savedReactionTags',
|
|
437
481
|
0x327a30cb => 'messages.saveGif',
|
|
@@ -457,10 +501,10 @@ module MTProto
|
|
|
457
501
|
0x34a2f297 => 'users.savedMusic',
|
|
458
502
|
0x34c3bb53 => 'channelParticipantAdmin',
|
|
459
503
|
0x34e793f1 => 'inputInvoiceChatInviteSubscription',
|
|
460
|
-
0x34f762f3 => 'messageActionStarGiftUnique',
|
|
461
504
|
0x34fdc5c3 => 'messages.getBotApp',
|
|
462
505
|
0x3504914f => 'updateDialogFilters',
|
|
463
506
|
0x3514b3de => 'channels.updateUsername',
|
|
507
|
+
0x35436bbc => 'messages.declineUrlAuth',
|
|
464
508
|
0x354a9b09 => 'botInlineMessageMediaInvoice',
|
|
465
509
|
0x35553762 => 'textAnchor',
|
|
466
510
|
0x35705b8a => 'messages.searchStickerSets',
|
|
@@ -468,11 +512,12 @@ module MTProto
|
|
|
468
512
|
0x35a0e062 => 'messages.getEmojiKeywords',
|
|
469
513
|
0x35a95cb9 => 'inputPeerChat',
|
|
470
514
|
0x35a9e0d5 => 'account.getChannelRestrictedStatusEmojis',
|
|
471
|
-
0x35bbdb6b => 'keyboardButtonCallback',
|
|
472
515
|
0x35ddd674 => 'messages.editChatPhoto',
|
|
473
516
|
0x35e410a8 => 'messages.stickerSetInstallResultArchive',
|
|
474
517
|
0x363293ae => 'dialogFilterDefault',
|
|
475
518
|
0x3637e05b => 'messages.getSavedReactionTags',
|
|
519
|
+
0x36437737 => 'starGiftAttributeRarity',
|
|
520
|
+
0x3645230a => 'pollAnswerVoters',
|
|
476
521
|
0x365275f2 => 'invokeWithMessagesRange',
|
|
477
522
|
0x36585ea4 => 'messages.botCallbackAnswer',
|
|
478
523
|
0x3660c311 => 'phoneCallAccepted',
|
|
@@ -490,10 +535,12 @@ module MTProto
|
|
|
490
535
|
0x374fa7ad => 'payments.checkCanSendGiftResultOk',
|
|
491
536
|
0x374fef40 => 'stats.getStoryStats',
|
|
492
537
|
0x3751b49e => 'inputMessagesFilterMusic',
|
|
538
|
+
0x376d975c => 'sendMessageTextDraftAction',
|
|
493
539
|
0x37c1011c => 'chatPhotoEmpty',
|
|
494
540
|
0x3823cc40 => 'inputPrivacyKeyAbout',
|
|
495
541
|
0x38641628 => 'messages.stickerSetInstallResultSuccess',
|
|
496
542
|
0x38df3532 => 'account.updateDeviceLocked',
|
|
543
|
+
0x38e79fde => 'chatParticipant',
|
|
497
544
|
0x38fe25b7 => 'updateEncryptedMessagesRead',
|
|
498
545
|
0x390d5c5e => 'auth.loginTokenSuccess',
|
|
499
546
|
0x3920e6ef => 'messages.getAdminsWithInvites',
|
|
@@ -504,29 +551,36 @@ module MTProto
|
|
|
504
551
|
0x395f69da => 'upload.getCdnFile',
|
|
505
552
|
0x396ca5fc => 'stats.broadcastStats',
|
|
506
553
|
0x39854d1f => 'premium.getUserBoosts',
|
|
554
|
+
0x399674dc => 'messageActionPollDeleteAnswer',
|
|
507
555
|
0x39a51dfb => 'updateNewScheduledMessage',
|
|
508
556
|
0x39c67432 => 'updateSavedReactionTags',
|
|
509
|
-
0x39d99013 => 'starGiftAttributeModel',
|
|
510
557
|
0x39f23300 => 'pageBlockCover',
|
|
511
558
|
0x3a20ecb8 => 'inputMessagesFilterChatPhotos',
|
|
512
559
|
0x3a5869ec => 'account.getTheme',
|
|
513
560
|
0x3a912d4a => 'passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow',
|
|
561
|
+
0x3aae0528 => 'starGiftAuctionRound',
|
|
514
562
|
0x3b1adf37 => 'messages.reorderPinnedDialogs',
|
|
515
563
|
0x3b6d152e => 'users.userFull',
|
|
516
|
-
|
|
564
|
+
0x3b7d0ea6 => 'messages.getFutureChatCreatorAfterLeave',
|
|
565
|
+
0x3ba47bff => 'messages.getForumTopics',
|
|
517
566
|
0x3bb3b94a => 'inputPhoto',
|
|
518
567
|
0x3bb842ac => 'outboxReadDate',
|
|
519
568
|
0x3bcbf734 => 'dh_gen_ok',
|
|
520
569
|
0x3bd2b4a0 => 'phone.acceptCall',
|
|
570
|
+
0x3bd4b7c2 => 'inputReplyToMessage',
|
|
521
571
|
0x3c134d7b => 'messageActionSetMessagesTTL',
|
|
522
572
|
0x3c20629f => 'inlineBotSwitchPM',
|
|
573
|
+
0x3c27b78f => 'inputPasskeyCredentialPublicKey',
|
|
523
574
|
0x3c2884c1 => 'textUrl',
|
|
575
|
+
0x3c29a3e2 => 'pageBlockThinking',
|
|
524
576
|
0x3c4301c0 => 'attachMenuBots',
|
|
525
577
|
0x3c479971 => 'phone.declineConferenceCallInvite',
|
|
526
578
|
0x3c4f04d8 => 'botCommandScopeUsers',
|
|
527
579
|
0x3c5693e9 => 'inputTheme',
|
|
580
|
+
0x3c60b621 => 'bots.exportedBotToken',
|
|
528
581
|
0x3cbc93f8 => 'chatParticipants',
|
|
529
582
|
0x3cc04740 => 'messages.deleteQuickReplyShortcut',
|
|
583
|
+
0x3cd623ec => 'urlAuthResultRequest',
|
|
530
584
|
0x3cd930b7 => 'channels.setEmojiStickers',
|
|
531
585
|
0x3d662b7b => 'privacyKeyPhoneCall',
|
|
532
586
|
0x3d6ce850 => 'messages.getSponsoredMessages',
|
|
@@ -538,6 +592,7 @@ module MTProto
|
|
|
538
592
|
0x3dc4b4f0 => 'invokeAfterMsgs',
|
|
539
593
|
0x3dcd7a87 => 'inputBotInlineMessageText',
|
|
540
594
|
0x3dda5451 => 'updateChatParticipantAdd',
|
|
595
|
+
0x3de1dfed => 'payments.starGiftUpgradePreview',
|
|
541
596
|
0x3dea5b03 => 'account.saveRingtone',
|
|
542
597
|
0x3ded6320 => 'messageMediaEmpty',
|
|
543
598
|
0x3e050d0f => 'updateQuickReplyMessage',
|
|
@@ -545,44 +600,58 @@ module MTProto
|
|
|
545
600
|
0x3e0bdd7c => 'account.updateUsername',
|
|
546
601
|
0x3e11affb => 'updates.channelDifferenceEmpty',
|
|
547
602
|
0x3e24e573 => 'payments.bankCardData',
|
|
603
|
+
0x3e2793ba => 'messageActionNoForwardsRequest',
|
|
548
604
|
0x3e3bcf2f => 'channels.sponsoredMessageReportResultAdsHidden',
|
|
605
|
+
0x3e63935c => 'inputPasskeyResponseRegister',
|
|
549
606
|
0x3e72ba19 => 'auth.logOut',
|
|
607
|
+
0x3e77f614 => 'inputInvoicePremiumAuthCode',
|
|
550
608
|
0x3e7f6847 => 'channelAdminLogEventActionParticipantVolume',
|
|
609
|
+
0x3e81e078 => 'requestPeerTypeCreateBot',
|
|
610
|
+
0x3e85e92c => 'updateDeleteGroupCallMessages',
|
|
551
611
|
0x3ea9feb1 => 'channelAdminLogEventActionChangeEmojiStatus',
|
|
552
612
|
0x3eadb1bb => 'messages.checkChatInvite',
|
|
553
613
|
0x3f64c076 => 'messages.reportReaction',
|
|
554
614
|
0x3f6d7b68 => 'jsonNull',
|
|
555
|
-
|
|
615
|
+
0x3fa53905 => 'keyboardButtonBuy',
|
|
616
|
+
0x3fc18057 => 'inputStorePaymentAuthCode',
|
|
556
617
|
0x3fc9053b => 'exportedStoryLink',
|
|
557
618
|
0x3fd863d1 => 'botCommandScopePeerAdmins',
|
|
558
619
|
0x3fedc75f => 'help.getDeepLinkInfo',
|
|
559
620
|
0x3fedd339 => 'true',
|
|
560
621
|
0x3ff75734 => 'channels.toggleForum',
|
|
561
622
|
0x40181ffe => 'inputPhotoFileLocation',
|
|
623
|
+
0x402b4495 => 'inputMessageReadMetric',
|
|
562
624
|
0x40582bb2 => 'channels.setDiscussionGroup',
|
|
563
625
|
0x405fef0d => 'inputMediaInvoice',
|
|
626
|
+
0x4067c5e6 => 'messages.reportReadMetrics',
|
|
564
627
|
0x40bc6f52 => 'storage.filePartial',
|
|
565
628
|
0x40d13c0e => 'stickerSetFullCovered',
|
|
566
629
|
0x40f48462 => 'account.changeAuthorizationSettings',
|
|
567
630
|
0x410a134e => 'channelAdminLogEventActionExportedInviteRevoke',
|
|
568
631
|
0x41248786 => 'phone.saveCallLog',
|
|
569
632
|
0x413a3e73 => 'messages.requestSimpleWebView',
|
|
633
|
+
0x4167add1 => 'phone.saveDefaultSendAs',
|
|
570
634
|
0x416c56e8 => 'payments.uniqueStarGift',
|
|
571
635
|
0x417bbf11 => 'inputBotInlineMessageMediaVenue',
|
|
636
|
+
0x417efd8f => 'keyboardButtonRequestPhone',
|
|
572
637
|
0x418d549c => 'channels.toggleSignatures',
|
|
573
638
|
0x41b3e202 => 'messageActionPaymentRefunded',
|
|
574
639
|
0x41bf109b => 'exportedContactToken',
|
|
575
640
|
0x41c10fff => 'chatlists.checkChatlistInvite',
|
|
576
641
|
0x41c87565 => 'privacyValueDisallowChatParticipants',
|
|
577
642
|
0x41cbf256 => 'chat',
|
|
643
|
+
0x41df43fc => 'savedStarGift',
|
|
578
644
|
0x4203c5ef => 'help.countryCode',
|
|
579
645
|
0x423ab3ad => 'bots.getPreviewInfo',
|
|
580
646
|
0x4258c205 => 'botMenuButtonCommands',
|
|
647
|
+
0x429547e8 => 'account.initPasskeyRegistration',
|
|
648
|
+
0x42b00348 => 'starGiftAuctionAcquiredGift',
|
|
581
649
|
0x42c6978f => 'langpack.getLanguages',
|
|
582
650
|
0x42e047bb => 'channelAdminLogEventActionDeleteMessage',
|
|
583
651
|
0x42ff96ed => 'phone.requestCall',
|
|
584
652
|
0x42ffd42b => 'privacyKeyAddedByPhone',
|
|
585
653
|
0x430d3150 => 'sponsoredMessageReportOption',
|
|
654
|
+
0x43286cf2 => 'messages.getUnreadPollVotes',
|
|
586
655
|
0x4345be73 => 'emailVerifyPurposeLoginSetup',
|
|
587
656
|
0x434bd2af => 'channelAdminLogEventActionChangePhoto',
|
|
588
657
|
0x435885b5 => 'messages.togglePaidReactionPrivacy',
|
|
@@ -592,11 +661,13 @@ module MTProto
|
|
|
592
661
|
0x43c57c48 => 'documentAttributeVideo',
|
|
593
662
|
0x43fe19f3 => 'messages.checkHistoryImport',
|
|
594
663
|
0x4423e6c5 => 'messages.getHistory',
|
|
664
|
+
0x445663a7 => 'messages.chatInviteJoinResultOk',
|
|
595
665
|
0x446972fd => 'messages.getDiscussionMessage',
|
|
596
666
|
0x44747e9a => 'auth.authorizationSignUpRequired',
|
|
597
667
|
0x449e0b51 => 'account.getTmpPassword',
|
|
598
668
|
0x44ba9dd9 => 'messages.savedDialogsSlice',
|
|
599
669
|
0x44c1f8e9 => 'inputStickerSetEmojiDefaultTopicIcons',
|
|
670
|
+
0x44e56023 => 'messages.emojiGameDiceInfo',
|
|
600
671
|
0x44fa7a15 => 'messages.sendEncrypted',
|
|
601
672
|
0x4504d54f => 'bots.setBotMenuButton',
|
|
602
673
|
0x455b853d => 'messageViews',
|
|
@@ -607,6 +678,7 @@ module MTProto
|
|
|
607
678
|
0x46560264 => 'updateLangPackTooLong',
|
|
608
679
|
0x467a0766 => 'pageBlockParagraph',
|
|
609
680
|
0x4696459a => 'stickers.replaceSticker',
|
|
681
|
+
0x46c6e36f => 'payments.starGiftUpgradeAttributes',
|
|
610
682
|
0x46d840ab => 'channelAdminLogEventActionChangeEmojiStickerSet',
|
|
611
683
|
0x46dc1fb9 => 'dh_gen_retry',
|
|
612
684
|
0x46e1d13d => 'recentMeUrlUnknown',
|
|
@@ -616,11 +688,14 @@ module MTProto
|
|
|
616
688
|
0x47dd8079 => 'messageActionWebViewDataSentMe',
|
|
617
689
|
0x481eadfa => 'emojiListNotModified',
|
|
618
690
|
0x48222faf => 'inputGeoPoint',
|
|
691
|
+
0x4880ed9a => 'updateManagedBot',
|
|
619
692
|
0x48870999 => 'pageBlockFooter',
|
|
620
693
|
0x4899484e => 'messages.votesList',
|
|
621
694
|
0x48a30254 => 'replyInlineMarkup',
|
|
622
695
|
0x48aaae3c => 'starGiftAttributeIdModel',
|
|
623
696
|
0x48cdc6d8 => 'phone.createGroupCall',
|
|
697
|
+
0x48e246c2 => 'updateStarGiftAuctionState',
|
|
698
|
+
0x48e91302 => 'messageActionGiftPremium',
|
|
624
699
|
0x48f1d94c => 'encryptedChatRequested',
|
|
625
700
|
0x4959427a => 'premium.boostsStatus',
|
|
626
701
|
0x496f379c => 'updateBotInlineQuery',
|
|
@@ -635,6 +710,7 @@ module MTProto
|
|
|
635
710
|
0x4a5f5bd9 => 'inputInvoiceStarGiftTransfer',
|
|
636
711
|
0x4a95e84e => 'inputNotifyChats',
|
|
637
712
|
0x4a992157 => 'inputStickeredMediaPhoto',
|
|
713
|
+
0x4aa83913 => 'aicompose.createTone',
|
|
638
714
|
0x4afe8f6d => 'updates.differenceTooLong',
|
|
639
715
|
0x4b00e066 => 'account.updateBusinessWorkHours',
|
|
640
716
|
0x4b09ebbc => 'storage.fileMov',
|
|
@@ -642,16 +718,15 @@ module MTProto
|
|
|
642
718
|
0x4b12327b => 'channels.updatePaidMessagesPrice',
|
|
643
719
|
0x4b3e14d6 => 'boost',
|
|
644
720
|
0x4b425864 => 'inputBotInlineMessageGame',
|
|
721
|
+
0x4b7d786a => 'pollAnswer',
|
|
645
722
|
0x4b9e22a0 => 'reactionNotificationsFromAll',
|
|
646
723
|
0x4ba3a95a => 'messageReactor',
|
|
647
724
|
0x4bc6589a => 'messages.searchGlobal',
|
|
648
|
-
0x4bd6e798 => 'messageMediaPoll',
|
|
649
725
|
0x4bff8ea0 => 'account.authorizations',
|
|
650
|
-
|
|
726
|
+
0x4c2a5d62 => 'textSpoiler',
|
|
651
727
|
0x4c3e069d => 'account.autoSaveSettings',
|
|
652
728
|
0x4c4e743f => 'messageEntityCashtag',
|
|
653
729
|
0x4c9409f6 => 'account.declinePasswordReset',
|
|
654
|
-
0x4cc120b7 => 'todoCompletion',
|
|
655
730
|
0x4d22ff98 => 'webViewResultUrl',
|
|
656
731
|
0x4d392343 => 'help.getInviteText',
|
|
657
732
|
0x4d4bd46a => 'profileTabGifts',
|
|
@@ -661,10 +736,12 @@ module MTProto
|
|
|
661
736
|
0x4d8a0299 => 'botInfo',
|
|
662
737
|
0x4dafc503 => 'stickers.suggestShortName',
|
|
663
738
|
0x4dba4501 => 'account.takeout',
|
|
739
|
+
0x4dbe9226 => 'inputPrivacyKeySavedMusic',
|
|
664
740
|
0x4dc5085f => 'messages.deleteSavedHistory',
|
|
665
741
|
0x4dd3a7f6 => 'account.verifyPhone',
|
|
666
742
|
0x4e4df4bb => 'messageFwdHeader',
|
|
667
743
|
0x4e5f810d => 'payments.paymentResult',
|
|
744
|
+
0x4e7085ea => 'starGiftAttributePattern',
|
|
668
745
|
0x4e80a379 => 'updateStarsBalance',
|
|
669
746
|
0x4e90bfd6 => 'updateMessageID',
|
|
670
747
|
0x4e9963b2 => 'messages.getEmojiKeywordsLanguages',
|
|
@@ -674,17 +751,18 @@ module MTProto
|
|
|
674
751
|
0x4f1ebf24 => 'smsjobs.finishJob',
|
|
675
752
|
0x4f4456d3 => 'pageBlockPullquote',
|
|
676
753
|
0x4f47a016 => 'messages.setDefaultReaction',
|
|
677
|
-
0x4f607bef => 'channelParticipantSelf',
|
|
678
754
|
0x4f96cb18 => 'inputPrivacyKeyStatusTimestamp',
|
|
679
755
|
0x4fa417f2 => 'inputBotInlineResultGame',
|
|
680
756
|
0x4facb138 => 'messages.hidePeerSettingsBar',
|
|
681
757
|
0x4fc81d6e => 'account.savedMusicIdsNotModified',
|
|
682
758
|
0x4fcba9c8 => 'messages.archivedStickers',
|
|
683
759
|
0x4fdc5ea7 => 'payments.canPurchaseStore',
|
|
760
|
+
0x4fdd3430 => 'keyboardButtonStyle',
|
|
684
761
|
0x4fddbee7 => 'payments.updateStarGiftCollection',
|
|
685
762
|
0x500377f9 => 'phone.leaveGroupCall',
|
|
686
763
|
0x50077589 => 'bots.checkDownloadFileParams',
|
|
687
764
|
0x500e6dfa => 'privacyKeyChatInvite',
|
|
765
|
+
0x501569cf => 'messages.getRichMessage',
|
|
688
766
|
0x502f92f7 => 'messageActionInviteToGroupCall',
|
|
689
767
|
0x504aa18f => 'updateSentPhoneCode',
|
|
690
768
|
0x5057c497 => 'messages.uploadEncryptedFile',
|
|
@@ -694,11 +772,12 @@ module MTProto
|
|
|
694
772
|
0x50cc03d3 => 'webPageAttributeStickerSet',
|
|
695
773
|
0x50cd067c => 'stats.storyStats',
|
|
696
774
|
0x50f24105 => 'channels.toggleUsername',
|
|
697
|
-
0x50f41ccf => 'keyboardButtonGame',
|
|
698
775
|
0x50f5c392 => 'inputMessagesFilterVoice',
|
|
699
776
|
0x512fe446 => 'payments.uniqueStarGiftValueInfo',
|
|
700
777
|
0x514519e2 => 'dialogPeerFolder',
|
|
701
778
|
0x514e999d => 'messages.getInlineBotResults',
|
|
779
|
+
0x518ad0b7 => 'auth.initPasskeyLogin',
|
|
780
|
+
0x519524ea => 'textHashtag',
|
|
702
781
|
0x51e6ee4f => 'storyItemDeleted',
|
|
703
782
|
0x52029342 => 'help.getCdnConfig',
|
|
704
783
|
0x522d5a7d => 'help.getAppUpdate',
|
|
@@ -710,7 +789,6 @@ module MTProto
|
|
|
710
789
|
0x5334759c => 'help.premiumPromo',
|
|
711
790
|
0x5353e5a7 => 'auth.sentCodeTypeCall',
|
|
712
791
|
0x53577479 => 'account.getNotifyExceptions',
|
|
713
|
-
0x535983c3 => 'stories.getPeerMaxIDs',
|
|
714
792
|
0x535f779d => 'statsGroupTopInviter',
|
|
715
793
|
0x53618bce => 'messages.requestAppWebView',
|
|
716
794
|
0x5366c915 => 'phoneCallEmpty',
|
|
@@ -718,40 +796,41 @@ module MTProto
|
|
|
718
796
|
0x53909779 => 'channelAdminLogEventActionToggleSlowMode',
|
|
719
797
|
0x53b22baf => 'messages.searchResultsPositions',
|
|
720
798
|
0x53bc0020 => 'account.deleteAutoSaveExceptions',
|
|
721
|
-
0x53d7bfd8 => 'keyboardButtonRequestPeer',
|
|
722
799
|
0x53e6f1ec => 'updateDeleteQuickReply',
|
|
723
800
|
0x541a1d1a => 'userStatusLastWeek',
|
|
724
801
|
0x54236209 => 'starsGiveawayWinnersOption',
|
|
725
802
|
0x548a30f5 => 'account.getPassword',
|
|
726
803
|
0x5492e5ee => 'account.resolveBusinessChatLink',
|
|
727
|
-
0x54ae308e => 'messages.saveDraft',
|
|
728
804
|
0x54b56617 => 'webPageAttributeTheme',
|
|
729
805
|
0x54c01850 => 'updateChatDefaultBannedRights',
|
|
730
806
|
0x55188a2e => 'channelAdminLogEventActionChangeAbout',
|
|
731
|
-
0x553b0ba1 => 'groupCall',
|
|
732
807
|
0x55451fa9 => 'phone.getCallConfig',
|
|
733
808
|
0x5559481d => 'messages.sendEncryptedFile',
|
|
734
809
|
0x55a5bb66 => 'messages.receivedQueue',
|
|
810
|
+
0x55b41fd6 => 'account.registerPasskey',
|
|
811
|
+
0x55fb0996 => 'messages.getPersonalChannelHistory',
|
|
735
812
|
0x56022f4d => 'updateLangPack',
|
|
736
813
|
0x560f8935 => 'messages.sentEncryptedMessage',
|
|
737
814
|
0x564edaeb => 'stories.albumsNotModified',
|
|
738
815
|
0x564fe691 => 'updateLoginToken',
|
|
816
|
+
0x565251e2 => 'starGiftAttributeModel',
|
|
817
|
+
0x56655768 => 'account.getWebBrowserSettings',
|
|
739
818
|
0x566decd0 => 'channels.editTitle',
|
|
740
819
|
0x566fe7cd => 'updateDeleteQuickReplyMessages',
|
|
741
820
|
0x56730bcc => 'null',
|
|
742
821
|
0x5680e342 => 'phone.startScheduledGroupCall',
|
|
743
822
|
0x56987bd5 => 'messages.deleteRevokedExportedChatInvites',
|
|
744
|
-
0x56d03994 => 'messageActionGiftCode',
|
|
745
823
|
0x56d6a247 => 'channelAdminLogEventActionToggleGroupCallSetting',
|
|
746
824
|
0x56da0b3f => 'account.getAutoDownloadSettings',
|
|
747
825
|
0x56e0d474 => 'messageMediaGeo',
|
|
748
|
-
|
|
826
|
+
0x56e59f9c => 'auth.checkPaidAuth',
|
|
749
827
|
0x56e9f0e4 => 'inputMessagesFilterPhotoVideo',
|
|
750
828
|
0x56fddf88 => 'p_q_inner_data_temp_dc',
|
|
751
829
|
0x570d6f6f => 'messages.getWebPagePreview',
|
|
752
830
|
0x5719bacc => 'inputPrivacyKeyProfilePhoto',
|
|
753
831
|
0x571d2742 => 'updateReadFeaturedStickers',
|
|
754
832
|
0x5725e40a => 'cdnConfig',
|
|
833
|
+
0x574b617f => 'inputPageBlockMap',
|
|
755
834
|
0x575e1f8c => 'phone.saveDefaultGroupCallJoinAs',
|
|
756
835
|
0x5774ca74 => 'stories.getStoriesByID',
|
|
757
836
|
0x5784d3e1 => 'messages.getMessagesViews',
|
|
@@ -763,10 +842,10 @@ module MTProto
|
|
|
763
842
|
0x57e28221 => 'account.contentSettings',
|
|
764
843
|
0x57e2f66c => 'inputMessagesFilterEmpty',
|
|
765
844
|
0x57f17692 => 'messages.getArchivedStickers',
|
|
845
|
+
0x5806b4ec => 'channelAdminLogEventActionParticipantEditRank',
|
|
766
846
|
0x5821a5dc => 'stories.getPinnedStories',
|
|
767
847
|
0x5869a553 => 'payments.getConnectedStarRefBots',
|
|
768
848
|
0x58707d28 => 'channelAdminLogEventActionCreateTopic',
|
|
769
|
-
0x58747131 => 'poll',
|
|
770
849
|
0x5881323a => 'inputReplyToStory',
|
|
771
850
|
0x58943ee2 => 'messages.setTyping',
|
|
772
851
|
0x58bbcb50 => 'messages.sendPaidReaction',
|
|
@@ -774,9 +853,11 @@ module MTProto
|
|
|
774
853
|
0x58dbcab8 => 'inputReportReasonSpam',
|
|
775
854
|
0x58e4a740 => 'rpc_drop_answer',
|
|
776
855
|
0x58e63f6d => 'channels.editLocation',
|
|
856
|
+
0x59080c20 => 'pageBlockMath',
|
|
777
857
|
0x59511722 => 'peerUser',
|
|
778
858
|
0x59ae2b16 => 'messages.deleteScheduledMessages',
|
|
779
859
|
0x59d78fc5 => 'stories.storyViewsList',
|
|
860
|
+
0x59e65335 => 'messages.emojiGameUnavailable',
|
|
780
861
|
0x59ead627 => 'phone.setCallRating',
|
|
781
862
|
0x5a0a066d => 'businessIntro',
|
|
782
863
|
0x5a17b5e5 => 'inputEncryptedFile',
|
|
@@ -784,15 +865,18 @@ module MTProto
|
|
|
784
865
|
0x5a50fca4 => 'channelAdminLogEventActionExportedInviteDelete',
|
|
785
866
|
0x5a686d7c => 'chatInviteAlready',
|
|
786
867
|
0x5a6d7395 => 'messages.reportMessagesDelivery',
|
|
868
|
+
0x5af4c73a => 'phone.getGroupCallStreamRtmpUrl',
|
|
869
|
+
0x5b0f15f5 => 'keyboardButtonRequestPeer',
|
|
787
870
|
0x5b11125a => 'baseThemeArctic',
|
|
788
871
|
0x5b118126 => 'messages.readFeaturedStickers',
|
|
872
|
+
0x5b1ccb28 => 'inputPasskeyCredentialFirebasePNV',
|
|
789
873
|
0x5b934f9d => 'inputChannelFromMessage',
|
|
790
|
-
0x5bb8e511 => 'message',
|
|
791
874
|
0x5bb98608 => 'updatePinnedChannelMessages',
|
|
792
875
|
0x5bd0ee50 => 'messages.deleteChat',
|
|
793
876
|
0x5c003cef => 'messages.editQuickReplyShortcut',
|
|
794
877
|
0x5c467992 => 'inputNotifyForumTopic',
|
|
795
878
|
0x5c9d3702 => 'chatInvite',
|
|
879
|
+
0x5c9ff4d6 => 'payments.getStarGiftAuctionState',
|
|
796
880
|
0x5cc761bd => 'emojiKeywordsDifference',
|
|
797
881
|
0x5ce14175 => 'popularContact',
|
|
798
882
|
0x5cf09635 => 'messages.getSavedGifs',
|
|
@@ -805,7 +889,6 @@ module MTProto
|
|
|
805
889
|
0x5dee78b0 => 'account.setMainProfileTab',
|
|
806
890
|
0x5e002502 => 'auth.sentCode',
|
|
807
891
|
0x5e0589f1 => 'starsGiftOption',
|
|
808
|
-
0x5e068047 => 'pageListOrderedItemText',
|
|
809
892
|
0x5e0fb7b9 => 'messages.historyImportParsed',
|
|
810
893
|
0x5e2ad36e => 'rpc_answer_unknown',
|
|
811
894
|
0x5e437ed9 => 'account.disablePeerConnectedBot',
|
|
@@ -813,6 +896,7 @@ module MTProto
|
|
|
813
896
|
0x5e5259b6 => 'stories.updateAlbum',
|
|
814
897
|
0x5ec4be43 => 'inlineQueryPeerTypeMegagroup',
|
|
815
898
|
0x5f150144 => 'stats.getMessagePublicForwards',
|
|
899
|
+
0x5f206716 => 'messages.messagesSlice',
|
|
816
900
|
0x5f2178c3 => 'account.confirmPhone',
|
|
817
901
|
0x5f2d1df2 => 'premiumSubscriptionOption',
|
|
818
902
|
0x5f3b8a00 => 'requestPeerTypeUser',
|
|
@@ -828,12 +912,15 @@ module MTProto
|
|
|
828
912
|
0x6090d6d5 => 'storyReaction',
|
|
829
913
|
0x60a79c79 => 'channelAdminLogEventActionToggleSignatureProfiles',
|
|
830
914
|
0x60eaefa1 => 'payments.toggleChatStarGiftNotifications',
|
|
915
|
+
0x60ed4229 => 'account.toggleWebBrowserSettingsException',
|
|
831
916
|
0x60f67660 => 'premium.getBoostsList',
|
|
917
|
+
0x60fe3294 => 'draftMessage',
|
|
832
918
|
0x61695cb0 => 'chatInvitePeek',
|
|
833
919
|
0x616f7fe8 => 'inputStorePaymentGiftPremium',
|
|
834
920
|
0x61e3f854 => 'help.getAppConfig',
|
|
835
921
|
0x61f0d4c7 => 'encryptedChat',
|
|
836
922
|
0x621d5fa0 => 'stats.loadAsyncGraph',
|
|
923
|
+
0x623a8fa0 => 'urlAuthResultAccepted',
|
|
837
924
|
0x628c9224 => 'missingInvitee',
|
|
838
925
|
0x628cbc6f => 'sendMessageChooseContactAction',
|
|
839
926
|
0x629f1980 => 'auth.loginToken',
|
|
@@ -842,13 +929,13 @@ module MTProto
|
|
|
842
929
|
0x62d6b459 => 'msgs_ack',
|
|
843
930
|
0x62d706b8 => 'users.users',
|
|
844
931
|
0x62dc8b48 => 'inputFileStoryDocument',
|
|
845
|
-
0x63183030 => 'messages.translateText',
|
|
846
932
|
0x6319d612 => 'documentAttributeSticker',
|
|
847
933
|
0x6334ee9a => 'inlineQueryPeerTypeBroadcast',
|
|
848
934
|
0x635b4c09 => 'updateChannel',
|
|
849
935
|
0x635fe375 => 'phoneConnectionWebrtc',
|
|
850
936
|
0x63c3dd0a => 'stories.stories',
|
|
851
937
|
0x63c66506 => 'messages.getMessages',
|
|
938
|
+
0x63ca67aa => 'pageListItemBlocks',
|
|
852
939
|
0x63cacf26 => 'account.autoDownloadSettings',
|
|
853
940
|
0x640f82b8 => 'messages.getMaskStickers',
|
|
854
941
|
0x6410a5d2 => 'stickerSetCovered',
|
|
@@ -883,18 +970,23 @@ module MTProto
|
|
|
883
970
|
0x66e486fb => 'chatlists.hideChatlistUpdates',
|
|
884
971
|
0x6724abc4 => 'textBold',
|
|
885
972
|
0x67753ac8 => 'groupCallParticipantVideo',
|
|
973
|
+
0x67a3f0de => 'messages.acceptUrlAuth',
|
|
886
974
|
0x67a3ff2c => 'auth.importBotAuthorization',
|
|
975
|
+
0x67e731ad => 'pageBlockHeading3',
|
|
976
|
+
0x67ed1f68 => 'account.confirmBotConnection',
|
|
977
|
+
0x68013e72 => 'inputKeyboardButtonUrlAuth',
|
|
978
|
+
0x682a41a9 => 'pageBlockHeading6',
|
|
887
979
|
0x682d2594 => 'account.resetWebAuthorizations',
|
|
980
|
+
0x683b2c52 => 'updatePinnedForumTopic',
|
|
888
981
|
0x6847d0ab => 'folders.editPeerFolders',
|
|
982
|
+
0x684d214e => 'account.updateColor',
|
|
889
983
|
0x686c85a6 => 'updatePinnedSavedDialogs',
|
|
890
984
|
0x6880b94d => 'messages.peerSettings',
|
|
891
985
|
0x688a30aa => 'updateNewStickerSet',
|
|
892
986
|
0x68cb6283 => 'messageMediaStory',
|
|
893
987
|
0x68f3e4eb => 'channels.toggleAntiSpam',
|
|
894
|
-
0x6917560b => 'messageReplyHeader',
|
|
895
988
|
0x691e9052 => 'updateInlineBotCallbackQuery',
|
|
896
989
|
0x69279795 => 'inputSavedStarGiftUser',
|
|
897
|
-
0x695150d7 => 'messageMediaPhoto',
|
|
898
990
|
0x695c9e7c => 'updateReadChannelDiscussionOutbox',
|
|
899
991
|
0x69d66c45 => 'inputReplyToMonoForum',
|
|
900
992
|
0x69da4557 => 'payments.getStarsTransactions',
|
|
@@ -902,6 +994,7 @@ module MTProto
|
|
|
902
994
|
0x69f59d69 => 'messages.toggleBotInAttachMenu',
|
|
903
995
|
0x69f916f8 => 'messageActionSuggestedPostRefund',
|
|
904
996
|
0x6a0d3206 => 'account.unregisterDevice',
|
|
997
|
+
0x6a1dc4be => 'inputPhoneContact',
|
|
905
998
|
0x6a3f8d65 => 'messages.getAllDrafts',
|
|
906
999
|
0x6a4afc38 => 'channelAdminLogEventActionChangeUsername',
|
|
907
1000
|
0x6a4ee832 => 'help.deepLinkInfo',
|
|
@@ -910,21 +1003,24 @@ module MTProto
|
|
|
910
1003
|
0x6a7e7366 => 'updatePeerSettings',
|
|
911
1004
|
0x6aa3f6bd => 'messages.getSearchResultsCalendar',
|
|
912
1005
|
0x6b134e8e => 'privacyValueAllowChatParticipants',
|
|
1006
|
+
0x6b39f4ec => 'payments.starGiftAuctionState',
|
|
913
1007
|
0x6b7da746 => 'premium.applyBoost',
|
|
1008
|
+
0x6ba2cbec => 'payments.getStarGiftAuctionAcquiredGifts',
|
|
914
1009
|
0x6c207376 => 'payments.starsRevenueStats',
|
|
1010
|
+
0x6c24f3dd => 'topPeerCategoryBotsGuestChat',
|
|
915
1011
|
0x6c2d9026 => 'channels.updatePinnedForumTopic',
|
|
916
1012
|
0x6c37c15c => 'documentAttributeImageSize',
|
|
917
1013
|
0x6c3f19b9 => 'textFixed',
|
|
918
1014
|
0x6c47ac9f => 'langPackStringPluralized',
|
|
919
|
-
0x6c50051c => 'messages.importChatInvite',
|
|
920
1015
|
0x6c5a5b37 => 'account.saveWallPaper',
|
|
921
|
-
|
|
1016
|
+
0x6c5cf2a7 => 'messages.sendBotRequestedPeer',
|
|
922
1017
|
0x6c750de1 => 'messages.sendQuickReplyMessages',
|
|
923
1018
|
0x6c8e1e06 => 'birthday',
|
|
924
1019
|
0x6c9ce8ed => 'payments.starsStatus',
|
|
1020
|
+
0x6c9d0efe => 'aicompose.tones',
|
|
925
1021
|
0x6cef8ac7 => 'messageEntityBotCommand',
|
|
1022
|
+
0x6d038b58 => 'payments.getStarGiftUpgradeAttributes',
|
|
926
1023
|
0x6d5f77ee => 'baseThemeTinted',
|
|
927
|
-
0x6df8014e => 'channelParticipantBanned',
|
|
928
1024
|
0x6dfa0622 => 'payments.botCancelStarsSubscription',
|
|
929
1025
|
0x6e153f16 => 'messages.stickerSet',
|
|
930
1026
|
0x6e2be050 => 'messages.getOnlines',
|
|
@@ -937,6 +1033,7 @@ module MTProto
|
|
|
937
1033
|
0x6f09ac31 => 'reportResultAddComment',
|
|
938
1034
|
0x6f0c34df => 'notificationSoundNone',
|
|
939
1035
|
0x6f635b0d => 'messageEntityHashtag',
|
|
1036
|
+
0x6f636302 => 'phone.getGroupCallStars',
|
|
940
1037
|
0x6f6f9c96 => 'messages.getSavedDialogsByID',
|
|
941
1038
|
0x6f70dde1 => 'account.getBusinessChatLinks',
|
|
942
1039
|
0x6f747657 => 'pageCaption',
|
|
@@ -953,12 +1050,14 @@ module MTProto
|
|
|
953
1050
|
0x70b772a8 => 'contacts.topPeers',
|
|
954
1051
|
0x70c32edb => 'account.changePhone',
|
|
955
1052
|
0x70c4fe03 => 'payments.paymentReceipt',
|
|
1053
|
+
0x711d692d => 'recentStory',
|
|
956
1054
|
0x712e27fd => 'storiesStealthMode',
|
|
957
|
-
|
|
1055
|
+
0x71777116 => 'messageEntityDiffInsert',
|
|
958
1056
|
0x7184603b => 'emojiStatusCollectible',
|
|
959
1057
|
0x719c5c5e => 'chatlists.deleteExportedInvite',
|
|
960
1058
|
0x71bd134c => 'dialogFolder',
|
|
961
1059
|
0x71e094f3 => 'messages.dialogsSlice',
|
|
1060
|
+
0x71e4ea58 => 'reactionsNotifySettings',
|
|
962
1061
|
0x71f276c4 => 'disallowedGiftsSettings',
|
|
963
1062
|
0x7206e458 => 'account.getThemes',
|
|
964
1063
|
0x72091c80 => 'inputWallPaperSlug',
|
|
@@ -973,10 +1072,9 @@ module MTProto
|
|
|
973
1072
|
0x73665bc2 => 'account.getSecureValue',
|
|
974
1073
|
0x73746f5c => 'messages.getExportedChatInvite',
|
|
975
1074
|
0x73783ffd => 'messages.editChatTitle',
|
|
976
|
-
0x737fc2ec => 'stories.sendStory',
|
|
977
1075
|
0x73924be0 => 'messageEntityPre',
|
|
978
1076
|
0x73a379eb => 'highScore',
|
|
979
|
-
|
|
1077
|
+
0x73ada76b => 'messageActionStarGiftPurchaseOfferDeclined',
|
|
980
1078
|
0x73f1f8dc => 'msg_container',
|
|
981
1079
|
0x741cd3e3 => 'auth.codeTypeCall',
|
|
982
1080
|
0x744694e0 => 'textPlain',
|
|
@@ -984,7 +1082,6 @@ module MTProto
|
|
|
984
1082
|
0x7488ce5b => 'messages.getEmojiGroups',
|
|
985
1083
|
0x74ae4240 => 'updates',
|
|
986
1084
|
0x74aee3e0 => 'starsTonAmount',
|
|
987
|
-
0x74bbb43d => 'phone.toggleGroupCallSettings',
|
|
988
1085
|
0x74bf076b => 'payments.convertStarGift',
|
|
989
1086
|
0x74cda504 => 'messagePeerVoteInputOption',
|
|
990
1087
|
0x74d8be99 => 'updateSavedRingtones',
|
|
@@ -997,22 +1094,26 @@ module MTProto
|
|
|
997
1094
|
0x75a3f765 => 'bind_auth_key_inner',
|
|
998
1095
|
0x75b3b798 => 'updateStory',
|
|
999
1096
|
0x75c78e60 => 'photoSize',
|
|
1000
|
-
|
|
1097
|
+
0x7600b9d3 => 'message',
|
|
1001
1098
|
0x761e6af4 => 'messageEntityBankCard',
|
|
1002
|
-
0x762b263d => 'messages.messagesSlice',
|
|
1003
1099
|
0x764cf810 => 'botInlineMessageMediaAuto',
|
|
1004
1100
|
0x76768bed => 'pageBlockDetails',
|
|
1005
1101
|
0x767d61eb => 'help.peerColorProfileSet',
|
|
1006
1102
|
0x768e3aad => 'messages.availableReactions',
|
|
1103
|
+
0x7699f014 => 'updateMessagePollVote',
|
|
1007
1104
|
0x76a6d327 => 'messageEntityTextUrl',
|
|
1008
1105
|
0x76a86270 => 'account.getBotBusinessConnection',
|
|
1009
1106
|
0x76f36233 => 'account.saveAutoDownloadSettings',
|
|
1010
1107
|
0x770416af => 'mediaAreaChannelPost',
|
|
1108
|
+
0x771a4e66 => 'starGiftAuctionState',
|
|
1011
1109
|
0x77216192 => 'messages.getAttachMenuBot',
|
|
1012
1110
|
0x7727a7d5 => 'account.getChannelDefaultEmojiStatuses',
|
|
1111
|
+
0x773f4e66 => 'messageMediaPoll',
|
|
1112
|
+
0x774278d4 => 'messageActionStarGiftPurchaseOffer',
|
|
1013
1113
|
0x77608b83 => 'keyboardButtonRow',
|
|
1014
1114
|
0x77744d4a => 'dialogFilterSuggested',
|
|
1015
1115
|
0x7780bcb4 => 'groupCallDiscarded',
|
|
1116
|
+
0x7781fe18 => 'webPageAttributeAiComposeTone',
|
|
1016
1117
|
0x778b5ab3 => 'bots.updateStarRefProgram',
|
|
1017
1118
|
0x778d902f => 'smsjobs.getSmsJob',
|
|
1018
1119
|
0x779600f9 => 'inputMediaDocumentExternal',
|
|
@@ -1023,15 +1124,19 @@ module MTProto
|
|
|
1023
1124
|
0x77d01c3b => 'contacts.importedContacts',
|
|
1024
1125
|
0x780a0310 => 'help.termsOfService',
|
|
1025
1126
|
0x78337739 => 'messages.reorderStickerSets',
|
|
1127
|
+
0x78499170 => 'stories.getPeerMaxIDs',
|
|
1026
1128
|
0x78515775 => 'account.updateProfile',
|
|
1027
1129
|
0x788464e1 => 'bots.setBotBroadcastDefaultAdminRights',
|
|
1028
1130
|
0x788d7fe3 => 'users.getSavedMusic',
|
|
1029
1131
|
0x78d4dec1 => 'updateShort',
|
|
1132
|
+
0x78fbf3a8 => 'starGiftAttributeRarityEpic',
|
|
1030
1133
|
0x7903e3d9 => 'messageReportOption',
|
|
1031
1134
|
0x791451ed => 'messages.setEncryptedTyping',
|
|
1032
1135
|
0x7998c914 => 'payments.sendStarsForm',
|
|
1136
|
+
0x79eb8cb3 => 'account.webBrowserSettings',
|
|
1033
1137
|
0x79f5d419 => 'reactionEmpty',
|
|
1034
1138
|
0x7a0d7f42 => 'messageActionGroupCall',
|
|
1139
|
+
0x7a11d782 => 'keyboardButtonRequestPoll',
|
|
1035
1140
|
0x7a1e11d1 => 'emojiList',
|
|
1036
1141
|
0x7a5fa236 => 'payments.getResaleStarGifts',
|
|
1037
1142
|
0x7a700873 => 'secureValueErrorFile',
|
|
@@ -1040,26 +1145,31 @@ module MTProto
|
|
|
1040
1145
|
0x7a7f2a15 => 'account.resendPasswordEmail',
|
|
1041
1146
|
0x7a800e0a => 'messageService',
|
|
1042
1147
|
0x7a9abda9 => 'emojiGroup',
|
|
1148
|
+
0x7ab58308 => 'inputStarGiftAuctionSlug',
|
|
1043
1149
|
0x7abe77ec => 'ping',
|
|
1044
1150
|
0x7adc669d => 'contacts.getContactIDs',
|
|
1045
|
-
0x7adf2420 => 'pollResults',
|
|
1046
1151
|
0x7b197dc8 => 'userStatusRecently',
|
|
1047
1152
|
0x7b393160 => 'phone.inviteToGroupCall',
|
|
1048
1153
|
0x7b560a0b => 'starsTransactionPeerPlayMarket',
|
|
1049
1154
|
0x7b74ed71 => 'help.timezonesList',
|
|
1050
1155
|
0x7b8def20 => 'stories.exportStoryLink',
|
|
1156
|
+
0x7b9e1801 => 'textCashtag',
|
|
1051
1157
|
0x7bf6b15c => 'payments.paymentFormStars',
|
|
1052
1158
|
0x7bfbdefc => 'attachMenuPeerTypeBroadcast',
|
|
1053
1159
|
0x7c2557c4 => 'stories.toggleAllStoriesHidden',
|
|
1054
1160
|
0x7c8fe7b6 => 'pageBlockVideo',
|
|
1161
|
+
0x7cb34d79 => 'updateBotChatInviteRequester',
|
|
1055
1162
|
0x7cde641d => 'help.appConfigNotModified',
|
|
1056
|
-
0x7cefa15d => 'account.updateColor',
|
|
1057
1163
|
0x7d0444bb => 'phone.createConferenceCall',
|
|
1058
1164
|
0x7d09c27e => 'secureFile',
|
|
1165
|
+
0x7d170cff => 'keyboardButton',
|
|
1166
|
+
0x7d5bd1f0 => 'payments.starGiftAuctionAcquiredGifts',
|
|
1167
|
+
0x7d5e07c7 => 'inputKeyboardButtonUserProfile',
|
|
1059
1168
|
0x7d6099dd => 'securePlainPhone',
|
|
1060
1169
|
0x7d627683 => 'updateSentStoryReaction',
|
|
1061
1170
|
0x7d6be90e => 'attachMenuPeerTypeSameBotPM',
|
|
1062
1171
|
0x7d748d04 => 'dataJSON',
|
|
1172
|
+
0x7d8375da => 'inputMediaUploadedPhoto',
|
|
1063
1173
|
0x7d861a08 => 'msg_resend_req',
|
|
1064
1174
|
0x7da07ec9 => 'inputPeerSelf',
|
|
1065
1175
|
0x7dbf8673 => 'sponsoredMessage',
|
|
@@ -1077,6 +1187,7 @@ module MTProto
|
|
|
1077
1187
|
0x7f4b690a => 'messages.readEncryptedHistory',
|
|
1078
1188
|
0x7f5defa6 => 'messages.invitedUsers',
|
|
1079
1189
|
0x7f648b67 => 'searchResultPosition',
|
|
1190
|
+
0x7f6a1e22 => 'channels.joinChannel',
|
|
1080
1191
|
0x7f891213 => 'updateWebPage',
|
|
1081
1192
|
0x7fcb13a8 => 'messageActionChatEditPhoto',
|
|
1082
1193
|
0x7fd736b2 => 'stories.sendReaction',
|
|
@@ -1085,7 +1196,6 @@ module MTProto
|
|
|
1085
1196
|
0x804361ea => 'pageBlockAudio',
|
|
1086
1197
|
0x809ad9a6 => 'botInlineMessageMediaWebPage',
|
|
1087
1198
|
0x809db6df => 'msg_new_detailed_info',
|
|
1088
|
-
0x80ac53c3 => 'starGift',
|
|
1089
1199
|
0x80c99768 => 'inputMessagesFilterPhoneCalls',
|
|
1090
1200
|
0x80d26cc7 => 'emojiGroupGreeting',
|
|
1091
1201
|
0x80e11a7f => 'messageActionPhoneCall',
|
|
@@ -1109,10 +1219,10 @@ module MTProto
|
|
|
1109
1219
|
0x831a83a2 => 'account.uploadRingtone',
|
|
1110
1220
|
0x832175e0 => 'inputBusinessAwayMessage',
|
|
1111
1221
|
0x83268483 => 'inputChatThemeEmpty',
|
|
1222
|
+
0x83281dbd => 'inputRichFileDocument',
|
|
1112
1223
|
0x833c0fac => 'inlineQueryPeerTypePM',
|
|
1113
1224
|
0x8341ecc0 => 'channels.getLeftChannels',
|
|
1114
1225
|
0x83487af0 => 'updateChatUserTyping',
|
|
1115
|
-
0x83557dba => 'messages.editInlineBotMessage',
|
|
1116
1226
|
0x83d60fc2 => 'messageReplies',
|
|
1117
1227
|
0x840649cf => 'inputPrivacyValueAllowChatParticipants',
|
|
1118
1228
|
0x846f9e42 => 'channels.sponsoredMessageReportResultChooseOption',
|
|
@@ -1130,6 +1240,7 @@ module MTProto
|
|
|
1130
1240
|
0x857ebdb8 => 'messages.getPreparedInlineMessage',
|
|
1131
1241
|
0x85dd99d1 => 'replyKeyboardMarkup',
|
|
1132
1242
|
0x85e42301 => 'phoneCallDiscardReasonMissed',
|
|
1243
|
+
0x85f0a9cd => 'starGiftUnique',
|
|
1133
1244
|
0x85fea03f => 'stickers.suggestedShortName',
|
|
1134
1245
|
0x861cc8a0 => 'inputStickerSetShortName',
|
|
1135
1246
|
0x86471d92 => 'securePasswordKdfAlgoSHA512',
|
|
@@ -1138,7 +1249,7 @@ module MTProto
|
|
|
1138
1249
|
0x86872538 => 'inputMessagePinned',
|
|
1139
1250
|
0x868a2aa5 => 'secureValueErrorReverseSide',
|
|
1140
1251
|
0x869d758f => 'secureValueError',
|
|
1141
|
-
|
|
1252
|
+
0x86a0765d => 'account.deleteWebBrowserSettingsExceptions',
|
|
1142
1253
|
0x86b40b08 => 'replyKeyboardForceReply',
|
|
1143
1254
|
0x86f8613c => 'premium.boostsList',
|
|
1144
1255
|
0x86fccf85 => 'updateMoveStickerSetToTop',
|
|
@@ -1150,7 +1261,9 @@ module MTProto
|
|
|
1150
1261
|
0x87d0759e => 'help.countriesList',
|
|
1151
1262
|
0x87e2f155 => 'messageActionGiveawayResults',
|
|
1152
1263
|
0x87e5dfe4 => 'inputChatThemeUniqueGift',
|
|
1264
|
+
0x87f2219b => 'bots.checkUsername',
|
|
1153
1265
|
0x881fb94b => 'messages.emojiGroups',
|
|
1266
|
+
0x883a4108 => 'inputMediaPoll',
|
|
1154
1267
|
0x8851e68e => 'account.createBusinessChatLink',
|
|
1155
1268
|
0x889b59ef => 'messages.savedReactionTagsNotModified',
|
|
1156
1269
|
0x88bf9319 => 'inputBotInlineResult',
|
|
@@ -1161,10 +1274,12 @@ module MTProto
|
|
|
1161
1274
|
0x89137c0d => 'secureValueTypeBankStatement',
|
|
1162
1275
|
0x8935fc73 => 'reactionCustomEmoji',
|
|
1163
1276
|
0x89419521 => 'chatlists.getChatlistUpdates',
|
|
1277
|
+
0x894cc99c => 'messages.requestUrlAuth',
|
|
1164
1278
|
0x8951abef => 'updateNewAuthorization',
|
|
1165
1279
|
0x8953ad37 => 'inputChatPhoto',
|
|
1166
1280
|
0x8999602d => 'messages.clearRecentStickers',
|
|
1167
1281
|
0x899fe31d => 'account.saveSecureValue',
|
|
1282
|
+
0x89c590f9 => 'keyboardButtonGame',
|
|
1168
1283
|
0x89fdd778 => 'inputMediaStory',
|
|
1169
1284
|
0x8a2932f3 => 'payments.starGiftCollections',
|
|
1170
1285
|
0x8a480e27 => 'postInteractionCountersStory',
|
|
@@ -1184,12 +1299,12 @@ module MTProto
|
|
|
1184
1299
|
0x8ba403e4 => 'requestedPeerChannel',
|
|
1185
1300
|
0x8bba90e6 => 'messages.getMessagesReactions',
|
|
1186
1301
|
0x8c05f1c9 => 'help.supportName',
|
|
1302
|
+
0x8c0f91fb => 'updateAiComposeTones',
|
|
1187
1303
|
0x8c10603f => 'inputGroupCallInviteMessage',
|
|
1188
1304
|
0x8c3410af => 'account.editBusinessChatLink',
|
|
1189
1305
|
0x8c4bfe5d => 'messages.getOutboxReadDate',
|
|
1190
1306
|
0x8c5006f8 => 'messages.markDialogUnread',
|
|
1191
1307
|
0x8c5adfd9 => 'chatInviteImporter',
|
|
1192
|
-
0x8c718e87 => 'messages.messages',
|
|
1193
1308
|
0x8c79b63c => 'messagePeerReaction',
|
|
1194
1309
|
0x8c7f65e2 => 'botInlineMessageText',
|
|
1195
1310
|
0x8c88c923 => 'updateChannelUserTyping',
|
|
@@ -1217,16 +1332,20 @@ module MTProto
|
|
|
1217
1332
|
0x8f079643 => 'channelAdminLogEventActionStopPoll',
|
|
1218
1333
|
0x8f34b2f5 => 'botBusinessConnection',
|
|
1219
1334
|
0x8f38cd1f => 'channels.editCreator',
|
|
1220
|
-
|
|
1335
|
+
0x8f9e6898 => 'stories.sendStory',
|
|
1221
1336
|
0x8fb53057 => 'phone.joinGroupCall',
|
|
1337
|
+
0x8fb86b41 => 'payments.sendStarGiftOffer',
|
|
1222
1338
|
0x8fd4c4d8 => 'document',
|
|
1223
1339
|
0x8fde504f => 'inputThemeSettings',
|
|
1224
1340
|
0x8fdf1920 => 'account.confirmPasswordEmail',
|
|
1341
|
+
0x8ff2d5f0 => 'pageListOrderedItemBlocks',
|
|
1225
1342
|
0x8ffa9a1f => 'pageBlockSubtitle',
|
|
1226
1343
|
0x8ffacae1 => 'messages.setChatWallPaper',
|
|
1227
1344
|
0x90110467 => 'inputPrivacyValueDisallowUsers',
|
|
1228
1345
|
0x9015e101 => 'updateShortSentMessage',
|
|
1229
1346
|
0x9021ab67 => 'stickers.createStickerSet',
|
|
1347
|
+
0x903bcf59 => 'aicompose.updateTone',
|
|
1348
|
+
0x904ac7c7 => 'messageEntityFormattedDate',
|
|
1230
1349
|
0x904dd49c => 'updateBotChatBoost',
|
|
1231
1350
|
0x9083670b => 'storyViewPublicForward',
|
|
1232
1351
|
0x908c0407 => 'inputBotAppShortName',
|
|
@@ -1234,10 +1353,10 @@ module MTProto
|
|
|
1234
1353
|
0x90a6ca84 => 'messageEmpty',
|
|
1235
1354
|
0x90c467d1 => 'account.emojiStatuses',
|
|
1236
1355
|
0x90c894b5 => 'users.setSecureValueErrors',
|
|
1356
|
+
0x90d7adfa => 'messages.composedMessageWithAI',
|
|
1237
1357
|
0x91006707 => 'channels.createChannel',
|
|
1238
1358
|
0x9156982a => 'upload.getFileHashes',
|
|
1239
1359
|
0x915860ae => 'account.getDefaultGroupPhotoEmojis',
|
|
1240
|
-
0x91b2d060 => 'messages.sendBotRequestedPeer',
|
|
1241
1360
|
0x91cd32a8 => 'photos.getUserPhotos',
|
|
1242
1361
|
0x91dc3f31 => 'upload.getCdnFileHashes',
|
|
1243
1362
|
0x922e55a9 => 'emailVerificationCode',
|
|
@@ -1247,14 +1366,13 @@ module MTProto
|
|
|
1247
1366
|
0x92a72876 => 'messageActionGameScore',
|
|
1248
1367
|
0x92b4494c => 'messages.searchEmojiStickerSets',
|
|
1249
1368
|
0x92ceddd4 => 'messages.createChat',
|
|
1250
|
-
0x92d33a0e => 'urlAuthResultRequest',
|
|
1251
1369
|
0x93037e20 => 'stats.publicForwards',
|
|
1252
1370
|
0x9308ce1b => 'account.resetPassword',
|
|
1253
1371
|
0x9325705a => 'storyAlbum',
|
|
1372
|
+
0x933ca597 => 'webDomainException',
|
|
1254
1373
|
0x9342ca07 => 'messages.getBotCallbackAnswer',
|
|
1255
1374
|
0x9375341e => 'updateSavedGifs',
|
|
1256
1375
|
0x93b31848 => 'messageActionRequestedPeerSentMe',
|
|
1257
|
-
0x93b9fbb5 => 'keyboardButtonSwitchInline',
|
|
1258
1376
|
0x93bd878d => 'chatlists.chatlistUpdates',
|
|
1259
1377
|
0x93bf667f => 'attachMenuBotsBot',
|
|
1260
1378
|
0x93c3e27e => 'availableEffect',
|
|
@@ -1278,33 +1396,35 @@ module MTProto
|
|
|
1278
1396
|
0x96151fed => 'privacyKeyProfilePhoto',
|
|
1279
1397
|
0x96537bd7 => 'dialogFilterChatlist',
|
|
1280
1398
|
0x9664f57f => 'inputMediaEmpty',
|
|
1399
|
+
0x966e2dbf => 'poll',
|
|
1281
1400
|
0x967a462e => 'inputWallPaperNoFile',
|
|
1282
1401
|
0x96929a85 => 'inputBotInlineMessageMediaGeo',
|
|
1283
1402
|
0x96d074fd => 'emailVerificationApple',
|
|
1284
1403
|
0x96e6cd81 => 'channels.editBanned',
|
|
1285
|
-
0x96eaa5eb => 'draftMessage',
|
|
1286
1404
|
0x970708cc => 'help.timezonesListNotModified',
|
|
1287
1405
|
0x9709b1c2 => 'bots.reorderUsernames',
|
|
1288
1406
|
0x971fa843 => 'inputMediaGeoLive',
|
|
1407
|
+
0x972dabbf => 'starGiftAuctionStateFinished',
|
|
1289
1408
|
0x973478b6 => 'contacts.getTopPeers',
|
|
1290
1409
|
0x9738bb15 => 'channels.toggleViewForumAsMessages',
|
|
1291
|
-
|
|
1292
|
-
0x97d64341 => 'updateGroupCall',
|
|
1410
|
+
0x974392f2 => 'phone.toggleGroupCallSettings',
|
|
1293
1411
|
0x97e8bebe => 'notificationSoundDefault',
|
|
1294
1412
|
0x9801d2f7 => 'documentAttributeHasStickers',
|
|
1295
|
-
0x9815cec8 => 'message',
|
|
1296
1413
|
0x981b91dd => 'payments.getStarGiftCollections',
|
|
1297
1414
|
0x9852f9c6 => 'documentAttributeAudio',
|
|
1415
|
+
0x9857ad07 => 'auth.finishPasskeyLogin',
|
|
1298
1416
|
0x985d3abb => 'updateChannelParticipant',
|
|
1417
|
+
0x98613ebf => 'passkey',
|
|
1299
1418
|
0x98657f0d => 'page',
|
|
1300
1419
|
0x9880f658 => 'inputCheckPasswordEmpty',
|
|
1301
1420
|
0x98986c0d => 'inputInvoicePremiumGiftCode',
|
|
1302
1421
|
0x9898ad73 => 'smsjobs.leave',
|
|
1422
|
+
0x98a3a840 => 'joinChatBotResultQueued',
|
|
1303
1423
|
0x98d5ea1d => 'payments.connectedStarRefBots',
|
|
1304
|
-
0x98dd8936 => 'pageListOrderedItemBlocks',
|
|
1305
1424
|
0x98e037bb => 'account.sendVerifyEmailCode',
|
|
1306
1425
|
0x98e0d697 => 'messageActionGeoProximityReached',
|
|
1307
1426
|
0x98f6ac75 => 'help.promoDataEmpty',
|
|
1427
|
+
0x991399fc => 'keyboardButtonSwitchInline',
|
|
1308
1428
|
0x99622c0c => 'peerNotifySettings',
|
|
1309
1429
|
0x997275b5 => 'boolTrue',
|
|
1310
1430
|
0x998ab009 => 'messages.getSavedHistory',
|
|
@@ -1312,6 +1432,7 @@ module MTProto
|
|
|
1312
1432
|
0x99a48f23 => 'secureValueTypeInternalPassport',
|
|
1313
1433
|
0x99c1d49d => 'jsonObject',
|
|
1314
1434
|
0x99e3806a => 'secureValueTypePassportRegistration',
|
|
1435
|
+
0x99ea331d => 'starGiftUpgradePrice',
|
|
1315
1436
|
0x9a0b48b8 => 'inputInvoiceStarGiftPrepaidUpgrade',
|
|
1316
1437
|
0x9a23af21 => 'account.resolvedBusinessChatLinks',
|
|
1317
1438
|
0x9a35e999 => 'peerStories',
|
|
@@ -1321,39 +1442,45 @@ module MTProto
|
|
|
1321
1442
|
0x9a5c33e5 => 'account.passwordSettings',
|
|
1322
1443
|
0x9a75a1ef => 'stories.togglePinned',
|
|
1323
1444
|
0x9a868f80 => 'contacts.getBlocked',
|
|
1324
|
-
|
|
1445
|
+
0x9a98ad68 => 'channels.editAdmin',
|
|
1325
1446
|
0x9a9d77e0 => 'prepaidStarsGiveaway',
|
|
1326
1447
|
0x9ab0feaf => 'channels.channelParticipants',
|
|
1448
|
+
0x9adf82fe => 'account.updateWebBrowserSettings',
|
|
1327
1449
|
0x9ae228e2 => 'premium.myBoosts',
|
|
1328
1450
|
0x9ae91519 => 'channels.restrictSponsoredMessages',
|
|
1451
|
+
0x9b00622b => 'inputRichFilePhoto',
|
|
1329
1452
|
0x9b2754a8 => 'upload.reuploadCdnFile',
|
|
1330
1453
|
0x9b5ae7f9 => 'stories.getAllReadPeerStories',
|
|
1331
1454
|
0x9b69e34b => 'messageEntityPhone',
|
|
1332
1455
|
0x9b89f93a => 'inputReportReasonCopyright',
|
|
1333
1456
|
0x9b9240a6 => 'updateBotWebhookJSONQuery',
|
|
1334
1457
|
0x9baa9647 => 'channels.deleteHistory',
|
|
1335
|
-
|
|
1458
|
+
0x9bad6414 => 'aiComposeToneDefault',
|
|
1336
1459
|
0x9bed434d => 'inputWebDocument',
|
|
1337
1460
|
0x9bf8bb95 => 'textStrike',
|
|
1338
1461
|
0x9c4e7e8b => 'messageEntityUnderline',
|
|
1339
1462
|
0x9c60eb28 => 'bots.getBotMenuButton',
|
|
1340
1463
|
0x9c7f2f10 => 'messages.getSearchResultsPositions',
|
|
1341
|
-
0x9c974fdf => 'updateReadHistoryInbox',
|
|
1342
1464
|
0x9c9abcb1 => 'payments.getStarGiftUpgradePreview',
|
|
1343
1465
|
0x9cc123c7 => 'phoneConnection',
|
|
1344
1466
|
0x9cd4eaf9 => 'account.getPasswordSettings',
|
|
1345
1467
|
0x9cd81144 => 'messages.chatsSlice',
|
|
1346
1468
|
0x9cdf08cd => 'help.getSupport',
|
|
1347
1469
|
0x9d04af9b => 'statsGroupTopPoster',
|
|
1470
|
+
0x9d1dbd26 => 'phone.groupCallStars',
|
|
1471
|
+
0x9d2216e0 => 'updateGroupCall',
|
|
1348
1472
|
0x9d2a81e3 => 'secureValueTypePersonalDetails',
|
|
1473
|
+
0x9d2eac97 => 'textMath',
|
|
1349
1474
|
0x9d6b13b0 => 'starGiftCollection',
|
|
1350
1475
|
0x9d84f3db => 'inputStickerSetThumb',
|
|
1476
|
+
0x9da1cd6c => 'messageActionPollAppendAnswer',
|
|
1351
1477
|
0x9da9403b => 'messages.getRecentStickers',
|
|
1352
1478
|
0x9ddb347c => 'updateBotNewBusinessMessage',
|
|
1353
1479
|
0x9de7a269 => 'inputStickerSetID',
|
|
1354
1480
|
0x9dfeefb4 => 'messages.clearRecentReactions',
|
|
1355
1481
|
0x9e6b131a => 'account.updateBusinessLocation',
|
|
1356
1482
|
0x9e727aad => 'phone.groupCall',
|
|
1483
|
+
0x9e84bc99 => 'updateReadHistoryInbox',
|
|
1357
1484
|
0x9e8fa6d3 => 'messages.favedStickersNotModified',
|
|
1358
1485
|
0x9eb51445 => 'messages.setDefaultHistoryTTL',
|
|
1359
1486
|
0x9ec20908 => 'new_session_created',
|
|
@@ -1364,6 +1491,7 @@ module MTProto
|
|
|
1364
1491
|
0x9f07c728 => 'account.getContactSignUpNotification',
|
|
1365
1492
|
0x9f120418 => 'chatBannedRights',
|
|
1366
1493
|
0x9f2221c9 => 'inputWebFileGeoPointLocation',
|
|
1494
|
+
0x9f2504e4 => 'starGiftAttributeBackdrop',
|
|
1367
1495
|
0x9f27d26e => 'profileTabMusic',
|
|
1368
1496
|
0x9f812b08 => 'updateMonoForumNoPaidException',
|
|
1369
1497
|
0x9f84f49e => 'messageMediaUnsupported',
|
|
@@ -1375,14 +1503,15 @@ module MTProto
|
|
|
1375
1503
|
0x9fd40bd8 => 'notifyPeer',
|
|
1376
1504
|
0xa0058751 => 'payments.paymentForm',
|
|
1377
1505
|
0xa00e67d6 => 'theme',
|
|
1506
|
+
0xa00f32b0 => 'messages.editChatParticipantRank',
|
|
1378
1507
|
0xa02a982e => 'updateBotDeleteBusinessMessage',
|
|
1379
1508
|
0xa03e5b85 => 'replyKeyboardHide',
|
|
1509
|
+
0xa04e8d3a => 'channelFull',
|
|
1380
1510
|
0xa0624cf7 => 'businessBotRights',
|
|
1381
|
-
0xa0933f5b => 'chatParticipantAdmin',
|
|
1382
1511
|
0xa098d6af => 'help.passportConfig',
|
|
1383
1512
|
0xa0ab6cc6 => 'channels.getParticipant',
|
|
1513
|
+
0xa0b80cf8 => 'messages.deleteParticipantReactions',
|
|
1384
1514
|
0xa0ba4f17 => 'payments.starGiftCollectionsNotModified',
|
|
1385
|
-
0xa0c0505c => 'keyboardButtonSimpleWebView',
|
|
1386
1515
|
0xa0d0744b => 'secureValueTypeIdentityCard',
|
|
1387
1516
|
0xa0f4cb4f => 'messages.getDialogs',
|
|
1388
1517
|
0xa1144770 => 'secureValueErrorTranslationFile',
|
|
@@ -1395,6 +1524,7 @@ module MTProto
|
|
|
1395
1524
|
0xa229dd06 => 'updateConfig',
|
|
1396
1525
|
0xa22cbd96 => 'chatInviteExported',
|
|
1397
1526
|
0xa24de717 => 'messages.checkedHistoryImportPeer',
|
|
1527
|
+
0xa26156c0 => 'textCustomEmoji',
|
|
1398
1528
|
0xa26a7fa5 => 'account.updateBusinessAwayMessage',
|
|
1399
1529
|
0xa2875319 => 'messages.migrateChat',
|
|
1400
1530
|
0xa29cd42c => 'messages.getSuggestedDialogFilters',
|
|
@@ -1403,8 +1533,8 @@ module MTProto
|
|
|
1403
1533
|
0xa2b5a3f6 => 'messages.getExportedChatInvites',
|
|
1404
1534
|
0xa2c0cf74 => 'account.deleteAccount',
|
|
1405
1535
|
0xa2c0f695 => 'profileTabGifs',
|
|
1536
|
+
0xa2cb24f9 => 'sendMessageRichMessageDraftAction',
|
|
1406
1537
|
0xa2e214a4 => 'inputCollectiblePhone',
|
|
1407
|
-
0xa2fa4880 => 'keyboardButton',
|
|
1408
1538
|
0xa319e569 => 'payments.getSavedStarGifts',
|
|
1409
1539
|
0xa36396e5 => 'stories.createAlbum',
|
|
1410
1540
|
0xa384b779 => 'receivedNotifyMessage',
|
|
@@ -1412,6 +1542,7 @@ module MTProto
|
|
|
1412
1542
|
0xa3b54985 => 'channelParticipantsKicked',
|
|
1413
1543
|
0xa3d1cb80 => 'reactionCount',
|
|
1414
1544
|
0xa416ac81 => 'auth.sentCodeTypeSmsWord',
|
|
1545
|
+
0xa423bb51 => 'messages.editInlineBotMessage',
|
|
1415
1546
|
0xa437c3ed => 'wallPaper',
|
|
1416
1547
|
0xa43ad8b7 => 'rpc_answer_dropped',
|
|
1417
1548
|
0xa43f30cc => 'messageActionChatDeleteUser',
|
|
@@ -1433,7 +1564,10 @@ module MTProto
|
|
|
1433
1564
|
0xa5866b41 => 'messages.editChatDefaultBannedRights',
|
|
1434
1565
|
0xa59b102f => 'account.updatePasswordSettings',
|
|
1435
1566
|
0xa5a356f9 => 'account.sendVerifyPhoneCode',
|
|
1567
|
+
0xa5b45e2b => 'textDate',
|
|
1568
|
+
0xa5d0514d => 'payments.getStarGiftActiveAuctions',
|
|
1436
1569
|
0xa5d72105 => 'updateDialogFilterOrder',
|
|
1570
|
+
0xa5eec345 => 'messages.translateText',
|
|
1437
1571
|
0xa60ab9ce => 'account.getDefaultBackgroundEmojis',
|
|
1438
1572
|
0xa614d034 => 'account.updateBusinessIntro',
|
|
1439
1573
|
0xa6341782 => 'messages.discussionMessage',
|
|
@@ -1465,12 +1599,14 @@ module MTProto
|
|
|
1465
1599
|
0xa920bd7a => 'inputBotAppID',
|
|
1466
1600
|
0xa927fec5 => 'messages.inactiveChats',
|
|
1467
1601
|
0xa929597a => 'account.getAuthorizationForm',
|
|
1602
|
+
0xa9478a1a => 'channelParticipantSelf',
|
|
1468
1603
|
0xa99fca4f => 'upload.cdnFile',
|
|
1469
1604
|
0xa9d6db1f => 'urlAuthResultDefault',
|
|
1470
1605
|
0xa9f55f95 => 'p_q_inner_data_dc',
|
|
1471
1606
|
0xaa073beb => 'messageMediaGiveaway',
|
|
1472
1607
|
0xaa0cd9e4 => 'sendMessageUploadDocumentAction',
|
|
1473
1608
|
0xaa2769ed => 'bots.sendCustomRequest',
|
|
1609
|
+
0xaa40f94d => 'keyboardButtonRequestGeoLocation',
|
|
1474
1610
|
0xaa472651 => 'dialogFilter',
|
|
1475
1611
|
0xaa5f789c => 'stories.storyReactionsList',
|
|
1476
1612
|
0xaa963b05 => 'storage.fileUnknown',
|
|
@@ -1481,17 +1617,21 @@ module MTProto
|
|
|
1481
1617
|
0xab42441a => 'stats.getBroadcastStats',
|
|
1482
1618
|
0xab661b5b => 'topPeerCategoryBotsPM',
|
|
1483
1619
|
0xab7ec0a0 => 'encryptedChatEmpty',
|
|
1620
|
+
0xabbbd346 => 'messages.summarizeText',
|
|
1484
1621
|
0xabcfa9fd => 'help.getPeerProfileColors',
|
|
1622
|
+
0xabd59201 => 'aicompose.getTones',
|
|
1623
|
+
0xac072444 => 'updateStarGiftCraftFail',
|
|
1485
1624
|
0xac1f1fcd => 'messageActionPaidMessagesRefunded',
|
|
1486
1625
|
0xac21d3ce => 'updateBotMessageReaction',
|
|
1487
|
-
0xac55d9c1 => 'messages.sendMedia',
|
|
1488
1626
|
0xac5c1af7 => 'businessLocation',
|
|
1627
|
+
0xac6a83aa => 'textAutoUrl',
|
|
1489
1628
|
0xac806d61 => 'stories.getAlbumStories',
|
|
1490
1629
|
0xac81bbde => 'messages.toggleSavedDialogPin',
|
|
1491
|
-
|
|
1630
|
+
0xac8505a5 => 'messages.deletePollAnswer',
|
|
1492
1631
|
0xaca9fd2e => 'invokeWithTakeout',
|
|
1493
1632
|
0xacfa1a7e => 'inputMessageCallbackQuery',
|
|
1494
1633
|
0xad01d61d => 'authorization',
|
|
1634
|
+
0xad0fa15c => 'messages.saveDraft',
|
|
1495
1635
|
0xad253d78 => 'codeSettings',
|
|
1496
1636
|
0xad2e1cd8 => 'account.authorizationForm',
|
|
1497
1637
|
0xad399cee => 'channels.setBoostsToUnblockRestrictions',
|
|
@@ -1503,6 +1643,7 @@ module MTProto
|
|
|
1503
1643
|
0xadcbbcda => 'account.getAutoSaveSettings',
|
|
1504
1644
|
0xadec6ebe => 'help.peerColorOption',
|
|
1505
1645
|
0xadf44ee3 => 'inputReportReasonChildAbuse',
|
|
1646
|
+
0xae152a69 => 'joinChatBotResultApproved',
|
|
1506
1647
|
0xae168909 => 'channelAdminLogEventActionDeleteTopic',
|
|
1507
1648
|
0xae1e508d => 'storage.filePdf',
|
|
1508
1649
|
0xae3f101d => 'updatePeerWallpaper',
|
|
@@ -1514,13 +1655,16 @@ module MTProto
|
|
|
1514
1655
|
0xaed6dbb2 => 'maskCoords',
|
|
1515
1656
|
0xaed6e4f5 => 'payments.upgradeStarGift',
|
|
1516
1657
|
0xaee69d68 => 'inputPrivacyKeyVoiceMessages',
|
|
1658
|
+
0xaef6abbc => 'payments.starGiftActiveAuctions',
|
|
1659
|
+
0xaf0a4a08 => 'messages.getForumTopicsByID',
|
|
1517
1660
|
0xafb6144a => 'channelAdminLogEventActionParticipantJoinByRequest',
|
|
1518
|
-
0xafd93fbb => 'keyboardButtonBuy',
|
|
1519
1661
|
0xafe5623f => 'phone.joinAsPeers',
|
|
1662
|
+
0xaff56398 => 'starGiftBackground',
|
|
1520
1663
|
0xb00c47a2 => 'messageActionPrizeStars',
|
|
1521
1664
|
0xb05ac6b1 => 'sendMessageChooseStickerAction',
|
|
1522
1665
|
0xb06fdbdf => 'messages.reactionsNotModified',
|
|
1523
1666
|
0xb0711d83 => 'bots.getAdminedBots',
|
|
1667
|
+
0xb07ed085 => 'messageActionNewCreatorPending',
|
|
1524
1668
|
0xb0831eb9 => 'channels.getForumTopicsByID',
|
|
1525
1669
|
0xb08f922a => 'messages.deleteHistory',
|
|
1526
1670
|
0xb0bdeac5 => 'storyView',
|
|
@@ -1528,13 +1672,15 @@ module MTProto
|
|
|
1528
1672
|
0xb0d13e47 => 'webPagePending',
|
|
1529
1673
|
0xb0d1865b => 'channelParticipantsBots',
|
|
1530
1674
|
0xb0d81a83 => 'messages.prolongWebView',
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
0xb16a6c29 => 'keyboardButtonRequestPhone',
|
|
1675
|
+
0xb0f9684f => 'payments.craftStarGift',
|
|
1676
|
+
0xb106e66c => 'messages.editMessage',
|
|
1534
1677
|
0xb1c3caa7 => 'channelAdminLogEventActionChangeStickerSet',
|
|
1678
|
+
0xb1d11410 => 'phone.sendGroupCallMessage',
|
|
1535
1679
|
0xb1db7c7e => 'inputNotifyBroadcasts',
|
|
1536
1680
|
0xb1f2061f => 'messages.getDocumentByHash',
|
|
1537
1681
|
0xb2028afb => 'stories.incrementStoryViews',
|
|
1682
|
+
0xb2081a35 => 'messages.toggleNoForwards',
|
|
1683
|
+
0xb22083a6 => 'updateNewBotConnection',
|
|
1538
1684
|
0xb23fc698 => 'updateChannelAvailableMessages',
|
|
1539
1685
|
0xb2539d54 => 'prepaidGiveaway',
|
|
1540
1686
|
0xb26732a9 => 'account.saveMusic',
|
|
@@ -1544,13 +1690,13 @@ module MTProto
|
|
|
1544
1690
|
0xb2a7386b => 'attachMenuBotIcon',
|
|
1545
1691
|
0xb2cbc1c0 => 'phone.discardCall',
|
|
1546
1692
|
0xb2da71d2 => 'recentMeUrlChat',
|
|
1693
|
+
0xb2e8ba03 => 'aicompose.getTone',
|
|
1547
1694
|
0xb304a621 => 'upload.saveFilePart',
|
|
1548
1695
|
0xb3134d9d => 'contacts.found',
|
|
1549
1696
|
0xb320aadb => 'secureValueTypePhone',
|
|
1550
1697
|
0xb37794af => 'auth.sentCodeTypeSmsPhrase',
|
|
1551
1698
|
0xb390dc08 => 'pageRelatedArticle',
|
|
1552
1699
|
0xb3a07661 => 'messageActionGroupCallScheduled',
|
|
1553
|
-
0xb3ba0635 => 'inputMediaPhoto',
|
|
1554
1700
|
0xb3cea0e4 => 'storage.fileMp4',
|
|
1555
1701
|
0xb3fb5361 => 'emojiLanguage',
|
|
1556
1702
|
0xb4073647 => 'username',
|
|
@@ -1558,6 +1704,7 @@ module MTProto
|
|
|
1558
1704
|
0xb434e2b8 => 'auth.exportedAuthorization',
|
|
1559
1705
|
0xb4352016 => 'stories.getStoriesArchive',
|
|
1560
1706
|
0xb43df344 => 'messages.startHistoryImport',
|
|
1707
|
+
0xb43df56c => 'inputBotInlineMessageRichMessage',
|
|
1561
1708
|
0xb455a106 => 'payments.getSavedStarGift',
|
|
1562
1709
|
0xb457b375 => 'starsTransactionPeerAppStore',
|
|
1563
1710
|
0xb45c69d1 => 'messages.affectedHistory',
|
|
@@ -1572,12 +1719,12 @@ module MTProto
|
|
|
1572
1719
|
0xb4f67e93 => 'requirementToContactPaidMessages',
|
|
1573
1720
|
0xb5052fea => 'messages.toggleStickerSets',
|
|
1574
1721
|
0xb52c939d => 'contacts.topPeersDisabled',
|
|
1722
|
+
0xb532772b => 'pageBlockHeading4',
|
|
1575
1723
|
0xb549da53 => 'inputMessagesFilterRoundVideo',
|
|
1576
1724
|
0xb54b5acf => 'peerColor',
|
|
1577
1725
|
0xb550d328 => 'contacts.unblock',
|
|
1578
1726
|
0xb57295d5 => 'inlineBotWebView',
|
|
1579
1727
|
0xb574b16b => 'account.setContentSettings',
|
|
1580
|
-
0xb583ba46 => 'stories.editStory',
|
|
1581
1728
|
0xb5890dba => 'server_DH_inner_data',
|
|
1582
1729
|
0xb59cf977 => 'phone.checkGroupCall',
|
|
1583
1730
|
0xb5a1ce5a => 'messageActionChatEditTitle',
|
|
@@ -1615,26 +1762,32 @@ module MTProto
|
|
|
1615
1762
|
0xb8a0a1a8 => 'messages.getAllStickers',
|
|
1616
1763
|
0xb8bc5b0c => 'inputNotifyPeer',
|
|
1617
1764
|
0xb8d0afdf => 'accountDaysTTL',
|
|
1765
|
+
0xb8ea86a9 => 'inputPeerColorCollectible',
|
|
1766
|
+
0xb8f106e3 => 'messages.setBotGuestChatResult',
|
|
1618
1767
|
0xb91bbd3a => 'messageActionSetChatTheme',
|
|
1619
1768
|
0xb921bd04 => 'get_future_salts',
|
|
1620
1769
|
0xb92c09e2 => 'recentMeUrlUser',
|
|
1621
|
-
0xb92fb6cd => 'pageListItemText',
|
|
1622
1770
|
0xb940c666 => 'messageMediaGeoLive',
|
|
1771
|
+
0xb956812d => 'textBankCard',
|
|
1623
1772
|
0xb98886cf => 'inputUserEmpty',
|
|
1624
1773
|
0xb98cd696 => 'profileTabPosts',
|
|
1625
1774
|
0xb9aa606a => 'botCommandScopeChatAdmins',
|
|
1626
1775
|
0xb9b2881f => 'stories.getStoryReactionsList',
|
|
1776
|
+
0xb9c0639a => 'peerColorCollectible',
|
|
1627
1777
|
0xb9cdc5ee => 'messages.getFactCheck',
|
|
1628
1778
|
0xb9cfc48d => 'updateBotCallbackQuery',
|
|
1629
1779
|
0xb9d9a38d => 'account.toggleSponsoredMessages',
|
|
1630
1780
|
0xb9ffc55b => 'messages.faveSticker',
|
|
1631
1781
|
0xba4a3b5b => 'messages.readSavedHistory',
|
|
1632
1782
|
0xba6705f0 => 'contacts.editCloseFriends',
|
|
1783
|
+
0xba7bb15e => 'pollResults',
|
|
1633
1784
|
0xbaa57628 => 'autoDownloadSettings',
|
|
1634
1785
|
0xbaafe5e0 => 'pageBlockAuthorDate',
|
|
1635
1786
|
0xbac3a61a => 'reactionNotificationsFromContacts',
|
|
1636
1787
|
0xbad07584 => 'inputDocumentFileLocation',
|
|
1637
1788
|
0xbad88395 => 'inputMessageReplyTo',
|
|
1789
|
+
0xbaf39d8b => 'richMessage',
|
|
1790
|
+
0xbaff072f => 'pageBlockHeading1',
|
|
1638
1791
|
0xbb12a419 => 'messages.setInlineBotResults',
|
|
1639
1792
|
0xbb3b9804 => 'account.resetWallPapers',
|
|
1640
1793
|
0xbb6ae88d => 'channelParticipantsContacts',
|
|
@@ -1643,14 +1796,15 @@ module MTProto
|
|
|
1643
1796
|
0xbb9bb9a5 => 'updatePeerHistoryTTL',
|
|
1644
1797
|
0xbbab2643 => 'storyReactionPublicForward',
|
|
1645
1798
|
0xbbb6b4a3 => 'starsAmount',
|
|
1646
|
-
0xbbc7515d => 'keyboardButtonRequestPoll',
|
|
1647
1799
|
0xbbf2dda0 => 'securePasswordKdfAlgoPBKDF2HMACSHA512iter100000',
|
|
1648
1800
|
0xbbf51685 => 'emailVerifyPurposePassport',
|
|
1649
1801
|
0xbc0a57dc => 'recentMeUrlStickerSet',
|
|
1650
1802
|
0xbc2eab30 => 'privacyKeyStatusTimestamp',
|
|
1651
1803
|
0xbc799737 => 'boolFalse',
|
|
1804
|
+
0xbcc4af10 => 'keyboardButtonCopy',
|
|
1652
1805
|
0xbcf22685 => 'phone.inviteConferenceCallParticipant',
|
|
1653
1806
|
0xbd0415c4 => 'stories.togglePeerStoriesHidden',
|
|
1807
|
+
0xbd0d99eb => 'bots.exportBotToken',
|
|
1654
1808
|
0xbd17a14a => 'topPeerCategoryGroups',
|
|
1655
1809
|
0xbd1efd3e => 'payments.getStarsGiveawayOptions',
|
|
1656
1810
|
0xbd2a0840 => 'inputPeerChannelFromMessage',
|
|
@@ -1659,7 +1813,9 @@ module MTProto
|
|
|
1659
1813
|
0xbd610bc9 => 'messageEntityBold',
|
|
1660
1814
|
0xbd74cf49 => 'storyViewPublicRepost',
|
|
1661
1815
|
0xbd7f90ac => 'messages.getUnreadReactions',
|
|
1816
|
+
0xbd8367b9 => 'updateChatParticipantRank',
|
|
1662
1817
|
0xbd87cb6c => 'savedDialog',
|
|
1818
|
+
0xbdac7e70 => 'updateJoinChatWebViewDecision',
|
|
1663
1819
|
0xbdbb0464 => 'messages.getScheduledMessages',
|
|
1664
1820
|
0xbdc597b4 => 'inputPrivacyKeyNoPaidMessages',
|
|
1665
1821
|
0xbdc62dcc => 'messages.exportedChatInvites',
|
|
@@ -1670,6 +1826,7 @@ module MTProto
|
|
|
1670
1826
|
0xbdf93428 => 'messages.getDefaultTagReactions',
|
|
1671
1827
|
0xbdf9653b => 'game',
|
|
1672
1828
|
0xbdfb0426 => 'inputPrivacyKeyChatInvite',
|
|
1829
|
+
0xbe098173 => 'account.chatThemes',
|
|
1673
1830
|
0xbe1e85ba => 'fragment.getCollectibleInfo',
|
|
1674
1831
|
0xbe382906 => 'messages.featuredStickers',
|
|
1675
1832
|
0xbe4e0ef8 => 'channelAdminLogEventActionChangeAvailableReactions',
|
|
@@ -1679,7 +1836,9 @@ module MTProto
|
|
|
1679
1836
|
0xbec268ef => 'updateNotifySettings',
|
|
1680
1837
|
0xbedc9822 => 'statsGraphError',
|
|
1681
1838
|
0xbf0693d4 => 'messageEntityStrike',
|
|
1839
|
+
0xbf25b7f3 => 'bots.getRequestedWebViewButton',
|
|
1682
1840
|
0xbf4dea82 => 'pageBlockTable',
|
|
1841
|
+
0xbf7d6572 => 'messageActionNoForwardsToggle',
|
|
1683
1842
|
0xbf899aa0 => 'account.setAuthorizationTTL',
|
|
1684
1843
|
0xbf9459b7 => 'invokeWithoutUpdates',
|
|
1685
1844
|
0xbfb5ad8b => 'channelLocationEmpty',
|
|
@@ -1689,9 +1848,7 @@ module MTProto
|
|
|
1689
1848
|
0xc007cec3 => 'notifyChats',
|
|
1690
1849
|
0xc00ec7d3 => 'payments.getStarsTopupOptions',
|
|
1691
1850
|
0xc0111fe3 => 'channels.deleteChannel',
|
|
1692
|
-
0xc01e857f => 'updateUserTyping',
|
|
1693
1851
|
0xc01f6fe8 => 'messages.savedDialogsNotModified',
|
|
1694
|
-
0xc02d4007 => 'chatParticipant',
|
|
1695
1852
|
0xc070d93e => 'pageBlockPreformatted',
|
|
1696
1853
|
0xc077ec01 => 'availableReaction',
|
|
1697
1854
|
0xc0944820 => 'messageActionTopicEdit',
|
|
@@ -1700,6 +1857,7 @@ module MTProto
|
|
|
1700
1857
|
0xc0cf7646 => 'messages.sendInlineBotResult',
|
|
1701
1858
|
0xc0de1bd9 => 'jsonObjectValue',
|
|
1702
1859
|
0xc0e24635 => 'messages.dhConfigNotModified',
|
|
1860
|
+
0xc0fd5d09 => 'keyboardButtonUserProfile',
|
|
1703
1861
|
0xc10eb2cf => 'inputPaymentCredentialsSaved',
|
|
1704
1862
|
0xc12622c4 => 'textUnderline',
|
|
1705
1863
|
0xc13d1c11 => 'inputMediaVenue',
|
|
@@ -1708,6 +1866,7 @@ module MTProto
|
|
|
1708
1866
|
0xc1cd5ea9 => 'initConnection',
|
|
1709
1867
|
0xc1e4a2b1 => 'inputReportReasonOther',
|
|
1710
1868
|
0xc1e92cc5 => 'account.savedRingtones',
|
|
1869
|
+
0xc1f46103 => 'aicompose.tonesNotModified',
|
|
1711
1870
|
0xc1f8e69a => 'inputMessagesFilterMyMentions',
|
|
1712
1871
|
0xc21b8849 => 'inputMediaWebPage',
|
|
1713
1872
|
0xc21f497e => 'encryptedFileEmpty',
|
|
@@ -1715,6 +1874,9 @@ module MTProto
|
|
|
1715
1874
|
0xc239d686 => 'inputWebFileLocation',
|
|
1716
1875
|
0xc2510192 => 'bots.getPopularAppBots',
|
|
1717
1876
|
0xc27ac8c7 => 'botCommand',
|
|
1877
|
+
0xc27dfa68 => 'stats.getPollStats',
|
|
1878
|
+
0xc31c8f4e => 'account.webBrowserSettingsNotModified',
|
|
1879
|
+
0xc31fc14a => 'inputPasskeyResponseLogin',
|
|
1718
1880
|
0xc326caef => 'inputInvoiceSlug',
|
|
1719
1881
|
0xc32af4cc => 'payments.reorderStarGiftCollections',
|
|
1720
1882
|
0xc32bfa1a => 'attachMenuPeerTypeBotPM',
|
|
@@ -1723,6 +1885,7 @@ module MTProto
|
|
|
1723
1885
|
0xc3878e23 => 'help.country',
|
|
1724
1886
|
0xc387c04e => 'stories.canSendStoryCount',
|
|
1725
1887
|
0xc3987a3a => 'stories.albums',
|
|
1888
|
+
0xc39a2ade => 'updateWebBrowserSettings',
|
|
1726
1889
|
0xc39f5324 => 'inputInvoiceStarGiftResale',
|
|
1727
1890
|
0xc3a12462 => 'baseThemeClassic',
|
|
1728
1891
|
0xc3a2835f => 'auth.loggedOut',
|
|
@@ -1741,9 +1904,9 @@ module MTProto
|
|
|
1741
1904
|
0xc516d679 => 'messageActionBotAllowed',
|
|
1742
1905
|
0xc517f77e => 'channelAdminLogEventActionToggleAutotranslation',
|
|
1743
1906
|
0xc5226f17 => 'phoneCallWaiting',
|
|
1907
|
+
0xc556a45d => 'textAutoEmail',
|
|
1744
1908
|
0xc558d8ab => 'phone.getGroupParticipants',
|
|
1745
1909
|
0xc563c1e4 => 'messages.updateDialogFiltersOrder',
|
|
1746
|
-
0xc577b5ad => 'userFull',
|
|
1747
1910
|
0xc5b56859 => 'inputInvoiceMessage',
|
|
1748
1911
|
0xc5ba3d86 => 'account.reportPeer',
|
|
1749
1912
|
0xc624b16e => 'messageActionPaymentSent',
|
|
@@ -1751,6 +1914,7 @@ module MTProto
|
|
|
1751
1914
|
0xc6701900 => 'phone.sendConferenceCallBroadcast',
|
|
1752
1915
|
0xc68d6695 => 'messages.quickReplies',
|
|
1753
1916
|
0xc69708d3 => 'sponsoredPeer',
|
|
1917
|
+
0xc6c1e5a7 => 'messageEntityDiffReplace',
|
|
1754
1918
|
0xc6dc0c66 => 'messages.featuredStickersNotModified',
|
|
1755
1919
|
0xc727bb3b => 'account.installTheme',
|
|
1756
1920
|
0xc7345e6a => 'jsonBool',
|
|
@@ -1765,9 +1929,10 @@ module MTProto
|
|
|
1765
1929
|
0xc8a0ec74 => 'messages.getStickerSet',
|
|
1766
1930
|
0xc8cf05f8 => 'messageEntityCustomEmoji',
|
|
1767
1931
|
0xc93de95c => 'inputChatTheme',
|
|
1768
|
-
|
|
1932
|
+
0xc957a766 => 'updateGroupCallEncryptedMessage',
|
|
1769
1933
|
0xc982eaba => 'cdnPublicKey',
|
|
1770
1934
|
0xc99b1950 => 'botAppSettings',
|
|
1935
|
+
0xc9a47b0b => 'messages.checkUrlAuthMatchCode',
|
|
1771
1936
|
0xc9b0539f => 'searchResultsCalendarPeriod',
|
|
1772
1937
|
0xc9b9e2b9 => 'businessAwayMessageScheduleAlways',
|
|
1773
1938
|
0xc9e01e7b => 'messages.requestMainWebView',
|
|
@@ -1775,6 +1940,7 @@ module MTProto
|
|
|
1775
1940
|
0xc9f06e1b => 'requestPeerTypeChat',
|
|
1776
1941
|
0xc9f81ce8 => 'account.setPrivacy',
|
|
1777
1942
|
0xca461b5d => 'peerLocated',
|
|
1943
|
+
0xca5cab89 => 'messageMediaVideoStream',
|
|
1778
1944
|
0xca8ae8ba => 'account.invalidateSignInCodes',
|
|
1779
1945
|
0xcacb6ae2 => 'inputPeerNotifySettings',
|
|
1780
1946
|
0xcad181f6 => 'langPackString',
|
|
@@ -1784,7 +1950,6 @@ module MTProto
|
|
|
1784
1950
|
0xcae68768 => 'stories.peerStories',
|
|
1785
1951
|
0xcb296bf8 => 'labeledPrice',
|
|
1786
1952
|
0xcb2ac766 => 'channelAdminLogEventActionToggleNoForwards',
|
|
1787
|
-
0xcb397619 => 'channelParticipant',
|
|
1788
1953
|
0xcb43acde => 'statsAbsValueAndPrev',
|
|
1789
1954
|
0xcb6ff828 => 'savedReactionTag',
|
|
1790
1955
|
0xcb9deff6 => 'auth.reportMissingCode',
|
|
@@ -1805,24 +1970,28 @@ module MTProto
|
|
|
1805
1970
|
0xcc7c5c89 => 'messageActionTodoCompletions',
|
|
1806
1971
|
0xccbbce30 => 'help.appUpdate',
|
|
1807
1972
|
0xccfddf96 => 'messages.saveDefaultSendAs',
|
|
1808
|
-
|
|
1973
|
+
0xcd24cf44 => 'textMention',
|
|
1809
1974
|
0xcd77d957 => 'channelMessagesFilter',
|
|
1810
1975
|
0xcd78e586 => 'rpc_answer_dropped_running',
|
|
1811
1976
|
0xcd984aa5 => 'langpack.getDifference',
|
|
1812
1977
|
0xcdbbcebb => 'messages.allStickers',
|
|
1813
1978
|
0xcdc27a1f => 'paymentSavedCredentialsCard',
|
|
1814
1979
|
0xcdc3858c => 'account.wallPapers',
|
|
1980
|
+
0xcdd4093d => 'updateBotGuestChatQuery',
|
|
1815
1981
|
0xcdd42a05 => 'auth.bindTempAuthKey',
|
|
1816
1982
|
0xce03da83 => 'chatlists.getExportedInvites',
|
|
1817
1983
|
0xce0d37b0 => 'pageBlockAnchor',
|
|
1818
1984
|
0xceaa3ea1 => 'messageMediaGiveawayResults',
|
|
1985
|
+
0xcecc1134 => 'messages.editForumTopic',
|
|
1986
|
+
0xcef7e7a8 => 'starGiftAttributeRarityLegendary',
|
|
1819
1987
|
0xcf1592db => 'messages.reportSpam',
|
|
1820
1988
|
0xcf6f6db8 => 'webPageAttributeUniqueStarGift',
|
|
1821
1989
|
0xcfb9d957 => 'messages.transcribedAudio',
|
|
1822
1990
|
0xcfc9e002 => 'mediaAreaCoordinates',
|
|
1823
1991
|
0xcfcd0f13 => 'storyReactionPublicRepost',
|
|
1824
1992
|
0xcff43f61 => 'account.setContactSignUpNotification',
|
|
1825
|
-
|
|
1993
|
+
0xcff63ea9 => 'aiComposeTone',
|
|
1994
|
+
0xd069ccde => 'stories.startLive',
|
|
1826
1995
|
0xd06e93a8 => 'payments.getStarGiftWithdrawalUrl',
|
|
1827
1996
|
0xd072acb4 => 'restrictionReason',
|
|
1828
1997
|
0xd087663a => 'updateChatParticipant',
|
|
@@ -1836,15 +2005,17 @@ module MTProto
|
|
|
1836
2005
|
0xd1810907 => 'stories.searchPosts',
|
|
1837
2006
|
0xd18b4d16 => 'auth.checkPassword',
|
|
1838
2007
|
0xd19ae46d => 'privacyKeyPhoneNumber',
|
|
2008
|
+
0xd1b4ab14 => 'aicompose.getToneExample',
|
|
1839
2009
|
0xd1d34a26 => 'sendMessageUploadPhotoAction',
|
|
1840
2010
|
0xd1d7efc5 => 'payments.getStarsRevenueAdsAccountUrl',
|
|
1841
2011
|
0xd1da940c => 'messages.deleteFactCheck',
|
|
1842
2012
|
0xd1ed9a5b => 'messages.availableEffectsNotModified',
|
|
1843
2013
|
0xd27ff082 => 'inputCheckPasswordSRP',
|
|
2014
|
+
0xd2816f10 => 'messages.deleteTopicHistory',
|
|
1844
2015
|
0xd29a27f4 => 'updateChannelMessageForwards',
|
|
1845
2016
|
0xd2aaf7ec => 'messages.updatePinnedMessage',
|
|
1846
2017
|
0xd30d78d4 => 'messages.sendReaction',
|
|
1847
|
-
|
|
2018
|
+
0xd31bc45d => 'starGiftActiveAuctionState',
|
|
1848
2019
|
0xd33f43f3 => 'inputMediaGame',
|
|
1849
2020
|
0xd348bc44 => 'contacts.getLocated',
|
|
1850
2021
|
0xd360e72c => 'help.getSupportName',
|
|
@@ -1858,32 +2029,35 @@ module MTProto
|
|
|
1858
2029
|
0xd483f2a8 => 'messages.getQuickReplies',
|
|
1859
2030
|
0xd52f73f7 => 'sendMessageRecordAudioAction',
|
|
1860
2031
|
0xd5676710 => 'channelAdminLogEventActionParticipantToggleAdmin',
|
|
1861
|
-
0xd58a08c6 => 'dialog',
|
|
1862
2032
|
0xd58f130a => 'messages.setBotCallbackAnswer',
|
|
1863
2033
|
0xd5a41724 => 'updateMessageExtendedMedia',
|
|
1864
2034
|
0xd5a5d3a1 => 'messages.getStickers',
|
|
1865
2035
|
0xd5b10c26 => 'messages.getEmojiURL',
|
|
1866
2036
|
0xd5b3b9f9 => 'emojiKeyword',
|
|
1867
2037
|
0xd5e58274 => 'payments.checkCanSendGiftResultFail',
|
|
2038
|
+
0xd5f0ad91 => 'channelParticipantBanned',
|
|
1868
2039
|
0xd612e8ef => 'notifyBroadcasts',
|
|
1869
2040
|
0xd61ad6ee => 'auth.codeTypeMissedCall',
|
|
1870
2041
|
0xd62ff46a => 'requestedPeerUser',
|
|
1871
2042
|
0xd638de89 => 'account.getChatThemes',
|
|
1872
2043
|
0xd63d94e0 => 'messages.getPinnedSavedDialogs',
|
|
2044
|
+
0xd64c522b => 'updateMessagePoll',
|
|
1873
2045
|
0xd65a11cc => 'inputPrivacyKeyBirthday',
|
|
1874
2046
|
0xd66b66c9 => 'inputPrivacyValueDisallowAll',
|
|
1875
2047
|
0xd6753386 => 'account.getDefaultEmojiStatuses',
|
|
1876
2048
|
0xd69b8361 => 'account.saveAutoSaveSettings',
|
|
1877
2049
|
0xd6b19546 => 'updateReadChannelDiscussionInbox',
|
|
1878
2050
|
0xd6b94df2 => 'messages.getPinnedDialogs',
|
|
2051
|
+
0xd6e3b813 => 'joinChatBotResultWebView',
|
|
1879
2052
|
0xd712e4be => 'req_DH_params',
|
|
1880
2053
|
0xd7584c87 => 'statsGroupTopAdmin',
|
|
1881
2054
|
0xd766c50a => 'inlineQueryPeerTypeChat',
|
|
1882
|
-
0xd7a2fcf9 => 'auth.sentCodePaymentRequired',
|
|
1883
2055
|
0xd7ca61a2 => 'updateChatParticipantAdmin',
|
|
1884
2056
|
0xd7e78225 => 'inputBotInlineMessageMediaInvoice',
|
|
2057
|
+
0xd80c25ec => 'keyboardButtonUrl',
|
|
1885
2058
|
0xd80da15d => 'starsTransactionPeer',
|
|
1886
2059
|
0xd8214d41 => 'photoPathSize',
|
|
2060
|
+
0xd8326f0d => 'updateGroupCallMessage',
|
|
1887
2061
|
0xd83466f3 => 'inputPhotoLegacyFileLocation',
|
|
1888
2062
|
0xd83d70c1 => 'payments.clearSavedInfo',
|
|
1889
2063
|
0xd8411139 => 'payments.paymentVerificationNeeded',
|
|
@@ -1895,30 +2069,37 @@ module MTProto
|
|
|
1895
2069
|
0xd912a59c => 'textItalic',
|
|
1896
2070
|
0xd91ffad6 => 'payments.getStarsRevenueStats',
|
|
1897
2071
|
0xd92c2285 => 'speakingInGroupCallAction',
|
|
1898
|
-
0xd93d859c => 'starGiftAttributeBackdrop',
|
|
1899
2072
|
0xd94305e0 => 'account.updatePersonalChannel',
|
|
1900
2073
|
0xd9565c39 => 'auth.sentCodeTypeFragmentSms',
|
|
1901
2074
|
0xd95c6154 => 'messageActionSecureValuesSent',
|
|
1902
2075
|
0xd9ab0f54 => 'messages.getCustomEmojiDocuments',
|
|
2076
|
+
0xd9ba2e54 => 'contacts.addContact',
|
|
2077
|
+
0xda2ad647 => 'messages.emojiGameOutcome',
|
|
1903
2078
|
0xda69fb52 => 'msgs_state_req',
|
|
1904
2079
|
0xda80f42f => 'help.getPeerColors',
|
|
1905
2080
|
0xda9b0d0d => 'invokeWithLayer',
|
|
1906
2081
|
0xdabab2ef => 'inputInvoicePremiumGiftStars',
|
|
1907
2082
|
0xdabbf83a => 'payments.paymentReceiptStars',
|
|
2083
|
+
0xdacb836a => 'inputRichMessageHTML',
|
|
1908
2084
|
0xdadbc950 => 'account.getPrivacy',
|
|
2085
|
+
0xdaecc589 => 'messages.composeMessageWithAI',
|
|
1909
2086
|
0xdaeda864 => 'contacts.getBirthdays',
|
|
1910
2087
|
0xdb20b188 => 'pageBlockDivider',
|
|
1911
2088
|
0xdb21d0a7 => 'inputSecureValue',
|
|
2089
|
+
0xdb33dad0 => 'payments.starGiftActiveAuctionsNotModified',
|
|
1912
2090
|
0xdb64fd34 => 'account.tmpPassword',
|
|
1913
2091
|
0xdb7e1747 => 'account.resetNotifySettings',
|
|
1914
2092
|
0xdb909ec2 => 'emailVerificationGoogle',
|
|
1915
2093
|
0xdb9d897d => 'botCommandScopePeer',
|
|
1916
2094
|
0xdb9e70d2 => 'inputPrivacyKeyPhoneP2P',
|
|
1917
2095
|
0xdb9f9140 => 'channelAdminLogEventActionDiscardGroupCall',
|
|
2096
|
+
0xdbbe6c6a => 'pageBlockHeading5',
|
|
2097
|
+
0xdbce6389 => 'starGiftAttributeRarityUncommon',
|
|
1918
2098
|
0xdbd4feed => 'inputReportReasonGeoIrrelevant',
|
|
1919
2099
|
0xdbda9246 => 'sendMessageHistoryImportAction',
|
|
1920
2100
|
0xdc0242c8 => 'messages.sendWebViewData',
|
|
1921
2101
|
0xdc3d824f => 'textEmpty',
|
|
2102
|
+
0xdc58f31e => 'updateStarGiftAuctionUserState',
|
|
1922
2103
|
0xdc6cfcf0 => 'paidReactionPrivacyPeer',
|
|
1923
2104
|
0xdc7b1140 => 'messageEntityMentionName',
|
|
1924
2105
|
0xdc8b44cf => 'smsjobs.eligibleToJoin',
|
|
@@ -1927,8 +2108,11 @@ module MTProto
|
|
|
1927
2108
|
0xdcdf8607 => 'stats.getMegagroupStats',
|
|
1928
2109
|
0xdd0c66f2 => 'starRefProgram',
|
|
1929
2110
|
0xdd18782e => 'help.appConfig',
|
|
2111
|
+
0xdd1fbf93 => 'bots.accessSettings',
|
|
1930
2112
|
0xdd289f8e => 'invokeWithBusinessConnection',
|
|
2113
|
+
0xdd39316a => 'aicompose.deleteTone',
|
|
1931
2114
|
0xdd6a8f48 => 'sendMessageGamePlayAction',
|
|
2115
|
+
0xddbcd819 => 'messages.reportMusicListen',
|
|
1932
2116
|
0xdde8a54c => 'inputPeerUser',
|
|
1933
2117
|
0xddf10c3b => 'messageMediaWebPage',
|
|
1934
2118
|
0xde266ef5 => 'contacts.topPeersNotModified',
|
|
@@ -1937,14 +2121,14 @@ module MTProto
|
|
|
1937
2121
|
0xde4c5d93 => 'geoPointAddress',
|
|
1938
2122
|
0xde5a0dd6 => 'textEmail',
|
|
1939
2123
|
0xde7b673d => 'upload.saveBigFilePart',
|
|
2124
|
+
0xde91436e => 'messages.importChatInvite',
|
|
1940
2125
|
0xde9eed1d => 'stories.storyViews',
|
|
1941
2126
|
0xdea20a39 => 'messages.getAvailableEffects',
|
|
1942
|
-
|
|
2127
|
+
0xdef143d0 => 'updatePinnedForumTopics',
|
|
1943
2128
|
0xdef60797 => 'messages.editChatAbout',
|
|
1944
2129
|
0xdf04dd4e => 'messages.getChatInviteImporters',
|
|
1945
2130
|
0xdf77f3bc => 'account.resetAuthorization',
|
|
1946
2131
|
0xdfb80317 => 'channels.channelParticipant',
|
|
1947
|
-
0xdfd14005 => 'messages.editMessage',
|
|
1948
2132
|
0xdfdaabe1 => 'inputFileLocation',
|
|
1949
2133
|
0xdffd50d3 => 'payments.assignPlayMarketTransaction',
|
|
1950
2134
|
0xe011e1c4 => 'account.chatThemesNotModified',
|
|
@@ -1963,13 +2147,20 @@ module MTProto
|
|
|
1963
2147
|
0xe1037f92 => 'messageActionChatMigrateTo',
|
|
1964
2148
|
0xe105e910 => 'messages.deleteQuickReplyMessages',
|
|
1965
2149
|
0xe14c4a71 => 'photos.uploadContactProfilePhoto',
|
|
2150
|
+
0xe15c4370 => 'keyboardButtonSimpleWebView',
|
|
1966
2151
|
0xe1664194 => 'contacts.blockedSlice',
|
|
2152
|
+
0xe16b5ce1 => 'account.passkeyRegistrationOptions',
|
|
1967
2153
|
0xe1732341 => 'inputPrivacyKeyStarGiftsAutoSave',
|
|
1968
2154
|
0xe175e66f => 'payments.giveawayInfoResults',
|
|
2155
|
+
0xe188503b => 'messageActionChangeCreator',
|
|
1969
2156
|
0xe1902288 => 'account.getSavedRingtones',
|
|
1970
2157
|
0xe1bb0d61 => 'account.emailVerifiedLogin',
|
|
2158
|
+
0xe1f867b8 => 'chatParticipantCreator',
|
|
2159
|
+
0xe2037789 => 'auth.passkeyLoginOptions',
|
|
2160
|
+
0xe216eb63 => 'messageMediaPhoto',
|
|
1971
2161
|
0xe22045fc => 'destroy_session_ok',
|
|
1972
2162
|
0xe2750328 => 'account.getDefaultProfilePhotoEmojis',
|
|
2163
|
+
0xe2b23b51 => 'inputSendMessageRichMessageDraftAction',
|
|
1973
2164
|
0xe2de7737 => 'stories.foundStories',
|
|
1974
2165
|
0xe317af7e => 'updatesTooLong',
|
|
1975
2166
|
0xe31c34d8 => 'channelAdminLogEventActionParticipantInvite',
|
|
@@ -1981,16 +2172,18 @@ module MTProto
|
|
|
1981
2172
|
0xe3878aa4 => 'users.savedMusicNotModified',
|
|
1982
2173
|
0xe39460a9 => 'inputCollectibleUsername',
|
|
1983
2174
|
0xe39a8f03 => 'account.uploadWallPaper',
|
|
2175
|
+
0xe3af4434 => 'inputMediaPhoto',
|
|
2176
|
+
0xe3b7f82c => 'messages.deleteParticipantReaction',
|
|
1984
2177
|
0xe40370a3 => 'updateEditMessage',
|
|
1985
2178
|
0xe40ca104 => 'messages.getCommonChats',
|
|
2179
|
+
0xe42ce9c9 => 'account.getUniqueGiftChatThemes',
|
|
1986
2180
|
0xe4621141 => 'privacyValueDisallowUsers',
|
|
1987
|
-
0xe46bcee4 => 'chatParticipantCreator',
|
|
1988
2181
|
0xe470bcfd => 'messages.getPeerDialogs',
|
|
1989
2182
|
0xe477092e => 'profileTabVoice',
|
|
1990
2183
|
0xe47cb579 => 'messages.togglePeerTranslations',
|
|
1991
2184
|
0xe4c123d6 => 'inputGeoPointEmpty',
|
|
2185
|
+
0xe4c449fc => 'inputRichMessage',
|
|
1992
2186
|
0xe4cb9580 => 'channels.toggleJoinToSend',
|
|
1993
|
-
0xe4e0b29d => 'channelFull',
|
|
1994
2187
|
0xe4e88011 => 'pageBlockList',
|
|
1995
2188
|
0xe4fca4a3 => 'payments.editConnectedStarRefBot',
|
|
1996
2189
|
0xe511996d => 'updateFavedStickers',
|
|
@@ -1999,12 +2192,15 @@ module MTProto
|
|
|
1999
2192
|
0xe56dbf05 => 'dialogPeer',
|
|
2000
2193
|
0xe581e4e9 => 'requirementToContactPremium',
|
|
2001
2194
|
0xe58e95d2 => 'messages.deleteMessages',
|
|
2195
|
+
0xe5afa56d => 'phone.sendGroupCallEncryptedMessage',
|
|
2196
|
+
0xe5b17f2b => 'bots.createBot',
|
|
2002
2197
|
0xe5bbfe1a => 'inputMediaPhotoExternal',
|
|
2003
2198
|
0xe5bdf8de => 'updateUserStatus',
|
|
2004
2199
|
0xe5bfffcd => 'auth.exportAuthorization',
|
|
2005
2200
|
0xe5d7d19c => 'messages.chatFull',
|
|
2006
2201
|
0xe5f672fa => 'messages.setBotShippingResults',
|
|
2007
2202
|
0xe6213f4d => 'bots.answerWebhookJSONQuery',
|
|
2203
|
+
0xe62bc960 => 'keyboardButtonCallback',
|
|
2008
2204
|
0xe630b979 => 'inputWallPaper',
|
|
2009
2205
|
0xe63fadeb => 'channels.exportMessageLink',
|
|
2010
2206
|
0xe64429c0 => 'channelAdminLogEventActionParticipantUnmute',
|
|
@@ -2012,11 +2208,13 @@ module MTProto
|
|
|
2012
2208
|
0xe67f520e => 'inputStickerSetDice',
|
|
2013
2209
|
0xe6a1eeb8 => 'smsJob',
|
|
2014
2210
|
0xe6aa647f => 'phone.exportGroupCallInvite',
|
|
2211
|
+
0xe6c31522 => 'messageActionStarGiftUnique',
|
|
2015
2212
|
0xe6d83d7e => 'channelAdminLogEventActionParticipantToggleBan',
|
|
2016
2213
|
0xe6df7378 => 'messages.startBot',
|
|
2017
2214
|
0xe6dfb825 => 'channelAdminLogEventActionChangeTitle',
|
|
2018
2215
|
0xe7026d0d => 'inputMessagesFilterGeo',
|
|
2019
2216
|
0xe7058e7f => 'postInteractionCountersMessage',
|
|
2217
|
+
0xe71a4810 => 'bots.setJoinChatResults',
|
|
2020
2218
|
0xe7512126 => 'destroy_session',
|
|
2021
2219
|
0xe785a43f => 'channels.getSendAs',
|
|
2022
2220
|
0xe7e82e12 => 'pendingSuggestion',
|
|
@@ -2024,6 +2222,7 @@ module MTProto
|
|
|
2024
2222
|
0xe8025ca2 => 'messages.savedGifsNotModified',
|
|
2025
2223
|
0xe822649d => 'messages.getGameHighScores',
|
|
2026
2224
|
0xe844ebff => 'messages.searchCounter',
|
|
2225
|
+
0xe846b1a0 => 'keyboardButtonWebView',
|
|
2027
2226
|
0xe8625e92 => 'inputInvoiceStarGift',
|
|
2028
2227
|
0xe86602c3 => 'messages.allStickersNotModified',
|
|
2029
2228
|
0xe87acbc0 => 'foundStory',
|
|
@@ -2031,21 +2230,22 @@ module MTProto
|
|
|
2031
2230
|
0xe89c45b2 => 'webPage',
|
|
2032
2231
|
0xe8a40bd9 => 'secureValueErrorData',
|
|
2033
2232
|
0xe8a775b0 => 'bots.botInfo',
|
|
2034
|
-
0xe8f463d0 => 'contacts.addContact',
|
|
2035
2233
|
0xe8fd8014 => 'peerBlocked',
|
|
2036
2234
|
0xe90ebb59 => 'channelAdminLogEventActionExportedInviteEdit',
|
|
2037
2235
|
0xe926d63e => 'account.resetPasswordOk',
|
|
2038
2236
|
0xe92fd902 => 'starsTransactionPeerFragment',
|
|
2039
2237
|
0xe94f0f86 => 'inputPrivacyValueDisallowChatParticipants',
|
|
2040
2238
|
0xe9763aec => 'sendMessageUploadVideoAction',
|
|
2041
|
-
0xe988037b => 'inputKeyboardButtonUserProfile',
|
|
2042
2239
|
0xe9baa668 => 'folderPeer',
|
|
2240
|
+
0xe9ce781c => 'payments.resolveStarGiftOffer',
|
|
2043
2241
|
0xe9e82c18 => 'channelAdminLogEventActionUpdatePinned',
|
|
2044
2242
|
0xe9effc7d => 'account.resetPasswordRequestedWait',
|
|
2045
2243
|
0xea02c27e => 'paymentCharge',
|
|
2046
2244
|
0xea02ec33 => 'secureValueTypeTemporaryRegistration',
|
|
2047
2245
|
0xea107ae4 => 'channelAdminLogEventsFilter',
|
|
2048
2246
|
0xea109b13 => 'destroy_auth_key_fail',
|
|
2247
|
+
0xea1f0c52 => 'account.getPasskeys',
|
|
2248
|
+
0xea2c31d3 => 'messageActionStarGift',
|
|
2049
2249
|
0xea32b4b1 => 'contacts.sponsoredPeersEmpty',
|
|
2050
2250
|
0xea3948e9 => 'messageActionChannelMigrateFrom',
|
|
2051
2251
|
0xea8ca4f9 => 'channels.setStickers',
|
|
@@ -2058,7 +2258,7 @@ module MTProto
|
|
|
2058
2258
|
0xeb2b4cf6 => 'account.getGlobalPrivacySettings',
|
|
2059
2259
|
0xeb49081d => 'recentMeUrlChatInvite',
|
|
2060
2260
|
0xeb50adf5 => 'messages.botApp',
|
|
2061
|
-
|
|
2261
|
+
0xeb983f8f => 'payments.checkedGiftCode',
|
|
2062
2262
|
0xebbca3cb => 'messageActionChatJoinedByRequest',
|
|
2063
2263
|
0xebe07752 => 'updatePeerBlocked',
|
|
2064
2264
|
0xebe46819 => 'updateServiceNotification',
|
|
@@ -2077,16 +2277,17 @@ module MTProto
|
|
|
2077
2277
|
0xed85eab5 => 'updatePinnedMessages',
|
|
2078
2278
|
0xed8af74d => 'channels.adminLogResults',
|
|
2079
2279
|
0xed9f30c5 => 'bots.updateUserEmojiStatus',
|
|
2280
|
+
0xeda3e33b => 'messages.getPollResults',
|
|
2080
2281
|
0xedab447b => 'bad_server_salt',
|
|
2081
2282
|
0xedb93949 => 'userStatusOnline',
|
|
2082
2283
|
0xedbe6ccb => 'payments.updateStarGiftPrice',
|
|
2083
2284
|
0xedcdc05b => 'topPeer',
|
|
2084
2285
|
0xedd4882a => 'updates.getState',
|
|
2085
2286
|
0xedd49ef0 => 'channels.toggleSlowMode',
|
|
2086
|
-
0xedf164f1 => 'storyItem',
|
|
2087
2287
|
0xedf3add0 => 'publicForwardStory',
|
|
2088
2288
|
0xedfc111e => 'updateDraftMessage',
|
|
2089
2289
|
0xee3b272a => 'updatePrivacy',
|
|
2290
|
+
0xee430c85 => 'groupCallDonor',
|
|
2090
2291
|
0xee479c64 => 'messageExtendedMedia',
|
|
2091
2292
|
0xee72f79a => 'help.acceptTermsOfService',
|
|
2092
2293
|
0xee7a1596 => 'messageActionSuggestedPostApproval',
|
|
@@ -2101,6 +2302,7 @@ module MTProto
|
|
|
2101
2302
|
0xef7c213a => 'phone.getGroupCallJoinAs',
|
|
2102
2303
|
0xef7ff916 => 'stats.megagroupStats',
|
|
2103
2304
|
0xef8d3e6c => 'messages.affectedFoundMessages',
|
|
2305
|
+
0xefb2b617 => 'groupCall',
|
|
2104
2306
|
0xefd48c89 => 'messages.getDialogFilters',
|
|
2105
2307
|
0xefd9a6a2 => 'messages.getPeerSettings',
|
|
2106
2308
|
0xefea3803 => 'langpack.getStrings',
|
|
@@ -2108,6 +2310,7 @@ module MTProto
|
|
|
2108
2310
|
0xf041e250 => 'chatOnlines',
|
|
2109
2311
|
0xf04fb3a9 => 'channelAdminLogEventActionChangeUsernames',
|
|
2110
2312
|
0xf06fe208 => 'channelAdminLogEventActionEditTopic',
|
|
2313
|
+
0xf08d516b => 'starGiftAttributeRarityRare',
|
|
2111
2314
|
0xf0d3e6a8 => 'channels.updateEmojiStatus',
|
|
2112
2315
|
0xf0e3e596 => 'messages.dialogsNotModified',
|
|
2113
2316
|
0xf0e4e0b6 => 'reportResultChooseOption',
|
|
@@ -2118,6 +2321,7 @@ module MTProto
|
|
|
2118
2321
|
0xf12bb6e1 => 'pageBlockSubheader',
|
|
2119
2322
|
0xf12e57c9 => 'channels.editPhoto',
|
|
2120
2323
|
0xf132e3ef => 'bots.allowSendMessage',
|
|
2324
|
+
0xf13bbcd7 => 'bots.requestedButton',
|
|
2121
2325
|
0xf141b5e1 => 'inputEncryptedChat',
|
|
2122
2326
|
0xf146d31f => 'attachMenuPeerTypePM',
|
|
2123
2327
|
0xf16269d4 => 'updateSmsJob',
|
|
@@ -2125,11 +2329,11 @@ module MTProto
|
|
|
2125
2329
|
0xf18cda44 => 'upload.fileCdnRedirect',
|
|
2126
2330
|
0xf1ccaaac => 'messageEntityBlockquote',
|
|
2127
2331
|
0xf1d0fbd3 => 'messages.checkQuickReplyShortcut',
|
|
2332
|
+
0xf1d628ec => 'aiComposeToneExample',
|
|
2128
2333
|
0xf1d88a5c => 'attachMenuBotsNotModified',
|
|
2129
2334
|
0xf21158c6 => 'inputUser',
|
|
2130
2335
|
0xf21f7f2f => 'messages.savePreparedInlineMessage',
|
|
2131
2336
|
0xf226ac08 => 'updateChannelMessageViews',
|
|
2132
|
-
0xf24de7fa => 'messageActionStarGift',
|
|
2133
2337
|
0xf257106c => 'account.saveTheme',
|
|
2134
2338
|
0xf259a80b => 'pageBlockEmbedPost',
|
|
2135
2339
|
0xf2a71983 => 'updateDeleteScheduledMessages',
|
|
@@ -2142,9 +2346,9 @@ module MTProto
|
|
|
2142
2346
|
0xf35aec28 => 'inputChannel',
|
|
2143
2347
|
0xf35c6d01 => 'rpc_result',
|
|
2144
2348
|
0xf385c1f6 => 'langPackDifference',
|
|
2145
|
-
0xf392b7f4 => 'inputPhoneContact',
|
|
2146
2349
|
0xf393aea0 => 'messages.discardEncryption',
|
|
2147
2350
|
0xf39b035c => 'fileHash',
|
|
2351
|
+
0xf3a9244a => 'inputMediaStakeDice',
|
|
2148
2352
|
0xf3ae2eed => 'help.userInfoEmpty',
|
|
2149
2353
|
0xf3e0da33 => 'inputChatlistDialogFilter',
|
|
2150
2354
|
0xf3ed4c73 => 'account.acceptAuthorization',
|
|
@@ -2162,6 +2366,7 @@ module MTProto
|
|
|
2162
2366
|
0xf4dfa185 => 'channels.editForumTopic',
|
|
2163
2367
|
0xf5045f1f => 'set_client_DH_params',
|
|
2164
2368
|
0xf50dbaa1 => 'help.dismissSuggestion',
|
|
2369
|
+
0xf51006f9 => 'keyboardButtonUrlAuth',
|
|
2165
2370
|
0xf516760b => 'messages.getScheduledHistory',
|
|
2166
2371
|
0xf5235d55 => 'inputEncryptedFileLocation',
|
|
2167
2372
|
0xf52ff27f => 'inputFile',
|
|
@@ -2169,14 +2374,17 @@ module MTProto
|
|
|
2169
2374
|
0xf5537ebc => 'stickers.changeSticker',
|
|
2170
2375
|
0xf568028a => 'bankCardOpenUrl',
|
|
2171
2376
|
0xf5890df1 => 'inputThemeSlug',
|
|
2377
|
+
0xf5b5563f => 'account.deletePasskey',
|
|
2172
2378
|
0xf5dad378 => 'channels.getGroupsForDiscussion',
|
|
2173
2379
|
0xf5ddd6e7 => 'inputReportReasonFake',
|
|
2174
2380
|
0xf64daf43 => 'messages.requestEncryption',
|
|
2381
|
+
0xf64f54f7 => 'phone.deleteGroupCallMessages',
|
|
2175
2382
|
0xf660e1d4 => 'destroy_auth_key_ok',
|
|
2176
2383
|
0xf6a548d3 => 'messageMediaInvoice',
|
|
2177
2384
|
0xf6a5f82f => 'privacyValueDisallowBots',
|
|
2178
2385
|
0xf6e26854 => 'payments.applyGiftCode',
|
|
2179
2386
|
0xf731a9f4 => 'messages.readDiscussion',
|
|
2387
|
+
0xf743b857 => 'messages.editChatCreator',
|
|
2180
2388
|
0xf7444763 => 'jsonArray',
|
|
2181
2389
|
0xf74e932b => 'updateReadStories',
|
|
2182
2390
|
0xf7760f51 => 'stickers.removeStickerFromSet',
|
|
@@ -2188,11 +2396,13 @@ module MTProto
|
|
|
2188
2396
|
0xf83ae221 => 'messages.savedDialogs',
|
|
2189
2397
|
0xf85c413c => 'videoSizeEmojiMarkup',
|
|
2190
2398
|
0xf8654027 => 'contacts.exportContactToken',
|
|
2399
|
+
0xf8827ebf => 'auth.sentCodePaymentRequired',
|
|
2191
2400
|
0xf888fa1a => 'privacyValueDisallowContacts',
|
|
2192
2401
|
0xf89777f2 => 'channelAdminLogEventActionParticipantLeave',
|
|
2193
2402
|
0xf89a6a4e => 'updateChat',
|
|
2194
2403
|
0xf8ab7dfb => 'inputMediaContact',
|
|
2195
2404
|
0xf8b036af => 'channels.getAdminedPublicChannels',
|
|
2405
|
+
0xf8e0aa1c => 'account.passkeys',
|
|
2196
2406
|
0xf8ec284b => 'peerSelfLocated',
|
|
2197
2407
|
0xf92424d2 => 'channelAdminLogEventActionParticipantMute',
|
|
2198
2408
|
0xf93cd45c => 'botVerification',
|
|
@@ -2205,6 +2415,7 @@ module MTProto
|
|
|
2205
2415
|
0xf9cbe409 => 'messages.deletePhoneCallHistory',
|
|
2206
2416
|
0xfa04579d => 'messageEntityMention',
|
|
2207
2417
|
0xfa0f3ca2 => 'updatePinnedDialogs',
|
|
2418
|
+
0xfa2bc90a => 'inputMessagesFilterPoll',
|
|
2208
2419
|
0xfa3efb95 => 'photoSizeProgressive',
|
|
2209
2420
|
0xfa4f0bb5 => 'inputFileBig',
|
|
2210
2421
|
0xfa58b6d4 => 'themeSettings',
|
|
@@ -2217,8 +2428,10 @@ module MTProto
|
|
|
2217
2428
|
0xfb197a65 => 'photo',
|
|
2218
2429
|
0xfb4c496c => 'updateReadFeaturedEmojiStickers',
|
|
2219
2430
|
0xfb790393 => 'inputStorePaymentPremiumGiftCode',
|
|
2431
|
+
0xfb7e8ca7 => 'messages.getEmojiGameInfo',
|
|
2220
2432
|
0xfb834291 => 'topPeerCategoryPeers',
|
|
2221
2433
|
0xfb8fe43c => 'payments.savedInfo',
|
|
2434
|
+
0xfb9c547a => 'updateEmojiGameInfo',
|
|
2222
2435
|
0xfbd2c296 => 'inputFolderPeer',
|
|
2223
2436
|
0xfbd3de6b => 'account.updateEmojiStatus',
|
|
2224
2437
|
0xfbd81688 => 'baseThemeDay',
|
|
@@ -2226,12 +2439,15 @@ module MTProto
|
|
|
2226
2439
|
0xfbf6e8b1 => 'account.savedRingtonesNotModified',
|
|
2227
2440
|
0xfbfca18f => 'messages.getEmojiStickers',
|
|
2228
2441
|
0xfc36954e => 'secureValueTypeUtilityBill',
|
|
2442
|
+
0xfc533372 => 'users.suggestBirthday',
|
|
2229
2443
|
0xfc78af9b => 'messages.report',
|
|
2230
|
-
0xfc796b3f => 'keyboardButtonRequestGeoLocation',
|
|
2231
2444
|
0xfc878fc8 => 'phoneCallProtocol',
|
|
2445
|
+
0xfc89f7f3 => 'dialog',
|
|
2232
2446
|
0xfc8ddbea => 'account.getWallPaper',
|
|
2233
2447
|
0xfcaafeb7 => 'inputDialogPeer',
|
|
2448
|
+
0xfcdad815 => 'forumTopic',
|
|
2234
2449
|
0xfcfeb29c => 'stickerKeyword',
|
|
2450
|
+
0xfd05dd00 => 'payments.getCraftStarGifts',
|
|
2235
2451
|
0xfd149899 => 'documentAttributeCustomEmoji',
|
|
2236
2452
|
0xfd2dda49 => 'messages.toggleDialogFilterTags',
|
|
2237
2453
|
0xfd5e12bd => 'messages.webPage',
|
|
@@ -2240,20 +2456,19 @@ module MTProto
|
|
|
2240
2456
|
0xfda68d36 => 'messages.getMessageEditData',
|
|
2241
2457
|
0xfdb19008 => 'messageMediaGame',
|
|
2242
2458
|
0xfdbcd714 => 'chatlists.getLeaveChatlistSuggestions',
|
|
2243
|
-
0xfe05dc9a => 'messages.sendMessage',
|
|
2244
2459
|
0xfe06823f => 'inputGroupCallSlug',
|
|
2245
2460
|
0xfe198602 => 'updateChannelPinnedTopics',
|
|
2246
2461
|
0xfe2eda76 => 'account.toggleNoPaidMessagesException',
|
|
2462
|
+
0xfe333952 => 'starGiftAuctionStateNotModified',
|
|
2247
2463
|
0xfe41b34f => 'globalPrivacySettings',
|
|
2248
|
-
0xfe685355 => 'channel',
|
|
2249
|
-
0xfe74ef9f => 'account.getUniqueGiftChatThemes',
|
|
2250
2464
|
0xfe9fc158 => 'channelAdminLogEventActionParticipantJoinByInvite',
|
|
2251
2465
|
0xfebe5491 => 'starsRevenueStatus',
|
|
2252
2466
|
0xfeed5769 => 'account.installWallPaper',
|
|
2253
|
-
|
|
2467
|
+
0xfef48f62 => 'messages.sendMessage',
|
|
2254
2468
|
0xff544e65 => 'folder',
|
|
2255
2469
|
0xff57708d => 'messages.preparedInlineMessage',
|
|
2256
2470
|
0xff6c8049 => 'notificationSoundRingtone',
|
|
2471
|
+
0xff7a571b => 'privacyKeySavedMusic',
|
|
2257
2472
|
0xff7a9383 => 'phone.sendSignalingData',
|
|
2258
2473
|
0xff9289f5 => 'timezone',
|
|
2259
2474
|
0xffa00ccc => 'messageActionPaymentSentMe',
|