2020-01-10 18:59:01 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2021-08-06 15:40:23 +00:00
|
|
|
option go_package = "./;protobuf";
|
2020-01-10 18:59:01 +00:00
|
|
|
package protobuf;
|
|
|
|
|
2021-10-11 15:39:52 +00:00
|
|
|
message Backup {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string id = 2;
|
|
|
|
|
|
|
|
repeated SyncInstallationContactV2 contacts = 3;
|
2022-01-06 16:35:08 +00:00
|
|
|
repeated SyncCommunity communities = 4;
|
2021-10-11 15:39:52 +00:00
|
|
|
}
|
|
|
|
|
2022-06-24 14:06:13 +00:00
|
|
|
message MultiAccount {
|
|
|
|
string name = 1;
|
|
|
|
int64 timestamp = 2;
|
|
|
|
string identicon = 3;
|
|
|
|
repeated ColourHash color_hash = 4;
|
|
|
|
int64 colorId = 5;
|
|
|
|
string keycard_pairing = 6;
|
|
|
|
string key_uid = 7;
|
|
|
|
repeated IdentityImage images = 8;
|
|
|
|
|
|
|
|
message ColourHash {
|
|
|
|
repeated int64 index = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message IdentityImage {
|
|
|
|
string key_uid = 1;
|
|
|
|
string name = 2;
|
|
|
|
bytes payload = 3;
|
|
|
|
int64 width = 4;
|
|
|
|
int64 height = 5;
|
|
|
|
int64 filesize = 6;
|
|
|
|
int64 resize_target = 7;
|
|
|
|
uint64 clock = 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
message LocalPairingPayload {
|
|
|
|
repeated Key keys = 1;
|
|
|
|
MultiAccount multiaccount = 2;
|
|
|
|
string password = 3;
|
|
|
|
|
|
|
|
message Key {
|
|
|
|
string name = 1;
|
|
|
|
bytes data = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-10 18:59:01 +00:00
|
|
|
message PairInstallation {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string installation_id = 2;
|
|
|
|
string device_type = 3;
|
|
|
|
string name = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SyncInstallationContact {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string id = 2;
|
|
|
|
string profile_image = 3;
|
|
|
|
string ens_name = 4;
|
|
|
|
uint64 last_updated = 5;
|
|
|
|
repeated string system_tags = 6;
|
2020-08-20 14:06:38 +00:00
|
|
|
string local_nickname = 7;
|
2020-01-10 18:59:01 +00:00
|
|
|
}
|
|
|
|
|
2021-09-03 08:26:05 +00:00
|
|
|
message SyncInstallationContactV2 {
|
2021-10-22 14:20:42 +00:00
|
|
|
uint64 last_updated_locally = 1;
|
2021-09-03 08:26:05 +00:00
|
|
|
string id = 2;
|
|
|
|
string profile_image = 3;
|
|
|
|
string ens_name = 4;
|
|
|
|
uint64 last_updated = 5;
|
|
|
|
repeated string system_tags = 6;
|
|
|
|
string local_nickname = 7;
|
|
|
|
bool added = 9;
|
|
|
|
bool blocked = 10;
|
|
|
|
bool muted = 11;
|
|
|
|
bool removed = 12;
|
2021-10-22 14:20:42 +00:00
|
|
|
bool has_added_us = 13;
|
2022-07-05 19:49:44 +00:00
|
|
|
int64 verification_status = 14;
|
|
|
|
int64 trust_status = 15;
|
2021-09-03 08:26:05 +00:00
|
|
|
}
|
|
|
|
|
2020-01-10 18:59:01 +00:00
|
|
|
message SyncInstallationAccount {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string profile_image = 2;
|
|
|
|
uint64 last_updated = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SyncInstallationPublicChat {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string id = 2;
|
|
|
|
}
|
|
|
|
|
2021-08-06 15:40:23 +00:00
|
|
|
message SyncCommunity {
|
|
|
|
uint64 clock = 1;
|
|
|
|
bytes id = 2;
|
|
|
|
bytes private_key = 3;
|
|
|
|
bytes description = 4;
|
|
|
|
bool joined = 5;
|
|
|
|
bool verified = 6;
|
|
|
|
bool muted = 7;
|
|
|
|
repeated SyncCommunityRequestsToJoin requests_to_join = 8;
|
2022-06-01 07:55:48 +00:00
|
|
|
SyncCommunitySettings settings = 9;
|
2022-05-27 09:14:40 +00:00
|
|
|
bool encrypted = 10;
|
2021-08-06 15:40:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message SyncCommunityRequestsToJoin {
|
|
|
|
bytes id = 1;
|
|
|
|
string public_key = 2;
|
|
|
|
uint64 clock = 3;
|
|
|
|
string ens_name = 4;
|
|
|
|
string chat_id = 5;
|
|
|
|
bytes community_id = 6;
|
|
|
|
uint64 state = 7;
|
|
|
|
}
|
|
|
|
|
2020-01-10 18:59:01 +00:00
|
|
|
message SyncInstallation {
|
|
|
|
repeated SyncInstallationContact contacts = 1;
|
|
|
|
repeated SyncInstallationPublicChat public_chats = 2;
|
|
|
|
SyncInstallationAccount account = 3;
|
2021-08-06 15:40:23 +00:00
|
|
|
repeated SyncCommunity communities = 4;
|
2020-01-10 18:59:01 +00:00
|
|
|
}
|
2021-10-05 17:26:02 +00:00
|
|
|
|
|
|
|
message SyncChatRemoved {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string id = 2;
|
2021-10-12 10:33:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message SyncChatMessagesRead {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string id = 2;
|
2021-10-11 15:39:52 +00:00
|
|
|
}
|
2021-12-02 14:23:02 +00:00
|
|
|
|
|
|
|
message SyncActivityCenterRead {
|
|
|
|
uint64 clock = 1;
|
|
|
|
repeated bytes ids = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SyncActivityCenterAccepted {
|
|
|
|
uint64 clock = 1;
|
|
|
|
repeated bytes ids = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SyncActivityCenterDismissed {
|
|
|
|
uint64 clock = 1;
|
|
|
|
repeated bytes ids = 2;
|
2022-02-10 10:00:59 +00:00
|
|
|
}
|
|
|
|
|
2022-01-17 03:42:11 +00:00
|
|
|
message SyncBookmark {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string url = 2;
|
|
|
|
string name = 3;
|
|
|
|
string image_url = 4;
|
|
|
|
bool removed = 5;
|
2022-06-08 18:39:53 +00:00
|
|
|
uint64 deleted_at = 6;
|
2022-01-17 03:42:11 +00:00
|
|
|
}
|
|
|
|
|
2022-02-10 10:00:59 +00:00
|
|
|
message SyncClearHistory {
|
|
|
|
string chat_id = 1;
|
|
|
|
uint64 cleared_at = 2;
|
2022-01-06 16:35:08 +00:00
|
|
|
}
|
2022-03-24 09:35:56 +00:00
|
|
|
|
|
|
|
message SyncProfilePicture {
|
|
|
|
string name = 1;
|
|
|
|
bytes payload = 2;
|
|
|
|
uint32 width = 3;
|
|
|
|
uint32 height = 4;
|
|
|
|
uint32 file_size = 5;
|
|
|
|
uint32 resize_target = 6;
|
|
|
|
uint64 clock = 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SyncProfilePictures {
|
|
|
|
string key_uid = 1;
|
|
|
|
repeated SyncProfilePicture pictures = 2;
|
|
|
|
}
|
2022-05-18 10:42:51 +00:00
|
|
|
|
|
|
|
message SyncWalletAccount {
|
|
|
|
uint64 clock = 1;
|
|
|
|
bytes address = 2;
|
|
|
|
bool wallet = 3;
|
|
|
|
bool chat = 4;
|
|
|
|
string type = 5;
|
|
|
|
string storage = 6;
|
|
|
|
string path = 7;
|
|
|
|
bytes publicKey = 8;
|
|
|
|
string name = 9;
|
|
|
|
string color = 10;
|
|
|
|
bool hidden = 11;
|
|
|
|
bool removed = 12;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SyncWalletAccounts {
|
|
|
|
repeated SyncWalletAccount accounts = 1;
|
|
|
|
}
|
2022-06-01 07:55:48 +00:00
|
|
|
|
|
|
|
message SyncCommunitySettings {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string community_id = 2;
|
|
|
|
bool history_archive_support_enabled = 3;
|
|
|
|
}
|
2022-07-05 19:49:44 +00:00
|
|
|
|
|
|
|
message SyncTrustedUser {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string id = 2;
|
|
|
|
TrustStatus status = 3;
|
|
|
|
|
|
|
|
enum TrustStatus {
|
|
|
|
UNKNOWN = 0;
|
|
|
|
TRUSTED = 1;
|
|
|
|
UNTRUSTWORTHY = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
message SyncVerificationRequest {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string from = 2;
|
|
|
|
string to = 3;
|
|
|
|
string challenge = 4;
|
|
|
|
uint64 requested_at = 5;
|
|
|
|
string response = 6;
|
|
|
|
uint64 replied_at = 7;
|
|
|
|
VerificationStatus verification_status = 8;
|
|
|
|
|
|
|
|
enum VerificationStatus {
|
|
|
|
UNKNOWN = 0;
|
|
|
|
PENDING = 1;
|
|
|
|
ACCEPTED = 2;
|
|
|
|
DECLINED = 3;
|
|
|
|
CANCELED = 4;
|
|
|
|
}
|
|
|
|
}
|
2022-08-07 14:25:03 +00:00
|
|
|
|
|
|
|
message SyncContactRequestDecision {
|
|
|
|
uint64 clock = 1;
|
|
|
|
string requestId = 2;
|
|
|
|
DecisionStatus decision_status = 3;
|
|
|
|
|
|
|
|
enum DecisionStatus {
|
|
|
|
ACCEPTED = 0;
|
|
|
|
DECLINED = 1;
|
|
|
|
}
|
|
|
|
}
|