From ecb76b64a33d821bfea66f4135495bb9c11cff65 Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Mon, 29 Mar 2021 16:26:20 -0500 Subject: [PATCH] Add BORDERLESS and GIF attachment flags to proto --- protos/SignalService.proto | 2 ++ ts/textsecure.d.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/protos/SignalService.proto b/protos/SignalService.proto index 0ec2fbe12..6430c730c 100644 --- a/protos/SignalService.proto +++ b/protos/SignalService.proto @@ -428,6 +428,8 @@ message SyncMessage { message AttachmentPointer { enum Flags { VOICE_MESSAGE = 1; + BORDERLESS = 2; + GIF = 3; } oneof attachment_identifier { diff --git a/ts/textsecure.d.ts b/ts/textsecure.d.ts index e47509af9..f1e1ba38d 100644 --- a/ts/textsecure.d.ts +++ b/ts/textsecure.d.ts @@ -575,6 +575,8 @@ export declare class AttachmentPointerClass { static Flags: { VOICE_MESSAGE: number; + BORDERLESS: number; + GIF: number; }; cdnId?: ProtoBigNumberType;