telegram-tghub-better-new 0.0.21 → 0.0.23
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/README.md +3 -1
- package/package.json +1 -1
- package/tl/AllTLObjects.d.ts +1 -1
- package/tl/AllTLObjects.js +1 -1
- package/tl/api.d.ts +222 -27
- package/tl/apiTl.js +22 -13
- package/tl/schemaTl.js +1 -2
package/README.md
CHANGED
|
@@ -122,4 +122,6 @@ If you want to update to a specific layer yourself there are 4 things you need t
|
|
|
122
122
|
you update export const LAYER = 181; in gramjs/tl/AllTLObjects
|
|
123
123
|
Then you update gramjs/tl/static/api.tl with the one from tdesktop (the one you sent a link to)
|
|
124
124
|
Then you do ts-node gramjs/tl/generateModule.js
|
|
125
|
-
Then you finally do ts-node gramjs/tl/types-generator/generate.js
|
|
125
|
+
Then you finally do ts-node gramjs/tl/types-generator/generate.js
|
|
126
|
+
|
|
127
|
+
node publish_npm.js
|
package/package.json
CHANGED
package/tl/AllTLObjects.d.ts
CHANGED
package/tl/AllTLObjects.js
CHANGED
package/tl/api.d.ts
CHANGED
|
@@ -495,16 +495,20 @@ export namespace Api {
|
|
|
495
495
|
url: string;
|
|
496
496
|
}
|
|
497
497
|
export class InputMediaPaidMedia extends VirtualClass<{
|
|
498
|
+
// flags: null;
|
|
498
499
|
starsAmount: long;
|
|
499
500
|
extendedMedia: Api.TypeInputMedia[];
|
|
501
|
+
payload?: string;
|
|
500
502
|
}> {
|
|
501
|
-
CONSTRUCTOR_ID:
|
|
503
|
+
CONSTRUCTOR_ID: 3289396102;
|
|
502
504
|
SUBCLASS_OF_ID: 4210575092;
|
|
503
505
|
classType: "constructor";
|
|
504
506
|
className: "InputMediaPaidMedia";
|
|
505
507
|
static fromReader(reader: Reader): InputMediaPaidMedia;
|
|
508
|
+
// flags: null;
|
|
506
509
|
starsAmount: long;
|
|
507
510
|
extendedMedia: Api.TypeInputMedia[];
|
|
511
|
+
payload?: string;
|
|
508
512
|
}
|
|
509
513
|
export class InputChatPhotoEmpty extends VirtualClass<void> {
|
|
510
514
|
CONSTRUCTOR_ID: 480546647;
|
|
@@ -1673,10 +1677,11 @@ export namespace Api {
|
|
|
1673
1677
|
countriesIso2?: string[];
|
|
1674
1678
|
prizeDescription?: string;
|
|
1675
1679
|
quantity: int;
|
|
1676
|
-
months
|
|
1680
|
+
months?: int;
|
|
1681
|
+
stars?: long;
|
|
1677
1682
|
untilDate: int;
|
|
1678
1683
|
}> {
|
|
1679
|
-
CONSTRUCTOR_ID:
|
|
1684
|
+
CONSTRUCTOR_ID: 2852600811;
|
|
1680
1685
|
SUBCLASS_OF_ID: 1198308914;
|
|
1681
1686
|
classType: "constructor";
|
|
1682
1687
|
className: "MessageMediaGiveaway";
|
|
@@ -1688,7 +1693,8 @@ export namespace Api {
|
|
|
1688
1693
|
countriesIso2?: string[];
|
|
1689
1694
|
prizeDescription?: string;
|
|
1690
1695
|
quantity: int;
|
|
1691
|
-
months
|
|
1696
|
+
months?: int;
|
|
1697
|
+
stars?: long;
|
|
1692
1698
|
untilDate: int;
|
|
1693
1699
|
}
|
|
1694
1700
|
export class MessageMediaGiveawayResults extends VirtualClass<{
|
|
@@ -1701,11 +1707,12 @@ export namespace Api {
|
|
|
1701
1707
|
winnersCount: int;
|
|
1702
1708
|
unclaimedCount: int;
|
|
1703
1709
|
winners: long[];
|
|
1704
|
-
months
|
|
1710
|
+
months?: int;
|
|
1711
|
+
stars?: long;
|
|
1705
1712
|
prizeDescription?: string;
|
|
1706
1713
|
untilDate: int;
|
|
1707
1714
|
}> {
|
|
1708
|
-
CONSTRUCTOR_ID:
|
|
1715
|
+
CONSTRUCTOR_ID: 3467263649;
|
|
1709
1716
|
SUBCLASS_OF_ID: 1198308914;
|
|
1710
1717
|
classType: "constructor";
|
|
1711
1718
|
className: "MessageMediaGiveawayResults";
|
|
@@ -1719,7 +1726,8 @@ export namespace Api {
|
|
|
1719
1726
|
winnersCount: int;
|
|
1720
1727
|
unclaimedCount: int;
|
|
1721
1728
|
winners: long[];
|
|
1722
|
-
months
|
|
1729
|
+
months?: int;
|
|
1730
|
+
stars?: long;
|
|
1723
1731
|
prizeDescription?: string;
|
|
1724
1732
|
untilDate: int;
|
|
1725
1733
|
}
|
|
@@ -2222,22 +2230,31 @@ export namespace Api {
|
|
|
2222
2230
|
cryptoCurrency?: string;
|
|
2223
2231
|
cryptoAmount?: long;
|
|
2224
2232
|
}
|
|
2225
|
-
export class MessageActionGiveawayLaunch extends VirtualClass<
|
|
2226
|
-
|
|
2233
|
+
export class MessageActionGiveawayLaunch extends VirtualClass<{
|
|
2234
|
+
// flags: null;
|
|
2235
|
+
stars?: long;
|
|
2236
|
+
}> {
|
|
2237
|
+
CONSTRUCTOR_ID: 2819576292;
|
|
2227
2238
|
SUBCLASS_OF_ID: 2256589094;
|
|
2228
2239
|
classType: "constructor";
|
|
2229
2240
|
className: "MessageActionGiveawayLaunch";
|
|
2230
2241
|
static fromReader(reader: Reader): MessageActionGiveawayLaunch;
|
|
2231
|
-
|
|
2242
|
+
// flags: null;
|
|
2243
|
+
stars?: long;
|
|
2244
|
+
}
|
|
2232
2245
|
export class MessageActionGiveawayResults extends VirtualClass<{
|
|
2246
|
+
// flags: null;
|
|
2247
|
+
stars?: boolean;
|
|
2233
2248
|
winnersCount: int;
|
|
2234
2249
|
unclaimedCount: int;
|
|
2235
2250
|
}> {
|
|
2236
|
-
CONSTRUCTOR_ID:
|
|
2251
|
+
CONSTRUCTOR_ID: 2279797077;
|
|
2237
2252
|
SUBCLASS_OF_ID: 2256589094;
|
|
2238
2253
|
classType: "constructor";
|
|
2239
2254
|
className: "MessageActionGiveawayResults";
|
|
2240
2255
|
static fromReader(reader: Reader): MessageActionGiveawayResults;
|
|
2256
|
+
// flags: null;
|
|
2257
|
+
stars?: boolean;
|
|
2241
2258
|
winnersCount: int;
|
|
2242
2259
|
unclaimedCount: int;
|
|
2243
2260
|
}
|
|
@@ -2305,6 +2322,26 @@ export namespace Api {
|
|
|
2305
2322
|
cryptoAmount?: long;
|
|
2306
2323
|
transactionId?: string;
|
|
2307
2324
|
}
|
|
2325
|
+
export class MessageActionPrizeStars extends VirtualClass<{
|
|
2326
|
+
// flags: null;
|
|
2327
|
+
unclaimed?: boolean;
|
|
2328
|
+
stars: long;
|
|
2329
|
+
transactionId: string;
|
|
2330
|
+
boostPeer: Api.TypePeer;
|
|
2331
|
+
giveawayMsgId: int;
|
|
2332
|
+
}> {
|
|
2333
|
+
CONSTRUCTOR_ID: 2953594786;
|
|
2334
|
+
SUBCLASS_OF_ID: 2256589094;
|
|
2335
|
+
classType: "constructor";
|
|
2336
|
+
className: "MessageActionPrizeStars";
|
|
2337
|
+
static fromReader(reader: Reader): MessageActionPrizeStars;
|
|
2338
|
+
// flags: null;
|
|
2339
|
+
unclaimed?: boolean;
|
|
2340
|
+
stars: long;
|
|
2341
|
+
transactionId: string;
|
|
2342
|
+
boostPeer: Api.TypePeer;
|
|
2343
|
+
giveawayMsgId: int;
|
|
2344
|
+
}
|
|
2308
2345
|
export class Dialog extends VirtualClass<{
|
|
2309
2346
|
// flags: null;
|
|
2310
2347
|
pinned?: boolean;
|
|
@@ -4925,6 +4962,30 @@ export namespace Api {
|
|
|
4925
4962
|
peer: Api.TypePeer;
|
|
4926
4963
|
status: Api.TypeStarsRevenueStatus;
|
|
4927
4964
|
}
|
|
4965
|
+
export class UpdateBotPurchasedPaidMedia extends VirtualClass<{
|
|
4966
|
+
userId: long;
|
|
4967
|
+
payload: string;
|
|
4968
|
+
qts: int;
|
|
4969
|
+
}> {
|
|
4970
|
+
CONSTRUCTOR_ID: 675009298;
|
|
4971
|
+
SUBCLASS_OF_ID: 2676568142;
|
|
4972
|
+
classType: "constructor";
|
|
4973
|
+
className: "UpdateBotPurchasedPaidMedia";
|
|
4974
|
+
static fromReader(reader: Reader): UpdateBotPurchasedPaidMedia;
|
|
4975
|
+
userId: long;
|
|
4976
|
+
payload: string;
|
|
4977
|
+
qts: int;
|
|
4978
|
+
}
|
|
4979
|
+
export class UpdatePaidReactionPrivacy extends VirtualClass<{
|
|
4980
|
+
private: Bool;
|
|
4981
|
+
}> {
|
|
4982
|
+
CONSTRUCTOR_ID: 1372224236;
|
|
4983
|
+
SUBCLASS_OF_ID: 2676568142;
|
|
4984
|
+
classType: "constructor";
|
|
4985
|
+
className: "UpdatePaidReactionPrivacy";
|
|
4986
|
+
static fromReader(reader: Reader): UpdatePaidReactionPrivacy;
|
|
4987
|
+
private: Bool;
|
|
4988
|
+
}
|
|
4928
4989
|
export class UpdatesTooLong extends VirtualClass<void> {
|
|
4929
4990
|
CONSTRUCTOR_ID: 3809980286;
|
|
4930
4991
|
SUBCLASS_OF_ID: 2331323052;
|
|
@@ -9974,6 +10035,18 @@ export namespace Api {
|
|
|
9974
10035
|
static fromReader(reader: Reader): ChannelAdminLogEventActionToggleSignatureProfiles;
|
|
9975
10036
|
newValue: Bool;
|
|
9976
10037
|
}
|
|
10038
|
+
export class ChannelAdminLogEventActionParticipantSubExtend extends VirtualClass<{
|
|
10039
|
+
prevParticipant: Api.TypeChannelParticipant;
|
|
10040
|
+
newParticipant: Api.TypeChannelParticipant;
|
|
10041
|
+
}> {
|
|
10042
|
+
CONSTRUCTOR_ID: 1684286899;
|
|
10043
|
+
SUBCLASS_OF_ID: 2998503411;
|
|
10044
|
+
classType: "constructor";
|
|
10045
|
+
className: "ChannelAdminLogEventActionParticipantSubExtend";
|
|
10046
|
+
static fromReader(reader: Reader): ChannelAdminLogEventActionParticipantSubExtend;
|
|
10047
|
+
prevParticipant: Api.TypeChannelParticipant;
|
|
10048
|
+
newParticipant: Api.TypeChannelParticipant;
|
|
10049
|
+
}
|
|
9977
10050
|
export class ChannelAdminLogEvent extends VirtualClass<{
|
|
9978
10051
|
id: long;
|
|
9979
10052
|
date: int;
|
|
@@ -10010,6 +10083,7 @@ export namespace Api {
|
|
|
10010
10083
|
invites?: boolean;
|
|
10011
10084
|
send?: boolean;
|
|
10012
10085
|
forums?: boolean;
|
|
10086
|
+
subExtend?: boolean;
|
|
10013
10087
|
}> {
|
|
10014
10088
|
CONSTRUCTOR_ID: 3926948580;
|
|
10015
10089
|
SUBCLASS_OF_ID: 2092692249;
|
|
@@ -10035,6 +10109,7 @@ export namespace Api {
|
|
|
10035
10109
|
invites?: boolean;
|
|
10036
10110
|
send?: boolean;
|
|
10037
10111
|
forums?: boolean;
|
|
10112
|
+
subExtend?: boolean;
|
|
10038
10113
|
}
|
|
10039
10114
|
export class PopularContact extends VirtualClass<{
|
|
10040
10115
|
clientId: long;
|
|
@@ -12897,6 +12972,40 @@ export namespace Api {
|
|
|
12897
12972
|
currency: string;
|
|
12898
12973
|
amount: long;
|
|
12899
12974
|
}
|
|
12975
|
+
export class InputStorePaymentStarsGiveaway extends VirtualClass<{
|
|
12976
|
+
// flags: null;
|
|
12977
|
+
onlyNewSubscribers?: boolean;
|
|
12978
|
+
winnersAreVisible?: boolean;
|
|
12979
|
+
stars: long;
|
|
12980
|
+
boostPeer: Api.TypeInputPeer;
|
|
12981
|
+
additionalPeers?: Api.TypeInputPeer[];
|
|
12982
|
+
countriesIso2?: string[];
|
|
12983
|
+
prizeDescription?: string;
|
|
12984
|
+
randomId?: long;
|
|
12985
|
+
untilDate: int;
|
|
12986
|
+
currency: string;
|
|
12987
|
+
amount: long;
|
|
12988
|
+
users: int;
|
|
12989
|
+
}> {
|
|
12990
|
+
CONSTRUCTOR_ID: 1964968186;
|
|
12991
|
+
SUBCLASS_OF_ID: 3886290765;
|
|
12992
|
+
classType: "constructor";
|
|
12993
|
+
className: "InputStorePaymentStarsGiveaway";
|
|
12994
|
+
static fromReader(reader: Reader): InputStorePaymentStarsGiveaway;
|
|
12995
|
+
// flags: null;
|
|
12996
|
+
onlyNewSubscribers?: boolean;
|
|
12997
|
+
winnersAreVisible?: boolean;
|
|
12998
|
+
stars: long;
|
|
12999
|
+
boostPeer: Api.TypeInputPeer;
|
|
13000
|
+
additionalPeers?: Api.TypeInputPeer[];
|
|
13001
|
+
countriesIso2?: string[];
|
|
13002
|
+
prizeDescription?: string;
|
|
13003
|
+
randomId?: long;
|
|
13004
|
+
untilDate: int;
|
|
13005
|
+
currency: string;
|
|
13006
|
+
amount: long;
|
|
13007
|
+
users: int;
|
|
13008
|
+
}
|
|
12900
13009
|
export class PremiumGiftOption extends VirtualClass<{
|
|
12901
13010
|
// flags: null;
|
|
12902
13011
|
months: int;
|
|
@@ -13969,6 +14078,24 @@ export namespace Api {
|
|
|
13969
14078
|
quantity: int;
|
|
13970
14079
|
date: int;
|
|
13971
14080
|
}
|
|
14081
|
+
export class PrepaidStarsGiveaway extends VirtualClass<{
|
|
14082
|
+
id: long;
|
|
14083
|
+
stars: long;
|
|
14084
|
+
quantity: int;
|
|
14085
|
+
boosts: int;
|
|
14086
|
+
date: int;
|
|
14087
|
+
}> {
|
|
14088
|
+
CONSTRUCTOR_ID: 2594011104;
|
|
14089
|
+
SUBCLASS_OF_ID: 3997067136;
|
|
14090
|
+
classType: "constructor";
|
|
14091
|
+
className: "PrepaidStarsGiveaway";
|
|
14092
|
+
static fromReader(reader: Reader): PrepaidStarsGiveaway;
|
|
14093
|
+
id: long;
|
|
14094
|
+
stars: long;
|
|
14095
|
+
quantity: int;
|
|
14096
|
+
boosts: int;
|
|
14097
|
+
date: int;
|
|
14098
|
+
}
|
|
13972
14099
|
export class Boost extends VirtualClass<{
|
|
13973
14100
|
// flags: null;
|
|
13974
14101
|
gift?: boolean;
|
|
@@ -13981,8 +14108,9 @@ export namespace Api {
|
|
|
13981
14108
|
expires: int;
|
|
13982
14109
|
usedGiftSlug?: string;
|
|
13983
14110
|
multiplier?: int;
|
|
14111
|
+
stars?: long;
|
|
13984
14112
|
}> {
|
|
13985
|
-
CONSTRUCTOR_ID:
|
|
14113
|
+
CONSTRUCTOR_ID: 1262359766;
|
|
13986
14114
|
SUBCLASS_OF_ID: 2544175212;
|
|
13987
14115
|
classType: "constructor";
|
|
13988
14116
|
className: "Boost";
|
|
@@ -13998,6 +14126,7 @@ export namespace Api {
|
|
|
13998
14126
|
expires: int;
|
|
13999
14127
|
usedGiftSlug?: string;
|
|
14000
14128
|
multiplier?: int;
|
|
14129
|
+
stars?: long;
|
|
14001
14130
|
}
|
|
14002
14131
|
export class MyBoost extends VirtualClass<{
|
|
14003
14132
|
// flags: null;
|
|
@@ -14792,15 +14921,19 @@ export namespace Api {
|
|
|
14792
14921
|
showPreviews: Bool;
|
|
14793
14922
|
}
|
|
14794
14923
|
export class BroadcastRevenueBalances extends VirtualClass<{
|
|
14924
|
+
// flags: null;
|
|
14925
|
+
withdrawalEnabled?: boolean;
|
|
14795
14926
|
currentBalance: long;
|
|
14796
14927
|
availableBalance: long;
|
|
14797
14928
|
overallRevenue: long;
|
|
14798
14929
|
}> {
|
|
14799
|
-
CONSTRUCTOR_ID:
|
|
14930
|
+
CONSTRUCTOR_ID: 3288297959;
|
|
14800
14931
|
SUBCLASS_OF_ID: 365072370;
|
|
14801
14932
|
classType: "constructor";
|
|
14802
14933
|
className: "BroadcastRevenueBalances";
|
|
14803
14934
|
static fromReader(reader: Reader): BroadcastRevenueBalances;
|
|
14935
|
+
// flags: null;
|
|
14936
|
+
withdrawalEnabled?: boolean;
|
|
14804
14937
|
currentBalance: long;
|
|
14805
14938
|
availableBalance: long;
|
|
14806
14939
|
overallRevenue: long;
|
|
@@ -14937,8 +15070,9 @@ export namespace Api {
|
|
|
14937
15070
|
msgId?: int;
|
|
14938
15071
|
extendedMedia?: Api.TypeMessageMedia[];
|
|
14939
15072
|
subscriptionPeriod?: int;
|
|
15073
|
+
giveawayPostId?: int;
|
|
14940
15074
|
}> {
|
|
14941
|
-
CONSTRUCTOR_ID:
|
|
15075
|
+
CONSTRUCTOR_ID: 4000654037;
|
|
14942
15076
|
SUBCLASS_OF_ID: 2257078130;
|
|
14943
15077
|
classType: "constructor";
|
|
14944
15078
|
className: "StarsTransaction";
|
|
@@ -14962,6 +15096,7 @@ export namespace Api {
|
|
|
14962
15096
|
msgId?: int;
|
|
14963
15097
|
extendedMedia?: Api.TypeMessageMedia[];
|
|
14964
15098
|
subscriptionPeriod?: int;
|
|
15099
|
+
giveawayPostId?: int;
|
|
14965
15100
|
}
|
|
14966
15101
|
export class FoundStory extends VirtualClass<{
|
|
14967
15102
|
peer: Api.TypePeer;
|
|
@@ -15117,6 +15252,48 @@ export namespace Api {
|
|
|
15117
15252
|
peerId?: Api.TypePeer;
|
|
15118
15253
|
count: int;
|
|
15119
15254
|
}
|
|
15255
|
+
export class StarsGiveawayOption extends VirtualClass<{
|
|
15256
|
+
// flags: null;
|
|
15257
|
+
extended?: boolean;
|
|
15258
|
+
default?: boolean;
|
|
15259
|
+
stars: long;
|
|
15260
|
+
yearlyBoosts: int;
|
|
15261
|
+
storeProduct?: string;
|
|
15262
|
+
currency: string;
|
|
15263
|
+
amount: long;
|
|
15264
|
+
winners: Api.TypeStarsGiveawayWinnersOption[];
|
|
15265
|
+
}> {
|
|
15266
|
+
CONSTRUCTOR_ID: 2496562474;
|
|
15267
|
+
SUBCLASS_OF_ID: 975741451;
|
|
15268
|
+
classType: "constructor";
|
|
15269
|
+
className: "StarsGiveawayOption";
|
|
15270
|
+
static fromReader(reader: Reader): StarsGiveawayOption;
|
|
15271
|
+
// flags: null;
|
|
15272
|
+
extended?: boolean;
|
|
15273
|
+
default?: boolean;
|
|
15274
|
+
stars: long;
|
|
15275
|
+
yearlyBoosts: int;
|
|
15276
|
+
storeProduct?: string;
|
|
15277
|
+
currency: string;
|
|
15278
|
+
amount: long;
|
|
15279
|
+
winners: Api.TypeStarsGiveawayWinnersOption[];
|
|
15280
|
+
}
|
|
15281
|
+
export class StarsGiveawayWinnersOption extends VirtualClass<{
|
|
15282
|
+
// flags: null;
|
|
15283
|
+
default?: boolean;
|
|
15284
|
+
users: int;
|
|
15285
|
+
perUserStars: long;
|
|
15286
|
+
}> {
|
|
15287
|
+
CONSTRUCTOR_ID: 1411605001;
|
|
15288
|
+
SUBCLASS_OF_ID: 4227506916;
|
|
15289
|
+
classType: "constructor";
|
|
15290
|
+
className: "StarsGiveawayWinnersOption";
|
|
15291
|
+
static fromReader(reader: Reader): StarsGiveawayWinnersOption;
|
|
15292
|
+
// flags: null;
|
|
15293
|
+
default?: boolean;
|
|
15294
|
+
users: int;
|
|
15295
|
+
perUserStars: long;
|
|
15296
|
+
}
|
|
15120
15297
|
export class ResPQ extends VirtualClass<{
|
|
15121
15298
|
nonce: int128;
|
|
15122
15299
|
serverNonce: int128;
|
|
@@ -19059,11 +19236,12 @@ export namespace Api {
|
|
|
19059
19236
|
refunded?: boolean;
|
|
19060
19237
|
startDate: int;
|
|
19061
19238
|
giftCodeSlug?: string;
|
|
19239
|
+
starsPrize?: long;
|
|
19062
19240
|
finishDate: int;
|
|
19063
19241
|
winnersCount: int;
|
|
19064
|
-
activatedCount
|
|
19242
|
+
activatedCount?: int;
|
|
19065
19243
|
}> {
|
|
19066
|
-
CONSTRUCTOR_ID:
|
|
19244
|
+
CONSTRUCTOR_ID: 3782600303;
|
|
19067
19245
|
SUBCLASS_OF_ID: 2527295421;
|
|
19068
19246
|
classType: "constructor";
|
|
19069
19247
|
className: "payments.GiveawayInfoResults";
|
|
@@ -19073,9 +19251,10 @@ export namespace Api {
|
|
|
19073
19251
|
refunded?: boolean;
|
|
19074
19252
|
startDate: int;
|
|
19075
19253
|
giftCodeSlug?: string;
|
|
19254
|
+
starsPrize?: long;
|
|
19076
19255
|
finishDate: int;
|
|
19077
19256
|
winnersCount: int;
|
|
19078
|
-
activatedCount
|
|
19257
|
+
activatedCount?: int;
|
|
19079
19258
|
}
|
|
19080
19259
|
export class StarsStatus extends VirtualClass<{
|
|
19081
19260
|
// flags: null;
|
|
@@ -25229,23 +25408,23 @@ export namespace Api {
|
|
|
25229
25408
|
}
|
|
25230
25409
|
export class SendPaidReaction extends Request<Partial<{
|
|
25231
25410
|
// flags: null;
|
|
25232
|
-
private?: boolean;
|
|
25233
25411
|
peer: Api.TypeEntityLike;
|
|
25234
25412
|
msgId: MessageIDLike;
|
|
25235
25413
|
count: int;
|
|
25236
25414
|
randomId?: long;
|
|
25415
|
+
private?: Bool;
|
|
25237
25416
|
}>, Api.TypeUpdates> {
|
|
25238
|
-
CONSTRUCTOR_ID:
|
|
25417
|
+
CONSTRUCTOR_ID: 2648090235;
|
|
25239
25418
|
SUBCLASS_OF_ID: 2331323052;
|
|
25240
25419
|
classType: "request";
|
|
25241
25420
|
className: "messages.SendPaidReaction";
|
|
25242
25421
|
static fromReader(reader: Reader): SendPaidReaction;
|
|
25243
25422
|
// flags: null;
|
|
25244
|
-
private?: boolean;
|
|
25245
25423
|
peer: Api.TypeEntityLike;
|
|
25246
25424
|
msgId: MessageIDLike;
|
|
25247
25425
|
count: int;
|
|
25248
25426
|
randomId?: long;
|
|
25427
|
+
private?: Bool;
|
|
25249
25428
|
}
|
|
25250
25429
|
export class TogglePaidReactionPrivacy extends Request<Partial<{
|
|
25251
25430
|
peer: Api.TypeEntityLike;
|
|
@@ -25261,6 +25440,13 @@ export namespace Api {
|
|
|
25261
25440
|
msgId: MessageIDLike;
|
|
25262
25441
|
private: Bool;
|
|
25263
25442
|
}
|
|
25443
|
+
export class GetPaidReactionPrivacy extends Request<void, Api.TypeUpdates> {
|
|
25444
|
+
CONSTRUCTOR_ID: 1193563562;
|
|
25445
|
+
SUBCLASS_OF_ID: 2331323052;
|
|
25446
|
+
classType: "request";
|
|
25447
|
+
className: "messages.GetPaidReactionPrivacy";
|
|
25448
|
+
static fromReader(reader: Reader): GetPaidReactionPrivacy;
|
|
25449
|
+
}
|
|
25264
25450
|
}
|
|
25265
25451
|
|
|
25266
25452
|
export namespace updates {
|
|
@@ -27292,6 +27478,13 @@ export namespace Api {
|
|
|
27292
27478
|
peer: Api.TypeEntityLike;
|
|
27293
27479
|
subscriptionId: string;
|
|
27294
27480
|
}
|
|
27481
|
+
export class GetStarsGiveawayOptions extends Request<void, Api.TypeStarsGiveawayOption[]> {
|
|
27482
|
+
CONSTRUCTOR_ID: 3172924734;
|
|
27483
|
+
SUBCLASS_OF_ID: 4175114409;
|
|
27484
|
+
classType: "request";
|
|
27485
|
+
className: "payments.GetStarsGiveawayOptions";
|
|
27486
|
+
static fromReader(reader: Reader): GetStarsGiveawayOptions;
|
|
27487
|
+
}
|
|
27295
27488
|
}
|
|
27296
27489
|
|
|
27297
27490
|
export namespace stickers {
|
|
@@ -28795,7 +28988,7 @@ export namespace Api {
|
|
|
28795
28988
|
export type TypeChatPhoto = ChatPhotoEmpty | ChatPhoto;
|
|
28796
28989
|
export type TypeMessage = MessageEmpty | Message | MessageService;
|
|
28797
28990
|
export type TypeMessageMedia = MessageMediaEmpty | MessageMediaPhoto | MessageMediaGeo | MessageMediaContact | MessageMediaUnsupported | MessageMediaDocument | MessageMediaWebPage | MessageMediaVenue | MessageMediaGame | MessageMediaInvoice | MessageMediaGeoLive | MessageMediaPoll | MessageMediaDice | MessageMediaStory | MessageMediaGiveaway | MessageMediaGiveawayResults | MessageMediaPaidMedia;
|
|
28798
|
-
export type TypeMessageAction = MessageActionEmpty | MessageActionChatCreate | MessageActionChatEditTitle | MessageActionChatEditPhoto | MessageActionChatDeletePhoto | MessageActionChatAddUser | MessageActionChatDeleteUser | MessageActionChatJoinedByLink | MessageActionChannelCreate | MessageActionChatMigrateTo | MessageActionChannelMigrateFrom | MessageActionPinMessage | MessageActionHistoryClear | MessageActionGameScore | MessageActionPaymentSentMe | MessageActionPaymentSent | MessageActionPhoneCall | MessageActionScreenshotTaken | MessageActionCustomAction | MessageActionBotAllowed | MessageActionSecureValuesSentMe | MessageActionSecureValuesSent | MessageActionContactSignUp | MessageActionGeoProximityReached | MessageActionGroupCall | MessageActionInviteToGroupCall | MessageActionSetMessagesTTL | MessageActionGroupCallScheduled | MessageActionSetChatTheme | MessageActionChatJoinedByRequest | MessageActionWebViewDataSentMe | MessageActionWebViewDataSent | MessageActionGiftPremium | MessageActionTopicCreate | MessageActionTopicEdit | MessageActionSuggestProfilePhoto | MessageActionRequestedPeer | MessageActionSetChatWallPaper | MessageActionGiftCode | MessageActionGiveawayLaunch | MessageActionGiveawayResults | MessageActionBoostApply | MessageActionRequestedPeerSentMe | MessageActionPaymentRefunded | MessageActionGiftStars;
|
|
28991
|
+
export type TypeMessageAction = MessageActionEmpty | MessageActionChatCreate | MessageActionChatEditTitle | MessageActionChatEditPhoto | MessageActionChatDeletePhoto | MessageActionChatAddUser | MessageActionChatDeleteUser | MessageActionChatJoinedByLink | MessageActionChannelCreate | MessageActionChatMigrateTo | MessageActionChannelMigrateFrom | MessageActionPinMessage | MessageActionHistoryClear | MessageActionGameScore | MessageActionPaymentSentMe | MessageActionPaymentSent | MessageActionPhoneCall | MessageActionScreenshotTaken | MessageActionCustomAction | MessageActionBotAllowed | MessageActionSecureValuesSentMe | MessageActionSecureValuesSent | MessageActionContactSignUp | MessageActionGeoProximityReached | MessageActionGroupCall | MessageActionInviteToGroupCall | MessageActionSetMessagesTTL | MessageActionGroupCallScheduled | MessageActionSetChatTheme | MessageActionChatJoinedByRequest | MessageActionWebViewDataSentMe | MessageActionWebViewDataSent | MessageActionGiftPremium | MessageActionTopicCreate | MessageActionTopicEdit | MessageActionSuggestProfilePhoto | MessageActionRequestedPeer | MessageActionSetChatWallPaper | MessageActionGiftCode | MessageActionGiveawayLaunch | MessageActionGiveawayResults | MessageActionBoostApply | MessageActionRequestedPeerSentMe | MessageActionPaymentRefunded | MessageActionGiftStars | MessageActionPrizeStars;
|
|
28799
28992
|
export type TypeDialog = Dialog | DialogFolder;
|
|
28800
28993
|
export type TypePhoto = PhotoEmpty | Photo;
|
|
28801
28994
|
export type TypePhotoSize = PhotoSizeEmpty | PhotoSize | PhotoCachedSize | PhotoStrippedSize | PhotoSizeProgressive | PhotoPathSize;
|
|
@@ -28811,7 +29004,7 @@ export namespace Api {
|
|
|
28811
29004
|
export type TypeImportedContact = ImportedContact;
|
|
28812
29005
|
export type TypeContactStatus = ContactStatus;
|
|
28813
29006
|
export type TypeMessagesFilter = InputMessagesFilterEmpty | InputMessagesFilterPhotos | InputMessagesFilterVideo | InputMessagesFilterPhotoVideo | InputMessagesFilterDocument | InputMessagesFilterUrl | InputMessagesFilterGif | InputMessagesFilterVoice | InputMessagesFilterMusic | InputMessagesFilterChatPhotos | InputMessagesFilterPhoneCalls | InputMessagesFilterRoundVoice | InputMessagesFilterRoundVideo | InputMessagesFilterMyMentions | InputMessagesFilterGeo | InputMessagesFilterContacts | InputMessagesFilterPinned;
|
|
28814
|
-
export type TypeUpdate = UpdateNewMessage | UpdateMessageID | UpdateDeleteMessages | UpdateUserTyping | UpdateChatUserTyping | UpdateChatParticipants | UpdateUserStatus | UpdateUserName | UpdateNewAuthorization | UpdateNewEncryptedMessage | UpdateEncryptedChatTyping | UpdateEncryption | UpdateEncryptedMessagesRead | UpdateChatParticipantAdd | UpdateChatParticipantDelete | UpdateDcOptions | UpdateNotifySettings | UpdateServiceNotification | UpdatePrivacy | UpdateUserPhone | UpdateReadHistoryInbox | UpdateReadHistoryOutbox | UpdateWebPage | UpdateReadMessagesContents | UpdateChannelTooLong | UpdateChannel | UpdateNewChannelMessage | UpdateReadChannelInbox | UpdateDeleteChannelMessages | UpdateChannelMessageViews | UpdateChatParticipantAdmin | UpdateNewStickerSet | UpdateStickerSetsOrder | UpdateStickerSets | UpdateSavedGifs | UpdateBotInlineQuery | UpdateBotInlineSend | UpdateEditChannelMessage | UpdateBotCallbackQuery | UpdateEditMessage | UpdateInlineBotCallbackQuery | UpdateReadChannelOutbox | UpdateDraftMessage | UpdateReadFeaturedStickers | UpdateRecentStickers | UpdateConfig | UpdatePtsChanged | UpdateChannelWebPage | UpdateDialogPinned | UpdatePinnedDialogs | UpdateBotWebhookJSON | UpdateBotWebhookJSONQuery | UpdateBotShippingQuery | UpdateBotPrecheckoutQuery | UpdatePhoneCall | UpdateLangPackTooLong | UpdateLangPack | UpdateFavedStickers | UpdateChannelReadMessagesContents | UpdateContactsReset | UpdateChannelAvailableMessages | UpdateDialogUnreadMark | UpdateMessagePoll | UpdateChatDefaultBannedRights | UpdateFolderPeers | UpdatePeerSettings | UpdatePeerLocated | UpdateNewScheduledMessage | UpdateDeleteScheduledMessages | UpdateTheme | UpdateGeoLiveViewed | UpdateLoginToken | UpdateMessagePollVote | UpdateDialogFilter | UpdateDialogFilterOrder | UpdateDialogFilters | UpdatePhoneCallSignalingData | UpdateChannelMessageForwards | UpdateReadChannelDiscussionInbox | UpdateReadChannelDiscussionOutbox | UpdatePeerBlocked | UpdateChannelUserTyping | UpdatePinnedMessages | UpdatePinnedChannelMessages | UpdateChat | UpdateGroupCallParticipants | UpdateGroupCall | UpdatePeerHistoryTTL | UpdateChatParticipant | UpdateChannelParticipant | UpdateBotStopped | UpdateGroupCallConnection | UpdateBotCommands | UpdatePendingJoinRequests | UpdateBotChatInviteRequester | UpdateMessageReactions | UpdateAttachMenuBots | UpdateWebViewResultSent | UpdateBotMenuButton | UpdateSavedRingtones | UpdateTranscribedAudio | UpdateReadFeaturedEmojiStickers | UpdateUserEmojiStatus | UpdateRecentEmojiStatuses | UpdateRecentReactions | UpdateMoveStickerSetToTop | UpdateMessageExtendedMedia | UpdateChannelPinnedTopic | UpdateChannelPinnedTopics | UpdateUser | UpdateAutoSaveSettings | UpdateStory | UpdateReadStories | UpdateStoryID | UpdateStoriesStealthMode | UpdateSentStoryReaction | UpdateBotChatBoost | UpdateChannelViewForumAsMessages | UpdatePeerWallpaper | UpdateBotMessageReaction | UpdateBotMessageReactions | UpdateSavedDialogPinned | UpdatePinnedSavedDialogs | UpdateSavedReactionTags | UpdateSmsJob | UpdateQuickReplies | UpdateNewQuickReply | UpdateDeleteQuickReply | UpdateQuickReplyMessage | UpdateDeleteQuickReplyMessages | UpdateBotBusinessConnect | UpdateBotNewBusinessMessage | UpdateBotEditBusinessMessage | UpdateBotDeleteBusinessMessage | UpdateNewStoryReaction | UpdateBroadcastRevenueTransactions | UpdateStarsBalance | UpdateBusinessBotCallbackQuery | UpdateStarsRevenueStatus;
|
|
29007
|
+
export type TypeUpdate = UpdateNewMessage | UpdateMessageID | UpdateDeleteMessages | UpdateUserTyping | UpdateChatUserTyping | UpdateChatParticipants | UpdateUserStatus | UpdateUserName | UpdateNewAuthorization | UpdateNewEncryptedMessage | UpdateEncryptedChatTyping | UpdateEncryption | UpdateEncryptedMessagesRead | UpdateChatParticipantAdd | UpdateChatParticipantDelete | UpdateDcOptions | UpdateNotifySettings | UpdateServiceNotification | UpdatePrivacy | UpdateUserPhone | UpdateReadHistoryInbox | UpdateReadHistoryOutbox | UpdateWebPage | UpdateReadMessagesContents | UpdateChannelTooLong | UpdateChannel | UpdateNewChannelMessage | UpdateReadChannelInbox | UpdateDeleteChannelMessages | UpdateChannelMessageViews | UpdateChatParticipantAdmin | UpdateNewStickerSet | UpdateStickerSetsOrder | UpdateStickerSets | UpdateSavedGifs | UpdateBotInlineQuery | UpdateBotInlineSend | UpdateEditChannelMessage | UpdateBotCallbackQuery | UpdateEditMessage | UpdateInlineBotCallbackQuery | UpdateReadChannelOutbox | UpdateDraftMessage | UpdateReadFeaturedStickers | UpdateRecentStickers | UpdateConfig | UpdatePtsChanged | UpdateChannelWebPage | UpdateDialogPinned | UpdatePinnedDialogs | UpdateBotWebhookJSON | UpdateBotWebhookJSONQuery | UpdateBotShippingQuery | UpdateBotPrecheckoutQuery | UpdatePhoneCall | UpdateLangPackTooLong | UpdateLangPack | UpdateFavedStickers | UpdateChannelReadMessagesContents | UpdateContactsReset | UpdateChannelAvailableMessages | UpdateDialogUnreadMark | UpdateMessagePoll | UpdateChatDefaultBannedRights | UpdateFolderPeers | UpdatePeerSettings | UpdatePeerLocated | UpdateNewScheduledMessage | UpdateDeleteScheduledMessages | UpdateTheme | UpdateGeoLiveViewed | UpdateLoginToken | UpdateMessagePollVote | UpdateDialogFilter | UpdateDialogFilterOrder | UpdateDialogFilters | UpdatePhoneCallSignalingData | UpdateChannelMessageForwards | UpdateReadChannelDiscussionInbox | UpdateReadChannelDiscussionOutbox | UpdatePeerBlocked | UpdateChannelUserTyping | UpdatePinnedMessages | UpdatePinnedChannelMessages | UpdateChat | UpdateGroupCallParticipants | UpdateGroupCall | UpdatePeerHistoryTTL | UpdateChatParticipant | UpdateChannelParticipant | UpdateBotStopped | UpdateGroupCallConnection | UpdateBotCommands | UpdatePendingJoinRequests | UpdateBotChatInviteRequester | UpdateMessageReactions | UpdateAttachMenuBots | UpdateWebViewResultSent | UpdateBotMenuButton | UpdateSavedRingtones | UpdateTranscribedAudio | UpdateReadFeaturedEmojiStickers | UpdateUserEmojiStatus | UpdateRecentEmojiStatuses | UpdateRecentReactions | UpdateMoveStickerSetToTop | UpdateMessageExtendedMedia | UpdateChannelPinnedTopic | UpdateChannelPinnedTopics | UpdateUser | UpdateAutoSaveSettings | UpdateStory | UpdateReadStories | UpdateStoryID | UpdateStoriesStealthMode | UpdateSentStoryReaction | UpdateBotChatBoost | UpdateChannelViewForumAsMessages | UpdatePeerWallpaper | UpdateBotMessageReaction | UpdateBotMessageReactions | UpdateSavedDialogPinned | UpdatePinnedSavedDialogs | UpdateSavedReactionTags | UpdateSmsJob | UpdateQuickReplies | UpdateNewQuickReply | UpdateDeleteQuickReply | UpdateQuickReplyMessage | UpdateDeleteQuickReplyMessages | UpdateBotBusinessConnect | UpdateBotNewBusinessMessage | UpdateBotEditBusinessMessage | UpdateBotDeleteBusinessMessage | UpdateNewStoryReaction | UpdateBroadcastRevenueTransactions | UpdateStarsBalance | UpdateBusinessBotCallbackQuery | UpdateStarsRevenueStatus | UpdateBotPurchasedPaidMedia | UpdatePaidReactionPrivacy;
|
|
28815
29008
|
export type TypeUpdates = UpdatesTooLong | UpdateShortMessage | UpdateShortChatMessage | UpdateShort | UpdatesCombined | Updates | UpdateShortSentMessage;
|
|
28816
29009
|
export type TypeDcOption = DcOption;
|
|
28817
29010
|
export type TypeConfig = Config;
|
|
@@ -28893,7 +29086,7 @@ export namespace Api {
|
|
|
28893
29086
|
export type TypeLangPackString = LangPackString | LangPackStringPluralized | LangPackStringDeleted;
|
|
28894
29087
|
export type TypeLangPackDifference = LangPackDifference;
|
|
28895
29088
|
export type TypeLangPackLanguage = LangPackLanguage;
|
|
28896
|
-
export type TypeChannelAdminLogEventAction = ChannelAdminLogEventActionChangeTitle | ChannelAdminLogEventActionChangeAbout | ChannelAdminLogEventActionChangeUsername | ChannelAdminLogEventActionChangePhoto | ChannelAdminLogEventActionToggleInvites | ChannelAdminLogEventActionToggleSignatures | ChannelAdminLogEventActionUpdatePinned | ChannelAdminLogEventActionEditMessage | ChannelAdminLogEventActionDeleteMessage | ChannelAdminLogEventActionParticipantJoin | ChannelAdminLogEventActionParticipantLeave | ChannelAdminLogEventActionParticipantInvite | ChannelAdminLogEventActionParticipantToggleBan | ChannelAdminLogEventActionParticipantToggleAdmin | ChannelAdminLogEventActionChangeStickerSet | ChannelAdminLogEventActionTogglePreHistoryHidden | ChannelAdminLogEventActionDefaultBannedRights | ChannelAdminLogEventActionStopPoll | ChannelAdminLogEventActionChangeLinkedChat | ChannelAdminLogEventActionChangeLocation | ChannelAdminLogEventActionToggleSlowMode | ChannelAdminLogEventActionStartGroupCall | ChannelAdminLogEventActionDiscardGroupCall | ChannelAdminLogEventActionParticipantMute | ChannelAdminLogEventActionParticipantUnmute | ChannelAdminLogEventActionToggleGroupCallSetting | ChannelAdminLogEventActionParticipantJoinByInvite | ChannelAdminLogEventActionExportedInviteDelete | ChannelAdminLogEventActionExportedInviteRevoke | ChannelAdminLogEventActionExportedInviteEdit | ChannelAdminLogEventActionParticipantVolume | ChannelAdminLogEventActionChangeHistoryTTL | ChannelAdminLogEventActionParticipantJoinByRequest | ChannelAdminLogEventActionToggleNoForwards | ChannelAdminLogEventActionSendMessage | ChannelAdminLogEventActionChangeAvailableReactions | ChannelAdminLogEventActionChangeUsernames | ChannelAdminLogEventActionToggleForum | ChannelAdminLogEventActionCreateTopic | ChannelAdminLogEventActionEditTopic | ChannelAdminLogEventActionDeleteTopic | ChannelAdminLogEventActionPinTopic | ChannelAdminLogEventActionToggleAntiSpam | ChannelAdminLogEventActionChangePeerColor | ChannelAdminLogEventActionChangeProfilePeerColor | ChannelAdminLogEventActionChangeWallpaper | ChannelAdminLogEventActionChangeEmojiStatus | ChannelAdminLogEventActionChangeEmojiStickerSet | ChannelAdminLogEventActionToggleSignatureProfiles;
|
|
29089
|
+
export type TypeChannelAdminLogEventAction = ChannelAdminLogEventActionChangeTitle | ChannelAdminLogEventActionChangeAbout | ChannelAdminLogEventActionChangeUsername | ChannelAdminLogEventActionChangePhoto | ChannelAdminLogEventActionToggleInvites | ChannelAdminLogEventActionToggleSignatures | ChannelAdminLogEventActionUpdatePinned | ChannelAdminLogEventActionEditMessage | ChannelAdminLogEventActionDeleteMessage | ChannelAdminLogEventActionParticipantJoin | ChannelAdminLogEventActionParticipantLeave | ChannelAdminLogEventActionParticipantInvite | ChannelAdminLogEventActionParticipantToggleBan | ChannelAdminLogEventActionParticipantToggleAdmin | ChannelAdminLogEventActionChangeStickerSet | ChannelAdminLogEventActionTogglePreHistoryHidden | ChannelAdminLogEventActionDefaultBannedRights | ChannelAdminLogEventActionStopPoll | ChannelAdminLogEventActionChangeLinkedChat | ChannelAdminLogEventActionChangeLocation | ChannelAdminLogEventActionToggleSlowMode | ChannelAdminLogEventActionStartGroupCall | ChannelAdminLogEventActionDiscardGroupCall | ChannelAdminLogEventActionParticipantMute | ChannelAdminLogEventActionParticipantUnmute | ChannelAdminLogEventActionToggleGroupCallSetting | ChannelAdminLogEventActionParticipantJoinByInvite | ChannelAdminLogEventActionExportedInviteDelete | ChannelAdminLogEventActionExportedInviteRevoke | ChannelAdminLogEventActionExportedInviteEdit | ChannelAdminLogEventActionParticipantVolume | ChannelAdminLogEventActionChangeHistoryTTL | ChannelAdminLogEventActionParticipantJoinByRequest | ChannelAdminLogEventActionToggleNoForwards | ChannelAdminLogEventActionSendMessage | ChannelAdminLogEventActionChangeAvailableReactions | ChannelAdminLogEventActionChangeUsernames | ChannelAdminLogEventActionToggleForum | ChannelAdminLogEventActionCreateTopic | ChannelAdminLogEventActionEditTopic | ChannelAdminLogEventActionDeleteTopic | ChannelAdminLogEventActionPinTopic | ChannelAdminLogEventActionToggleAntiSpam | ChannelAdminLogEventActionChangePeerColor | ChannelAdminLogEventActionChangeProfilePeerColor | ChannelAdminLogEventActionChangeWallpaper | ChannelAdminLogEventActionChangeEmojiStatus | ChannelAdminLogEventActionChangeEmojiStickerSet | ChannelAdminLogEventActionToggleSignatureProfiles | ChannelAdminLogEventActionParticipantSubExtend;
|
|
28897
29090
|
export type TypeChannelAdminLogEvent = ChannelAdminLogEvent;
|
|
28898
29091
|
export type TypeChannelAdminLogEventsFilter = ChannelAdminLogEventsFilter;
|
|
28899
29092
|
export type TypePopularContact = PopularContact;
|
|
@@ -29004,7 +29197,7 @@ export namespace Api {
|
|
|
29004
29197
|
export type TypeNotificationSound = NotificationSoundDefault | NotificationSoundNone | NotificationSoundLocal | NotificationSoundRingtone;
|
|
29005
29198
|
export type TypeAttachMenuPeerType = AttachMenuPeerTypeSameBotPM | AttachMenuPeerTypeBotPM | AttachMenuPeerTypePM | AttachMenuPeerTypeChat | AttachMenuPeerTypeBroadcast;
|
|
29006
29199
|
export type TypeInputInvoice = InputInvoiceMessage | InputInvoiceSlug | InputInvoicePremiumGiftCode | InputInvoiceStars | InputInvoiceChatInviteSubscription;
|
|
29007
|
-
export type TypeInputStorePaymentPurpose = InputStorePaymentPremiumSubscription | InputStorePaymentGiftPremium | InputStorePaymentPremiumGiftCode | InputStorePaymentPremiumGiveaway | InputStorePaymentStarsTopup | InputStorePaymentStarsGift;
|
|
29200
|
+
export type TypeInputStorePaymentPurpose = InputStorePaymentPremiumSubscription | InputStorePaymentGiftPremium | InputStorePaymentPremiumGiftCode | InputStorePaymentPremiumGiveaway | InputStorePaymentStarsTopup | InputStorePaymentStarsGift | InputStorePaymentStarsGiveaway;
|
|
29008
29201
|
export type TypePremiumGiftOption = PremiumGiftOption;
|
|
29009
29202
|
export type TypePaymentFormMethod = PaymentFormMethod;
|
|
29010
29203
|
export type TypeEmojiStatus = EmojiStatusEmpty | EmojiStatus | EmojiStatusUntil;
|
|
@@ -29043,7 +29236,7 @@ export namespace Api {
|
|
|
29043
29236
|
export type TypeMediaArea = MediaAreaVenue | InputMediaAreaVenue | MediaAreaGeoPoint | MediaAreaSuggestedReaction | MediaAreaChannelPost | InputMediaAreaChannelPost | MediaAreaUrl | MediaAreaWeather;
|
|
29044
29237
|
export type TypePeerStories = PeerStories;
|
|
29045
29238
|
export type TypePremiumGiftCodeOption = PremiumGiftCodeOption;
|
|
29046
|
-
export type TypePrepaidGiveaway = PrepaidGiveaway;
|
|
29239
|
+
export type TypePrepaidGiveaway = PrepaidGiveaway | PrepaidStarsGiveaway;
|
|
29047
29240
|
export type TypeBoost = Boost;
|
|
29048
29241
|
export type TypeMyBoost = MyBoost;
|
|
29049
29242
|
export type TypeStoryFwdHeader = StoryFwdHeader;
|
|
@@ -29100,6 +29293,8 @@ export namespace Api {
|
|
|
29100
29293
|
export type TypeStarsSubscriptionPricing = StarsSubscriptionPricing;
|
|
29101
29294
|
export type TypeStarsSubscription = StarsSubscription;
|
|
29102
29295
|
export type TypeMessageReactor = MessageReactor;
|
|
29296
|
+
export type TypeStarsGiveawayOption = StarsGiveawayOption;
|
|
29297
|
+
export type TypeStarsGiveawayWinnersOption = StarsGiveawayWinnersOption;
|
|
29103
29298
|
export type TypeResPQ = ResPQ;
|
|
29104
29299
|
export type TypeP_Q_inner_data = PQInnerData | PQInnerDataDc | PQInnerDataTemp | PQInnerDataTempDc;
|
|
29105
29300
|
export type TypeBindAuthKeyInner = BindAuthKeyInner;
|
|
@@ -29133,14 +29328,14 @@ export namespace Api {
|
|
|
29133
29328
|
| account.RegisterDevice | account.UnregisterDevice | account.UpdateNotifySettings | account.GetNotifySettings | account.ResetNotifySettings | account.UpdateProfile | account.UpdateStatus | account.GetWallPapers | account.ReportPeer | account.CheckUsername | account.UpdateUsername | account.GetPrivacy | account.SetPrivacy | account.DeleteAccount | account.GetAccountTTL | account.SetAccountTTL | account.SendChangePhoneCode | account.ChangePhone | account.UpdateDeviceLocked | account.GetAuthorizations | account.ResetAuthorization | account.GetPassword | account.GetPasswordSettings | account.UpdatePasswordSettings | account.SendConfirmPhoneCode | account.ConfirmPhone | account.GetTmpPassword | account.GetWebAuthorizations | account.ResetWebAuthorization | account.ResetWebAuthorizations | account.GetAllSecureValues | account.GetSecureValue | account.SaveSecureValue | account.DeleteSecureValue | account.GetAuthorizationForm | account.AcceptAuthorization | account.SendVerifyPhoneCode | account.VerifyPhone | account.SendVerifyEmailCode | account.VerifyEmail | account.InitTakeoutSession | account.FinishTakeoutSession | account.ConfirmPasswordEmail | account.ResendPasswordEmail | account.CancelPasswordEmail | account.GetContactSignUpNotification | account.SetContactSignUpNotification | account.GetNotifyExceptions | account.GetWallPaper | account.UploadWallPaper | account.SaveWallPaper | account.InstallWallPaper | account.ResetWallPapers | account.GetAutoDownloadSettings | account.SaveAutoDownloadSettings | account.UploadTheme | account.CreateTheme | account.UpdateTheme | account.SaveTheme | account.InstallTheme | account.GetTheme | account.GetThemes | account.SetContentSettings | account.GetContentSettings | account.GetMultiWallPapers | account.GetGlobalPrivacySettings | account.SetGlobalPrivacySettings | account.ReportProfilePhoto | account.ResetPassword | account.DeclinePasswordReset | account.GetChatThemes | account.SetAuthorizationTTL | account.ChangeAuthorizationSettings | account.GetSavedRingtones | account.SaveRingtone | account.UploadRingtone | account.UpdateEmojiStatus | account.GetDefaultEmojiStatuses | account.GetRecentEmojiStatuses | account.ClearRecentEmojiStatuses | account.ReorderUsernames | account.ToggleUsername | account.GetDefaultProfilePhotoEmojis | account.GetDefaultGroupPhotoEmojis | account.GetAutoSaveSettings | account.SaveAutoSaveSettings | account.DeleteAutoSaveExceptions | account.InvalidateSignInCodes | account.UpdateColor | account.GetDefaultBackgroundEmojis | account.GetChannelDefaultEmojiStatuses | account.GetChannelRestrictedStatusEmojis | account.UpdateBusinessWorkHours | account.UpdateBusinessLocation | account.UpdateBusinessGreetingMessage | account.UpdateBusinessAwayMessage | account.UpdateConnectedBot | account.GetConnectedBots | account.GetBotBusinessConnection | account.UpdateBusinessIntro | account.ToggleConnectedBotPaused | account.DisablePeerConnectedBot | account.UpdateBirthday | account.CreateBusinessChatLink | account.EditBusinessChatLink | account.DeleteBusinessChatLink | account.GetBusinessChatLinks | account.ResolveBusinessChatLink | account.UpdatePersonalChannel | account.ToggleSponsoredMessages | account.GetReactionsNotifySettings | account.SetReactionsNotifySettings
|
|
29134
29329
|
| users.GetUsers | users.GetFullUser | users.SetSecureValueErrors | users.GetIsPremiumRequiredToContact
|
|
29135
29330
|
| contacts.GetContactIDs | contacts.GetStatuses | contacts.GetContacts | contacts.ImportContacts | contacts.DeleteContacts | contacts.DeleteByPhones | contacts.Block | contacts.Unblock | contacts.GetBlocked | contacts.Search | contacts.ResolveUsername | contacts.GetTopPeers | contacts.ResetTopPeerRating | contacts.ResetSaved | contacts.GetSaved | contacts.ToggleTopPeers | contacts.AddContact | contacts.AcceptContact | contacts.GetLocated | contacts.BlockFromReplies | contacts.ResolvePhone | contacts.ExportContactToken | contacts.ImportContactToken | contacts.EditCloseFriends | contacts.SetBlocked | contacts.GetBirthdays
|
|
29136
|
-
| messages.GetMessages | messages.GetDialogs | messages.GetHistory | messages.Search | messages.ReadHistory | messages.DeleteHistory | messages.DeleteMessages | messages.ReceivedMessages | messages.SetTyping | messages.SendMessage | messages.SendMedia | messages.ForwardMessages | messages.ReportSpam | messages.GetPeerSettings | messages.Report | messages.GetChats | messages.GetFullChat | messages.EditChatTitle | messages.EditChatPhoto | messages.AddChatUser | messages.DeleteChatUser | messages.CreateChat | messages.GetDhConfig | messages.RequestEncryption | messages.AcceptEncryption | messages.DiscardEncryption | messages.SetEncryptedTyping | messages.ReadEncryptedHistory | messages.SendEncrypted | messages.SendEncryptedFile | messages.SendEncryptedService | messages.ReceivedQueue | messages.ReportEncryptedSpam | messages.ReadMessageContents | messages.GetStickers | messages.GetAllStickers | messages.GetWebPagePreview | messages.ExportChatInvite | messages.CheckChatInvite | messages.ImportChatInvite | messages.GetStickerSet | messages.InstallStickerSet | messages.UninstallStickerSet | messages.StartBot | messages.GetMessagesViews | messages.EditChatAdmin | messages.MigrateChat | messages.SearchGlobal | messages.ReorderStickerSets | messages.GetDocumentByHash | messages.GetSavedGifs | messages.SaveGif | messages.GetInlineBotResults | messages.SetInlineBotResults | messages.SendInlineBotResult | messages.GetMessageEditData | messages.EditMessage | messages.EditInlineBotMessage | messages.GetBotCallbackAnswer | messages.SetBotCallbackAnswer | messages.GetPeerDialogs | messages.SaveDraft | messages.GetAllDrafts | messages.GetFeaturedStickers | messages.ReadFeaturedStickers | messages.GetRecentStickers | messages.SaveRecentSticker | messages.ClearRecentStickers | messages.GetArchivedStickers | messages.GetMaskStickers | messages.GetAttachedStickers | messages.SetGameScore | messages.SetInlineGameScore | messages.GetGameHighScores | messages.GetInlineGameHighScores | messages.GetCommonChats | messages.GetWebPage | messages.ToggleDialogPin | messages.ReorderPinnedDialogs | messages.GetPinnedDialogs | messages.SetBotShippingResults | messages.SetBotPrecheckoutResults | messages.UploadMedia | messages.SendScreenshotNotification | messages.GetFavedStickers | messages.FaveSticker | messages.GetUnreadMentions | messages.ReadMentions | messages.GetRecentLocations | messages.SendMultiMedia | messages.UploadEncryptedFile | messages.SearchStickerSets | messages.GetSplitRanges | messages.MarkDialogUnread | messages.GetDialogUnreadMarks | messages.ClearAllDrafts | messages.UpdatePinnedMessage | messages.SendVote | messages.GetPollResults | messages.GetOnlines | messages.EditChatAbout | messages.EditChatDefaultBannedRights | messages.GetEmojiKeywords | messages.GetEmojiKeywordsDifference | messages.GetEmojiKeywordsLanguages | messages.GetEmojiURL | messages.GetSearchCounters | messages.RequestUrlAuth | messages.AcceptUrlAuth | messages.HidePeerSettingsBar | messages.GetScheduledHistory | messages.GetScheduledMessages | messages.SendScheduledMessages | messages.DeleteScheduledMessages | messages.GetPollVotes | messages.ToggleStickerSets | messages.GetDialogFilters | messages.GetSuggestedDialogFilters | messages.UpdateDialogFilter | messages.UpdateDialogFiltersOrder | messages.GetOldFeaturedStickers | messages.GetReplies | messages.GetDiscussionMessage | messages.ReadDiscussion | messages.UnpinAllMessages | messages.DeleteChat | messages.DeletePhoneCallHistory | messages.CheckHistoryImport | messages.InitHistoryImport | messages.UploadImportedMedia | messages.StartHistoryImport | messages.GetExportedChatInvites | messages.GetExportedChatInvite | messages.EditExportedChatInvite | messages.DeleteRevokedExportedChatInvites | messages.DeleteExportedChatInvite | messages.GetAdminsWithInvites | messages.GetChatInviteImporters | messages.SetHistoryTTL | messages.CheckHistoryImportPeer | messages.SetChatTheme | messages.GetMessageReadParticipants | messages.GetSearchResultsCalendar | messages.GetSearchResultsPositions | messages.HideChatJoinRequest | messages.HideAllChatJoinRequests | messages.ToggleNoForwards | messages.SaveDefaultSendAs | messages.SendReaction | messages.GetMessagesReactions | messages.GetMessageReactionsList | messages.SetChatAvailableReactions | messages.GetAvailableReactions | messages.SetDefaultReaction | messages.TranslateText | messages.GetUnreadReactions | messages.ReadReactions | messages.SearchSentMedia | messages.GetAttachMenuBots | messages.GetAttachMenuBot | messages.ToggleBotInAttachMenu | messages.RequestWebView | messages.ProlongWebView | messages.RequestSimpleWebView | messages.SendWebViewResultMessage | messages.SendWebViewData | messages.TranscribeAudio | messages.RateTranscribedAudio | messages.GetCustomEmojiDocuments | messages.GetEmojiStickers | messages.GetFeaturedEmojiStickers | messages.ReportReaction | messages.GetTopReactions | messages.GetRecentReactions | messages.ClearRecentReactions | messages.GetExtendedMedia | messages.SetDefaultHistoryTTL | messages.GetDefaultHistoryTTL | messages.SendBotRequestedPeer | messages.GetEmojiGroups | messages.GetEmojiStatusGroups | messages.GetEmojiProfilePhotoGroups | messages.SearchCustomEmoji | messages.TogglePeerTranslations | messages.GetBotApp | messages.RequestAppWebView | messages.SetChatWallPaper | messages.SearchEmojiStickerSets | messages.GetSavedDialogs | messages.GetSavedHistory | messages.DeleteSavedHistory | messages.GetPinnedSavedDialogs | messages.ToggleSavedDialogPin | messages.ReorderPinnedSavedDialogs | messages.GetSavedReactionTags | messages.UpdateSavedReactionTag | messages.GetDefaultTagReactions | messages.GetOutboxReadDate | messages.GetQuickReplies | messages.ReorderQuickReplies | messages.CheckQuickReplyShortcut | messages.EditQuickReplyShortcut | messages.DeleteQuickReplyShortcut | messages.GetQuickReplyMessages | messages.SendQuickReplyMessages | messages.DeleteQuickReplyMessages | messages.ToggleDialogFilterTags | messages.GetMyStickers | messages.GetEmojiStickerGroups | messages.GetAvailableEffects | messages.EditFactCheck | messages.DeleteFactCheck | messages.GetFactCheck | messages.RequestMainWebView | messages.SendPaidReaction | messages.TogglePaidReactionPrivacy
|
|
29331
|
+
| messages.GetMessages | messages.GetDialogs | messages.GetHistory | messages.Search | messages.ReadHistory | messages.DeleteHistory | messages.DeleteMessages | messages.ReceivedMessages | messages.SetTyping | messages.SendMessage | messages.SendMedia | messages.ForwardMessages | messages.ReportSpam | messages.GetPeerSettings | messages.Report | messages.GetChats | messages.GetFullChat | messages.EditChatTitle | messages.EditChatPhoto | messages.AddChatUser | messages.DeleteChatUser | messages.CreateChat | messages.GetDhConfig | messages.RequestEncryption | messages.AcceptEncryption | messages.DiscardEncryption | messages.SetEncryptedTyping | messages.ReadEncryptedHistory | messages.SendEncrypted | messages.SendEncryptedFile | messages.SendEncryptedService | messages.ReceivedQueue | messages.ReportEncryptedSpam | messages.ReadMessageContents | messages.GetStickers | messages.GetAllStickers | messages.GetWebPagePreview | messages.ExportChatInvite | messages.CheckChatInvite | messages.ImportChatInvite | messages.GetStickerSet | messages.InstallStickerSet | messages.UninstallStickerSet | messages.StartBot | messages.GetMessagesViews | messages.EditChatAdmin | messages.MigrateChat | messages.SearchGlobal | messages.ReorderStickerSets | messages.GetDocumentByHash | messages.GetSavedGifs | messages.SaveGif | messages.GetInlineBotResults | messages.SetInlineBotResults | messages.SendInlineBotResult | messages.GetMessageEditData | messages.EditMessage | messages.EditInlineBotMessage | messages.GetBotCallbackAnswer | messages.SetBotCallbackAnswer | messages.GetPeerDialogs | messages.SaveDraft | messages.GetAllDrafts | messages.GetFeaturedStickers | messages.ReadFeaturedStickers | messages.GetRecentStickers | messages.SaveRecentSticker | messages.ClearRecentStickers | messages.GetArchivedStickers | messages.GetMaskStickers | messages.GetAttachedStickers | messages.SetGameScore | messages.SetInlineGameScore | messages.GetGameHighScores | messages.GetInlineGameHighScores | messages.GetCommonChats | messages.GetWebPage | messages.ToggleDialogPin | messages.ReorderPinnedDialogs | messages.GetPinnedDialogs | messages.SetBotShippingResults | messages.SetBotPrecheckoutResults | messages.UploadMedia | messages.SendScreenshotNotification | messages.GetFavedStickers | messages.FaveSticker | messages.GetUnreadMentions | messages.ReadMentions | messages.GetRecentLocations | messages.SendMultiMedia | messages.UploadEncryptedFile | messages.SearchStickerSets | messages.GetSplitRanges | messages.MarkDialogUnread | messages.GetDialogUnreadMarks | messages.ClearAllDrafts | messages.UpdatePinnedMessage | messages.SendVote | messages.GetPollResults | messages.GetOnlines | messages.EditChatAbout | messages.EditChatDefaultBannedRights | messages.GetEmojiKeywords | messages.GetEmojiKeywordsDifference | messages.GetEmojiKeywordsLanguages | messages.GetEmojiURL | messages.GetSearchCounters | messages.RequestUrlAuth | messages.AcceptUrlAuth | messages.HidePeerSettingsBar | messages.GetScheduledHistory | messages.GetScheduledMessages | messages.SendScheduledMessages | messages.DeleteScheduledMessages | messages.GetPollVotes | messages.ToggleStickerSets | messages.GetDialogFilters | messages.GetSuggestedDialogFilters | messages.UpdateDialogFilter | messages.UpdateDialogFiltersOrder | messages.GetOldFeaturedStickers | messages.GetReplies | messages.GetDiscussionMessage | messages.ReadDiscussion | messages.UnpinAllMessages | messages.DeleteChat | messages.DeletePhoneCallHistory | messages.CheckHistoryImport | messages.InitHistoryImport | messages.UploadImportedMedia | messages.StartHistoryImport | messages.GetExportedChatInvites | messages.GetExportedChatInvite | messages.EditExportedChatInvite | messages.DeleteRevokedExportedChatInvites | messages.DeleteExportedChatInvite | messages.GetAdminsWithInvites | messages.GetChatInviteImporters | messages.SetHistoryTTL | messages.CheckHistoryImportPeer | messages.SetChatTheme | messages.GetMessageReadParticipants | messages.GetSearchResultsCalendar | messages.GetSearchResultsPositions | messages.HideChatJoinRequest | messages.HideAllChatJoinRequests | messages.ToggleNoForwards | messages.SaveDefaultSendAs | messages.SendReaction | messages.GetMessagesReactions | messages.GetMessageReactionsList | messages.SetChatAvailableReactions | messages.GetAvailableReactions | messages.SetDefaultReaction | messages.TranslateText | messages.GetUnreadReactions | messages.ReadReactions | messages.SearchSentMedia | messages.GetAttachMenuBots | messages.GetAttachMenuBot | messages.ToggleBotInAttachMenu | messages.RequestWebView | messages.ProlongWebView | messages.RequestSimpleWebView | messages.SendWebViewResultMessage | messages.SendWebViewData | messages.TranscribeAudio | messages.RateTranscribedAudio | messages.GetCustomEmojiDocuments | messages.GetEmojiStickers | messages.GetFeaturedEmojiStickers | messages.ReportReaction | messages.GetTopReactions | messages.GetRecentReactions | messages.ClearRecentReactions | messages.GetExtendedMedia | messages.SetDefaultHistoryTTL | messages.GetDefaultHistoryTTL | messages.SendBotRequestedPeer | messages.GetEmojiGroups | messages.GetEmojiStatusGroups | messages.GetEmojiProfilePhotoGroups | messages.SearchCustomEmoji | messages.TogglePeerTranslations | messages.GetBotApp | messages.RequestAppWebView | messages.SetChatWallPaper | messages.SearchEmojiStickerSets | messages.GetSavedDialogs | messages.GetSavedHistory | messages.DeleteSavedHistory | messages.GetPinnedSavedDialogs | messages.ToggleSavedDialogPin | messages.ReorderPinnedSavedDialogs | messages.GetSavedReactionTags | messages.UpdateSavedReactionTag | messages.GetDefaultTagReactions | messages.GetOutboxReadDate | messages.GetQuickReplies | messages.ReorderQuickReplies | messages.CheckQuickReplyShortcut | messages.EditQuickReplyShortcut | messages.DeleteQuickReplyShortcut | messages.GetQuickReplyMessages | messages.SendQuickReplyMessages | messages.DeleteQuickReplyMessages | messages.ToggleDialogFilterTags | messages.GetMyStickers | messages.GetEmojiStickerGroups | messages.GetAvailableEffects | messages.EditFactCheck | messages.DeleteFactCheck | messages.GetFactCheck | messages.RequestMainWebView | messages.SendPaidReaction | messages.TogglePaidReactionPrivacy | messages.GetPaidReactionPrivacy
|
|
29137
29332
|
| updates.GetState | updates.GetDifference | updates.GetChannelDifference
|
|
29138
29333
|
| photos.UpdateProfilePhoto | photos.UploadProfilePhoto | photos.DeletePhotos | photos.GetUserPhotos | photos.UploadContactProfilePhoto
|
|
29139
29334
|
| upload.SaveFilePart | upload.GetFile | upload.SaveBigFilePart | upload.GetWebFile | upload.GetCdnFile | upload.ReuploadCdnFile | upload.GetCdnFileHashes | upload.GetFileHashes
|
|
29140
29335
|
| help.GetConfig | help.GetNearestDc | help.GetAppUpdate | help.GetInviteText | help.GetSupport | help.SetBotUpdatesStatus | help.GetCdnConfig | help.GetRecentMeUrls | help.GetTermsOfServiceUpdate | help.AcceptTermsOfService | help.GetDeepLinkInfo | help.GetAppConfig | help.SaveAppLog | help.GetPassportConfig | help.GetSupportName | help.GetUserInfo | help.EditUserInfo | help.GetPromoData | help.HidePromoData | help.DismissSuggestion | help.GetCountriesList | help.GetPremiumPromo | help.GetPeerColors | help.GetPeerProfileColors | help.GetTimezonesList
|
|
29141
29336
|
| channels.ReadHistory | channels.DeleteMessages | channels.ReportSpam | channels.GetMessages | channels.GetParticipants | channels.GetParticipant | channels.GetChannels | channels.GetFullChannel | channels.CreateChannel | channels.EditAdmin | channels.EditTitle | channels.EditPhoto | channels.CheckUsername | channels.UpdateUsername | channels.JoinChannel | channels.LeaveChannel | channels.InviteToChannel | channels.DeleteChannel | channels.ExportMessageLink | channels.ToggleSignatures | channels.GetAdminedPublicChannels | channels.EditBanned | channels.GetAdminLog | channels.SetStickers | channels.ReadMessageContents | channels.DeleteHistory | channels.TogglePreHistoryHidden | channels.GetLeftChannels | channels.GetGroupsForDiscussion | channels.SetDiscussionGroup | channels.EditCreator | channels.EditLocation | channels.ToggleSlowMode | channels.GetInactiveChannels | channels.ConvertToGigagroup | channels.ViewSponsoredMessage | channels.GetSponsoredMessages | channels.GetSendAs | channels.DeleteParticipantHistory | channels.ToggleJoinToSend | channels.ToggleJoinRequest | channels.ReorderUsernames | channels.ToggleUsername | channels.DeactivateAllUsernames | channels.ToggleForum | channels.CreateForumTopic | channels.GetForumTopics | channels.GetForumTopicsByID | channels.EditForumTopic | channels.UpdatePinnedForumTopic | channels.DeleteTopicHistory | channels.ReorderPinnedForumTopics | channels.ToggleAntiSpam | channels.ReportAntiSpamFalsePositive | channels.ToggleParticipantsHidden | channels.ClickSponsoredMessage | channels.UpdateColor | channels.ToggleViewForumAsMessages | channels.GetChannelRecommendations | channels.UpdateEmojiStatus | channels.SetBoostsToUnblockRestrictions | channels.SetEmojiStickers | channels.ReportSponsoredMessage | channels.RestrictSponsoredMessages | channels.SearchPosts
|
|
29142
29337
|
| bots.SendCustomRequest | bots.AnswerWebhookJSONQuery | bots.SetBotCommands | bots.ResetBotCommands | bots.GetBotCommands | bots.SetBotMenuButton | bots.GetBotMenuButton | bots.SetBotBroadcastDefaultAdminRights | bots.SetBotGroupDefaultAdminRights | bots.SetBotInfo | bots.GetBotInfo | bots.ReorderUsernames | bots.ToggleUsername | bots.CanSendMessage | bots.AllowSendMessage | bots.InvokeWebViewCustomMethod | bots.GetPopularAppBots | bots.AddPreviewMedia | bots.EditPreviewMedia | bots.DeletePreviewMedia | bots.ReorderPreviewMedias | bots.GetPreviewInfo | bots.GetPreviewMedias
|
|
29143
|
-
| payments.GetPaymentForm | payments.GetPaymentReceipt | payments.ValidateRequestedInfo | payments.SendPaymentForm | payments.GetSavedInfo | payments.ClearSavedInfo | payments.GetBankCardData | payments.ExportInvoice | payments.AssignAppStoreTransaction | payments.AssignPlayMarketTransaction | payments.CanPurchasePremium | payments.GetPremiumGiftCodeOptions | payments.CheckGiftCode | payments.ApplyGiftCode | payments.GetGiveawayInfo | payments.LaunchPrepaidGiveaway | payments.GetStarsTopupOptions | payments.GetStarsStatus | payments.GetStarsTransactions | payments.SendStarsForm | payments.RefundStarsCharge | payments.GetStarsRevenueStats | payments.GetStarsRevenueWithdrawalUrl | payments.GetStarsRevenueAdsAccountUrl | payments.GetStarsTransactionsByID | payments.GetStarsGiftOptions | payments.GetStarsSubscriptions | payments.ChangeStarsSubscription | payments.FulfillStarsSubscription
|
|
29338
|
+
| payments.GetPaymentForm | payments.GetPaymentReceipt | payments.ValidateRequestedInfo | payments.SendPaymentForm | payments.GetSavedInfo | payments.ClearSavedInfo | payments.GetBankCardData | payments.ExportInvoice | payments.AssignAppStoreTransaction | payments.AssignPlayMarketTransaction | payments.CanPurchasePremium | payments.GetPremiumGiftCodeOptions | payments.CheckGiftCode | payments.ApplyGiftCode | payments.GetGiveawayInfo | payments.LaunchPrepaidGiveaway | payments.GetStarsTopupOptions | payments.GetStarsStatus | payments.GetStarsTransactions | payments.SendStarsForm | payments.RefundStarsCharge | payments.GetStarsRevenueStats | payments.GetStarsRevenueWithdrawalUrl | payments.GetStarsRevenueAdsAccountUrl | payments.GetStarsTransactionsByID | payments.GetStarsGiftOptions | payments.GetStarsSubscriptions | payments.ChangeStarsSubscription | payments.FulfillStarsSubscription | payments.GetStarsGiveawayOptions
|
|
29144
29339
|
| stickers.CreateStickerSet | stickers.RemoveStickerFromSet | stickers.ChangeStickerPosition | stickers.AddStickerToSet | stickers.SetStickerSetThumb | stickers.CheckShortName | stickers.SuggestShortName | stickers.ChangeSticker | stickers.RenameStickerSet | stickers.DeleteStickerSet | stickers.ReplaceSticker
|
|
29145
29340
|
| phone.GetCallConfig | phone.RequestCall | phone.AcceptCall | phone.ConfirmCall | phone.ReceivedCall | phone.DiscardCall | phone.SetCallRating | phone.SaveCallDebug | phone.SendSignalingData | phone.CreateGroupCall | phone.JoinGroupCall | phone.LeaveGroupCall | phone.InviteToGroupCall | phone.DiscardGroupCall | phone.ToggleGroupCallSettings | phone.GetGroupCall | phone.GetGroupParticipants | phone.CheckGroupCall | phone.ToggleGroupCallRecord | phone.EditGroupCallParticipant | phone.EditGroupCallTitle | phone.GetGroupCallJoinAs | phone.ExportGroupCallInvite | phone.ToggleGroupCallStartSubscription | phone.StartScheduledGroupCall | phone.SaveDefaultGroupCallJoinAs | phone.JoinGroupCallPresentation | phone.LeaveGroupCallPresentation | phone.GetGroupCallStreamChannels | phone.GetGroupCallStreamRtmpUrl | phone.SaveCallLog
|
|
29146
29341
|
| langpack.GetLangPack | langpack.GetStrings | langpack.GetDifference | langpack.GetLanguages | langpack.GetLanguage
|
package/tl/apiTl.js
CHANGED
|
@@ -37,7 +37,7 @@ inputMediaPoll#f94e5f1 flags:# poll:Poll correct_answers:flags.0?Vector<bytes> s
|
|
|
37
37
|
inputMediaDice#e66fbf7b emoticon:string = InputMedia;
|
|
38
38
|
inputMediaStory#89fdd778 peer:InputPeer id:int = InputMedia;
|
|
39
39
|
inputMediaWebPage#c21b8849 flags:# force_large_media:flags.0?true force_small_media:flags.1?true optional:flags.2?true url:string = InputMedia;
|
|
40
|
-
inputMediaPaidMedia#
|
|
40
|
+
inputMediaPaidMedia#c4103386 flags:# stars_amount:long extended_media:Vector<InputMedia> payload:flags.0?string = InputMedia;
|
|
41
41
|
inputChatPhotoEmpty#1ca48f57 = InputChatPhoto;
|
|
42
42
|
inputChatUploadedPhoto#bdcdaec0 flags:# file:flags.0?InputFile video:flags.1?InputFile video_start_ts:flags.2?double video_emoji_markup:flags.3?VideoSize = InputChatPhoto;
|
|
43
43
|
inputChatPhoto#8953ad37 id:InputPhoto = InputChatPhoto;
|
|
@@ -109,8 +109,8 @@ messageMediaGeoLive#b940c666 flags:# geo:GeoPoint heading:flags.0?int period:int
|
|
|
109
109
|
messageMediaPoll#4bd6e798 poll:Poll results:PollResults = MessageMedia;
|
|
110
110
|
messageMediaDice#3f7ee58b value:int emoticon:string = MessageMedia;
|
|
111
111
|
messageMediaStory#68cb6283 flags:# via_mention:flags.1?true peer:Peer id:int story:flags.0?StoryItem = MessageMedia;
|
|
112
|
-
messageMediaGiveaway#
|
|
113
|
-
messageMediaGiveawayResults#
|
|
112
|
+
messageMediaGiveaway#aa073beb flags:# only_new_subscribers:flags.0?true winners_are_visible:flags.2?true channels:Vector<long> countries_iso2:flags.1?Vector<string> prize_description:flags.3?string quantity:int months:flags.4?int stars:flags.5?long until_date:int = MessageMedia;
|
|
113
|
+
messageMediaGiveawayResults#ceaa3ea1 flags:# only_new_subscribers:flags.0?true refunded:flags.2?true channel_id:long additional_peers_count:flags.3?int launch_msg_id:int winners_count:int unclaimed_count:int winners:Vector<long> months:flags.4?int stars:flags.5?long prize_description:flags.1?string until_date:int = MessageMedia;
|
|
114
114
|
messageMediaPaidMedia#a8852491 stars_amount:long extended_media:Vector<MessageExtendedMedia> = MessageMedia;
|
|
115
115
|
messageActionEmpty#b6aef7b0 = MessageAction;
|
|
116
116
|
messageActionChatCreate#bd47cbad title:string users:Vector<long> = MessageAction;
|
|
@@ -151,12 +151,13 @@ messageActionSuggestProfilePhoto#57de635e photo:Photo = MessageAction;
|
|
|
151
151
|
messageActionRequestedPeer#31518e9b button_id:int peers:Vector<Peer> = MessageAction;
|
|
152
152
|
messageActionSetChatWallPaper#5060a3f4 flags:# same:flags.0?true for_both:flags.1?true wallpaper:WallPaper = MessageAction;
|
|
153
153
|
messageActionGiftCode#678c2e09 flags:# via_giveaway:flags.0?true unclaimed:flags.2?true boost_peer:flags.1?Peer months:int slug:string currency:flags.2?string amount:flags.2?long crypto_currency:flags.3?string crypto_amount:flags.3?long = MessageAction;
|
|
154
|
-
messageActionGiveawayLaunch#
|
|
155
|
-
messageActionGiveawayResults#
|
|
154
|
+
messageActionGiveawayLaunch#a80f51e4 flags:# stars:flags.0?long = MessageAction;
|
|
155
|
+
messageActionGiveawayResults#87e2f155 flags:# stars:flags.0?true winners_count:int unclaimed_count:int = MessageAction;
|
|
156
156
|
messageActionBoostApply#cc02aa6d boosts:int = MessageAction;
|
|
157
157
|
messageActionRequestedPeerSentMe#93b31848 button_id:int peers:Vector<RequestedPeer> = MessageAction;
|
|
158
158
|
messageActionPaymentRefunded#41b3e202 flags:# peer:Peer currency:string total_amount:long payload:flags.0?bytes charge:PaymentCharge = MessageAction;
|
|
159
159
|
messageActionGiftStars#45d5b021 flags:# currency:string amount:long stars:long crypto_currency:flags.0?string crypto_amount:flags.0?long transaction_id:flags.1?string = MessageAction;
|
|
160
|
+
messageActionPrizeStars#b00c47a2 flags:# unclaimed:flags.0?true stars:long transaction_id:string boost_peer:Peer giveaway_msg_id:int = MessageAction;
|
|
160
161
|
dialog#d58a08c6 flags:# pinned:flags.2?true unread_mark:flags.3?true view_forum_as_messages:flags.6?true peer:Peer top_message:int read_inbox_max_id:int read_outbox_max_id:int unread_count:int unread_mentions_count:int unread_reactions_count:int notify_settings:PeerNotifySettings pts:flags.0?int draft:flags.1?DraftMessage folder_id:flags.4?int ttl_period:flags.5?int = Dialog;
|
|
161
162
|
dialogFolder#71bd134c flags:# pinned:flags.2?true folder:Folder peer:Peer top_message:int unread_muted_peers_count:int unread_unmuted_peers_count:int unread_muted_messages_count:int unread_unmuted_messages_count:int = Dialog;
|
|
162
163
|
photoEmpty#2331b22d id:long = Photo;
|
|
@@ -370,6 +371,8 @@ updateBroadcastRevenueTransactions#dfd961f5 peer:Peer balances:BroadcastRevenueB
|
|
|
370
371
|
updateStarsBalance#fb85198 balance:long = Update;
|
|
371
372
|
updateBusinessBotCallbackQuery#1ea2fda7 flags:# query_id:long user_id:long connection_id:string message:Message reply_to_message:flags.2?Message chat_instance:long data:flags.0?bytes = Update;
|
|
372
373
|
updateStarsRevenueStatus#a584b019 peer:Peer status:StarsRevenueStatus = Update;
|
|
374
|
+
updateBotPurchasedPaidMedia#283bd312 user_id:long payload:string qts:int = Update;
|
|
375
|
+
updatePaidReactionPrivacy#51ca7aec private:Bool = Update;
|
|
373
376
|
updates.state#a56c2a3e pts:int qts:int date:int seq:int unread_count:int = updates.State;
|
|
374
377
|
updates.differenceEmpty#5d75a138 date:int seq:int = updates.Difference;
|
|
375
378
|
updates.difference#f49ca0 new_messages:Vector<Message> new_encrypted_messages:Vector<EncryptedMessage> other_updates:Vector<Update> chats:Vector<Chat> users:Vector<User> state:updates.State = updates.Difference;
|
|
@@ -831,9 +834,10 @@ channelAdminLogEventActionChangeWallpaper#31bb5d52 prev_value:WallPaper new_valu
|
|
|
831
834
|
channelAdminLogEventActionChangeEmojiStatus#3ea9feb1 prev_value:EmojiStatus new_value:EmojiStatus = ChannelAdminLogEventAction;
|
|
832
835
|
channelAdminLogEventActionChangeEmojiStickerSet#46d840ab prev_stickerset:InputStickerSet new_stickerset:InputStickerSet = ChannelAdminLogEventAction;
|
|
833
836
|
channelAdminLogEventActionToggleSignatureProfiles#60a79c79 new_value:Bool = ChannelAdminLogEventAction;
|
|
837
|
+
channelAdminLogEventActionParticipantSubExtend#64642db3 prev_participant:ChannelParticipant new_participant:ChannelParticipant = ChannelAdminLogEventAction;
|
|
834
838
|
channelAdminLogEvent#1fad68cd id:long date:int user_id:long action:ChannelAdminLogEventAction = ChannelAdminLogEvent;
|
|
835
839
|
channels.adminLogResults#ed8af74d events:Vector<ChannelAdminLogEvent> chats:Vector<Chat> users:Vector<User> = channels.AdminLogResults;
|
|
836
|
-
channelAdminLogEventsFilter#ea107ae4 flags:# join:flags.0?true leave:flags.1?true invite:flags.2?true ban:flags.3?true unban:flags.4?true kick:flags.5?true unkick:flags.6?true promote:flags.7?true demote:flags.8?true info:flags.9?true settings:flags.10?true pinned:flags.11?true edit:flags.12?true delete:flags.13?true group_call:flags.14?true invites:flags.15?true send:flags.16?true forums:flags.17?true = ChannelAdminLogEventsFilter;
|
|
840
|
+
channelAdminLogEventsFilter#ea107ae4 flags:# join:flags.0?true leave:flags.1?true invite:flags.2?true ban:flags.3?true unban:flags.4?true kick:flags.5?true unkick:flags.6?true promote:flags.7?true demote:flags.8?true info:flags.9?true settings:flags.10?true pinned:flags.11?true edit:flags.12?true delete:flags.13?true group_call:flags.14?true invites:flags.15?true send:flags.16?true forums:flags.17?true sub_extend:flags.18?true = ChannelAdminLogEventsFilter;
|
|
837
841
|
popularContact#5ce14175 client_id:long importers:int = PopularContact;
|
|
838
842
|
messages.favedStickersNotModified#9e8fa6d3 = messages.FavedStickers;
|
|
839
843
|
messages.favedStickers#2cb51097 hash:long packs:Vector<StickerPack> stickers:Vector<Document> = messages.FavedStickers;
|
|
@@ -1118,6 +1122,7 @@ inputStorePaymentPremiumGiftCode#a3805f3f flags:# users:Vector<InputUser> boost_
|
|
|
1118
1122
|
inputStorePaymentPremiumGiveaway#160544ca flags:# only_new_subscribers:flags.0?true winners_are_visible:flags.3?true boost_peer:InputPeer additional_peers:flags.1?Vector<InputPeer> countries_iso2:flags.2?Vector<string> prize_description:flags.4?string random_id:long until_date:int currency:string amount:long = InputStorePaymentPurpose;
|
|
1119
1123
|
inputStorePaymentStarsTopup#dddd0f56 stars:long currency:string amount:long = InputStorePaymentPurpose;
|
|
1120
1124
|
inputStorePaymentStarsGift#1d741ef7 user_id:InputUser stars:long currency:string amount:long = InputStorePaymentPurpose;
|
|
1125
|
+
inputStorePaymentStarsGiveaway#751f08fa flags:# only_new_subscribers:flags.0?true winners_are_visible:flags.3?true stars:long boost_peer:InputPeer additional_peers:flags.1?Vector<InputPeer> countries_iso2:flags.2?Vector<string> prize_description:flags.4?string random_id:long until_date:int currency:string amount:long users:int = InputStorePaymentPurpose;
|
|
1121
1126
|
premiumGiftOption#74c34319 flags:# months:int currency:string amount:long bot_url:string store_product:flags.0?string = PremiumGiftOption;
|
|
1122
1127
|
paymentFormMethod#88f8f21b url:string title:string = PaymentFormMethod;
|
|
1123
1128
|
emojiStatusEmpty#2de11aae = EmojiStatus;
|
|
@@ -1219,9 +1224,10 @@ messages.webPage#fd5e12bd webpage:WebPage chats:Vector<Chat> users:Vector<User>
|
|
|
1219
1224
|
premiumGiftCodeOption#257e962b flags:# users:int months:int store_product:flags.0?string store_quantity:flags.1?int currency:string amount:long = PremiumGiftCodeOption;
|
|
1220
1225
|
payments.checkedGiftCode#284a1096 flags:# via_giveaway:flags.2?true from_id:flags.4?Peer giveaway_msg_id:flags.3?int to_id:flags.0?long date:int months:int used_date:flags.1?int chats:Vector<Chat> users:Vector<User> = payments.CheckedGiftCode;
|
|
1221
1226
|
payments.giveawayInfo#4367daa0 flags:# participating:flags.0?true preparing_results:flags.3?true start_date:int joined_too_early_date:flags.1?int admin_disallowed_chat_id:flags.2?long disallowed_country:flags.4?string = payments.GiveawayInfo;
|
|
1222
|
-
payments.giveawayInfoResults#
|
|
1227
|
+
payments.giveawayInfoResults#e175e66f flags:# winner:flags.0?true refunded:flags.1?true start_date:int gift_code_slug:flags.3?string stars_prize:flags.4?long finish_date:int winners_count:int activated_count:flags.2?int = payments.GiveawayInfo;
|
|
1223
1228
|
prepaidGiveaway#b2539d54 id:long months:int quantity:int date:int = PrepaidGiveaway;
|
|
1224
|
-
|
|
1229
|
+
prepaidStarsGiveaway#9a9d77e0 id:long stars:long quantity:int boosts:int date:int = PrepaidGiveaway;
|
|
1230
|
+
boost#4b3e14d6 flags:# gift:flags.1?true giveaway:flags.2?true unclaimed:flags.3?true id:string user_id:flags.0?long giveaway_msg_id:flags.2?int date:int expires:int used_gift_slug:flags.4?string multiplier:flags.5?int stars:flags.6?long = Boost;
|
|
1225
1231
|
premium.boostsList#86f8613c flags:# count:int boosts:Vector<Boost> next_offset:flags.0?string users:Vector<User> = premium.BoostsList;
|
|
1226
1232
|
myBoost#c448415c flags:# slot:int peer:flags.0?Peer date:int expires:int cooldown_until_date:flags.1?int = MyBoost;
|
|
1227
1233
|
premium.myBoosts#9ae228e2 my_boosts:Vector<MyBoost> chats:Vector<Chat> users:Vector<User> = premium.MyBoosts;
|
|
@@ -1311,7 +1317,7 @@ stats.broadcastRevenueTransactions#87158466 count:int transactions:Vector<Broadc
|
|
|
1311
1317
|
reactionNotificationsFromContacts#bac3a61a = ReactionNotificationsFrom;
|
|
1312
1318
|
reactionNotificationsFromAll#4b9e22a0 = ReactionNotificationsFrom;
|
|
1313
1319
|
reactionsNotifySettings#56e34970 flags:# messages_notify_from:flags.0?ReactionNotificationsFrom stories_notify_from:flags.1?ReactionNotificationsFrom sound:NotificationSound show_previews:Bool = ReactionsNotifySettings;
|
|
1314
|
-
broadcastRevenueBalances#
|
|
1320
|
+
broadcastRevenueBalances#c3ff71e7 flags:# withdrawal_enabled:flags.0?true current_balance:long available_balance:long overall_revenue:long = BroadcastRevenueBalances;
|
|
1315
1321
|
availableEffect#93c3e27e flags:# premium_required:flags.2?true id:long emoticon:string static_icon_id:flags.0?long effect_sticker_id:long effect_animation_id:flags.1?long = AvailableEffect;
|
|
1316
1322
|
messages.availableEffectsNotModified#d1ed9a5b = messages.AvailableEffects;
|
|
1317
1323
|
messages.availableEffects#bddb616e hash:int effects:Vector<AvailableEffect> documents:Vector<Document> = messages.AvailableEffects;
|
|
@@ -1324,7 +1330,7 @@ starsTransactionPeerFragment#e92fd902 = StarsTransactionPeer;
|
|
|
1324
1330
|
starsTransactionPeer#d80da15d peer:Peer = StarsTransactionPeer;
|
|
1325
1331
|
starsTransactionPeerAds#60682812 = StarsTransactionPeer;
|
|
1326
1332
|
starsTopupOption#bd915c0 flags:# extended:flags.1?true stars:long store_product:flags.0?string currency:string amount:long = StarsTopupOption;
|
|
1327
|
-
starsTransaction#
|
|
1333
|
+
starsTransaction#ee7522d5 flags:# refund:flags.3?true pending:flags.4?true failed:flags.6?true gift:flags.10?true reaction:flags.11?true id:string stars:long date:int peer:StarsTransactionPeer title:flags.0?string description:flags.1?string photo:flags.2?WebDocument transaction_date:flags.5?int transaction_url:flags.5?string bot_payload:flags.7?bytes msg_id:flags.8?int extended_media:flags.9?Vector<MessageMedia> subscription_period:flags.12?int giveaway_post_id:flags.13?int = StarsTransaction;
|
|
1328
1334
|
payments.starsStatus#bbfa316c flags:# balance:long subscriptions:flags.1?Vector<StarsSubscription> subscriptions_next_offset:flags.2?string subscriptions_missing_balance:flags.4?long history:flags.3?Vector<StarsTransaction> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = payments.StarsStatus;
|
|
1329
1335
|
foundStory#e87acbc0 peer:Peer story:StoryItem = FoundStory;
|
|
1330
1336
|
stories.foundStories#e2de7737 flags:# count:int stories:Vector<FoundStory> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = stories.FoundStories;
|
|
@@ -1341,6 +1347,8 @@ bots.previewInfo#ca71d64 media:Vector<BotPreviewMedia> lang_codes:Vector<string>
|
|
|
1341
1347
|
starsSubscriptionPricing#5416d58 period:int amount:long = StarsSubscriptionPricing;
|
|
1342
1348
|
starsSubscription#538ecf18 flags:# canceled:flags.0?true can_refulfill:flags.1?true missing_balance:flags.2?true id:string peer:Peer until_date:int pricing:StarsSubscriptionPricing chat_invite_hash:flags.3?string = StarsSubscription;
|
|
1343
1349
|
messageReactor#4ba3a95a flags:# top:flags.0?true my:flags.1?true anonymous:flags.2?true peer_id:flags.3?Peer count:int = MessageReactor;
|
|
1350
|
+
starsGiveawayOption#94ce852a flags:# extended:flags.0?true default:flags.1?true stars:long yearly_boosts:int store_product:flags.2?string currency:string amount:long winners:Vector<StarsGiveawayWinnersOption> = StarsGiveawayOption;
|
|
1351
|
+
starsGiveawayWinnersOption#54236209 flags:# default:flags.0?true users:int per_user_stars:long = StarsGiveawayWinnersOption;
|
|
1344
1352
|
---functions---
|
|
1345
1353
|
invokeAfterMsg#cb9f372d {X:Type} msg_id:long query:!X = X;
|
|
1346
1354
|
invokeAfterMsgs#3dc4b4f0 {X:Type} msg_ids:Vector<long> query:!X = X;
|
|
@@ -1731,8 +1739,9 @@ messages.editFactCheck#589ee75 peer:InputPeer msg_id:int text:TextWithEntities =
|
|
|
1731
1739
|
messages.deleteFactCheck#d1da940c peer:InputPeer msg_id:int = Updates;
|
|
1732
1740
|
messages.getFactCheck#b9cdc5ee peer:InputPeer msg_id:Vector<int> = Vector<FactCheck>;
|
|
1733
1741
|
messages.requestMainWebView#c9e01e7b flags:# compact:flags.7?true peer:InputPeer bot:InputUser start_param:flags.1?string theme_params:flags.0?DataJSON platform:string = WebViewResult;
|
|
1734
|
-
messages.sendPaidReaction#
|
|
1742
|
+
messages.sendPaidReaction#9dd6a67b flags:# peer:InputPeer msg_id:int count:int random_id:long private:flags.0?Bool = Updates;
|
|
1735
1743
|
messages.togglePaidReactionPrivacy#849ad397 peer:InputPeer msg_id:int private:Bool = Bool;
|
|
1744
|
+
messages.getPaidReactionPrivacy#472455aa = Updates;
|
|
1736
1745
|
updates.getState#edd4882a = updates.State;
|
|
1737
1746
|
updates.getDifference#19c2f763 flags:# pts:int pts_limit:flags.1?int pts_total_limit:flags.0?int date:int qts:int qts_limit:flags.2?int = updates.Difference;
|
|
1738
1747
|
updates.getChannelDifference#3173d78 flags:# force:flags.0?true channel:InputChannel filter:ChannelMessagesFilter pts:int limit:int = updates.ChannelDifference;
|
|
@@ -1891,6 +1900,7 @@ payments.getStarsGiftOptions#d3c96bc8 flags:# user_id:flags.0?InputUser = Vector
|
|
|
1891
1900
|
payments.getStarsSubscriptions#32512c5 flags:# missing_balance:flags.0?true peer:InputPeer offset:string = payments.StarsStatus;
|
|
1892
1901
|
payments.changeStarsSubscription#c7770878 flags:# peer:InputPeer subscription_id:string canceled:flags.0?Bool = Bool;
|
|
1893
1902
|
payments.fulfillStarsSubscription#cc5bebb3 peer:InputPeer subscription_id:string = Bool;
|
|
1903
|
+
payments.getStarsGiveawayOptions#bd1efd3e = Vector<StarsGiveawayOption>;
|
|
1894
1904
|
stickers.createStickerSet#9021ab67 flags:# masks:flags.0?true emojis:flags.5?true text_color:flags.6?true user_id:InputUser title:string short_name:string thumb:flags.2?InputDocument stickers:Vector<InputStickerSetItem> software:flags.3?string = messages.StickerSet;
|
|
1895
1905
|
stickers.removeStickerFromSet#f7760f51 sticker:InputDocument = messages.StickerSet;
|
|
1896
1906
|
stickers.changeStickerPosition#ffb6d4ca sticker:InputDocument position:int = messages.StickerSet;
|
|
@@ -1998,5 +2008,4 @@ smsjobs.updateSettings#93fa0bf flags:# allow_international:flags.0?true = Bool;
|
|
|
1998
2008
|
smsjobs.getStatus#10a698e8 = smsjobs.Status;
|
|
1999
2009
|
smsjobs.getSmsJob#778d902f job_id:string = SmsJob;
|
|
2000
2010
|
smsjobs.finishJob#4f1ebf24 flags:# job_id:string error:flags.0?string = Bool;
|
|
2001
|
-
fragment.getCollectibleInfo#be1e85ba collectible:InputCollectible = fragment.CollectibleInfo
|
|
2002
|
-
`;
|
|
2011
|
+
fragment.getCollectibleInfo#be1e85ba collectible:InputCollectible = fragment.CollectibleInfo;`;
|
package/tl/schemaTl.js
CHANGED
|
@@ -61,5 +61,4 @@ rpc_drop_answer#58e4a740 req_msg_id:long = RpcDropAnswer;
|
|
|
61
61
|
get_future_salts#b921bd04 num:int = FutureSalts;
|
|
62
62
|
ping#7abe77ec ping_id:long = Pong;
|
|
63
63
|
ping_delay_disconnect#f3427b8c ping_id:long disconnect_delay:int = Pong;
|
|
64
|
-
destroy_session#e7512126 session_id:long = DestroySessionRes
|
|
65
|
-
`;
|
|
64
|
+
destroy_session#e7512126 session_id:long = DestroySessionRes;`;
|