2023-06-30 09:54:08 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package conversations;
|
|
|
|
|
2023-07-17 13:49:49 +00:00
|
|
|
option go_package = "../binary";
|
2023-06-30 09:54:08 +00:00
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
import "reactions.proto";
|
|
|
|
|
2023-07-09 17:35:29 +00:00
|
|
|
message GetParticipantThumbnailPayload {
|
|
|
|
string conversationID = 1;
|
|
|
|
}
|
|
|
|
|
2023-07-16 21:51:17 +00:00
|
|
|
message ListContactsPayload {
|
|
|
|
int32 i1 = 5; // = 1
|
|
|
|
int32 i2 = 6; // = 350
|
|
|
|
int32 i3 = 7; // = 50
|
|
|
|
}
|
|
|
|
|
|
|
|
message ListTopContactsPayload {
|
|
|
|
int32 count = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message GetContactsThumbnailPayload {
|
|
|
|
repeated string avatarIDs = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Contact {
|
|
|
|
string ID = 1;
|
|
|
|
string name = 2;
|
|
|
|
ContactNumber number = 3;
|
|
|
|
string avatarHexColor = 7;
|
|
|
|
bool unknownBool = 10;
|
|
|
|
string avatarID = 11;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ContactNumber {
|
|
|
|
// Might be 2 for contact and 7 for user input?
|
|
|
|
int32 mysteriousInt = 1;
|
|
|
|
string number = 2;
|
|
|
|
string number2 = 3;
|
|
|
|
optional string formattedNumber = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message GetOrCreateConversationPayload {
|
|
|
|
repeated ContactNumber numbers = 2;
|
2023-07-16 22:52:13 +00:00
|
|
|
optional string RCSGroupName = 3;
|
|
|
|
optional bool createRCSGroup = 4;
|
2023-07-16 21:51:17 +00:00
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
message ResendMessagePayload {
|
|
|
|
string messageID = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ConversationTypePayload {
|
|
|
|
string conversationID = 2;
|
|
|
|
}
|
|
|
|
|
2023-07-15 16:48:11 +00:00
|
|
|
message TypingUpdatePayload {
|
|
|
|
SetTypingIn data = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SetTypingIn {
|
|
|
|
string conversationID = 1;
|
|
|
|
bool typing = 3;
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
message UpdateConversationPayload {
|
|
|
|
UpdateConversationData data = 1;
|
|
|
|
ConversationActionStatus action = 2;
|
|
|
|
string conversationID = 3;
|
|
|
|
ConversationAction5 action5 = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ConversationAction5 {
|
|
|
|
bool field2 = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message UpdateConversationData {
|
|
|
|
string conversationID = 1;
|
|
|
|
oneof data {
|
|
|
|
ConversationStatus status = 12;
|
|
|
|
ConversationMuteStatus mute = 7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
message DeleteMessagePayload {
|
|
|
|
string messageID = 2;
|
|
|
|
}
|
|
|
|
|
2023-06-30 09:54:08 +00:00
|
|
|
message SendMessagePayload {
|
2023-06-30 13:26:46 +00:00
|
|
|
string conversationID = 2;
|
2023-06-30 09:54:08 +00:00
|
|
|
MessagePayload messagePayload = 3;
|
2023-06-30 13:26:46 +00:00
|
|
|
string tmpID = 5;
|
2023-07-09 11:16:52 +00:00
|
|
|
bool isReply = 6; // not sure
|
|
|
|
ReplyPayload reply = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ReplyPayload {
|
|
|
|
string messageID = 1;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message MessagePayload {
|
2023-06-30 13:26:46 +00:00
|
|
|
string tmpID = 1;
|
2023-06-30 09:54:08 +00:00
|
|
|
MessagePayloadContent messagePayloadContent = 6;
|
2023-06-30 13:26:46 +00:00
|
|
|
string conversationID = 7;
|
2023-07-09 11:16:52 +00:00
|
|
|
string selfParticipantID = 9; // might be participantID
|
2023-06-30 09:54:08 +00:00
|
|
|
repeated MessageInfo messageInfo = 10;
|
2023-06-30 13:26:46 +00:00
|
|
|
string tmpID2 = 12;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message MessagePayloadContent {
|
|
|
|
MessageContent messageContent = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message OpenConversationPayload {
|
2023-06-30 13:26:46 +00:00
|
|
|
string conversationID = 2;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message PrepareOpenConversationPayload {
|
|
|
|
int64 field2 = 2; // only seen value 1
|
|
|
|
}
|
|
|
|
|
|
|
|
message FetchConversationMessagesPayload {
|
2023-06-30 13:26:46 +00:00
|
|
|
string conversationID = 2;
|
2023-06-30 09:54:08 +00:00
|
|
|
int64 count = 3;
|
|
|
|
|
|
|
|
Cursor cursor = 5;
|
|
|
|
}
|
|
|
|
|
2023-07-15 21:55:55 +00:00
|
|
|
message ListConversationsPayload {
|
|
|
|
enum Folder {
|
|
|
|
UNKNOWN = 0;
|
|
|
|
INBOX = 1;
|
|
|
|
ARCHIVE = 2;
|
|
|
|
SPAM_BLOCKED = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64 count = 2;
|
|
|
|
Folder folder = 4;
|
2023-07-16 21:51:17 +00:00
|
|
|
optional Cursor cursor = 5;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Cursor {
|
2023-07-16 21:51:17 +00:00
|
|
|
string lastItemID = 1;
|
|
|
|
int64 lastItemTimestamp = 2;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Message {
|
2023-06-30 13:26:46 +00:00
|
|
|
string messageID = 1;
|
2023-07-09 11:16:52 +00:00
|
|
|
MsgType msgType = 3;
|
2023-06-30 09:54:08 +00:00
|
|
|
MessageStatus messageStatus = 4;
|
2023-07-09 11:16:52 +00:00
|
|
|
int64 timestamp = 5; // check this
|
2023-06-30 13:26:46 +00:00
|
|
|
string conversationID = 7;
|
|
|
|
string participantID = 9;
|
2023-06-30 09:54:08 +00:00
|
|
|
repeated MessageInfo messageInfo = 10;
|
2023-07-09 11:16:52 +00:00
|
|
|
int64 type = 11;
|
|
|
|
string tmpID = 12;
|
2023-07-15 16:55:46 +00:00
|
|
|
optional string subject = 14;
|
2023-07-09 11:16:52 +00:00
|
|
|
int64 someInt = 16;
|
|
|
|
repeated reactions.ReactionResponse reactions = 19;
|
2023-07-15 16:55:46 +00:00
|
|
|
optional ReplyMessage replyMessage = 21;
|
2023-07-09 11:16:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message ReplyMessage {
|
|
|
|
string messageID = 1;
|
|
|
|
string conversationID = 2; // might be participantID
|
|
|
|
ReplyMessageData replyMessageData = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ReplyMessageData {
|
|
|
|
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message MessageInfo {
|
2023-07-09 11:16:52 +00:00
|
|
|
string actionMessageID = 1;
|
2023-06-30 09:54:08 +00:00
|
|
|
oneof data {
|
|
|
|
MessageContent messageContent = 2;
|
2023-07-09 11:16:52 +00:00
|
|
|
MediaContent mediaContent = 3;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
message MediaContent {
|
|
|
|
MediaFormats format = 1;
|
|
|
|
string mediaID = 2;
|
|
|
|
string mediaName = 4;
|
2023-06-30 09:54:08 +00:00
|
|
|
int64 size = 5;
|
2023-07-09 11:16:52 +00:00
|
|
|
Pixels pixels = 6;
|
|
|
|
bytes mediaData = 7;
|
|
|
|
string mediaID2 = 9;
|
2023-06-30 09:54:08 +00:00
|
|
|
bytes decryptionKey = 11;
|
|
|
|
bytes decryptionKey2 = 12; // same value as decryptionkey?
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
message Pixels {
|
2023-06-30 09:54:08 +00:00
|
|
|
int64 width = 1;
|
|
|
|
int64 height = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message MessageContent {
|
|
|
|
string content = 1;
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
message MsgType {
|
|
|
|
int64 type = 1;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message MessageStatus {
|
2023-07-09 11:16:52 +00:00
|
|
|
MessageStatusType status = 2;
|
|
|
|
int64 subCode = 3;
|
2023-06-30 09:54:08 +00:00
|
|
|
string errMsg = 4;
|
2023-07-09 11:16:52 +00:00
|
|
|
string statusText = 5;
|
|
|
|
int64 thirdCode = 6;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Conversations {
|
|
|
|
repeated Conversation conversations = 2;
|
2023-07-16 21:51:17 +00:00
|
|
|
optional bytes cursorBytes = 3;
|
|
|
|
optional Cursor cursor = 5;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Conversation {
|
2023-06-30 13:26:46 +00:00
|
|
|
string conversationID = 1;
|
2023-06-30 09:54:08 +00:00
|
|
|
string name = 2;
|
|
|
|
LatestMessage latestMessage = 4;
|
2023-07-09 17:35:29 +00:00
|
|
|
int64 lastMessageTimestamp = 5;
|
2023-07-14 23:17:36 +00:00
|
|
|
bool unread = 6;
|
2023-06-30 09:54:08 +00:00
|
|
|
|
|
|
|
bool isGroupChat = 10; // not certain
|
2023-06-30 13:26:46 +00:00
|
|
|
string selfParticipantID = 11;
|
2023-07-09 11:16:52 +00:00
|
|
|
|
2023-06-30 09:54:08 +00:00
|
|
|
//bool bool1 = 13;
|
2023-07-09 11:16:52 +00:00
|
|
|
ConvUpdateTypes status = 12;
|
|
|
|
string avatarHexColor = 15;
|
|
|
|
string latestMessageID = 17;
|
2023-06-30 09:54:08 +00:00
|
|
|
repeated Participant participants = 20;
|
|
|
|
repeated string otherParticipants = 21; // participant ids excluding me
|
2023-07-09 17:35:29 +00:00
|
|
|
ConversationType type = 22;
|
2023-07-09 11:16:52 +00:00
|
|
|
bool subType = 24;
|
2023-07-14 23:17:36 +00:00
|
|
|
int64 unknownTimestamp = 28; // set to lastMessageTimestamp + 1000 when marking as unread?
|
2023-07-09 11:16:52 +00:00
|
|
|
bool thirdType = 29;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Participant {
|
2023-07-09 11:16:52 +00:00
|
|
|
SmallInfo ID = 1;
|
2023-07-02 14:21:39 +00:00
|
|
|
string firstName = 2;
|
|
|
|
string fullName = 3;
|
2023-07-09 11:16:52 +00:00
|
|
|
string avatarHexColor = 5;
|
2023-06-30 09:54:08 +00:00
|
|
|
bool isMe = 6;
|
|
|
|
Muted muted = 7;
|
2023-07-09 11:16:52 +00:00
|
|
|
int64 someInt = 8;
|
2023-07-01 15:19:47 +00:00
|
|
|
string avatarID = 10;
|
2023-06-30 09:54:08 +00:00
|
|
|
int64 bs = 14;
|
2023-07-01 15:19:47 +00:00
|
|
|
string formattedNumber = 15;
|
2023-07-09 11:16:52 +00:00
|
|
|
int64 someInt1 = 19;
|
|
|
|
int64 someInt2 = 20;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
2023-07-16 21:51:17 +00:00
|
|
|
enum IdentifierType {
|
|
|
|
UNKNOWN = 0;
|
|
|
|
PHONE = 1;
|
|
|
|
EMAIL = 2;
|
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
message SmallInfo {
|
2023-07-16 21:51:17 +00:00
|
|
|
IdentifierType type = 1;
|
2023-06-30 09:54:08 +00:00
|
|
|
string number = 2;
|
2023-06-30 13:26:46 +00:00
|
|
|
string participantID = 3;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message LatestMessage {
|
2023-07-09 11:16:52 +00:00
|
|
|
string displayContent = 1;
|
|
|
|
int64 fromMe = 2; // isMe?
|
2023-06-30 13:00:52 +00:00
|
|
|
|
2023-06-30 09:54:08 +00:00
|
|
|
string displayName = 4;
|
2023-07-09 11:16:52 +00:00
|
|
|
LatestMessageStatus latestMessageStatus = 5;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
message LatestMessageStatus {
|
|
|
|
int64 status2 = 1;
|
|
|
|
MessageStatusType status = 2;
|
2023-06-30 09:54:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Muted {
|
2023-07-09 17:35:29 +00:00
|
|
|
int64 isMuted = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ConversationType {
|
|
|
|
UNKNOWN_CONVERSATION_TYPE = 0;
|
|
|
|
SMS = 1;
|
|
|
|
RCS = 2;
|
2023-06-30 13:00:52 +00:00
|
|
|
}
|
2023-07-09 11:16:52 +00:00
|
|
|
|
|
|
|
enum MessageStatusType {
|
|
|
|
STATUS_UNKNOWN = 0;
|
2023-07-09 20:59:22 +00:00
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
OUTGOING_COMPLETE = 1;
|
|
|
|
OUTGOING_DELIVERED = 2;
|
|
|
|
OUTGOING_DISPLAYED = 11;
|
|
|
|
OUTGOING_DRAFT = 3;
|
|
|
|
OUTGOING_SEND_AFTER_PROCESSING = 10;
|
|
|
|
OUTGOING_YET_TO_SEND = 4;
|
|
|
|
OUTGOING_SENDING = 5;
|
|
|
|
OUTGOING_RESENDING = 6;
|
|
|
|
OUTGOING_AWAITING_RETRY = 7;
|
|
|
|
OUTGOING_FAILED_GENERIC = 8;
|
|
|
|
OUTGOING_FAILED_EMERGENCY_NUMBER = 9;
|
|
|
|
OUTGOING_CANCELED = 12;
|
|
|
|
OUTGOING_FAILED_TOO_LARGE = 13;
|
|
|
|
OUTGOING_NOT_DELIVERED_YET = 14;
|
|
|
|
OUTGOING_REVOCATION_PENDING = 15;
|
|
|
|
OUTGOING_SCHEDULED = 16;
|
|
|
|
OUTGOING_FAILED_RECIPIENT_LOST_RCS = 17;
|
|
|
|
OUTGOING_FAILED_NO_RETRY_NO_FALLBACK = 18;
|
|
|
|
OUTGOING_FAILED_RECIPIENT_DID_NOT_DECRYPT = 19;
|
|
|
|
OUTGOING_VALIDATING = 20;
|
|
|
|
OUTGOING_FAILED_RECIPIENT_LOST_ENCRYPTION = 21;
|
|
|
|
OUTGOING_FAILED_RECIPIENT_DID_NOT_DECRYPT_NO_MORE_RETRY = 22;
|
2023-07-09 20:59:22 +00:00
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
INCOMING_COMPLETE = 100;
|
|
|
|
INCOMING_YET_TO_MANUAL_DOWNLOAD = 101;
|
|
|
|
INCOMING_RETRYING_MANUAL_DOWNLOAD = 102;
|
|
|
|
INCOMING_MANUAL_DOWNLOADING = 103;
|
|
|
|
INCOMING_RETRYING_AUTO_DOWNLOAD = 104;
|
|
|
|
INCOMING_AUTO_DOWNLOADING = 105;
|
|
|
|
INCOMING_DOWNLOAD_FAILED = 106;
|
|
|
|
INCOMING_EXPIRED_OR_NOT_AVAILABLE = 107;
|
|
|
|
INCOMING_DELIVERED = 108;
|
|
|
|
INCOMING_DISPLAYED = 109;
|
|
|
|
INCOMING_DOWNLOAD_CANCELED = 110;
|
|
|
|
INCOMING_DOWNLOAD_FAILED_TOO_LARGE = 111;
|
|
|
|
INCOMING_DOWNLOAD_FAILED_SIM_HAS_NO_DATA = 112;
|
|
|
|
INCOMING_FAILED_TO_DECRYPT = 113;
|
|
|
|
INCOMING_DECRYPTION_ABORTED = 114;
|
2023-07-09 20:59:22 +00:00
|
|
|
|
|
|
|
TOMBSTONE_PARTICIPANT_JOINED = 200;
|
|
|
|
TOMBSTONE_PARTICIPANT_LEFT = 201;
|
|
|
|
TOMBSTONE_SELF_LEFT = 202;
|
|
|
|
TOMBSTONE_RCS_GROUP_CREATED = 203;
|
2023-07-09 11:16:52 +00:00
|
|
|
TOMBSTONE_MMS_GROUP_CREATED = 204;
|
|
|
|
TOMBSTONE_SMS_BROADCAST_CREATED = 205;
|
|
|
|
TOMBSTONE_ONE_ON_ONE_SMS_CREATED = 206;
|
|
|
|
TOMBSTONE_ONE_ON_ONE_RCS_CREATED = 207;
|
|
|
|
TOMBSTONE_SWITCH_TO_GROUP_MMS = 208;
|
|
|
|
TOMBSTONE_SWITCH_TO_BROADCAST_SMS = 209;
|
|
|
|
TOMBSTONE_SHOW_LINK_PREVIEWS = 210;
|
|
|
|
TOMBSTONE_GROUP_RENAMED_LOCAL = 211;
|
|
|
|
TOMBSTONE_VERIFIED_SMS_APPLICABLE = 212;
|
|
|
|
TOMBSTONE_ENCRYPTED_ONE_ON_ONE_RCS_CREATED = 213;
|
|
|
|
TOMBSTONE_PROTOCOL_SWITCH_TO_TEXT = 214;
|
|
|
|
TOMBSTONE_PROTOCOL_SWITCH_TO_RCS = 215;
|
|
|
|
TOMBSTONE_PROTOCOL_SWITCH_TO_ENCRYPTED_RCS = 216;
|
|
|
|
TOMBSTONE_GROUP_RENAMED_GLOBAL = 217;
|
|
|
|
TOMBSTONE_GROUP_NAME_CLEARED_GLOBAL = 218;
|
|
|
|
TOMBSTONE_PROTOCOL_SWITCH_TO_ENCRYPTED_RCS_INFO = 219;
|
|
|
|
TOMBSTONE_SELF_REMOVED_FROM_GROUP = 220;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_REMOVED_FROM_GROUP = 221;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_SMS_NORM_PARTICIPANT_UPGRADED = 222;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_RCS_NORM_PARTICIPANT_UPGRADED = 223;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_RCS_NORM_PARTICIPANT_UPGRADED = 224;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_JOINED = 225;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_JOINED_INFO = 226;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_PARTICIPANT_LEFT = 227;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_SELF_LEFT = 228;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_ENCRYPTED_GROUP_CREATED = 229;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_SELF_REMOVED_FROM_ENCRYPTED_GROUP = 230;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_PARTICIPANT_REMOVED_FROM_ENCRYPTED_GROUP = 231;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_SUGGESTION_SHORTCUT_STAR_TOOLSTONE = 232;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_RCS_TO_E2EE = 233;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_GROUP_PROTOCOL_SWITCH_E2EE_TO_RCS = 234;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_TEXT_TO_E2EE = 235;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_E2EE_TO_TEXT = 236;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_RCS_TO_E2EE = 237;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_PROTOCOL_SWITCH_E2EE_TO_RCS = 238;
|
|
|
|
MESSAGE_STATUS_TOMBSTONE_SATELLITE_EDUCATION = 239;
|
2023-07-09 20:59:22 +00:00
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
MESSAGE_DELETED = 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ConversationStatus {
|
|
|
|
UNKNOWN_STATUS = 0;
|
|
|
|
UNARCHIVE = 1;
|
|
|
|
ARCHIVE = 2;
|
|
|
|
DELETE = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ConversationActionStatus {
|
|
|
|
UNKNOWN_ACTION_STATUS = 0;
|
|
|
|
UNBLOCK = 2;
|
|
|
|
BLOCK = 7;
|
|
|
|
BLOCK_AND_REPORT = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ConversationMuteStatus {
|
|
|
|
UNMUTE = 0;
|
|
|
|
MUTE = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum ConvUpdateTypes {
|
|
|
|
UNKNOWN_CONVTYPE = 0;
|
|
|
|
UNARCHIVED = 1;
|
|
|
|
ARCHIVED = 2;
|
|
|
|
DELETED = 3;
|
|
|
|
BLOCKED_AND_REPORTED = 5;
|
|
|
|
BLOCKED = 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum MediaFormats {
|
|
|
|
UNSPECIFIED_TYPE = 0;
|
|
|
|
IMAGE_JPEG = 1;
|
|
|
|
IMAGE_JPG = 2;
|
|
|
|
IMAGE_PNG = 3;
|
|
|
|
IMAGE_GIF = 4;
|
|
|
|
IMAGE_WBMP = 5;
|
|
|
|
IMAGE_X_MS_BMP = 6;
|
|
|
|
IMAGE_UNSPECIFIED = 7;
|
2023-07-15 17:08:11 +00:00
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
VIDEO_MP4 = 8;
|
|
|
|
VIDEO_3G2 = 9;
|
|
|
|
VIDEO_3GPP = 10;
|
|
|
|
VIDEO_WEBM = 11;
|
|
|
|
VIDEO_MKV = 12;
|
|
|
|
VIDEO_UNSPECIFIED = 13;
|
2023-07-15 17:08:11 +00:00
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
AUDIO_AAC = 14;
|
|
|
|
AUDIO_AMR = 15;
|
|
|
|
AUDIO_MP3 = 16;
|
|
|
|
AUDIO_MPEG = 17;
|
|
|
|
AUDIO_MPG = 18;
|
|
|
|
AUDIO_MP4 = 19;
|
|
|
|
AUDIO_MP4_LATM = 20;
|
|
|
|
AUDIO_3GPP = 21;
|
|
|
|
AUDIO_OGG = 22;
|
|
|
|
AUDIO_UNSPECIFIED = 23;
|
2023-07-15 17:08:11 +00:00
|
|
|
|
2023-07-09 11:16:52 +00:00
|
|
|
TEXT_VCARD = 24;
|
2023-07-15 17:08:11 +00:00
|
|
|
|
|
|
|
APP_PDF = 25;
|
|
|
|
APP_TXT = 26;
|
|
|
|
APP_HTML = 27;
|
|
|
|
APP_DOC = 28;
|
|
|
|
APP_DOCX = 29;
|
|
|
|
APP_PPTX = 30;
|
|
|
|
APP_PPT = 31;
|
|
|
|
APP_XLSX = 32;
|
|
|
|
APP_XLS = 33;
|
|
|
|
APP_APK = 34;
|
|
|
|
APP_ZIP = 35;
|
|
|
|
APP_JAR = 36;
|
|
|
|
APP_UNSPECIFIED = 37;
|
|
|
|
|
|
|
|
CAL_TEXT_VCALENDAR = 38;
|
|
|
|
CAL_TEXT_XVCALENDAR = 39;
|
|
|
|
CAL_TEXT_CALENDAR = 40;
|
|
|
|
CAL_APPLICATION_VCS = 41;
|
|
|
|
CAL_APPLICATION_ICS = 42;
|
|
|
|
CAL_APPLICATION_HBSVCS = 43;
|
2023-07-09 11:16:52 +00:00
|
|
|
}
|