teleproto 1.218.0 → 1.220.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/Version.d.ts +1 -1
- package/Version.js +1 -1
- package/package.json +1 -1
- package/sessions/StoreSession.js +2 -7
- package/tl/AllTLObjects.d.ts +1 -1
- package/tl/AllTLObjects.js +1 -1
- package/tl/api.d.ts +350 -23
- package/tl/apiTl.js +36 -14
package/Version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.
|
|
1
|
+
export declare const version = "1.220.0";
|
package/Version.js
CHANGED
package/package.json
CHANGED
package/sessions/StoreSession.js
CHANGED
|
@@ -7,19 +7,14 @@ exports.StoreSession = void 0;
|
|
|
7
7
|
const Memory_1 = require("./Memory");
|
|
8
8
|
const store2_1 = __importDefault(require("store2"));
|
|
9
9
|
const AuthKey_1 = require("../crypto/AuthKey");
|
|
10
|
+
const localStorage_1 = require("./localStorage");
|
|
10
11
|
class StoreSession extends Memory_1.MemorySession {
|
|
11
12
|
constructor(sessionName, divider = ":") {
|
|
12
13
|
super();
|
|
13
14
|
if (sessionName === "session") {
|
|
14
15
|
throw new Error("Session name can't be 'session'. Please use a different name.");
|
|
15
16
|
}
|
|
16
|
-
|
|
17
|
-
const LocalStorage = require("./localStorage").LocalStorage;
|
|
18
|
-
this.store = store2_1.default.area(sessionName, new LocalStorage("./" + sessionName));
|
|
19
|
-
}
|
|
20
|
-
else {
|
|
21
|
-
this.store = store2_1.default.area(sessionName, localStorage);
|
|
22
|
-
}
|
|
17
|
+
this.store = store2_1.default.area(sessionName, new localStorage_1.LocalStorage("./" + sessionName));
|
|
23
18
|
if (divider == undefined) {
|
|
24
19
|
divider = ":";
|
|
25
20
|
}
|
package/tl/AllTLObjects.d.ts
CHANGED
package/tl/AllTLObjects.js
CHANGED
package/tl/api.d.ts
CHANGED
|
@@ -2464,8 +2464,9 @@ export namespace Api {
|
|
|
2464
2464
|
prepaidUpgradeHash?: string;
|
|
2465
2465
|
giftMsgId?: int;
|
|
2466
2466
|
toId?: Api.TypePeer;
|
|
2467
|
+
giftNum?: int;
|
|
2467
2468
|
}> {
|
|
2468
|
-
CONSTRUCTOR_ID:
|
|
2469
|
+
CONSTRUCTOR_ID: 3928764883;
|
|
2469
2470
|
SUBCLASS_OF_ID: 2256589094;
|
|
2470
2471
|
classType: "constructor";
|
|
2471
2472
|
className: "MessageActionStarGift";
|
|
@@ -2491,6 +2492,7 @@ export namespace Api {
|
|
|
2491
2492
|
prepaidUpgradeHash?: string;
|
|
2492
2493
|
giftMsgId?: int;
|
|
2493
2494
|
toId?: Api.TypePeer;
|
|
2495
|
+
giftNum?: int;
|
|
2494
2496
|
}
|
|
2495
2497
|
export class MessageActionStarGiftUnique extends VirtualClass<{
|
|
2496
2498
|
// flags: null;
|
|
@@ -2500,6 +2502,7 @@ export namespace Api {
|
|
|
2500
2502
|
refunded?: boolean;
|
|
2501
2503
|
prepaidUpgrade?: boolean;
|
|
2502
2504
|
assigned?: boolean;
|
|
2505
|
+
fromOffer?: boolean;
|
|
2503
2506
|
gift: Api.TypeStarGift;
|
|
2504
2507
|
canExportAt?: int;
|
|
2505
2508
|
transferStars?: long;
|
|
@@ -2523,6 +2526,7 @@ export namespace Api {
|
|
|
2523
2526
|
refunded?: boolean;
|
|
2524
2527
|
prepaidUpgrade?: boolean;
|
|
2525
2528
|
assigned?: boolean;
|
|
2529
|
+
fromOffer?: boolean;
|
|
2526
2530
|
gift: Api.TypeStarGift;
|
|
2527
2531
|
canExportAt?: int;
|
|
2528
2532
|
transferStars?: long;
|
|
@@ -2676,6 +2680,42 @@ export namespace Api {
|
|
|
2676
2680
|
static fromReader(reader: Reader): MessageActionSuggestBirthday;
|
|
2677
2681
|
birthday: Api.TypeBirthday;
|
|
2678
2682
|
}
|
|
2683
|
+
export class MessageActionStarGiftPurchaseOffer extends VirtualClass<{
|
|
2684
|
+
// flags: null;
|
|
2685
|
+
accepted?: boolean;
|
|
2686
|
+
declined?: boolean;
|
|
2687
|
+
gift: Api.TypeStarGift;
|
|
2688
|
+
price: Api.TypeStarsAmount;
|
|
2689
|
+
expiresAt: int;
|
|
2690
|
+
}> {
|
|
2691
|
+
CONSTRUCTOR_ID: 2000845012;
|
|
2692
|
+
SUBCLASS_OF_ID: 2256589094;
|
|
2693
|
+
classType: "constructor";
|
|
2694
|
+
className: "MessageActionStarGiftPurchaseOffer";
|
|
2695
|
+
static fromReader(reader: Reader): MessageActionStarGiftPurchaseOffer;
|
|
2696
|
+
// flags: null;
|
|
2697
|
+
accepted?: boolean;
|
|
2698
|
+
declined?: boolean;
|
|
2699
|
+
gift: Api.TypeStarGift;
|
|
2700
|
+
price: Api.TypeStarsAmount;
|
|
2701
|
+
expiresAt: int;
|
|
2702
|
+
}
|
|
2703
|
+
export class MessageActionStarGiftPurchaseOfferDeclined extends VirtualClass<{
|
|
2704
|
+
// flags: null;
|
|
2705
|
+
expired?: boolean;
|
|
2706
|
+
gift: Api.TypeStarGift;
|
|
2707
|
+
price: Api.TypeStarsAmount;
|
|
2708
|
+
}> {
|
|
2709
|
+
CONSTRUCTOR_ID: 1940760427;
|
|
2710
|
+
SUBCLASS_OF_ID: 2256589094;
|
|
2711
|
+
classType: "constructor";
|
|
2712
|
+
className: "MessageActionStarGiftPurchaseOfferDeclined";
|
|
2713
|
+
static fromReader(reader: Reader): MessageActionStarGiftPurchaseOfferDeclined;
|
|
2714
|
+
// flags: null;
|
|
2715
|
+
expired?: boolean;
|
|
2716
|
+
gift: Api.TypeStarGift;
|
|
2717
|
+
price: Api.TypeStarsAmount;
|
|
2718
|
+
}
|
|
2679
2719
|
export class Dialog extends VirtualClass<{
|
|
2680
2720
|
// flags: null;
|
|
2681
2721
|
pinned?: boolean;
|
|
@@ -12441,20 +12481,14 @@ export namespace Api {
|
|
|
12441
12481
|
export class WebPageAttributeStarGiftAuction extends VirtualClass<{
|
|
12442
12482
|
gift: Api.TypeStarGift;
|
|
12443
12483
|
endDate: int;
|
|
12444
|
-
centerColor: int;
|
|
12445
|
-
edgeColor: int;
|
|
12446
|
-
textColor: int;
|
|
12447
12484
|
}> {
|
|
12448
|
-
CONSTRUCTOR_ID:
|
|
12485
|
+
CONSTRUCTOR_ID: 29770178;
|
|
12449
12486
|
SUBCLASS_OF_ID: 2949638599;
|
|
12450
12487
|
classType: "constructor";
|
|
12451
12488
|
className: "WebPageAttributeStarGiftAuction";
|
|
12452
12489
|
static fromReader(reader: Reader): WebPageAttributeStarGiftAuction;
|
|
12453
12490
|
gift: Api.TypeStarGift;
|
|
12454
12491
|
endDate: int;
|
|
12455
|
-
centerColor: int;
|
|
12456
|
-
edgeColor: int;
|
|
12457
|
-
textColor: int;
|
|
12458
12492
|
}
|
|
12459
12493
|
export class BankCardOpenUrl extends VirtualClass<{
|
|
12460
12494
|
url: string;
|
|
@@ -16051,6 +16085,7 @@ export namespace Api {
|
|
|
16051
16085
|
stargiftDropOriginalDetails?: boolean;
|
|
16052
16086
|
phonegroupMessage?: boolean;
|
|
16053
16087
|
stargiftAuctionBid?: boolean;
|
|
16088
|
+
offer?: boolean;
|
|
16054
16089
|
id: string;
|
|
16055
16090
|
amount: Api.TypeStarsAmount;
|
|
16056
16091
|
date: int;
|
|
@@ -16094,6 +16129,7 @@ export namespace Api {
|
|
|
16094
16129
|
stargiftDropOriginalDetails?: boolean;
|
|
16095
16130
|
phonegroupMessage?: boolean;
|
|
16096
16131
|
stargiftAuctionBid?: boolean;
|
|
16132
|
+
offer?: boolean;
|
|
16097
16133
|
id: string;
|
|
16098
16134
|
amount: Api.TypeStarsAmount;
|
|
16099
16135
|
date: int;
|
|
@@ -16349,8 +16385,11 @@ export namespace Api {
|
|
|
16349
16385
|
lockedUntilDate?: int;
|
|
16350
16386
|
auctionSlug?: string;
|
|
16351
16387
|
giftsPerRound?: int;
|
|
16388
|
+
auctionStartDate?: int;
|
|
16389
|
+
upgradeVariants?: int;
|
|
16390
|
+
background?: Api.TypeStarGiftBackground;
|
|
16352
16391
|
}> {
|
|
16353
|
-
CONSTRUCTOR_ID:
|
|
16392
|
+
CONSTRUCTOR_ID: 825922887;
|
|
16354
16393
|
SUBCLASS_OF_ID: 3273414923;
|
|
16355
16394
|
classType: "constructor";
|
|
16356
16395
|
className: "StarGift";
|
|
@@ -16381,6 +16420,9 @@ export namespace Api {
|
|
|
16381
16420
|
lockedUntilDate?: int;
|
|
16382
16421
|
auctionSlug?: string;
|
|
16383
16422
|
giftsPerRound?: int;
|
|
16423
|
+
auctionStartDate?: int;
|
|
16424
|
+
upgradeVariants?: int;
|
|
16425
|
+
background?: Api.TypeStarGiftBackground;
|
|
16384
16426
|
}
|
|
16385
16427
|
export class StarGiftUnique extends VirtualClass<{
|
|
16386
16428
|
// flags: null;
|
|
@@ -16403,11 +16445,13 @@ export namespace Api {
|
|
|
16403
16445
|
releasedBy?: Api.TypePeer;
|
|
16404
16446
|
valueAmount?: long;
|
|
16405
16447
|
valueCurrency?: string;
|
|
16448
|
+
valueUsdAmount?: long;
|
|
16406
16449
|
themePeer?: Api.TypePeer;
|
|
16407
16450
|
peerColor?: Api.TypePeerColor;
|
|
16408
16451
|
hostId?: Api.TypePeer;
|
|
16452
|
+
offerMinStars?: int;
|
|
16409
16453
|
}> {
|
|
16410
|
-
CONSTRUCTOR_ID:
|
|
16454
|
+
CONSTRUCTOR_ID: 1453155529;
|
|
16411
16455
|
SUBCLASS_OF_ID: 3273414923;
|
|
16412
16456
|
classType: "constructor";
|
|
16413
16457
|
className: "StarGiftUnique";
|
|
@@ -16432,9 +16476,11 @@ export namespace Api {
|
|
|
16432
16476
|
releasedBy?: Api.TypePeer;
|
|
16433
16477
|
valueAmount?: long;
|
|
16434
16478
|
valueCurrency?: string;
|
|
16479
|
+
valueUsdAmount?: long;
|
|
16435
16480
|
themePeer?: Api.TypePeer;
|
|
16436
16481
|
peerColor?: Api.TypePeerColor;
|
|
16437
16482
|
hostId?: Api.TypePeer;
|
|
16483
|
+
offerMinStars?: int;
|
|
16438
16484
|
}
|
|
16439
16485
|
export class MessageReportOption extends VirtualClass<{
|
|
16440
16486
|
text: string;
|
|
@@ -16692,8 +16738,9 @@ export namespace Api {
|
|
|
16692
16738
|
collectionId?: int[];
|
|
16693
16739
|
prepaidUpgradeHash?: string;
|
|
16694
16740
|
dropOriginalDetailsStars?: long;
|
|
16741
|
+
giftNum?: int;
|
|
16695
16742
|
}> {
|
|
16696
|
-
CONSTRUCTOR_ID:
|
|
16743
|
+
CONSTRUCTOR_ID: 3939926110;
|
|
16697
16744
|
SUBCLASS_OF_ID: 2385198100;
|
|
16698
16745
|
classType: "constructor";
|
|
16699
16746
|
className: "SavedStarGift";
|
|
@@ -16720,6 +16767,7 @@ export namespace Api {
|
|
|
16720
16767
|
collectionId?: int[];
|
|
16721
16768
|
prepaidUpgradeHash?: string;
|
|
16722
16769
|
dropOriginalDetailsStars?: long;
|
|
16770
|
+
giftNum?: int;
|
|
16723
16771
|
}
|
|
16724
16772
|
export class InputSavedStarGiftUser extends VirtualClass<{
|
|
16725
16773
|
msgId: int;
|
|
@@ -17194,7 +17242,6 @@ export namespace Api {
|
|
|
17194
17242
|
// flags: null;
|
|
17195
17243
|
top?: boolean;
|
|
17196
17244
|
my?: boolean;
|
|
17197
|
-
anonymous?: boolean;
|
|
17198
17245
|
peerId?: Api.TypePeer;
|
|
17199
17246
|
stars: long;
|
|
17200
17247
|
}> {
|
|
@@ -17206,7 +17253,6 @@ export namespace Api {
|
|
|
17206
17253
|
// flags: null;
|
|
17207
17254
|
top?: boolean;
|
|
17208
17255
|
my?: boolean;
|
|
17209
|
-
anonymous?: boolean;
|
|
17210
17256
|
peerId?: Api.TypePeer;
|
|
17211
17257
|
stars: long;
|
|
17212
17258
|
}
|
|
@@ -17253,11 +17299,13 @@ export namespace Api {
|
|
|
17253
17299
|
bidLevels: Api.TypeAuctionBidLevel[];
|
|
17254
17300
|
topBidders: long[];
|
|
17255
17301
|
nextRoundAt: int;
|
|
17302
|
+
lastGiftNum: int;
|
|
17256
17303
|
giftsLeft: int;
|
|
17257
17304
|
currentRound: int;
|
|
17258
17305
|
totalRounds: int;
|
|
17306
|
+
rounds: Api.TypeStarGiftAuctionRound[];
|
|
17259
17307
|
}> {
|
|
17260
|
-
CONSTRUCTOR_ID:
|
|
17308
|
+
CONSTRUCTOR_ID: 1998212710;
|
|
17261
17309
|
SUBCLASS_OF_ID: 580130043;
|
|
17262
17310
|
classType: "constructor";
|
|
17263
17311
|
className: "StarGiftAuctionState";
|
|
@@ -17269,23 +17317,33 @@ export namespace Api {
|
|
|
17269
17317
|
bidLevels: Api.TypeAuctionBidLevel[];
|
|
17270
17318
|
topBidders: long[];
|
|
17271
17319
|
nextRoundAt: int;
|
|
17320
|
+
lastGiftNum: int;
|
|
17272
17321
|
giftsLeft: int;
|
|
17273
17322
|
currentRound: int;
|
|
17274
17323
|
totalRounds: int;
|
|
17324
|
+
rounds: Api.TypeStarGiftAuctionRound[];
|
|
17275
17325
|
}
|
|
17276
17326
|
export class StarGiftAuctionStateFinished extends VirtualClass<{
|
|
17327
|
+
// flags: null;
|
|
17277
17328
|
startDate: int;
|
|
17278
17329
|
endDate: int;
|
|
17279
17330
|
averagePrice: long;
|
|
17331
|
+
listedCount?: int;
|
|
17332
|
+
fragmentListedCount?: int;
|
|
17333
|
+
fragmentListedUrl?: string;
|
|
17280
17334
|
}> {
|
|
17281
|
-
CONSTRUCTOR_ID:
|
|
17335
|
+
CONSTRUCTOR_ID: 2536352703;
|
|
17282
17336
|
SUBCLASS_OF_ID: 580130043;
|
|
17283
17337
|
classType: "constructor";
|
|
17284
17338
|
className: "StarGiftAuctionStateFinished";
|
|
17285
17339
|
static fromReader(reader: Reader): StarGiftAuctionStateFinished;
|
|
17340
|
+
// flags: null;
|
|
17286
17341
|
startDate: int;
|
|
17287
17342
|
endDate: int;
|
|
17288
17343
|
averagePrice: long;
|
|
17344
|
+
listedCount?: int;
|
|
17345
|
+
fragmentListedCount?: int;
|
|
17346
|
+
fragmentListedUrl?: string;
|
|
17289
17347
|
}
|
|
17290
17348
|
export class StarGiftAuctionUserState extends VirtualClass<{
|
|
17291
17349
|
// flags: null;
|
|
@@ -17318,8 +17376,9 @@ export namespace Api {
|
|
|
17318
17376
|
round: int;
|
|
17319
17377
|
pos: int;
|
|
17320
17378
|
message?: Api.TypeTextWithEntities;
|
|
17379
|
+
giftNum?: int;
|
|
17321
17380
|
}> {
|
|
17322
|
-
CONSTRUCTOR_ID:
|
|
17381
|
+
CONSTRUCTOR_ID: 1118831432;
|
|
17323
17382
|
SUBCLASS_OF_ID: 655184435;
|
|
17324
17383
|
classType: "constructor";
|
|
17325
17384
|
className: "StarGiftAuctionAcquiredGift";
|
|
@@ -17332,6 +17391,7 @@ export namespace Api {
|
|
|
17332
17391
|
round: int;
|
|
17333
17392
|
pos: int;
|
|
17334
17393
|
message?: Api.TypeTextWithEntities;
|
|
17394
|
+
giftNum?: int;
|
|
17335
17395
|
}
|
|
17336
17396
|
export class StarGiftActiveAuctionState extends VirtualClass<{
|
|
17337
17397
|
gift: Api.TypeStarGift;
|
|
@@ -17367,6 +17427,110 @@ export namespace Api {
|
|
|
17367
17427
|
static fromReader(reader: Reader): InputStarGiftAuctionSlug;
|
|
17368
17428
|
slug: string;
|
|
17369
17429
|
}
|
|
17430
|
+
export class Passkey extends VirtualClass<{
|
|
17431
|
+
// flags: null;
|
|
17432
|
+
id: string;
|
|
17433
|
+
name: string;
|
|
17434
|
+
date: int;
|
|
17435
|
+
softwareEmojiId?: long;
|
|
17436
|
+
lastUsageDate?: int;
|
|
17437
|
+
}> {
|
|
17438
|
+
CONSTRUCTOR_ID: 2556509887;
|
|
17439
|
+
SUBCLASS_OF_ID: 3476557280;
|
|
17440
|
+
classType: "constructor";
|
|
17441
|
+
className: "Passkey";
|
|
17442
|
+
static fromReader(reader: Reader): Passkey;
|
|
17443
|
+
// flags: null;
|
|
17444
|
+
id: string;
|
|
17445
|
+
name: string;
|
|
17446
|
+
date: int;
|
|
17447
|
+
softwareEmojiId?: long;
|
|
17448
|
+
lastUsageDate?: int;
|
|
17449
|
+
}
|
|
17450
|
+
export class InputPasskeyResponseRegister extends VirtualClass<{
|
|
17451
|
+
clientData: Api.TypeDataJSON;
|
|
17452
|
+
attestationData: bytes;
|
|
17453
|
+
}> {
|
|
17454
|
+
CONSTRUCTOR_ID: 1046713180;
|
|
17455
|
+
SUBCLASS_OF_ID: 519096269;
|
|
17456
|
+
classType: "constructor";
|
|
17457
|
+
className: "InputPasskeyResponseRegister";
|
|
17458
|
+
static fromReader(reader: Reader): InputPasskeyResponseRegister;
|
|
17459
|
+
clientData: Api.TypeDataJSON;
|
|
17460
|
+
attestationData: bytes;
|
|
17461
|
+
}
|
|
17462
|
+
export class InputPasskeyResponseLogin extends VirtualClass<{
|
|
17463
|
+
clientData: Api.TypeDataJSON;
|
|
17464
|
+
authenticatorData: bytes;
|
|
17465
|
+
signature: bytes;
|
|
17466
|
+
userHandle: string;
|
|
17467
|
+
}> {
|
|
17468
|
+
CONSTRUCTOR_ID: 3273638218;
|
|
17469
|
+
SUBCLASS_OF_ID: 519096269;
|
|
17470
|
+
classType: "constructor";
|
|
17471
|
+
className: "InputPasskeyResponseLogin";
|
|
17472
|
+
static fromReader(reader: Reader): InputPasskeyResponseLogin;
|
|
17473
|
+
clientData: Api.TypeDataJSON;
|
|
17474
|
+
authenticatorData: bytes;
|
|
17475
|
+
signature: bytes;
|
|
17476
|
+
userHandle: string;
|
|
17477
|
+
}
|
|
17478
|
+
export class InputPasskeyCredentialPublicKey extends VirtualClass<{
|
|
17479
|
+
id: string;
|
|
17480
|
+
rawId: string;
|
|
17481
|
+
response: Api.TypeInputPasskeyResponse;
|
|
17482
|
+
}> {
|
|
17483
|
+
CONSTRUCTOR_ID: 1009235855;
|
|
17484
|
+
SUBCLASS_OF_ID: 514925102;
|
|
17485
|
+
classType: "constructor";
|
|
17486
|
+
className: "InputPasskeyCredentialPublicKey";
|
|
17487
|
+
static fromReader(reader: Reader): InputPasskeyCredentialPublicKey;
|
|
17488
|
+
id: string;
|
|
17489
|
+
rawId: string;
|
|
17490
|
+
response: Api.TypeInputPasskeyResponse;
|
|
17491
|
+
}
|
|
17492
|
+
export class StarGiftBackground extends VirtualClass<{
|
|
17493
|
+
centerColor: int;
|
|
17494
|
+
edgeColor: int;
|
|
17495
|
+
textColor: int;
|
|
17496
|
+
}> {
|
|
17497
|
+
CONSTRUCTOR_ID: 2952094616;
|
|
17498
|
+
SUBCLASS_OF_ID: 63248936;
|
|
17499
|
+
classType: "constructor";
|
|
17500
|
+
className: "StarGiftBackground";
|
|
17501
|
+
static fromReader(reader: Reader): StarGiftBackground;
|
|
17502
|
+
centerColor: int;
|
|
17503
|
+
edgeColor: int;
|
|
17504
|
+
textColor: int;
|
|
17505
|
+
}
|
|
17506
|
+
export class StarGiftAuctionRound extends VirtualClass<{
|
|
17507
|
+
num: int;
|
|
17508
|
+
duration: int;
|
|
17509
|
+
}> {
|
|
17510
|
+
CONSTRUCTOR_ID: 984483112;
|
|
17511
|
+
SUBCLASS_OF_ID: 1156131892;
|
|
17512
|
+
classType: "constructor";
|
|
17513
|
+
className: "StarGiftAuctionRound";
|
|
17514
|
+
static fromReader(reader: Reader): StarGiftAuctionRound;
|
|
17515
|
+
num: int;
|
|
17516
|
+
duration: int;
|
|
17517
|
+
}
|
|
17518
|
+
export class StarGiftAuctionRoundExtendable extends VirtualClass<{
|
|
17519
|
+
num: int;
|
|
17520
|
+
duration: int;
|
|
17521
|
+
extendTop: int;
|
|
17522
|
+
extendWindow: int;
|
|
17523
|
+
}> {
|
|
17524
|
+
CONSTRUCTOR_ID: 178266597;
|
|
17525
|
+
SUBCLASS_OF_ID: 1156131892;
|
|
17526
|
+
classType: "constructor";
|
|
17527
|
+
className: "StarGiftAuctionRoundExtendable";
|
|
17528
|
+
static fromReader(reader: Reader): StarGiftAuctionRoundExtendable;
|
|
17529
|
+
num: int;
|
|
17530
|
+
duration: int;
|
|
17531
|
+
extendTop: int;
|
|
17532
|
+
extendWindow: int;
|
|
17533
|
+
}
|
|
17370
17534
|
export class ResPQ extends VirtualClass<{
|
|
17371
17535
|
nonce: int128;
|
|
17372
17536
|
serverNonce: int128;
|
|
@@ -18674,6 +18838,16 @@ export namespace Api {
|
|
|
18674
18838
|
// flags: null;
|
|
18675
18839
|
futureAuthToken?: bytes;
|
|
18676
18840
|
}
|
|
18841
|
+
export class PasskeyLoginOptions extends VirtualClass<{
|
|
18842
|
+
options: Api.TypeDataJSON;
|
|
18843
|
+
}> {
|
|
18844
|
+
CONSTRUCTOR_ID: 3791878025;
|
|
18845
|
+
SUBCLASS_OF_ID: 3648598066;
|
|
18846
|
+
classType: "constructor";
|
|
18847
|
+
className: "auth.PasskeyLoginOptions";
|
|
18848
|
+
static fromReader(reader: Reader): PasskeyLoginOptions;
|
|
18849
|
+
options: Api.TypeDataJSON;
|
|
18850
|
+
}
|
|
18677
18851
|
}
|
|
18678
18852
|
|
|
18679
18853
|
export namespace contacts {
|
|
@@ -21168,6 +21342,26 @@ export namespace Api {
|
|
|
21168
21342
|
static fromReader(reader: Reader): SavedMusicIds;
|
|
21169
21343
|
ids: long[];
|
|
21170
21344
|
}
|
|
21345
|
+
export class Passkeys extends VirtualClass<{
|
|
21346
|
+
passkeys: Api.TypePasskey[];
|
|
21347
|
+
}> {
|
|
21348
|
+
CONSTRUCTOR_ID: 4175473180;
|
|
21349
|
+
SUBCLASS_OF_ID: 618471518;
|
|
21350
|
+
classType: "constructor";
|
|
21351
|
+
className: "account.Passkeys";
|
|
21352
|
+
static fromReader(reader: Reader): Passkeys;
|
|
21353
|
+
passkeys: Api.TypePasskey[];
|
|
21354
|
+
}
|
|
21355
|
+
export class PasskeyRegistrationOptions extends VirtualClass<{
|
|
21356
|
+
options: Api.TypeDataJSON;
|
|
21357
|
+
}> {
|
|
21358
|
+
CONSTRUCTOR_ID: 3781909729;
|
|
21359
|
+
SUBCLASS_OF_ID: 874349540;
|
|
21360
|
+
classType: "constructor";
|
|
21361
|
+
className: "account.PasskeyRegistrationOptions";
|
|
21362
|
+
static fromReader(reader: Reader): PasskeyRegistrationOptions;
|
|
21363
|
+
options: Api.TypeDataJSON;
|
|
21364
|
+
}
|
|
21171
21365
|
}
|
|
21172
21366
|
|
|
21173
21367
|
export namespace channels {
|
|
@@ -21840,8 +22034,9 @@ export namespace Api {
|
|
|
21840
22034
|
userState: Api.TypeStarGiftAuctionUserState;
|
|
21841
22035
|
timeout: int;
|
|
21842
22036
|
users: Api.TypeUser[];
|
|
22037
|
+
chats: Api.TypeChat[];
|
|
21843
22038
|
}> {
|
|
21844
|
-
CONSTRUCTOR_ID:
|
|
22039
|
+
CONSTRUCTOR_ID: 1798960364;
|
|
21845
22040
|
SUBCLASS_OF_ID: 439453081;
|
|
21846
22041
|
classType: "constructor";
|
|
21847
22042
|
className: "payments.StarGiftAuctionState";
|
|
@@ -21851,6 +22046,7 @@ export namespace Api {
|
|
|
21851
22046
|
userState: Api.TypeStarGiftAuctionUserState;
|
|
21852
22047
|
timeout: int;
|
|
21853
22048
|
users: Api.TypeUser[];
|
|
22049
|
+
chats: Api.TypeChat[];
|
|
21854
22050
|
}
|
|
21855
22051
|
export class StarGiftAuctionAcquiredGifts extends VirtualClass<{
|
|
21856
22052
|
gifts: Api.TypeStarGiftAuctionAcquiredGift[];
|
|
@@ -21876,14 +22072,26 @@ export namespace Api {
|
|
|
21876
22072
|
export class StarGiftActiveAuctions extends VirtualClass<{
|
|
21877
22073
|
auctions: Api.TypeStarGiftActiveAuctionState[];
|
|
21878
22074
|
users: Api.TypeUser[];
|
|
22075
|
+
chats: Api.TypeChat[];
|
|
21879
22076
|
}> {
|
|
21880
|
-
CONSTRUCTOR_ID:
|
|
22077
|
+
CONSTRUCTOR_ID: 2935401404;
|
|
21881
22078
|
SUBCLASS_OF_ID: 2440941767;
|
|
21882
22079
|
classType: "constructor";
|
|
21883
22080
|
className: "payments.StarGiftActiveAuctions";
|
|
21884
22081
|
static fromReader(reader: Reader): StarGiftActiveAuctions;
|
|
21885
22082
|
auctions: Api.TypeStarGiftActiveAuctionState[];
|
|
21886
22083
|
users: Api.TypeUser[];
|
|
22084
|
+
chats: Api.TypeChat[];
|
|
22085
|
+
}
|
|
22086
|
+
export class StarGiftUpgradeAttributes extends VirtualClass<{
|
|
22087
|
+
attributes: Api.TypeStarGiftAttribute[];
|
|
22088
|
+
}> {
|
|
22089
|
+
CONSTRUCTOR_ID: 1187439471;
|
|
22090
|
+
SUBCLASS_OF_ID: 256290031;
|
|
22091
|
+
classType: "constructor";
|
|
22092
|
+
className: "payments.StarGiftUpgradeAttributes";
|
|
22093
|
+
static fromReader(reader: Reader): StarGiftUpgradeAttributes;
|
|
22094
|
+
attributes: Api.TypeStarGiftAttribute[];
|
|
21887
22095
|
}
|
|
21888
22096
|
}
|
|
21889
22097
|
|
|
@@ -22668,6 +22876,7 @@ export namespace Api {
|
|
|
22668
22876
|
export type TypeSentCodeType = auth.SentCodeTypeApp | auth.SentCodeTypeSms | auth.SentCodeTypeCall | auth.SentCodeTypeFlashCall | auth.SentCodeTypeMissedCall | auth.SentCodeTypeEmailCode | auth.SentCodeTypeSetUpEmailRequired | auth.SentCodeTypeFragmentSms | auth.SentCodeTypeFirebaseSms | auth.SentCodeTypeSmsWord | auth.SentCodeTypeSmsPhrase;
|
|
22669
22877
|
export type TypeLoginToken = auth.LoginToken | auth.LoginTokenMigrateTo | auth.LoginTokenSuccess;
|
|
22670
22878
|
export type TypeLoggedOut = auth.LoggedOut;
|
|
22879
|
+
export type TypePasskeyLoginOptions = auth.PasskeyLoginOptions;
|
|
22671
22880
|
}
|
|
22672
22881
|
|
|
22673
22882
|
export namespace contacts {
|
|
@@ -22812,6 +23021,8 @@ export namespace Api {
|
|
|
22812
23021
|
export type TypeResolvedBusinessChatLinks = account.ResolvedBusinessChatLinks;
|
|
22813
23022
|
export type TypePaidMessagesRevenue = account.PaidMessagesRevenue;
|
|
22814
23023
|
export type TypeSavedMusicIds = account.SavedMusicIdsNotModified | account.SavedMusicIds;
|
|
23024
|
+
export type TypePasskeys = account.Passkeys;
|
|
23025
|
+
export type TypePasskeyRegistrationOptions = account.PasskeyRegistrationOptions;
|
|
22815
23026
|
}
|
|
22816
23027
|
|
|
22817
23028
|
export namespace channels {
|
|
@@ -22850,6 +23061,7 @@ export namespace Api {
|
|
|
22850
23061
|
export type TypeStarGiftAuctionState = payments.StarGiftAuctionState;
|
|
22851
23062
|
export type TypeStarGiftAuctionAcquiredGifts = payments.StarGiftAuctionAcquiredGifts;
|
|
22852
23063
|
export type TypeStarGiftActiveAuctions = payments.StarGiftActiveAuctionsNotModified | payments.StarGiftActiveAuctions;
|
|
23064
|
+
export type TypeStarGiftUpgradeAttributes = payments.StarGiftUpgradeAttributes;
|
|
22853
23065
|
}
|
|
22854
23066
|
|
|
22855
23067
|
export namespace phone {
|
|
@@ -23232,6 +23444,34 @@ export namespace Api {
|
|
|
23232
23444
|
phoneCodeHash: string;
|
|
23233
23445
|
formId: long;
|
|
23234
23446
|
}
|
|
23447
|
+
export class InitPasskeyLogin extends Request<Partial<{
|
|
23448
|
+
apiId: int;
|
|
23449
|
+
apiHash: string;
|
|
23450
|
+
}>, auth.TypePasskeyLoginOptions> {
|
|
23451
|
+
CONSTRUCTOR_ID: 1368051895;
|
|
23452
|
+
SUBCLASS_OF_ID: 3648598066;
|
|
23453
|
+
classType: "request";
|
|
23454
|
+
className: "auth.InitPasskeyLogin";
|
|
23455
|
+
static fromReader(reader: Reader): InitPasskeyLogin;
|
|
23456
|
+
apiId: int;
|
|
23457
|
+
apiHash: string;
|
|
23458
|
+
}
|
|
23459
|
+
export class FinishPasskeyLogin extends Request<Partial<{
|
|
23460
|
+
// flags: null;
|
|
23461
|
+
credential: Api.TypeInputPasskeyCredential;
|
|
23462
|
+
fromDcId?: int;
|
|
23463
|
+
fromAuthKeyId?: long;
|
|
23464
|
+
}>, auth.TypeAuthorization> {
|
|
23465
|
+
CONSTRUCTOR_ID: 2555882759;
|
|
23466
|
+
SUBCLASS_OF_ID: 3118485049;
|
|
23467
|
+
classType: "request";
|
|
23468
|
+
className: "auth.FinishPasskeyLogin";
|
|
23469
|
+
static fromReader(reader: Reader): FinishPasskeyLogin;
|
|
23470
|
+
// flags: null;
|
|
23471
|
+
credential: Api.TypeInputPasskeyCredential;
|
|
23472
|
+
fromDcId?: int;
|
|
23473
|
+
fromAuthKeyId?: long;
|
|
23474
|
+
}
|
|
23235
23475
|
}
|
|
23236
23476
|
|
|
23237
23477
|
export namespace account {
|
|
@@ -24601,6 +24841,40 @@ export namespace Api {
|
|
|
24601
24841
|
limit: int;
|
|
24602
24842
|
hash: long;
|
|
24603
24843
|
}
|
|
24844
|
+
export class InitPasskeyRegistration extends Request<void, account.TypePasskeyRegistrationOptions> {
|
|
24845
|
+
CONSTRUCTOR_ID: 1117079528;
|
|
24846
|
+
SUBCLASS_OF_ID: 874349540;
|
|
24847
|
+
classType: "request";
|
|
24848
|
+
className: "account.InitPasskeyRegistration";
|
|
24849
|
+
static fromReader(reader: Reader): InitPasskeyRegistration;
|
|
24850
|
+
}
|
|
24851
|
+
export class RegisterPasskey extends Request<Partial<{
|
|
24852
|
+
credential: Api.TypeInputPasskeyCredential;
|
|
24853
|
+
}>, Api.TypePasskey> {
|
|
24854
|
+
CONSTRUCTOR_ID: 1437867990;
|
|
24855
|
+
SUBCLASS_OF_ID: 3476557280;
|
|
24856
|
+
classType: "request";
|
|
24857
|
+
className: "account.RegisterPasskey";
|
|
24858
|
+
static fromReader(reader: Reader): RegisterPasskey;
|
|
24859
|
+
credential: Api.TypeInputPasskeyCredential;
|
|
24860
|
+
}
|
|
24861
|
+
export class GetPasskeys extends Request<void, account.TypePasskeys> {
|
|
24862
|
+
CONSTRUCTOR_ID: 3927903314;
|
|
24863
|
+
SUBCLASS_OF_ID: 618471518;
|
|
24864
|
+
classType: "request";
|
|
24865
|
+
className: "account.GetPasskeys";
|
|
24866
|
+
static fromReader(reader: Reader): GetPasskeys;
|
|
24867
|
+
}
|
|
24868
|
+
export class DeletePasskey extends Request<Partial<{
|
|
24869
|
+
id: string;
|
|
24870
|
+
}>, Bool> {
|
|
24871
|
+
CONSTRUCTOR_ID: 4122302015;
|
|
24872
|
+
SUBCLASS_OF_ID: 4122188204;
|
|
24873
|
+
classType: "request";
|
|
24874
|
+
className: "account.DeletePasskey";
|
|
24875
|
+
static fromReader(reader: Reader): DeletePasskey;
|
|
24876
|
+
id: string;
|
|
24877
|
+
}
|
|
24604
24878
|
}
|
|
24605
24879
|
|
|
24606
24880
|
export namespace users {
|
|
@@ -25332,11 +25606,12 @@ export namespace Api {
|
|
|
25332
25606
|
scheduleRepeatPeriod?: int;
|
|
25333
25607
|
sendAs?: Api.TypeEntityLike;
|
|
25334
25608
|
quickReplyShortcut?: Api.TypeInputQuickReplyShortcut;
|
|
25609
|
+
effect?: long;
|
|
25335
25610
|
videoTimestamp?: int;
|
|
25336
25611
|
allowPaidStars?: long;
|
|
25337
25612
|
suggestedPost?: Api.TypeSuggestedPost;
|
|
25338
25613
|
}>, Api.TypeUpdates> {
|
|
25339
|
-
CONSTRUCTOR_ID:
|
|
25614
|
+
CONSTRUCTOR_ID: 326126204;
|
|
25340
25615
|
SUBCLASS_OF_ID: 2331323052;
|
|
25341
25616
|
classType: "request";
|
|
25342
25617
|
className: "messages.ForwardMessages";
|
|
@@ -25359,6 +25634,7 @@ export namespace Api {
|
|
|
25359
25634
|
scheduleRepeatPeriod?: int;
|
|
25360
25635
|
sendAs?: Api.TypeEntityLike;
|
|
25361
25636
|
quickReplyShortcut?: Api.TypeInputQuickReplyShortcut;
|
|
25637
|
+
effect?: long;
|
|
25362
25638
|
videoTimestamp?: int;
|
|
25363
25639
|
allowPaidStars?: long;
|
|
25364
25640
|
suggestedPost?: Api.TypeSuggestedPost;
|
|
@@ -31125,6 +31401,52 @@ export namespace Api {
|
|
|
31125
31401
|
static fromReader(reader: Reader): GetStarGiftActiveAuctions;
|
|
31126
31402
|
hash: long;
|
|
31127
31403
|
}
|
|
31404
|
+
export class ResolveStarGiftOffer extends Request<Partial<{
|
|
31405
|
+
// flags: null;
|
|
31406
|
+
decline?: boolean;
|
|
31407
|
+
offerMsgId: MessageIDLike;
|
|
31408
|
+
}>, Api.TypeUpdates> {
|
|
31409
|
+
CONSTRUCTOR_ID: 3922622492;
|
|
31410
|
+
SUBCLASS_OF_ID: 2331323052;
|
|
31411
|
+
classType: "request";
|
|
31412
|
+
className: "payments.ResolveStarGiftOffer";
|
|
31413
|
+
static fromReader(reader: Reader): ResolveStarGiftOffer;
|
|
31414
|
+
// flags: null;
|
|
31415
|
+
decline?: boolean;
|
|
31416
|
+
offerMsgId: MessageIDLike;
|
|
31417
|
+
}
|
|
31418
|
+
export class SendStarGiftOffer extends Request<Partial<{
|
|
31419
|
+
// flags: null;
|
|
31420
|
+
peer: Api.TypeEntityLike;
|
|
31421
|
+
slug: string;
|
|
31422
|
+
price: Api.TypeStarsAmount;
|
|
31423
|
+
duration: int;
|
|
31424
|
+
randomId?: long;
|
|
31425
|
+
allowPaidStars?: long;
|
|
31426
|
+
}>, Api.TypeUpdates> {
|
|
31427
|
+
CONSTRUCTOR_ID: 2411227969;
|
|
31428
|
+
SUBCLASS_OF_ID: 2331323052;
|
|
31429
|
+
classType: "request";
|
|
31430
|
+
className: "payments.SendStarGiftOffer";
|
|
31431
|
+
static fromReader(reader: Reader): SendStarGiftOffer;
|
|
31432
|
+
// flags: null;
|
|
31433
|
+
peer: Api.TypeEntityLike;
|
|
31434
|
+
slug: string;
|
|
31435
|
+
price: Api.TypeStarsAmount;
|
|
31436
|
+
duration: int;
|
|
31437
|
+
randomId?: long;
|
|
31438
|
+
allowPaidStars?: long;
|
|
31439
|
+
}
|
|
31440
|
+
export class GetStarGiftUpgradeAttributes extends Request<Partial<{
|
|
31441
|
+
giftId: long;
|
|
31442
|
+
}>, payments.TypeStarGiftUpgradeAttributes> {
|
|
31443
|
+
CONSTRUCTOR_ID: 1828948824;
|
|
31444
|
+
SUBCLASS_OF_ID: 256290031;
|
|
31445
|
+
classType: "request";
|
|
31446
|
+
className: "payments.GetStarGiftUpgradeAttributes";
|
|
31447
|
+
static fromReader(reader: Reader): GetStarGiftUpgradeAttributes;
|
|
31448
|
+
giftId: long;
|
|
31449
|
+
}
|
|
31128
31450
|
}
|
|
31129
31451
|
|
|
31130
31452
|
export namespace stickers {
|
|
@@ -32906,7 +33228,7 @@ export namespace Api {
|
|
|
32906
33228
|
export type TypeChatPhoto = ChatPhotoEmpty | ChatPhoto;
|
|
32907
33229
|
export type TypeMessage = MessageEmpty | Message | MessageService;
|
|
32908
33230
|
export type TypeMessageMedia = MessageMediaEmpty | MessageMediaPhoto | MessageMediaGeo | MessageMediaContact | MessageMediaUnsupported | MessageMediaDocument | MessageMediaWebPage | MessageMediaVenue | MessageMediaGame | MessageMediaInvoice | MessageMediaGeoLive | MessageMediaPoll | MessageMediaDice | MessageMediaStory | MessageMediaGiveaway | MessageMediaGiveawayResults | MessageMediaPaidMedia | MessageMediaToDo | MessageMediaVideoStream;
|
|
32909
|
-
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 | MessageActionStarGift | MessageActionStarGiftUnique | MessageActionPaidMessagesRefunded | MessageActionPaidMessagesPrice | MessageActionConferenceCall | MessageActionTodoCompletions | MessageActionTodoAppendTasks | MessageActionSuggestedPostApproval | MessageActionSuggestedPostSuccess | MessageActionSuggestedPostRefund | MessageActionGiftTon | MessageActionSuggestBirthday;
|
|
33231
|
+
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 | MessageActionStarGift | MessageActionStarGiftUnique | MessageActionPaidMessagesRefunded | MessageActionPaidMessagesPrice | MessageActionConferenceCall | MessageActionTodoCompletions | MessageActionTodoAppendTasks | MessageActionSuggestedPostApproval | MessageActionSuggestedPostSuccess | MessageActionSuggestedPostRefund | MessageActionGiftTon | MessageActionSuggestBirthday | MessageActionStarGiftPurchaseOffer | MessageActionStarGiftPurchaseOfferDeclined;
|
|
32910
33232
|
export type TypeDialog = Dialog | DialogFolder;
|
|
32911
33233
|
export type TypePhoto = PhotoEmpty | Photo;
|
|
32912
33234
|
export type TypePhotoSize = PhotoSizeEmpty | PhotoSize | PhotoCachedSize | PhotoStrippedSize | PhotoSizeProgressive | PhotoPathSize;
|
|
@@ -33251,6 +33573,11 @@ export namespace Api {
|
|
|
33251
33573
|
export type TypeStarGiftAuctionAcquiredGift = StarGiftAuctionAcquiredGift;
|
|
33252
33574
|
export type TypeStarGiftActiveAuctionState = StarGiftActiveAuctionState;
|
|
33253
33575
|
export type TypeInputStarGiftAuction = InputStarGiftAuction | InputStarGiftAuctionSlug;
|
|
33576
|
+
export type TypePasskey = Passkey;
|
|
33577
|
+
export type TypeInputPasskeyResponse = InputPasskeyResponseRegister | InputPasskeyResponseLogin;
|
|
33578
|
+
export type TypeInputPasskeyCredential = InputPasskeyCredentialPublicKey;
|
|
33579
|
+
export type TypeStarGiftBackground = StarGiftBackground;
|
|
33580
|
+
export type TypeStarGiftAuctionRound = StarGiftAuctionRound | StarGiftAuctionRoundExtendable;
|
|
33254
33581
|
export type TypeResPQ = ResPQ;
|
|
33255
33582
|
export type TypeP_Q_inner_data = PQInnerData | PQInnerDataDc | PQInnerDataTemp | PQInnerDataTempDc;
|
|
33256
33583
|
export type TypeBindAuthKeyInner = BindAuthKeyInner;
|
|
@@ -33280,8 +33607,8 @@ export namespace Api {
|
|
|
33280
33607
|
export type TypeTlsBlock = TlsBlockString | TlsBlockRandom | TlsBlockZero | TlsBlockDomain | TlsBlockGrease | TlsBlockPublicKey | TlsBlockScope | TlsBlockPermutation | TlsBlockM | TlsBlockE | TlsBlockPadding;
|
|
33281
33608
|
// All requests
|
|
33282
33609
|
export type AnyRequest = InvokeAfterMsg | InvokeAfterMsgs | InitConnection | InvokeWithLayer | InvokeWithoutUpdates | InvokeWithMessagesRange | InvokeWithTakeout | InvokeWithBusinessConnection | InvokeWithGooglePlayIntegrity | InvokeWithApnsSecret | InvokeWithReCaptcha | ReqPq | ReqPqMulti | ReqDHParams | SetClientDHParams | DestroyAuthKey | RpcDropAnswer | GetFutureSalts | Ping | PingDelayDisconnect | DestroySession
|
|
33283
|
-
| auth.SendCode | auth.SignUp | auth.SignIn | auth.LogOut | auth.ResetAuthorizations | auth.ExportAuthorization | auth.ImportAuthorization | auth.BindTempAuthKey | auth.ImportBotAuthorization | auth.CheckPassword | auth.RequestPasswordRecovery | auth.RecoverPassword | auth.ResendCode | auth.CancelCode | auth.DropTempAuthKeys | auth.ExportLoginToken | auth.ImportLoginToken | auth.AcceptLoginToken | auth.CheckRecoveryPassword | auth.ImportWebTokenAuthorization | auth.RequestFirebaseSms | auth.ResetLoginEmail | auth.ReportMissingCode | auth.CheckPaidAuth
|
|
33284
|
-
| 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 | account.GetCollectibleEmojiStatuses | account.GetPaidMessagesRevenue | account.ToggleNoPaidMessagesException | account.SetMainProfileTab | account.SaveMusic | account.GetSavedMusicIds | account.GetUniqueGiftChatThemes
|
|
33610
|
+
| auth.SendCode | auth.SignUp | auth.SignIn | auth.LogOut | auth.ResetAuthorizations | auth.ExportAuthorization | auth.ImportAuthorization | auth.BindTempAuthKey | auth.ImportBotAuthorization | auth.CheckPassword | auth.RequestPasswordRecovery | auth.RecoverPassword | auth.ResendCode | auth.CancelCode | auth.DropTempAuthKeys | auth.ExportLoginToken | auth.ImportLoginToken | auth.AcceptLoginToken | auth.CheckRecoveryPassword | auth.ImportWebTokenAuthorization | auth.RequestFirebaseSms | auth.ResetLoginEmail | auth.ReportMissingCode | auth.CheckPaidAuth | auth.InitPasskeyLogin | auth.FinishPasskeyLogin
|
|
33611
|
+
| 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 | account.GetCollectibleEmojiStatuses | account.GetPaidMessagesRevenue | account.ToggleNoPaidMessagesException | account.SetMainProfileTab | account.SaveMusic | account.GetSavedMusicIds | account.GetUniqueGiftChatThemes | account.InitPasskeyRegistration | account.RegisterPasskey | account.GetPasskeys | account.DeletePasskey
|
|
33285
33612
|
| users.GetUsers | users.GetFullUser | users.SetSecureValueErrors | users.GetRequirementsToContact | users.GetSavedMusic | users.GetSavedMusicByID | users.SuggestBirthday
|
|
33286
33613
|
| 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 | contacts.GetSponsoredPeers | contacts.UpdateContactNote
|
|
33287
33614
|
| 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 | messages.ViewSponsoredMessage | messages.ClickSponsoredMessage | messages.ReportSponsoredMessage | messages.GetSponsoredMessages | messages.SavePreparedInlineMessage | messages.GetPreparedInlineMessage | messages.SearchStickers | messages.ReportMessagesDelivery | messages.GetSavedDialogsByID | messages.ReadSavedHistory | messages.ToggleTodoCompleted | messages.AppendTodoList | messages.ToggleSuggestedPostApproval | messages.GetForumTopics | messages.GetForumTopicsByID | messages.EditForumTopic | messages.UpdatePinnedForumTopic | messages.ReorderPinnedForumTopics | messages.CreateForumTopic | messages.DeleteTopicHistory
|
|
@@ -33291,7 +33618,7 @@ export namespace Api {
|
|
|
33291
33618
|
| 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
|
|
33292
33619
|
| 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.GetSendAs | channels.DeleteParticipantHistory | channels.ToggleJoinToSend | channels.ToggleJoinRequest | channels.ReorderUsernames | channels.ToggleUsername | channels.DeactivateAllUsernames | channels.ToggleForum | channels.ToggleAntiSpam | channels.ReportAntiSpamFalsePositive | channels.ToggleParticipantsHidden | channels.UpdateColor | channels.ToggleViewForumAsMessages | channels.GetChannelRecommendations | channels.UpdateEmojiStatus | channels.SetBoostsToUnblockRestrictions | channels.SetEmojiStickers | channels.RestrictSponsoredMessages | channels.SearchPosts | channels.UpdatePaidMessagesPrice | channels.ToggleAutotranslation | channels.GetMessageAuthor | channels.CheckSearchPostsFlood | channels.SetMainProfileTab
|
|
33293
33620
|
| 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 | bots.UpdateUserEmojiStatus | bots.ToggleUserEmojiStatusPermission | bots.CheckDownloadFileParams | bots.GetAdminedBots | bots.UpdateStarRefProgram | bots.SetCustomVerification | bots.GetBotRecommendations
|
|
33294
|
-
| payments.GetPaymentForm | payments.GetPaymentReceipt | payments.ValidateRequestedInfo | payments.SendPaymentForm | payments.GetSavedInfo | payments.ClearSavedInfo | payments.GetBankCardData | payments.ExportInvoice | payments.AssignAppStoreTransaction | payments.AssignPlayMarketTransaction | 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 | payments.GetStarGifts | payments.SaveStarGift | payments.ConvertStarGift | payments.BotCancelStarsSubscription | payments.GetConnectedStarRefBots | payments.GetConnectedStarRefBot | payments.GetSuggestedStarRefBots | payments.ConnectStarRefBot | payments.EditConnectedStarRefBot | payments.GetStarGiftUpgradePreview | payments.UpgradeStarGift | payments.TransferStarGift | payments.GetUniqueStarGift | payments.GetSavedStarGifts | payments.GetSavedStarGift | payments.GetStarGiftWithdrawalUrl | payments.ToggleChatStarGiftNotifications | payments.ToggleStarGiftsPinnedToTop | payments.CanPurchaseStore | payments.GetResaleStarGifts | payments.UpdateStarGiftPrice | payments.CreateStarGiftCollection | payments.UpdateStarGiftCollection | payments.ReorderStarGiftCollections | payments.DeleteStarGiftCollection | payments.GetStarGiftCollections | payments.GetUniqueStarGiftValueInfo | payments.CheckCanSendGift | payments.GetStarGiftAuctionState | payments.GetStarGiftAuctionAcquiredGifts | payments.GetStarGiftActiveAuctions
|
|
33621
|
+
| payments.GetPaymentForm | payments.GetPaymentReceipt | payments.ValidateRequestedInfo | payments.SendPaymentForm | payments.GetSavedInfo | payments.ClearSavedInfo | payments.GetBankCardData | payments.ExportInvoice | payments.AssignAppStoreTransaction | payments.AssignPlayMarketTransaction | 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 | payments.GetStarGifts | payments.SaveStarGift | payments.ConvertStarGift | payments.BotCancelStarsSubscription | payments.GetConnectedStarRefBots | payments.GetConnectedStarRefBot | payments.GetSuggestedStarRefBots | payments.ConnectStarRefBot | payments.EditConnectedStarRefBot | payments.GetStarGiftUpgradePreview | payments.UpgradeStarGift | payments.TransferStarGift | payments.GetUniqueStarGift | payments.GetSavedStarGifts | payments.GetSavedStarGift | payments.GetStarGiftWithdrawalUrl | payments.ToggleChatStarGiftNotifications | payments.ToggleStarGiftsPinnedToTop | payments.CanPurchaseStore | payments.GetResaleStarGifts | payments.UpdateStarGiftPrice | payments.CreateStarGiftCollection | payments.UpdateStarGiftCollection | payments.ReorderStarGiftCollections | payments.DeleteStarGiftCollection | payments.GetStarGiftCollections | payments.GetUniqueStarGiftValueInfo | payments.CheckCanSendGift | payments.GetStarGiftAuctionState | payments.GetStarGiftAuctionAcquiredGifts | payments.GetStarGiftActiveAuctions | payments.ResolveStarGiftOffer | payments.SendStarGiftOffer | payments.GetStarGiftUpgradeAttributes
|
|
33295
33622
|
| stickers.CreateStickerSet | stickers.RemoveStickerFromSet | stickers.ChangeStickerPosition | stickers.AddStickerToSet | stickers.SetStickerSetThumb | stickers.CheckShortName | stickers.SuggestShortName | stickers.ChangeSticker | stickers.RenameStickerSet | stickers.DeleteStickerSet | stickers.ReplaceSticker
|
|
33296
33623
|
| 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 | phone.CreateConferenceCall | phone.DeleteConferenceCallParticipants | phone.SendConferenceCallBroadcast | phone.InviteConferenceCallParticipant | phone.DeclineConferenceCallInvite | phone.GetGroupCallChainBlocks | phone.SendGroupCallMessage | phone.SendGroupCallEncryptedMessage | phone.DeleteGroupCallMessages | phone.DeleteGroupCallParticipantMessages | phone.GetGroupCallStars | phone.SaveDefaultSendAs
|
|
33297
33624
|
| langpack.GetLangPack | langpack.GetStrings | langpack.GetDifference | langpack.GetLanguages | langpack.GetLanguage
|
package/tl/apiTl.js
CHANGED
|
@@ -161,8 +161,8 @@ messageActionRequestedPeerSentMe#93b31848 button_id:int peers:Vector<RequestedPe
|
|
|
161
161
|
messageActionPaymentRefunded#41b3e202 flags:# peer:Peer currency:string total_amount:long payload:flags.0?bytes charge:PaymentCharge = MessageAction;
|
|
162
162
|
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;
|
|
163
163
|
messageActionPrizeStars#b00c47a2 flags:# unclaimed:flags.0?true stars:long transaction_id:string boost_peer:Peer giveaway_msg_id:int = MessageAction;
|
|
164
|
-
messageActionStarGift#
|
|
165
|
-
messageActionStarGiftUnique#95728543 flags:# upgrade:flags.0?true transferred:flags.1?true saved:flags.2?true refunded:flags.5?true prepaid_upgrade:flags.11?true assigned:flags.13?true gift:StarGift can_export_at:flags.3?int transfer_stars:flags.4?long from_id:flags.6?Peer peer:flags.7?Peer saved_id:flags.7?long resale_amount:flags.8?StarsAmount can_transfer_at:flags.9?int can_resell_at:flags.10?int drop_original_details_stars:flags.12?long = MessageAction;
|
|
164
|
+
messageActionStarGift#ea2c31d3 flags:# name_hidden:flags.0?true saved:flags.2?true converted:flags.3?true upgraded:flags.5?true refunded:flags.9?true can_upgrade:flags.10?true prepaid_upgrade:flags.13?true upgrade_separate:flags.16?true auction_acquired:flags.17?true gift:StarGift message:flags.1?TextWithEntities convert_stars:flags.4?long upgrade_msg_id:flags.5?int upgrade_stars:flags.8?long from_id:flags.11?Peer peer:flags.12?Peer saved_id:flags.12?long prepaid_upgrade_hash:flags.14?string gift_msg_id:flags.15?int to_id:flags.18?Peer gift_num:flags.19?int = MessageAction;
|
|
165
|
+
messageActionStarGiftUnique#95728543 flags:# upgrade:flags.0?true transferred:flags.1?true saved:flags.2?true refunded:flags.5?true prepaid_upgrade:flags.11?true assigned:flags.13?true from_offer:flags.14?true gift:StarGift can_export_at:flags.3?int transfer_stars:flags.4?long from_id:flags.6?Peer peer:flags.7?Peer saved_id:flags.7?long resale_amount:flags.8?StarsAmount can_transfer_at:flags.9?int can_resell_at:flags.10?int drop_original_details_stars:flags.12?long = MessageAction;
|
|
166
166
|
messageActionPaidMessagesRefunded#ac1f1fcd count:int stars:long = MessageAction;
|
|
167
167
|
messageActionPaidMessagesPrice#84b88578 flags:# broadcast_messages_allowed:flags.0?true stars:long = MessageAction;
|
|
168
168
|
messageActionConferenceCall#2ffe2f7a flags:# missed:flags.0?true active:flags.1?true video:flags.4?true call_id:long duration:flags.2?int other_participants:flags.3?Vector<Peer> = MessageAction;
|
|
@@ -173,6 +173,8 @@ messageActionSuggestedPostSuccess#95ddcf69 price:StarsAmount = MessageAction;
|
|
|
173
173
|
messageActionSuggestedPostRefund#69f916f8 flags:# payer_initiated:flags.0?true = MessageAction;
|
|
174
174
|
messageActionGiftTon#a8a3c699 flags:# currency:string amount:long crypto_currency:string crypto_amount:long transaction_id:flags.0?string = MessageAction;
|
|
175
175
|
messageActionSuggestBirthday#2c8f2a25 birthday:Birthday = MessageAction;
|
|
176
|
+
messageActionStarGiftPurchaseOffer#774278d4 flags:# accepted:flags.0?true declined:flags.1?true gift:StarGift price:StarsAmount expires_at:int = MessageAction;
|
|
177
|
+
messageActionStarGiftPurchaseOfferDeclined#73ada76b flags:# expired:flags.0?true gift:StarGift price:StarsAmount = MessageAction;
|
|
176
178
|
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;
|
|
177
179
|
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;
|
|
178
180
|
photoEmpty#2331b22d id:long = Photo;
|
|
@@ -1032,7 +1034,7 @@ webPageAttributeStory#2e94c3e7 flags:# peer:Peer id:int story:flags.0?StoryItem
|
|
|
1032
1034
|
webPageAttributeStickerSet#50cc03d3 flags:# emojis:flags.0?true text_color:flags.1?true stickers:Vector<Document> = WebPageAttribute;
|
|
1033
1035
|
webPageAttributeUniqueStarGift#cf6f6db8 gift:StarGift = WebPageAttribute;
|
|
1034
1036
|
webPageAttributeStarGiftCollection#31cad303 icons:Vector<Document> = WebPageAttribute;
|
|
1035
|
-
webPageAttributeStarGiftAuction#
|
|
1037
|
+
webPageAttributeStarGiftAuction#1c641c2 gift:StarGift end_date:int = WebPageAttribute;
|
|
1036
1038
|
messages.votesList#4899484e flags:# count:int votes:Vector<MessagePeerVote> chats:Vector<Chat> users:Vector<User> next_offset:flags.0?string = messages.VotesList;
|
|
1037
1039
|
bankCardOpenUrl#f568028a url:string name:string = BankCardOpenUrl;
|
|
1038
1040
|
payments.bankCardData#3e24e573 title:string open_urls:Vector<BankCardOpenUrl> = payments.BankCardData;
|
|
@@ -1390,7 +1392,7 @@ starsTransactionPeer#d80da15d peer:Peer = StarsTransactionPeer;
|
|
|
1390
1392
|
starsTransactionPeerAds#60682812 = StarsTransactionPeer;
|
|
1391
1393
|
starsTransactionPeerAPI#f9677aad = StarsTransactionPeer;
|
|
1392
1394
|
starsTopupOption#bd915c0 flags:# extended:flags.1?true stars:long store_product:flags.0?string currency:string amount:long = StarsTopupOption;
|
|
1393
|
-
starsTransaction#13659eb0 flags:# refund:flags.3?true pending:flags.4?true failed:flags.6?true gift:flags.10?true reaction:flags.11?true stargift_upgrade:flags.18?true business_transfer:flags.21?true stargift_resale:flags.22?true posts_search:flags.24?true stargift_prepaid_upgrade:flags.25?true stargift_drop_original_details:flags.26?true phonegroup_message:flags.27?true stargift_auction_bid:flags.28?true id:string amount:StarsAmount 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 stargift:flags.14?StarGift floodskip_number:flags.15?int starref_commission_permille:flags.16?int starref_peer:flags.17?Peer starref_amount:flags.17?StarsAmount paid_messages:flags.19?int premium_gift_months:flags.20?int ads_proceeds_from_date:flags.23?int ads_proceeds_to_date:flags.23?int = StarsTransaction;
|
|
1395
|
+
starsTransaction#13659eb0 flags:# refund:flags.3?true pending:flags.4?true failed:flags.6?true gift:flags.10?true reaction:flags.11?true stargift_upgrade:flags.18?true business_transfer:flags.21?true stargift_resale:flags.22?true posts_search:flags.24?true stargift_prepaid_upgrade:flags.25?true stargift_drop_original_details:flags.26?true phonegroup_message:flags.27?true stargift_auction_bid:flags.28?true offer:flags.29?true id:string amount:StarsAmount 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 stargift:flags.14?StarGift floodskip_number:flags.15?int starref_commission_permille:flags.16?int starref_peer:flags.17?Peer starref_amount:flags.17?StarsAmount paid_messages:flags.19?int premium_gift_months:flags.20?int ads_proceeds_from_date:flags.23?int ads_proceeds_to_date:flags.23?int = StarsTransaction;
|
|
1394
1396
|
payments.starsStatus#6c9ce8ed flags:# balance:StarsAmount 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;
|
|
1395
1397
|
foundStory#e87acbc0 peer:Peer story:StoryItem = FoundStory;
|
|
1396
1398
|
stories.foundStories#e2de7737 flags:# count:int stories:Vector<FoundStory> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = stories.FoundStories;
|
|
@@ -1409,8 +1411,8 @@ starsSubscription#2e6eab1a flags:# canceled:flags.0?true can_refulfill:flags.1?t
|
|
|
1409
1411
|
messageReactor#4ba3a95a flags:# top:flags.0?true my:flags.1?true anonymous:flags.2?true peer_id:flags.3?Peer count:int = MessageReactor;
|
|
1410
1412
|
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;
|
|
1411
1413
|
starsGiveawayWinnersOption#54236209 flags:# default:flags.0?true users:int per_user_stars:long = StarsGiveawayWinnersOption;
|
|
1412
|
-
starGift#
|
|
1413
|
-
starGiftUnique#
|
|
1414
|
+
starGift#313a9547 flags:# limited:flags.0?true sold_out:flags.1?true birthday:flags.2?true require_premium:flags.7?true limited_per_user:flags.8?true peer_color_available:flags.10?true auction:flags.11?true id:long sticker:Document stars:long availability_remains:flags.0?int availability_total:flags.0?int availability_resale:flags.4?long convert_stars:long first_sale_date:flags.1?int last_sale_date:flags.1?int upgrade_stars:flags.3?long resell_min_stars:flags.4?long title:flags.5?string released_by:flags.6?Peer per_user_total:flags.8?int per_user_remains:flags.8?int locked_until_date:flags.9?int auction_slug:flags.11?string gifts_per_round:flags.11?int auction_start_date:flags.11?int upgrade_variants:flags.12?int background:flags.13?StarGiftBackground = StarGift;
|
|
1415
|
+
starGiftUnique#569d64c9 flags:# require_premium:flags.6?true resale_ton_only:flags.7?true theme_available:flags.9?true id:long gift_id:long title:string slug:string num:int owner_id:flags.0?Peer owner_name:flags.1?string owner_address:flags.2?string attributes:Vector<StarGiftAttribute> availability_issued:int availability_total:int gift_address:flags.3?string resell_amount:flags.4?Vector<StarsAmount> released_by:flags.5?Peer value_amount:flags.8?long value_currency:flags.8?string value_usd_amount:flags.8?long theme_peer:flags.10?Peer peer_color:flags.11?PeerColor host_id:flags.12?Peer offer_min_stars:flags.13?int = StarGift;
|
|
1414
1416
|
payments.starGiftsNotModified#a388a368 = payments.StarGifts;
|
|
1415
1417
|
payments.starGifts#2ed82995 hash:int gifts:Vector<StarGift> chats:Vector<Chat> users:Vector<User> = payments.StarGifts;
|
|
1416
1418
|
messageReportOption#7903e3d9 text:string option:bytes = MessageReportOption;
|
|
@@ -1439,7 +1441,7 @@ users.users#62d706b8 users:Vector<User> = users.Users;
|
|
|
1439
1441
|
users.usersSlice#315a4974 count:int users:Vector<User> = users.Users;
|
|
1440
1442
|
payments.uniqueStarGift#416c56e8 gift:StarGift chats:Vector<Chat> users:Vector<User> = payments.UniqueStarGift;
|
|
1441
1443
|
messages.webPagePreview#8c9a88ac media:MessageMedia chats:Vector<Chat> users:Vector<User> = messages.WebPagePreview;
|
|
1442
|
-
savedStarGift#
|
|
1444
|
+
savedStarGift#ead6805e flags:# name_hidden:flags.0?true unsaved:flags.5?true refunded:flags.9?true can_upgrade:flags.10?true pinned_to_top:flags.12?true upgrade_separate:flags.17?true from_id:flags.1?Peer date:int gift:StarGift message:flags.2?TextWithEntities msg_id:flags.3?int saved_id:flags.11?long convert_stars:flags.4?long upgrade_stars:flags.6?long can_export_at:flags.7?int transfer_stars:flags.8?long can_transfer_at:flags.13?int can_resell_at:flags.14?int collection_id:flags.15?Vector<int> prepaid_upgrade_hash:flags.16?string drop_original_details_stars:flags.18?long gift_num:flags.19?int = SavedStarGift;
|
|
1443
1445
|
payments.savedStarGifts#95f389b1 flags:# count:int chat_notifications_enabled:flags.1?Bool gifts:Vector<SavedStarGift> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = payments.SavedStarGifts;
|
|
1444
1446
|
inputSavedStarGiftUser#69279795 msg_id:int = InputSavedStarGift;
|
|
1445
1447
|
inputSavedStarGiftChat#f101aa7f peer:InputPeer saved_id:long = InputSavedStarGift;
|
|
@@ -1496,22 +1498,33 @@ inputChatTheme#c93de95c emoticon:string = InputChatTheme;
|
|
|
1496
1498
|
inputChatThemeUniqueGift#87e5dfe4 slug:string = InputChatTheme;
|
|
1497
1499
|
starGiftUpgradePrice#99ea331d date:int upgrade_stars:long = StarGiftUpgradePrice;
|
|
1498
1500
|
groupCallMessage#1a8afc7e flags:# from_admin:flags.1?true id:int from_id:Peer date:int message:TextWithEntities paid_message_stars:flags.0?long = GroupCallMessage;
|
|
1499
|
-
groupCallDonor#ee430c85 flags:# top:flags.0?true my:flags.1?true
|
|
1501
|
+
groupCallDonor#ee430c85 flags:# top:flags.0?true my:flags.1?true peer_id:flags.3?Peer stars:long = GroupCallDonor;
|
|
1500
1502
|
phone.groupCallStars#9d1dbd26 total_stars:long top_donors:Vector<GroupCallDonor> chats:Vector<Chat> users:Vector<User> = phone.GroupCallStars;
|
|
1501
1503
|
recentStory#711d692d flags:# live:flags.0?true max_id:flags.1?int = RecentStory;
|
|
1502
1504
|
auctionBidLevel#310240cc pos:int amount:long date:int = AuctionBidLevel;
|
|
1503
1505
|
starGiftAuctionStateNotModified#fe333952 = StarGiftAuctionState;
|
|
1504
|
-
starGiftAuctionState#
|
|
1505
|
-
starGiftAuctionStateFinished#
|
|
1506
|
+
starGiftAuctionState#771a4e66 version:int start_date:int end_date:int min_bid_amount:long bid_levels:Vector<AuctionBidLevel> top_bidders:Vector<long> next_round_at:int last_gift_num:int gifts_left:int current_round:int total_rounds:int rounds:Vector<StarGiftAuctionRound> = StarGiftAuctionState;
|
|
1507
|
+
starGiftAuctionStateFinished#972dabbf flags:# start_date:int end_date:int average_price:long listed_count:flags.0?int fragment_listed_count:flags.1?int fragment_listed_url:flags.1?string = StarGiftAuctionState;
|
|
1506
1508
|
starGiftAuctionUserState#2eeed1c4 flags:# returned:flags.1?true bid_amount:flags.0?long bid_date:flags.0?int min_bid_amount:flags.0?long bid_peer:flags.0?Peer acquired_count:int = StarGiftAuctionUserState;
|
|
1507
|
-
payments.starGiftAuctionState#
|
|
1508
|
-
starGiftAuctionAcquiredGift#
|
|
1509
|
+
payments.starGiftAuctionState#6b39f4ec gift:StarGift state:StarGiftAuctionState user_state:StarGiftAuctionUserState timeout:int users:Vector<User> chats:Vector<Chat> = payments.StarGiftAuctionState;
|
|
1510
|
+
starGiftAuctionAcquiredGift#42b00348 flags:# name_hidden:flags.0?true peer:Peer date:int bid_amount:long round:int pos:int message:flags.1?TextWithEntities gift_num:flags.2?int = StarGiftAuctionAcquiredGift;
|
|
1509
1511
|
payments.starGiftAuctionAcquiredGifts#7d5bd1f0 gifts:Vector<StarGiftAuctionAcquiredGift> users:Vector<User> chats:Vector<Chat> = payments.StarGiftAuctionAcquiredGifts;
|
|
1510
1512
|
starGiftActiveAuctionState#d31bc45d gift:StarGift state:StarGiftAuctionState user_state:StarGiftAuctionUserState = StarGiftActiveAuctionState;
|
|
1511
1513
|
payments.starGiftActiveAuctionsNotModified#db33dad0 = payments.StarGiftActiveAuctions;
|
|
1512
|
-
payments.starGiftActiveAuctions#
|
|
1514
|
+
payments.starGiftActiveAuctions#aef6abbc auctions:Vector<StarGiftActiveAuctionState> users:Vector<User> chats:Vector<Chat> = payments.StarGiftActiveAuctions;
|
|
1513
1515
|
inputStarGiftAuction#2e16c98 gift_id:long = InputStarGiftAuction;
|
|
1514
1516
|
inputStarGiftAuctionSlug#7ab58308 slug:string = InputStarGiftAuction;
|
|
1517
|
+
passkey#98613ebf flags:# id:string name:string date:int software_emoji_id:flags.0?long last_usage_date:flags.1?int = Passkey;
|
|
1518
|
+
account.passkeys#f8e0aa1c passkeys:Vector<Passkey> = account.Passkeys;
|
|
1519
|
+
account.passkeyRegistrationOptions#e16b5ce1 options:DataJSON = account.PasskeyRegistrationOptions;
|
|
1520
|
+
auth.passkeyLoginOptions#e2037789 options:DataJSON = auth.PasskeyLoginOptions;
|
|
1521
|
+
inputPasskeyResponseRegister#3e63935c client_data:DataJSON attestation_data:bytes = InputPasskeyResponse;
|
|
1522
|
+
inputPasskeyResponseLogin#c31fc14a client_data:DataJSON authenticator_data:bytes signature:bytes user_handle:string = InputPasskeyResponse;
|
|
1523
|
+
inputPasskeyCredentialPublicKey#3c27b78f id:string raw_id:string response:InputPasskeyResponse = InputPasskeyCredential;
|
|
1524
|
+
starGiftBackground#aff56398 center_color:int edge_color:int text_color:int = StarGiftBackground;
|
|
1525
|
+
starGiftAuctionRound#3aae0528 num:int duration:int = StarGiftAuctionRound;
|
|
1526
|
+
starGiftAuctionRoundExtendable#aa021e5 num:int duration:int extend_top:int extend_window:int = StarGiftAuctionRound;
|
|
1527
|
+
payments.starGiftUpgradeAttributes#46c6e36f attributes:Vector<StarGiftAttribute> = payments.StarGiftUpgradeAttributes;
|
|
1515
1528
|
---functions---
|
|
1516
1529
|
invokeAfterMsg#cb9f372d {X:Type} msg_id:long query:!X = X;
|
|
1517
1530
|
invokeAfterMsgs#3dc4b4f0 {X:Type} msg_ids:Vector<long> query:!X = X;
|
|
@@ -1548,6 +1561,8 @@ auth.requestFirebaseSms#8e39261e flags:# phone_number:string phone_code_hash:str
|
|
|
1548
1561
|
auth.resetLoginEmail#7e960193 phone_number:string phone_code_hash:string = auth.SentCode;
|
|
1549
1562
|
auth.reportMissingCode#cb9deff6 phone_number:string phone_code_hash:string mnc:string = Bool;
|
|
1550
1563
|
auth.checkPaidAuth#56e59f9c phone_number:string phone_code_hash:string form_id:long = auth.SentCode;
|
|
1564
|
+
auth.initPasskeyLogin#518ad0b7 api_id:int api_hash:string = auth.PasskeyLoginOptions;
|
|
1565
|
+
auth.finishPasskeyLogin#9857ad07 flags:# credential:InputPasskeyCredential from_dc_id:flags.0?int from_auth_key_id:flags.0?long = auth.Authorization;
|
|
1551
1566
|
account.registerDevice#ec86017a flags:# no_muted:flags.0?true token_type:int token:string app_sandbox:Bool secret:bytes other_uids:Vector<long> = Bool;
|
|
1552
1567
|
account.unregisterDevice#6a0d3206 token_type:int token:string other_uids:Vector<long> = Bool;
|
|
1553
1568
|
account.updateNotifySettings#84be5b93 peer:InputNotifyPeer settings:InputPeerNotifySettings = Bool;
|
|
@@ -1667,6 +1682,10 @@ account.setMainProfileTab#5dee78b0 tab:ProfileTab = Bool;
|
|
|
1667
1682
|
account.saveMusic#b26732a9 flags:# unsave:flags.0?true id:InputDocument after_id:flags.1?InputDocument = Bool;
|
|
1668
1683
|
account.getSavedMusicIds#e09d5faf hash:long = account.SavedMusicIds;
|
|
1669
1684
|
account.getUniqueGiftChatThemes#e42ce9c9 offset:string limit:int hash:long = account.ChatThemes;
|
|
1685
|
+
account.initPasskeyRegistration#429547e8 = account.PasskeyRegistrationOptions;
|
|
1686
|
+
account.registerPasskey#55b41fd6 credential:InputPasskeyCredential = Passkey;
|
|
1687
|
+
account.getPasskeys#ea1f0c52 = account.Passkeys;
|
|
1688
|
+
account.deletePasskey#f5b5563f id:string = Bool;
|
|
1670
1689
|
users.getUsers#d91a548 id:Vector<InputUser> = Vector<User>;
|
|
1671
1690
|
users.getFullUser#b60f5918 id:InputUser = users.UserFull;
|
|
1672
1691
|
users.setSecureValueErrors#90c894b5 id:InputUser errors:Vector<SecureValueError> = Bool;
|
|
@@ -1713,7 +1732,7 @@ messages.receivedMessages#5a954c0 max_id:int = Vector<ReceivedNotifyMessage>;
|
|
|
1713
1732
|
messages.setTyping#58943ee2 flags:# peer:InputPeer top_msg_id:flags.0?int action:SendMessageAction = Bool;
|
|
1714
1733
|
messages.sendMessage#545cd15a flags:# no_webpage:flags.1?true silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int schedule_repeat_period:flags.24?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long suggested_post:flags.22?SuggestedPost = Updates;
|
|
1715
1734
|
messages.sendMedia#330e77f flags:# silent:flags.5?true background:flags.6?true clear_draft:flags.7?true noforwards:flags.14?true update_stickersets_order:flags.15?true invert_media:flags.16?true allow_paid_floodskip:flags.19?true peer:InputPeer reply_to:flags.0?InputReplyTo media:InputMedia message:string random_id:long reply_markup:flags.2?ReplyMarkup entities:flags.3?Vector<MessageEntity> schedule_date:flags.10?int schedule_repeat_period:flags.24?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long allow_paid_stars:flags.21?long suggested_post:flags.22?SuggestedPost = Updates;
|
|
1716
|
-
messages.forwardMessages#
|
|
1735
|
+
messages.forwardMessages#13704a7c flags:# silent:flags.5?true background:flags.6?true with_my_score:flags.8?true drop_author:flags.11?true drop_media_captions:flags.12?true noforwards:flags.14?true allow_paid_floodskip:flags.19?true from_peer:InputPeer id:Vector<int> random_id:Vector<long> to_peer:InputPeer top_msg_id:flags.9?int reply_to:flags.22?InputReplyTo schedule_date:flags.10?int schedule_repeat_period:flags.24?int send_as:flags.13?InputPeer quick_reply_shortcut:flags.17?InputQuickReplyShortcut effect:flags.18?long video_timestamp:flags.20?int allow_paid_stars:flags.21?long suggested_post:flags.23?SuggestedPost = Updates;
|
|
1717
1736
|
messages.reportSpam#cf1592db peer:InputPeer = Bool;
|
|
1718
1737
|
messages.getPeerSettings#efd9a6a2 peer:InputPeer = messages.PeerSettings;
|
|
1719
1738
|
messages.report#fc78af9b peer:InputPeer id:Vector<int> option:bytes message:string = ReportResult;
|
|
@@ -2129,6 +2148,9 @@ payments.checkCanSendGift#c0c4edc9 gift_id:long = payments.CheckCanSendGiftResul
|
|
|
2129
2148
|
payments.getStarGiftAuctionState#5c9ff4d6 auction:InputStarGiftAuction version:int = payments.StarGiftAuctionState;
|
|
2130
2149
|
payments.getStarGiftAuctionAcquiredGifts#6ba2cbec gift_id:long = payments.StarGiftAuctionAcquiredGifts;
|
|
2131
2150
|
payments.getStarGiftActiveAuctions#a5d0514d hash:long = payments.StarGiftActiveAuctions;
|
|
2151
|
+
payments.resolveStarGiftOffer#e9ce781c flags:# decline:flags.0?true offer_msg_id:int = Updates;
|
|
2152
|
+
payments.sendStarGiftOffer#8fb86b41 flags:# peer:InputPeer slug:string price:StarsAmount duration:int random_id:long allow_paid_stars:flags.0?long = Updates;
|
|
2153
|
+
payments.getStarGiftUpgradeAttributes#6d038b58 gift_id:long = payments.StarGiftUpgradeAttributes;
|
|
2132
2154
|
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;
|
|
2133
2155
|
stickers.removeStickerFromSet#f7760f51 sticker:InputDocument = messages.StickerSet;
|
|
2134
2156
|
stickers.changeStickerPosition#ffb6d4ca sticker:InputDocument position:int = messages.StickerSet;
|