From 7f0201e3fb8ee0603559047d4f29778f4b514175 Mon Sep 17 00:00:00 2001 From: Manoel Aranda Neto Date: Thu, 19 Dec 2024 10:10:35 +0100 Subject: [PATCH] chore: add to taxonony --- ee/hogai/taxonomy.py | 5 +++++ frontend/src/lib/taxonomy.tsx | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/ee/hogai/taxonomy.py b/ee/hogai/taxonomy.py index 5c7feccbd1af5..5b78eb38d5f12 100644 --- a/ee/hogai/taxonomy.py +++ b/ee/hogai/taxonomy.py @@ -132,6 +132,11 @@ class CoreFilterDefinition(TypedDict): "description": "When a user interacts with a feature.", "ignored_in_assistant": True, # Specific to posthog-js/react, niche }, + "$feature_enrollment_update": { + "label": "Feature Enrollment", + "description": "When a user enrolls with a feature.", + "ignored_in_assistant": True, # Specific to EarlyAccessFeatureEnrollment, niche + }, "$capture_metrics": { "label": "Capture Metrics", "description": "Metrics captured with values pertaining to your systems at a specific point in time", diff --git a/frontend/src/lib/taxonomy.tsx b/frontend/src/lib/taxonomy.tsx index 3d5f3f308349e..b982ef2c6eb81 100644 --- a/frontend/src/lib/taxonomy.tsx +++ b/frontend/src/lib/taxonomy.tsx @@ -133,6 +133,10 @@ export const CORE_FILTER_DEFINITIONS_BY_GROUP = { label: 'Feature Interaction', description: 'When a user interacts with a feature.', }, + $feature_enrollment_update: { + label: 'Feature Enrollment', + description: 'When a user enrolls with a feature.', + }, $capture_metrics: { label: 'Capture Metrics', description: 'Metrics captured with values pertaining to your systems at a specific point in time',