1
0
mirror of https://github.com/danog/tl-schema.git synced 2024-11-30 04:19:47 +01:00

Add layer 032

This commit is contained in:
Viktor Oreshkin 2017-07-02 19:21:28 +03:00
parent 87a5639c4d
commit 8b3f7c1b21
5 changed files with 136 additions and 16 deletions

4
l032/README.md Normal file
View File

@ -0,0 +1,4 @@
### Version info
App|Version/Hash|Date
---|---|---
TDesktop|405dfbebaeb635470941e90d46ded9a13a6388ff|28.06.15

90
l032/schema.json Normal file
View File

@ -0,0 +1,90 @@
{
"constructors": [
{
"id": "-556656416",
"predicate": "documentAttributeAudio",
"params": [
{
"name": "duration",
"type": "int"
},
{
"name": "title",
"type": "string"
},
{
"name": "performer",
"type": "string"
}
],
"type": "DocumentAttribute"
},
{
"id": "-719474725",
"predicate": "messages.allStickers",
"params": [
{
"name": "hash",
"type": "string"
},
{
"name": "sets",
"type": "Vector<StickerSet>"
}
],
"type": "messages.AllStickers"
},
{
"id": "-852477119",
"predicate": "stickerSet",
"params": [
{
"name": "flags",
"type": "#"
},
{
"name": "id",
"type": "long"
},
{
"name": "access_hash",
"type": "long"
},
{
"name": "title",
"type": "string"
},
{
"name": "short_name",
"type": "string"
},
{
"name": "count",
"type": "int"
},
{
"name": "hash",
"type": "int"
}
],
"type": "StickerSet"
}
],
"methods": [
{
"id": "2066793382",
"method": "messages.installStickerSet",
"params": [
{
"name": "stickerset",
"type": "InputStickerSet"
},
{
"name": "disabled",
"type": "Bool"
}
],
"type": "Bool"
}
]
}

10
l032/schema.tl Normal file
View File

@ -0,0 +1,10 @@
---types---
// documentAttributeAudio#51448e5 duration:int = DocumentAttribute;
documentAttributeAudio#ded218e0 duration:int title:string performer:string = DocumentAttribute;
// messages.allStickers#5ce352ec hash:string packs:Vector<StickerPack> sets:Vector<StickerSet> documents:Vector<Document> = messages.AllStickers;
messages.allStickers#d51dafdb hash:string sets:Vector<StickerSet> = messages.AllStickers;
// stickerSet#a7a43b17 id:long access_hash:long title:string short_name:string = StickerSet;
stickerSet#cd303b41 flags:# id:long access_hash:long title:string short_name:string count:int hash:int = StickerSet;
---functions---
// messages.installStickerSet#efbbfae9 stickerset:InputStickerSet = Bool;
messages.installStickerSet#7b30c3a6 stickerset:InputStickerSet disabled:Bool = Bool;

View File

@ -3913,12 +3913,20 @@
"type": "DocumentAttribute"
},
{
"id": "85215461",
"id": "-556656416",
"predicate": "documentAttributeAudio",
"params": [
{
"name": "duration",
"type": "int"
},
{
"name": "title",
"type": "string"
},
{
"name": "performer",
"type": "string"
}
],
"type": "DocumentAttribute"
@ -3977,24 +3985,16 @@
"type": "messages.AllStickers"
},
{
"id": "1558401772",
"id": "-719474725",
"predicate": "messages.allStickers",
"params": [
{
"name": "hash",
"type": "string"
},
{
"name": "packs",
"type": "Vector<StickerPack>"
},
{
"name": "sets",
"type": "Vector<StickerSet>"
},
{
"name": "documents",
"type": "Vector<Document>"
}
],
"type": "messages.AllStickers"
@ -4567,9 +4567,13 @@
"type": "InputStickerSet"
},
{
"id": "-1482409193",
"id": "-852477119",
"predicate": "stickerSet",
"params": [
{
"name": "flags",
"type": "#"
},
{
"name": "id",
"type": "long"
@ -4585,6 +4589,14 @@
{
"name": "short_name",
"type": "string"
},
{
"name": "count",
"type": "int"
},
{
"name": "hash",
"type": "int"
}
],
"type": "StickerSet"
@ -6389,12 +6401,16 @@
"type": "messages.StickerSet"
},
{
"id": "-272893207",
"id": "2066793382",
"method": "messages.installStickerSet",
"params": [
{
"name": "stickerset",
"type": "InputStickerSet"
},
{
"name": "disabled",
"type": "Bool"
}
],
"type": "Bool"

View File

@ -259,13 +259,13 @@ documentAttributeImageSize#6c37c15c w:int h:int = DocumentAttribute;
documentAttributeAnimated#11b58939 = DocumentAttribute;
documentAttributeSticker#3a556302 alt:string stickerset:InputStickerSet = DocumentAttribute;
documentAttributeVideo#5910cccb duration:int w:int h:int = DocumentAttribute;
documentAttributeAudio#51448e5 duration:int = DocumentAttribute;
documentAttributeAudio#ded218e0 duration:int title:string performer:string = DocumentAttribute;
documentAttributeFilename#15590068 file_name:string = DocumentAttribute;
messages.stickersNotModified#f1749a22 = messages.Stickers;
messages.stickers#8a8ecd32 hash:string stickers:Vector<Document> = messages.Stickers;
stickerPack#12b299d4 emoticon:string documents:Vector<long> = StickerPack;
messages.allStickersNotModified#e86602c3 = messages.AllStickers;
messages.allStickers#5ce352ec hash:string packs:Vector<StickerPack> sets:Vector<StickerSet> documents:Vector<Document> = messages.AllStickers;
messages.allStickers#d51dafdb hash:string sets:Vector<StickerSet> = messages.AllStickers;
account.noPassword#96dabc18 new_salt:bytes email_unconfirmed_pattern:string = account.Password;
account.password#7c18141c current_salt:bytes new_salt:bytes hint:string has_recovery:Bool email_unconfirmed_pattern:string = account.Password;
contactSuggested#3de191a1 user_id:int mutual_contacts:int = ContactSuggested;
@ -300,7 +300,7 @@ updateReadMessagesContents#68c13933 messages:Vector<int> pts:int pts_count:int =
inputStickerSetEmpty#ffb62b95 = InputStickerSet;
inputStickerSetID#9de7a269 id:long access_hash:long = InputStickerSet;
inputStickerSetShortName#861cc8a0 short_name:string = InputStickerSet;
stickerSet#a7a43b17 id:long access_hash:long title:string short_name:string = StickerSet;
stickerSet#cd303b41 flags:# id:long access_hash:long title:string short_name:string count:int hash:int = StickerSet;
messages.stickerSet#b60a24a6 set:StickerSet packs:Vector<StickerPack> documents:Vector<Document> = messages.StickerSet;
inputMessagesFilterAudioDocuments#5afbf764 = MessagesFilter;
user#22e49072 flags:# id:int access_hash:flags.0?long first_name:flags.1?string last_name:flags.2?string username:flags.3?string phone:flags.4?string photo:flags.5?UserProfilePhoto status:flags.6?UserStatus bot_info_version:flags.14?int = User;
@ -425,7 +425,7 @@ messages.exportChatInvite#7d885289 chat_id:int = ExportedChatInvite;
messages.checkChatInvite#3eadb1bb hash:string = ChatInvite;
messages.importChatInvite#6c50051c hash:string = Updates;
messages.getStickerSet#2619a90e stickerset:InputStickerSet = messages.StickerSet;
messages.installStickerSet#efbbfae9 stickerset:InputStickerSet = Bool;
messages.installStickerSet#7b30c3a6 stickerset:InputStickerSet disabled:Bool = Bool;
messages.uninstallStickerSet#f96e55de stickerset:InputStickerSet = Bool;
auth.importBotAuthorization#67a3ff2c flags:int api_id:int api_hash:string bot_auth_token:string = auth.Authorization;
messages.startBot#1b3e0ffc bot:InputUser chat_id:int random_id:long start_param:string = Updates;