Skip to content

Commit

Permalink
Generate kt & swift
Browse files Browse the repository at this point in the history
  • Loading branch information
t3chguy committed Oct 31, 2024
1 parent ada7055 commit 5128a6e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
6 changes: 6 additions & 0 deletions types/swift/Interaction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5128a6e

Please sign in to comment.