@verychat/channel-protos 1.0.34 → 1.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/channel-services.proto
CHANGED
package/channel-types.proto
CHANGED
|
@@ -102,16 +102,17 @@ message ChannelMessage {
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
message NewChannelMessage {
|
|
105
|
-
string
|
|
106
|
-
|
|
107
|
-
int32
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
string
|
|
114
|
-
|
|
105
|
+
string id = 1;
|
|
106
|
+
string channelId = 2;
|
|
107
|
+
int32 seq = 3;
|
|
108
|
+
int32 userId = 4;
|
|
109
|
+
string message = 5;
|
|
110
|
+
MessageType type = 6;
|
|
111
|
+
string createdAt = 7;
|
|
112
|
+
int32 likeCount = 8;
|
|
113
|
+
string channelTitle = 9;
|
|
114
|
+
string channelThumbnailUrl = 10;
|
|
115
|
+
optional string deletedAt = 11;
|
|
115
116
|
}
|
|
116
117
|
|
|
117
118
|
message Reaction {
|
package/package.json
CHANGED