From 5128a6ee5094262b081e4e0a5a511767d6d5459d Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 31 Oct 2024 13:43:36 +0000 Subject: [PATCH] Generate kt & swift --- .../app/features/analytics/plan/Interaction.kt | 15 +++++++++++++++ types/swift/Interaction.swift | 6 ++++++ 2 files changed, 21 insertions(+) diff --git a/kotlin/lib/src/main/java/im/vector/app/features/analytics/plan/Interaction.kt b/kotlin/lib/src/main/java/im/vector/app/features/analytics/plan/Interaction.kt index c372e1c..8afb022 100644 --- a/kotlin/lib/src/main/java/im/vector/app/features/analytics/plan/Interaction.kt +++ b/kotlin/lib/src/main/java/im/vector/app/features/analytics/plan/Interaction.kt @@ -562,6 +562,21 @@ data class Interaction( * onboarding page in Element Web/Desktop. */ WebUserOnboardingTaskSetupProfile("WebUserOnboardingTaskSetupProfile"), + + /** + * The user chose the Element Call option. + */ + WebVoipOptionElementCall("WebVoipOptionElementCall"), + + /** + * The user chose the Jitsi call option. + */ + WebVoipOptionJitsi("WebVoipOptionJitsi"), + + /** + * The user chose the legacy call option. + */ + WebVoipOptionLegacy("WebVoipOptionLegacy"), } enum class InteractionType(val rawValue: String) { diff --git a/types/swift/Interaction.swift b/types/swift/Interaction.swift index a34d320..a025112 100644 --- a/types/swift/Interaction.swift +++ b/types/swift/Interaction.swift @@ -220,6 +220,12 @@ extension AnalyticsEvent { case WebUserOnboardingTaskSendDm = "WebUserOnboardingTaskSendDm" /// User clicked on the action of the your profile task on the new user onboarding page in Element Web/Desktop. case WebUserOnboardingTaskSetupProfile = "WebUserOnboardingTaskSetupProfile" + /// The user chose the Element Call option. + case WebVoipOptionElementCall = "WebVoipOptionElementCall" + /// The user chose the Jitsi call option. + case WebVoipOptionJitsi = "WebVoipOptionJitsi" + /// The user chose the legacy call option. + case WebVoipOptionLegacy = "WebVoipOptionLegacy" } public enum InteractionType: String {