From 97e0ad7ee84a83084c0100b983a32fe2463b29ae Mon Sep 17 00:00:00 2001 From: Ioannis J Date: Tue, 4 Feb 2025 10:03:24 +0200 Subject: [PATCH] feat(taxonomy): additional properties for ios sdk and mac catalyst (#28019) --- frontend/src/lib/taxonomy.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/frontend/src/lib/taxonomy.tsx b/frontend/src/lib/taxonomy.tsx index 48e3d4ad10e80..2187085270a9c 100644 --- a/frontend/src/lib/taxonomy.tsx +++ b/frontend/src/lib/taxonomy.tsx @@ -659,6 +659,16 @@ export const CORE_FILTER_DEFINITIONS_BY_GROUP = { description: 'Indicates whether the app is running on an emulator or a physical device', examples: ['true', 'false'], }, + $is_mac_catalyst_app: { + label: 'Is Mac Catalyst App', + description: 'Indicates whether the app is a Mac Catalyst app running on macOS', + examples: ['true', 'false'], + }, + $is_ios_running_on_mac: { + label: 'Is iOS App Running on Mac', + description: 'Indicates whether the app is an iOS app running on macOS (Apple Silicon)', + examples: ['true', 'false'], + }, $device_name: { label: 'Device Name', description: 'Name of the device',