4.1.0 (2021-03-23)
-
The system event names
Microsoft.Communication.ChatParticipantAddedToThread
andMicrosoft.Communication.ChatParticipantRemovedFromThread
have been removed, and
Microsoft.Communication.ChatThreadParticipantAdded
andMicrosoft.Communication.ChatThreadParticipantRemoved
have been added. The old names did not match the
the type names that Azure Communication Services was using for these events. TypeScript users will now see compliation errors if they are callingisSystemEvent
with
eitherMicrosoft.Communication.ChatParticipantAddedToThread
orMicrosoft.Communication.ChatParticipantRemovedFromThread
as the event name. To fix these issues,
replace all uses ofMicrosoft.Communication.ChatParticipantAddedToThread
withMicrosoft.Communication.ChatThreadParticipantAdded
and
Microsoft.Communication.ChatParticipantRemovedFromThread
withMicrosoft.Communication.ChatThreadParticipantRemoved
. -
Add
Microsoft.Communications.RecordingFileStatusUpdated
system event.