feat(backend): added new mobile conditions to chalice filters (#1941)

This commit is contained in:
Alexander 2024-03-12 10:16:47 +01:00 committed by GitHub
parent f2cd253bc3
commit b8eca2516b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -517,6 +517,13 @@ class FilterType(str, Enum):
utm_source = "utmSource"
utm_medium = "utmMedium"
utm_campaign = "utmCampaign"
# Mobile conditions
thermal_state = "thermalState"
main_thread_cpu = "mainThreadCPU"
view_component = "viewComponent"
log_event = "logEvent"
click_event = "clickEvent"
memory_usage = "memoryUsage"
class SearchEventOperator(str, Enum):