diff --git a/src/configurations/destinations/posthog/db-config.json b/src/configurations/destinations/posthog/db-config.json index 6a68be911..0a214f6d2 100644 --- a/src/configurations/destinations/posthog/db-config.json +++ b/src/configurations/destinations/posthog/db-config.json @@ -14,6 +14,7 @@ "whitelistedEvents", "oneTrustCookieCategories", "enableLocalStoragePersistence", + "personProfiles", "eventFilteringOption", "useV2Group", "consentManagement", @@ -71,6 +72,7 @@ "propertyBlackList", "xhrHeaders", "enableLocalStoragePersistence", + "personProfiles", "consentManagement", "connectionMode", "oneTrustCookieCategories", diff --git a/src/configurations/destinations/posthog/ui-config.json b/src/configurations/destinations/posthog/ui-config.json index 08e5f0e8e..56e74320d 100644 --- a/src/configurations/destinations/posthog/ui-config.json +++ b/src/configurations/destinations/posthog/ui-config.json @@ -42,6 +42,26 @@ "default": false, "footerNote": "Enabling this will reduce the amount of data stored in cookies by storing it in local storage instead." }, + { + "type": "singleSelect", + "value": "personProfiles", + "label": "Posthog Person Profile Option", + "required": false, + "options": [ + { + "name": "Always", + "value": "always" + }, + { + "name": "Identified Only", + "value": "identified_only" + } + ], + "defaultOption": { + "name": "Always", + "value": "always" + } + }, { "type": "checkbox", "label": "Enable autocapture with PostHog",