@mtcute/core 0.29.6 → 0.30.0
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.
- package/client.cjs +8 -0
- package/client.js +8 -0
- package/highlevel/client.d.cts +23 -7
- package/highlevel/client.d.ts +23 -7
- package/highlevel/methods/bots/answer-bot-guest-chat-query.cjs +26 -0
- package/highlevel/methods/bots/answer-bot-guest-chat-query.d.cts +12 -0
- package/highlevel/methods/bots/answer-bot-guest-chat-query.d.ts +12 -0
- package/highlevel/methods/bots/answer-bot-guest-chat-query.js +21 -0
- package/highlevel/methods/chats/join-chat.cjs +38 -16
- package/highlevel/methods/chats/join-chat.d.cts +20 -6
- package/highlevel/methods/chats/join-chat.d.ts +20 -6
- package/highlevel/methods/chats/join-chat.js +38 -16
- package/highlevel/methods/chats/save-draft.d.cts +4 -1
- package/highlevel/methods/chats/save-draft.d.ts +4 -1
- package/highlevel/methods/messages/send-copy-group.cjs +5 -9
- package/highlevel/methods/messages/send-copy-group.js +5 -9
- package/highlevel/methods.d.cts +3 -0
- package/highlevel/methods.d.ts +3 -0
- package/highlevel/storage/service/peers.cjs +2 -0
- package/highlevel/storage/service/peers.js +2 -0
- package/highlevel/types/files/utils.d.cts +1 -1
- package/highlevel/types/files/utils.d.ts +1 -1
- package/highlevel/types/media/poll.cjs +14 -0
- package/highlevel/types/media/poll.d.cts +6 -0
- package/highlevel/types/media/poll.d.ts +6 -0
- package/highlevel/types/media/poll.js +14 -0
- package/highlevel/types/messages/index.d.cts +1 -0
- package/highlevel/types/messages/index.d.ts +1 -0
- package/highlevel/types/messages/message.cjs +15 -1
- package/highlevel/types/messages/message.d.cts +8 -0
- package/highlevel/types/messages/message.d.ts +8 -0
- package/highlevel/types/messages/message.js +15 -1
- package/highlevel/types/messages/rich-message.cjs +50 -0
- package/highlevel/types/messages/rich-message.d.cts +18 -0
- package/highlevel/types/messages/rich-message.d.ts +18 -0
- package/highlevel/types/messages/rich-message.js +45 -0
- package/highlevel/types/peers/chat-permissions.cjs +6 -0
- package/highlevel/types/peers/chat-permissions.d.cts +4 -0
- package/highlevel/types/peers/chat-permissions.d.ts +4 -0
- package/highlevel/types/peers/chat-permissions.js +6 -0
- package/highlevel/types/peers/full-chat.cjs +6 -0
- package/highlevel/types/peers/full-chat.d.cts +2 -0
- package/highlevel/types/peers/full-chat.d.ts +2 -0
- package/highlevel/types/peers/full-chat.js +6 -0
- package/highlevel/types/peers/user.cjs +8 -0
- package/highlevel/types/peers/user.d.cts +4 -0
- package/highlevel/types/peers/user.d.ts +4 -0
- package/highlevel/types/peers/user.js +8 -0
- package/highlevel/types/updates/bot-guest-chat-query.cjs +39 -0
- package/highlevel/types/updates/bot-guest-chat-query.d.cts +21 -0
- package/highlevel/types/updates/bot-guest-chat-query.d.ts +21 -0
- package/highlevel/types/updates/bot-guest-chat-query.js +34 -0
- package/highlevel/types/updates/index.d.cts +5 -1
- package/highlevel/types/updates/index.d.ts +5 -1
- package/highlevel/types/updates/parse-update.cjs +3 -0
- package/highlevel/types/updates/parse-update.js +3 -0
- package/highlevel/types/updates/user-typing-update.cjs +2 -0
- package/highlevel/types/updates/user-typing-update.js +2 -0
- package/highlevel/updates/manager.cjs +214 -3
- package/highlevel/updates/manager.d.cts +1 -0
- package/highlevel/updates/manager.d.ts +1 -0
- package/highlevel/updates/manager.js +214 -3
- package/highlevel/utils/inspectable.cjs +1 -0
- package/highlevel/utils/inspectable.d.cts +1 -0
- package/highlevel/utils/inspectable.d.ts +1 -0
- package/highlevel/utils/inspectable.js +1 -0
- package/index.cjs +4 -0
- package/index.js +4 -0
- package/methods.cjs +2 -0
- package/methods.js +2 -0
- package/network/flood-control.cjs +149 -0
- package/network/flood-control.d.cts +79 -0
- package/network/flood-control.d.ts +79 -0
- package/network/flood-control.js +144 -0
- package/network/flood-control.test.d.cts +1 -0
- package/network/flood-control.test.d.ts +1 -0
- package/network/mtproto-session.cjs +1 -21
- package/network/mtproto-session.d.cts +1 -5
- package/network/mtproto-session.d.ts +1 -5
- package/network/mtproto-session.js +2 -22
- package/network/multi-session-connection.cjs +26 -16
- package/network/multi-session-connection.d.cts +1 -1
- package/network/multi-session-connection.d.ts +1 -1
- package/network/multi-session-connection.js +26 -16
- package/network/multi-session-connection.test.d.cts +1 -0
- package/network/multi-session-connection.test.d.ts +1 -0
- package/network/network-manager.cjs +3 -2
- package/network/network-manager.d.cts +12 -0
- package/network/network-manager.d.ts +12 -0
- package/network/network-manager.js +3 -2
- package/network/persistent-connection.cjs +25 -1
- package/network/persistent-connection.d.cts +5 -0
- package/network/persistent-connection.d.ts +5 -0
- package/network/persistent-connection.js +25 -1
- package/network/session-connection.cjs +5 -10
- package/network/session-connection.d.cts +0 -2
- package/network/session-connection.d.ts +0 -2
- package/network/session-connection.js +5 -10
- package/package.json +1 -1
- package/tl/api-schema.json +1 -1
- package/tl/binary/reader.cjs +257 -62
- package/tl/binary/reader.js +257 -62
- package/tl/binary/writer.cjs +837 -212
- package/tl/binary/writer.js +837 -212
- package/tl/compat/reader.cjs +31 -0
- package/tl/compat/reader.js +31 -0
- package/tl/index.d.cts +2478 -186
- package/tl/index.d.ts +2478 -186
- package/tl/inner-tl.cjs +34 -10
- package/tl/inner-tl.js +34 -10
- package/utils/binary/compat.cjs +84 -0
- package/utils/binary/compat.js +84 -0
- package/utils/index.d.cts +1 -0
- package/utils/index.d.ts +1 -0
- package/utils/long-utils.cjs +10 -0
- package/utils/long-utils.js +10 -0
- package/utils.cjs +7 -0
- package/utils.js +8 -1
package/tl/binary/writer.cjs
CHANGED
|
@@ -568,6 +568,8 @@ var m = {
|
|
|
568
568
|
if (v.botForumView === true) flags2 |= 65536;
|
|
569
569
|
if (v.botForumCanManageTopics === true) flags2 |= 131072;
|
|
570
570
|
if (v.botCanManageBots === true) flags2 |= 262144;
|
|
571
|
+
if (v.botGuestchat === true) flags2 |= 524288;
|
|
572
|
+
if (v.botGuard === true) flags2 |= 1048576;
|
|
571
573
|
w.uint(flags2);
|
|
572
574
|
w.int53(h(v, "id"));
|
|
573
575
|
if (_accessHash) w.long(v.accessHash);
|
|
@@ -825,7 +827,7 @@ var m = {
|
|
|
825
827
|
if (_reactionsLimit) w.int(v.reactionsLimit);
|
|
826
828
|
},
|
|
827
829
|
"channelFull": function(w, v) {
|
|
828
|
-
w.uint(
|
|
830
|
+
w.uint(2689502522);
|
|
829
831
|
var flags = 0;
|
|
830
832
|
var _participantsCount = v.participantsCount !== void 0;
|
|
831
833
|
if (_participantsCount) flags |= 1;
|
|
@@ -922,6 +924,8 @@ var m = {
|
|
|
922
924
|
if (_sendPaidMessagesStars) flags2 |= 2097152;
|
|
923
925
|
var _mainTab = v.mainTab !== void 0;
|
|
924
926
|
if (_mainTab) flags2 |= 4194304;
|
|
927
|
+
var _guardBotId = v.guardBotId !== void 0;
|
|
928
|
+
if (_guardBotId) flags2 |= 8388608;
|
|
925
929
|
w.uint(flags2);
|
|
926
930
|
w.int53(h(v, "id"));
|
|
927
931
|
w.string(h(v, "about"));
|
|
@@ -968,6 +972,7 @@ var m = {
|
|
|
968
972
|
if (_stargiftsCount) w.int(v.stargiftsCount);
|
|
969
973
|
if (_sendPaidMessagesStars) w.long(v.sendPaidMessagesStars);
|
|
970
974
|
if (_mainTab) w.object(v.mainTab);
|
|
975
|
+
if (_guardBotId) w.int53(v.guardBotId);
|
|
971
976
|
},
|
|
972
977
|
"chatParticipant": function(w, v) {
|
|
973
978
|
w.uint(954703838);
|
|
@@ -1039,7 +1044,7 @@ var m = {
|
|
|
1039
1044
|
if (_peerId) w.object(v.peerId);
|
|
1040
1045
|
},
|
|
1041
1046
|
"message": function(w, v) {
|
|
1042
|
-
w.uint(
|
|
1047
|
+
w.uint(1979759059);
|
|
1043
1048
|
var flags = 0;
|
|
1044
1049
|
if (v.out === true) flags |= 2;
|
|
1045
1050
|
var _fwdFrom = v.fwdFrom !== void 0;
|
|
@@ -1114,6 +1119,10 @@ var m = {
|
|
|
1114
1119
|
if (_summaryFromLanguage) flags2 |= 2048;
|
|
1115
1120
|
var _fromRank = v.fromRank !== void 0;
|
|
1116
1121
|
if (_fromRank) flags2 |= 4096;
|
|
1122
|
+
var _richMessage = v.richMessage !== void 0;
|
|
1123
|
+
if (_richMessage) flags2 |= 8192;
|
|
1124
|
+
var _guestchatViaFrom = v.guestchatViaFrom !== void 0;
|
|
1125
|
+
if (_guestchatViaFrom) flags2 |= 524288;
|
|
1117
1126
|
w.uint(flags2);
|
|
1118
1127
|
w.int(h(v, "id"));
|
|
1119
1128
|
if (_fromId) w.object(v.fromId);
|
|
@@ -1124,6 +1133,7 @@ var m = {
|
|
|
1124
1133
|
if (_fwdFrom) w.object(v.fwdFrom);
|
|
1125
1134
|
if (_viaBotId) w.int53(v.viaBotId);
|
|
1126
1135
|
if (_viaBusinessBotId) w.int53(v.viaBusinessBotId);
|
|
1136
|
+
if (_guestchatViaFrom) w.object(v.guestchatViaFrom);
|
|
1127
1137
|
if (_replyTo) w.object(v.replyTo);
|
|
1128
1138
|
w.int(h(v, "date"));
|
|
1129
1139
|
w.string(h(v, "message"));
|
|
@@ -1147,6 +1157,7 @@ var m = {
|
|
|
1147
1157
|
if (_suggestedPost) w.object(v.suggestedPost);
|
|
1148
1158
|
if (_scheduleRepeatPeriod) w.int(v.scheduleRepeatPeriod);
|
|
1149
1159
|
if (_summaryFromLanguage) w.string(v.summaryFromLanguage);
|
|
1160
|
+
if (_richMessage) w.object(v.richMessage);
|
|
1150
1161
|
},
|
|
1151
1162
|
"messageService": function(w, v) {
|
|
1152
1163
|
w.uint(2055212554);
|
|
@@ -1941,6 +1952,18 @@ var m = {
|
|
|
1941
1952
|
w.boolean(h(v, "prevValue"));
|
|
1942
1953
|
w.boolean(h(v, "newValue"));
|
|
1943
1954
|
},
|
|
1955
|
+
"messageActionPollAppendAnswer": function(w, v) {
|
|
1956
|
+
w.uint(2644626796);
|
|
1957
|
+
w.object(h(v, "answer"));
|
|
1958
|
+
},
|
|
1959
|
+
"messageActionPollDeleteAnswer": function(w, v) {
|
|
1960
|
+
w.uint(966161628);
|
|
1961
|
+
w.object(h(v, "answer"));
|
|
1962
|
+
},
|
|
1963
|
+
"messageActionManagedBotCreated": function(w, v) {
|
|
1964
|
+
w.uint(375414334);
|
|
1965
|
+
w.int53(h(v, "botId"));
|
|
1966
|
+
},
|
|
1944
1967
|
"dialog": function(w, v) {
|
|
1945
1968
|
w.uint(4236900339);
|
|
1946
1969
|
var flags = 0;
|
|
@@ -2069,11 +2092,12 @@ var m = {
|
|
|
2069
2092
|
w.object(h(v, "authorization"));
|
|
2070
2093
|
},
|
|
2071
2094
|
"auth.sentCodePaymentRequired": function(w, v) {
|
|
2072
|
-
w.uint(
|
|
2095
|
+
w.uint(4169301695);
|
|
2073
2096
|
w.string(h(v, "storeProduct"));
|
|
2074
2097
|
w.string(h(v, "phoneCodeHash"));
|
|
2075
2098
|
w.string(h(v, "supportEmailAddress"));
|
|
2076
2099
|
w.string(h(v, "supportEmailSubject"));
|
|
2100
|
+
w.int(h(v, "premiumDays"));
|
|
2077
2101
|
w.string(h(v, "currency"));
|
|
2078
2102
|
w.long(h(v, "amount"));
|
|
2079
2103
|
},
|
|
@@ -2608,6 +2632,9 @@ var m = {
|
|
|
2608
2632
|
"inputMessagesFilterPinned": function(w) {
|
|
2609
2633
|
w.uint(464520273);
|
|
2610
2634
|
},
|
|
2635
|
+
"inputMessagesFilterPoll": function(w) {
|
|
2636
|
+
w.uint(4197173514);
|
|
2637
|
+
},
|
|
2611
2638
|
"updateNewMessage": function(w, v) {
|
|
2612
2639
|
w.uint(522914557);
|
|
2613
2640
|
w.object(h(v, "message"));
|
|
@@ -3315,13 +3342,18 @@ var m = {
|
|
|
3315
3342
|
w.vector(w.int53, h(v, "recentRequesters"));
|
|
3316
3343
|
},
|
|
3317
3344
|
"updateBotChatInviteRequester": function(w, v) {
|
|
3318
|
-
w.uint(
|
|
3345
|
+
w.uint(2092125561);
|
|
3346
|
+
var flags = 0;
|
|
3347
|
+
var _queryId = v.queryId !== void 0;
|
|
3348
|
+
if (_queryId) flags |= 1;
|
|
3349
|
+
w.uint(flags);
|
|
3319
3350
|
w.object(h(v, "peer"));
|
|
3320
3351
|
w.int(h(v, "date"));
|
|
3321
3352
|
w.int53(h(v, "userId"));
|
|
3322
3353
|
w.string(h(v, "about"));
|
|
3323
3354
|
w.object(h(v, "invite"));
|
|
3324
3355
|
w.int(h(v, "qts"));
|
|
3356
|
+
if (_queryId) w.long(v.queryId);
|
|
3325
3357
|
},
|
|
3326
3358
|
"updateMessageReactions": function(w, v) {
|
|
3327
3359
|
w.uint(506035194);
|
|
@@ -3667,6 +3699,26 @@ var m = {
|
|
|
3667
3699
|
w.string(h(v, "rank"));
|
|
3668
3700
|
w.int(h(v, "version"));
|
|
3669
3701
|
},
|
|
3702
|
+
"updateManagedBot": function(w, v) {
|
|
3703
|
+
w.uint(1216408986);
|
|
3704
|
+
w.int53(h(v, "userId"));
|
|
3705
|
+
w.int53(h(v, "botId"));
|
|
3706
|
+
w.int(h(v, "qts"));
|
|
3707
|
+
},
|
|
3708
|
+
"updateBotGuestChatQuery": function(w, v) {
|
|
3709
|
+
w.uint(3453225277);
|
|
3710
|
+
var flags = 0;
|
|
3711
|
+
var _referenceMessages = v.referenceMessages && v.referenceMessages.length;
|
|
3712
|
+
if (_referenceMessages) flags |= 1;
|
|
3713
|
+
w.uint(flags);
|
|
3714
|
+
w.long(h(v, "queryId"));
|
|
3715
|
+
w.object(h(v, "message"));
|
|
3716
|
+
if (_referenceMessages) w.vector(w.object, v.referenceMessages);
|
|
3717
|
+
w.int(h(v, "qts"));
|
|
3718
|
+
},
|
|
3719
|
+
"updateAiComposeTones": function(w) {
|
|
3720
|
+
w.uint(2349830651);
|
|
3721
|
+
},
|
|
3670
3722
|
"updates.state": function(w, v) {
|
|
3671
3723
|
w.uint(2775329342);
|
|
3672
3724
|
w.int(h(v, "pts"));
|
|
@@ -5215,6 +5267,22 @@ var m = {
|
|
|
5215
5267
|
w.int(h(v, "length"));
|
|
5216
5268
|
w.int(h(v, "date"));
|
|
5217
5269
|
},
|
|
5270
|
+
"messageEntityDiffInsert": function(w, v) {
|
|
5271
|
+
w.uint(1903653142);
|
|
5272
|
+
w.int(h(v, "offset"));
|
|
5273
|
+
w.int(h(v, "length"));
|
|
5274
|
+
},
|
|
5275
|
+
"messageEntityDiffReplace": function(w, v) {
|
|
5276
|
+
w.uint(3334596007);
|
|
5277
|
+
w.int(h(v, "offset"));
|
|
5278
|
+
w.int(h(v, "length"));
|
|
5279
|
+
w.string(h(v, "oldText"));
|
|
5280
|
+
},
|
|
5281
|
+
"messageEntityDiffDelete": function(w, v) {
|
|
5282
|
+
w.uint(106086853);
|
|
5283
|
+
w.int(h(v, "offset"));
|
|
5284
|
+
w.int(h(v, "length"));
|
|
5285
|
+
},
|
|
5218
5286
|
"inputChannelEmpty": function(w) {
|
|
5219
5287
|
w.uint(4002160262);
|
|
5220
5288
|
},
|
|
@@ -5985,6 +6053,9 @@ var m = {
|
|
|
5985
6053
|
"topPeerCategoryBotsApp": function(w) {
|
|
5986
6054
|
w.uint(4255022060);
|
|
5987
6055
|
},
|
|
6056
|
+
"topPeerCategoryBotsGuestChat": function(w) {
|
|
6057
|
+
w.uint(1814361053);
|
|
6058
|
+
},
|
|
5988
6059
|
"topPeerCategoryPeers": function(w, v) {
|
|
5989
6060
|
w.uint(4219683473);
|
|
5990
6061
|
w.object(h(v, "category"));
|
|
@@ -6012,7 +6083,7 @@ var m = {
|
|
|
6012
6083
|
if (_date) w.int(v.date);
|
|
6013
6084
|
},
|
|
6014
6085
|
"draftMessage": function(w, v) {
|
|
6015
|
-
w.uint(
|
|
6086
|
+
w.uint(1627271828);
|
|
6016
6087
|
var flags = 0;
|
|
6017
6088
|
if (v.noWebpage === true) flags |= 2;
|
|
6018
6089
|
var _entities = v.entities && v.entities.length;
|
|
@@ -6026,6 +6097,8 @@ var m = {
|
|
|
6026
6097
|
if (_effect) flags |= 128;
|
|
6027
6098
|
var _suggestedPost = v.suggestedPost !== void 0;
|
|
6028
6099
|
if (_suggestedPost) flags |= 256;
|
|
6100
|
+
var _richMessage = v.richMessage !== void 0;
|
|
6101
|
+
if (_richMessage) flags |= 512;
|
|
6029
6102
|
w.uint(flags);
|
|
6030
6103
|
if (_replyTo) w.object(v.replyTo);
|
|
6031
6104
|
w.string(h(v, "message"));
|
|
@@ -6034,6 +6107,7 @@ var m = {
|
|
|
6034
6107
|
w.int(h(v, "date"));
|
|
6035
6108
|
if (_effect) w.long(v.effect);
|
|
6036
6109
|
if (_suggestedPost) w.object(v.suggestedPost);
|
|
6110
|
+
if (_richMessage) w.object(v.richMessage);
|
|
6037
6111
|
},
|
|
6038
6112
|
"messages.featuredStickersNotModified": function(w, v) {
|
|
6039
6113
|
w.uint(3336309862);
|
|
@@ -6277,6 +6351,7 @@ var m = {
|
|
|
6277
6351
|
var _webpageId = v.webpageId !== void 0;
|
|
6278
6352
|
var _flags_0 = _url || _webpageId;
|
|
6279
6353
|
if (_flags_0) flags |= 1;
|
|
6354
|
+
if (v.spoiler === true) flags |= 2;
|
|
6280
6355
|
w.uint(flags);
|
|
6281
6356
|
w.long(h(v, "photoId"));
|
|
6282
6357
|
w.object(h(v, "caption"));
|
|
@@ -6288,6 +6363,7 @@ var m = {
|
|
|
6288
6363
|
var flags = 0;
|
|
6289
6364
|
if (v.autoplay === true) flags |= 1;
|
|
6290
6365
|
if (v.loop === true) flags |= 2;
|
|
6366
|
+
if (v.spoiler === true) flags |= 4;
|
|
6291
6367
|
w.uint(flags);
|
|
6292
6368
|
w.long(h(v, "videoId"));
|
|
6293
6369
|
w.object(h(v, "caption"));
|
|
@@ -6362,8 +6438,17 @@ var m = {
|
|
|
6362
6438
|
w.vector(w.object, h(v, "rows"));
|
|
6363
6439
|
},
|
|
6364
6440
|
"pageBlockOrderedList": function(w, v) {
|
|
6365
|
-
w.uint(
|
|
6441
|
+
w.uint(534181569);
|
|
6442
|
+
var flags = 0;
|
|
6443
|
+
var _start = v.start !== void 0;
|
|
6444
|
+
if (_start) flags |= 1;
|
|
6445
|
+
var _type = v.type !== void 0;
|
|
6446
|
+
if (_type) flags |= 2;
|
|
6447
|
+
if (v.reversed === true) flags |= 4;
|
|
6448
|
+
w.uint(flags);
|
|
6366
6449
|
w.vector(w.object, h(v, "items"));
|
|
6450
|
+
if (_start) w.int(v.start);
|
|
6451
|
+
if (_type) w.string(v.type);
|
|
6367
6452
|
},
|
|
6368
6453
|
"pageBlockDetails": function(w, v) {
|
|
6369
6454
|
w.uint(1987480557);
|
|
@@ -7674,22 +7759,54 @@ var m = {
|
|
|
7674
7759
|
w.object(h(v, "credit"));
|
|
7675
7760
|
},
|
|
7676
7761
|
"pageListItemText": function(w, v) {
|
|
7677
|
-
w.uint(
|
|
7762
|
+
w.uint(794323004);
|
|
7763
|
+
var flags = 0;
|
|
7764
|
+
if (v.checkbox === true) flags |= 1;
|
|
7765
|
+
if (v.checked === true) flags |= 2;
|
|
7766
|
+
w.uint(flags);
|
|
7678
7767
|
w.object(h(v, "text"));
|
|
7679
7768
|
},
|
|
7680
7769
|
"pageListItemBlocks": function(w, v) {
|
|
7681
|
-
w.uint(
|
|
7770
|
+
w.uint(1674209194);
|
|
7771
|
+
var flags = 0;
|
|
7772
|
+
if (v.checkbox === true) flags |= 1;
|
|
7773
|
+
if (v.checked === true) flags |= 2;
|
|
7774
|
+
w.uint(flags);
|
|
7682
7775
|
w.vector(w.object, h(v, "blocks"));
|
|
7683
7776
|
},
|
|
7684
7777
|
"pageListOrderedItemText": function(w, v) {
|
|
7685
|
-
w.uint(
|
|
7686
|
-
|
|
7778
|
+
w.uint(352522633);
|
|
7779
|
+
var flags = 0;
|
|
7780
|
+
if (v.checkbox === true) flags |= 1;
|
|
7781
|
+
if (v.checked === true) flags |= 2;
|
|
7782
|
+
var _num = v.num !== void 0;
|
|
7783
|
+
if (_num) flags |= 4;
|
|
7784
|
+
var _value = v.value !== void 0;
|
|
7785
|
+
if (_value) flags |= 8;
|
|
7786
|
+
var _type = v.type !== void 0;
|
|
7787
|
+
if (_type) flags |= 16;
|
|
7788
|
+
w.uint(flags);
|
|
7789
|
+
if (_num) w.string(v.num);
|
|
7687
7790
|
w.object(h(v, "text"));
|
|
7791
|
+
if (_value) w.int(v.value);
|
|
7792
|
+
if (_type) w.string(v.type);
|
|
7688
7793
|
},
|
|
7689
7794
|
"pageListOrderedItemBlocks": function(w, v) {
|
|
7690
|
-
w.uint(
|
|
7691
|
-
|
|
7795
|
+
w.uint(2415056368);
|
|
7796
|
+
var flags = 0;
|
|
7797
|
+
if (v.checkbox === true) flags |= 1;
|
|
7798
|
+
if (v.checked === true) flags |= 2;
|
|
7799
|
+
var _num = v.num !== void 0;
|
|
7800
|
+
if (_num) flags |= 4;
|
|
7801
|
+
var _value = v.value !== void 0;
|
|
7802
|
+
if (_value) flags |= 8;
|
|
7803
|
+
var _type = v.type !== void 0;
|
|
7804
|
+
if (_type) flags |= 16;
|
|
7805
|
+
w.uint(flags);
|
|
7806
|
+
if (_num) w.string(v.num);
|
|
7692
7807
|
w.vector(w.object, h(v, "blocks"));
|
|
7808
|
+
if (_value) w.int(v.value);
|
|
7809
|
+
if (_type) w.string(v.type);
|
|
7693
7810
|
},
|
|
7694
7811
|
"pageRelatedArticle": function(w, v) {
|
|
7695
7812
|
w.uint(3012615176);
|
|
@@ -7758,8 +7875,17 @@ var m = {
|
|
|
7758
7875
|
if (_flags_1) w.object(v.addedBy);
|
|
7759
7876
|
if (_flags_1) w.int(v.date);
|
|
7760
7877
|
},
|
|
7878
|
+
"inputPollAnswer": function(w, v) {
|
|
7879
|
+
w.uint(429911446);
|
|
7880
|
+
var flags = 0;
|
|
7881
|
+
var _media = v.media !== void 0;
|
|
7882
|
+
if (_media) flags |= 1;
|
|
7883
|
+
w.uint(flags);
|
|
7884
|
+
w.object(h(v, "text"));
|
|
7885
|
+
if (_media) w.object(v.media);
|
|
7886
|
+
},
|
|
7761
7887
|
"poll": function(w, v) {
|
|
7762
|
-
w.uint(
|
|
7888
|
+
w.uint(2523803071);
|
|
7763
7889
|
w.long(h(v, "id"));
|
|
7764
7890
|
var flags = 0;
|
|
7765
7891
|
if (v.closed === true) flags |= 1;
|
|
@@ -7775,11 +7901,15 @@ var m = {
|
|
|
7775
7901
|
if (v.shuffleAnswers === true) flags |= 256;
|
|
7776
7902
|
if (v.hideResultsUntilClose === true) flags |= 512;
|
|
7777
7903
|
if (v.creator === true) flags |= 1024;
|
|
7904
|
+
if (v.subscribersOnly === true) flags |= 2048;
|
|
7905
|
+
var _countriesIso2 = v.countriesIso2 && v.countriesIso2.length;
|
|
7906
|
+
if (_countriesIso2) flags |= 4096;
|
|
7778
7907
|
w.uint(flags);
|
|
7779
7908
|
w.object(h(v, "question"));
|
|
7780
7909
|
w.vector(w.object, h(v, "answers"));
|
|
7781
7910
|
if (_closePeriod) w.int(v.closePeriod);
|
|
7782
7911
|
if (_closeDate) w.int(v.closeDate);
|
|
7912
|
+
if (_countriesIso2) w.vector(w.string, v.countriesIso2);
|
|
7783
7913
|
w.long(h(v, "hash"));
|
|
7784
7914
|
},
|
|
7785
7915
|
"pollAnswerVoters": function(w, v) {
|
|
@@ -7813,6 +7943,7 @@ var m = {
|
|
|
7813
7943
|
var _solutionMedia = v.solutionMedia !== void 0;
|
|
7814
7944
|
if (_solutionMedia) flags |= 32;
|
|
7815
7945
|
if (v.hasUnreadVotes === true) flags |= 64;
|
|
7946
|
+
if (v.canViewStats === true) flags |= 128;
|
|
7816
7947
|
w.uint(flags);
|
|
7817
7948
|
if (_results) w.vector(w.object, v.results);
|
|
7818
7949
|
if (_totalVoters) w.int(v.totalVoters);
|
|
@@ -7875,6 +8006,7 @@ var m = {
|
|
|
7875
8006
|
if (v.sendDocs === true) flags |= 16777216;
|
|
7876
8007
|
if (v.sendPlain === true) flags |= 33554432;
|
|
7877
8008
|
if (v.editRank === true) flags |= 67108864;
|
|
8009
|
+
if (v.sendReactions === true) flags |= 134217728;
|
|
7878
8010
|
w.uint(flags);
|
|
7879
8011
|
w.int(h(v, "untilDate"));
|
|
7880
8012
|
},
|
|
@@ -8252,6 +8384,10 @@ var m = {
|
|
|
8252
8384
|
w.object(h(v, "gift"));
|
|
8253
8385
|
w.int(h(v, "endDate"));
|
|
8254
8386
|
},
|
|
8387
|
+
"webPageAttributeAiComposeTone": function(w, v) {
|
|
8388
|
+
w.uint(2005007896);
|
|
8389
|
+
w.long(h(v, "emojiId"));
|
|
8390
|
+
},
|
|
8255
8391
|
"messages.votesList": function(w, v) {
|
|
8256
8392
|
w.uint(1218005070);
|
|
8257
8393
|
var flags = 0;
|
|
@@ -8582,6 +8718,7 @@ var m = {
|
|
|
8582
8718
|
if (_todoItemId) flags |= 2048;
|
|
8583
8719
|
var _pollOption = v.pollOption !== void 0;
|
|
8584
8720
|
if (_pollOption) flags |= 4096;
|
|
8721
|
+
if (v.replyToEphemeral === true) flags |= 8192;
|
|
8585
8722
|
w.uint(flags);
|
|
8586
8723
|
if (_replyToMsgId) w.int(v.replyToMsgId);
|
|
8587
8724
|
if (_replyToPeerId) w.object(v.replyToPeerId);
|
|
@@ -9193,6 +9330,7 @@ var m = {
|
|
|
9193
9330
|
if (_queryId) flags |= 1;
|
|
9194
9331
|
if (v.fullsize === true) flags |= 2;
|
|
9195
9332
|
if (v.fullscreen === true) flags |= 4;
|
|
9333
|
+
if (v.sameOrigin === true) flags |= 8;
|
|
9196
9334
|
w.uint(flags);
|
|
9197
9335
|
if (_queryId) w.long(v.queryId);
|
|
9198
9336
|
w.string(h(v, "url"));
|
|
@@ -9475,12 +9613,13 @@ var m = {
|
|
|
9475
9613
|
w.int(h(v, "users"));
|
|
9476
9614
|
},
|
|
9477
9615
|
"inputStorePaymentAuthCode": function(w, v) {
|
|
9478
|
-
w.uint(
|
|
9616
|
+
w.uint(1069645911);
|
|
9479
9617
|
var flags = 0;
|
|
9480
9618
|
if (v.restore === true) flags |= 1;
|
|
9481
9619
|
w.uint(flags);
|
|
9482
9620
|
w.string(h(v, "phoneNumber"));
|
|
9483
9621
|
w.string(h(v, "phoneCodeHash"));
|
|
9622
|
+
w.int(h(v, "premiumDays"));
|
|
9484
9623
|
w.string(h(v, "currency"));
|
|
9485
9624
|
w.long(h(v, "amount"));
|
|
9486
9625
|
},
|
|
@@ -9761,6 +9900,18 @@ var m = {
|
|
|
9761
9900
|
if (_userAdminRights) w.object(v.userAdminRights);
|
|
9762
9901
|
if (_botAdminRights) w.object(v.botAdminRights);
|
|
9763
9902
|
},
|
|
9903
|
+
"requestPeerTypeCreateBot": function(w, v) {
|
|
9904
|
+
w.uint(1048699e3);
|
|
9905
|
+
var flags = 0;
|
|
9906
|
+
if (v.botManaged === true) flags |= 1;
|
|
9907
|
+
var _suggestedName = v.suggestedName !== void 0;
|
|
9908
|
+
if (_suggestedName) flags |= 2;
|
|
9909
|
+
var _suggestedUsername = v.suggestedUsername !== void 0;
|
|
9910
|
+
if (_suggestedUsername) flags |= 4;
|
|
9911
|
+
w.uint(flags);
|
|
9912
|
+
if (_suggestedName) w.string(v.suggestedName);
|
|
9913
|
+
if (_suggestedUsername) w.string(v.suggestedUsername);
|
|
9914
|
+
},
|
|
9764
9915
|
"emojiListNotModified": function(w) {
|
|
9765
9916
|
w.uint(1209970170);
|
|
9766
9917
|
},
|
|
@@ -10809,12 +10960,21 @@ var m = {
|
|
|
10809
10960
|
w.uint(1603398491);
|
|
10810
10961
|
},
|
|
10811
10962
|
"connectedBot": function(w, v) {
|
|
10812
|
-
w.uint(
|
|
10963
|
+
w.uint(54448129);
|
|
10813
10964
|
var flags = 0;
|
|
10965
|
+
var _device = v.device !== void 0;
|
|
10966
|
+
if (_device) flags |= 1;
|
|
10967
|
+
var _date = v.date !== void 0;
|
|
10968
|
+
if (_date) flags |= 2;
|
|
10969
|
+
var _location = v.location !== void 0;
|
|
10970
|
+
if (_location) flags |= 4;
|
|
10814
10971
|
w.uint(flags);
|
|
10815
10972
|
w.int53(h(v, "botId"));
|
|
10816
10973
|
w.object(h(v, "recipients"));
|
|
10817
10974
|
w.object(h(v, "rights"));
|
|
10975
|
+
if (_device) w.string(v.device);
|
|
10976
|
+
if (_date) w.int(v.date);
|
|
10977
|
+
if (_location) w.string(v.location);
|
|
10818
10978
|
},
|
|
10819
10979
|
"account.connectedBots": function(w, v) {
|
|
10820
10980
|
w.uint(400029819);
|
|
@@ -12436,64 +12596,6 @@ var m = {
|
|
|
12436
12596
|
w.uint(flags);
|
|
12437
12597
|
if (_icon) w.long(v.icon);
|
|
12438
12598
|
},
|
|
12439
|
-
"messageActionPollAppendAnswer": function(w, v) {
|
|
12440
|
-
w.uint(2644626796);
|
|
12441
|
-
w.object(h(v, "answer"));
|
|
12442
|
-
},
|
|
12443
|
-
"messageActionPollDeleteAnswer": function(w, v) {
|
|
12444
|
-
w.uint(966161628);
|
|
12445
|
-
w.object(h(v, "answer"));
|
|
12446
|
-
},
|
|
12447
|
-
"messageActionManagedBotCreated": function(w, v) {
|
|
12448
|
-
w.uint(375414334);
|
|
12449
|
-
w.int53(h(v, "botId"));
|
|
12450
|
-
},
|
|
12451
|
-
"inputMessagesFilterPoll": function(w) {
|
|
12452
|
-
w.uint(4197173514);
|
|
12453
|
-
},
|
|
12454
|
-
"updateManagedBot": function(w, v) {
|
|
12455
|
-
w.uint(1216408986);
|
|
12456
|
-
w.int53(h(v, "userId"));
|
|
12457
|
-
w.int53(h(v, "botId"));
|
|
12458
|
-
w.int(h(v, "qts"));
|
|
12459
|
-
},
|
|
12460
|
-
"messageEntityDiffInsert": function(w, v) {
|
|
12461
|
-
w.uint(1903653142);
|
|
12462
|
-
w.int(h(v, "offset"));
|
|
12463
|
-
w.int(h(v, "length"));
|
|
12464
|
-
},
|
|
12465
|
-
"messageEntityDiffReplace": function(w, v) {
|
|
12466
|
-
w.uint(3334596007);
|
|
12467
|
-
w.int(h(v, "offset"));
|
|
12468
|
-
w.int(h(v, "length"));
|
|
12469
|
-
w.string(h(v, "oldText"));
|
|
12470
|
-
},
|
|
12471
|
-
"messageEntityDiffDelete": function(w, v) {
|
|
12472
|
-
w.uint(106086853);
|
|
12473
|
-
w.int(h(v, "offset"));
|
|
12474
|
-
w.int(h(v, "length"));
|
|
12475
|
-
},
|
|
12476
|
-
"inputPollAnswer": function(w, v) {
|
|
12477
|
-
w.uint(429911446);
|
|
12478
|
-
var flags = 0;
|
|
12479
|
-
var _media = v.media !== void 0;
|
|
12480
|
-
if (_media) flags |= 1;
|
|
12481
|
-
w.uint(flags);
|
|
12482
|
-
w.object(h(v, "text"));
|
|
12483
|
-
if (_media) w.object(v.media);
|
|
12484
|
-
},
|
|
12485
|
-
"requestPeerTypeCreateBot": function(w, v) {
|
|
12486
|
-
w.uint(1048699e3);
|
|
12487
|
-
var flags = 0;
|
|
12488
|
-
if (v.botManaged === true) flags |= 1;
|
|
12489
|
-
var _suggestedName = v.suggestedName !== void 0;
|
|
12490
|
-
if (_suggestedName) flags |= 2;
|
|
12491
|
-
var _suggestedUsername = v.suggestedUsername !== void 0;
|
|
12492
|
-
if (_suggestedUsername) flags |= 4;
|
|
12493
|
-
w.uint(flags);
|
|
12494
|
-
if (_suggestedName) w.string(v.suggestedName);
|
|
12495
|
-
if (_suggestedUsername) w.string(v.suggestedUsername);
|
|
12496
|
-
},
|
|
12497
12599
|
"inputMessageReadMetric": function(w, v) {
|
|
12498
12600
|
w.uint(1076577429);
|
|
12499
12601
|
w.int(h(v, "msgId"));
|
|
@@ -12520,78 +12622,431 @@ var m = {
|
|
|
12520
12622
|
w.object(h(v, "resultText"));
|
|
12521
12623
|
if (_diffText) w.object(v.diffText);
|
|
12522
12624
|
},
|
|
12523
|
-
"
|
|
12524
|
-
w.uint(
|
|
12625
|
+
"stats.pollStats": function(w, v) {
|
|
12626
|
+
w.uint(697941741);
|
|
12627
|
+
w.object(h(v, "votesGraph"));
|
|
12628
|
+
},
|
|
12629
|
+
"inputAiComposeToneDefault": function(w, v) {
|
|
12630
|
+
w.uint(535407039);
|
|
12631
|
+
w.string(h(v, "tone"));
|
|
12632
|
+
},
|
|
12633
|
+
"inputAiComposeToneID": function(w, v) {
|
|
12634
|
+
w.uint(125026432);
|
|
12635
|
+
w.long(h(v, "id"));
|
|
12636
|
+
w.long(h(v, "accessHash"));
|
|
12637
|
+
},
|
|
12638
|
+
"inputAiComposeToneSlug": function(w, v) {
|
|
12639
|
+
w.uint(530584407);
|
|
12640
|
+
w.string(h(v, "slug"));
|
|
12641
|
+
},
|
|
12642
|
+
"aiComposeTone": function(w, v) {
|
|
12643
|
+
w.uint(3489021609);
|
|
12525
12644
|
var flags = 0;
|
|
12526
|
-
if (v.
|
|
12645
|
+
if (v.creator === true) flags |= 1;
|
|
12646
|
+
var _emojiId = v.emojiId !== void 0;
|
|
12647
|
+
if (_emojiId) flags |= 2;
|
|
12648
|
+
var _installsCount = v.installsCount !== void 0;
|
|
12649
|
+
if (_installsCount) flags |= 4;
|
|
12650
|
+
var _authorId = v.authorId !== void 0;
|
|
12651
|
+
if (_authorId) flags |= 8;
|
|
12652
|
+
var _prompt = v.prompt !== void 0;
|
|
12653
|
+
if (_prompt) flags |= 16;
|
|
12654
|
+
var _exampleEnglish = v.exampleEnglish !== void 0;
|
|
12655
|
+
if (_exampleEnglish) flags |= 32;
|
|
12527
12656
|
w.uint(flags);
|
|
12528
|
-
w.
|
|
12529
|
-
w.
|
|
12657
|
+
w.long(h(v, "id"));
|
|
12658
|
+
w.long(h(v, "accessHash"));
|
|
12659
|
+
w.string(h(v, "slug"));
|
|
12660
|
+
w.string(h(v, "title"));
|
|
12661
|
+
if (_emojiId) w.long(v.emojiId);
|
|
12662
|
+
if (_prompt) w.string(v.prompt);
|
|
12663
|
+
if (_installsCount) w.int(v.installsCount);
|
|
12664
|
+
if (_authorId) w.int53(v.authorId);
|
|
12665
|
+
if (_exampleEnglish) w.object(v.exampleEnglish);
|
|
12530
12666
|
},
|
|
12531
|
-
"
|
|
12532
|
-
w.uint(
|
|
12667
|
+
"aiComposeToneDefault": function(w, v) {
|
|
12668
|
+
w.uint(2611831828);
|
|
12669
|
+
w.string(h(v, "tone"));
|
|
12670
|
+
w.long(h(v, "emojiId"));
|
|
12671
|
+
w.string(h(v, "title"));
|
|
12672
|
+
},
|
|
12673
|
+
"aicompose.tonesNotModified": function(w) {
|
|
12674
|
+
w.uint(3254018307);
|
|
12675
|
+
},
|
|
12676
|
+
"aicompose.tones": function(w, v) {
|
|
12677
|
+
w.uint(1822232318);
|
|
12678
|
+
w.long(h(v, "hash"));
|
|
12679
|
+
w.vector(w.object, h(v, "tones"));
|
|
12680
|
+
w.vector(w.object, h(v, "users"));
|
|
12681
|
+
},
|
|
12682
|
+
"aiComposeToneExample": function(w, v) {
|
|
12683
|
+
w.uint(4057344236);
|
|
12684
|
+
w.object(h(v, "from"));
|
|
12685
|
+
w.object(h(v, "to"));
|
|
12686
|
+
},
|
|
12687
|
+
"bots.accessSettings": function(w, v) {
|
|
12688
|
+
w.uint(3709845395);
|
|
12533
12689
|
var flags = 0;
|
|
12534
|
-
|
|
12535
|
-
|
|
12690
|
+
if (v.restricted === true) flags |= 1;
|
|
12691
|
+
var _addUsers = v.addUsers && v.addUsers.length;
|
|
12692
|
+
if (_addUsers) flags |= 2;
|
|
12536
12693
|
w.uint(flags);
|
|
12537
|
-
w.
|
|
12538
|
-
if (_order) w.vector(w.int, v.order);
|
|
12694
|
+
if (_addUsers) w.vector(w.object, v.addUsers);
|
|
12539
12695
|
},
|
|
12540
|
-
"
|
|
12541
|
-
w.uint(
|
|
12542
|
-
w.
|
|
12543
|
-
w.
|
|
12696
|
+
"updateJoinChatWebViewDecision": function(w, v) {
|
|
12697
|
+
w.uint(3182198384);
|
|
12698
|
+
w.object(h(v, "peer"));
|
|
12699
|
+
w.long(h(v, "queryId"));
|
|
12700
|
+
w.object(h(v, "result"));
|
|
12544
12701
|
},
|
|
12545
|
-
"
|
|
12546
|
-
w.uint(
|
|
12547
|
-
|
|
12548
|
-
|
|
12702
|
+
"updateNewBotConnection": function(w, v) {
|
|
12703
|
+
w.uint(2988475302);
|
|
12704
|
+
var flags = 0;
|
|
12705
|
+
if (v.confirmed === true) flags |= 1;
|
|
12706
|
+
var _date = v.date !== void 0;
|
|
12707
|
+
var _device = v.device !== void 0;
|
|
12708
|
+
var _location = v.location !== void 0;
|
|
12709
|
+
var _flags_1 = _date || _device || _location;
|
|
12710
|
+
if (_flags_1) flags |= 2;
|
|
12711
|
+
w.uint(flags);
|
|
12712
|
+
w.int53(h(v, "botId"));
|
|
12713
|
+
if (_flags_1) w.int(v.date);
|
|
12714
|
+
if (_flags_1) w.string(v.device);
|
|
12715
|
+
if (_flags_1) w.string(v.location);
|
|
12549
12716
|
},
|
|
12550
|
-
"
|
|
12551
|
-
w.uint(
|
|
12717
|
+
"updateWebBrowserSettings": function(w, v) {
|
|
12718
|
+
w.uint(3281660638);
|
|
12552
12719
|
var flags = 0;
|
|
12553
|
-
|
|
12554
|
-
if (
|
|
12555
|
-
var _params = v.params !== void 0;
|
|
12556
|
-
if (_params) flags |= 2;
|
|
12720
|
+
if (v.openExternalBrowser === true) flags |= 1;
|
|
12721
|
+
if (v.displayCloseButton === true) flags |= 2;
|
|
12557
12722
|
w.uint(flags);
|
|
12558
|
-
w.int(h(v, "apiId"));
|
|
12559
|
-
w.string(h(v, "deviceModel"));
|
|
12560
|
-
w.string(h(v, "systemVersion"));
|
|
12561
|
-
w.string(h(v, "appVersion"));
|
|
12562
|
-
w.string(h(v, "systemLangCode"));
|
|
12563
|
-
w.string(h(v, "langPack"));
|
|
12564
|
-
w.string(h(v, "langCode"));
|
|
12565
|
-
if (_proxy) w.object(v.proxy);
|
|
12566
|
-
if (_params) w.object(v.params);
|
|
12567
|
-
w.object(h(v, "query"));
|
|
12568
12723
|
},
|
|
12569
|
-
"
|
|
12570
|
-
w.uint(
|
|
12571
|
-
|
|
12572
|
-
|
|
12724
|
+
"updateWebBrowserException": function(w, v) {
|
|
12725
|
+
w.uint(335872721);
|
|
12726
|
+
var flags = 0;
|
|
12727
|
+
var _openExternalBrowser = v.openExternalBrowser !== void 0;
|
|
12728
|
+
if (_openExternalBrowser) flags |= 1;
|
|
12729
|
+
if (v.delete === true) flags |= 2;
|
|
12730
|
+
w.uint(flags);
|
|
12731
|
+
if (_openExternalBrowser) w.boolean(v.openExternalBrowser);
|
|
12732
|
+
w.object(h(v, "exception"));
|
|
12573
12733
|
},
|
|
12574
|
-
"
|
|
12575
|
-
w.uint(
|
|
12576
|
-
w.
|
|
12734
|
+
"inputSendMessageRichMessageDraftAction": function(w, v) {
|
|
12735
|
+
w.uint(3803331409);
|
|
12736
|
+
w.long(h(v, "randomId"));
|
|
12737
|
+
w.object(h(v, "richMessage"));
|
|
12577
12738
|
},
|
|
12578
|
-
"
|
|
12579
|
-
w.uint(
|
|
12580
|
-
w.
|
|
12581
|
-
w.object(h(v, "
|
|
12739
|
+
"sendMessageRichMessageDraftAction": function(w, v) {
|
|
12740
|
+
w.uint(2731222265);
|
|
12741
|
+
w.long(h(v, "randomId"));
|
|
12742
|
+
w.object(h(v, "richMessage"));
|
|
12582
12743
|
},
|
|
12583
|
-
"
|
|
12584
|
-
w.uint(
|
|
12585
|
-
|
|
12586
|
-
|
|
12744
|
+
"inputBotInlineMessageRichMessage": function(w, v) {
|
|
12745
|
+
w.uint(3023959404);
|
|
12746
|
+
var flags = 0;
|
|
12747
|
+
var _replyMarkup = v.replyMarkup !== void 0;
|
|
12748
|
+
if (_replyMarkup) flags |= 4;
|
|
12749
|
+
w.uint(flags);
|
|
12750
|
+
if (_replyMarkup) w.object(v.replyMarkup);
|
|
12751
|
+
w.object(h(v, "richMessage"));
|
|
12587
12752
|
},
|
|
12588
|
-
"
|
|
12589
|
-
w.uint(
|
|
12590
|
-
|
|
12591
|
-
|
|
12753
|
+
"botInlineMessageRichMessage": function(w, v) {
|
|
12754
|
+
w.uint(174161531);
|
|
12755
|
+
var flags = 0;
|
|
12756
|
+
var _replyMarkup = v.replyMarkup !== void 0;
|
|
12757
|
+
if (_replyMarkup) flags |= 4;
|
|
12758
|
+
w.uint(flags);
|
|
12759
|
+
if (_replyMarkup) w.object(v.replyMarkup);
|
|
12760
|
+
w.object(h(v, "richMessage"));
|
|
12592
12761
|
},
|
|
12593
|
-
"
|
|
12594
|
-
w.uint(
|
|
12762
|
+
"textMath": function(w, v) {
|
|
12763
|
+
w.uint(2637081751);
|
|
12764
|
+
w.string(h(v, "source"));
|
|
12765
|
+
},
|
|
12766
|
+
"textCustomEmoji": function(w, v) {
|
|
12767
|
+
w.uint(2724288192);
|
|
12768
|
+
w.long(h(v, "documentId"));
|
|
12769
|
+
w.string(h(v, "alt"));
|
|
12770
|
+
},
|
|
12771
|
+
"textSpoiler": function(w, v) {
|
|
12772
|
+
w.uint(1277844834);
|
|
12773
|
+
w.object(h(v, "text"));
|
|
12774
|
+
},
|
|
12775
|
+
"textMention": function(w, v) {
|
|
12776
|
+
w.uint(3441741636);
|
|
12777
|
+
w.object(h(v, "text"));
|
|
12778
|
+
},
|
|
12779
|
+
"textHashtag": function(w, v) {
|
|
12780
|
+
w.uint(1368728810);
|
|
12781
|
+
w.object(h(v, "text"));
|
|
12782
|
+
},
|
|
12783
|
+
"textBotCommand": function(w, v) {
|
|
12784
|
+
w.uint(50276819);
|
|
12785
|
+
w.object(h(v, "text"));
|
|
12786
|
+
},
|
|
12787
|
+
"textCashtag": function(w, v) {
|
|
12788
|
+
w.uint(2073958401);
|
|
12789
|
+
w.object(h(v, "text"));
|
|
12790
|
+
},
|
|
12791
|
+
"textAutoUrl": function(w, v) {
|
|
12792
|
+
w.uint(2892661674);
|
|
12793
|
+
w.object(h(v, "text"));
|
|
12794
|
+
},
|
|
12795
|
+
"textAutoEmail": function(w, v) {
|
|
12796
|
+
w.uint(3310789725);
|
|
12797
|
+
w.object(h(v, "text"));
|
|
12798
|
+
},
|
|
12799
|
+
"textAutoPhone": function(w, v) {
|
|
12800
|
+
w.uint(616720265);
|
|
12801
|
+
w.object(h(v, "text"));
|
|
12802
|
+
},
|
|
12803
|
+
"textBankCard": function(w, v) {
|
|
12804
|
+
w.uint(3109454125);
|
|
12805
|
+
w.object(h(v, "text"));
|
|
12806
|
+
},
|
|
12807
|
+
"textMentionName": function(w, v) {
|
|
12808
|
+
w.uint(27917308);
|
|
12809
|
+
w.object(h(v, "text"));
|
|
12810
|
+
w.int53(h(v, "userId"));
|
|
12811
|
+
},
|
|
12812
|
+
"textDate": function(w, v) {
|
|
12813
|
+
w.uint(2780061227);
|
|
12814
|
+
var flags = 0;
|
|
12815
|
+
if (v.relative === true) flags |= 1;
|
|
12816
|
+
if (v.shortTime === true) flags |= 2;
|
|
12817
|
+
if (v.longTime === true) flags |= 4;
|
|
12818
|
+
if (v.shortDate === true) flags |= 8;
|
|
12819
|
+
if (v.longDate === true) flags |= 16;
|
|
12820
|
+
if (v.dayOfWeek === true) flags |= 32;
|
|
12821
|
+
w.uint(flags);
|
|
12822
|
+
w.object(h(v, "text"));
|
|
12823
|
+
w.int(h(v, "date"));
|
|
12824
|
+
},
|
|
12825
|
+
"pageBlockHeading1": function(w, v) {
|
|
12826
|
+
w.uint(3137275695);
|
|
12827
|
+
w.object(h(v, "text"));
|
|
12828
|
+
},
|
|
12829
|
+
"pageBlockHeading2": function(w, v) {
|
|
12830
|
+
w.uint(158018284);
|
|
12831
|
+
w.object(h(v, "text"));
|
|
12832
|
+
},
|
|
12833
|
+
"pageBlockHeading3": function(w, v) {
|
|
12834
|
+
w.uint(1743204781);
|
|
12835
|
+
w.object(h(v, "text"));
|
|
12836
|
+
},
|
|
12837
|
+
"pageBlockHeading4": function(w, v) {
|
|
12838
|
+
w.uint(3039983403);
|
|
12839
|
+
w.object(h(v, "text"));
|
|
12840
|
+
},
|
|
12841
|
+
"pageBlockHeading5": function(w, v) {
|
|
12842
|
+
w.uint(3686689898);
|
|
12843
|
+
w.object(h(v, "text"));
|
|
12844
|
+
},
|
|
12845
|
+
"pageBlockHeading6": function(w, v) {
|
|
12846
|
+
w.uint(1747599785);
|
|
12847
|
+
w.object(h(v, "text"));
|
|
12848
|
+
},
|
|
12849
|
+
"pageBlockMath": function(w, v) {
|
|
12850
|
+
w.uint(1493699616);
|
|
12851
|
+
w.string(h(v, "source"));
|
|
12852
|
+
},
|
|
12853
|
+
"pageBlockThinking": function(w, v) {
|
|
12854
|
+
w.uint(1009361890);
|
|
12855
|
+
w.object(h(v, "text"));
|
|
12856
|
+
},
|
|
12857
|
+
"inputPageBlockMap": function(w, v) {
|
|
12858
|
+
w.uint(1464557951);
|
|
12859
|
+
w.object(h(v, "geo"));
|
|
12860
|
+
w.int(h(v, "zoom"));
|
|
12861
|
+
w.int(h(v, "w"));
|
|
12862
|
+
w.int(h(v, "h"));
|
|
12863
|
+
w.object(h(v, "caption"));
|
|
12864
|
+
},
|
|
12865
|
+
"pageBlockBlockquoteBlocks": function(w, v) {
|
|
12866
|
+
w.uint(242108356);
|
|
12867
|
+
w.vector(w.object, h(v, "blocks"));
|
|
12868
|
+
w.object(h(v, "caption"));
|
|
12869
|
+
},
|
|
12870
|
+
"messages.chatInviteJoinResultOk": function(w, v) {
|
|
12871
|
+
w.uint(1146512295);
|
|
12872
|
+
w.object(h(v, "updates"));
|
|
12873
|
+
},
|
|
12874
|
+
"messages.chatInviteJoinResultWebView": function(w, v) {
|
|
12875
|
+
w.uint(793887543);
|
|
12876
|
+
w.int53(h(v, "botId"));
|
|
12877
|
+
w.object(h(v, "webview"));
|
|
12878
|
+
w.vector(w.object, h(v, "users"));
|
|
12879
|
+
},
|
|
12880
|
+
"joinChatBotResultApproved": function(w) {
|
|
12881
|
+
w.uint(2920622697);
|
|
12882
|
+
},
|
|
12883
|
+
"joinChatBotResultDeclined": function(w) {
|
|
12884
|
+
w.uint(251265428);
|
|
12885
|
+
},
|
|
12886
|
+
"joinChatBotResultQueued": function(w) {
|
|
12887
|
+
w.uint(2560862272);
|
|
12888
|
+
},
|
|
12889
|
+
"joinChatBotResultWebView": function(w, v) {
|
|
12890
|
+
w.uint(3605248019);
|
|
12891
|
+
w.string(h(v, "url"));
|
|
12892
|
+
},
|
|
12893
|
+
"webDomainException": function(w, v) {
|
|
12894
|
+
w.uint(2470225303);
|
|
12895
|
+
var flags = 0;
|
|
12896
|
+
var _favicon = v.favicon !== void 0;
|
|
12897
|
+
if (_favicon) flags |= 1;
|
|
12898
|
+
w.uint(flags);
|
|
12899
|
+
w.string(h(v, "domain"));
|
|
12900
|
+
w.string(h(v, "url"));
|
|
12901
|
+
w.string(h(v, "title"));
|
|
12902
|
+
if (_favicon) w.long(v.favicon);
|
|
12903
|
+
},
|
|
12904
|
+
"account.webBrowserSettingsNotModified": function(w) {
|
|
12905
|
+
w.uint(3273428814);
|
|
12906
|
+
},
|
|
12907
|
+
"account.webBrowserSettings": function(w, v) {
|
|
12908
|
+
w.uint(2045480115);
|
|
12909
|
+
var flags = 0;
|
|
12910
|
+
if (v.openExternalBrowser === true) flags |= 1;
|
|
12911
|
+
if (v.displayCloseButton === true) flags |= 2;
|
|
12912
|
+
w.uint(flags);
|
|
12913
|
+
w.vector(w.object, h(v, "externalExceptions"));
|
|
12914
|
+
w.vector(w.object, h(v, "inappExceptions"));
|
|
12915
|
+
w.long(h(v, "hash"));
|
|
12916
|
+
},
|
|
12917
|
+
"richMessage": function(w, v) {
|
|
12918
|
+
w.uint(3136527755);
|
|
12919
|
+
var flags = 0;
|
|
12920
|
+
if (v.rtl === true) flags |= 1;
|
|
12921
|
+
if (v.part === true) flags |= 2;
|
|
12922
|
+
w.uint(flags);
|
|
12923
|
+
w.vector(w.object, h(v, "blocks"));
|
|
12924
|
+
w.vector(w.object, h(v, "photos"));
|
|
12925
|
+
w.vector(w.object, h(v, "documents"));
|
|
12926
|
+
},
|
|
12927
|
+
"inputRichMessage": function(w, v) {
|
|
12928
|
+
w.uint(3838069244);
|
|
12929
|
+
var flags = 0;
|
|
12930
|
+
if (v.rtl === true) flags |= 1;
|
|
12931
|
+
if (v.noautolink === true) flags |= 2;
|
|
12932
|
+
var _photos = v.photos && v.photos.length;
|
|
12933
|
+
if (_photos) flags |= 4;
|
|
12934
|
+
var _documents = v.documents && v.documents.length;
|
|
12935
|
+
if (_documents) flags |= 8;
|
|
12936
|
+
var _users = v.users && v.users.length;
|
|
12937
|
+
if (_users) flags |= 16;
|
|
12938
|
+
w.uint(flags);
|
|
12939
|
+
w.vector(w.object, h(v, "blocks"));
|
|
12940
|
+
if (_photos) w.vector(w.object, v.photos);
|
|
12941
|
+
if (_documents) w.vector(w.object, v.documents);
|
|
12942
|
+
if (_users) w.vector(w.object, v.users);
|
|
12943
|
+
},
|
|
12944
|
+
"inputRichMessageHTML": function(w, v) {
|
|
12945
|
+
w.uint(3572151633);
|
|
12946
|
+
var flags = 0;
|
|
12947
|
+
if (v.rtl === true) flags |= 1;
|
|
12948
|
+
if (v.noautolink === true) flags |= 2;
|
|
12949
|
+
var _photos = v.photos && v.photos.length;
|
|
12950
|
+
if (_photos) flags |= 4;
|
|
12951
|
+
var _documents = v.documents && v.documents.length;
|
|
12952
|
+
if (_documents) flags |= 8;
|
|
12953
|
+
var _users = v.users && v.users.length;
|
|
12954
|
+
if (_users) flags |= 16;
|
|
12955
|
+
w.uint(flags);
|
|
12956
|
+
w.string(h(v, "html"));
|
|
12957
|
+
if (_photos) w.vector(w.object, v.photos);
|
|
12958
|
+
if (_documents) w.vector(w.object, v.documents);
|
|
12959
|
+
if (_users) w.vector(w.object, v.users);
|
|
12960
|
+
},
|
|
12961
|
+
"inputRichMessageMarkdown": function(w, v) {
|
|
12962
|
+
w.uint(162300294);
|
|
12963
|
+
var flags = 0;
|
|
12964
|
+
if (v.rtl === true) flags |= 1;
|
|
12965
|
+
if (v.noautolink === true) flags |= 2;
|
|
12966
|
+
var _photos = v.photos && v.photos.length;
|
|
12967
|
+
if (_photos) flags |= 4;
|
|
12968
|
+
var _documents = v.documents && v.documents.length;
|
|
12969
|
+
if (_documents) flags |= 8;
|
|
12970
|
+
var _users = v.users && v.users.length;
|
|
12971
|
+
if (_users) flags |= 16;
|
|
12972
|
+
w.uint(flags);
|
|
12973
|
+
w.string(h(v, "markdown"));
|
|
12974
|
+
if (_photos) w.vector(w.object, v.photos);
|
|
12975
|
+
if (_documents) w.vector(w.object, v.documents);
|
|
12976
|
+
if (_users) w.vector(w.object, v.users);
|
|
12977
|
+
},
|
|
12978
|
+
"updateChannelPinnedTopic": function(w, v) {
|
|
12979
|
+
w.uint(422509539);
|
|
12980
|
+
var flags = 0;
|
|
12981
|
+
if (v.pinned === true) flags |= 1;
|
|
12982
|
+
w.uint(flags);
|
|
12983
|
+
w.int53(h(v, "channelId"));
|
|
12984
|
+
w.int(h(v, "topicId"));
|
|
12985
|
+
},
|
|
12986
|
+
"updateChannelPinnedTopics": function(w, v) {
|
|
12987
|
+
w.uint(4263085570);
|
|
12988
|
+
var flags = 0;
|
|
12989
|
+
var _order = v.order && v.order.length;
|
|
12990
|
+
if (_order) flags |= 1;
|
|
12991
|
+
w.uint(flags);
|
|
12992
|
+
w.int53(h(v, "channelId"));
|
|
12993
|
+
if (_order) w.vector(w.int, v.order);
|
|
12994
|
+
},
|
|
12995
|
+
"invokeAfterMsg": function(w, v) {
|
|
12996
|
+
w.uint(3416209197);
|
|
12997
|
+
w.long(h(v, "msgId"));
|
|
12998
|
+
w.object(h(v, "query"));
|
|
12999
|
+
},
|
|
13000
|
+
"invokeAfterMsgs": function(w, v) {
|
|
13001
|
+
w.uint(1036301552);
|
|
13002
|
+
w.vector(w.long, h(v, "msgIds"));
|
|
13003
|
+
w.object(h(v, "query"));
|
|
13004
|
+
},
|
|
13005
|
+
"initConnection": function(w, v) {
|
|
13006
|
+
w.uint(3251461801);
|
|
13007
|
+
var flags = 0;
|
|
13008
|
+
var _proxy = v.proxy !== void 0;
|
|
13009
|
+
if (_proxy) flags |= 1;
|
|
13010
|
+
var _params = v.params !== void 0;
|
|
13011
|
+
if (_params) flags |= 2;
|
|
13012
|
+
w.uint(flags);
|
|
13013
|
+
w.int(h(v, "apiId"));
|
|
13014
|
+
w.string(h(v, "deviceModel"));
|
|
13015
|
+
w.string(h(v, "systemVersion"));
|
|
13016
|
+
w.string(h(v, "appVersion"));
|
|
13017
|
+
w.string(h(v, "systemLangCode"));
|
|
13018
|
+
w.string(h(v, "langPack"));
|
|
13019
|
+
w.string(h(v, "langCode"));
|
|
13020
|
+
if (_proxy) w.object(v.proxy);
|
|
13021
|
+
if (_params) w.object(v.params);
|
|
13022
|
+
w.object(h(v, "query"));
|
|
13023
|
+
},
|
|
13024
|
+
"invokeWithLayer": function(w, v) {
|
|
13025
|
+
w.uint(3667594509);
|
|
13026
|
+
w.int(h(v, "layer"));
|
|
13027
|
+
w.object(h(v, "query"));
|
|
13028
|
+
},
|
|
13029
|
+
"invokeWithoutUpdates": function(w, v) {
|
|
13030
|
+
w.uint(3214170551);
|
|
13031
|
+
w.object(h(v, "query"));
|
|
13032
|
+
},
|
|
13033
|
+
"invokeWithMessagesRange": function(w, v) {
|
|
13034
|
+
w.uint(911373810);
|
|
13035
|
+
w.object(h(v, "range"));
|
|
13036
|
+
w.object(h(v, "query"));
|
|
13037
|
+
},
|
|
13038
|
+
"invokeWithTakeout": function(w, v) {
|
|
13039
|
+
w.uint(2896821550);
|
|
13040
|
+
w.long(h(v, "takeoutId"));
|
|
13041
|
+
w.object(h(v, "query"));
|
|
13042
|
+
},
|
|
13043
|
+
"invokeWithBusinessConnection": function(w, v) {
|
|
13044
|
+
w.uint(3710427022);
|
|
13045
|
+
w.string(h(v, "connectionId"));
|
|
13046
|
+
w.object(h(v, "query"));
|
|
13047
|
+
},
|
|
13048
|
+
"invokeWithGooglePlayIntegrity": function(w, v) {
|
|
13049
|
+
w.uint(502868356);
|
|
12595
13050
|
w.string(h(v, "nonce"));
|
|
12596
13051
|
w.string(h(v, "token"));
|
|
12597
13052
|
w.object(h(v, "query"));
|
|
@@ -13532,7 +13987,11 @@ var m = {
|
|
|
13532
13987
|
w.int(h(v, "limit"));
|
|
13533
13988
|
},
|
|
13534
13989
|
"contacts.search": function(w, v) {
|
|
13535
|
-
w.uint(
|
|
13990
|
+
w.uint(99978511);
|
|
13991
|
+
var flags = 0;
|
|
13992
|
+
if (v.broadcasts === true) flags |= 1;
|
|
13993
|
+
if (v.bots === true) flags |= 2;
|
|
13994
|
+
w.uint(flags);
|
|
13536
13995
|
w.string(h(v, "q"));
|
|
13537
13996
|
w.int(h(v, "limit"));
|
|
13538
13997
|
},
|
|
@@ -13557,6 +14016,7 @@ var m = {
|
|
|
13557
14016
|
if (v.groups === true) flags |= 1024;
|
|
13558
14017
|
if (v.channels === true) flags |= 32768;
|
|
13559
14018
|
if (v.botsApp === true) flags |= 65536;
|
|
14019
|
+
if (v.botsGuestchat === true) flags |= 131072;
|
|
13560
14020
|
w.uint(flags);
|
|
13561
14021
|
w.int(h(v, "offset"));
|
|
13562
14022
|
w.int(h(v, "limit"));
|
|
@@ -13747,7 +14207,7 @@ var m = {
|
|
|
13747
14207
|
w.object(h(v, "action"));
|
|
13748
14208
|
},
|
|
13749
14209
|
"messages.sendMessage": function(w, v) {
|
|
13750
|
-
w.uint(
|
|
14210
|
+
w.uint(4277440354);
|
|
13751
14211
|
var flags = 0;
|
|
13752
14212
|
var _replyTo = v.replyTo !== void 0;
|
|
13753
14213
|
if (_replyTo) flags |= 1;
|
|
@@ -13775,6 +14235,8 @@ var m = {
|
|
|
13775
14235
|
if (_allowPaidStars) flags |= 2097152;
|
|
13776
14236
|
var _suggestedPost = v.suggestedPost !== void 0;
|
|
13777
14237
|
if (_suggestedPost) flags |= 4194304;
|
|
14238
|
+
var _richMessage = v.richMessage !== void 0;
|
|
14239
|
+
if (_richMessage) flags |= 8388608;
|
|
13778
14240
|
var _scheduleRepeatPeriod = v.scheduleRepeatPeriod !== void 0;
|
|
13779
14241
|
if (_scheduleRepeatPeriod) flags |= 16777216;
|
|
13780
14242
|
w.uint(flags);
|
|
@@ -13791,6 +14253,7 @@ var m = {
|
|
|
13791
14253
|
if (_effect) w.long(v.effect);
|
|
13792
14254
|
if (_allowPaidStars) w.long(v.allowPaidStars);
|
|
13793
14255
|
if (_suggestedPost) w.object(v.suggestedPost);
|
|
14256
|
+
if (_richMessage) w.object(v.richMessage);
|
|
13794
14257
|
},
|
|
13795
14258
|
"messages.sendMedia": function(w, v) {
|
|
13796
14259
|
w.uint(53536639);
|
|
@@ -14055,7 +14518,7 @@ var m = {
|
|
|
14055
14518
|
w.string(h(v, "hash"));
|
|
14056
14519
|
},
|
|
14057
14520
|
"messages.importChatInvite": function(w, v) {
|
|
14058
|
-
w.uint(
|
|
14521
|
+
w.uint(3734061934);
|
|
14059
14522
|
w.string(h(v, "hash"));
|
|
14060
14523
|
},
|
|
14061
14524
|
"messages.getStickerSet": function(w, v) {
|
|
@@ -14202,7 +14665,7 @@ var m = {
|
|
|
14202
14665
|
w.int(h(v, "id"));
|
|
14203
14666
|
},
|
|
14204
14667
|
"messages.editMessage": function(w, v) {
|
|
14205
|
-
w.uint(
|
|
14668
|
+
w.uint(2970019436);
|
|
14206
14669
|
var flags = 0;
|
|
14207
14670
|
if (v.noWebpage === true) flags |= 2;
|
|
14208
14671
|
var _replyMarkup = v.replyMarkup !== void 0;
|
|
@@ -14220,6 +14683,8 @@ var m = {
|
|
|
14220
14683
|
if (_quickReplyShortcutId) flags |= 131072;
|
|
14221
14684
|
var _scheduleRepeatPeriod = v.scheduleRepeatPeriod !== void 0;
|
|
14222
14685
|
if (_scheduleRepeatPeriod) flags |= 262144;
|
|
14686
|
+
var _richMessage = v.richMessage !== void 0;
|
|
14687
|
+
if (_richMessage) flags |= 8388608;
|
|
14223
14688
|
w.uint(flags);
|
|
14224
14689
|
w.object(h(v, "peer"));
|
|
14225
14690
|
w.int(h(v, "id"));
|
|
@@ -14230,9 +14695,10 @@ var m = {
|
|
|
14230
14695
|
if (_scheduleDate) w.int(v.scheduleDate);
|
|
14231
14696
|
if (_scheduleRepeatPeriod) w.int(v.scheduleRepeatPeriod);
|
|
14232
14697
|
if (_quickReplyShortcutId) w.int(v.quickReplyShortcutId);
|
|
14698
|
+
if (_richMessage) w.object(v.richMessage);
|
|
14233
14699
|
},
|
|
14234
14700
|
"messages.editInlineBotMessage": function(w, v) {
|
|
14235
|
-
w.uint(
|
|
14701
|
+
w.uint(2753805137);
|
|
14236
14702
|
var flags = 0;
|
|
14237
14703
|
if (v.noWebpage === true) flags |= 2;
|
|
14238
14704
|
var _replyMarkup = v.replyMarkup !== void 0;
|
|
@@ -14244,12 +14710,15 @@ var m = {
|
|
|
14244
14710
|
var _media = v.media !== void 0;
|
|
14245
14711
|
if (_media) flags |= 16384;
|
|
14246
14712
|
if (v.invertMedia === true) flags |= 65536;
|
|
14713
|
+
var _richMessage = v.richMessage !== void 0;
|
|
14714
|
+
if (_richMessage) flags |= 8388608;
|
|
14247
14715
|
w.uint(flags);
|
|
14248
14716
|
w.object(h(v, "id"));
|
|
14249
14717
|
if (_message) w.string(v.message);
|
|
14250
14718
|
if (_media) w.object(v.media);
|
|
14251
14719
|
if (_replyMarkup) w.object(v.replyMarkup);
|
|
14252
14720
|
if (_entities) w.vector(w.object, v.entities);
|
|
14721
|
+
if (_richMessage) w.object(v.richMessage);
|
|
14253
14722
|
},
|
|
14254
14723
|
"messages.getBotCallbackAnswer": function(w, v) {
|
|
14255
14724
|
w.uint(2470627847);
|
|
@@ -14284,7 +14753,7 @@ var m = {
|
|
|
14284
14753
|
w.vector(w.object, h(v, "peers"));
|
|
14285
14754
|
},
|
|
14286
14755
|
"messages.saveDraft": function(w, v) {
|
|
14287
|
-
w.uint(
|
|
14756
|
+
w.uint(2903482716);
|
|
14288
14757
|
var flags = 0;
|
|
14289
14758
|
if (v.noWebpage === true) flags |= 2;
|
|
14290
14759
|
var _entities = v.entities && v.entities.length;
|
|
@@ -14298,6 +14767,8 @@ var m = {
|
|
|
14298
14767
|
if (_effect) flags |= 128;
|
|
14299
14768
|
var _suggestedPost = v.suggestedPost !== void 0;
|
|
14300
14769
|
if (_suggestedPost) flags |= 256;
|
|
14770
|
+
var _richMessage = v.richMessage !== void 0;
|
|
14771
|
+
if (_richMessage) flags |= 512;
|
|
14301
14772
|
w.uint(flags);
|
|
14302
14773
|
if (_replyTo) w.object(v.replyTo);
|
|
14303
14774
|
w.object(h(v, "peer"));
|
|
@@ -14306,6 +14777,7 @@ var m = {
|
|
|
14306
14777
|
if (_media) w.object(v.media);
|
|
14307
14778
|
if (_effect) w.long(v.effect);
|
|
14308
14779
|
if (_suggestedPost) w.object(v.suggestedPost);
|
|
14780
|
+
if (_richMessage) w.object(v.richMessage);
|
|
14309
14781
|
},
|
|
14310
14782
|
"messages.getAllDrafts": function(w) {
|
|
14311
14783
|
w.uint(1782549861);
|
|
@@ -15711,6 +16183,89 @@ var m = {
|
|
|
15711
16183
|
w.string(h(v, "url"));
|
|
15712
16184
|
w.string(h(v, "matchCode"));
|
|
15713
16185
|
},
|
|
16186
|
+
"messages.composeMessageWithAI": function(w, v) {
|
|
16187
|
+
w.uint(3672950153);
|
|
16188
|
+
var flags = 0;
|
|
16189
|
+
if (v.proofread === true) flags |= 1;
|
|
16190
|
+
var _translateToLang = v.translateToLang !== void 0;
|
|
16191
|
+
if (_translateToLang) flags |= 2;
|
|
16192
|
+
var _tone = v.tone !== void 0;
|
|
16193
|
+
if (_tone) flags |= 4;
|
|
16194
|
+
if (v.emojify === true) flags |= 8;
|
|
16195
|
+
w.uint(flags);
|
|
16196
|
+
w.object(h(v, "text"));
|
|
16197
|
+
if (_translateToLang) w.string(v.translateToLang);
|
|
16198
|
+
if (_tone) w.object(v.tone);
|
|
16199
|
+
},
|
|
16200
|
+
"messages.reportReadMetrics": function(w, v) {
|
|
16201
|
+
w.uint(1080542694);
|
|
16202
|
+
w.object(h(v, "peer"));
|
|
16203
|
+
w.vector(w.object, h(v, "metrics"));
|
|
16204
|
+
},
|
|
16205
|
+
"messages.reportMusicListen": function(w, v) {
|
|
16206
|
+
w.uint(3720140825);
|
|
16207
|
+
w.object(h(v, "id"));
|
|
16208
|
+
w.int(h(v, "listenedDuration"));
|
|
16209
|
+
},
|
|
16210
|
+
"messages.addPollAnswer": function(w, v) {
|
|
16211
|
+
w.uint(431770477);
|
|
16212
|
+
w.object(h(v, "peer"));
|
|
16213
|
+
w.int(h(v, "msgId"));
|
|
16214
|
+
w.object(h(v, "answer"));
|
|
16215
|
+
},
|
|
16216
|
+
"messages.deletePollAnswer": function(w, v) {
|
|
16217
|
+
w.uint(2894398885);
|
|
16218
|
+
w.object(h(v, "peer"));
|
|
16219
|
+
w.int(h(v, "msgId"));
|
|
16220
|
+
w.bytes(h(v, "option"));
|
|
16221
|
+
},
|
|
16222
|
+
"messages.getUnreadPollVotes": function(w, v) {
|
|
16223
|
+
w.uint(1126722802);
|
|
16224
|
+
var flags = 0;
|
|
16225
|
+
var _topMsgId = v.topMsgId !== void 0;
|
|
16226
|
+
if (_topMsgId) flags |= 1;
|
|
16227
|
+
w.uint(flags);
|
|
16228
|
+
w.object(h(v, "peer"));
|
|
16229
|
+
if (_topMsgId) w.int(v.topMsgId);
|
|
16230
|
+
w.int(h(v, "offsetId"));
|
|
16231
|
+
w.int(h(v, "addOffset"));
|
|
16232
|
+
w.int(h(v, "limit"));
|
|
16233
|
+
w.int(h(v, "maxId"));
|
|
16234
|
+
w.int(h(v, "minId"));
|
|
16235
|
+
},
|
|
16236
|
+
"messages.readPollVotes": function(w, v) {
|
|
16237
|
+
w.uint(388019416);
|
|
16238
|
+
var flags = 0;
|
|
16239
|
+
var _topMsgId = v.topMsgId !== void 0;
|
|
16240
|
+
if (_topMsgId) flags |= 1;
|
|
16241
|
+
w.uint(flags);
|
|
16242
|
+
w.object(h(v, "peer"));
|
|
16243
|
+
if (_topMsgId) w.int(v.topMsgId);
|
|
16244
|
+
},
|
|
16245
|
+
"messages.setBotGuestChatResult": function(w, v) {
|
|
16246
|
+
w.uint(3102803683);
|
|
16247
|
+
w.long(h(v, "queryId"));
|
|
16248
|
+
w.object(h(v, "result"));
|
|
16249
|
+
},
|
|
16250
|
+
"messages.deleteParticipantReactions": function(w, v) {
|
|
16251
|
+
w.uint(2696416504);
|
|
16252
|
+
w.object(h(v, "peer"));
|
|
16253
|
+
w.object(h(v, "participant"));
|
|
16254
|
+
},
|
|
16255
|
+
"messages.deleteParticipantReaction": function(w, v) {
|
|
16256
|
+
w.uint(3820484652);
|
|
16257
|
+
w.object(h(v, "peer"));
|
|
16258
|
+
w.int(h(v, "msgId"));
|
|
16259
|
+
w.object(h(v, "participant"));
|
|
16260
|
+
},
|
|
16261
|
+
"messages.getPersonalChannelHistory": function(w, v) {
|
|
16262
|
+
w.uint(1442515350);
|
|
16263
|
+
w.object(h(v, "userId"));
|
|
16264
|
+
w.int(h(v, "limit"));
|
|
16265
|
+
w.int(h(v, "maxId"));
|
|
16266
|
+
w.int(h(v, "minId"));
|
|
16267
|
+
w.long(h(v, "hash"));
|
|
16268
|
+
},
|
|
15714
16269
|
"updates.getState": function(w) {
|
|
15715
16270
|
w.uint(3990128682);
|
|
15716
16271
|
},
|
|
@@ -16043,7 +16598,7 @@ var m = {
|
|
|
16043
16598
|
w.string(h(v, "username"));
|
|
16044
16599
|
},
|
|
16045
16600
|
"channels.joinChannel": function(w, v) {
|
|
16046
|
-
w.uint(
|
|
16601
|
+
w.uint(2137660962);
|
|
16047
16602
|
w.object(h(v, "channel"));
|
|
16048
16603
|
},
|
|
16049
16604
|
"channels.leaveChannel": function(w, v) {
|
|
@@ -16178,9 +16733,15 @@ var m = {
|
|
|
16178
16733
|
w.boolean(h(v, "enabled"));
|
|
16179
16734
|
},
|
|
16180
16735
|
"channels.toggleJoinRequest": function(w, v) {
|
|
16181
|
-
w.uint(
|
|
16736
|
+
w.uint(248260120);
|
|
16737
|
+
var flags = 0;
|
|
16738
|
+
var _guardBot = v.guardBot !== void 0;
|
|
16739
|
+
if (_guardBot) flags |= 1;
|
|
16740
|
+
if (v.applyToInvites === true) flags |= 2;
|
|
16741
|
+
w.uint(flags);
|
|
16182
16742
|
w.object(h(v, "channel"));
|
|
16183
16743
|
w.boolean(h(v, "enabled"));
|
|
16744
|
+
if (_guardBot) w.object(v.guardBot);
|
|
16184
16745
|
},
|
|
16185
16746
|
"channels.reorderUsernames": function(w, v) {
|
|
16186
16747
|
w.uint(3025988893);
|
|
@@ -16493,6 +17054,48 @@ var m = {
|
|
|
16493
17054
|
w.uint(2713126933);
|
|
16494
17055
|
w.object(h(v, "bot"));
|
|
16495
17056
|
},
|
|
17057
|
+
"bots.checkUsername": function(w, v) {
|
|
17058
|
+
w.uint(2280792475);
|
|
17059
|
+
w.string(h(v, "username"));
|
|
17060
|
+
},
|
|
17061
|
+
"bots.createBot": function(w, v) {
|
|
17062
|
+
w.uint(3853614891);
|
|
17063
|
+
var flags = 0;
|
|
17064
|
+
if (v.viaDeeplink === true) flags |= 1;
|
|
17065
|
+
w.uint(flags);
|
|
17066
|
+
w.string(h(v, "name"));
|
|
17067
|
+
w.string(h(v, "username"));
|
|
17068
|
+
w.object(h(v, "managerId"));
|
|
17069
|
+
},
|
|
17070
|
+
"bots.exportBotToken": function(w, v) {
|
|
17071
|
+
w.uint(3171785195);
|
|
17072
|
+
w.object(h(v, "bot"));
|
|
17073
|
+
w.boolean(h(v, "revoke"));
|
|
17074
|
+
},
|
|
17075
|
+
"bots.requestWebViewButton": function(w, v) {
|
|
17076
|
+
w.uint(832742238);
|
|
17077
|
+
w.object(h(v, "userId"));
|
|
17078
|
+
w.object(h(v, "button"));
|
|
17079
|
+
},
|
|
17080
|
+
"bots.getRequestedWebViewButton": function(w, v) {
|
|
17081
|
+
w.uint(3206920179);
|
|
17082
|
+
w.object(h(v, "bot"));
|
|
17083
|
+
w.string(h(v, "webappReqId"));
|
|
17084
|
+
},
|
|
17085
|
+
"bots.getAccessSettings": function(w, v) {
|
|
17086
|
+
w.uint(557339555);
|
|
17087
|
+
w.object(h(v, "bot"));
|
|
17088
|
+
},
|
|
17089
|
+
"bots.editAccessSettings": function(w, v) {
|
|
17090
|
+
w.uint(830553304);
|
|
17091
|
+
var flags = 0;
|
|
17092
|
+
if (v.restricted === true) flags |= 1;
|
|
17093
|
+
var _addUsers = v.addUsers && v.addUsers.length;
|
|
17094
|
+
if (_addUsers) flags |= 2;
|
|
17095
|
+
w.uint(flags);
|
|
17096
|
+
w.object(h(v, "bot"));
|
|
17097
|
+
if (_addUsers) w.vector(w.object, v.addUsers);
|
|
17098
|
+
},
|
|
16496
17099
|
"payments.getPaymentForm": function(w, v) {
|
|
16497
17100
|
w.uint(924093883);
|
|
16498
17101
|
var flags = 0;
|
|
@@ -17427,6 +18030,14 @@ var m = {
|
|
|
17427
18030
|
w.string(h(v, "offset"));
|
|
17428
18031
|
w.int(h(v, "limit"));
|
|
17429
18032
|
},
|
|
18033
|
+
"stats.getPollStats": function(w, v) {
|
|
18034
|
+
w.uint(3263036008);
|
|
18035
|
+
var flags = 0;
|
|
18036
|
+
if (v.dark === true) flags |= 1;
|
|
18037
|
+
w.uint(flags);
|
|
18038
|
+
w.object(h(v, "peer"));
|
|
18039
|
+
w.int(h(v, "msgId"));
|
|
18040
|
+
},
|
|
17430
18041
|
"chatlists.exportChatlistInvite": function(w, v) {
|
|
17431
18042
|
w.uint(2222081934);
|
|
17432
18043
|
w.object(h(v, "chatlist"));
|
|
@@ -17841,92 +18452,92 @@ var m = {
|
|
|
17841
18452
|
w.uint(3189671354);
|
|
17842
18453
|
w.object(h(v, "collectible"));
|
|
17843
18454
|
},
|
|
17844
|
-
"
|
|
17845
|
-
w.uint(
|
|
18455
|
+
"aicompose.createTone": function(w, v) {
|
|
18456
|
+
w.uint(1252538643);
|
|
17846
18457
|
var flags = 0;
|
|
17847
|
-
if (v.
|
|
17848
|
-
var _translateToLang = v.translateToLang !== void 0;
|
|
17849
|
-
if (_translateToLang) flags |= 2;
|
|
17850
|
-
var _changeTone = v.changeTone !== void 0;
|
|
17851
|
-
if (_changeTone) flags |= 4;
|
|
17852
|
-
if (v.emojify === true) flags |= 8;
|
|
18458
|
+
if (v.displayAuthor === true) flags |= 1;
|
|
17853
18459
|
w.uint(flags);
|
|
17854
|
-
w.
|
|
17855
|
-
|
|
17856
|
-
|
|
18460
|
+
w.long(h(v, "emojiId"));
|
|
18461
|
+
w.string(h(v, "title"));
|
|
18462
|
+
w.string(h(v, "prompt"));
|
|
17857
18463
|
},
|
|
17858
|
-
"
|
|
17859
|
-
w.uint(
|
|
17860
|
-
|
|
17861
|
-
|
|
18464
|
+
"aicompose.updateTone": function(w, v) {
|
|
18465
|
+
w.uint(2419838809);
|
|
18466
|
+
var flags = 0;
|
|
18467
|
+
var _displayAuthor = v.displayAuthor !== void 0;
|
|
18468
|
+
if (_displayAuthor) flags |= 1;
|
|
18469
|
+
var _emojiId = v.emojiId !== void 0;
|
|
18470
|
+
if (_emojiId) flags |= 2;
|
|
18471
|
+
var _title = v.title !== void 0;
|
|
18472
|
+
if (_title) flags |= 4;
|
|
18473
|
+
var _prompt = v.prompt !== void 0;
|
|
18474
|
+
if (_prompt) flags |= 8;
|
|
18475
|
+
w.uint(flags);
|
|
18476
|
+
w.object(h(v, "tone"));
|
|
18477
|
+
if (_displayAuthor) w.boolean(v.displayAuthor);
|
|
18478
|
+
if (_emojiId) w.long(v.emojiId);
|
|
18479
|
+
if (_title) w.string(v.title);
|
|
18480
|
+
if (_prompt) w.string(v.prompt);
|
|
17862
18481
|
},
|
|
17863
|
-
"
|
|
17864
|
-
w.uint(
|
|
17865
|
-
w.object(h(v, "
|
|
17866
|
-
w.
|
|
18482
|
+
"aicompose.saveTone": function(w, v) {
|
|
18483
|
+
w.uint(394447793);
|
|
18484
|
+
w.object(h(v, "tone"));
|
|
18485
|
+
w.boolean(h(v, "unsave"));
|
|
17867
18486
|
},
|
|
17868
|
-
"
|
|
17869
|
-
w.uint(
|
|
17870
|
-
w.object(h(v, "
|
|
17871
|
-
w.int(h(v, "msgId"));
|
|
17872
|
-
w.object(h(v, "answer"));
|
|
18487
|
+
"aicompose.deleteTone": function(w, v) {
|
|
18488
|
+
w.uint(3711512938);
|
|
18489
|
+
w.object(h(v, "tone"));
|
|
17873
18490
|
},
|
|
17874
|
-
"
|
|
17875
|
-
w.uint(
|
|
17876
|
-
w.object(h(v, "
|
|
17877
|
-
w.int(h(v, "msgId"));
|
|
17878
|
-
w.bytes(h(v, "option"));
|
|
18491
|
+
"aicompose.getTone": function(w, v) {
|
|
18492
|
+
w.uint(3001596419);
|
|
18493
|
+
w.object(h(v, "tone"));
|
|
17879
18494
|
},
|
|
17880
|
-
"
|
|
17881
|
-
w.uint(
|
|
17882
|
-
|
|
17883
|
-
var _topMsgId = v.topMsgId !== void 0;
|
|
17884
|
-
if (_topMsgId) flags |= 1;
|
|
17885
|
-
w.uint(flags);
|
|
17886
|
-
w.object(h(v, "peer"));
|
|
17887
|
-
if (_topMsgId) w.int(v.topMsgId);
|
|
17888
|
-
w.int(h(v, "offsetId"));
|
|
17889
|
-
w.int(h(v, "addOffset"));
|
|
17890
|
-
w.int(h(v, "limit"));
|
|
17891
|
-
w.int(h(v, "maxId"));
|
|
17892
|
-
w.int(h(v, "minId"));
|
|
18495
|
+
"aicompose.getTones": function(w, v) {
|
|
18496
|
+
w.uint(2882900481);
|
|
18497
|
+
w.long(h(v, "hash"));
|
|
17893
18498
|
},
|
|
17894
|
-
"
|
|
17895
|
-
w.uint(
|
|
18499
|
+
"aicompose.getToneExample": function(w, v) {
|
|
18500
|
+
w.uint(3518278420);
|
|
18501
|
+
w.object(h(v, "tone"));
|
|
18502
|
+
w.int(h(v, "num"));
|
|
18503
|
+
},
|
|
18504
|
+
"account.confirmBotConnection": function(w, v) {
|
|
18505
|
+
w.uint(1743593320);
|
|
18506
|
+
w.object(h(v, "botId"));
|
|
18507
|
+
},
|
|
18508
|
+
"account.getWebBrowserSettings": function(w, v) {
|
|
18509
|
+
w.uint(1449482088);
|
|
18510
|
+
w.long(h(v, "hash"));
|
|
18511
|
+
},
|
|
18512
|
+
"account.updateWebBrowserSettings": function(w, v) {
|
|
18513
|
+
w.uint(2598339326);
|
|
17896
18514
|
var flags = 0;
|
|
17897
|
-
|
|
17898
|
-
if (
|
|
18515
|
+
if (v.openExternalBrowser === true) flags |= 1;
|
|
18516
|
+
if (v.displayCloseButton === true) flags |= 2;
|
|
17899
18517
|
w.uint(flags);
|
|
17900
|
-
w.object(h(v, "peer"));
|
|
17901
|
-
if (_topMsgId) w.int(v.topMsgId);
|
|
17902
18518
|
},
|
|
17903
|
-
"
|
|
17904
|
-
w.uint(
|
|
17905
|
-
w.string(h(v, "username"));
|
|
17906
|
-
},
|
|
17907
|
-
"bots.createBot": function(w, v) {
|
|
17908
|
-
w.uint(3853614891);
|
|
18519
|
+
"account.toggleWebBrowserSettingsException": function(w, v) {
|
|
18520
|
+
w.uint(1626161705);
|
|
17909
18521
|
var flags = 0;
|
|
17910
|
-
|
|
18522
|
+
var _openExternalBrowser = v.openExternalBrowser !== void 0;
|
|
18523
|
+
if (_openExternalBrowser) flags |= 1;
|
|
18524
|
+
if (v.delete === true) flags |= 2;
|
|
17911
18525
|
w.uint(flags);
|
|
17912
|
-
w.
|
|
17913
|
-
w.string(h(v, "
|
|
17914
|
-
w.object(h(v, "managerId"));
|
|
18526
|
+
if (_openExternalBrowser) w.boolean(v.openExternalBrowser);
|
|
18527
|
+
w.string(h(v, "url"));
|
|
17915
18528
|
},
|
|
17916
|
-
"
|
|
17917
|
-
w.uint(
|
|
17918
|
-
w.object(h(v, "bot"));
|
|
17919
|
-
w.boolean(h(v, "revoke"));
|
|
18529
|
+
"account.deleteWebBrowserSettingsExceptions": function(w) {
|
|
18530
|
+
w.uint(2258663005);
|
|
17920
18531
|
},
|
|
17921
|
-
"
|
|
17922
|
-
w.uint(
|
|
17923
|
-
w.object(h(v, "
|
|
17924
|
-
w.
|
|
18532
|
+
"messages.getRichMessage": function(w, v) {
|
|
18533
|
+
w.uint(1343580623);
|
|
18534
|
+
w.object(h(v, "peer"));
|
|
18535
|
+
w.int(h(v, "id"));
|
|
17925
18536
|
},
|
|
17926
|
-
"bots.
|
|
17927
|
-
w.uint(
|
|
17928
|
-
w.
|
|
17929
|
-
w.
|
|
18537
|
+
"bots.setJoinChatResults": function(w, v) {
|
|
18538
|
+
w.uint(3877259280);
|
|
18539
|
+
w.long(h(v, "queryId"));
|
|
18540
|
+
w.object(h(v, "result"));
|
|
17930
18541
|
},
|
|
17931
18542
|
"channels.editCreator": function(w, v) {
|
|
17932
18543
|
w.uint(2402864415);
|
|
@@ -18309,6 +18920,7 @@ var m = {
|
|
|
18309
18920
|
"messageActionChangeCreator": 12,
|
|
18310
18921
|
"messageActionNoForwardsToggle": 12,
|
|
18311
18922
|
"messageActionNoForwardsRequest": 16,
|
|
18923
|
+
"messageActionManagedBotCreated": 12,
|
|
18312
18924
|
"photoEmpty": 12,
|
|
18313
18925
|
"geoPointEmpty": 4,
|
|
18314
18926
|
"inputNotifyUsers": 4,
|
|
@@ -18347,6 +18959,7 @@ var m = {
|
|
|
18347
18959
|
"inputMessagesFilterGeo": 4,
|
|
18348
18960
|
"inputMessagesFilterContacts": 4,
|
|
18349
18961
|
"inputMessagesFilterPinned": 4,
|
|
18962
|
+
"inputMessagesFilterPoll": 4,
|
|
18350
18963
|
"updateMessageID": 16,
|
|
18351
18964
|
"updateEncryptedChatTyping": 8,
|
|
18352
18965
|
"updateEncryptedMessagesRead": 16,
|
|
@@ -18393,6 +19006,8 @@ var m = {
|
|
|
18393
19006
|
"updateMonoForumNoPaidException": 28,
|
|
18394
19007
|
"updatePinnedForumTopic": 24,
|
|
18395
19008
|
"updateStarGiftCraftFail": 4,
|
|
19009
|
+
"updateManagedBot": 24,
|
|
19010
|
+
"updateAiComposeTones": 4,
|
|
18396
19011
|
"updates.state": 24,
|
|
18397
19012
|
"updates.differenceEmpty": 12,
|
|
18398
19013
|
"updates.differenceTooLong": 8,
|
|
@@ -18515,6 +19130,8 @@ var m = {
|
|
|
18515
19130
|
"messageEntityCustomEmoji": 20,
|
|
18516
19131
|
"messageEntityBlockquote": 16,
|
|
18517
19132
|
"messageEntityFormattedDate": 20,
|
|
19133
|
+
"messageEntityDiffInsert": 12,
|
|
19134
|
+
"messageEntityDiffDelete": 12,
|
|
18518
19135
|
"inputChannelEmpty": 4,
|
|
18519
19136
|
"inputChannel": 20,
|
|
18520
19137
|
"messageRange": 12,
|
|
@@ -18547,6 +19164,7 @@ var m = {
|
|
|
18547
19164
|
"topPeerCategoryForwardUsers": 4,
|
|
18548
19165
|
"topPeerCategoryForwardChats": 4,
|
|
18549
19166
|
"topPeerCategoryBotsApp": 4,
|
|
19167
|
+
"topPeerCategoryBotsGuestChat": 4,
|
|
18550
19168
|
"contacts.topPeersNotModified": 4,
|
|
18551
19169
|
"contacts.topPeersDisabled": 4,
|
|
18552
19170
|
"messages.featuredStickersNotModified": 8,
|
|
@@ -18638,6 +19256,7 @@ var m = {
|
|
|
18638
19256
|
"baseThemeNight": 4,
|
|
18639
19257
|
"baseThemeTinted": 4,
|
|
18640
19258
|
"baseThemeArctic": 4,
|
|
19259
|
+
"webPageAttributeAiComposeTone": 12,
|
|
18641
19260
|
"dialogFilterDefault": 4,
|
|
18642
19261
|
"statsDateRangeDays": 12,
|
|
18643
19262
|
"statsAbsValueAndPrev": 20,
|
|
@@ -18790,12 +19409,14 @@ var m = {
|
|
|
18790
19409
|
"starGiftAttributeRarityRare": 4,
|
|
18791
19410
|
"starGiftAttributeRarityEpic": 4,
|
|
18792
19411
|
"starGiftAttributeRarityLegendary": 4,
|
|
18793
|
-
"messageActionManagedBotCreated": 12,
|
|
18794
|
-
"inputMessagesFilterPoll": 4,
|
|
18795
|
-
"updateManagedBot": 24,
|
|
18796
|
-
"messageEntityDiffInsert": 12,
|
|
18797
|
-
"messageEntityDiffDelete": 12,
|
|
18798
19412
|
"inputMessageReadMetric": 32,
|
|
19413
|
+
"inputAiComposeToneID": 20,
|
|
19414
|
+
"aicompose.tonesNotModified": 4,
|
|
19415
|
+
"updateWebBrowserSettings": 8,
|
|
19416
|
+
"joinChatBotResultApproved": 4,
|
|
19417
|
+
"joinChatBotResultDeclined": 4,
|
|
19418
|
+
"joinChatBotResultQueued": 4,
|
|
19419
|
+
"account.webBrowserSettingsNotModified": 4,
|
|
18799
19420
|
"updateChannelPinnedTopic": 20,
|
|
18800
19421
|
"auth.logOut": 4,
|
|
18801
19422
|
"auth.resetAuthorizations": 4,
|
|
@@ -18959,6 +19580,10 @@ var m = {
|
|
|
18959
19580
|
"smsjobs.leave": 4,
|
|
18960
19581
|
"smsjobs.updateSettings": 8,
|
|
18961
19582
|
"smsjobs.getStatus": 4,
|
|
19583
|
+
"aicompose.getTones": 12,
|
|
19584
|
+
"account.getWebBrowserSettings": 12,
|
|
19585
|
+
"account.updateWebBrowserSettings": 8,
|
|
19586
|
+
"account.deleteWebBrowserSettingsExceptions": 4,
|
|
18962
19587
|
"mt_dh_gen_ok": 52,
|
|
18963
19588
|
"mt_dh_gen_retry": 52,
|
|
18964
19589
|
"mt_dh_gen_fail": 52,
|