@verychat/channel-protos 1.0.27 → 1.0.29
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-types.proto
CHANGED
|
@@ -18,10 +18,12 @@ message ChannelInfo {
|
|
|
18
18
|
optional string description = 5;
|
|
19
19
|
int32 ownerId = 6;
|
|
20
20
|
int32 joinUserCount = 7;
|
|
21
|
-
|
|
22
|
-
optional
|
|
23
|
-
optional int32
|
|
24
|
-
optional
|
|
21
|
+
string userChannelId = 8;
|
|
22
|
+
optional string thumbnailUrl = 9;
|
|
23
|
+
optional int32 holdMessageSeq = 10;
|
|
24
|
+
optional int32 lastMessageSeq = 11;
|
|
25
|
+
optional int64 lastStreamId = 12;
|
|
26
|
+
optional string deletedAt = 13;
|
|
25
27
|
}
|
|
26
28
|
|
|
27
29
|
message Channel {
|
|
@@ -33,10 +33,12 @@ export interface ChannelInfo {
|
|
|
33
33
|
description?: string | undefined;
|
|
34
34
|
ownerId: number;
|
|
35
35
|
joinUserCount: number;
|
|
36
|
+
userChannelId: string;
|
|
36
37
|
thumbnailUrl?: string | undefined;
|
|
37
38
|
holdMessageSeq?: number | undefined;
|
|
38
39
|
lastMessageSeq?: number | undefined;
|
|
39
40
|
lastStreamId?: number | undefined;
|
|
41
|
+
deletedAt?: string | undefined;
|
|
40
42
|
}
|
|
41
43
|
export interface Channel {
|
|
42
44
|
title: string;
|
package/package.json
CHANGED
|
@@ -46,10 +46,12 @@ export interface ChannelInfo {
|
|
|
46
46
|
description?: string | undefined;
|
|
47
47
|
ownerId: number;
|
|
48
48
|
joinUserCount: number;
|
|
49
|
+
userChannelId: string;
|
|
49
50
|
thumbnailUrl?: string | undefined;
|
|
50
51
|
holdMessageSeq?: number | undefined;
|
|
51
52
|
lastMessageSeq?: number | undefined;
|
|
52
53
|
lastStreamId?: number | undefined;
|
|
54
|
+
deletedAt?: string | undefined;
|
|
53
55
|
}
|
|
54
56
|
|
|
55
57
|
export interface Channel {
|