@mtkruto/node 0.1.190 → 0.1.200
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/esm/0_errors.d.ts +12 -0
- package/esm/0_errors.js +19 -0
- package/esm/1_utilities.d.ts +1 -1
- package/esm/1_utilities.js +1 -1
- package/esm/2_tl.d.ts +6 -6
- package/esm/2_tl.js +6 -6
- package/esm/3_storage.d.ts +5 -5
- package/esm/3_storage.js +5 -5
- package/esm/3_types.d.ts +6 -5
- package/esm/3_types.js +6 -5
- package/esm/4_constants.d.ts +2 -2
- package/esm/4_constants.js +2 -2
- package/esm/5_client.d.ts +1 -1
- package/esm/5_client.js +1 -1
- package/esm/client/0_client_abstract.js +3 -2
- package/esm/client/0_html.js +4 -3
- package/esm/client/0_markdown.js +6 -5
- package/esm/client/0_params.d.ts +7 -1
- package/esm/client/0_types.d.ts +1 -2
- package/esm/client/0_types.js +1 -2
- package/esm/client/0_utilities.d.ts +0 -3
- package/esm/client/0_utilities.js +2 -21
- package/esm/client/1_business_connection_manager.d.ts +11 -0
- package/esm/client/1_business_connection_manager.js +47 -0
- package/esm/client/1_client_encrypted.js +1 -1
- package/esm/client/1_client_plain.js +3 -4
- package/esm/client/1_composer.js +3 -2
- package/esm/client/1_file_manager.js +4 -4
- package/esm/client/1_update_manager.d.ts +8 -1
- package/esm/client/1_update_manager.js +88 -8
- package/esm/client/2_message_manager.d.ts +7 -6
- package/esm/client/2_message_manager.js +89 -74
- package/esm/client/3_chat_list_manager.js +3 -2
- package/esm/client/3_story_manager.js +2 -1
- package/esm/client/4_client.d.ts +422 -421
- package/esm/client/4_client.js +578 -520
- package/esm/mod.d.ts +1 -0
- package/esm/mod.js +1 -0
- package/esm/storage/0_storage.d.ts +5 -0
- package/esm/storage/0_storage.js +20 -0
- package/esm/storage/{1_storage_indexed_db.js → 2_storage_indexed_db.js} +1 -1
- package/esm/storage/{1_storage_local_storage.js → 2_storage_local_storage.js} +1 -1
- package/{script/storage/1_storage_memory.d.ts → esm/storage/2_storage_memory.d.ts} +1 -4
- package/esm/storage/{1_storage_memory.js → 2_storage_memory.js} +8 -28
- package/esm/storage/{1_storage_session_storage.js → 2_storage_session_storage.js} +1 -1
- package/esm/tl/2_types.d.ts +1071 -183
- package/esm/tl/2_types.js +2916 -464
- package/esm/tl/3_functions.d.ts +381 -17
- package/esm/tl/3_functions.js +1002 -120
- package/{script/tl/4_tl_writer.d.ts → esm/tl/5_tl_writer.d.ts} +1 -1
- package/{script/tl/4_rpc_result.d.ts → esm/tl/6_rpc_result.d.ts} +1 -1
- package/esm/tl/{4_rpc_result.js → 6_rpc_result.js} +1 -1
- package/esm/tl/{6_message.d.ts → 7_message.d.ts} +2 -2
- package/esm/tl/{6_message.js → 7_message.js} +3 -3
- package/esm/tl/{7_message_container.d.ts → 8_message_container.d.ts} +1 -1
- package/esm/tl/{7_message_container.js → 8_message_container.js} +3 -3
- package/esm/types/0_chat_photo.d.ts +1 -0
- package/esm/types/0_chat_photo.js +8 -5
- package/esm/types/0_message_entity.d.ts +1 -1
- package/esm/types/0_thumbnail.js +1 -1
- package/esm/types/1_bot_command_scope.d.ts +1 -1
- package/esm/types/1_photo.js +2 -2
- package/esm/types/1_story_privacy.d.ts +1 -1
- package/esm/types/2_business_connection.d.ts +11 -0
- package/esm/types/2_business_connection.js +12 -0
- package/esm/types/2_chat_member.d.ts +1 -1
- package/esm/types/2_chosen_inline_result.d.ts +1 -1
- package/esm/types/2_game.js +1 -1
- package/esm/types/2_inline_keyboard_button.d.ts +1 -1
- package/esm/types/2_inline_query.d.ts +1 -1
- package/esm/types/2_invite_link.d.ts +1 -1
- package/esm/types/2_message_reaction_count.d.ts +1 -1
- package/esm/types/2_message_reactions.d.ts +1 -1
- package/esm/types/2_story_content.js +1 -1
- package/{script/types/1_story_interactive_area.d.ts → esm/types/2_story_interactive_area.d.ts} +2 -2
- package/esm/types/{1_story_interactive_area.js → 2_story_interactive_area.js} +1 -1
- package/esm/types/3_chat_member_updated.d.ts +1 -1
- package/esm/types/3_reply_markup.d.ts +1 -1
- package/esm/types/3_story.d.ts +2 -2
- package/esm/types/3_story.js +1 -1
- package/esm/types/4_inline_query_result.d.ts +1 -1
- package/esm/types/4_inline_query_result.js +1 -1
- package/esm/types/4_message.d.ts +9 -3
- package/esm/types/4_message.js +22 -5
- package/esm/types/5_callback_query.d.ts +1 -1
- package/esm/types/5_callback_query.js +2 -1
- package/esm/types/5_chat.d.ts +1 -1
- package/esm/types/6_update.d.ts +12 -2
- package/esm/types/{0__file_id.js → _file_id.js} +2 -1
- package/package.json +1 -1
- package/script/0_errors.d.ts +12 -0
- package/script/0_errors.js +27 -0
- package/script/1_utilities.d.ts +1 -1
- package/script/1_utilities.js +1 -1
- package/script/2_tl.d.ts +6 -6
- package/script/2_tl.js +6 -6
- package/script/3_storage.d.ts +5 -5
- package/script/3_storage.js +5 -5
- package/script/3_types.d.ts +6 -5
- package/script/3_types.js +6 -5
- package/script/4_constants.d.ts +2 -2
- package/script/4_constants.js +2 -2
- package/script/5_client.d.ts +1 -1
- package/script/5_client.js +1 -1
- package/script/client/0_client_abstract.js +3 -2
- package/script/client/0_html.js +4 -3
- package/script/client/0_markdown.js +6 -5
- package/script/client/0_params.d.ts +7 -1
- package/script/client/0_types.d.ts +1 -2
- package/script/client/0_types.js +0 -4
- package/script/client/0_utilities.d.ts +0 -3
- package/script/client/0_utilities.js +3 -24
- package/script/client/1_business_connection_manager.d.ts +11 -0
- package/script/client/1_business_connection_manager.js +51 -0
- package/script/client/1_client_encrypted.js +2 -2
- package/script/client/1_client_plain.js +3 -4
- package/script/client/1_composer.js +3 -2
- package/script/client/1_file_manager.js +5 -5
- package/script/client/1_update_manager.d.ts +8 -1
- package/script/client/1_update_manager.js +88 -8
- package/script/client/2_message_manager.d.ts +7 -6
- package/script/client/2_message_manager.js +88 -73
- package/script/client/3_chat_list_manager.js +3 -2
- package/script/client/3_story_manager.js +2 -1
- package/script/client/4_client.d.ts +422 -421
- package/script/client/4_client.js +578 -520
- package/script/mod.d.ts +1 -0
- package/script/mod.js +1 -0
- package/script/storage/0_storage.d.ts +5 -0
- package/script/storage/0_storage.js +20 -0
- package/script/storage/{1_storage_indexed_db.js → 2_storage_indexed_db.js} +7 -7
- package/script/storage/{1_storage_local_storage.js → 2_storage_local_storage.js} +10 -10
- package/{esm/storage/1_storage_memory.d.ts → script/storage/2_storage_memory.d.ts} +1 -4
- package/script/storage/{1_storage_memory.js → 2_storage_memory.js} +12 -32
- package/script/storage/{1_storage_session_storage.js → 2_storage_session_storage.js} +10 -10
- package/script/tl/2_types.d.ts +1071 -183
- package/script/tl/2_types.js +3028 -504
- package/script/tl/3_functions.d.ts +381 -17
- package/script/tl/3_functions.js +1047 -143
- package/{esm/tl/4_tl_writer.d.ts → script/tl/5_tl_writer.d.ts} +1 -1
- package/{esm/tl/4_rpc_result.d.ts → script/tl/6_rpc_result.d.ts} +1 -1
- package/script/tl/{4_rpc_result.js → 6_rpc_result.js} +2 -2
- package/script/tl/{6_message.d.ts → 7_message.d.ts} +2 -2
- package/script/tl/{6_message.js → 7_message.js} +8 -8
- package/script/tl/{7_message_container.d.ts → 8_message_container.d.ts} +1 -1
- package/script/tl/{7_message_container.js → 8_message_container.js} +7 -7
- package/script/types/0_chat_photo.d.ts +1 -0
- package/script/types/0_chat_photo.js +16 -13
- package/script/types/0_message_entity.d.ts +1 -1
- package/script/types/0_thumbnail.js +6 -6
- package/script/types/1_bot_command_scope.d.ts +1 -1
- package/script/types/1_photo.js +7 -7
- package/script/types/1_story_privacy.d.ts +1 -1
- package/script/types/2_business_connection.d.ts +11 -0
- package/script/types/2_business_connection.js +16 -0
- package/script/types/2_chat_member.d.ts +1 -1
- package/script/types/2_chosen_inline_result.d.ts +1 -1
- package/script/types/2_game.js +3 -3
- package/script/types/2_inline_keyboard_button.d.ts +1 -1
- package/script/types/2_inline_query.d.ts +1 -1
- package/script/types/2_invite_link.d.ts +1 -1
- package/script/types/2_message_reaction_count.d.ts +1 -1
- package/script/types/2_message_reactions.d.ts +1 -1
- package/script/types/2_story_content.js +4 -4
- package/{esm/types/1_story_interactive_area.d.ts → script/types/2_story_interactive_area.d.ts} +2 -2
- package/script/types/{1_story_interactive_area.js → 2_story_interactive_area.js} +2 -2
- package/script/types/3_chat_member_updated.d.ts +1 -1
- package/script/types/3_reply_markup.d.ts +1 -1
- package/script/types/3_story.d.ts +2 -2
- package/script/types/3_story.js +2 -2
- package/script/types/4_inline_query_result.d.ts +1 -1
- package/script/types/4_inline_query_result.js +2 -2
- package/script/types/4_message.d.ts +9 -3
- package/script/types/4_message.js +37 -20
- package/script/types/5_callback_query.d.ts +1 -1
- package/script/types/5_callback_query.js +2 -1
- package/script/types/5_chat.d.ts +1 -1
- package/script/types/6_update.d.ts +12 -2
- package/script/types/{0__file_id.js → _file_id.js} +2 -1
- /package/esm/storage/{0_utilities.d.ts → 1_utilities.d.ts} +0 -0
- /package/esm/storage/{0_utilities.js → 1_utilities.js} +0 -0
- /package/esm/storage/{1_storage_indexed_db.d.ts → 2_storage_indexed_db.d.ts} +0 -0
- /package/esm/storage/{1_storage_local_storage.d.ts → 2_storage_local_storage.d.ts} +0 -0
- /package/esm/storage/{1_storage_session_storage.d.ts → 2_storage_session_storage.d.ts} +0 -0
- /package/esm/tl/{3_tl_reader.d.ts → 4_tl_reader.d.ts} +0 -0
- /package/esm/tl/{3_tl_reader.js → 4_tl_reader.js} +0 -0
- /package/esm/tl/{4_tl_writer.js → 5_tl_writer.js} +0 -0
- /package/esm/types/{0_venue.d.ts → 1_venue.d.ts} +0 -0
- /package/esm/types/{0_venue.js → 1_venue.js} +0 -0
- /package/esm/types/{0__file_id.d.ts → _file_id.d.ts} +0 -0
- /package/esm/types/{1__getters.d.ts → _getters.d.ts} +0 -0
- /package/esm/types/{1__getters.js → _getters.js} +0 -0
- /package/script/storage/{0_utilities.d.ts → 1_utilities.d.ts} +0 -0
- /package/script/storage/{0_utilities.js → 1_utilities.js} +0 -0
- /package/script/storage/{1_storage_indexed_db.d.ts → 2_storage_indexed_db.d.ts} +0 -0
- /package/script/storage/{1_storage_local_storage.d.ts → 2_storage_local_storage.d.ts} +0 -0
- /package/script/storage/{1_storage_session_storage.d.ts → 2_storage_session_storage.d.ts} +0 -0
- /package/script/tl/{3_tl_reader.d.ts → 4_tl_reader.d.ts} +0 -0
- /package/script/tl/{3_tl_reader.js → 4_tl_reader.js} +0 -0
- /package/script/tl/{4_tl_writer.js → 5_tl_writer.js} +0 -0
- /package/script/types/{0_venue.d.ts → 1_venue.d.ts} +0 -0
- /package/script/types/{0_venue.js → 1_venue.js} +0 -0
- /package/script/types/{0__file_id.d.ts → _file_id.d.ts} +0 -0
- /package/script/types/{1__getters.d.ts → _getters.d.ts} +0 -0
- /package/script/types/{1__getters.js → _getters.js} +0 -0
package/esm/tl/2_types.js
CHANGED
|
@@ -60,7 +60,13 @@ export class _True_ extends Type_ {
|
|
|
60
60
|
}
|
|
61
61
|
export class _Error_ extends Type_ {
|
|
62
62
|
}
|
|
63
|
-
export class
|
|
63
|
+
export class _IpPort_ extends Type_ {
|
|
64
|
+
}
|
|
65
|
+
export class _AccessPointRule_ extends Type_ {
|
|
66
|
+
}
|
|
67
|
+
export class _help_ConfigSimple_ extends Type_ {
|
|
68
|
+
}
|
|
69
|
+
export class _InputFileLocation_ extends Type_ {
|
|
64
70
|
}
|
|
65
71
|
export class _InputPeer_ extends Type_ {
|
|
66
72
|
}
|
|
@@ -78,8 +84,6 @@ export class _InputGeoPoint_ extends Type_ {
|
|
|
78
84
|
}
|
|
79
85
|
export class _InputPhoto_ extends Type_ {
|
|
80
86
|
}
|
|
81
|
-
export class _InputFileLocation_ extends Type_ {
|
|
82
|
-
}
|
|
83
87
|
export class _Peer_ extends Type_ {
|
|
84
88
|
}
|
|
85
89
|
export class _storage_FileType_ extends Type_ {
|
|
@@ -976,6 +980,54 @@ export class _account_ConnectedBots_ extends Type_ {
|
|
|
976
980
|
}
|
|
977
981
|
export class _messages_DialogFilters_ extends Type_ {
|
|
978
982
|
}
|
|
983
|
+
export class _Birthday_ extends Type_ {
|
|
984
|
+
}
|
|
985
|
+
export class _BotBusinessConnection_ extends Type_ {
|
|
986
|
+
}
|
|
987
|
+
export class _InputBusinessIntro_ extends Type_ {
|
|
988
|
+
}
|
|
989
|
+
export class _BusinessIntro_ extends Type_ {
|
|
990
|
+
}
|
|
991
|
+
export class _messages_MyStickers_ extends Type_ {
|
|
992
|
+
}
|
|
993
|
+
export class _InputCollectible_ extends Type_ {
|
|
994
|
+
}
|
|
995
|
+
export class _fragment_CollectibleInfo_ extends Type_ {
|
|
996
|
+
}
|
|
997
|
+
export class _InputBusinessBotRecipients_ extends Type_ {
|
|
998
|
+
}
|
|
999
|
+
export class _BusinessBotRecipients_ extends Type_ {
|
|
1000
|
+
}
|
|
1001
|
+
export class _ContactBirthday_ extends Type_ {
|
|
1002
|
+
}
|
|
1003
|
+
export class _contacts_ContactBirthdays_ extends Type_ {
|
|
1004
|
+
}
|
|
1005
|
+
export class _MissingInvitee_ extends Type_ {
|
|
1006
|
+
}
|
|
1007
|
+
export class _messages_InvitedUsers_ extends Type_ {
|
|
1008
|
+
}
|
|
1009
|
+
export class _InputBusinessChatLink_ extends Type_ {
|
|
1010
|
+
}
|
|
1011
|
+
export class _BusinessChatLink_ extends Type_ {
|
|
1012
|
+
}
|
|
1013
|
+
export class _account_BusinessChatLinks_ extends Type_ {
|
|
1014
|
+
}
|
|
1015
|
+
export class _account_ResolvedBusinessChatLinks_ extends Type_ {
|
|
1016
|
+
}
|
|
1017
|
+
export class _RequestedPeer_ extends Type_ {
|
|
1018
|
+
}
|
|
1019
|
+
export class _SponsoredMessageReportOption_ extends Type_ {
|
|
1020
|
+
}
|
|
1021
|
+
export class _channels_SponsoredMessageReportResult_ extends Type_ {
|
|
1022
|
+
}
|
|
1023
|
+
export class _stats_BroadcastRevenueStats_ extends Type_ {
|
|
1024
|
+
}
|
|
1025
|
+
export class _stats_BroadcastRevenueWithdrawalUrl_ extends Type_ {
|
|
1026
|
+
}
|
|
1027
|
+
export class _BroadcastRevenueTransaction_ extends Type_ {
|
|
1028
|
+
}
|
|
1029
|
+
export class _stats_BroadcastRevenueTransactions_ extends Type_ {
|
|
1030
|
+
}
|
|
979
1031
|
export class ResPQ_ extends _ResPQ_ {
|
|
980
1032
|
get [id]() {
|
|
981
1033
|
return 0x05162463;
|
|
@@ -2471,22 +2523,282 @@ export class Error_ extends _Error_ {
|
|
|
2471
2523
|
this.text = params.text;
|
|
2472
2524
|
}
|
|
2473
2525
|
}
|
|
2474
|
-
|
|
2475
|
-
export class Null_ extends _Null_ {
|
|
2526
|
+
export class IpPort_ extends _IpPort_ {
|
|
2476
2527
|
get [id]() {
|
|
2477
|
-
return
|
|
2528
|
+
return 0xD433AD73;
|
|
2478
2529
|
}
|
|
2479
2530
|
static get [name]() {
|
|
2480
|
-
return "
|
|
2531
|
+
return "ipPort";
|
|
2481
2532
|
}
|
|
2482
2533
|
static get [paramDesc]() {
|
|
2483
|
-
return [
|
|
2534
|
+
return [
|
|
2535
|
+
["ipv4", "number", "int"],
|
|
2536
|
+
["port", "number", "int"],
|
|
2537
|
+
];
|
|
2484
2538
|
}
|
|
2485
2539
|
get [params]() {
|
|
2486
|
-
return [
|
|
2540
|
+
return [
|
|
2541
|
+
[this.ipv4, "number", "int"],
|
|
2542
|
+
[this.port, "number", "int"],
|
|
2543
|
+
];
|
|
2487
2544
|
}
|
|
2488
|
-
constructor() {
|
|
2545
|
+
constructor(params) {
|
|
2546
|
+
super();
|
|
2547
|
+
Object.defineProperty(this, "ipv4", {
|
|
2548
|
+
enumerable: true,
|
|
2549
|
+
configurable: true,
|
|
2550
|
+
writable: true,
|
|
2551
|
+
value: void 0
|
|
2552
|
+
});
|
|
2553
|
+
Object.defineProperty(this, "port", {
|
|
2554
|
+
enumerable: true,
|
|
2555
|
+
configurable: true,
|
|
2556
|
+
writable: true,
|
|
2557
|
+
value: void 0
|
|
2558
|
+
});
|
|
2559
|
+
this.ipv4 = params.ipv4;
|
|
2560
|
+
this.port = params.port;
|
|
2561
|
+
}
|
|
2562
|
+
}
|
|
2563
|
+
export class IpPortSecret_ extends _IpPort_ {
|
|
2564
|
+
get [id]() {
|
|
2565
|
+
return 0x37982646;
|
|
2566
|
+
}
|
|
2567
|
+
static get [name]() {
|
|
2568
|
+
return "ipPortSecret";
|
|
2569
|
+
}
|
|
2570
|
+
static get [paramDesc]() {
|
|
2571
|
+
return [
|
|
2572
|
+
["ipv4", "number", "int"],
|
|
2573
|
+
["port", "number", "int"],
|
|
2574
|
+
["secret", Uint8Array, "bytes"],
|
|
2575
|
+
];
|
|
2576
|
+
}
|
|
2577
|
+
get [params]() {
|
|
2578
|
+
return [
|
|
2579
|
+
[this.ipv4, "number", "int"],
|
|
2580
|
+
[this.port, "number", "int"],
|
|
2581
|
+
[this.secret, Uint8Array, "bytes"],
|
|
2582
|
+
];
|
|
2583
|
+
}
|
|
2584
|
+
constructor(params) {
|
|
2585
|
+
super();
|
|
2586
|
+
Object.defineProperty(this, "ipv4", {
|
|
2587
|
+
enumerable: true,
|
|
2588
|
+
configurable: true,
|
|
2589
|
+
writable: true,
|
|
2590
|
+
value: void 0
|
|
2591
|
+
});
|
|
2592
|
+
Object.defineProperty(this, "port", {
|
|
2593
|
+
enumerable: true,
|
|
2594
|
+
configurable: true,
|
|
2595
|
+
writable: true,
|
|
2596
|
+
value: void 0
|
|
2597
|
+
});
|
|
2598
|
+
Object.defineProperty(this, "secret", {
|
|
2599
|
+
enumerable: true,
|
|
2600
|
+
configurable: true,
|
|
2601
|
+
writable: true,
|
|
2602
|
+
value: void 0
|
|
2603
|
+
});
|
|
2604
|
+
this.ipv4 = params.ipv4;
|
|
2605
|
+
this.port = params.port;
|
|
2606
|
+
this.secret = params.secret;
|
|
2607
|
+
}
|
|
2608
|
+
}
|
|
2609
|
+
export class AccessPointRule_ extends _AccessPointRule_ {
|
|
2610
|
+
get [id]() {
|
|
2611
|
+
return 0x4679B65F;
|
|
2612
|
+
}
|
|
2613
|
+
static get [name]() {
|
|
2614
|
+
return "accessPointRule";
|
|
2615
|
+
}
|
|
2616
|
+
static get [paramDesc]() {
|
|
2617
|
+
return [
|
|
2618
|
+
["phone_prefix_rules", "string", "string"],
|
|
2619
|
+
["dc_id", "number", "int"],
|
|
2620
|
+
["ips", [_IpPort_], "vector<IpPort>"],
|
|
2621
|
+
];
|
|
2622
|
+
}
|
|
2623
|
+
get [params]() {
|
|
2624
|
+
return [
|
|
2625
|
+
[this.phone_prefix_rules, "string", "string"],
|
|
2626
|
+
[this.dc_id, "number", "int"],
|
|
2627
|
+
[this.ips, [_IpPort_], "vector<IpPort>"],
|
|
2628
|
+
];
|
|
2629
|
+
}
|
|
2630
|
+
constructor(params) {
|
|
2631
|
+
super();
|
|
2632
|
+
Object.defineProperty(this, "phone_prefix_rules", {
|
|
2633
|
+
enumerable: true,
|
|
2634
|
+
configurable: true,
|
|
2635
|
+
writable: true,
|
|
2636
|
+
value: void 0
|
|
2637
|
+
});
|
|
2638
|
+
Object.defineProperty(this, "dc_id", {
|
|
2639
|
+
enumerable: true,
|
|
2640
|
+
configurable: true,
|
|
2641
|
+
writable: true,
|
|
2642
|
+
value: void 0
|
|
2643
|
+
});
|
|
2644
|
+
Object.defineProperty(this, "ips", {
|
|
2645
|
+
enumerable: true,
|
|
2646
|
+
configurable: true,
|
|
2647
|
+
writable: true,
|
|
2648
|
+
value: void 0
|
|
2649
|
+
});
|
|
2650
|
+
this.phone_prefix_rules = params.phone_prefix_rules;
|
|
2651
|
+
this.dc_id = params.dc_id;
|
|
2652
|
+
this.ips = params.ips;
|
|
2653
|
+
}
|
|
2654
|
+
}
|
|
2655
|
+
export class help_ConfigSimple_ extends _help_ConfigSimple_ {
|
|
2656
|
+
get [id]() {
|
|
2657
|
+
return 0x5A592A6C;
|
|
2658
|
+
}
|
|
2659
|
+
static get [name]() {
|
|
2660
|
+
return "help.configSimple";
|
|
2661
|
+
}
|
|
2662
|
+
static get [paramDesc]() {
|
|
2663
|
+
return [
|
|
2664
|
+
["date", "number", "int"],
|
|
2665
|
+
["expires", "number", "int"],
|
|
2666
|
+
["rules", [_AccessPointRule_], "vector<AccessPointRule>"],
|
|
2667
|
+
];
|
|
2668
|
+
}
|
|
2669
|
+
get [params]() {
|
|
2670
|
+
return [
|
|
2671
|
+
[this.date, "number", "int"],
|
|
2672
|
+
[this.expires, "number", "int"],
|
|
2673
|
+
[this.rules, [_AccessPointRule_], "vector<AccessPointRule>"],
|
|
2674
|
+
];
|
|
2675
|
+
}
|
|
2676
|
+
constructor(params) {
|
|
2677
|
+
super();
|
|
2678
|
+
Object.defineProperty(this, "date", {
|
|
2679
|
+
enumerable: true,
|
|
2680
|
+
configurable: true,
|
|
2681
|
+
writable: true,
|
|
2682
|
+
value: void 0
|
|
2683
|
+
});
|
|
2684
|
+
Object.defineProperty(this, "expires", {
|
|
2685
|
+
enumerable: true,
|
|
2686
|
+
configurable: true,
|
|
2687
|
+
writable: true,
|
|
2688
|
+
value: void 0
|
|
2689
|
+
});
|
|
2690
|
+
Object.defineProperty(this, "rules", {
|
|
2691
|
+
enumerable: true,
|
|
2692
|
+
configurable: true,
|
|
2693
|
+
writable: true,
|
|
2694
|
+
value: void 0
|
|
2695
|
+
});
|
|
2696
|
+
this.date = params.date;
|
|
2697
|
+
this.expires = params.expires;
|
|
2698
|
+
this.rules = params.rules;
|
|
2699
|
+
}
|
|
2700
|
+
}
|
|
2701
|
+
export class InputPeerPhotoFileLocationLegacy_ extends _InputFileLocation_ {
|
|
2702
|
+
get [id]() {
|
|
2703
|
+
return 0x27D69997;
|
|
2704
|
+
}
|
|
2705
|
+
static get [name]() {
|
|
2706
|
+
return "inputPeerPhotoFileLocationLegacy";
|
|
2707
|
+
}
|
|
2708
|
+
static get [paramDesc]() {
|
|
2709
|
+
return [
|
|
2710
|
+
["flags", flags, "#"],
|
|
2711
|
+
["big", "true", "flags.0?true"],
|
|
2712
|
+
["peer", _InputPeer_, "InputPeer"],
|
|
2713
|
+
["volume_id", "bigint", "long"],
|
|
2714
|
+
["local_id", "number", "int"],
|
|
2715
|
+
];
|
|
2716
|
+
}
|
|
2717
|
+
get [params]() {
|
|
2718
|
+
return [
|
|
2719
|
+
["flags", flags, "#"],
|
|
2720
|
+
[this.big ?? null, "true", "flags.0?true"],
|
|
2721
|
+
[this.peer, _InputPeer_, "InputPeer"],
|
|
2722
|
+
[this.volume_id, "bigint", "long"],
|
|
2723
|
+
[this.local_id, "number", "int"],
|
|
2724
|
+
];
|
|
2725
|
+
}
|
|
2726
|
+
constructor(params) {
|
|
2727
|
+
super();
|
|
2728
|
+
Object.defineProperty(this, "big", {
|
|
2729
|
+
enumerable: true,
|
|
2730
|
+
configurable: true,
|
|
2731
|
+
writable: true,
|
|
2732
|
+
value: void 0
|
|
2733
|
+
});
|
|
2734
|
+
Object.defineProperty(this, "peer", {
|
|
2735
|
+
enumerable: true,
|
|
2736
|
+
configurable: true,
|
|
2737
|
+
writable: true,
|
|
2738
|
+
value: void 0
|
|
2739
|
+
});
|
|
2740
|
+
Object.defineProperty(this, "volume_id", {
|
|
2741
|
+
enumerable: true,
|
|
2742
|
+
configurable: true,
|
|
2743
|
+
writable: true,
|
|
2744
|
+
value: void 0
|
|
2745
|
+
});
|
|
2746
|
+
Object.defineProperty(this, "local_id", {
|
|
2747
|
+
enumerable: true,
|
|
2748
|
+
configurable: true,
|
|
2749
|
+
writable: true,
|
|
2750
|
+
value: void 0
|
|
2751
|
+
});
|
|
2752
|
+
this.big = params.big;
|
|
2753
|
+
this.peer = params.peer;
|
|
2754
|
+
this.volume_id = params.volume_id;
|
|
2755
|
+
this.local_id = params.local_id;
|
|
2756
|
+
}
|
|
2757
|
+
}
|
|
2758
|
+
export class InputStickerSetThumbLegacy_ extends _InputFileLocation_ {
|
|
2759
|
+
get [id]() {
|
|
2760
|
+
return 0x0DBAEAE9;
|
|
2761
|
+
}
|
|
2762
|
+
static get [name]() {
|
|
2763
|
+
return "inputStickerSetThumbLegacy";
|
|
2764
|
+
}
|
|
2765
|
+
static get [paramDesc]() {
|
|
2766
|
+
return [
|
|
2767
|
+
["stickerset", _InputStickerSet_, "InputStickerSet"],
|
|
2768
|
+
["volume_id", "bigint", "long"],
|
|
2769
|
+
["local_id", "number", "int"],
|
|
2770
|
+
];
|
|
2771
|
+
}
|
|
2772
|
+
get [params]() {
|
|
2773
|
+
return [
|
|
2774
|
+
[this.stickerset, _InputStickerSet_, "InputStickerSet"],
|
|
2775
|
+
[this.volume_id, "bigint", "long"],
|
|
2776
|
+
[this.local_id, "number", "int"],
|
|
2777
|
+
];
|
|
2778
|
+
}
|
|
2779
|
+
constructor(params) {
|
|
2489
2780
|
super();
|
|
2781
|
+
Object.defineProperty(this, "stickerset", {
|
|
2782
|
+
enumerable: true,
|
|
2783
|
+
configurable: true,
|
|
2784
|
+
writable: true,
|
|
2785
|
+
value: void 0
|
|
2786
|
+
});
|
|
2787
|
+
Object.defineProperty(this, "volume_id", {
|
|
2788
|
+
enumerable: true,
|
|
2789
|
+
configurable: true,
|
|
2790
|
+
writable: true,
|
|
2791
|
+
value: void 0
|
|
2792
|
+
});
|
|
2793
|
+
Object.defineProperty(this, "local_id", {
|
|
2794
|
+
enumerable: true,
|
|
2795
|
+
configurable: true,
|
|
2796
|
+
writable: true,
|
|
2797
|
+
value: void 0
|
|
2798
|
+
});
|
|
2799
|
+
this.stickerset = params.stickerset;
|
|
2800
|
+
this.volume_id = params.volume_id;
|
|
2801
|
+
this.local_id = params.local_id;
|
|
2490
2802
|
}
|
|
2491
2803
|
}
|
|
2492
2804
|
/** An empty constructor, no user or chat is defined. */
|
|
@@ -5124,6 +5436,7 @@ export class User_ extends _User_ {
|
|
|
5124
5436
|
["stories_hidden", "true", "flags2.3?true"],
|
|
5125
5437
|
["stories_unavailable", "true", "flags2.4?true"],
|
|
5126
5438
|
["contact_require_premium", "true", "flags2.10?true"],
|
|
5439
|
+
["bot_business", "true", "flags2.11?true"],
|
|
5127
5440
|
["id", "bigint", "long"],
|
|
5128
5441
|
["access_hash", "bigint", "flags.0?long"],
|
|
5129
5442
|
["first_name", "string", "flags.1?string"],
|
|
@@ -5170,6 +5483,7 @@ export class User_ extends _User_ {
|
|
|
5170
5483
|
[this.stories_hidden ?? null, "true", "flags2.3?true"],
|
|
5171
5484
|
[this.stories_unavailable ?? null, "true", "flags2.4?true"],
|
|
5172
5485
|
[this.contact_require_premium ?? null, "true", "flags2.10?true"],
|
|
5486
|
+
[this.bot_business ?? null, "true", "flags2.11?true"],
|
|
5173
5487
|
[this.id, "bigint", "long"],
|
|
5174
5488
|
[this.access_hash ?? null, "bigint", "flags.0?long"],
|
|
5175
5489
|
[this.first_name ?? null, "string", "flags.1?string"],
|
|
@@ -5351,6 +5665,12 @@ export class User_ extends _User_ {
|
|
|
5351
5665
|
writable: true,
|
|
5352
5666
|
value: void 0
|
|
5353
5667
|
});
|
|
5668
|
+
Object.defineProperty(this, "bot_business", {
|
|
5669
|
+
enumerable: true,
|
|
5670
|
+
configurable: true,
|
|
5671
|
+
writable: true,
|
|
5672
|
+
value: void 0
|
|
5673
|
+
});
|
|
5354
5674
|
/** ID of the user */
|
|
5355
5675
|
Object.defineProperty(this, "id", {
|
|
5356
5676
|
enumerable: true,
|
|
@@ -5493,6 +5813,7 @@ export class User_ extends _User_ {
|
|
|
5493
5813
|
this.stories_hidden = params.stories_hidden;
|
|
5494
5814
|
this.stories_unavailable = params.stories_unavailable;
|
|
5495
5815
|
this.contact_require_premium = params.contact_require_premium;
|
|
5816
|
+
this.bot_business = params.bot_business;
|
|
5496
5817
|
this.id = params.id;
|
|
5497
5818
|
this.access_hash = params.access_hash;
|
|
5498
5819
|
this.first_name = params.first_name;
|
|
@@ -6759,6 +7080,8 @@ export class ChannelFull_ extends _ChatFull_ {
|
|
|
6759
7080
|
["translations_disabled", "true", "flags2.3?true"],
|
|
6760
7081
|
["stories_pinned_available", "true", "flags2.5?true"],
|
|
6761
7082
|
["view_forum_as_messages", "true", "flags2.6?true"],
|
|
7083
|
+
["restricted_sponsored", "true", "flags2.11?true"],
|
|
7084
|
+
["can_view_revenue", "true", "flags2.12?true"],
|
|
6762
7085
|
["id", "bigint", "long"],
|
|
6763
7086
|
["about", "string", "string"],
|
|
6764
7087
|
["participants_count", "number", "flags.0?int"],
|
|
@@ -6819,6 +7142,8 @@ export class ChannelFull_ extends _ChatFull_ {
|
|
|
6819
7142
|
[this.translations_disabled ?? null, "true", "flags2.3?true"],
|
|
6820
7143
|
[this.stories_pinned_available ?? null, "true", "flags2.5?true"],
|
|
6821
7144
|
[this.view_forum_as_messages ?? null, "true", "flags2.6?true"],
|
|
7145
|
+
[this.restricted_sponsored ?? null, "true", "flags2.11?true"],
|
|
7146
|
+
[this.can_view_revenue ?? null, "true", "flags2.12?true"],
|
|
6822
7147
|
[this.id, "bigint", "long"],
|
|
6823
7148
|
[this.about, "string", "string"],
|
|
6824
7149
|
[this.participants_count ?? null, "number", "flags.0?int"],
|
|
@@ -6962,6 +7287,18 @@ export class ChannelFull_ extends _ChatFull_ {
|
|
|
6962
7287
|
writable: true,
|
|
6963
7288
|
value: void 0
|
|
6964
7289
|
});
|
|
7290
|
+
Object.defineProperty(this, "restricted_sponsored", {
|
|
7291
|
+
enumerable: true,
|
|
7292
|
+
configurable: true,
|
|
7293
|
+
writable: true,
|
|
7294
|
+
value: void 0
|
|
7295
|
+
});
|
|
7296
|
+
Object.defineProperty(this, "can_view_revenue", {
|
|
7297
|
+
enumerable: true,
|
|
7298
|
+
configurable: true,
|
|
7299
|
+
writable: true,
|
|
7300
|
+
value: void 0
|
|
7301
|
+
});
|
|
6965
7302
|
/** ID of the channel */
|
|
6966
7303
|
Object.defineProperty(this, "id", {
|
|
6967
7304
|
enumerable: true,
|
|
@@ -7253,6 +7590,8 @@ export class ChannelFull_ extends _ChatFull_ {
|
|
|
7253
7590
|
this.translations_disabled = params.translations_disabled;
|
|
7254
7591
|
this.stories_pinned_available = params.stories_pinned_available;
|
|
7255
7592
|
this.view_forum_as_messages = params.view_forum_as_messages;
|
|
7593
|
+
this.restricted_sponsored = params.restricted_sponsored;
|
|
7594
|
+
this.can_view_revenue = params.can_view_revenue;
|
|
7256
7595
|
this.id = params.id;
|
|
7257
7596
|
this.about = params.about;
|
|
7258
7597
|
this.participants_count = params.participants_count;
|
|
@@ -7642,7 +7981,7 @@ export class MessageEmpty_ extends _Message_ {
|
|
|
7642
7981
|
/** A message */
|
|
7643
7982
|
export class Message_ extends _Message_ {
|
|
7644
7983
|
get [id]() {
|
|
7645
|
-
return
|
|
7984
|
+
return 0x2357BF25;
|
|
7646
7985
|
}
|
|
7647
7986
|
static get [name]() {
|
|
7648
7987
|
return "message";
|
|
@@ -7661,6 +8000,8 @@ export class Message_ extends _Message_ {
|
|
|
7661
8000
|
["pinned", "true", "flags.24?true"],
|
|
7662
8001
|
["noforwards", "true", "flags.26?true"],
|
|
7663
8002
|
["invert_media", "true", "flags.27?true"],
|
|
8003
|
+
["flags2", flags, "#"],
|
|
8004
|
+
["offline", "true", "flags2.1?true"],
|
|
7664
8005
|
["id", "number", "int"],
|
|
7665
8006
|
["from_id", _Peer_, "flags.8?Peer"],
|
|
7666
8007
|
["from_boosts_applied", "number", "flags.29?int"],
|
|
@@ -7668,6 +8009,7 @@ export class Message_ extends _Message_ {
|
|
|
7668
8009
|
["saved_peer_id", _Peer_, "flags.28?Peer"],
|
|
7669
8010
|
["fwd_from", _MessageFwdHeader_, "flags.2?MessageFwdHeader"],
|
|
7670
8011
|
["via_bot_id", "bigint", "flags.11?long"],
|
|
8012
|
+
["via_business_bot_id", "bigint", "flags2.0?long"],
|
|
7671
8013
|
["reply_to", _MessageReplyHeader_, "flags.3?MessageReplyHeader"],
|
|
7672
8014
|
["date", "number", "int"],
|
|
7673
8015
|
["message", "string", "string"],
|
|
@@ -7700,6 +8042,8 @@ export class Message_ extends _Message_ {
|
|
|
7700
8042
|
[this.pinned ?? null, "true", "flags.24?true"],
|
|
7701
8043
|
[this.noforwards ?? null, "true", "flags.26?true"],
|
|
7702
8044
|
[this.invert_media ?? null, "true", "flags.27?true"],
|
|
8045
|
+
["flags2", flags, "#"],
|
|
8046
|
+
[this.offline ?? null, "true", "flags2.1?true"],
|
|
7703
8047
|
[this.id, "number", "int"],
|
|
7704
8048
|
[this.from_id ?? null, _Peer_, "flags.8?Peer"],
|
|
7705
8049
|
[this.from_boosts_applied ?? null, "number", "flags.29?int"],
|
|
@@ -7707,6 +8051,7 @@ export class Message_ extends _Message_ {
|
|
|
7707
8051
|
[this.saved_peer_id ?? null, _Peer_, "flags.28?Peer"],
|
|
7708
8052
|
[this.fwd_from ?? null, _MessageFwdHeader_, "flags.2?MessageFwdHeader"],
|
|
7709
8053
|
[this.via_bot_id ?? null, "bigint", "flags.11?long"],
|
|
8054
|
+
[this.via_business_bot_id ?? null, "bigint", "flags2.0?long"],
|
|
7710
8055
|
[this.reply_to ?? null, _MessageReplyHeader_, "flags.3?MessageReplyHeader"],
|
|
7711
8056
|
[this.date, "number", "int"],
|
|
7712
8057
|
[this.message, "string", "string"],
|
|
@@ -7804,6 +8149,12 @@ export class Message_ extends _Message_ {
|
|
|
7804
8149
|
writable: true,
|
|
7805
8150
|
value: void 0
|
|
7806
8151
|
});
|
|
8152
|
+
Object.defineProperty(this, "offline", {
|
|
8153
|
+
enumerable: true,
|
|
8154
|
+
configurable: true,
|
|
8155
|
+
writable: true,
|
|
8156
|
+
value: void 0
|
|
8157
|
+
});
|
|
7807
8158
|
/** ID of the message */
|
|
7808
8159
|
Object.defineProperty(this, "id", {
|
|
7809
8160
|
enumerable: true,
|
|
@@ -7852,6 +8203,12 @@ export class Message_ extends _Message_ {
|
|
|
7852
8203
|
writable: true,
|
|
7853
8204
|
value: void 0
|
|
7854
8205
|
});
|
|
8206
|
+
Object.defineProperty(this, "via_business_bot_id", {
|
|
8207
|
+
enumerable: true,
|
|
8208
|
+
configurable: true,
|
|
8209
|
+
writable: true,
|
|
8210
|
+
value: void 0
|
|
8211
|
+
});
|
|
7855
8212
|
/** Reply information */
|
|
7856
8213
|
Object.defineProperty(this, "reply_to", {
|
|
7857
8214
|
enumerable: true,
|
|
@@ -7974,6 +8331,7 @@ export class Message_ extends _Message_ {
|
|
|
7974
8331
|
this.pinned = params.pinned;
|
|
7975
8332
|
this.noforwards = params.noforwards;
|
|
7976
8333
|
this.invert_media = params.invert_media;
|
|
8334
|
+
this.offline = params.offline;
|
|
7977
8335
|
this.id = params.id;
|
|
7978
8336
|
this.from_id = params.from_id;
|
|
7979
8337
|
this.from_boosts_applied = params.from_boosts_applied;
|
|
@@ -7981,6 +8339,7 @@ export class Message_ extends _Message_ {
|
|
|
7981
8339
|
this.saved_peer_id = params.saved_peer_id;
|
|
7982
8340
|
this.fwd_from = params.fwd_from;
|
|
7983
8341
|
this.via_bot_id = params.via_bot_id;
|
|
8342
|
+
this.via_business_bot_id = params.via_business_bot_id;
|
|
7984
8343
|
this.reply_to = params.reply_to;
|
|
7985
8344
|
this.date = params.date;
|
|
7986
8345
|
this.message = params.message;
|
|
@@ -10858,6 +11217,43 @@ export class MessageActionBoostApply_ extends _MessageAction_ {
|
|
|
10858
11217
|
this.boosts = params.boosts;
|
|
10859
11218
|
}
|
|
10860
11219
|
}
|
|
11220
|
+
export class MessageActionRequestedPeerSentMe_ extends _MessageAction_ {
|
|
11221
|
+
get [id]() {
|
|
11222
|
+
return 0x93B31848;
|
|
11223
|
+
}
|
|
11224
|
+
static get [name]() {
|
|
11225
|
+
return "messageActionRequestedPeerSentMe";
|
|
11226
|
+
}
|
|
11227
|
+
static get [paramDesc]() {
|
|
11228
|
+
return [
|
|
11229
|
+
["button_id", "number", "int"],
|
|
11230
|
+
["peers", [_RequestedPeer_], "Vector<RequestedPeer>"],
|
|
11231
|
+
];
|
|
11232
|
+
}
|
|
11233
|
+
get [params]() {
|
|
11234
|
+
return [
|
|
11235
|
+
[this.button_id, "number", "int"],
|
|
11236
|
+
[this.peers, [_RequestedPeer_], "Vector<RequestedPeer>"],
|
|
11237
|
+
];
|
|
11238
|
+
}
|
|
11239
|
+
constructor(params) {
|
|
11240
|
+
super();
|
|
11241
|
+
Object.defineProperty(this, "button_id", {
|
|
11242
|
+
enumerable: true,
|
|
11243
|
+
configurable: true,
|
|
11244
|
+
writable: true,
|
|
11245
|
+
value: void 0
|
|
11246
|
+
});
|
|
11247
|
+
Object.defineProperty(this, "peers", {
|
|
11248
|
+
enumerable: true,
|
|
11249
|
+
configurable: true,
|
|
11250
|
+
writable: true,
|
|
11251
|
+
value: void 0
|
|
11252
|
+
});
|
|
11253
|
+
this.button_id = params.button_id;
|
|
11254
|
+
this.peers = params.peers;
|
|
11255
|
+
}
|
|
11256
|
+
}
|
|
10861
11257
|
/** Chat */
|
|
10862
11258
|
export class Dialog_ extends _Dialog_ {
|
|
10863
11259
|
get [id]() {
|
|
@@ -12222,7 +12618,7 @@ export class PeerNotifySettings_ extends _PeerNotifySettings_ {
|
|
|
12222
12618
|
/** List of actions that are possible when interacting with this user, to be shown as suggested actions in the [chat action bar »](https://core.telegram.org/api/action-bar), see [here »](https://core.telegram.org/api/action-bar) for more info. */
|
|
12223
12619
|
export class PeerSettings_ extends _PeerSettings_ {
|
|
12224
12620
|
get [id]() {
|
|
12225
|
-
return
|
|
12621
|
+
return 0xACD66C5E;
|
|
12226
12622
|
}
|
|
12227
12623
|
static get [name]() {
|
|
12228
12624
|
return "peerSettings";
|
|
@@ -12239,9 +12635,13 @@ export class PeerSettings_ extends _PeerSettings_ {
|
|
|
12239
12635
|
["autoarchived", "true", "flags.7?true"],
|
|
12240
12636
|
["invite_members", "true", "flags.8?true"],
|
|
12241
12637
|
["request_chat_broadcast", "true", "flags.10?true"],
|
|
12638
|
+
["business_bot_paused", "true", "flags.11?true"],
|
|
12639
|
+
["business_bot_can_reply", "true", "flags.12?true"],
|
|
12242
12640
|
["geo_distance", "number", "flags.6?int"],
|
|
12243
12641
|
["request_chat_title", "string", "flags.9?string"],
|
|
12244
12642
|
["request_chat_date", "number", "flags.9?int"],
|
|
12643
|
+
["business_bot_id", "bigint", "flags.13?long"],
|
|
12644
|
+
["business_bot_manage_url", "string", "flags.13?string"],
|
|
12245
12645
|
];
|
|
12246
12646
|
}
|
|
12247
12647
|
get [params]() {
|
|
@@ -12256,9 +12656,13 @@ export class PeerSettings_ extends _PeerSettings_ {
|
|
|
12256
12656
|
[this.autoarchived ?? null, "true", "flags.7?true"],
|
|
12257
12657
|
[this.invite_members ?? null, "true", "flags.8?true"],
|
|
12258
12658
|
[this.request_chat_broadcast ?? null, "true", "flags.10?true"],
|
|
12659
|
+
[this.business_bot_paused ?? null, "true", "flags.11?true"],
|
|
12660
|
+
[this.business_bot_can_reply ?? null, "true", "flags.12?true"],
|
|
12259
12661
|
[this.geo_distance ?? null, "number", "flags.6?int"],
|
|
12260
12662
|
[this.request_chat_title ?? null, "string", "flags.9?string"],
|
|
12261
12663
|
[this.request_chat_date ?? null, "number", "flags.9?int"],
|
|
12664
|
+
[this.business_bot_id ?? null, "bigint", "flags.13?long"],
|
|
12665
|
+
[this.business_bot_manage_url ?? null, "string", "flags.13?string"],
|
|
12262
12666
|
];
|
|
12263
12667
|
}
|
|
12264
12668
|
constructor(params) {
|
|
@@ -12326,6 +12730,18 @@ export class PeerSettings_ extends _PeerSettings_ {
|
|
|
12326
12730
|
writable: true,
|
|
12327
12731
|
value: void 0
|
|
12328
12732
|
});
|
|
12733
|
+
Object.defineProperty(this, "business_bot_paused", {
|
|
12734
|
+
enumerable: true,
|
|
12735
|
+
configurable: true,
|
|
12736
|
+
writable: true,
|
|
12737
|
+
value: void 0
|
|
12738
|
+
});
|
|
12739
|
+
Object.defineProperty(this, "business_bot_can_reply", {
|
|
12740
|
+
enumerable: true,
|
|
12741
|
+
configurable: true,
|
|
12742
|
+
writable: true,
|
|
12743
|
+
value: void 0
|
|
12744
|
+
});
|
|
12329
12745
|
/** Distance in meters between us and this peer */
|
|
12330
12746
|
Object.defineProperty(this, "geo_distance", {
|
|
12331
12747
|
enumerable: true,
|
|
@@ -12347,6 +12763,18 @@ export class PeerSettings_ extends _PeerSettings_ {
|
|
|
12347
12763
|
writable: true,
|
|
12348
12764
|
value: void 0
|
|
12349
12765
|
});
|
|
12766
|
+
Object.defineProperty(this, "business_bot_id", {
|
|
12767
|
+
enumerable: true,
|
|
12768
|
+
configurable: true,
|
|
12769
|
+
writable: true,
|
|
12770
|
+
value: void 0
|
|
12771
|
+
});
|
|
12772
|
+
Object.defineProperty(this, "business_bot_manage_url", {
|
|
12773
|
+
enumerable: true,
|
|
12774
|
+
configurable: true,
|
|
12775
|
+
writable: true,
|
|
12776
|
+
value: void 0
|
|
12777
|
+
});
|
|
12350
12778
|
this.report_spam = params?.report_spam;
|
|
12351
12779
|
this.add_contact = params?.add_contact;
|
|
12352
12780
|
this.block_contact = params?.block_contact;
|
|
@@ -12356,9 +12784,13 @@ export class PeerSettings_ extends _PeerSettings_ {
|
|
|
12356
12784
|
this.autoarchived = params?.autoarchived;
|
|
12357
12785
|
this.invite_members = params?.invite_members;
|
|
12358
12786
|
this.request_chat_broadcast = params?.request_chat_broadcast;
|
|
12787
|
+
this.business_bot_paused = params?.business_bot_paused;
|
|
12788
|
+
this.business_bot_can_reply = params?.business_bot_can_reply;
|
|
12359
12789
|
this.geo_distance = params?.geo_distance;
|
|
12360
12790
|
this.request_chat_title = params?.request_chat_title;
|
|
12361
12791
|
this.request_chat_date = params?.request_chat_date;
|
|
12792
|
+
this.business_bot_id = params?.business_bot_id;
|
|
12793
|
+
this.business_bot_manage_url = params?.business_bot_manage_url;
|
|
12362
12794
|
}
|
|
12363
12795
|
}
|
|
12364
12796
|
/** Represents a [wallpaper](https://core.telegram.org/api/wallpapers) based on an image. */
|
|
@@ -12718,7 +13150,7 @@ export class InputReportReasonPersonalDetails_ extends _ReportReason_ {
|
|
|
12718
13150
|
/** Extended user info */
|
|
12719
13151
|
export class UserFull_ extends _UserFull_ {
|
|
12720
13152
|
get [id]() {
|
|
12721
|
-
return
|
|
13153
|
+
return 0xCC997720;
|
|
12722
13154
|
}
|
|
12723
13155
|
static get [name]() {
|
|
12724
13156
|
return "userFull";
|
|
@@ -12763,6 +13195,10 @@ export class UserFull_ extends _UserFull_ {
|
|
|
12763
13195
|
["business_location", _BusinessLocation_, "flags2.1?BusinessLocation"],
|
|
12764
13196
|
["business_greeting_message", _BusinessGreetingMessage_, "flags2.2?BusinessGreetingMessage"],
|
|
12765
13197
|
["business_away_message", _BusinessAwayMessage_, "flags2.3?BusinessAwayMessage"],
|
|
13198
|
+
["business_intro", _BusinessIntro_, "flags2.4?BusinessIntro"],
|
|
13199
|
+
["birthday", _Birthday_, "flags2.5?Birthday"],
|
|
13200
|
+
["personal_channel_id", "bigint", "flags2.6?long"],
|
|
13201
|
+
["personal_channel_message", "number", "flags2.6?int"],
|
|
12766
13202
|
];
|
|
12767
13203
|
}
|
|
12768
13204
|
get [params]() {
|
|
@@ -12805,6 +13241,10 @@ export class UserFull_ extends _UserFull_ {
|
|
|
12805
13241
|
[this.business_location ?? null, _BusinessLocation_, "flags2.1?BusinessLocation"],
|
|
12806
13242
|
[this.business_greeting_message ?? null, _BusinessGreetingMessage_, "flags2.2?BusinessGreetingMessage"],
|
|
12807
13243
|
[this.business_away_message ?? null, _BusinessAwayMessage_, "flags2.3?BusinessAwayMessage"],
|
|
13244
|
+
[this.business_intro ?? null, _BusinessIntro_, "flags2.4?BusinessIntro"],
|
|
13245
|
+
[this.birthday ?? null, _Birthday_, "flags2.5?Birthday"],
|
|
13246
|
+
[this.personal_channel_id ?? null, "bigint", "flags2.6?long"],
|
|
13247
|
+
[this.personal_channel_message ?? null, "number", "flags2.6?int"],
|
|
12808
13248
|
];
|
|
12809
13249
|
}
|
|
12810
13250
|
constructor(params) {
|
|
@@ -13055,6 +13495,30 @@ export class UserFull_ extends _UserFull_ {
|
|
|
13055
13495
|
writable: true,
|
|
13056
13496
|
value: void 0
|
|
13057
13497
|
});
|
|
13498
|
+
Object.defineProperty(this, "business_intro", {
|
|
13499
|
+
enumerable: true,
|
|
13500
|
+
configurable: true,
|
|
13501
|
+
writable: true,
|
|
13502
|
+
value: void 0
|
|
13503
|
+
});
|
|
13504
|
+
Object.defineProperty(this, "birthday", {
|
|
13505
|
+
enumerable: true,
|
|
13506
|
+
configurable: true,
|
|
13507
|
+
writable: true,
|
|
13508
|
+
value: void 0
|
|
13509
|
+
});
|
|
13510
|
+
Object.defineProperty(this, "personal_channel_id", {
|
|
13511
|
+
enumerable: true,
|
|
13512
|
+
configurable: true,
|
|
13513
|
+
writable: true,
|
|
13514
|
+
value: void 0
|
|
13515
|
+
});
|
|
13516
|
+
Object.defineProperty(this, "personal_channel_message", {
|
|
13517
|
+
enumerable: true,
|
|
13518
|
+
configurable: true,
|
|
13519
|
+
writable: true,
|
|
13520
|
+
value: void 0
|
|
13521
|
+
});
|
|
13058
13522
|
this.blocked = params.blocked;
|
|
13059
13523
|
this.phone_calls_available = params.phone_calls_available;
|
|
13060
13524
|
this.phone_calls_private = params.phone_calls_private;
|
|
@@ -13091,6 +13555,10 @@ export class UserFull_ extends _UserFull_ {
|
|
|
13091
13555
|
this.business_location = params.business_location;
|
|
13092
13556
|
this.business_greeting_message = params.business_greeting_message;
|
|
13093
13557
|
this.business_away_message = params.business_away_message;
|
|
13558
|
+
this.business_intro = params.business_intro;
|
|
13559
|
+
this.birthday = params.birthday;
|
|
13560
|
+
this.personal_channel_id = params.personal_channel_id;
|
|
13561
|
+
this.personal_channel_message = params.personal_channel_message;
|
|
13094
13562
|
}
|
|
13095
13563
|
}
|
|
13096
13564
|
/** A contact of the current user that is registered in the system. */
|
|
@@ -19567,36 +20035,6 @@ export class UpdateAutoSaveSettings_ extends _Update_ {
|
|
|
19567
20035
|
super();
|
|
19568
20036
|
}
|
|
19569
20037
|
}
|
|
19570
|
-
/** 0-N updates of this type may be returned only when invoking [messages.addChatUser](https://core.telegram.org/method/messages.addChatUser), [channels.inviteToChannel](https://core.telegram.org/method/channels.inviteToChannel) or [messages.createChat](https://core.telegram.org/method/messages.createChat): it indicates we couldn't add a user to a chat because of their privacy settings; if required, an [invite link](https://core.telegram.org/api/invites) can be shared with the user, instead. */
|
|
19571
|
-
export class UpdateGroupInvitePrivacyForbidden_ extends _Update_ {
|
|
19572
|
-
get [id]() {
|
|
19573
|
-
return 0xCCF08AD6;
|
|
19574
|
-
}
|
|
19575
|
-
static get [name]() {
|
|
19576
|
-
return "updateGroupInvitePrivacyForbidden";
|
|
19577
|
-
}
|
|
19578
|
-
static get [paramDesc]() {
|
|
19579
|
-
return [
|
|
19580
|
-
["user_id", "bigint", "long"],
|
|
19581
|
-
];
|
|
19582
|
-
}
|
|
19583
|
-
get [params]() {
|
|
19584
|
-
return [
|
|
19585
|
-
[this.user_id, "bigint", "long"],
|
|
19586
|
-
];
|
|
19587
|
-
}
|
|
19588
|
-
constructor(params) {
|
|
19589
|
-
super();
|
|
19590
|
-
/** ID of the user we couldn't add. */
|
|
19591
|
-
Object.defineProperty(this, "user_id", {
|
|
19592
|
-
enumerable: true,
|
|
19593
|
-
configurable: true,
|
|
19594
|
-
writable: true,
|
|
19595
|
-
value: void 0
|
|
19596
|
-
});
|
|
19597
|
-
this.user_id = params.user_id;
|
|
19598
|
-
}
|
|
19599
|
-
}
|
|
19600
20038
|
/** A new story was posted. */
|
|
19601
20039
|
export class UpdateStory_ extends _Update_ {
|
|
19602
20040
|
get [id]() {
|
|
@@ -20368,6 +20806,212 @@ export class UpdateDeleteQuickReplyMessages_ extends _Update_ {
|
|
|
20368
20806
|
this.messages = params.messages;
|
|
20369
20807
|
}
|
|
20370
20808
|
}
|
|
20809
|
+
export class UpdateBotBusinessConnect_ extends _Update_ {
|
|
20810
|
+
get [id]() {
|
|
20811
|
+
return 0x8AE5C97A;
|
|
20812
|
+
}
|
|
20813
|
+
static get [name]() {
|
|
20814
|
+
return "updateBotBusinessConnect";
|
|
20815
|
+
}
|
|
20816
|
+
static get [paramDesc]() {
|
|
20817
|
+
return [
|
|
20818
|
+
["connection", _BotBusinessConnection_, "BotBusinessConnection"],
|
|
20819
|
+
["qts", "number", "int"],
|
|
20820
|
+
];
|
|
20821
|
+
}
|
|
20822
|
+
get [params]() {
|
|
20823
|
+
return [
|
|
20824
|
+
[this.connection, _BotBusinessConnection_, "BotBusinessConnection"],
|
|
20825
|
+
[this.qts, "number", "int"],
|
|
20826
|
+
];
|
|
20827
|
+
}
|
|
20828
|
+
constructor(params) {
|
|
20829
|
+
super();
|
|
20830
|
+
Object.defineProperty(this, "connection", {
|
|
20831
|
+
enumerable: true,
|
|
20832
|
+
configurable: true,
|
|
20833
|
+
writable: true,
|
|
20834
|
+
value: void 0
|
|
20835
|
+
});
|
|
20836
|
+
Object.defineProperty(this, "qts", {
|
|
20837
|
+
enumerable: true,
|
|
20838
|
+
configurable: true,
|
|
20839
|
+
writable: true,
|
|
20840
|
+
value: void 0
|
|
20841
|
+
});
|
|
20842
|
+
this.connection = params.connection;
|
|
20843
|
+
this.qts = params.qts;
|
|
20844
|
+
}
|
|
20845
|
+
}
|
|
20846
|
+
export class UpdateBotNewBusinessMessage_ extends _Update_ {
|
|
20847
|
+
get [id]() {
|
|
20848
|
+
return 0x9DDB347C;
|
|
20849
|
+
}
|
|
20850
|
+
static get [name]() {
|
|
20851
|
+
return "updateBotNewBusinessMessage";
|
|
20852
|
+
}
|
|
20853
|
+
static get [paramDesc]() {
|
|
20854
|
+
return [
|
|
20855
|
+
["flags", flags, "#"],
|
|
20856
|
+
["connection_id", "string", "string"],
|
|
20857
|
+
["message", _Message_, "Message"],
|
|
20858
|
+
["reply_to_message", _Message_, "flags.0?Message"],
|
|
20859
|
+
["qts", "number", "int"],
|
|
20860
|
+
];
|
|
20861
|
+
}
|
|
20862
|
+
get [params]() {
|
|
20863
|
+
return [
|
|
20864
|
+
["flags", flags, "#"],
|
|
20865
|
+
[this.connection_id, "string", "string"],
|
|
20866
|
+
[this.message, _Message_, "Message"],
|
|
20867
|
+
[this.reply_to_message ?? null, _Message_, "flags.0?Message"],
|
|
20868
|
+
[this.qts, "number", "int"],
|
|
20869
|
+
];
|
|
20870
|
+
}
|
|
20871
|
+
constructor(params) {
|
|
20872
|
+
super();
|
|
20873
|
+
Object.defineProperty(this, "connection_id", {
|
|
20874
|
+
enumerable: true,
|
|
20875
|
+
configurable: true,
|
|
20876
|
+
writable: true,
|
|
20877
|
+
value: void 0
|
|
20878
|
+
});
|
|
20879
|
+
Object.defineProperty(this, "message", {
|
|
20880
|
+
enumerable: true,
|
|
20881
|
+
configurable: true,
|
|
20882
|
+
writable: true,
|
|
20883
|
+
value: void 0
|
|
20884
|
+
});
|
|
20885
|
+
Object.defineProperty(this, "reply_to_message", {
|
|
20886
|
+
enumerable: true,
|
|
20887
|
+
configurable: true,
|
|
20888
|
+
writable: true,
|
|
20889
|
+
value: void 0
|
|
20890
|
+
});
|
|
20891
|
+
Object.defineProperty(this, "qts", {
|
|
20892
|
+
enumerable: true,
|
|
20893
|
+
configurable: true,
|
|
20894
|
+
writable: true,
|
|
20895
|
+
value: void 0
|
|
20896
|
+
});
|
|
20897
|
+
this.connection_id = params.connection_id;
|
|
20898
|
+
this.message = params.message;
|
|
20899
|
+
this.reply_to_message = params.reply_to_message;
|
|
20900
|
+
this.qts = params.qts;
|
|
20901
|
+
}
|
|
20902
|
+
}
|
|
20903
|
+
export class UpdateBotEditBusinessMessage_ extends _Update_ {
|
|
20904
|
+
get [id]() {
|
|
20905
|
+
return 0x07DF587C;
|
|
20906
|
+
}
|
|
20907
|
+
static get [name]() {
|
|
20908
|
+
return "updateBotEditBusinessMessage";
|
|
20909
|
+
}
|
|
20910
|
+
static get [paramDesc]() {
|
|
20911
|
+
return [
|
|
20912
|
+
["flags", flags, "#"],
|
|
20913
|
+
["connection_id", "string", "string"],
|
|
20914
|
+
["message", _Message_, "Message"],
|
|
20915
|
+
["reply_to_message", _Message_, "flags.0?Message"],
|
|
20916
|
+
["qts", "number", "int"],
|
|
20917
|
+
];
|
|
20918
|
+
}
|
|
20919
|
+
get [params]() {
|
|
20920
|
+
return [
|
|
20921
|
+
["flags", flags, "#"],
|
|
20922
|
+
[this.connection_id, "string", "string"],
|
|
20923
|
+
[this.message, _Message_, "Message"],
|
|
20924
|
+
[this.reply_to_message ?? null, _Message_, "flags.0?Message"],
|
|
20925
|
+
[this.qts, "number", "int"],
|
|
20926
|
+
];
|
|
20927
|
+
}
|
|
20928
|
+
constructor(params) {
|
|
20929
|
+
super();
|
|
20930
|
+
Object.defineProperty(this, "connection_id", {
|
|
20931
|
+
enumerable: true,
|
|
20932
|
+
configurable: true,
|
|
20933
|
+
writable: true,
|
|
20934
|
+
value: void 0
|
|
20935
|
+
});
|
|
20936
|
+
Object.defineProperty(this, "message", {
|
|
20937
|
+
enumerable: true,
|
|
20938
|
+
configurable: true,
|
|
20939
|
+
writable: true,
|
|
20940
|
+
value: void 0
|
|
20941
|
+
});
|
|
20942
|
+
Object.defineProperty(this, "reply_to_message", {
|
|
20943
|
+
enumerable: true,
|
|
20944
|
+
configurable: true,
|
|
20945
|
+
writable: true,
|
|
20946
|
+
value: void 0
|
|
20947
|
+
});
|
|
20948
|
+
Object.defineProperty(this, "qts", {
|
|
20949
|
+
enumerable: true,
|
|
20950
|
+
configurable: true,
|
|
20951
|
+
writable: true,
|
|
20952
|
+
value: void 0
|
|
20953
|
+
});
|
|
20954
|
+
this.connection_id = params.connection_id;
|
|
20955
|
+
this.message = params.message;
|
|
20956
|
+
this.reply_to_message = params.reply_to_message;
|
|
20957
|
+
this.qts = params.qts;
|
|
20958
|
+
}
|
|
20959
|
+
}
|
|
20960
|
+
export class UpdateBotDeleteBusinessMessage_ extends _Update_ {
|
|
20961
|
+
get [id]() {
|
|
20962
|
+
return 0xA02A982E;
|
|
20963
|
+
}
|
|
20964
|
+
static get [name]() {
|
|
20965
|
+
return "updateBotDeleteBusinessMessage";
|
|
20966
|
+
}
|
|
20967
|
+
static get [paramDesc]() {
|
|
20968
|
+
return [
|
|
20969
|
+
["connection_id", "string", "string"],
|
|
20970
|
+
["peer", _Peer_, "Peer"],
|
|
20971
|
+
["messages", ["number"], "Vector<int>"],
|
|
20972
|
+
["qts", "number", "int"],
|
|
20973
|
+
];
|
|
20974
|
+
}
|
|
20975
|
+
get [params]() {
|
|
20976
|
+
return [
|
|
20977
|
+
[this.connection_id, "string", "string"],
|
|
20978
|
+
[this.peer, _Peer_, "Peer"],
|
|
20979
|
+
[this.messages, ["number"], "Vector<int>"],
|
|
20980
|
+
[this.qts, "number", "int"],
|
|
20981
|
+
];
|
|
20982
|
+
}
|
|
20983
|
+
constructor(params) {
|
|
20984
|
+
super();
|
|
20985
|
+
Object.defineProperty(this, "connection_id", {
|
|
20986
|
+
enumerable: true,
|
|
20987
|
+
configurable: true,
|
|
20988
|
+
writable: true,
|
|
20989
|
+
value: void 0
|
|
20990
|
+
});
|
|
20991
|
+
Object.defineProperty(this, "peer", {
|
|
20992
|
+
enumerable: true,
|
|
20993
|
+
configurable: true,
|
|
20994
|
+
writable: true,
|
|
20995
|
+
value: void 0
|
|
20996
|
+
});
|
|
20997
|
+
Object.defineProperty(this, "messages", {
|
|
20998
|
+
enumerable: true,
|
|
20999
|
+
configurable: true,
|
|
21000
|
+
writable: true,
|
|
21001
|
+
value: void 0
|
|
21002
|
+
});
|
|
21003
|
+
Object.defineProperty(this, "qts", {
|
|
21004
|
+
enumerable: true,
|
|
21005
|
+
configurable: true,
|
|
21006
|
+
writable: true,
|
|
21007
|
+
value: void 0
|
|
21008
|
+
});
|
|
21009
|
+
this.connection_id = params.connection_id;
|
|
21010
|
+
this.peer = params.peer;
|
|
21011
|
+
this.messages = params.messages;
|
|
21012
|
+
this.qts = params.qts;
|
|
21013
|
+
}
|
|
21014
|
+
}
|
|
20371
21015
|
/** Updates state. */
|
|
20372
21016
|
export class updates_State_ extends _updates_State_ {
|
|
20373
21017
|
get [id]() {
|
|
@@ -24372,6 +25016,23 @@ export class InputPrivacyKeyAbout_ extends _InputPrivacyKey_ {
|
|
|
24372
25016
|
super();
|
|
24373
25017
|
}
|
|
24374
25018
|
}
|
|
25019
|
+
export class InputPrivacyKeyBirthday_ extends _InputPrivacyKey_ {
|
|
25020
|
+
get [id]() {
|
|
25021
|
+
return 0xD65A11CC;
|
|
25022
|
+
}
|
|
25023
|
+
static get [name]() {
|
|
25024
|
+
return "inputPrivacyKeyBirthday";
|
|
25025
|
+
}
|
|
25026
|
+
static get [paramDesc]() {
|
|
25027
|
+
return [];
|
|
25028
|
+
}
|
|
25029
|
+
get [params]() {
|
|
25030
|
+
return [];
|
|
25031
|
+
}
|
|
25032
|
+
constructor() {
|
|
25033
|
+
super();
|
|
25034
|
+
}
|
|
25035
|
+
}
|
|
24375
25036
|
/** Whether we can see the last online timestamp of this user */
|
|
24376
25037
|
export class PrivacyKeyStatusTimestamp_ extends _PrivacyKey_ {
|
|
24377
25038
|
get [id]() {
|
|
@@ -24552,6 +25213,23 @@ export class PrivacyKeyAbout_ extends _PrivacyKey_ {
|
|
|
24552
25213
|
super();
|
|
24553
25214
|
}
|
|
24554
25215
|
}
|
|
25216
|
+
export class PrivacyKeyBirthday_ extends _PrivacyKey_ {
|
|
25217
|
+
get [id]() {
|
|
25218
|
+
return 0x2000A518;
|
|
25219
|
+
}
|
|
25220
|
+
static get [name]() {
|
|
25221
|
+
return "privacyKeyBirthday";
|
|
25222
|
+
}
|
|
25223
|
+
static get [paramDesc]() {
|
|
25224
|
+
return [];
|
|
25225
|
+
}
|
|
25226
|
+
get [params]() {
|
|
25227
|
+
return [];
|
|
25228
|
+
}
|
|
25229
|
+
constructor() {
|
|
25230
|
+
super();
|
|
25231
|
+
}
|
|
25232
|
+
}
|
|
24555
25233
|
/** Allow only contacts */
|
|
24556
25234
|
export class InputPrivacyValueAllowContacts_ extends _InputPrivacyRule_ {
|
|
24557
25235
|
get [id]() {
|
|
@@ -24762,6 +25440,23 @@ export class InputPrivacyValueAllowCloseFriends_ extends _InputPrivacyRule_ {
|
|
|
24762
25440
|
super();
|
|
24763
25441
|
}
|
|
24764
25442
|
}
|
|
25443
|
+
export class InputPrivacyValueAllowPremium_ extends _InputPrivacyRule_ {
|
|
25444
|
+
get [id]() {
|
|
25445
|
+
return 0x77CDC9F1;
|
|
25446
|
+
}
|
|
25447
|
+
static get [name]() {
|
|
25448
|
+
return "inputPrivacyValueAllowPremium";
|
|
25449
|
+
}
|
|
25450
|
+
static get [paramDesc]() {
|
|
25451
|
+
return [];
|
|
25452
|
+
}
|
|
25453
|
+
get [params]() {
|
|
25454
|
+
return [];
|
|
25455
|
+
}
|
|
25456
|
+
constructor() {
|
|
25457
|
+
super();
|
|
25458
|
+
}
|
|
25459
|
+
}
|
|
24765
25460
|
/** Allow all contacts */
|
|
24766
25461
|
export class PrivacyValueAllowContacts_ extends _PrivacyRule_ {
|
|
24767
25462
|
get [id]() {
|
|
@@ -24972,6 +25667,23 @@ export class PrivacyValueAllowCloseFriends_ extends _PrivacyRule_ {
|
|
|
24972
25667
|
super();
|
|
24973
25668
|
}
|
|
24974
25669
|
}
|
|
25670
|
+
export class PrivacyValueAllowPremium_ extends _PrivacyRule_ {
|
|
25671
|
+
get [id]() {
|
|
25672
|
+
return 0xECE9814B;
|
|
25673
|
+
}
|
|
25674
|
+
static get [name]() {
|
|
25675
|
+
return "privacyValueAllowPremium";
|
|
25676
|
+
}
|
|
25677
|
+
static get [paramDesc]() {
|
|
25678
|
+
return [];
|
|
25679
|
+
}
|
|
25680
|
+
get [params]() {
|
|
25681
|
+
return [];
|
|
25682
|
+
}
|
|
25683
|
+
constructor() {
|
|
25684
|
+
super();
|
|
25685
|
+
}
|
|
25686
|
+
}
|
|
24975
25687
|
/** Privacy rules */
|
|
24976
25688
|
export class account_PrivacyRules_ extends _account_PrivacyRules_ {
|
|
24977
25689
|
get [id]() {
|
|
@@ -27210,11 +27922,10 @@ export class StickerSet_ extends _StickerSet_ {
|
|
|
27210
27922
|
["archived", "true", "flags.1?true"],
|
|
27211
27923
|
["official", "true", "flags.2?true"],
|
|
27212
27924
|
["masks", "true", "flags.3?true"],
|
|
27213
|
-
["animated", "true", "flags.5?true"],
|
|
27214
|
-
["videos", "true", "flags.6?true"],
|
|
27215
27925
|
["emojis", "true", "flags.7?true"],
|
|
27216
27926
|
["text_color", "true", "flags.9?true"],
|
|
27217
27927
|
["channel_emoji_status", "true", "flags.10?true"],
|
|
27928
|
+
["creator", "true", "flags.11?true"],
|
|
27218
27929
|
["installed_date", "number", "flags.0?int"],
|
|
27219
27930
|
["id", "bigint", "long"],
|
|
27220
27931
|
["access_hash", "bigint", "long"],
|
|
@@ -27234,11 +27945,10 @@ export class StickerSet_ extends _StickerSet_ {
|
|
|
27234
27945
|
[this.archived ?? null, "true", "flags.1?true"],
|
|
27235
27946
|
[this.official ?? null, "true", "flags.2?true"],
|
|
27236
27947
|
[this.masks ?? null, "true", "flags.3?true"],
|
|
27237
|
-
[this.animated ?? null, "true", "flags.5?true"],
|
|
27238
|
-
[this.videos ?? null, "true", "flags.6?true"],
|
|
27239
27948
|
[this.emojis ?? null, "true", "flags.7?true"],
|
|
27240
27949
|
[this.text_color ?? null, "true", "flags.9?true"],
|
|
27241
27950
|
[this.channel_emoji_status ?? null, "true", "flags.10?true"],
|
|
27951
|
+
[this.creator ?? null, "true", "flags.11?true"],
|
|
27242
27952
|
[this.installed_date ?? null, "number", "flags.0?int"],
|
|
27243
27953
|
[this.id, "bigint", "long"],
|
|
27244
27954
|
[this.access_hash, "bigint", "long"],
|
|
@@ -27275,20 +27985,6 @@ export class StickerSet_ extends _StickerSet_ {
|
|
|
27275
27985
|
writable: true,
|
|
27276
27986
|
value: void 0
|
|
27277
27987
|
});
|
|
27278
|
-
/** Is this an animated stickerpack */
|
|
27279
|
-
Object.defineProperty(this, "animated", {
|
|
27280
|
-
enumerable: true,
|
|
27281
|
-
configurable: true,
|
|
27282
|
-
writable: true,
|
|
27283
|
-
value: void 0
|
|
27284
|
-
});
|
|
27285
|
-
/** Is this a video stickerpack */
|
|
27286
|
-
Object.defineProperty(this, "videos", {
|
|
27287
|
-
enumerable: true,
|
|
27288
|
-
configurable: true,
|
|
27289
|
-
writable: true,
|
|
27290
|
-
value: void 0
|
|
27291
|
-
});
|
|
27292
27988
|
/** This is a custom emoji stickerset */
|
|
27293
27989
|
Object.defineProperty(this, "emojis", {
|
|
27294
27990
|
enumerable: true,
|
|
@@ -27310,6 +28006,12 @@ export class StickerSet_ extends _StickerSet_ {
|
|
|
27310
28006
|
writable: true,
|
|
27311
28007
|
value: void 0
|
|
27312
28008
|
});
|
|
28009
|
+
Object.defineProperty(this, "creator", {
|
|
28010
|
+
enumerable: true,
|
|
28011
|
+
configurable: true,
|
|
28012
|
+
writable: true,
|
|
28013
|
+
value: void 0
|
|
28014
|
+
});
|
|
27313
28015
|
/** When was this stickerset installed */
|
|
27314
28016
|
Object.defineProperty(this, "installed_date", {
|
|
27315
28017
|
enumerable: true,
|
|
@@ -27390,11 +28092,10 @@ export class StickerSet_ extends _StickerSet_ {
|
|
|
27390
28092
|
this.archived = params.archived;
|
|
27391
28093
|
this.official = params.official;
|
|
27392
28094
|
this.masks = params.masks;
|
|
27393
|
-
this.animated = params.animated;
|
|
27394
|
-
this.videos = params.videos;
|
|
27395
28095
|
this.emojis = params.emojis;
|
|
27396
28096
|
this.text_color = params.text_color;
|
|
27397
28097
|
this.channel_emoji_status = params.channel_emoji_status;
|
|
28098
|
+
this.creator = params.creator;
|
|
27398
28099
|
this.installed_date = params.installed_date;
|
|
27399
28100
|
this.id = params.id;
|
|
27400
28101
|
this.access_hash = params.access_hash;
|
|
@@ -28312,6 +29013,90 @@ export class KeyboardButtonRequestPeer_ extends _KeyboardButton_ {
|
|
|
28312
29013
|
this.max_quantity = params.max_quantity;
|
|
28313
29014
|
}
|
|
28314
29015
|
}
|
|
29016
|
+
export class InputKeyboardButtonRequestPeer_ extends _KeyboardButton_ {
|
|
29017
|
+
get [id]() {
|
|
29018
|
+
return 0xC9662D05;
|
|
29019
|
+
}
|
|
29020
|
+
static get [name]() {
|
|
29021
|
+
return "inputKeyboardButtonRequestPeer";
|
|
29022
|
+
}
|
|
29023
|
+
static get [paramDesc]() {
|
|
29024
|
+
return [
|
|
29025
|
+
["flags", flags, "#"],
|
|
29026
|
+
["name_requested", "true", "flags.0?true"],
|
|
29027
|
+
["username_requested", "true", "flags.1?true"],
|
|
29028
|
+
["photo_requested", "true", "flags.2?true"],
|
|
29029
|
+
["text", "string", "string"],
|
|
29030
|
+
["button_id", "number", "int"],
|
|
29031
|
+
["peer_type", _RequestPeerType_, "RequestPeerType"],
|
|
29032
|
+
["max_quantity", "number", "int"],
|
|
29033
|
+
];
|
|
29034
|
+
}
|
|
29035
|
+
get [params]() {
|
|
29036
|
+
return [
|
|
29037
|
+
["flags", flags, "#"],
|
|
29038
|
+
[this.name_requested ?? null, "true", "flags.0?true"],
|
|
29039
|
+
[this.username_requested ?? null, "true", "flags.1?true"],
|
|
29040
|
+
[this.photo_requested ?? null, "true", "flags.2?true"],
|
|
29041
|
+
[this.text, "string", "string"],
|
|
29042
|
+
[this.button_id, "number", "int"],
|
|
29043
|
+
[this.peer_type, _RequestPeerType_, "RequestPeerType"],
|
|
29044
|
+
[this.max_quantity, "number", "int"],
|
|
29045
|
+
];
|
|
29046
|
+
}
|
|
29047
|
+
constructor(params) {
|
|
29048
|
+
super();
|
|
29049
|
+
Object.defineProperty(this, "name_requested", {
|
|
29050
|
+
enumerable: true,
|
|
29051
|
+
configurable: true,
|
|
29052
|
+
writable: true,
|
|
29053
|
+
value: void 0
|
|
29054
|
+
});
|
|
29055
|
+
Object.defineProperty(this, "username_requested", {
|
|
29056
|
+
enumerable: true,
|
|
29057
|
+
configurable: true,
|
|
29058
|
+
writable: true,
|
|
29059
|
+
value: void 0
|
|
29060
|
+
});
|
|
29061
|
+
Object.defineProperty(this, "photo_requested", {
|
|
29062
|
+
enumerable: true,
|
|
29063
|
+
configurable: true,
|
|
29064
|
+
writable: true,
|
|
29065
|
+
value: void 0
|
|
29066
|
+
});
|
|
29067
|
+
Object.defineProperty(this, "text", {
|
|
29068
|
+
enumerable: true,
|
|
29069
|
+
configurable: true,
|
|
29070
|
+
writable: true,
|
|
29071
|
+
value: void 0
|
|
29072
|
+
});
|
|
29073
|
+
Object.defineProperty(this, "button_id", {
|
|
29074
|
+
enumerable: true,
|
|
29075
|
+
configurable: true,
|
|
29076
|
+
writable: true,
|
|
29077
|
+
value: void 0
|
|
29078
|
+
});
|
|
29079
|
+
Object.defineProperty(this, "peer_type", {
|
|
29080
|
+
enumerable: true,
|
|
29081
|
+
configurable: true,
|
|
29082
|
+
writable: true,
|
|
29083
|
+
value: void 0
|
|
29084
|
+
});
|
|
29085
|
+
Object.defineProperty(this, "max_quantity", {
|
|
29086
|
+
enumerable: true,
|
|
29087
|
+
configurable: true,
|
|
29088
|
+
writable: true,
|
|
29089
|
+
value: void 0
|
|
29090
|
+
});
|
|
29091
|
+
this.name_requested = params.name_requested;
|
|
29092
|
+
this.username_requested = params.username_requested;
|
|
29093
|
+
this.photo_requested = params.photo_requested;
|
|
29094
|
+
this.text = params.text;
|
|
29095
|
+
this.button_id = params.button_id;
|
|
29096
|
+
this.peer_type = params.peer_type;
|
|
29097
|
+
this.max_quantity = params.max_quantity;
|
|
29098
|
+
}
|
|
29099
|
+
}
|
|
28315
29100
|
/** Inline keyboard row */
|
|
28316
29101
|
export class KeyboardButtonRow_ extends _KeyboardButtonRow_ {
|
|
28317
29102
|
get [id]() {
|
|
@@ -38690,7 +39475,7 @@ export class PhoneCallAccepted_ extends _PhoneCall_ {
|
|
|
38690
39475
|
/** Phone call */
|
|
38691
39476
|
export class PhoneCall_ extends _PhoneCall_ {
|
|
38692
39477
|
get [id]() {
|
|
38693
|
-
return
|
|
39478
|
+
return 0x30535AF5;
|
|
38694
39479
|
}
|
|
38695
39480
|
static get [name]() {
|
|
38696
39481
|
return "phoneCall";
|
|
@@ -38710,6 +39495,7 @@ export class PhoneCall_ extends _PhoneCall_ {
|
|
|
38710
39495
|
["protocol", _PhoneCallProtocol_, "PhoneCallProtocol"],
|
|
38711
39496
|
["connections", [_PhoneConnection_], "Vector<PhoneConnection>"],
|
|
38712
39497
|
["start_date", "number", "int"],
|
|
39498
|
+
["custom_parameters", _DataJSON_, "flags.7?DataJSON"],
|
|
38713
39499
|
];
|
|
38714
39500
|
}
|
|
38715
39501
|
get [params]() {
|
|
@@ -38727,6 +39513,7 @@ export class PhoneCall_ extends _PhoneCall_ {
|
|
|
38727
39513
|
[this.protocol, _PhoneCallProtocol_, "PhoneCallProtocol"],
|
|
38728
39514
|
[this.connections, [_PhoneConnection_], "Vector<PhoneConnection>"],
|
|
38729
39515
|
[this.start_date, "number", "int"],
|
|
39516
|
+
[this.custom_parameters ?? null, _DataJSON_, "flags.7?DataJSON"],
|
|
38730
39517
|
];
|
|
38731
39518
|
}
|
|
38732
39519
|
constructor(params) {
|
|
@@ -38815,6 +39602,12 @@ export class PhoneCall_ extends _PhoneCall_ {
|
|
|
38815
39602
|
writable: true,
|
|
38816
39603
|
value: void 0
|
|
38817
39604
|
});
|
|
39605
|
+
Object.defineProperty(this, "custom_parameters", {
|
|
39606
|
+
enumerable: true,
|
|
39607
|
+
configurable: true,
|
|
39608
|
+
writable: true,
|
|
39609
|
+
value: void 0
|
|
39610
|
+
});
|
|
38818
39611
|
this.p2p_allowed = params.p2p_allowed;
|
|
38819
39612
|
this.video = params.video;
|
|
38820
39613
|
this.id = params.id;
|
|
@@ -38827,6 +39620,7 @@ export class PhoneCall_ extends _PhoneCall_ {
|
|
|
38827
39620
|
this.protocol = params.protocol;
|
|
38828
39621
|
this.connections = params.connections;
|
|
38829
39622
|
this.start_date = params.start_date;
|
|
39623
|
+
this.custom_parameters = params.custom_parameters;
|
|
38830
39624
|
}
|
|
38831
39625
|
}
|
|
38832
39626
|
/** Indicates a discarded phone call */
|
|
@@ -52559,6 +53353,7 @@ export class SponsoredMessage_ extends _SponsoredMessage_ {
|
|
|
52559
53353
|
["flags", flags, "#"],
|
|
52560
53354
|
["recommended", "true", "flags.5?true"],
|
|
52561
53355
|
["show_peer_photo", "true", "flags.6?true"],
|
|
53356
|
+
["can_report", "true", "flags.12?true"],
|
|
52562
53357
|
["random_id", Uint8Array, "bytes"],
|
|
52563
53358
|
["from_id", _Peer_, "flags.3?Peer"],
|
|
52564
53359
|
["chat_invite", _ChatInvite_, "flags.4?ChatInvite"],
|
|
@@ -52579,6 +53374,7 @@ export class SponsoredMessage_ extends _SponsoredMessage_ {
|
|
|
52579
53374
|
["flags", flags, "#"],
|
|
52580
53375
|
[this.recommended ?? null, "true", "flags.5?true"],
|
|
52581
53376
|
[this.show_peer_photo ?? null, "true", "flags.6?true"],
|
|
53377
|
+
[this.can_report ?? null, "true", "flags.12?true"],
|
|
52582
53378
|
[this.random_id, Uint8Array, "bytes"],
|
|
52583
53379
|
[this.from_id ?? null, _Peer_, "flags.3?Peer"],
|
|
52584
53380
|
[this.chat_invite ?? null, _ChatInvite_, "flags.4?ChatInvite"],
|
|
@@ -52610,6 +53406,12 @@ export class SponsoredMessage_ extends _SponsoredMessage_ {
|
|
|
52610
53406
|
writable: true,
|
|
52611
53407
|
value: void 0
|
|
52612
53408
|
});
|
|
53409
|
+
Object.defineProperty(this, "can_report", {
|
|
53410
|
+
enumerable: true,
|
|
53411
|
+
configurable: true,
|
|
53412
|
+
writable: true,
|
|
53413
|
+
value: void 0
|
|
53414
|
+
});
|
|
52613
53415
|
/** Message ID */
|
|
52614
53416
|
Object.defineProperty(this, "random_id", {
|
|
52615
53417
|
enumerable: true,
|
|
@@ -52703,6 +53505,7 @@ export class SponsoredMessage_ extends _SponsoredMessage_ {
|
|
|
52703
53505
|
});
|
|
52704
53506
|
this.recommended = params.recommended;
|
|
52705
53507
|
this.show_peer_photo = params.show_peer_photo;
|
|
53508
|
+
this.can_report = params.can_report;
|
|
52706
53509
|
this.random_id = params.random_id;
|
|
52707
53510
|
this.from_id = params.from_id;
|
|
52708
53511
|
this.chat_invite = params.chat_invite;
|
|
@@ -63005,7 +63808,7 @@ export class messages_QuickRepliesNotModified_ extends _messages_QuickReplies_ {
|
|
|
63005
63808
|
}
|
|
63006
63809
|
export class ConnectedBot_ extends _ConnectedBot_ {
|
|
63007
63810
|
get [id]() {
|
|
63008
|
-
return
|
|
63811
|
+
return 0xBD068601;
|
|
63009
63812
|
}
|
|
63010
63813
|
static get [name]() {
|
|
63011
63814
|
return "connectedBot";
|
|
@@ -63015,7 +63818,7 @@ export class ConnectedBot_ extends _ConnectedBot_ {
|
|
|
63015
63818
|
["flags", flags, "#"],
|
|
63016
63819
|
["can_reply", "true", "flags.0?true"],
|
|
63017
63820
|
["bot_id", "bigint", "long"],
|
|
63018
|
-
["recipients",
|
|
63821
|
+
["recipients", _BusinessBotRecipients_, "BusinessBotRecipients"],
|
|
63019
63822
|
];
|
|
63020
63823
|
}
|
|
63021
63824
|
get [params]() {
|
|
@@ -63023,7 +63826,7 @@ export class ConnectedBot_ extends _ConnectedBot_ {
|
|
|
63023
63826
|
["flags", flags, "#"],
|
|
63024
63827
|
[this.can_reply ?? null, "true", "flags.0?true"],
|
|
63025
63828
|
[this.bot_id, "bigint", "long"],
|
|
63026
|
-
[this.recipients,
|
|
63829
|
+
[this.recipients, _BusinessBotRecipients_, "BusinessBotRecipients"],
|
|
63027
63830
|
];
|
|
63028
63831
|
}
|
|
63029
63832
|
constructor(params) {
|
|
@@ -63127,361 +63930,1894 @@ export class messages_DialogFilters_ extends _messages_DialogFilters_ {
|
|
|
63127
63930
|
this.filters = params.filters;
|
|
63128
63931
|
}
|
|
63129
63932
|
}
|
|
63130
|
-
export
|
|
63131
|
-
|
|
63132
|
-
|
|
63133
|
-
|
|
63134
|
-
|
|
63135
|
-
|
|
63136
|
-
|
|
63137
|
-
|
|
63138
|
-
|
|
63139
|
-
|
|
63140
|
-
|
|
63141
|
-
|
|
63142
|
-
|
|
63143
|
-
|
|
63144
|
-
|
|
63145
|
-
|
|
63146
|
-
|
|
63147
|
-
|
|
63148
|
-
|
|
63149
|
-
|
|
63150
|
-
|
|
63151
|
-
|
|
63152
|
-
|
|
63153
|
-
|
|
63154
|
-
|
|
63155
|
-
|
|
63156
|
-
|
|
63157
|
-
|
|
63158
|
-
|
|
63159
|
-
|
|
63160
|
-
|
|
63161
|
-
|
|
63162
|
-
|
|
63163
|
-
|
|
63164
|
-
|
|
63165
|
-
|
|
63166
|
-
|
|
63167
|
-
|
|
63168
|
-
|
|
63169
|
-
|
|
63170
|
-
|
|
63171
|
-
|
|
63172
|
-
|
|
63173
|
-
|
|
63174
|
-
|
|
63175
|
-
|
|
63176
|
-
|
|
63177
|
-
|
|
63178
|
-
|
|
63179
|
-
|
|
63180
|
-
|
|
63181
|
-
|
|
63182
|
-
|
|
63183
|
-
|
|
63184
|
-
|
|
63185
|
-
|
|
63186
|
-
|
|
63187
|
-
|
|
63188
|
-
|
|
63189
|
-
|
|
63190
|
-
|
|
63191
|
-
|
|
63192
|
-
|
|
63193
|
-
|
|
63194
|
-
|
|
63195
|
-
|
|
63196
|
-
|
|
63197
|
-
|
|
63198
|
-
|
|
63199
|
-
|
|
63200
|
-
|
|
63201
|
-
|
|
63202
|
-
|
|
63203
|
-
|
|
63204
|
-
|
|
63205
|
-
|
|
63206
|
-
|
|
63207
|
-
|
|
63208
|
-
|
|
63209
|
-
|
|
63210
|
-
|
|
63211
|
-
|
|
63212
|
-
|
|
63213
|
-
|
|
63214
|
-
|
|
63215
|
-
|
|
63216
|
-
|
|
63217
|
-
|
|
63218
|
-
|
|
63219
|
-
|
|
63220
|
-
|
|
63221
|
-
|
|
63222
|
-
|
|
63223
|
-
|
|
63224
|
-
|
|
63225
|
-
|
|
63226
|
-
|
|
63227
|
-
|
|
63228
|
-
|
|
63229
|
-
|
|
63230
|
-
|
|
63231
|
-
|
|
63232
|
-
|
|
63233
|
-
|
|
63234
|
-
|
|
63235
|
-
|
|
63236
|
-
|
|
63237
|
-
|
|
63238
|
-
|
|
63239
|
-
|
|
63240
|
-
|
|
63241
|
-
|
|
63242
|
-
|
|
63243
|
-
|
|
63244
|
-
|
|
63245
|
-
|
|
63246
|
-
|
|
63247
|
-
|
|
63248
|
-
|
|
63249
|
-
|
|
63250
|
-
|
|
63251
|
-
|
|
63252
|
-
|
|
63253
|
-
|
|
63254
|
-
|
|
63255
|
-
|
|
63256
|
-
|
|
63257
|
-
|
|
63258
|
-
|
|
63259
|
-
|
|
63260
|
-
|
|
63261
|
-
|
|
63262
|
-
|
|
63263
|
-
|
|
63264
|
-
|
|
63265
|
-
|
|
63266
|
-
|
|
63267
|
-
|
|
63268
|
-
|
|
63269
|
-
|
|
63270
|
-
|
|
63271
|
-
|
|
63272
|
-
|
|
63273
|
-
|
|
63274
|
-
|
|
63275
|
-
|
|
63276
|
-
|
|
63277
|
-
|
|
63278
|
-
|
|
63279
|
-
|
|
63280
|
-
|
|
63281
|
-
|
|
63282
|
-
|
|
63283
|
-
|
|
63284
|
-
|
|
63285
|
-
|
|
63286
|
-
|
|
63287
|
-
|
|
63288
|
-
|
|
63289
|
-
|
|
63290
|
-
|
|
63291
|
-
|
|
63292
|
-
|
|
63293
|
-
|
|
63294
|
-
|
|
63295
|
-
|
|
63296
|
-
|
|
63297
|
-
|
|
63298
|
-
|
|
63299
|
-
|
|
63300
|
-
|
|
63301
|
-
|
|
63302
|
-
|
|
63303
|
-
|
|
63304
|
-
|
|
63305
|
-
|
|
63306
|
-
|
|
63307
|
-
|
|
63308
|
-
|
|
63309
|
-
|
|
63310
|
-
|
|
63311
|
-
|
|
63312
|
-
|
|
63313
|
-
|
|
63314
|
-
|
|
63315
|
-
|
|
63316
|
-
|
|
63317
|
-
|
|
63318
|
-
|
|
63319
|
-
|
|
63320
|
-
|
|
63321
|
-
|
|
63322
|
-
|
|
63323
|
-
|
|
63324
|
-
|
|
63325
|
-
|
|
63326
|
-
|
|
63327
|
-
|
|
63328
|
-
|
|
63329
|
-
|
|
63330
|
-
|
|
63331
|
-
|
|
63332
|
-
|
|
63333
|
-
|
|
63334
|
-
|
|
63335
|
-
|
|
63336
|
-
|
|
63337
|
-
|
|
63338
|
-
|
|
63339
|
-
|
|
63340
|
-
|
|
63341
|
-
|
|
63342
|
-
|
|
63343
|
-
|
|
63344
|
-
|
|
63345
|
-
|
|
63346
|
-
|
|
63347
|
-
|
|
63348
|
-
|
|
63349
|
-
|
|
63350
|
-
|
|
63351
|
-
|
|
63352
|
-
|
|
63353
|
-
|
|
63354
|
-
|
|
63355
|
-
|
|
63356
|
-
|
|
63357
|
-
|
|
63358
|
-
|
|
63359
|
-
|
|
63360
|
-
|
|
63361
|
-
|
|
63362
|
-
|
|
63363
|
-
|
|
63364
|
-
|
|
63365
|
-
|
|
63366
|
-
|
|
63367
|
-
|
|
63368
|
-
|
|
63369
|
-
|
|
63370
|
-
|
|
63371
|
-
|
|
63372
|
-
|
|
63373
|
-
|
|
63374
|
-
|
|
63375
|
-
|
|
63376
|
-
|
|
63377
|
-
|
|
63378
|
-
|
|
63379
|
-
|
|
63380
|
-
|
|
63381
|
-
|
|
63382
|
-
|
|
63383
|
-
|
|
63384
|
-
|
|
63385
|
-
|
|
63386
|
-
|
|
63387
|
-
|
|
63388
|
-
|
|
63389
|
-
|
|
63390
|
-
|
|
63391
|
-
|
|
63392
|
-
|
|
63393
|
-
|
|
63394
|
-
|
|
63395
|
-
|
|
63396
|
-
|
|
63397
|
-
|
|
63398
|
-
|
|
63399
|
-
|
|
63400
|
-
|
|
63401
|
-
|
|
63402
|
-
|
|
63403
|
-
|
|
63404
|
-
|
|
63405
|
-
|
|
63406
|
-
|
|
63407
|
-
|
|
63408
|
-
|
|
63409
|
-
|
|
63410
|
-
|
|
63411
|
-
|
|
63412
|
-
|
|
63413
|
-
|
|
63414
|
-
|
|
63415
|
-
|
|
63416
|
-
|
|
63417
|
-
|
|
63418
|
-
|
|
63419
|
-
|
|
63420
|
-
|
|
63421
|
-
|
|
63422
|
-
|
|
63423
|
-
|
|
63424
|
-
|
|
63425
|
-
|
|
63426
|
-
|
|
63427
|
-
|
|
63428
|
-
|
|
63429
|
-
|
|
63430
|
-
|
|
63431
|
-
|
|
63432
|
-
|
|
63433
|
-
|
|
63434
|
-
|
|
63435
|
-
|
|
63436
|
-
|
|
63437
|
-
|
|
63438
|
-
|
|
63439
|
-
|
|
63440
|
-
|
|
63441
|
-
|
|
63442
|
-
|
|
63443
|
-
|
|
63444
|
-
|
|
63445
|
-
|
|
63446
|
-
|
|
63447
|
-
|
|
63448
|
-
|
|
63449
|
-
|
|
63450
|
-
|
|
63451
|
-
|
|
63452
|
-
|
|
63453
|
-
|
|
63454
|
-
|
|
63455
|
-
|
|
63456
|
-
|
|
63457
|
-
|
|
63458
|
-
|
|
63459
|
-
|
|
63460
|
-
|
|
63461
|
-
|
|
63462
|
-
|
|
63463
|
-
|
|
63464
|
-
|
|
63465
|
-
|
|
63466
|
-
|
|
63467
|
-
|
|
63468
|
-
|
|
63469
|
-
|
|
63470
|
-
|
|
63471
|
-
|
|
63472
|
-
|
|
63473
|
-
|
|
63474
|
-
|
|
63475
|
-
|
|
63476
|
-
|
|
63477
|
-
|
|
63478
|
-
|
|
63479
|
-
|
|
63480
|
-
|
|
63481
|
-
|
|
63482
|
-
|
|
63483
|
-
|
|
63484
|
-
|
|
63933
|
+
export class Birthday_ extends _Birthday_ {
|
|
63934
|
+
get [id]() {
|
|
63935
|
+
return 0x6C8E1E06;
|
|
63936
|
+
}
|
|
63937
|
+
static get [name]() {
|
|
63938
|
+
return "birthday";
|
|
63939
|
+
}
|
|
63940
|
+
static get [paramDesc]() {
|
|
63941
|
+
return [
|
|
63942
|
+
["flags", flags, "#"],
|
|
63943
|
+
["day", "number", "int"],
|
|
63944
|
+
["month", "number", "int"],
|
|
63945
|
+
["year", "number", "flags.0?int"],
|
|
63946
|
+
];
|
|
63947
|
+
}
|
|
63948
|
+
get [params]() {
|
|
63949
|
+
return [
|
|
63950
|
+
["flags", flags, "#"],
|
|
63951
|
+
[this.day, "number", "int"],
|
|
63952
|
+
[this.month, "number", "int"],
|
|
63953
|
+
[this.year ?? null, "number", "flags.0?int"],
|
|
63954
|
+
];
|
|
63955
|
+
}
|
|
63956
|
+
constructor(params) {
|
|
63957
|
+
super();
|
|
63958
|
+
Object.defineProperty(this, "day", {
|
|
63959
|
+
enumerable: true,
|
|
63960
|
+
configurable: true,
|
|
63961
|
+
writable: true,
|
|
63962
|
+
value: void 0
|
|
63963
|
+
});
|
|
63964
|
+
Object.defineProperty(this, "month", {
|
|
63965
|
+
enumerable: true,
|
|
63966
|
+
configurable: true,
|
|
63967
|
+
writable: true,
|
|
63968
|
+
value: void 0
|
|
63969
|
+
});
|
|
63970
|
+
Object.defineProperty(this, "year", {
|
|
63971
|
+
enumerable: true,
|
|
63972
|
+
configurable: true,
|
|
63973
|
+
writable: true,
|
|
63974
|
+
value: void 0
|
|
63975
|
+
});
|
|
63976
|
+
this.day = params.day;
|
|
63977
|
+
this.month = params.month;
|
|
63978
|
+
this.year = params.year;
|
|
63979
|
+
}
|
|
63980
|
+
}
|
|
63981
|
+
export class BotBusinessConnection_ extends _BotBusinessConnection_ {
|
|
63982
|
+
get [id]() {
|
|
63983
|
+
return 0x896433B4;
|
|
63984
|
+
}
|
|
63985
|
+
static get [name]() {
|
|
63986
|
+
return "botBusinessConnection";
|
|
63987
|
+
}
|
|
63988
|
+
static get [paramDesc]() {
|
|
63989
|
+
return [
|
|
63990
|
+
["flags", flags, "#"],
|
|
63991
|
+
["can_reply", "true", "flags.0?true"],
|
|
63992
|
+
["disabled", "true", "flags.1?true"],
|
|
63993
|
+
["connection_id", "string", "string"],
|
|
63994
|
+
["user_id", "bigint", "long"],
|
|
63995
|
+
["dc_id", "number", "int"],
|
|
63996
|
+
["date", "number", "int"],
|
|
63997
|
+
];
|
|
63998
|
+
}
|
|
63999
|
+
get [params]() {
|
|
64000
|
+
return [
|
|
64001
|
+
["flags", flags, "#"],
|
|
64002
|
+
[this.can_reply ?? null, "true", "flags.0?true"],
|
|
64003
|
+
[this.disabled ?? null, "true", "flags.1?true"],
|
|
64004
|
+
[this.connection_id, "string", "string"],
|
|
64005
|
+
[this.user_id, "bigint", "long"],
|
|
64006
|
+
[this.dc_id, "number", "int"],
|
|
64007
|
+
[this.date, "number", "int"],
|
|
64008
|
+
];
|
|
64009
|
+
}
|
|
64010
|
+
constructor(params) {
|
|
64011
|
+
super();
|
|
64012
|
+
Object.defineProperty(this, "can_reply", {
|
|
64013
|
+
enumerable: true,
|
|
64014
|
+
configurable: true,
|
|
64015
|
+
writable: true,
|
|
64016
|
+
value: void 0
|
|
64017
|
+
});
|
|
64018
|
+
Object.defineProperty(this, "disabled", {
|
|
64019
|
+
enumerable: true,
|
|
64020
|
+
configurable: true,
|
|
64021
|
+
writable: true,
|
|
64022
|
+
value: void 0
|
|
64023
|
+
});
|
|
64024
|
+
Object.defineProperty(this, "connection_id", {
|
|
64025
|
+
enumerable: true,
|
|
64026
|
+
configurable: true,
|
|
64027
|
+
writable: true,
|
|
64028
|
+
value: void 0
|
|
64029
|
+
});
|
|
64030
|
+
Object.defineProperty(this, "user_id", {
|
|
64031
|
+
enumerable: true,
|
|
64032
|
+
configurable: true,
|
|
64033
|
+
writable: true,
|
|
64034
|
+
value: void 0
|
|
64035
|
+
});
|
|
64036
|
+
Object.defineProperty(this, "dc_id", {
|
|
64037
|
+
enumerable: true,
|
|
64038
|
+
configurable: true,
|
|
64039
|
+
writable: true,
|
|
64040
|
+
value: void 0
|
|
64041
|
+
});
|
|
64042
|
+
Object.defineProperty(this, "date", {
|
|
64043
|
+
enumerable: true,
|
|
64044
|
+
configurable: true,
|
|
64045
|
+
writable: true,
|
|
64046
|
+
value: void 0
|
|
64047
|
+
});
|
|
64048
|
+
this.can_reply = params.can_reply;
|
|
64049
|
+
this.disabled = params.disabled;
|
|
64050
|
+
this.connection_id = params.connection_id;
|
|
64051
|
+
this.user_id = params.user_id;
|
|
64052
|
+
this.dc_id = params.dc_id;
|
|
64053
|
+
this.date = params.date;
|
|
64054
|
+
}
|
|
64055
|
+
}
|
|
64056
|
+
export class InputBusinessIntro_ extends _InputBusinessIntro_ {
|
|
64057
|
+
get [id]() {
|
|
64058
|
+
return 0x09C469CD;
|
|
64059
|
+
}
|
|
64060
|
+
static get [name]() {
|
|
64061
|
+
return "inputBusinessIntro";
|
|
64062
|
+
}
|
|
64063
|
+
static get [paramDesc]() {
|
|
64064
|
+
return [
|
|
64065
|
+
["flags", flags, "#"],
|
|
64066
|
+
["title", "string", "string"],
|
|
64067
|
+
["description", "string", "string"],
|
|
64068
|
+
["sticker", _InputDocument_, "flags.0?InputDocument"],
|
|
64069
|
+
];
|
|
64070
|
+
}
|
|
64071
|
+
get [params]() {
|
|
64072
|
+
return [
|
|
64073
|
+
["flags", flags, "#"],
|
|
64074
|
+
[this.title, "string", "string"],
|
|
64075
|
+
[this.description, "string", "string"],
|
|
64076
|
+
[this.sticker ?? null, _InputDocument_, "flags.0?InputDocument"],
|
|
64077
|
+
];
|
|
64078
|
+
}
|
|
64079
|
+
constructor(params) {
|
|
64080
|
+
super();
|
|
64081
|
+
Object.defineProperty(this, "title", {
|
|
64082
|
+
enumerable: true,
|
|
64083
|
+
configurable: true,
|
|
64084
|
+
writable: true,
|
|
64085
|
+
value: void 0
|
|
64086
|
+
});
|
|
64087
|
+
Object.defineProperty(this, "description", {
|
|
64088
|
+
enumerable: true,
|
|
64089
|
+
configurable: true,
|
|
64090
|
+
writable: true,
|
|
64091
|
+
value: void 0
|
|
64092
|
+
});
|
|
64093
|
+
Object.defineProperty(this, "sticker", {
|
|
64094
|
+
enumerable: true,
|
|
64095
|
+
configurable: true,
|
|
64096
|
+
writable: true,
|
|
64097
|
+
value: void 0
|
|
64098
|
+
});
|
|
64099
|
+
this.title = params.title;
|
|
64100
|
+
this.description = params.description;
|
|
64101
|
+
this.sticker = params.sticker;
|
|
64102
|
+
}
|
|
64103
|
+
}
|
|
64104
|
+
export class BusinessIntro_ extends _BusinessIntro_ {
|
|
64105
|
+
get [id]() {
|
|
64106
|
+
return 0x5A0A066D;
|
|
64107
|
+
}
|
|
64108
|
+
static get [name]() {
|
|
64109
|
+
return "businessIntro";
|
|
64110
|
+
}
|
|
64111
|
+
static get [paramDesc]() {
|
|
64112
|
+
return [
|
|
64113
|
+
["flags", flags, "#"],
|
|
64114
|
+
["title", "string", "string"],
|
|
64115
|
+
["description", "string", "string"],
|
|
64116
|
+
["sticker", _Document_, "flags.0?Document"],
|
|
64117
|
+
];
|
|
64118
|
+
}
|
|
64119
|
+
get [params]() {
|
|
64120
|
+
return [
|
|
64121
|
+
["flags", flags, "#"],
|
|
64122
|
+
[this.title, "string", "string"],
|
|
64123
|
+
[this.description, "string", "string"],
|
|
64124
|
+
[this.sticker ?? null, _Document_, "flags.0?Document"],
|
|
64125
|
+
];
|
|
64126
|
+
}
|
|
64127
|
+
constructor(params) {
|
|
64128
|
+
super();
|
|
64129
|
+
Object.defineProperty(this, "title", {
|
|
64130
|
+
enumerable: true,
|
|
64131
|
+
configurable: true,
|
|
64132
|
+
writable: true,
|
|
64133
|
+
value: void 0
|
|
64134
|
+
});
|
|
64135
|
+
Object.defineProperty(this, "description", {
|
|
64136
|
+
enumerable: true,
|
|
64137
|
+
configurable: true,
|
|
64138
|
+
writable: true,
|
|
64139
|
+
value: void 0
|
|
64140
|
+
});
|
|
64141
|
+
Object.defineProperty(this, "sticker", {
|
|
64142
|
+
enumerable: true,
|
|
64143
|
+
configurable: true,
|
|
64144
|
+
writable: true,
|
|
64145
|
+
value: void 0
|
|
64146
|
+
});
|
|
64147
|
+
this.title = params.title;
|
|
64148
|
+
this.description = params.description;
|
|
64149
|
+
this.sticker = params.sticker;
|
|
64150
|
+
}
|
|
64151
|
+
}
|
|
64152
|
+
export class messages_MyStickers_ extends _messages_MyStickers_ {
|
|
64153
|
+
get [id]() {
|
|
64154
|
+
return 0xFAFF629D;
|
|
64155
|
+
}
|
|
64156
|
+
static get [name]() {
|
|
64157
|
+
return "messages.myStickers";
|
|
64158
|
+
}
|
|
64159
|
+
static get [paramDesc]() {
|
|
64160
|
+
return [
|
|
64161
|
+
["count", "number", "int"],
|
|
64162
|
+
["sets", [_StickerSetCovered_], "Vector<StickerSetCovered>"],
|
|
64163
|
+
];
|
|
64164
|
+
}
|
|
64165
|
+
get [params]() {
|
|
64166
|
+
return [
|
|
64167
|
+
[this.count, "number", "int"],
|
|
64168
|
+
[this.sets, [_StickerSetCovered_], "Vector<StickerSetCovered>"],
|
|
64169
|
+
];
|
|
64170
|
+
}
|
|
64171
|
+
constructor(params) {
|
|
64172
|
+
super();
|
|
64173
|
+
Object.defineProperty(this, "count", {
|
|
64174
|
+
enumerable: true,
|
|
64175
|
+
configurable: true,
|
|
64176
|
+
writable: true,
|
|
64177
|
+
value: void 0
|
|
64178
|
+
});
|
|
64179
|
+
Object.defineProperty(this, "sets", {
|
|
64180
|
+
enumerable: true,
|
|
64181
|
+
configurable: true,
|
|
64182
|
+
writable: true,
|
|
64183
|
+
value: void 0
|
|
64184
|
+
});
|
|
64185
|
+
this.count = params.count;
|
|
64186
|
+
this.sets = params.sets;
|
|
64187
|
+
}
|
|
64188
|
+
}
|
|
64189
|
+
export class InputCollectibleUsername_ extends _InputCollectible_ {
|
|
64190
|
+
get [id]() {
|
|
64191
|
+
return 0xE39460A9;
|
|
64192
|
+
}
|
|
64193
|
+
static get [name]() {
|
|
64194
|
+
return "inputCollectibleUsername";
|
|
64195
|
+
}
|
|
64196
|
+
static get [paramDesc]() {
|
|
64197
|
+
return [
|
|
64198
|
+
["username", "string", "string"],
|
|
64199
|
+
];
|
|
64200
|
+
}
|
|
64201
|
+
get [params]() {
|
|
64202
|
+
return [
|
|
64203
|
+
[this.username, "string", "string"],
|
|
64204
|
+
];
|
|
64205
|
+
}
|
|
64206
|
+
constructor(params) {
|
|
64207
|
+
super();
|
|
64208
|
+
Object.defineProperty(this, "username", {
|
|
64209
|
+
enumerable: true,
|
|
64210
|
+
configurable: true,
|
|
64211
|
+
writable: true,
|
|
64212
|
+
value: void 0
|
|
64213
|
+
});
|
|
64214
|
+
this.username = params.username;
|
|
64215
|
+
}
|
|
64216
|
+
}
|
|
64217
|
+
export class InputCollectiblePhone_ extends _InputCollectible_ {
|
|
64218
|
+
get [id]() {
|
|
64219
|
+
return 0xA2E214A4;
|
|
64220
|
+
}
|
|
64221
|
+
static get [name]() {
|
|
64222
|
+
return "inputCollectiblePhone";
|
|
64223
|
+
}
|
|
64224
|
+
static get [paramDesc]() {
|
|
64225
|
+
return [
|
|
64226
|
+
["phone", "string", "string"],
|
|
64227
|
+
];
|
|
64228
|
+
}
|
|
64229
|
+
get [params]() {
|
|
64230
|
+
return [
|
|
64231
|
+
[this.phone, "string", "string"],
|
|
64232
|
+
];
|
|
64233
|
+
}
|
|
64234
|
+
constructor(params) {
|
|
64235
|
+
super();
|
|
64236
|
+
Object.defineProperty(this, "phone", {
|
|
64237
|
+
enumerable: true,
|
|
64238
|
+
configurable: true,
|
|
64239
|
+
writable: true,
|
|
64240
|
+
value: void 0
|
|
64241
|
+
});
|
|
64242
|
+
this.phone = params.phone;
|
|
64243
|
+
}
|
|
64244
|
+
}
|
|
64245
|
+
export class fragment_CollectibleInfo_ extends _fragment_CollectibleInfo_ {
|
|
64246
|
+
get [id]() {
|
|
64247
|
+
return 0x6EBDFF91;
|
|
64248
|
+
}
|
|
64249
|
+
static get [name]() {
|
|
64250
|
+
return "fragment.collectibleInfo";
|
|
64251
|
+
}
|
|
64252
|
+
static get [paramDesc]() {
|
|
64253
|
+
return [
|
|
64254
|
+
["purchase_date", "number", "int"],
|
|
64255
|
+
["currency", "string", "string"],
|
|
64256
|
+
["amount", "bigint", "long"],
|
|
64257
|
+
["crypto_currency", "string", "string"],
|
|
64258
|
+
["crypto_amount", "bigint", "long"],
|
|
64259
|
+
["url", "string", "string"],
|
|
64260
|
+
];
|
|
64261
|
+
}
|
|
64262
|
+
get [params]() {
|
|
64263
|
+
return [
|
|
64264
|
+
[this.purchase_date, "number", "int"],
|
|
64265
|
+
[this.currency, "string", "string"],
|
|
64266
|
+
[this.amount, "bigint", "long"],
|
|
64267
|
+
[this.crypto_currency, "string", "string"],
|
|
64268
|
+
[this.crypto_amount, "bigint", "long"],
|
|
64269
|
+
[this.url, "string", "string"],
|
|
64270
|
+
];
|
|
64271
|
+
}
|
|
64272
|
+
constructor(params) {
|
|
64273
|
+
super();
|
|
64274
|
+
Object.defineProperty(this, "purchase_date", {
|
|
64275
|
+
enumerable: true,
|
|
64276
|
+
configurable: true,
|
|
64277
|
+
writable: true,
|
|
64278
|
+
value: void 0
|
|
64279
|
+
});
|
|
64280
|
+
Object.defineProperty(this, "currency", {
|
|
64281
|
+
enumerable: true,
|
|
64282
|
+
configurable: true,
|
|
64283
|
+
writable: true,
|
|
64284
|
+
value: void 0
|
|
64285
|
+
});
|
|
64286
|
+
Object.defineProperty(this, "amount", {
|
|
64287
|
+
enumerable: true,
|
|
64288
|
+
configurable: true,
|
|
64289
|
+
writable: true,
|
|
64290
|
+
value: void 0
|
|
64291
|
+
});
|
|
64292
|
+
Object.defineProperty(this, "crypto_currency", {
|
|
64293
|
+
enumerable: true,
|
|
64294
|
+
configurable: true,
|
|
64295
|
+
writable: true,
|
|
64296
|
+
value: void 0
|
|
64297
|
+
});
|
|
64298
|
+
Object.defineProperty(this, "crypto_amount", {
|
|
64299
|
+
enumerable: true,
|
|
64300
|
+
configurable: true,
|
|
64301
|
+
writable: true,
|
|
64302
|
+
value: void 0
|
|
64303
|
+
});
|
|
64304
|
+
Object.defineProperty(this, "url", {
|
|
64305
|
+
enumerable: true,
|
|
64306
|
+
configurable: true,
|
|
64307
|
+
writable: true,
|
|
64308
|
+
value: void 0
|
|
64309
|
+
});
|
|
64310
|
+
this.purchase_date = params.purchase_date;
|
|
64311
|
+
this.currency = params.currency;
|
|
64312
|
+
this.amount = params.amount;
|
|
64313
|
+
this.crypto_currency = params.crypto_currency;
|
|
64314
|
+
this.crypto_amount = params.crypto_amount;
|
|
64315
|
+
this.url = params.url;
|
|
64316
|
+
}
|
|
64317
|
+
}
|
|
64318
|
+
export class InputBusinessBotRecipients_ extends _InputBusinessBotRecipients_ {
|
|
64319
|
+
get [id]() {
|
|
64320
|
+
return 0xC4E5921E;
|
|
64321
|
+
}
|
|
64322
|
+
static get [name]() {
|
|
64323
|
+
return "inputBusinessBotRecipients";
|
|
64324
|
+
}
|
|
64325
|
+
static get [paramDesc]() {
|
|
64326
|
+
return [
|
|
64327
|
+
["flags", flags, "#"],
|
|
64328
|
+
["existing_chats", "true", "flags.0?true"],
|
|
64329
|
+
["new_chats", "true", "flags.1?true"],
|
|
64330
|
+
["contacts", "true", "flags.2?true"],
|
|
64331
|
+
["non_contacts", "true", "flags.3?true"],
|
|
64332
|
+
["exclude_selected", "true", "flags.5?true"],
|
|
64333
|
+
["users", [_InputUser_], "flags.4?Vector<InputUser>"],
|
|
64334
|
+
["exclude_users", [_InputUser_], "flags.6?Vector<InputUser>"],
|
|
64335
|
+
];
|
|
64336
|
+
}
|
|
64337
|
+
get [params]() {
|
|
64338
|
+
return [
|
|
64339
|
+
["flags", flags, "#"],
|
|
64340
|
+
[this.existing_chats ?? null, "true", "flags.0?true"],
|
|
64341
|
+
[this.new_chats ?? null, "true", "flags.1?true"],
|
|
64342
|
+
[this.contacts ?? null, "true", "flags.2?true"],
|
|
64343
|
+
[this.non_contacts ?? null, "true", "flags.3?true"],
|
|
64344
|
+
[this.exclude_selected ?? null, "true", "flags.5?true"],
|
|
64345
|
+
[this.users ?? null, [_InputUser_], "flags.4?Vector<InputUser>"],
|
|
64346
|
+
[this.exclude_users ?? null, [_InputUser_], "flags.6?Vector<InputUser>"],
|
|
64347
|
+
];
|
|
64348
|
+
}
|
|
64349
|
+
constructor(params) {
|
|
64350
|
+
super();
|
|
64351
|
+
Object.defineProperty(this, "existing_chats", {
|
|
64352
|
+
enumerable: true,
|
|
64353
|
+
configurable: true,
|
|
64354
|
+
writable: true,
|
|
64355
|
+
value: void 0
|
|
64356
|
+
});
|
|
64357
|
+
Object.defineProperty(this, "new_chats", {
|
|
64358
|
+
enumerable: true,
|
|
64359
|
+
configurable: true,
|
|
64360
|
+
writable: true,
|
|
64361
|
+
value: void 0
|
|
64362
|
+
});
|
|
64363
|
+
Object.defineProperty(this, "contacts", {
|
|
64364
|
+
enumerable: true,
|
|
64365
|
+
configurable: true,
|
|
64366
|
+
writable: true,
|
|
64367
|
+
value: void 0
|
|
64368
|
+
});
|
|
64369
|
+
Object.defineProperty(this, "non_contacts", {
|
|
64370
|
+
enumerable: true,
|
|
64371
|
+
configurable: true,
|
|
64372
|
+
writable: true,
|
|
64373
|
+
value: void 0
|
|
64374
|
+
});
|
|
64375
|
+
Object.defineProperty(this, "exclude_selected", {
|
|
64376
|
+
enumerable: true,
|
|
64377
|
+
configurable: true,
|
|
64378
|
+
writable: true,
|
|
64379
|
+
value: void 0
|
|
64380
|
+
});
|
|
64381
|
+
Object.defineProperty(this, "users", {
|
|
64382
|
+
enumerable: true,
|
|
64383
|
+
configurable: true,
|
|
64384
|
+
writable: true,
|
|
64385
|
+
value: void 0
|
|
64386
|
+
});
|
|
64387
|
+
Object.defineProperty(this, "exclude_users", {
|
|
64388
|
+
enumerable: true,
|
|
64389
|
+
configurable: true,
|
|
64390
|
+
writable: true,
|
|
64391
|
+
value: void 0
|
|
64392
|
+
});
|
|
64393
|
+
this.existing_chats = params?.existing_chats;
|
|
64394
|
+
this.new_chats = params?.new_chats;
|
|
64395
|
+
this.contacts = params?.contacts;
|
|
64396
|
+
this.non_contacts = params?.non_contacts;
|
|
64397
|
+
this.exclude_selected = params?.exclude_selected;
|
|
64398
|
+
this.users = params?.users;
|
|
64399
|
+
this.exclude_users = params?.exclude_users;
|
|
64400
|
+
}
|
|
64401
|
+
}
|
|
64402
|
+
export class BusinessBotRecipients_ extends _BusinessBotRecipients_ {
|
|
64403
|
+
get [id]() {
|
|
64404
|
+
return 0xB88CF373;
|
|
64405
|
+
}
|
|
64406
|
+
static get [name]() {
|
|
64407
|
+
return "businessBotRecipients";
|
|
64408
|
+
}
|
|
64409
|
+
static get [paramDesc]() {
|
|
64410
|
+
return [
|
|
64411
|
+
["flags", flags, "#"],
|
|
64412
|
+
["existing_chats", "true", "flags.0?true"],
|
|
64413
|
+
["new_chats", "true", "flags.1?true"],
|
|
64414
|
+
["contacts", "true", "flags.2?true"],
|
|
64415
|
+
["non_contacts", "true", "flags.3?true"],
|
|
64416
|
+
["exclude_selected", "true", "flags.5?true"],
|
|
64417
|
+
["users", ["bigint"], "flags.4?Vector<long>"],
|
|
64418
|
+
["exclude_users", ["bigint"], "flags.6?Vector<long>"],
|
|
64419
|
+
];
|
|
64420
|
+
}
|
|
64421
|
+
get [params]() {
|
|
64422
|
+
return [
|
|
64423
|
+
["flags", flags, "#"],
|
|
64424
|
+
[this.existing_chats ?? null, "true", "flags.0?true"],
|
|
64425
|
+
[this.new_chats ?? null, "true", "flags.1?true"],
|
|
64426
|
+
[this.contacts ?? null, "true", "flags.2?true"],
|
|
64427
|
+
[this.non_contacts ?? null, "true", "flags.3?true"],
|
|
64428
|
+
[this.exclude_selected ?? null, "true", "flags.5?true"],
|
|
64429
|
+
[this.users ?? null, ["bigint"], "flags.4?Vector<long>"],
|
|
64430
|
+
[this.exclude_users ?? null, ["bigint"], "flags.6?Vector<long>"],
|
|
64431
|
+
];
|
|
64432
|
+
}
|
|
64433
|
+
constructor(params) {
|
|
64434
|
+
super();
|
|
64435
|
+
Object.defineProperty(this, "existing_chats", {
|
|
64436
|
+
enumerable: true,
|
|
64437
|
+
configurable: true,
|
|
64438
|
+
writable: true,
|
|
64439
|
+
value: void 0
|
|
64440
|
+
});
|
|
64441
|
+
Object.defineProperty(this, "new_chats", {
|
|
64442
|
+
enumerable: true,
|
|
64443
|
+
configurable: true,
|
|
64444
|
+
writable: true,
|
|
64445
|
+
value: void 0
|
|
64446
|
+
});
|
|
64447
|
+
Object.defineProperty(this, "contacts", {
|
|
64448
|
+
enumerable: true,
|
|
64449
|
+
configurable: true,
|
|
64450
|
+
writable: true,
|
|
64451
|
+
value: void 0
|
|
64452
|
+
});
|
|
64453
|
+
Object.defineProperty(this, "non_contacts", {
|
|
64454
|
+
enumerable: true,
|
|
64455
|
+
configurable: true,
|
|
64456
|
+
writable: true,
|
|
64457
|
+
value: void 0
|
|
64458
|
+
});
|
|
64459
|
+
Object.defineProperty(this, "exclude_selected", {
|
|
64460
|
+
enumerable: true,
|
|
64461
|
+
configurable: true,
|
|
64462
|
+
writable: true,
|
|
64463
|
+
value: void 0
|
|
64464
|
+
});
|
|
64465
|
+
Object.defineProperty(this, "users", {
|
|
64466
|
+
enumerable: true,
|
|
64467
|
+
configurable: true,
|
|
64468
|
+
writable: true,
|
|
64469
|
+
value: void 0
|
|
64470
|
+
});
|
|
64471
|
+
Object.defineProperty(this, "exclude_users", {
|
|
64472
|
+
enumerable: true,
|
|
64473
|
+
configurable: true,
|
|
64474
|
+
writable: true,
|
|
64475
|
+
value: void 0
|
|
64476
|
+
});
|
|
64477
|
+
this.existing_chats = params?.existing_chats;
|
|
64478
|
+
this.new_chats = params?.new_chats;
|
|
64479
|
+
this.contacts = params?.contacts;
|
|
64480
|
+
this.non_contacts = params?.non_contacts;
|
|
64481
|
+
this.exclude_selected = params?.exclude_selected;
|
|
64482
|
+
this.users = params?.users;
|
|
64483
|
+
this.exclude_users = params?.exclude_users;
|
|
64484
|
+
}
|
|
64485
|
+
}
|
|
64486
|
+
export class ContactBirthday_ extends _ContactBirthday_ {
|
|
64487
|
+
get [id]() {
|
|
64488
|
+
return 0x1D998733;
|
|
64489
|
+
}
|
|
64490
|
+
static get [name]() {
|
|
64491
|
+
return "contactBirthday";
|
|
64492
|
+
}
|
|
64493
|
+
static get [paramDesc]() {
|
|
64494
|
+
return [
|
|
64495
|
+
["contact_id", "bigint", "long"],
|
|
64496
|
+
["birthday", _Birthday_, "Birthday"],
|
|
64497
|
+
];
|
|
64498
|
+
}
|
|
64499
|
+
get [params]() {
|
|
64500
|
+
return [
|
|
64501
|
+
[this.contact_id, "bigint", "long"],
|
|
64502
|
+
[this.birthday, _Birthday_, "Birthday"],
|
|
64503
|
+
];
|
|
64504
|
+
}
|
|
64505
|
+
constructor(params) {
|
|
64506
|
+
super();
|
|
64507
|
+
Object.defineProperty(this, "contact_id", {
|
|
64508
|
+
enumerable: true,
|
|
64509
|
+
configurable: true,
|
|
64510
|
+
writable: true,
|
|
64511
|
+
value: void 0
|
|
64512
|
+
});
|
|
64513
|
+
Object.defineProperty(this, "birthday", {
|
|
64514
|
+
enumerable: true,
|
|
64515
|
+
configurable: true,
|
|
64516
|
+
writable: true,
|
|
64517
|
+
value: void 0
|
|
64518
|
+
});
|
|
64519
|
+
this.contact_id = params.contact_id;
|
|
64520
|
+
this.birthday = params.birthday;
|
|
64521
|
+
}
|
|
64522
|
+
}
|
|
64523
|
+
export class contacts_ContactBirthdays_ extends _contacts_ContactBirthdays_ {
|
|
64524
|
+
get [id]() {
|
|
64525
|
+
return 0x114FF30D;
|
|
64526
|
+
}
|
|
64527
|
+
static get [name]() {
|
|
64528
|
+
return "contacts.contactBirthdays";
|
|
64529
|
+
}
|
|
64530
|
+
static get [paramDesc]() {
|
|
64531
|
+
return [
|
|
64532
|
+
["contacts", [_ContactBirthday_], "Vector<ContactBirthday>"],
|
|
64533
|
+
["users", [_User_], "Vector<User>"],
|
|
64534
|
+
];
|
|
64535
|
+
}
|
|
64536
|
+
get [params]() {
|
|
64537
|
+
return [
|
|
64538
|
+
[this.contacts, [_ContactBirthday_], "Vector<ContactBirthday>"],
|
|
64539
|
+
[this.users, [_User_], "Vector<User>"],
|
|
64540
|
+
];
|
|
64541
|
+
}
|
|
64542
|
+
constructor(params) {
|
|
64543
|
+
super();
|
|
64544
|
+
Object.defineProperty(this, "contacts", {
|
|
64545
|
+
enumerable: true,
|
|
64546
|
+
configurable: true,
|
|
64547
|
+
writable: true,
|
|
64548
|
+
value: void 0
|
|
64549
|
+
});
|
|
64550
|
+
Object.defineProperty(this, "users", {
|
|
64551
|
+
enumerable: true,
|
|
64552
|
+
configurable: true,
|
|
64553
|
+
writable: true,
|
|
64554
|
+
value: void 0
|
|
64555
|
+
});
|
|
64556
|
+
this.contacts = params.contacts;
|
|
64557
|
+
this.users = params.users;
|
|
64558
|
+
}
|
|
64559
|
+
}
|
|
64560
|
+
export class MissingInvitee_ extends _MissingInvitee_ {
|
|
64561
|
+
get [id]() {
|
|
64562
|
+
return 0x628C9224;
|
|
64563
|
+
}
|
|
64564
|
+
static get [name]() {
|
|
64565
|
+
return "missingInvitee";
|
|
64566
|
+
}
|
|
64567
|
+
static get [paramDesc]() {
|
|
64568
|
+
return [
|
|
64569
|
+
["flags", flags, "#"],
|
|
64570
|
+
["premium_would_allow_invite", "true", "flags.0?true"],
|
|
64571
|
+
["premium_required_for_pm", "true", "flags.1?true"],
|
|
64572
|
+
["user_id", "bigint", "long"],
|
|
64573
|
+
];
|
|
64574
|
+
}
|
|
64575
|
+
get [params]() {
|
|
64576
|
+
return [
|
|
64577
|
+
["flags", flags, "#"],
|
|
64578
|
+
[this.premium_would_allow_invite ?? null, "true", "flags.0?true"],
|
|
64579
|
+
[this.premium_required_for_pm ?? null, "true", "flags.1?true"],
|
|
64580
|
+
[this.user_id, "bigint", "long"],
|
|
64581
|
+
];
|
|
64582
|
+
}
|
|
64583
|
+
constructor(params) {
|
|
64584
|
+
super();
|
|
64585
|
+
Object.defineProperty(this, "premium_would_allow_invite", {
|
|
64586
|
+
enumerable: true,
|
|
64587
|
+
configurable: true,
|
|
64588
|
+
writable: true,
|
|
64589
|
+
value: void 0
|
|
64590
|
+
});
|
|
64591
|
+
Object.defineProperty(this, "premium_required_for_pm", {
|
|
64592
|
+
enumerable: true,
|
|
64593
|
+
configurable: true,
|
|
64594
|
+
writable: true,
|
|
64595
|
+
value: void 0
|
|
64596
|
+
});
|
|
64597
|
+
Object.defineProperty(this, "user_id", {
|
|
64598
|
+
enumerable: true,
|
|
64599
|
+
configurable: true,
|
|
64600
|
+
writable: true,
|
|
64601
|
+
value: void 0
|
|
64602
|
+
});
|
|
64603
|
+
this.premium_would_allow_invite = params.premium_would_allow_invite;
|
|
64604
|
+
this.premium_required_for_pm = params.premium_required_for_pm;
|
|
64605
|
+
this.user_id = params.user_id;
|
|
64606
|
+
}
|
|
64607
|
+
}
|
|
64608
|
+
export class messages_InvitedUsers_ extends _messages_InvitedUsers_ {
|
|
64609
|
+
get [id]() {
|
|
64610
|
+
return 0x7F5DEFA6;
|
|
64611
|
+
}
|
|
64612
|
+
static get [name]() {
|
|
64613
|
+
return "messages.invitedUsers";
|
|
64614
|
+
}
|
|
64615
|
+
static get [paramDesc]() {
|
|
64616
|
+
return [
|
|
64617
|
+
["updates", _Updates_, "Updates"],
|
|
64618
|
+
["missing_invitees", [_MissingInvitee_], "Vector<MissingInvitee>"],
|
|
64619
|
+
];
|
|
64620
|
+
}
|
|
64621
|
+
get [params]() {
|
|
64622
|
+
return [
|
|
64623
|
+
[this.updates, _Updates_, "Updates"],
|
|
64624
|
+
[this.missing_invitees, [_MissingInvitee_], "Vector<MissingInvitee>"],
|
|
64625
|
+
];
|
|
64626
|
+
}
|
|
64627
|
+
constructor(params) {
|
|
64628
|
+
super();
|
|
64629
|
+
Object.defineProperty(this, "updates", {
|
|
64630
|
+
enumerable: true,
|
|
64631
|
+
configurable: true,
|
|
64632
|
+
writable: true,
|
|
64633
|
+
value: void 0
|
|
64634
|
+
});
|
|
64635
|
+
Object.defineProperty(this, "missing_invitees", {
|
|
64636
|
+
enumerable: true,
|
|
64637
|
+
configurable: true,
|
|
64638
|
+
writable: true,
|
|
64639
|
+
value: void 0
|
|
64640
|
+
});
|
|
64641
|
+
this.updates = params.updates;
|
|
64642
|
+
this.missing_invitees = params.missing_invitees;
|
|
64643
|
+
}
|
|
64644
|
+
}
|
|
64645
|
+
export class InputBusinessChatLink_ extends _InputBusinessChatLink_ {
|
|
64646
|
+
get [id]() {
|
|
64647
|
+
return 0x11679FA7;
|
|
64648
|
+
}
|
|
64649
|
+
static get [name]() {
|
|
64650
|
+
return "inputBusinessChatLink";
|
|
64651
|
+
}
|
|
64652
|
+
static get [paramDesc]() {
|
|
64653
|
+
return [
|
|
64654
|
+
["flags", flags, "#"],
|
|
64655
|
+
["message", "string", "string"],
|
|
64656
|
+
["entities", [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
64657
|
+
["title", "string", "flags.1?string"],
|
|
64658
|
+
];
|
|
64659
|
+
}
|
|
64660
|
+
get [params]() {
|
|
64661
|
+
return [
|
|
64662
|
+
["flags", flags, "#"],
|
|
64663
|
+
[this.message, "string", "string"],
|
|
64664
|
+
[this.entities ?? null, [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
64665
|
+
[this.title ?? null, "string", "flags.1?string"],
|
|
64666
|
+
];
|
|
64667
|
+
}
|
|
64668
|
+
constructor(params) {
|
|
64669
|
+
super();
|
|
64670
|
+
Object.defineProperty(this, "message", {
|
|
64671
|
+
enumerable: true,
|
|
64672
|
+
configurable: true,
|
|
64673
|
+
writable: true,
|
|
64674
|
+
value: void 0
|
|
64675
|
+
});
|
|
64676
|
+
Object.defineProperty(this, "entities", {
|
|
64677
|
+
enumerable: true,
|
|
64678
|
+
configurable: true,
|
|
64679
|
+
writable: true,
|
|
64680
|
+
value: void 0
|
|
64681
|
+
});
|
|
64682
|
+
Object.defineProperty(this, "title", {
|
|
64683
|
+
enumerable: true,
|
|
64684
|
+
configurable: true,
|
|
64685
|
+
writable: true,
|
|
64686
|
+
value: void 0
|
|
64687
|
+
});
|
|
64688
|
+
this.message = params.message;
|
|
64689
|
+
this.entities = params.entities;
|
|
64690
|
+
this.title = params.title;
|
|
64691
|
+
}
|
|
64692
|
+
}
|
|
64693
|
+
export class BusinessChatLink_ extends _BusinessChatLink_ {
|
|
64694
|
+
get [id]() {
|
|
64695
|
+
return 0xB4AE666F;
|
|
64696
|
+
}
|
|
64697
|
+
static get [name]() {
|
|
64698
|
+
return "businessChatLink";
|
|
64699
|
+
}
|
|
64700
|
+
static get [paramDesc]() {
|
|
64701
|
+
return [
|
|
64702
|
+
["flags", flags, "#"],
|
|
64703
|
+
["link", "string", "string"],
|
|
64704
|
+
["message", "string", "string"],
|
|
64705
|
+
["entities", [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
64706
|
+
["title", "string", "flags.1?string"],
|
|
64707
|
+
["views", "number", "int"],
|
|
64708
|
+
];
|
|
64709
|
+
}
|
|
64710
|
+
get [params]() {
|
|
64711
|
+
return [
|
|
64712
|
+
["flags", flags, "#"],
|
|
64713
|
+
[this.link, "string", "string"],
|
|
64714
|
+
[this.message, "string", "string"],
|
|
64715
|
+
[this.entities ?? null, [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
64716
|
+
[this.title ?? null, "string", "flags.1?string"],
|
|
64717
|
+
[this.views, "number", "int"],
|
|
64718
|
+
];
|
|
64719
|
+
}
|
|
64720
|
+
constructor(params) {
|
|
64721
|
+
super();
|
|
64722
|
+
Object.defineProperty(this, "link", {
|
|
64723
|
+
enumerable: true,
|
|
64724
|
+
configurable: true,
|
|
64725
|
+
writable: true,
|
|
64726
|
+
value: void 0
|
|
64727
|
+
});
|
|
64728
|
+
Object.defineProperty(this, "message", {
|
|
64729
|
+
enumerable: true,
|
|
64730
|
+
configurable: true,
|
|
64731
|
+
writable: true,
|
|
64732
|
+
value: void 0
|
|
64733
|
+
});
|
|
64734
|
+
Object.defineProperty(this, "entities", {
|
|
64735
|
+
enumerable: true,
|
|
64736
|
+
configurable: true,
|
|
64737
|
+
writable: true,
|
|
64738
|
+
value: void 0
|
|
64739
|
+
});
|
|
64740
|
+
Object.defineProperty(this, "title", {
|
|
64741
|
+
enumerable: true,
|
|
64742
|
+
configurable: true,
|
|
64743
|
+
writable: true,
|
|
64744
|
+
value: void 0
|
|
64745
|
+
});
|
|
64746
|
+
Object.defineProperty(this, "views", {
|
|
64747
|
+
enumerable: true,
|
|
64748
|
+
configurable: true,
|
|
64749
|
+
writable: true,
|
|
64750
|
+
value: void 0
|
|
64751
|
+
});
|
|
64752
|
+
this.link = params.link;
|
|
64753
|
+
this.message = params.message;
|
|
64754
|
+
this.entities = params.entities;
|
|
64755
|
+
this.title = params.title;
|
|
64756
|
+
this.views = params.views;
|
|
64757
|
+
}
|
|
64758
|
+
}
|
|
64759
|
+
export class account_BusinessChatLinks_ extends _account_BusinessChatLinks_ {
|
|
64760
|
+
get [id]() {
|
|
64761
|
+
return 0xEC43A2D1;
|
|
64762
|
+
}
|
|
64763
|
+
static get [name]() {
|
|
64764
|
+
return "account.businessChatLinks";
|
|
64765
|
+
}
|
|
64766
|
+
static get [paramDesc]() {
|
|
64767
|
+
return [
|
|
64768
|
+
["links", [_BusinessChatLink_], "Vector<BusinessChatLink>"],
|
|
64769
|
+
["chats", [_Chat_], "Vector<Chat>"],
|
|
64770
|
+
["users", [_User_], "Vector<User>"],
|
|
64771
|
+
];
|
|
64772
|
+
}
|
|
64773
|
+
get [params]() {
|
|
64774
|
+
return [
|
|
64775
|
+
[this.links, [_BusinessChatLink_], "Vector<BusinessChatLink>"],
|
|
64776
|
+
[this.chats, [_Chat_], "Vector<Chat>"],
|
|
64777
|
+
[this.users, [_User_], "Vector<User>"],
|
|
64778
|
+
];
|
|
64779
|
+
}
|
|
64780
|
+
constructor(params) {
|
|
64781
|
+
super();
|
|
64782
|
+
Object.defineProperty(this, "links", {
|
|
64783
|
+
enumerable: true,
|
|
64784
|
+
configurable: true,
|
|
64785
|
+
writable: true,
|
|
64786
|
+
value: void 0
|
|
64787
|
+
});
|
|
64788
|
+
Object.defineProperty(this, "chats", {
|
|
64789
|
+
enumerable: true,
|
|
64790
|
+
configurable: true,
|
|
64791
|
+
writable: true,
|
|
64792
|
+
value: void 0
|
|
64793
|
+
});
|
|
64794
|
+
Object.defineProperty(this, "users", {
|
|
64795
|
+
enumerable: true,
|
|
64796
|
+
configurable: true,
|
|
64797
|
+
writable: true,
|
|
64798
|
+
value: void 0
|
|
64799
|
+
});
|
|
64800
|
+
this.links = params.links;
|
|
64801
|
+
this.chats = params.chats;
|
|
64802
|
+
this.users = params.users;
|
|
64803
|
+
}
|
|
64804
|
+
}
|
|
64805
|
+
export class account_ResolvedBusinessChatLinks_ extends _account_ResolvedBusinessChatLinks_ {
|
|
64806
|
+
get [id]() {
|
|
64807
|
+
return 0x9A23AF21;
|
|
64808
|
+
}
|
|
64809
|
+
static get [name]() {
|
|
64810
|
+
return "account.resolvedBusinessChatLinks";
|
|
64811
|
+
}
|
|
64812
|
+
static get [paramDesc]() {
|
|
64813
|
+
return [
|
|
64814
|
+
["flags", flags, "#"],
|
|
64815
|
+
["peer", _Peer_, "Peer"],
|
|
64816
|
+
["message", "string", "string"],
|
|
64817
|
+
["entities", [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
64818
|
+
["chats", [_Chat_], "Vector<Chat>"],
|
|
64819
|
+
["users", [_User_], "Vector<User>"],
|
|
64820
|
+
];
|
|
64821
|
+
}
|
|
64822
|
+
get [params]() {
|
|
64823
|
+
return [
|
|
64824
|
+
["flags", flags, "#"],
|
|
64825
|
+
[this.peer, _Peer_, "Peer"],
|
|
64826
|
+
[this.message, "string", "string"],
|
|
64827
|
+
[this.entities ?? null, [_MessageEntity_], "flags.0?Vector<MessageEntity>"],
|
|
64828
|
+
[this.chats, [_Chat_], "Vector<Chat>"],
|
|
64829
|
+
[this.users, [_User_], "Vector<User>"],
|
|
64830
|
+
];
|
|
64831
|
+
}
|
|
64832
|
+
constructor(params) {
|
|
64833
|
+
super();
|
|
64834
|
+
Object.defineProperty(this, "peer", {
|
|
64835
|
+
enumerable: true,
|
|
64836
|
+
configurable: true,
|
|
64837
|
+
writable: true,
|
|
64838
|
+
value: void 0
|
|
64839
|
+
});
|
|
64840
|
+
Object.defineProperty(this, "message", {
|
|
64841
|
+
enumerable: true,
|
|
64842
|
+
configurable: true,
|
|
64843
|
+
writable: true,
|
|
64844
|
+
value: void 0
|
|
64845
|
+
});
|
|
64846
|
+
Object.defineProperty(this, "entities", {
|
|
64847
|
+
enumerable: true,
|
|
64848
|
+
configurable: true,
|
|
64849
|
+
writable: true,
|
|
64850
|
+
value: void 0
|
|
64851
|
+
});
|
|
64852
|
+
Object.defineProperty(this, "chats", {
|
|
64853
|
+
enumerable: true,
|
|
64854
|
+
configurable: true,
|
|
64855
|
+
writable: true,
|
|
64856
|
+
value: void 0
|
|
64857
|
+
});
|
|
64858
|
+
Object.defineProperty(this, "users", {
|
|
64859
|
+
enumerable: true,
|
|
64860
|
+
configurable: true,
|
|
64861
|
+
writable: true,
|
|
64862
|
+
value: void 0
|
|
64863
|
+
});
|
|
64864
|
+
this.peer = params.peer;
|
|
64865
|
+
this.message = params.message;
|
|
64866
|
+
this.entities = params.entities;
|
|
64867
|
+
this.chats = params.chats;
|
|
64868
|
+
this.users = params.users;
|
|
64869
|
+
}
|
|
64870
|
+
}
|
|
64871
|
+
export class RequestedPeerUser_ extends _RequestedPeer_ {
|
|
64872
|
+
get [id]() {
|
|
64873
|
+
return 0xD62FF46A;
|
|
64874
|
+
}
|
|
64875
|
+
static get [name]() {
|
|
64876
|
+
return "requestedPeerUser";
|
|
64877
|
+
}
|
|
64878
|
+
static get [paramDesc]() {
|
|
64879
|
+
return [
|
|
64880
|
+
["flags", flags, "#"],
|
|
64881
|
+
["user_id", "bigint", "long"],
|
|
64882
|
+
["first_name", "string", "flags.0?string"],
|
|
64883
|
+
["last_name", "string", "flags.0?string"],
|
|
64884
|
+
["username", "string", "flags.1?string"],
|
|
64885
|
+
["photo", _Photo_, "flags.2?Photo"],
|
|
64886
|
+
];
|
|
64887
|
+
}
|
|
64888
|
+
get [params]() {
|
|
64889
|
+
return [
|
|
64890
|
+
["flags", flags, "#"],
|
|
64891
|
+
[this.user_id, "bigint", "long"],
|
|
64892
|
+
[this.first_name ?? null, "string", "flags.0?string"],
|
|
64893
|
+
[this.last_name ?? null, "string", "flags.0?string"],
|
|
64894
|
+
[this.username ?? null, "string", "flags.1?string"],
|
|
64895
|
+
[this.photo ?? null, _Photo_, "flags.2?Photo"],
|
|
64896
|
+
];
|
|
64897
|
+
}
|
|
64898
|
+
constructor(params) {
|
|
64899
|
+
super();
|
|
64900
|
+
Object.defineProperty(this, "user_id", {
|
|
64901
|
+
enumerable: true,
|
|
64902
|
+
configurable: true,
|
|
64903
|
+
writable: true,
|
|
64904
|
+
value: void 0
|
|
64905
|
+
});
|
|
64906
|
+
Object.defineProperty(this, "first_name", {
|
|
64907
|
+
enumerable: true,
|
|
64908
|
+
configurable: true,
|
|
64909
|
+
writable: true,
|
|
64910
|
+
value: void 0
|
|
64911
|
+
});
|
|
64912
|
+
Object.defineProperty(this, "last_name", {
|
|
64913
|
+
enumerable: true,
|
|
64914
|
+
configurable: true,
|
|
64915
|
+
writable: true,
|
|
64916
|
+
value: void 0
|
|
64917
|
+
});
|
|
64918
|
+
Object.defineProperty(this, "username", {
|
|
64919
|
+
enumerable: true,
|
|
64920
|
+
configurable: true,
|
|
64921
|
+
writable: true,
|
|
64922
|
+
value: void 0
|
|
64923
|
+
});
|
|
64924
|
+
Object.defineProperty(this, "photo", {
|
|
64925
|
+
enumerable: true,
|
|
64926
|
+
configurable: true,
|
|
64927
|
+
writable: true,
|
|
64928
|
+
value: void 0
|
|
64929
|
+
});
|
|
64930
|
+
this.user_id = params.user_id;
|
|
64931
|
+
this.first_name = params.first_name;
|
|
64932
|
+
this.last_name = params.last_name;
|
|
64933
|
+
this.username = params.username;
|
|
64934
|
+
this.photo = params.photo;
|
|
64935
|
+
}
|
|
64936
|
+
}
|
|
64937
|
+
export class RequestedPeerChat_ extends _RequestedPeer_ {
|
|
64938
|
+
get [id]() {
|
|
64939
|
+
return 0x7307544F;
|
|
64940
|
+
}
|
|
64941
|
+
static get [name]() {
|
|
64942
|
+
return "requestedPeerChat";
|
|
64943
|
+
}
|
|
64944
|
+
static get [paramDesc]() {
|
|
64945
|
+
return [
|
|
64946
|
+
["flags", flags, "#"],
|
|
64947
|
+
["chat_id", "bigint", "long"],
|
|
64948
|
+
["title", "string", "flags.0?string"],
|
|
64949
|
+
["photo", _Photo_, "flags.2?Photo"],
|
|
64950
|
+
];
|
|
64951
|
+
}
|
|
64952
|
+
get [params]() {
|
|
64953
|
+
return [
|
|
64954
|
+
["flags", flags, "#"],
|
|
64955
|
+
[this.chat_id, "bigint", "long"],
|
|
64956
|
+
[this.title ?? null, "string", "flags.0?string"],
|
|
64957
|
+
[this.photo ?? null, _Photo_, "flags.2?Photo"],
|
|
64958
|
+
];
|
|
64959
|
+
}
|
|
64960
|
+
constructor(params) {
|
|
64961
|
+
super();
|
|
64962
|
+
Object.defineProperty(this, "chat_id", {
|
|
64963
|
+
enumerable: true,
|
|
64964
|
+
configurable: true,
|
|
64965
|
+
writable: true,
|
|
64966
|
+
value: void 0
|
|
64967
|
+
});
|
|
64968
|
+
Object.defineProperty(this, "title", {
|
|
64969
|
+
enumerable: true,
|
|
64970
|
+
configurable: true,
|
|
64971
|
+
writable: true,
|
|
64972
|
+
value: void 0
|
|
64973
|
+
});
|
|
64974
|
+
Object.defineProperty(this, "photo", {
|
|
64975
|
+
enumerable: true,
|
|
64976
|
+
configurable: true,
|
|
64977
|
+
writable: true,
|
|
64978
|
+
value: void 0
|
|
64979
|
+
});
|
|
64980
|
+
this.chat_id = params.chat_id;
|
|
64981
|
+
this.title = params.title;
|
|
64982
|
+
this.photo = params.photo;
|
|
64983
|
+
}
|
|
64984
|
+
}
|
|
64985
|
+
export class RequestedPeerChannel_ extends _RequestedPeer_ {
|
|
64986
|
+
get [id]() {
|
|
64987
|
+
return 0x8BA403E4;
|
|
64988
|
+
}
|
|
64989
|
+
static get [name]() {
|
|
64990
|
+
return "requestedPeerChannel";
|
|
64991
|
+
}
|
|
64992
|
+
static get [paramDesc]() {
|
|
64993
|
+
return [
|
|
64994
|
+
["flags", flags, "#"],
|
|
64995
|
+
["channel_id", "bigint", "long"],
|
|
64996
|
+
["title", "string", "flags.0?string"],
|
|
64997
|
+
["username", "string", "flags.1?string"],
|
|
64998
|
+
["photo", _Photo_, "flags.2?Photo"],
|
|
64999
|
+
];
|
|
65000
|
+
}
|
|
65001
|
+
get [params]() {
|
|
65002
|
+
return [
|
|
65003
|
+
["flags", flags, "#"],
|
|
65004
|
+
[this.channel_id, "bigint", "long"],
|
|
65005
|
+
[this.title ?? null, "string", "flags.0?string"],
|
|
65006
|
+
[this.username ?? null, "string", "flags.1?string"],
|
|
65007
|
+
[this.photo ?? null, _Photo_, "flags.2?Photo"],
|
|
65008
|
+
];
|
|
65009
|
+
}
|
|
65010
|
+
constructor(params) {
|
|
65011
|
+
super();
|
|
65012
|
+
Object.defineProperty(this, "channel_id", {
|
|
65013
|
+
enumerable: true,
|
|
65014
|
+
configurable: true,
|
|
65015
|
+
writable: true,
|
|
65016
|
+
value: void 0
|
|
65017
|
+
});
|
|
65018
|
+
Object.defineProperty(this, "title", {
|
|
65019
|
+
enumerable: true,
|
|
65020
|
+
configurable: true,
|
|
65021
|
+
writable: true,
|
|
65022
|
+
value: void 0
|
|
65023
|
+
});
|
|
65024
|
+
Object.defineProperty(this, "username", {
|
|
65025
|
+
enumerable: true,
|
|
65026
|
+
configurable: true,
|
|
65027
|
+
writable: true,
|
|
65028
|
+
value: void 0
|
|
65029
|
+
});
|
|
65030
|
+
Object.defineProperty(this, "photo", {
|
|
65031
|
+
enumerable: true,
|
|
65032
|
+
configurable: true,
|
|
65033
|
+
writable: true,
|
|
65034
|
+
value: void 0
|
|
65035
|
+
});
|
|
65036
|
+
this.channel_id = params.channel_id;
|
|
65037
|
+
this.title = params.title;
|
|
65038
|
+
this.username = params.username;
|
|
65039
|
+
this.photo = params.photo;
|
|
65040
|
+
}
|
|
65041
|
+
}
|
|
65042
|
+
export class SponsoredMessageReportOption_ extends _SponsoredMessageReportOption_ {
|
|
65043
|
+
get [id]() {
|
|
65044
|
+
return 0x430D3150;
|
|
65045
|
+
}
|
|
65046
|
+
static get [name]() {
|
|
65047
|
+
return "sponsoredMessageReportOption";
|
|
65048
|
+
}
|
|
65049
|
+
static get [paramDesc]() {
|
|
65050
|
+
return [
|
|
65051
|
+
["text", "string", "string"],
|
|
65052
|
+
["option", Uint8Array, "bytes"],
|
|
65053
|
+
];
|
|
65054
|
+
}
|
|
65055
|
+
get [params]() {
|
|
65056
|
+
return [
|
|
65057
|
+
[this.text, "string", "string"],
|
|
65058
|
+
[this.option, Uint8Array, "bytes"],
|
|
65059
|
+
];
|
|
65060
|
+
}
|
|
65061
|
+
constructor(params) {
|
|
65062
|
+
super();
|
|
65063
|
+
Object.defineProperty(this, "text", {
|
|
65064
|
+
enumerable: true,
|
|
65065
|
+
configurable: true,
|
|
65066
|
+
writable: true,
|
|
65067
|
+
value: void 0
|
|
65068
|
+
});
|
|
65069
|
+
Object.defineProperty(this, "option", {
|
|
65070
|
+
enumerable: true,
|
|
65071
|
+
configurable: true,
|
|
65072
|
+
writable: true,
|
|
65073
|
+
value: void 0
|
|
65074
|
+
});
|
|
65075
|
+
this.text = params.text;
|
|
65076
|
+
this.option = params.option;
|
|
65077
|
+
}
|
|
65078
|
+
}
|
|
65079
|
+
export class channels_SponsoredMessageReportResultChooseOption_ extends _channels_SponsoredMessageReportResult_ {
|
|
65080
|
+
get [id]() {
|
|
65081
|
+
return 0x846F9E42;
|
|
65082
|
+
}
|
|
65083
|
+
static get [name]() {
|
|
65084
|
+
return "channels.sponsoredMessageReportResultChooseOption";
|
|
65085
|
+
}
|
|
65086
|
+
static get [paramDesc]() {
|
|
65087
|
+
return [
|
|
65088
|
+
["title", "string", "string"],
|
|
65089
|
+
["options", [_SponsoredMessageReportOption_], "Vector<SponsoredMessageReportOption>"],
|
|
65090
|
+
];
|
|
65091
|
+
}
|
|
65092
|
+
get [params]() {
|
|
65093
|
+
return [
|
|
65094
|
+
[this.title, "string", "string"],
|
|
65095
|
+
[this.options, [_SponsoredMessageReportOption_], "Vector<SponsoredMessageReportOption>"],
|
|
65096
|
+
];
|
|
65097
|
+
}
|
|
65098
|
+
constructor(params) {
|
|
65099
|
+
super();
|
|
65100
|
+
Object.defineProperty(this, "title", {
|
|
65101
|
+
enumerable: true,
|
|
65102
|
+
configurable: true,
|
|
65103
|
+
writable: true,
|
|
65104
|
+
value: void 0
|
|
65105
|
+
});
|
|
65106
|
+
Object.defineProperty(this, "options", {
|
|
65107
|
+
enumerable: true,
|
|
65108
|
+
configurable: true,
|
|
65109
|
+
writable: true,
|
|
65110
|
+
value: void 0
|
|
65111
|
+
});
|
|
65112
|
+
this.title = params.title;
|
|
65113
|
+
this.options = params.options;
|
|
65114
|
+
}
|
|
65115
|
+
}
|
|
65116
|
+
export class channels_SponsoredMessageReportResultAdsHidden_ extends _channels_SponsoredMessageReportResult_ {
|
|
65117
|
+
get [id]() {
|
|
65118
|
+
return 0x3E3BCF2F;
|
|
65119
|
+
}
|
|
65120
|
+
static get [name]() {
|
|
65121
|
+
return "channels.sponsoredMessageReportResultAdsHidden";
|
|
65122
|
+
}
|
|
65123
|
+
static get [paramDesc]() {
|
|
65124
|
+
return [];
|
|
65125
|
+
}
|
|
65126
|
+
get [params]() {
|
|
65127
|
+
return [];
|
|
65128
|
+
}
|
|
65129
|
+
constructor() {
|
|
65130
|
+
super();
|
|
65131
|
+
}
|
|
65132
|
+
}
|
|
65133
|
+
export class channels_SponsoredMessageReportResultReported_ extends _channels_SponsoredMessageReportResult_ {
|
|
65134
|
+
get [id]() {
|
|
65135
|
+
return 0xAD798849;
|
|
65136
|
+
}
|
|
65137
|
+
static get [name]() {
|
|
65138
|
+
return "channels.sponsoredMessageReportResultReported";
|
|
65139
|
+
}
|
|
65140
|
+
static get [paramDesc]() {
|
|
65141
|
+
return [];
|
|
65142
|
+
}
|
|
65143
|
+
get [params]() {
|
|
65144
|
+
return [];
|
|
65145
|
+
}
|
|
65146
|
+
constructor() {
|
|
65147
|
+
super();
|
|
65148
|
+
}
|
|
65149
|
+
}
|
|
65150
|
+
export class stats_BroadcastRevenueStats_ extends _stats_BroadcastRevenueStats_ {
|
|
65151
|
+
get [id]() {
|
|
65152
|
+
return 0xD07B4BAD;
|
|
65153
|
+
}
|
|
65154
|
+
static get [name]() {
|
|
65155
|
+
return "stats.broadcastRevenueStats";
|
|
65156
|
+
}
|
|
65157
|
+
static get [paramDesc]() {
|
|
65158
|
+
return [
|
|
65159
|
+
["top_hours_graph", _StatsGraph_, "StatsGraph"],
|
|
65160
|
+
["revenue_graph", _StatsGraph_, "StatsGraph"],
|
|
65161
|
+
["current_balance", "bigint", "long"],
|
|
65162
|
+
["available_balance", "bigint", "long"],
|
|
65163
|
+
["overall_revenue", "bigint", "long"],
|
|
65164
|
+
["usd_rate", "number", "double"],
|
|
65165
|
+
];
|
|
65166
|
+
}
|
|
65167
|
+
get [params]() {
|
|
65168
|
+
return [
|
|
65169
|
+
[this.top_hours_graph, _StatsGraph_, "StatsGraph"],
|
|
65170
|
+
[this.revenue_graph, _StatsGraph_, "StatsGraph"],
|
|
65171
|
+
[this.current_balance, "bigint", "long"],
|
|
65172
|
+
[this.available_balance, "bigint", "long"],
|
|
65173
|
+
[this.overall_revenue, "bigint", "long"],
|
|
65174
|
+
[this.usd_rate, "number", "double"],
|
|
65175
|
+
];
|
|
65176
|
+
}
|
|
65177
|
+
constructor(params) {
|
|
65178
|
+
super();
|
|
65179
|
+
Object.defineProperty(this, "top_hours_graph", {
|
|
65180
|
+
enumerable: true,
|
|
65181
|
+
configurable: true,
|
|
65182
|
+
writable: true,
|
|
65183
|
+
value: void 0
|
|
65184
|
+
});
|
|
65185
|
+
Object.defineProperty(this, "revenue_graph", {
|
|
65186
|
+
enumerable: true,
|
|
65187
|
+
configurable: true,
|
|
65188
|
+
writable: true,
|
|
65189
|
+
value: void 0
|
|
65190
|
+
});
|
|
65191
|
+
Object.defineProperty(this, "current_balance", {
|
|
65192
|
+
enumerable: true,
|
|
65193
|
+
configurable: true,
|
|
65194
|
+
writable: true,
|
|
65195
|
+
value: void 0
|
|
65196
|
+
});
|
|
65197
|
+
Object.defineProperty(this, "available_balance", {
|
|
65198
|
+
enumerable: true,
|
|
65199
|
+
configurable: true,
|
|
65200
|
+
writable: true,
|
|
65201
|
+
value: void 0
|
|
65202
|
+
});
|
|
65203
|
+
Object.defineProperty(this, "overall_revenue", {
|
|
65204
|
+
enumerable: true,
|
|
65205
|
+
configurable: true,
|
|
65206
|
+
writable: true,
|
|
65207
|
+
value: void 0
|
|
65208
|
+
});
|
|
65209
|
+
Object.defineProperty(this, "usd_rate", {
|
|
65210
|
+
enumerable: true,
|
|
65211
|
+
configurable: true,
|
|
65212
|
+
writable: true,
|
|
65213
|
+
value: void 0
|
|
65214
|
+
});
|
|
65215
|
+
this.top_hours_graph = params.top_hours_graph;
|
|
65216
|
+
this.revenue_graph = params.revenue_graph;
|
|
65217
|
+
this.current_balance = params.current_balance;
|
|
65218
|
+
this.available_balance = params.available_balance;
|
|
65219
|
+
this.overall_revenue = params.overall_revenue;
|
|
65220
|
+
this.usd_rate = params.usd_rate;
|
|
65221
|
+
}
|
|
65222
|
+
}
|
|
65223
|
+
export class stats_BroadcastRevenueWithdrawalUrl_ extends _stats_BroadcastRevenueWithdrawalUrl_ {
|
|
65224
|
+
get [id]() {
|
|
65225
|
+
return 0xEC659737;
|
|
65226
|
+
}
|
|
65227
|
+
static get [name]() {
|
|
65228
|
+
return "stats.broadcastRevenueWithdrawalUrl";
|
|
65229
|
+
}
|
|
65230
|
+
static get [paramDesc]() {
|
|
65231
|
+
return [
|
|
65232
|
+
["url", "string", "string"],
|
|
65233
|
+
];
|
|
65234
|
+
}
|
|
65235
|
+
get [params]() {
|
|
65236
|
+
return [
|
|
65237
|
+
[this.url, "string", "string"],
|
|
65238
|
+
];
|
|
65239
|
+
}
|
|
65240
|
+
constructor(params) {
|
|
65241
|
+
super();
|
|
65242
|
+
Object.defineProperty(this, "url", {
|
|
65243
|
+
enumerable: true,
|
|
65244
|
+
configurable: true,
|
|
65245
|
+
writable: true,
|
|
65246
|
+
value: void 0
|
|
65247
|
+
});
|
|
65248
|
+
this.url = params.url;
|
|
65249
|
+
}
|
|
65250
|
+
}
|
|
65251
|
+
export class BroadcastRevenueTransactionProceeds_ extends _BroadcastRevenueTransaction_ {
|
|
65252
|
+
get [id]() {
|
|
65253
|
+
return 0x557E2CC4;
|
|
65254
|
+
}
|
|
65255
|
+
static get [name]() {
|
|
65256
|
+
return "broadcastRevenueTransactionProceeds";
|
|
65257
|
+
}
|
|
65258
|
+
static get [paramDesc]() {
|
|
65259
|
+
return [
|
|
65260
|
+
["amount", "bigint", "long"],
|
|
65261
|
+
["from_date", "number", "int"],
|
|
65262
|
+
["to_date", "number", "int"],
|
|
65263
|
+
];
|
|
65264
|
+
}
|
|
65265
|
+
get [params]() {
|
|
65266
|
+
return [
|
|
65267
|
+
[this.amount, "bigint", "long"],
|
|
65268
|
+
[this.from_date, "number", "int"],
|
|
65269
|
+
[this.to_date, "number", "int"],
|
|
65270
|
+
];
|
|
65271
|
+
}
|
|
65272
|
+
constructor(params) {
|
|
65273
|
+
super();
|
|
65274
|
+
Object.defineProperty(this, "amount", {
|
|
65275
|
+
enumerable: true,
|
|
65276
|
+
configurable: true,
|
|
65277
|
+
writable: true,
|
|
65278
|
+
value: void 0
|
|
65279
|
+
});
|
|
65280
|
+
Object.defineProperty(this, "from_date", {
|
|
65281
|
+
enumerable: true,
|
|
65282
|
+
configurable: true,
|
|
65283
|
+
writable: true,
|
|
65284
|
+
value: void 0
|
|
65285
|
+
});
|
|
65286
|
+
Object.defineProperty(this, "to_date", {
|
|
65287
|
+
enumerable: true,
|
|
65288
|
+
configurable: true,
|
|
65289
|
+
writable: true,
|
|
65290
|
+
value: void 0
|
|
65291
|
+
});
|
|
65292
|
+
this.amount = params.amount;
|
|
65293
|
+
this.from_date = params.from_date;
|
|
65294
|
+
this.to_date = params.to_date;
|
|
65295
|
+
}
|
|
65296
|
+
}
|
|
65297
|
+
export class BroadcastRevenueTransactionWithdrawal_ extends _BroadcastRevenueTransaction_ {
|
|
65298
|
+
get [id]() {
|
|
65299
|
+
return 0x5A590978;
|
|
65300
|
+
}
|
|
65301
|
+
static get [name]() {
|
|
65302
|
+
return "broadcastRevenueTransactionWithdrawal";
|
|
65303
|
+
}
|
|
65304
|
+
static get [paramDesc]() {
|
|
65305
|
+
return [
|
|
65306
|
+
["flags", flags, "#"],
|
|
65307
|
+
["pending", "true", "flags.0?true"],
|
|
65308
|
+
["failed", "true", "flags.2?true"],
|
|
65309
|
+
["amount", "bigint", "long"],
|
|
65310
|
+
["date", "number", "int"],
|
|
65311
|
+
["provider", "string", "string"],
|
|
65312
|
+
["transaction_date", "number", "flags.1?int"],
|
|
65313
|
+
["transaction_url", "string", "flags.1?string"],
|
|
65314
|
+
];
|
|
65315
|
+
}
|
|
65316
|
+
get [params]() {
|
|
65317
|
+
return [
|
|
65318
|
+
["flags", flags, "#"],
|
|
65319
|
+
[this.pending ?? null, "true", "flags.0?true"],
|
|
65320
|
+
[this.failed ?? null, "true", "flags.2?true"],
|
|
65321
|
+
[this.amount, "bigint", "long"],
|
|
65322
|
+
[this.date, "number", "int"],
|
|
65323
|
+
[this.provider, "string", "string"],
|
|
65324
|
+
[this.transaction_date ?? null, "number", "flags.1?int"],
|
|
65325
|
+
[this.transaction_url ?? null, "string", "flags.1?string"],
|
|
65326
|
+
];
|
|
65327
|
+
}
|
|
65328
|
+
constructor(params) {
|
|
65329
|
+
super();
|
|
65330
|
+
Object.defineProperty(this, "pending", {
|
|
65331
|
+
enumerable: true,
|
|
65332
|
+
configurable: true,
|
|
65333
|
+
writable: true,
|
|
65334
|
+
value: void 0
|
|
65335
|
+
});
|
|
65336
|
+
Object.defineProperty(this, "failed", {
|
|
65337
|
+
enumerable: true,
|
|
65338
|
+
configurable: true,
|
|
65339
|
+
writable: true,
|
|
65340
|
+
value: void 0
|
|
65341
|
+
});
|
|
65342
|
+
Object.defineProperty(this, "amount", {
|
|
65343
|
+
enumerable: true,
|
|
65344
|
+
configurable: true,
|
|
65345
|
+
writable: true,
|
|
65346
|
+
value: void 0
|
|
65347
|
+
});
|
|
65348
|
+
Object.defineProperty(this, "date", {
|
|
65349
|
+
enumerable: true,
|
|
65350
|
+
configurable: true,
|
|
65351
|
+
writable: true,
|
|
65352
|
+
value: void 0
|
|
65353
|
+
});
|
|
65354
|
+
Object.defineProperty(this, "provider", {
|
|
65355
|
+
enumerable: true,
|
|
65356
|
+
configurable: true,
|
|
65357
|
+
writable: true,
|
|
65358
|
+
value: void 0
|
|
65359
|
+
});
|
|
65360
|
+
Object.defineProperty(this, "transaction_date", {
|
|
65361
|
+
enumerable: true,
|
|
65362
|
+
configurable: true,
|
|
65363
|
+
writable: true,
|
|
65364
|
+
value: void 0
|
|
65365
|
+
});
|
|
65366
|
+
Object.defineProperty(this, "transaction_url", {
|
|
65367
|
+
enumerable: true,
|
|
65368
|
+
configurable: true,
|
|
65369
|
+
writable: true,
|
|
65370
|
+
value: void 0
|
|
65371
|
+
});
|
|
65372
|
+
this.pending = params.pending;
|
|
65373
|
+
this.failed = params.failed;
|
|
65374
|
+
this.amount = params.amount;
|
|
65375
|
+
this.date = params.date;
|
|
65376
|
+
this.provider = params.provider;
|
|
65377
|
+
this.transaction_date = params.transaction_date;
|
|
65378
|
+
this.transaction_url = params.transaction_url;
|
|
65379
|
+
}
|
|
65380
|
+
}
|
|
65381
|
+
export class BroadcastRevenueTransactionRefund_ extends _BroadcastRevenueTransaction_ {
|
|
65382
|
+
get [id]() {
|
|
65383
|
+
return 0x42D30D2E;
|
|
65384
|
+
}
|
|
65385
|
+
static get [name]() {
|
|
65386
|
+
return "broadcastRevenueTransactionRefund";
|
|
65387
|
+
}
|
|
65388
|
+
static get [paramDesc]() {
|
|
65389
|
+
return [
|
|
65390
|
+
["amount", "bigint", "long"],
|
|
65391
|
+
["date", "number", "int"],
|
|
65392
|
+
["provider", "string", "string"],
|
|
65393
|
+
];
|
|
65394
|
+
}
|
|
65395
|
+
get [params]() {
|
|
65396
|
+
return [
|
|
65397
|
+
[this.amount, "bigint", "long"],
|
|
65398
|
+
[this.date, "number", "int"],
|
|
65399
|
+
[this.provider, "string", "string"],
|
|
65400
|
+
];
|
|
65401
|
+
}
|
|
65402
|
+
constructor(params) {
|
|
65403
|
+
super();
|
|
65404
|
+
Object.defineProperty(this, "amount", {
|
|
65405
|
+
enumerable: true,
|
|
65406
|
+
configurable: true,
|
|
65407
|
+
writable: true,
|
|
65408
|
+
value: void 0
|
|
65409
|
+
});
|
|
65410
|
+
Object.defineProperty(this, "date", {
|
|
65411
|
+
enumerable: true,
|
|
65412
|
+
configurable: true,
|
|
65413
|
+
writable: true,
|
|
65414
|
+
value: void 0
|
|
65415
|
+
});
|
|
65416
|
+
Object.defineProperty(this, "provider", {
|
|
65417
|
+
enumerable: true,
|
|
65418
|
+
configurable: true,
|
|
65419
|
+
writable: true,
|
|
65420
|
+
value: void 0
|
|
65421
|
+
});
|
|
65422
|
+
this.amount = params.amount;
|
|
65423
|
+
this.date = params.date;
|
|
65424
|
+
this.provider = params.provider;
|
|
65425
|
+
}
|
|
65426
|
+
}
|
|
65427
|
+
export class stats_BroadcastRevenueTransactions_ extends _stats_BroadcastRevenueTransactions_ {
|
|
65428
|
+
get [id]() {
|
|
65429
|
+
return 0x87158466;
|
|
65430
|
+
}
|
|
65431
|
+
static get [name]() {
|
|
65432
|
+
return "stats.broadcastRevenueTransactions";
|
|
65433
|
+
}
|
|
65434
|
+
static get [paramDesc]() {
|
|
65435
|
+
return [
|
|
65436
|
+
["count", "number", "int"],
|
|
65437
|
+
["transactions", [_BroadcastRevenueTransaction_], "Vector<BroadcastRevenueTransaction>"],
|
|
65438
|
+
];
|
|
65439
|
+
}
|
|
65440
|
+
get [params]() {
|
|
65441
|
+
return [
|
|
65442
|
+
[this.count, "number", "int"],
|
|
65443
|
+
[this.transactions, [_BroadcastRevenueTransaction_], "Vector<BroadcastRevenueTransaction>"],
|
|
65444
|
+
];
|
|
65445
|
+
}
|
|
65446
|
+
constructor(params) {
|
|
65447
|
+
super();
|
|
65448
|
+
Object.defineProperty(this, "count", {
|
|
65449
|
+
enumerable: true,
|
|
65450
|
+
configurable: true,
|
|
65451
|
+
writable: true,
|
|
65452
|
+
value: void 0
|
|
65453
|
+
});
|
|
65454
|
+
Object.defineProperty(this, "transactions", {
|
|
65455
|
+
enumerable: true,
|
|
65456
|
+
configurable: true,
|
|
65457
|
+
writable: true,
|
|
65458
|
+
value: void 0
|
|
65459
|
+
});
|
|
65460
|
+
this.count = params.count;
|
|
65461
|
+
this.transactions = params.transactions;
|
|
65462
|
+
}
|
|
65463
|
+
}
|
|
65464
|
+
export const types = {
|
|
65465
|
+
Type: Type_,
|
|
65466
|
+
TypeX: TypeX_,
|
|
65467
|
+
_ResPQ: _ResPQ_,
|
|
65468
|
+
_P_Q_inner_data: _P_Q_inner_data_,
|
|
65469
|
+
_Server_DH_Params: _Server_DH_Params_,
|
|
65470
|
+
_Server_DH_inner_data: _Server_DH_inner_data_,
|
|
65471
|
+
_Client_DH_Inner_Data: _Client_DH_Inner_Data_,
|
|
65472
|
+
_Set_client_DH_params_answer: _Set_client_DH_params_answer_,
|
|
65473
|
+
_BindAuthKeyInner: _BindAuthKeyInner_,
|
|
65474
|
+
_RpcError: _RpcError_,
|
|
65475
|
+
_RpcDropAnswer: _RpcDropAnswer_,
|
|
65476
|
+
_FutureSalt: _FutureSalt_,
|
|
65477
|
+
_FutureSalts: _FutureSalts_,
|
|
65478
|
+
_Pong: _Pong_,
|
|
65479
|
+
_DestroySessionRes: _DestroySessionRes_,
|
|
65480
|
+
_NewSession: _NewSession_,
|
|
65481
|
+
_Object: _Object_,
|
|
65482
|
+
_MsgsAck: _MsgsAck_,
|
|
65483
|
+
_BadMsgNotification: _BadMsgNotification_,
|
|
65484
|
+
_MsgResendReq: _MsgResendReq_,
|
|
65485
|
+
_MsgsStateReq: _MsgsStateReq_,
|
|
65486
|
+
_MsgsStateInfo: _MsgsStateInfo_,
|
|
65487
|
+
_MsgsAllInfo: _MsgsAllInfo_,
|
|
65488
|
+
_MsgDetailedInfo: _MsgDetailedInfo_,
|
|
65489
|
+
_DestroyAuthKeyRes: _DestroyAuthKeyRes_,
|
|
65490
|
+
_HttpWait: _HttpWait_,
|
|
65491
|
+
_True: _True_,
|
|
65492
|
+
_Error: _Error_,
|
|
65493
|
+
_IpPort: _IpPort_,
|
|
65494
|
+
_AccessPointRule: _AccessPointRule_,
|
|
65495
|
+
_help_ConfigSimple: _help_ConfigSimple_,
|
|
65496
|
+
_InputFileLocation: _InputFileLocation_,
|
|
65497
|
+
_InputPeer: _InputPeer_,
|
|
65498
|
+
_InputUser: _InputUser_,
|
|
65499
|
+
_InputContact: _InputContact_,
|
|
65500
|
+
_InputFile: _InputFile_,
|
|
65501
|
+
_InputMedia: _InputMedia_,
|
|
65502
|
+
_InputChatPhoto: _InputChatPhoto_,
|
|
65503
|
+
_InputGeoPoint: _InputGeoPoint_,
|
|
65504
|
+
_InputPhoto: _InputPhoto_,
|
|
65505
|
+
_Peer: _Peer_,
|
|
65506
|
+
_storage_FileType: _storage_FileType_,
|
|
65507
|
+
_User: _User_,
|
|
65508
|
+
_UserProfilePhoto: _UserProfilePhoto_,
|
|
65509
|
+
_UserStatus: _UserStatus_,
|
|
65510
|
+
_Chat: _Chat_,
|
|
65511
|
+
_ChatFull: _ChatFull_,
|
|
65512
|
+
_ChatParticipant: _ChatParticipant_,
|
|
65513
|
+
_ChatParticipants: _ChatParticipants_,
|
|
65514
|
+
_ChatPhoto: _ChatPhoto_,
|
|
65515
|
+
_Message: _Message_,
|
|
65516
|
+
_MessageMedia: _MessageMedia_,
|
|
65517
|
+
_MessageAction: _MessageAction_,
|
|
65518
|
+
_Dialog: _Dialog_,
|
|
65519
|
+
_Photo: _Photo_,
|
|
65520
|
+
_PhotoSize: _PhotoSize_,
|
|
65521
|
+
_GeoPoint: _GeoPoint_,
|
|
65522
|
+
_auth_SentCode: _auth_SentCode_,
|
|
65523
|
+
_auth_Authorization: _auth_Authorization_,
|
|
65524
|
+
_auth_ExportedAuthorization: _auth_ExportedAuthorization_,
|
|
65525
|
+
_InputNotifyPeer: _InputNotifyPeer_,
|
|
65526
|
+
_InputPeerNotifySettings: _InputPeerNotifySettings_,
|
|
65527
|
+
_PeerNotifySettings: _PeerNotifySettings_,
|
|
65528
|
+
_PeerSettings: _PeerSettings_,
|
|
65529
|
+
_WallPaper: _WallPaper_,
|
|
65530
|
+
_ReportReason: _ReportReason_,
|
|
65531
|
+
_UserFull: _UserFull_,
|
|
65532
|
+
_Contact: _Contact_,
|
|
65533
|
+
_ImportedContact: _ImportedContact_,
|
|
65534
|
+
_ContactStatus: _ContactStatus_,
|
|
65535
|
+
_contacts_Contacts: _contacts_Contacts_,
|
|
65536
|
+
_contacts_ImportedContacts: _contacts_ImportedContacts_,
|
|
65537
|
+
_contacts_Blocked: _contacts_Blocked_,
|
|
65538
|
+
_messages_Dialogs: _messages_Dialogs_,
|
|
65539
|
+
_messages_Messages: _messages_Messages_,
|
|
65540
|
+
_messages_Chats: _messages_Chats_,
|
|
65541
|
+
_messages_ChatFull: _messages_ChatFull_,
|
|
65542
|
+
_messages_AffectedHistory: _messages_AffectedHistory_,
|
|
65543
|
+
_MessagesFilter: _MessagesFilter_,
|
|
65544
|
+
_Update: _Update_,
|
|
65545
|
+
_updates_State: _updates_State_,
|
|
65546
|
+
_updates_Difference: _updates_Difference_,
|
|
65547
|
+
_Updates: _Updates_,
|
|
65548
|
+
_photos_Photos: _photos_Photos_,
|
|
65549
|
+
_photos_Photo: _photos_Photo_,
|
|
65550
|
+
_upload_File: _upload_File_,
|
|
65551
|
+
_DcOption: _DcOption_,
|
|
65552
|
+
_Config: _Config_,
|
|
65553
|
+
_NearestDc: _NearestDc_,
|
|
65554
|
+
_help_AppUpdate: _help_AppUpdate_,
|
|
65555
|
+
_help_InviteText: _help_InviteText_,
|
|
65556
|
+
_EncryptedChat: _EncryptedChat_,
|
|
65557
|
+
_InputEncryptedChat: _InputEncryptedChat_,
|
|
65558
|
+
_EncryptedFile: _EncryptedFile_,
|
|
65559
|
+
_InputEncryptedFile: _InputEncryptedFile_,
|
|
65560
|
+
_EncryptedMessage: _EncryptedMessage_,
|
|
65561
|
+
_messages_DhConfig: _messages_DhConfig_,
|
|
65562
|
+
_messages_SentEncryptedMessage: _messages_SentEncryptedMessage_,
|
|
65563
|
+
_InputDocument: _InputDocument_,
|
|
65564
|
+
_Document: _Document_,
|
|
65565
|
+
_help_Support: _help_Support_,
|
|
65566
|
+
_NotifyPeer: _NotifyPeer_,
|
|
65567
|
+
_SendMessageAction: _SendMessageAction_,
|
|
65568
|
+
_contacts_Found: _contacts_Found_,
|
|
65569
|
+
_InputPrivacyKey: _InputPrivacyKey_,
|
|
65570
|
+
_PrivacyKey: _PrivacyKey_,
|
|
65571
|
+
_InputPrivacyRule: _InputPrivacyRule_,
|
|
65572
|
+
_PrivacyRule: _PrivacyRule_,
|
|
65573
|
+
_account_PrivacyRules: _account_PrivacyRules_,
|
|
65574
|
+
_AccountDaysTTL: _AccountDaysTTL_,
|
|
65575
|
+
_DocumentAttribute: _DocumentAttribute_,
|
|
65576
|
+
_messages_Stickers: _messages_Stickers_,
|
|
65577
|
+
_StickerPack: _StickerPack_,
|
|
65578
|
+
_messages_AllStickers: _messages_AllStickers_,
|
|
65579
|
+
_messages_AffectedMessages: _messages_AffectedMessages_,
|
|
65580
|
+
_WebPage: _WebPage_,
|
|
65581
|
+
_Authorization: _Authorization_,
|
|
65582
|
+
_account_Authorizations: _account_Authorizations_,
|
|
65583
|
+
_account_Password: _account_Password_,
|
|
65584
|
+
_account_PasswordSettings: _account_PasswordSettings_,
|
|
65585
|
+
_account_PasswordInputSettings: _account_PasswordInputSettings_,
|
|
65586
|
+
_auth_PasswordRecovery: _auth_PasswordRecovery_,
|
|
65587
|
+
_ReceivedNotifyMessage: _ReceivedNotifyMessage_,
|
|
65588
|
+
_ExportedChatInvite: _ExportedChatInvite_,
|
|
65589
|
+
_ChatInvite: _ChatInvite_,
|
|
65590
|
+
_InputStickerSet: _InputStickerSet_,
|
|
65591
|
+
_StickerSet: _StickerSet_,
|
|
65592
|
+
_messages_StickerSet: _messages_StickerSet_,
|
|
65593
|
+
_BotCommand: _BotCommand_,
|
|
65594
|
+
_BotInfo: _BotInfo_,
|
|
65595
|
+
_KeyboardButton: _KeyboardButton_,
|
|
65596
|
+
_KeyboardButtonRow: _KeyboardButtonRow_,
|
|
65597
|
+
_ReplyMarkup: _ReplyMarkup_,
|
|
65598
|
+
_MessageEntity: _MessageEntity_,
|
|
65599
|
+
_InputChannel: _InputChannel_,
|
|
65600
|
+
_contacts_ResolvedPeer: _contacts_ResolvedPeer_,
|
|
65601
|
+
_MessageRange: _MessageRange_,
|
|
65602
|
+
_updates_ChannelDifference: _updates_ChannelDifference_,
|
|
65603
|
+
_ChannelMessagesFilter: _ChannelMessagesFilter_,
|
|
65604
|
+
_ChannelParticipant: _ChannelParticipant_,
|
|
65605
|
+
_ChannelParticipantsFilter: _ChannelParticipantsFilter_,
|
|
65606
|
+
_channels_ChannelParticipants: _channels_ChannelParticipants_,
|
|
65607
|
+
_channels_ChannelParticipant: _channels_ChannelParticipant_,
|
|
65608
|
+
_help_TermsOfService: _help_TermsOfService_,
|
|
65609
|
+
_messages_SavedGifs: _messages_SavedGifs_,
|
|
65610
|
+
_InputBotInlineMessage: _InputBotInlineMessage_,
|
|
65611
|
+
_InputBotInlineResult: _InputBotInlineResult_,
|
|
65612
|
+
_BotInlineMessage: _BotInlineMessage_,
|
|
65613
|
+
_BotInlineResult: _BotInlineResult_,
|
|
65614
|
+
_messages_BotResults: _messages_BotResults_,
|
|
65615
|
+
_ExportedMessageLink: _ExportedMessageLink_,
|
|
65616
|
+
_MessageFwdHeader: _MessageFwdHeader_,
|
|
65617
|
+
_auth_CodeType: _auth_CodeType_,
|
|
65618
|
+
_auth_SentCodeType: _auth_SentCodeType_,
|
|
65619
|
+
_messages_BotCallbackAnswer: _messages_BotCallbackAnswer_,
|
|
65620
|
+
_messages_MessageEditData: _messages_MessageEditData_,
|
|
65621
|
+
_InputBotInlineMessageID: _InputBotInlineMessageID_,
|
|
65622
|
+
_InlineBotSwitchPM: _InlineBotSwitchPM_,
|
|
65623
|
+
_messages_PeerDialogs: _messages_PeerDialogs_,
|
|
65624
|
+
_TopPeer: _TopPeer_,
|
|
65625
|
+
_TopPeerCategory: _TopPeerCategory_,
|
|
65626
|
+
_TopPeerCategoryPeers: _TopPeerCategoryPeers_,
|
|
65627
|
+
_contacts_TopPeers: _contacts_TopPeers_,
|
|
65628
|
+
_DraftMessage: _DraftMessage_,
|
|
65629
|
+
_messages_FeaturedStickers: _messages_FeaturedStickers_,
|
|
65630
|
+
_messages_RecentStickers: _messages_RecentStickers_,
|
|
65631
|
+
_messages_ArchivedStickers: _messages_ArchivedStickers_,
|
|
65632
|
+
_messages_StickerSetInstallResult: _messages_StickerSetInstallResult_,
|
|
65633
|
+
_StickerSetCovered: _StickerSetCovered_,
|
|
65634
|
+
_MaskCoords: _MaskCoords_,
|
|
65635
|
+
_InputStickeredMedia: _InputStickeredMedia_,
|
|
65636
|
+
_Game: _Game_,
|
|
65637
|
+
_InputGame: _InputGame_,
|
|
65638
|
+
_HighScore: _HighScore_,
|
|
65639
|
+
_messages_HighScores: _messages_HighScores_,
|
|
65640
|
+
_RichText: _RichText_,
|
|
65641
|
+
_PageBlock: _PageBlock_,
|
|
65642
|
+
_PhoneCallDiscardReason: _PhoneCallDiscardReason_,
|
|
65643
|
+
_DataJSON: _DataJSON_,
|
|
65644
|
+
_LabeledPrice: _LabeledPrice_,
|
|
65645
|
+
_Invoice: _Invoice_,
|
|
65646
|
+
_PaymentCharge: _PaymentCharge_,
|
|
65647
|
+
_PostAddress: _PostAddress_,
|
|
65648
|
+
_PaymentRequestedInfo: _PaymentRequestedInfo_,
|
|
65649
|
+
_PaymentSavedCredentials: _PaymentSavedCredentials_,
|
|
65650
|
+
_WebDocument: _WebDocument_,
|
|
65651
|
+
_InputWebDocument: _InputWebDocument_,
|
|
65652
|
+
_InputWebFileLocation: _InputWebFileLocation_,
|
|
65653
|
+
_upload_WebFile: _upload_WebFile_,
|
|
65654
|
+
_payments_PaymentForm: _payments_PaymentForm_,
|
|
65655
|
+
_payments_ValidatedRequestedInfo: _payments_ValidatedRequestedInfo_,
|
|
65656
|
+
_payments_PaymentResult: _payments_PaymentResult_,
|
|
65657
|
+
_payments_PaymentReceipt: _payments_PaymentReceipt_,
|
|
65658
|
+
_payments_SavedInfo: _payments_SavedInfo_,
|
|
65659
|
+
_InputPaymentCredentials: _InputPaymentCredentials_,
|
|
65660
|
+
_account_TmpPassword: _account_TmpPassword_,
|
|
65661
|
+
_ShippingOption: _ShippingOption_,
|
|
65662
|
+
_InputStickerSetItem: _InputStickerSetItem_,
|
|
65663
|
+
_InputPhoneCall: _InputPhoneCall_,
|
|
65664
|
+
_PhoneCall: _PhoneCall_,
|
|
65665
|
+
_PhoneConnection: _PhoneConnection_,
|
|
65666
|
+
_PhoneCallProtocol: _PhoneCallProtocol_,
|
|
65667
|
+
_phone_PhoneCall: _phone_PhoneCall_,
|
|
65668
|
+
_upload_CdnFile: _upload_CdnFile_,
|
|
65669
|
+
_CdnPublicKey: _CdnPublicKey_,
|
|
65670
|
+
_CdnConfig: _CdnConfig_,
|
|
65671
|
+
_LangPackString: _LangPackString_,
|
|
65672
|
+
_LangPackDifference: _LangPackDifference_,
|
|
65673
|
+
_LangPackLanguage: _LangPackLanguage_,
|
|
65674
|
+
_ChannelAdminLogEventAction: _ChannelAdminLogEventAction_,
|
|
65675
|
+
_ChannelAdminLogEvent: _ChannelAdminLogEvent_,
|
|
65676
|
+
_channels_AdminLogResults: _channels_AdminLogResults_,
|
|
65677
|
+
_ChannelAdminLogEventsFilter: _ChannelAdminLogEventsFilter_,
|
|
65678
|
+
_PopularContact: _PopularContact_,
|
|
65679
|
+
_messages_FavedStickers: _messages_FavedStickers_,
|
|
65680
|
+
_RecentMeUrl: _RecentMeUrl_,
|
|
65681
|
+
_help_RecentMeUrls: _help_RecentMeUrls_,
|
|
65682
|
+
_InputSingleMedia: _InputSingleMedia_,
|
|
65683
|
+
_WebAuthorization: _WebAuthorization_,
|
|
65684
|
+
_account_WebAuthorizations: _account_WebAuthorizations_,
|
|
65685
|
+
_InputMessage: _InputMessage_,
|
|
65686
|
+
_InputDialogPeer: _InputDialogPeer_,
|
|
65687
|
+
_DialogPeer: _DialogPeer_,
|
|
65688
|
+
_messages_FoundStickerSets: _messages_FoundStickerSets_,
|
|
65689
|
+
_FileHash: _FileHash_,
|
|
65690
|
+
_InputClientProxy: _InputClientProxy_,
|
|
65691
|
+
_help_TermsOfServiceUpdate: _help_TermsOfServiceUpdate_,
|
|
65692
|
+
_InputSecureFile: _InputSecureFile_,
|
|
65693
|
+
_SecureFile: _SecureFile_,
|
|
65694
|
+
_SecureData: _SecureData_,
|
|
65695
|
+
_SecurePlainData: _SecurePlainData_,
|
|
65696
|
+
_SecureValueType: _SecureValueType_,
|
|
65697
|
+
_SecureValue: _SecureValue_,
|
|
65698
|
+
_InputSecureValue: _InputSecureValue_,
|
|
65699
|
+
_SecureValueHash: _SecureValueHash_,
|
|
65700
|
+
_SecureValueError: _SecureValueError_,
|
|
65701
|
+
_SecureCredentialsEncrypted: _SecureCredentialsEncrypted_,
|
|
65702
|
+
_account_AuthorizationForm: _account_AuthorizationForm_,
|
|
65703
|
+
_account_SentEmailCode: _account_SentEmailCode_,
|
|
65704
|
+
_help_DeepLinkInfo: _help_DeepLinkInfo_,
|
|
65705
|
+
_SavedContact: _SavedContact_,
|
|
65706
|
+
_account_Takeout: _account_Takeout_,
|
|
65707
|
+
_PasswordKdfAlgo: _PasswordKdfAlgo_,
|
|
65708
|
+
_SecurePasswordKdfAlgo: _SecurePasswordKdfAlgo_,
|
|
65709
|
+
_SecureSecretSettings: _SecureSecretSettings_,
|
|
65710
|
+
_InputCheckPasswordSRP: _InputCheckPasswordSRP_,
|
|
65711
|
+
_SecureRequiredType: _SecureRequiredType_,
|
|
65712
|
+
_help_PassportConfig: _help_PassportConfig_,
|
|
65713
|
+
_InputAppEvent: _InputAppEvent_,
|
|
65714
|
+
_JSONObjectValue: _JSONObjectValue_,
|
|
65715
|
+
_JSONValue: _JSONValue_,
|
|
65716
|
+
_PageTableCell: _PageTableCell_,
|
|
65717
|
+
_PageTableRow: _PageTableRow_,
|
|
65718
|
+
_PageCaption: _PageCaption_,
|
|
65719
|
+
_PageListItem: _PageListItem_,
|
|
65720
|
+
_PageListOrderedItem: _PageListOrderedItem_,
|
|
65721
|
+
_PageRelatedArticle: _PageRelatedArticle_,
|
|
65722
|
+
_Page: _Page_,
|
|
65723
|
+
_help_SupportName: _help_SupportName_,
|
|
65724
|
+
_help_UserInfo: _help_UserInfo_,
|
|
65725
|
+
_PollAnswer: _PollAnswer_,
|
|
65726
|
+
_Poll: _Poll_,
|
|
65727
|
+
_PollAnswerVoters: _PollAnswerVoters_,
|
|
65728
|
+
_PollResults: _PollResults_,
|
|
65729
|
+
_ChatOnlines: _ChatOnlines_,
|
|
65730
|
+
_StatsURL: _StatsURL_,
|
|
65731
|
+
_ChatAdminRights: _ChatAdminRights_,
|
|
65732
|
+
_ChatBannedRights: _ChatBannedRights_,
|
|
65733
|
+
_InputWallPaper: _InputWallPaper_,
|
|
65734
|
+
_account_WallPapers: _account_WallPapers_,
|
|
65735
|
+
_CodeSettings: _CodeSettings_,
|
|
65736
|
+
_WallPaperSettings: _WallPaperSettings_,
|
|
65737
|
+
_AutoDownloadSettings: _AutoDownloadSettings_,
|
|
65738
|
+
_account_AutoDownloadSettings: _account_AutoDownloadSettings_,
|
|
65739
|
+
_EmojiKeyword: _EmojiKeyword_,
|
|
65740
|
+
_EmojiKeywordsDifference: _EmojiKeywordsDifference_,
|
|
65741
|
+
_EmojiURL: _EmojiURL_,
|
|
65742
|
+
_EmojiLanguage: _EmojiLanguage_,
|
|
65743
|
+
_Folder: _Folder_,
|
|
65744
|
+
_InputFolderPeer: _InputFolderPeer_,
|
|
65745
|
+
_FolderPeer: _FolderPeer_,
|
|
65746
|
+
_messages_SearchCounter: _messages_SearchCounter_,
|
|
65747
|
+
_UrlAuthResult: _UrlAuthResult_,
|
|
65748
|
+
_ChannelLocation: _ChannelLocation_,
|
|
65749
|
+
_PeerLocated: _PeerLocated_,
|
|
65750
|
+
_RestrictionReason: _RestrictionReason_,
|
|
65751
|
+
_InputTheme: _InputTheme_,
|
|
65752
|
+
_Theme: _Theme_,
|
|
65753
|
+
_account_Themes: _account_Themes_,
|
|
65754
|
+
_auth_LoginToken: _auth_LoginToken_,
|
|
65755
|
+
_account_ContentSettings: _account_ContentSettings_,
|
|
65756
|
+
_messages_InactiveChats: _messages_InactiveChats_,
|
|
65757
|
+
_BaseTheme: _BaseTheme_,
|
|
65758
|
+
_InputThemeSettings: _InputThemeSettings_,
|
|
65759
|
+
_ThemeSettings: _ThemeSettings_,
|
|
65760
|
+
_WebPageAttribute: _WebPageAttribute_,
|
|
65761
|
+
_messages_VotesList: _messages_VotesList_,
|
|
65762
|
+
_BankCardOpenUrl: _BankCardOpenUrl_,
|
|
65763
|
+
_payments_BankCardData: _payments_BankCardData_,
|
|
65764
|
+
_DialogFilter: _DialogFilter_,
|
|
65765
|
+
_DialogFilterSuggested: _DialogFilterSuggested_,
|
|
65766
|
+
_StatsDateRangeDays: _StatsDateRangeDays_,
|
|
65767
|
+
_StatsAbsValueAndPrev: _StatsAbsValueAndPrev_,
|
|
65768
|
+
_StatsPercentValue: _StatsPercentValue_,
|
|
65769
|
+
_StatsGraph: _StatsGraph_,
|
|
65770
|
+
_stats_BroadcastStats: _stats_BroadcastStats_,
|
|
65771
|
+
_help_PromoData: _help_PromoData_,
|
|
65772
|
+
_VideoSize: _VideoSize_,
|
|
65773
|
+
_StatsGroupTopPoster: _StatsGroupTopPoster_,
|
|
65774
|
+
_StatsGroupTopAdmin: _StatsGroupTopAdmin_,
|
|
65775
|
+
_StatsGroupTopInviter: _StatsGroupTopInviter_,
|
|
65776
|
+
_stats_MegagroupStats: _stats_MegagroupStats_,
|
|
65777
|
+
_GlobalPrivacySettings: _GlobalPrivacySettings_,
|
|
65778
|
+
_help_CountryCode: _help_CountryCode_,
|
|
65779
|
+
_help_Country: _help_Country_,
|
|
65780
|
+
_help_CountriesList: _help_CountriesList_,
|
|
65781
|
+
_MessageViews: _MessageViews_,
|
|
65782
|
+
_messages_MessageViews: _messages_MessageViews_,
|
|
65783
|
+
_messages_DiscussionMessage: _messages_DiscussionMessage_,
|
|
65784
|
+
_MessageReplyHeader: _MessageReplyHeader_,
|
|
65785
|
+
_MessageReplies: _MessageReplies_,
|
|
65786
|
+
_PeerBlocked: _PeerBlocked_,
|
|
65787
|
+
_stats_MessageStats: _stats_MessageStats_,
|
|
65788
|
+
_GroupCall: _GroupCall_,
|
|
65789
|
+
_InputGroupCall: _InputGroupCall_,
|
|
65790
|
+
_GroupCallParticipant: _GroupCallParticipant_,
|
|
65791
|
+
_phone_GroupCall: _phone_GroupCall_,
|
|
65792
|
+
_phone_GroupParticipants: _phone_GroupParticipants_,
|
|
65793
|
+
_InlineQueryPeerType: _InlineQueryPeerType_,
|
|
65794
|
+
_messages_HistoryImport: _messages_HistoryImport_,
|
|
65795
|
+
_messages_HistoryImportParsed: _messages_HistoryImportParsed_,
|
|
65796
|
+
_messages_AffectedFoundMessages: _messages_AffectedFoundMessages_,
|
|
65797
|
+
_ChatInviteImporter: _ChatInviteImporter_,
|
|
65798
|
+
_messages_ExportedChatInvites: _messages_ExportedChatInvites_,
|
|
65799
|
+
_messages_ExportedChatInvite: _messages_ExportedChatInvite_,
|
|
65800
|
+
_messages_ChatInviteImporters: _messages_ChatInviteImporters_,
|
|
65801
|
+
_ChatAdminWithInvites: _ChatAdminWithInvites_,
|
|
65802
|
+
_messages_ChatAdminsWithInvites: _messages_ChatAdminsWithInvites_,
|
|
65803
|
+
_messages_CheckedHistoryImportPeer: _messages_CheckedHistoryImportPeer_,
|
|
65804
|
+
_phone_JoinAsPeers: _phone_JoinAsPeers_,
|
|
65805
|
+
_phone_ExportedGroupCallInvite: _phone_ExportedGroupCallInvite_,
|
|
65806
|
+
_GroupCallParticipantVideoSourceGroup: _GroupCallParticipantVideoSourceGroup_,
|
|
65807
|
+
_GroupCallParticipantVideo: _GroupCallParticipantVideo_,
|
|
65808
|
+
_stickers_SuggestedShortName: _stickers_SuggestedShortName_,
|
|
65809
|
+
_BotCommandScope: _BotCommandScope_,
|
|
65810
|
+
_account_ResetPasswordResult: _account_ResetPasswordResult_,
|
|
65811
|
+
_SponsoredMessage: _SponsoredMessage_,
|
|
65812
|
+
_messages_SponsoredMessages: _messages_SponsoredMessages_,
|
|
65813
|
+
_SearchResultsCalendarPeriod: _SearchResultsCalendarPeriod_,
|
|
65814
|
+
_messages_SearchResultsCalendar: _messages_SearchResultsCalendar_,
|
|
65815
|
+
_SearchResultsPosition: _SearchResultsPosition_,
|
|
65816
|
+
_messages_SearchResultsPositions: _messages_SearchResultsPositions_,
|
|
65817
|
+
_channels_SendAsPeers: _channels_SendAsPeers_,
|
|
65818
|
+
_users_UserFull: _users_UserFull_,
|
|
65819
|
+
_messages_PeerSettings: _messages_PeerSettings_,
|
|
65820
|
+
_auth_LoggedOut: _auth_LoggedOut_,
|
|
63485
65821
|
_ReactionCount: _ReactionCount_,
|
|
63486
65822
|
_MessageReactions: _MessageReactions_,
|
|
63487
65823
|
_messages_MessageReactionsList: _messages_MessageReactionsList_,
|
|
@@ -63614,6 +65950,30 @@ export const types = {
|
|
|
63614
65950
|
_ConnectedBot: _ConnectedBot_,
|
|
63615
65951
|
_account_ConnectedBots: _account_ConnectedBots_,
|
|
63616
65952
|
_messages_DialogFilters: _messages_DialogFilters_,
|
|
65953
|
+
_Birthday: _Birthday_,
|
|
65954
|
+
_BotBusinessConnection: _BotBusinessConnection_,
|
|
65955
|
+
_InputBusinessIntro: _InputBusinessIntro_,
|
|
65956
|
+
_BusinessIntro: _BusinessIntro_,
|
|
65957
|
+
_messages_MyStickers: _messages_MyStickers_,
|
|
65958
|
+
_InputCollectible: _InputCollectible_,
|
|
65959
|
+
_fragment_CollectibleInfo: _fragment_CollectibleInfo_,
|
|
65960
|
+
_InputBusinessBotRecipients: _InputBusinessBotRecipients_,
|
|
65961
|
+
_BusinessBotRecipients: _BusinessBotRecipients_,
|
|
65962
|
+
_ContactBirthday: _ContactBirthday_,
|
|
65963
|
+
_contacts_ContactBirthdays: _contacts_ContactBirthdays_,
|
|
65964
|
+
_MissingInvitee: _MissingInvitee_,
|
|
65965
|
+
_messages_InvitedUsers: _messages_InvitedUsers_,
|
|
65966
|
+
_InputBusinessChatLink: _InputBusinessChatLink_,
|
|
65967
|
+
_BusinessChatLink: _BusinessChatLink_,
|
|
65968
|
+
_account_BusinessChatLinks: _account_BusinessChatLinks_,
|
|
65969
|
+
_account_ResolvedBusinessChatLinks: _account_ResolvedBusinessChatLinks_,
|
|
65970
|
+
_RequestedPeer: _RequestedPeer_,
|
|
65971
|
+
_SponsoredMessageReportOption: _SponsoredMessageReportOption_,
|
|
65972
|
+
_channels_SponsoredMessageReportResult: _channels_SponsoredMessageReportResult_,
|
|
65973
|
+
_stats_BroadcastRevenueStats: _stats_BroadcastRevenueStats_,
|
|
65974
|
+
_stats_BroadcastRevenueWithdrawalUrl: _stats_BroadcastRevenueWithdrawalUrl_,
|
|
65975
|
+
_BroadcastRevenueTransaction: _BroadcastRevenueTransaction_,
|
|
65976
|
+
_stats_BroadcastRevenueTransactions: _stats_BroadcastRevenueTransactions_,
|
|
63617
65977
|
ResPQ: ResPQ_,
|
|
63618
65978
|
P_q_inner_data_dc: P_q_inner_data_dc_,
|
|
63619
65979
|
P_q_inner_data_temp_dc: P_q_inner_data_temp_dc_,
|
|
@@ -63650,7 +66010,11 @@ export const types = {
|
|
|
63650
66010
|
Http_wait: Http_wait_,
|
|
63651
66011
|
True: True_,
|
|
63652
66012
|
Error: Error_,
|
|
63653
|
-
|
|
66013
|
+
IpPort: IpPort_,
|
|
66014
|
+
IpPortSecret: IpPortSecret_,
|
|
66015
|
+
AccessPointRule: AccessPointRule_,
|
|
66016
|
+
InputPeerPhotoFileLocationLegacy: InputPeerPhotoFileLocationLegacy_,
|
|
66017
|
+
InputStickerSetThumbLegacy: InputStickerSetThumbLegacy_,
|
|
63654
66018
|
InputPeerEmpty: InputPeerEmpty_,
|
|
63655
66019
|
InputPeerSelf: InputPeerSelf_,
|
|
63656
66020
|
InputPeerChat: InputPeerChat_,
|
|
@@ -63787,6 +66151,7 @@ export const types = {
|
|
|
63787
66151
|
MessageActionGiveawayLaunch: MessageActionGiveawayLaunch_,
|
|
63788
66152
|
MessageActionGiveawayResults: MessageActionGiveawayResults_,
|
|
63789
66153
|
MessageActionBoostApply: MessageActionBoostApply_,
|
|
66154
|
+
MessageActionRequestedPeerSentMe: MessageActionRequestedPeerSentMe_,
|
|
63790
66155
|
Dialog: Dialog_,
|
|
63791
66156
|
DialogFolder: DialogFolder_,
|
|
63792
66157
|
PhotoEmpty: PhotoEmpty_,
|
|
@@ -63951,7 +66316,6 @@ export const types = {
|
|
|
63951
66316
|
UpdateChannelPinnedTopics: UpdateChannelPinnedTopics_,
|
|
63952
66317
|
UpdateUser: UpdateUser_,
|
|
63953
66318
|
UpdateAutoSaveSettings: UpdateAutoSaveSettings_,
|
|
63954
|
-
UpdateGroupInvitePrivacyForbidden: UpdateGroupInvitePrivacyForbidden_,
|
|
63955
66319
|
UpdateStory: UpdateStory_,
|
|
63956
66320
|
UpdateReadStories: UpdateReadStories_,
|
|
63957
66321
|
UpdateStoryID: UpdateStoryID_,
|
|
@@ -63971,6 +66335,10 @@ export const types = {
|
|
|
63971
66335
|
UpdateDeleteQuickReply: UpdateDeleteQuickReply_,
|
|
63972
66336
|
UpdateQuickReplyMessage: UpdateQuickReplyMessage_,
|
|
63973
66337
|
UpdateDeleteQuickReplyMessages: UpdateDeleteQuickReplyMessages_,
|
|
66338
|
+
UpdateBotBusinessConnect: UpdateBotBusinessConnect_,
|
|
66339
|
+
UpdateBotNewBusinessMessage: UpdateBotNewBusinessMessage_,
|
|
66340
|
+
UpdateBotEditBusinessMessage: UpdateBotEditBusinessMessage_,
|
|
66341
|
+
UpdateBotDeleteBusinessMessage: UpdateBotDeleteBusinessMessage_,
|
|
63974
66342
|
UpdatesTooLong: UpdatesTooLong_,
|
|
63975
66343
|
UpdateShortMessage: UpdateShortMessage_,
|
|
63976
66344
|
UpdateShortChatMessage: UpdateShortChatMessage_,
|
|
@@ -64032,6 +66400,7 @@ export const types = {
|
|
|
64032
66400
|
InputPrivacyKeyAddedByPhone: InputPrivacyKeyAddedByPhone_,
|
|
64033
66401
|
InputPrivacyKeyVoiceMessages: InputPrivacyKeyVoiceMessages_,
|
|
64034
66402
|
InputPrivacyKeyAbout: InputPrivacyKeyAbout_,
|
|
66403
|
+
InputPrivacyKeyBirthday: InputPrivacyKeyBirthday_,
|
|
64035
66404
|
PrivacyKeyStatusTimestamp: PrivacyKeyStatusTimestamp_,
|
|
64036
66405
|
PrivacyKeyChatInvite: PrivacyKeyChatInvite_,
|
|
64037
66406
|
PrivacyKeyPhoneCall: PrivacyKeyPhoneCall_,
|
|
@@ -64042,6 +66411,7 @@ export const types = {
|
|
|
64042
66411
|
PrivacyKeyAddedByPhone: PrivacyKeyAddedByPhone_,
|
|
64043
66412
|
PrivacyKeyVoiceMessages: PrivacyKeyVoiceMessages_,
|
|
64044
66413
|
PrivacyKeyAbout: PrivacyKeyAbout_,
|
|
66414
|
+
PrivacyKeyBirthday: PrivacyKeyBirthday_,
|
|
64045
66415
|
InputPrivacyValueAllowContacts: InputPrivacyValueAllowContacts_,
|
|
64046
66416
|
InputPrivacyValueAllowAll: InputPrivacyValueAllowAll_,
|
|
64047
66417
|
InputPrivacyValueAllowUsers: InputPrivacyValueAllowUsers_,
|
|
@@ -64051,6 +66421,7 @@ export const types = {
|
|
|
64051
66421
|
InputPrivacyValueAllowChatParticipants: InputPrivacyValueAllowChatParticipants_,
|
|
64052
66422
|
InputPrivacyValueDisallowChatParticipants: InputPrivacyValueDisallowChatParticipants_,
|
|
64053
66423
|
InputPrivacyValueAllowCloseFriends: InputPrivacyValueAllowCloseFriends_,
|
|
66424
|
+
InputPrivacyValueAllowPremium: InputPrivacyValueAllowPremium_,
|
|
64054
66425
|
PrivacyValueAllowContacts: PrivacyValueAllowContacts_,
|
|
64055
66426
|
PrivacyValueAllowAll: PrivacyValueAllowAll_,
|
|
64056
66427
|
PrivacyValueAllowUsers: PrivacyValueAllowUsers_,
|
|
@@ -64060,6 +66431,7 @@ export const types = {
|
|
|
64060
66431
|
PrivacyValueAllowChatParticipants: PrivacyValueAllowChatParticipants_,
|
|
64061
66432
|
PrivacyValueDisallowChatParticipants: PrivacyValueDisallowChatParticipants_,
|
|
64062
66433
|
PrivacyValueAllowCloseFriends: PrivacyValueAllowCloseFriends_,
|
|
66434
|
+
PrivacyValueAllowPremium: PrivacyValueAllowPremium_,
|
|
64063
66435
|
AccountDaysTTL: AccountDaysTTL_,
|
|
64064
66436
|
DocumentAttributeImageSize: DocumentAttributeImageSize_,
|
|
64065
66437
|
DocumentAttributeAnimated: DocumentAttributeAnimated_,
|
|
@@ -64111,6 +66483,7 @@ export const types = {
|
|
|
64111
66483
|
KeyboardButtonWebView: KeyboardButtonWebView_,
|
|
64112
66484
|
KeyboardButtonSimpleWebView: KeyboardButtonSimpleWebView_,
|
|
64113
66485
|
KeyboardButtonRequestPeer: KeyboardButtonRequestPeer_,
|
|
66486
|
+
InputKeyboardButtonRequestPeer: InputKeyboardButtonRequestPeer_,
|
|
64114
66487
|
KeyboardButtonRow: KeyboardButtonRow_,
|
|
64115
66488
|
ReplyKeyboardHide: ReplyKeyboardHide_,
|
|
64116
66489
|
ReplyKeyboardForceReply: ReplyKeyboardForceReply_,
|
|
@@ -64644,6 +67017,59 @@ export const types = {
|
|
|
64644
67017
|
InputQuickReplyShortcut: InputQuickReplyShortcut_,
|
|
64645
67018
|
InputQuickReplyShortcutId: InputQuickReplyShortcutId_,
|
|
64646
67019
|
ConnectedBot: ConnectedBot_,
|
|
67020
|
+
Birthday: Birthday_,
|
|
67021
|
+
BotBusinessConnection: BotBusinessConnection_,
|
|
67022
|
+
InputBusinessIntro: InputBusinessIntro_,
|
|
67023
|
+
BusinessIntro: BusinessIntro_,
|
|
67024
|
+
InputCollectibleUsername: InputCollectibleUsername_,
|
|
67025
|
+
InputCollectiblePhone: InputCollectiblePhone_,
|
|
67026
|
+
InputBusinessBotRecipients: InputBusinessBotRecipients_,
|
|
67027
|
+
BusinessBotRecipients: BusinessBotRecipients_,
|
|
67028
|
+
ContactBirthday: ContactBirthday_,
|
|
67029
|
+
MissingInvitee: MissingInvitee_,
|
|
67030
|
+
InputBusinessChatLink: InputBusinessChatLink_,
|
|
67031
|
+
BusinessChatLink: BusinessChatLink_,
|
|
67032
|
+
RequestedPeerUser: RequestedPeerUser_,
|
|
67033
|
+
RequestedPeerChat: RequestedPeerChat_,
|
|
67034
|
+
RequestedPeerChannel: RequestedPeerChannel_,
|
|
67035
|
+
SponsoredMessageReportOption: SponsoredMessageReportOption_,
|
|
67036
|
+
BroadcastRevenueTransactionProceeds: BroadcastRevenueTransactionProceeds_,
|
|
67037
|
+
BroadcastRevenueTransactionWithdrawal: BroadcastRevenueTransactionWithdrawal_,
|
|
67038
|
+
BroadcastRevenueTransactionRefund: BroadcastRevenueTransactionRefund_,
|
|
67039
|
+
help: {
|
|
67040
|
+
ConfigSimple: help_ConfigSimple_,
|
|
67041
|
+
AppUpdate: help_AppUpdate_,
|
|
67042
|
+
NoAppUpdate: help_NoAppUpdate_,
|
|
67043
|
+
InviteText: help_InviteText_,
|
|
67044
|
+
Support: help_Support_,
|
|
67045
|
+
TermsOfService: help_TermsOfService_,
|
|
67046
|
+
RecentMeUrls: help_RecentMeUrls_,
|
|
67047
|
+
TermsOfServiceUpdateEmpty: help_TermsOfServiceUpdateEmpty_,
|
|
67048
|
+
TermsOfServiceUpdate: help_TermsOfServiceUpdate_,
|
|
67049
|
+
DeepLinkInfoEmpty: help_DeepLinkInfoEmpty_,
|
|
67050
|
+
DeepLinkInfo: help_DeepLinkInfo_,
|
|
67051
|
+
PassportConfigNotModified: help_PassportConfigNotModified_,
|
|
67052
|
+
PassportConfig: help_PassportConfig_,
|
|
67053
|
+
SupportName: help_SupportName_,
|
|
67054
|
+
UserInfoEmpty: help_UserInfoEmpty_,
|
|
67055
|
+
UserInfo: help_UserInfo_,
|
|
67056
|
+
PromoDataEmpty: help_PromoDataEmpty_,
|
|
67057
|
+
PromoData: help_PromoData_,
|
|
67058
|
+
CountryCode: help_CountryCode_,
|
|
67059
|
+
Country: help_Country_,
|
|
67060
|
+
CountriesListNotModified: help_CountriesListNotModified_,
|
|
67061
|
+
CountriesList: help_CountriesList_,
|
|
67062
|
+
PremiumPromo: help_PremiumPromo_,
|
|
67063
|
+
AppConfigNotModified: help_AppConfigNotModified_,
|
|
67064
|
+
AppConfig: help_AppConfig_,
|
|
67065
|
+
PeerColorSet: help_PeerColorSet_,
|
|
67066
|
+
PeerColorProfileSet: help_PeerColorProfileSet_,
|
|
67067
|
+
PeerColorOption: help_PeerColorOption_,
|
|
67068
|
+
PeerColorsNotModified: help_PeerColorsNotModified_,
|
|
67069
|
+
PeerColors: help_PeerColors_,
|
|
67070
|
+
TimezonesListNotModified: help_TimezonesListNotModified_,
|
|
67071
|
+
TimezonesList: help_TimezonesList_,
|
|
67072
|
+
},
|
|
64647
67073
|
storage: {
|
|
64648
67074
|
FileUnknown: storage_FileUnknown_,
|
|
64649
67075
|
FilePartial: storage_FilePartial_,
|
|
@@ -64693,6 +67119,7 @@ export const types = {
|
|
|
64693
67119
|
TopPeersNotModified: contacts_TopPeersNotModified_,
|
|
64694
67120
|
TopPeers: contacts_TopPeers_,
|
|
64695
67121
|
TopPeersDisabled: contacts_TopPeersDisabled_,
|
|
67122
|
+
ContactBirthdays: contacts_ContactBirthdays_,
|
|
64696
67123
|
},
|
|
64697
67124
|
messages: {
|
|
64698
67125
|
Dialogs: messages_Dialogs_,
|
|
@@ -64774,6 +67201,8 @@ export const types = {
|
|
|
64774
67201
|
QuickReplies: messages_QuickReplies_,
|
|
64775
67202
|
QuickRepliesNotModified: messages_QuickRepliesNotModified_,
|
|
64776
67203
|
DialogFilters: messages_DialogFilters_,
|
|
67204
|
+
MyStickers: messages_MyStickers_,
|
|
67205
|
+
InvitedUsers: messages_InvitedUsers_,
|
|
64777
67206
|
},
|
|
64778
67207
|
updates: {
|
|
64779
67208
|
State: updates_State_,
|
|
@@ -64797,39 +67226,6 @@ export const types = {
|
|
|
64797
67226
|
CdnFileReuploadNeeded: upload_CdnFileReuploadNeeded_,
|
|
64798
67227
|
CdnFile: upload_CdnFile_,
|
|
64799
67228
|
},
|
|
64800
|
-
help: {
|
|
64801
|
-
AppUpdate: help_AppUpdate_,
|
|
64802
|
-
NoAppUpdate: help_NoAppUpdate_,
|
|
64803
|
-
InviteText: help_InviteText_,
|
|
64804
|
-
Support: help_Support_,
|
|
64805
|
-
TermsOfService: help_TermsOfService_,
|
|
64806
|
-
RecentMeUrls: help_RecentMeUrls_,
|
|
64807
|
-
TermsOfServiceUpdateEmpty: help_TermsOfServiceUpdateEmpty_,
|
|
64808
|
-
TermsOfServiceUpdate: help_TermsOfServiceUpdate_,
|
|
64809
|
-
DeepLinkInfoEmpty: help_DeepLinkInfoEmpty_,
|
|
64810
|
-
DeepLinkInfo: help_DeepLinkInfo_,
|
|
64811
|
-
PassportConfigNotModified: help_PassportConfigNotModified_,
|
|
64812
|
-
PassportConfig: help_PassportConfig_,
|
|
64813
|
-
SupportName: help_SupportName_,
|
|
64814
|
-
UserInfoEmpty: help_UserInfoEmpty_,
|
|
64815
|
-
UserInfo: help_UserInfo_,
|
|
64816
|
-
PromoDataEmpty: help_PromoDataEmpty_,
|
|
64817
|
-
PromoData: help_PromoData_,
|
|
64818
|
-
CountryCode: help_CountryCode_,
|
|
64819
|
-
Country: help_Country_,
|
|
64820
|
-
CountriesListNotModified: help_CountriesListNotModified_,
|
|
64821
|
-
CountriesList: help_CountriesList_,
|
|
64822
|
-
PremiumPromo: help_PremiumPromo_,
|
|
64823
|
-
AppConfigNotModified: help_AppConfigNotModified_,
|
|
64824
|
-
AppConfig: help_AppConfig_,
|
|
64825
|
-
PeerColorSet: help_PeerColorSet_,
|
|
64826
|
-
PeerColorProfileSet: help_PeerColorProfileSet_,
|
|
64827
|
-
PeerColorOption: help_PeerColorOption_,
|
|
64828
|
-
PeerColorsNotModified: help_PeerColorsNotModified_,
|
|
64829
|
-
PeerColors: help_PeerColors_,
|
|
64830
|
-
TimezonesListNotModified: help_TimezonesListNotModified_,
|
|
64831
|
-
TimezonesList: help_TimezonesList_,
|
|
64832
|
-
},
|
|
64833
67229
|
account: {
|
|
64834
67230
|
PrivacyRules: account_PrivacyRules_,
|
|
64835
67231
|
Authorizations: account_Authorizations_,
|
|
@@ -64860,6 +67256,8 @@ export const types = {
|
|
|
64860
67256
|
EmailVerifiedLogin: account_EmailVerifiedLogin_,
|
|
64861
67257
|
AutoSaveSettings: account_AutoSaveSettings_,
|
|
64862
67258
|
ConnectedBots: account_ConnectedBots_,
|
|
67259
|
+
BusinessChatLinks: account_BusinessChatLinks_,
|
|
67260
|
+
ResolvedBusinessChatLinks: account_ResolvedBusinessChatLinks_,
|
|
64863
67261
|
},
|
|
64864
67262
|
channels: {
|
|
64865
67263
|
ChannelParticipants: channels_ChannelParticipants_,
|
|
@@ -64867,6 +67265,9 @@ export const types = {
|
|
|
64867
67265
|
ChannelParticipant: channels_ChannelParticipant_,
|
|
64868
67266
|
AdminLogResults: channels_AdminLogResults_,
|
|
64869
67267
|
SendAsPeers: channels_SendAsPeers_,
|
|
67268
|
+
SponsoredMessageReportResultChooseOption: channels_SponsoredMessageReportResultChooseOption_,
|
|
67269
|
+
SponsoredMessageReportResultAdsHidden: channels_SponsoredMessageReportResultAdsHidden_,
|
|
67270
|
+
SponsoredMessageReportResultReported: channels_SponsoredMessageReportResultReported_,
|
|
64870
67271
|
},
|
|
64871
67272
|
payments: {
|
|
64872
67273
|
PaymentForm: payments_PaymentForm_,
|
|
@@ -64896,6 +67297,9 @@ export const types = {
|
|
|
64896
67297
|
MessageStats: stats_MessageStats_,
|
|
64897
67298
|
StoryStats: stats_StoryStats_,
|
|
64898
67299
|
PublicForwards: stats_PublicForwards_,
|
|
67300
|
+
BroadcastRevenueStats: stats_BroadcastRevenueStats_,
|
|
67301
|
+
BroadcastRevenueWithdrawalUrl: stats_BroadcastRevenueWithdrawalUrl_,
|
|
67302
|
+
BroadcastRevenueTransactions: stats_BroadcastRevenueTransactions_,
|
|
64899
67303
|
},
|
|
64900
67304
|
stickers: {
|
|
64901
67305
|
SuggestedShortName: stickers_SuggestedShortName_,
|
|
@@ -64931,6 +67335,9 @@ export const types = {
|
|
|
64931
67335
|
EligibleToJoin: smsjobs_EligibleToJoin_,
|
|
64932
67336
|
Status: smsjobs_Status_,
|
|
64933
67337
|
},
|
|
67338
|
+
fragment: {
|
|
67339
|
+
CollectibleInfo: fragment_CollectibleInfo_,
|
|
67340
|
+
},
|
|
64934
67341
|
};
|
|
64935
67342
|
export const map = new Map([
|
|
64936
67343
|
[0x05162463, ResPQ_],
|
|
@@ -64969,7 +67376,12 @@ export const map = new Map([
|
|
|
64969
67376
|
[0x9299359F, Http_wait_],
|
|
64970
67377
|
[0x3FEDD339, True_],
|
|
64971
67378
|
[0xC4B9F9BB, Error_],
|
|
64972
|
-
[
|
|
67379
|
+
[0xD433AD73, IpPort_],
|
|
67380
|
+
[0x37982646, IpPortSecret_],
|
|
67381
|
+
[0x4679B65F, AccessPointRule_],
|
|
67382
|
+
[0x5A592A6C, help_ConfigSimple_],
|
|
67383
|
+
[0x27D69997, InputPeerPhotoFileLocationLegacy_],
|
|
67384
|
+
[0x0DBAEAE9, InputStickerSetThumbLegacy_],
|
|
64973
67385
|
[0x7F3B18EA, InputPeerEmpty_],
|
|
64974
67386
|
[0x7DA07EC9, InputPeerSelf_],
|
|
64975
67387
|
[0x35A95CB9, InputPeerChat_],
|
|
@@ -65056,7 +67468,7 @@ export const map = new Map([
|
|
|
65056
67468
|
[0x37C1011C, ChatPhotoEmpty_],
|
|
65057
67469
|
[0x1C6E1C11, ChatPhoto_],
|
|
65058
67470
|
[0x90A6CA84, MessageEmpty_],
|
|
65059
|
-
[
|
|
67471
|
+
[0x2357BF25, Message_],
|
|
65060
67472
|
[0x2B085862, MessageService_],
|
|
65061
67473
|
[0x3DED6320, MessageMediaEmpty_],
|
|
65062
67474
|
[0x695150D7, MessageMediaPhoto_],
|
|
@@ -65116,6 +67528,7 @@ export const map = new Map([
|
|
|
65116
67528
|
[0x332BA9ED, MessageActionGiveawayLaunch_],
|
|
65117
67529
|
[0x2A9FADC5, MessageActionGiveawayResults_],
|
|
65118
67530
|
[0xCC02AA6D, MessageActionBoostApply_],
|
|
67531
|
+
[0x93B31848, MessageActionRequestedPeerSentMe_],
|
|
65119
67532
|
[0xD58A08C6, Dialog_],
|
|
65120
67533
|
[0x71BD134C, DialogFolder_],
|
|
65121
67534
|
[0x2331B22D, PhotoEmpty_],
|
|
@@ -65140,7 +67553,7 @@ export const map = new Map([
|
|
|
65140
67553
|
[0x5C467992, InputNotifyForumTopic_],
|
|
65141
67554
|
[0xCACB6AE2, InputPeerNotifySettings_],
|
|
65142
67555
|
[0x99622C0C, PeerNotifySettings_],
|
|
65143
|
-
[
|
|
67556
|
+
[0xACD66C5E, PeerSettings_],
|
|
65144
67557
|
[0xA437C3ED, WallPaper_],
|
|
65145
67558
|
[0xE0804116, WallPaperNoFile_],
|
|
65146
67559
|
[0x58DBCAB8, InputReportReasonSpam_],
|
|
@@ -65153,7 +67566,7 @@ export const map = new Map([
|
|
|
65153
67566
|
[0xF5DDD6E7, InputReportReasonFake_],
|
|
65154
67567
|
[0x0A8EB2BE, InputReportReasonIllegalDrugs_],
|
|
65155
67568
|
[0x9EC7863D, InputReportReasonPersonalDetails_],
|
|
65156
|
-
[
|
|
67569
|
+
[0xCC997720, UserFull_],
|
|
65157
67570
|
[0x145ADE0B, Contact_],
|
|
65158
67571
|
[0xC13E3C50, ImportedContact_],
|
|
65159
67572
|
[0x16D9703B, ContactStatus_],
|
|
@@ -65301,7 +67714,6 @@ export const map = new Map([
|
|
|
65301
67714
|
[0xFE198602, UpdateChannelPinnedTopics_],
|
|
65302
67715
|
[0x20529438, UpdateUser_],
|
|
65303
67716
|
[0xEC05B097, UpdateAutoSaveSettings_],
|
|
65304
|
-
[0xCCF08AD6, UpdateGroupInvitePrivacyForbidden_],
|
|
65305
67717
|
[0x75B3B798, UpdateStory_],
|
|
65306
67718
|
[0xF74E932B, UpdateReadStories_],
|
|
65307
67719
|
[0x1BF335B9, UpdateStoryID_],
|
|
@@ -65321,6 +67733,10 @@ export const map = new Map([
|
|
|
65321
67733
|
[0x53E6F1EC, UpdateDeleteQuickReply_],
|
|
65322
67734
|
[0x3E050D0F, UpdateQuickReplyMessage_],
|
|
65323
67735
|
[0x566FE7CD, UpdateDeleteQuickReplyMessages_],
|
|
67736
|
+
[0x8AE5C97A, UpdateBotBusinessConnect_],
|
|
67737
|
+
[0x9DDB347C, UpdateBotNewBusinessMessage_],
|
|
67738
|
+
[0x07DF587C, UpdateBotEditBusinessMessage_],
|
|
67739
|
+
[0xA02A982E, UpdateBotDeleteBusinessMessage_],
|
|
65324
67740
|
[0xA56C2A3E, updates_State_],
|
|
65325
67741
|
[0x5D75A138, updates_DifferenceEmpty_],
|
|
65326
67742
|
[0x00F49CA0, updates_Difference_],
|
|
@@ -65401,6 +67817,7 @@ export const map = new Map([
|
|
|
65401
67817
|
[0xD1219BDD, InputPrivacyKeyAddedByPhone_],
|
|
65402
67818
|
[0xAEE69D68, InputPrivacyKeyVoiceMessages_],
|
|
65403
67819
|
[0x3823CC40, InputPrivacyKeyAbout_],
|
|
67820
|
+
[0xD65A11CC, InputPrivacyKeyBirthday_],
|
|
65404
67821
|
[0xBC2EAB30, PrivacyKeyStatusTimestamp_],
|
|
65405
67822
|
[0x500E6DFA, PrivacyKeyChatInvite_],
|
|
65406
67823
|
[0x3D662B7B, PrivacyKeyPhoneCall_],
|
|
@@ -65411,6 +67828,7 @@ export const map = new Map([
|
|
|
65411
67828
|
[0x42FFD42B, PrivacyKeyAddedByPhone_],
|
|
65412
67829
|
[0x0697F414, PrivacyKeyVoiceMessages_],
|
|
65413
67830
|
[0xA486B761, PrivacyKeyAbout_],
|
|
67831
|
+
[0x2000A518, PrivacyKeyBirthday_],
|
|
65414
67832
|
[0x0D09E07B, InputPrivacyValueAllowContacts_],
|
|
65415
67833
|
[0x184B35CE, InputPrivacyValueAllowAll_],
|
|
65416
67834
|
[0x131CC67F, InputPrivacyValueAllowUsers_],
|
|
@@ -65420,6 +67838,7 @@ export const map = new Map([
|
|
|
65420
67838
|
[0x840649CF, InputPrivacyValueAllowChatParticipants_],
|
|
65421
67839
|
[0xE94F0F86, InputPrivacyValueDisallowChatParticipants_],
|
|
65422
67840
|
[0x2F453E49, InputPrivacyValueAllowCloseFriends_],
|
|
67841
|
+
[0x77CDC9F1, InputPrivacyValueAllowPremium_],
|
|
65423
67842
|
[0xFFFE1BAC, PrivacyValueAllowContacts_],
|
|
65424
67843
|
[0x65427B82, PrivacyValueAllowAll_],
|
|
65425
67844
|
[0xB8905FB2, PrivacyValueAllowUsers_],
|
|
@@ -65429,6 +67848,7 @@ export const map = new Map([
|
|
|
65429
67848
|
[0x6B134E8E, PrivacyValueAllowChatParticipants_],
|
|
65430
67849
|
[0x41C87565, PrivacyValueDisallowChatParticipants_],
|
|
65431
67850
|
[0xF7E8D89B, PrivacyValueAllowCloseFriends_],
|
|
67851
|
+
[0xECE9814B, PrivacyValueAllowPremium_],
|
|
65432
67852
|
[0x50A04E45, account_PrivacyRules_],
|
|
65433
67853
|
[0xB8D0AFDF, AccountDaysTTL_],
|
|
65434
67854
|
[0x6C37C15C, DocumentAttributeImageSize_],
|
|
@@ -65493,6 +67913,7 @@ export const map = new Map([
|
|
|
65493
67913
|
[0x13767230, KeyboardButtonWebView_],
|
|
65494
67914
|
[0xA0C0505C, KeyboardButtonSimpleWebView_],
|
|
65495
67915
|
[0x53D7BFD8, KeyboardButtonRequestPeer_],
|
|
67916
|
+
[0xC9662D05, InputKeyboardButtonRequestPeer_],
|
|
65496
67917
|
[0x77608B83, KeyboardButtonRow_],
|
|
65497
67918
|
[0xA03E5B85, ReplyKeyboardHide_],
|
|
65498
67919
|
[0x86B40B08, ReplyKeyboardForceReply_],
|
|
@@ -65708,7 +68129,7 @@ export const map = new Map([
|
|
|
65708
68129
|
[0xC5226F17, PhoneCallWaiting_],
|
|
65709
68130
|
[0x14B0ED0C, PhoneCallRequested_],
|
|
65710
68131
|
[0x3660C311, PhoneCallAccepted_],
|
|
65711
|
-
[
|
|
68132
|
+
[0x30535AF5, PhoneCall_],
|
|
65712
68133
|
[0x50CA4DE1, PhoneCallDiscarded_],
|
|
65713
68134
|
[0x9CC123C7, PhoneConnection_],
|
|
65714
68135
|
[0x635FE375, PhoneConnectionWebrtc_],
|
|
@@ -66207,8 +68628,39 @@ export const map = new Map([
|
|
|
66207
68628
|
[0x01190CF1, InputQuickReplyShortcutId_],
|
|
66208
68629
|
[0xC68D6695, messages_QuickReplies_],
|
|
66209
68630
|
[0x5F91EB5B, messages_QuickRepliesNotModified_],
|
|
66210
|
-
[
|
|
68631
|
+
[0xBD068601, ConnectedBot_],
|
|
66211
68632
|
[0x17D7F87B, account_ConnectedBots_],
|
|
66212
68633
|
[0x2AD93719, messages_DialogFilters_],
|
|
68634
|
+
[0x6C8E1E06, Birthday_],
|
|
68635
|
+
[0x896433B4, BotBusinessConnection_],
|
|
68636
|
+
[0x09C469CD, InputBusinessIntro_],
|
|
68637
|
+
[0x5A0A066D, BusinessIntro_],
|
|
68638
|
+
[0xFAFF629D, messages_MyStickers_],
|
|
68639
|
+
[0xE39460A9, InputCollectibleUsername_],
|
|
68640
|
+
[0xA2E214A4, InputCollectiblePhone_],
|
|
68641
|
+
[0x6EBDFF91, fragment_CollectibleInfo_],
|
|
68642
|
+
[0xC4E5921E, InputBusinessBotRecipients_],
|
|
68643
|
+
[0xB88CF373, BusinessBotRecipients_],
|
|
68644
|
+
[0x1D998733, ContactBirthday_],
|
|
68645
|
+
[0x114FF30D, contacts_ContactBirthdays_],
|
|
68646
|
+
[0x628C9224, MissingInvitee_],
|
|
68647
|
+
[0x7F5DEFA6, messages_InvitedUsers_],
|
|
68648
|
+
[0x11679FA7, InputBusinessChatLink_],
|
|
68649
|
+
[0xB4AE666F, BusinessChatLink_],
|
|
68650
|
+
[0xEC43A2D1, account_BusinessChatLinks_],
|
|
68651
|
+
[0x9A23AF21, account_ResolvedBusinessChatLinks_],
|
|
68652
|
+
[0xD62FF46A, RequestedPeerUser_],
|
|
68653
|
+
[0x7307544F, RequestedPeerChat_],
|
|
68654
|
+
[0x8BA403E4, RequestedPeerChannel_],
|
|
68655
|
+
[0x430D3150, SponsoredMessageReportOption_],
|
|
68656
|
+
[0x846F9E42, channels_SponsoredMessageReportResultChooseOption_],
|
|
68657
|
+
[0x3E3BCF2F, channels_SponsoredMessageReportResultAdsHidden_],
|
|
68658
|
+
[0xAD798849, channels_SponsoredMessageReportResultReported_],
|
|
68659
|
+
[0xD07B4BAD, stats_BroadcastRevenueStats_],
|
|
68660
|
+
[0xEC659737, stats_BroadcastRevenueWithdrawalUrl_],
|
|
68661
|
+
[0x557E2CC4, BroadcastRevenueTransactionProceeds_],
|
|
68662
|
+
[0x5A590978, BroadcastRevenueTransactionWithdrawal_],
|
|
68663
|
+
[0x42D30D2E, BroadcastRevenueTransactionRefund_],
|
|
68664
|
+
[0x87158466, stats_BroadcastRevenueTransactions_],
|
|
66213
68665
|
// deno-lint-ignore no-explicit-any
|
|
66214
68666
|
]);
|