Public 채널에 참여합니다.
await client.joinChannel({
channelId: 'some_public_channel',
});
초대 전용 채널에 참여합니다.
await client.joinChannelByInvitationCode({
channelId: 'some_invitation_only_channel',
invitationCode: 'secret_phrase',
});
채널에서 나갑니다.
await client.leaveChannel({
channelId: 'some_channel',
deleteChannelIfEmpty: true, // 현재 채널에 남아 있는 멤버가 없을 경우, 채널 삭제
});