Add "viewed" receipt type to protos
This commit is contained in:
parent
2cd4160422
commit
f87a3a2cb7
2 changed files with 2 additions and 0 deletions
|
@ -279,6 +279,7 @@ message ReceiptMessage {
|
||||||
enum Type {
|
enum Type {
|
||||||
DELIVERY = 0;
|
DELIVERY = 0;
|
||||||
READ = 1;
|
READ = 1;
|
||||||
|
VIEWED = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
optional Type type = 1;
|
optional Type type = 1;
|
||||||
|
|
1
ts/textsecure.d.ts
vendored
1
ts/textsecure.d.ts
vendored
|
@ -893,6 +893,7 @@ export declare namespace ReceiptMessageClass {
|
||||||
class Type {
|
class Type {
|
||||||
static DELIVERY: number;
|
static DELIVERY: number;
|
||||||
static READ: number;
|
static READ: number;
|
||||||
|
static VIEWED: number;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue