Add BORDERLESS and GIF attachment flags to proto

This commit is contained in:
Evan Hahn 2021-03-29 16:26:20 -05:00 committed by GitHub
parent 902e48e308
commit ecb76b64a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -428,6 +428,8 @@ message SyncMessage {
message AttachmentPointer {
enum Flags {
VOICE_MESSAGE = 1;
BORDERLESS = 2;
GIF = 3;
}
oneof attachment_identifier {

2
ts/textsecure.d.ts vendored
View File

@ -575,6 +575,8 @@ export declare class AttachmentPointerClass {
static Flags: {
VOICE_MESSAGE: number;
BORDERLESS: number;
GIF: number;
};
cdnId?: ProtoBigNumberType;