mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-01-10 20:26:07 +00:00
f6c154d4d9
* feat(status-js): sync protos with status-go * feat(status-js): set up protons * feat(status-js): use protons to generate protos * fix(status-js): remove buf configuration
13 lines
248 B
Protocol Buffer
13 lines
248 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "enums.proto";
|
|
|
|
message PinMessage {
|
|
uint64 clock = 1;
|
|
string message_id = 2;
|
|
string chat_id = 3;
|
|
bool pinned = 4;
|
|
// The type of message (public/one-to-one/private-group-chat)
|
|
MessageType message_type = 5;
|
|
}
|