From 4df898d6ed21163597345ae0041e9ac3b4196728 Mon Sep 17 00:00:00 2001 From: Paul D'Ambra Date: Thu, 17 Oct 2024 16:51:17 +0200 Subject: [PATCH] chore: even more taxonomy fangling (#25650) --- frontend/src/lib/taxonomy.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/frontend/src/lib/taxonomy.tsx b/frontend/src/lib/taxonomy.tsx index b8a333f2d2fa8..76c60960eec8e 100644 --- a/frontend/src/lib/taxonomy.tsx +++ b/frontend/src/lib/taxonomy.tsx @@ -1212,6 +1212,10 @@ export const CORE_FILTER_DEFINITIONS_BY_GROUP = { description: 'posthog-js adds these to the page leave event, they are used in web analytics calculations', label: 'Previous pageview duration', }, + $surveys_activated: { + label: 'Surveys Activated', + description: 'The surveys that were activated for this event.', + }, }, numerical_event_properties: {}, // Same as event properties, see assignment below person_properties: {}, // Currently person properties are the same as event properties, see assignment below @@ -1432,7 +1436,13 @@ export const NON_DOLLAR_POSTHOG_PROPERTY_KEYS = [ 'current_usage.session_replay', 'current_usage.surveys', 'customer_deactivated', - 'custom_limits_usd.data_warehouse', + 'custom_limits.data_warehouse', + 'custom_limits.feature_flags', + 'custom_limits.integrations', + 'custom_limits.platform_and_support', + 'custom_limits.product_analytics', + 'custom_limits.session_replay', + 'custom_limits.surveys', 'free_allocation.data_warehouse', 'free_allocation.feature_flags', 'free_allocation.integrations', @@ -1474,8 +1484,6 @@ export const NON_DOLLAR_POSTHOG_PROPERTY_KEYS = [ 'email_service_available', 'slack_service_available', 'commit_sha', - 'token', - 'distinct_id', ] /** Return whether a given filter key is part of PostHog's core (marked by the PostHog logo). */