mirror of
https://github.com/status-im/status-go.git
synced 2025-01-24 21:49:54 +00:00
89251e8416
* Added community sync protobuf * Updated community sync send logic * Integrated syncCommunity handling * Added synced_at field and tidied up some other logic * persistence testing * Added testing and join functionality * Fixed issue with empty scan params * Finshed persistence tests for new db funcs * Midway debug of description not persisting after sync * Resolved final issues and tidied up * Polish * delint * Fix error not handled on SetPrivateKey * fix infinite loop, again * Added muted option and test fix * Added Muted to syncing functions, not just in persistence * Fix bug introduced with Muted property * Added a couple of notes for future devs * Added most of the sync RequestToJoin functionality Tests need to be completed and tests are giving some errors * Finished tests for getJoinedAndPending * Added note * Resolving lint * Fix of protobuf gen bug * Fixes to community sync tests * Fixes to test * Continued fix of e2e * Final fix to e2e testing * Updated migration position * resolve missing import * Apparently the linter spellchecks * Fix bug from #2276 merge * Bug fix for leaving quirkiness * Addressed superfluous MessengerResponse field * Addressed feedback * VERSION bump
51 lines
1.4 KiB
Protocol Buffer
51 lines
1.4 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./;protobuf";
|
|
package protobuf;
|
|
|
|
message ApplicationMetadataMessage {
|
|
// Signature of the payload field
|
|
bytes signature = 1;
|
|
// This is the encoded protobuf of the application level message, i.e ChatMessage
|
|
bytes payload = 2;
|
|
|
|
// The type of protobuf message sent
|
|
Type type = 3;
|
|
|
|
enum Type {
|
|
UNKNOWN = 0;
|
|
CHAT_MESSAGE = 1;
|
|
CONTACT_UPDATE = 2;
|
|
MEMBERSHIP_UPDATE_MESSAGE = 3;
|
|
PAIR_INSTALLATION = 4;
|
|
SYNC_INSTALLATION = 5;
|
|
REQUEST_ADDRESS_FOR_TRANSACTION = 6;
|
|
ACCEPT_REQUEST_ADDRESS_FOR_TRANSACTION = 7;
|
|
DECLINE_REQUEST_ADDRESS_FOR_TRANSACTION = 8;
|
|
REQUEST_TRANSACTION = 9;
|
|
SEND_TRANSACTION = 10;
|
|
DECLINE_REQUEST_TRANSACTION = 11;
|
|
SYNC_INSTALLATION_CONTACT = 12;
|
|
SYNC_INSTALLATION_ACCOUNT = 13;
|
|
SYNC_INSTALLATION_PUBLIC_CHAT = 14;
|
|
CONTACT_CODE_ADVERTISEMENT = 15;
|
|
PUSH_NOTIFICATION_REGISTRATION = 16;
|
|
PUSH_NOTIFICATION_REGISTRATION_RESPONSE = 17;
|
|
PUSH_NOTIFICATION_QUERY = 18;
|
|
PUSH_NOTIFICATION_QUERY_RESPONSE = 19;
|
|
PUSH_NOTIFICATION_REQUEST = 20;
|
|
PUSH_NOTIFICATION_RESPONSE = 21;
|
|
EMOJI_REACTION = 22;
|
|
GROUP_CHAT_INVITATION = 23;
|
|
CHAT_IDENTITY = 24;
|
|
COMMUNITY_DESCRIPTION = 25;
|
|
COMMUNITY_INVITATION = 26;
|
|
COMMUNITY_REQUEST_TO_JOIN = 27;
|
|
PIN_MESSAGE = 28;
|
|
EDIT_MESSAGE = 29;
|
|
STATUS_UPDATE = 30;
|
|
DELETE_MESSAGE = 31;
|
|
SYNC_INSTALLATION_COMMUNITY = 32;
|
|
}
|
|
}
|