mirror of
https://github.com/wiz0u/WTelegramClient.git
synced 2026-01-05 00:00:21 +01:00
API Layer 155: timestamp of reactions
This commit is contained in:
parent
b63829393e
commit
fd9177f805
|
|
@ -1,4 +1,4 @@
|
|||
[](https://corefork.telegram.org/methods)
|
||||
[](https://corefork.telegram.org/methods)
|
||||
[](https://www.nuget.org/packages/WTelegramClient/)
|
||||
[](https://dev.azure.com/wiz0u/WTelegramClient/_build?definitionId=7)
|
||||
[](http://t.me/WTelegramBot?start=donate)
|
||||
|
|
|
|||
|
|
@ -4449,6 +4449,12 @@ namespace TL
|
|||
/// <summary><para>See <a href="https://corefork.telegram.org/constructor/updateAutoSaveSettings"/></para></summary>
|
||||
[TLDef(0xEC05B097)]
|
||||
public class UpdateAutoSaveSettings : Update { }
|
||||
/// <summary><para>See <a href="https://corefork.telegram.org/constructor/updateGroupInvitePrivacyForbidden"/></para></summary>
|
||||
[TLDef(0xCCF08AD6)]
|
||||
public class UpdateGroupInvitePrivacyForbidden : Update
|
||||
{
|
||||
public long user_id;
|
||||
}
|
||||
|
||||
/// <summary>Updates state. <para>See <a href="https://corefork.telegram.org/constructor/updates.state"/></para></summary>
|
||||
[TLDef(0xA56C2A3E)]
|
||||
|
|
@ -13442,13 +13448,14 @@ namespace TL
|
|||
}
|
||||
|
||||
/// <summary>How a certain peer reacted to the message <para>See <a href="https://corefork.telegram.org/constructor/messagePeerReaction"/></para></summary>
|
||||
[TLDef(0xB156FE9C)]
|
||||
[TLDef(0x8C79B63C)]
|
||||
public class MessagePeerReaction : IObject
|
||||
{
|
||||
/// <summary>Flags, see <a href="https://corefork.telegram.org/mtproto/TL-combinators#conditional-fields">TL conditional fields</a></summary>
|
||||
public Flags flags;
|
||||
/// <summary>Peer that reacted to the message</summary>
|
||||
public Peer peer_id;
|
||||
public DateTime date;
|
||||
/// <summary>Reaction emoji</summary>
|
||||
public Reaction reaction;
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ namespace TL
|
|||
{
|
||||
public static class Layer
|
||||
{
|
||||
public const int Version = 154; // fetched 08/03/2023 19:08:02
|
||||
public const int Version = 155; // fetched 09/03/2023 20:45:49
|
||||
internal const int SecretChats = 144;
|
||||
internal const int MTProto2 = 73;
|
||||
internal const uint VectorCtor = 0x1CB5C415;
|
||||
|
|
@ -369,6 +369,7 @@ namespace TL
|
|||
[0xFE198602] = typeof(UpdateChannelPinnedTopics),
|
||||
[0x20529438] = typeof(UpdateUser),
|
||||
[0xEC05B097] = typeof(UpdateAutoSaveSettings),
|
||||
[0xCCF08AD6] = typeof(UpdateGroupInvitePrivacyForbidden),
|
||||
[0xA56C2A3E] = typeof(Updates_State),
|
||||
[0x5D75A138] = typeof(Updates_DifferenceEmpty),
|
||||
[0x00F49CA0] = typeof(Updates_Difference),
|
||||
|
|
@ -993,7 +994,7 @@ namespace TL
|
|||
[0xC077EC01] = typeof(AvailableReaction),
|
||||
[0x9F071957] = null,//Messages_AvailableReactionsNotModified
|
||||
[0x768E3AAD] = typeof(Messages_AvailableReactions),
|
||||
[0xB156FE9C] = typeof(MessagePeerReaction),
|
||||
[0x8C79B63C] = typeof(MessagePeerReaction),
|
||||
[0x80EB48AF] = typeof(GroupCallStreamChannel),
|
||||
[0xD0E482B2] = typeof(Phone_GroupCallStreamChannels),
|
||||
[0x2DBF3432] = typeof(Phone_GroupCallStreamRtmpUrl),
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
<PackageId>WTelegramClient</PackageId>
|
||||
<Version>0.0.0</Version>
|
||||
<Authors>Wizou</Authors>
|
||||
<Description>Telegram Client API (MTProto) library written 100% in C# and .NET Standard | Latest API layer: 154 Release Notes: $(ReleaseNotes.Replace("|", "%0D%0A").Replace(" - ","%0D%0A- ").Replace(" ", "%0D%0A%0D%0A"))</Description>
|
||||
<Description>Telegram Client API (MTProto) library written 100% in C# and .NET Standard | Latest API layer: 155 Release Notes: $(ReleaseNotes.Replace("|", "%0D%0A").Replace(" - ","%0D%0A- ").Replace(" ", "%0D%0A%0D%0A"))</Description>
|
||||
<Copyright>Copyright © Olivier Marcoux 2021-2023</Copyright>
|
||||
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
||||
<PackageProjectUrl>https://github.com/wiz0u/WTelegramClient</PackageProjectUrl>
|
||||
|
|
|
|||
Loading…
Reference in a new issue