From f87a3a2cb7073fd7cf084616de4353f9baa18ed9 Mon Sep 17 00:00:00 2001 From: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com> Date: Tue, 29 Jun 2021 15:11:10 -0500 Subject: [PATCH] Add "viewed" receipt type to protos --- protos/SignalService.proto | 1 + ts/textsecure.d.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/protos/SignalService.proto b/protos/SignalService.proto index 92a62d6be2..6279e666c9 100644 --- a/protos/SignalService.proto +++ b/protos/SignalService.proto @@ -279,6 +279,7 @@ message ReceiptMessage { enum Type { DELIVERY = 0; READ = 1; + VIEWED = 2; } optional Type type = 1; diff --git a/ts/textsecure.d.ts b/ts/textsecure.d.ts index 9ab358aed5..ca88d2efdf 100644 --- a/ts/textsecure.d.ts +++ b/ts/textsecure.d.ts @@ -893,6 +893,7 @@ export declare namespace ReceiptMessageClass { class Type { static DELIVERY: number; static READ: number; + static VIEWED: number; } }