@verychat/channel-protos 1.0.26 → 1.0.28

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.
@@ -18,10 +18,12 @@ message ChannelInfo {
18
18
  optional string description = 5;
19
19
  int32 ownerId = 6;
20
20
  int32 joinUserCount = 7;
21
- optional string thumbnailUrl = 8;
22
- optional int32 holdMessageSeq = 9;
23
- optional int32 lastMessageSeq = 10;
24
- optional int64 lastStreamId = 11;
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verychat/channel-protos",
3
- "version": "1.0.26",
3
+ "version": "1.0.28",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -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 {