azure-communication-rooms_1.0.0-beta.3
Pre-release
Pre-release
1.0.0-beta.3 (2023-05-17)
Features Added
- Added new function
listRooms
to list all created rooms by returningPagedIterable<CommunicationRoom>
, - Added pagination support for
listParticipants
by returningPagedIterable<RoomParticipant>
.
Breaking Changes
- Changed:
updateRoom
no longer accepts participant list as input. - Changed: Replaced
addParticipants
andupdateParticipants
withaddOrUpdateParticipants
. - Changed: Renamed
RoleType
toParticipantRole
. - Changed: Renamed
getParticipants
tolistParticipants
. - Changed: Renamed
CreatedOn
toCreatedAt
inCommunicationRoom
. - Changed:
removeParticipants
now takes in aIterable<CommunicationIdentifier>
instead ofIterable<RoomParticipant>
. - Removed:
participants
fromCommunicationRoom
model. - Removed:
roomJoinPolicy
so all rooms are invite-only by default.