@verychat/channel-protos 1.0.29 → 1.0.30
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
|
@@ -35,7 +35,8 @@ export interface EditChannelResponse {
|
|
|
35
35
|
channelId: string;
|
|
36
36
|
}
|
|
37
37
|
export interface GetChannelInfoRequest {
|
|
38
|
-
channelId
|
|
38
|
+
channelId?: string | undefined;
|
|
39
|
+
userChannelId?: string | undefined;
|
|
39
40
|
}
|
|
40
41
|
export interface GetChannelInfoResponse {
|
|
41
42
|
channelInfo: ChannelInfo | undefined;
|
package/package.json
CHANGED