diff --git a/schemas/Interaction.json b/schemas/Interaction.json index 4e1bdd4..e309d8b 100644 --- a/schemas/Interaction.json +++ b/schemas/Interaction.json @@ -82,7 +82,8 @@ {"const": "MobileAllChatsFilterFavourites", "description": "User tapped the Favourites filter in the All Chats filter tab."}, {"const": "MobileAllChatsFilterUnreads", "description": "User tapped the Unreads filter in the All Chats filter tab."}, {"const": "MobileAllChatsFilterPeople", "description": "User tapped the People filter in the All Chats filter tab."}, - {"const": "MobileSpaceCreationValidated", "description": "User validated the creation of a new space."} + {"const": "MobileSpaceCreationValidated", "description": "User validated the creation of a new space."}, + {"const": "MobileRoomListRoomContextMenuUnreadToggle", "description": "User adjusted their unread rooms using the context menu on a room in the room list."} ] }, "index": { diff --git a/types/kotlin2/Interaction.kt b/types/kotlin2/Interaction.kt index 19043d7..6f45861 100644 --- a/types/kotlin2/Interaction.kt +++ b/types/kotlin2/Interaction.kt @@ -90,6 +90,12 @@ data class Interaction( */ MobileRoomLeave, + /** + * User adjusted their unread rooms using the context menu on a room in + * the room list. + */ + MobileRoomListRoomContextMenuUnreadToggle, + /** * User tapped on Threads button on Room screen. */ diff --git a/types/swift/Interaction.swift b/types/swift/Interaction.swift index 495c054..cc75ef6 100644 --- a/types/swift/Interaction.swift +++ b/types/swift/Interaction.swift @@ -58,6 +58,8 @@ extension AnalyticsEvent { case MobileRoomAddHome /// User tapped on Leave Room button on Room Details screen. case MobileRoomLeave + /// User adjusted their unread rooms using the context menu on a room in the room list. + case MobileRoomListRoomContextMenuUnreadToggle /// User tapped on Threads button on Room screen. case MobileRoomThreadListButton /// User tapped on a thread summary item on Room screen.