Add "viewed" receipt type to protos

This commit is contained in:
Evan Hahn 2021-06-29 15:11:10 -05:00 committed by GitHub
parent 2cd4160422
commit f87a3a2cb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -279,6 +279,7 @@ message ReceiptMessage {
enum Type {
DELIVERY = 0;
READ = 1;
VIEWED = 2;
}
optional Type type = 1;

1
ts/textsecure.d.ts vendored
View File

@ -893,6 +893,7 @@ export declare namespace ReceiptMessageClass {
class Type {
static DELIVERY: number;
static READ: number;
static VIEWED: number;
}
}