mirror of
https://github.com/wiz0u/WTelegramClient.git
synced 2025-12-06 06:52:01 +01:00
Upgrade to layer 139 : RTMP groupcalls, video stickerset, ...
This commit is contained in:
parent
78d7e250f3
commit
07fcb2d9e4
|
|
@ -1,6 +1,6 @@
|
|||
[](https://www.nuget.org/packages/WTelegramClient/)
|
||||
[](https://dev.azure.com/wiz0u/WTelegramClient/_build?definitionId=7)
|
||||
[](https://corefork.telegram.org/methods)
|
||||
[](https://corefork.telegram.org/methods)
|
||||
[](https://dev.azure.com/wiz0u/WTelegramClient/_packaging?_a=package&feed=WTelegramClient&package=WTelegramClient&protocolType=NuGet)
|
||||
[](https://t.me/WTelegramClient)
|
||||
[](http://wizou.fr/donate.html)
|
||||
|
|
|
|||
459
src/TL.Schema.cs
459
src/TL.Schema.cs
File diff suppressed because it is too large
Load diff
|
|
@ -102,13 +102,13 @@ namespace TL
|
|||
/// <summary>Initialization vector</summary>
|
||||
public byte[] iv;
|
||||
}
|
||||
/// <summary>GeoPont attached to an encrypted message. <para>See <a href="https://corefork.telegram.org/constructor/decryptedMessageMediaGeoPoint"/></para></summary>
|
||||
/// <summary>GeoPoint attached to an encrypted message. <para>See <a href="https://corefork.telegram.org/constructor/decryptedMessageMediaGeoPoint"/></para></summary>
|
||||
[TLDef(0x35480A59)]
|
||||
public class DecryptedMessageMediaGeoPoint : DecryptedMessageMedia
|
||||
{
|
||||
/// <summary>Latitude of point</summary>
|
||||
public double lat;
|
||||
/// <summary>Longtitude of point</summary>
|
||||
/// <summary>Longitude of point</summary>
|
||||
public double lon;
|
||||
}
|
||||
/// <summary>Contact attached to an encrypted message. <para>See <a href="https://corefork.telegram.org/constructor/decryptedMessageMediaContact"/></para></summary>
|
||||
|
|
@ -289,7 +289,7 @@ namespace TL
|
|||
[TLDef(0xF3048883)]
|
||||
public class DecryptedMessageActionNotifyLayer : DecryptedMessageAction
|
||||
{
|
||||
/// <summary>Layer number, must be <strong>17</strong> or higher (this contructor was introduced in <a href="https://corefork.telegram.org/api/layers#layer-17">Layer 17</a>).</summary>
|
||||
/// <summary>Layer number, must be <strong>17</strong> or higher (this constructor was introduced in <a href="https://corefork.telegram.org/api/layers#layer-17">Layer 17</a>).</summary>
|
||||
public int layer;
|
||||
}
|
||||
/// <summary>User is preparing a message: typing, recording, uploading, etc. <para>See <a href="https://corefork.telegram.org/constructor/decryptedMessageActionTyping"/></para></summary>
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ namespace TL
|
|||
{
|
||||
public static class Layer
|
||||
{
|
||||
public const int Version = 138; // fetched 31/01/2022 22:18:08
|
||||
public const int Version = 139; // fetched 01/03/2022 09:53:50
|
||||
internal const uint VectorCtor = 0x1CB5C415;
|
||||
internal const uint NullCtor = 0x56730BCC;
|
||||
internal const uint RpcResultCtor = 0xF35C6D01;
|
||||
|
|
@ -941,6 +941,9 @@ namespace TL
|
|||
[0x67CA4737] = typeof(Messages_TranslateNoResult),
|
||||
[0xA214F7D0] = typeof(Messages_TranslateResultText),
|
||||
[0x51B67EFF] = typeof(MessagePeerReaction),
|
||||
[0x80EB48AF] = typeof(GroupCallStreamChannel),
|
||||
[0xD0E482B2] = typeof(Phone_GroupCallStreamChannels),
|
||||
[0x2DBF3432] = typeof(Phone_GroupCallStreamRtmpUrl),
|
||||
// from TL.Secret:
|
||||
[0xBB718624] = typeof(Layer66.SendMessageUploadRoundAction),
|
||||
[0xE50511D8] = typeof(Layer45.DecryptedMessageMediaWebPage),
|
||||
|
|
|
|||
Loading…
Reference in a new issue