From 6bc1fe673f9c0f40c40d9edf5ba6dd4994620cce Mon Sep 17 00:00:00 2001 From: Zach Waterfield Date: Wed, 8 Oct 2025 09:31:14 -0400 Subject: [PATCH] feat: survey access controls (#38605) Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- common/storybook/.storybook/app-context.ts | 1 + .../access_control/SidePanelAccessControl.tsx | 6 +- .../resourcesAccessControlLogic.ts | 1 + frontend/src/scenes/sceneTypes.ts | 5 + .../src/scenes/surveys/SurveySettings.tsx | 140 +-- frontend/src/scenes/surveys/SurveyView.tsx | 176 ++-- .../src/scenes/surveys/Surveys.stories.tsx | 4 + frontend/src/scenes/surveys/Surveys.tsx | 393 ++++---- .../surveys/components/LaunchSurveyButton.tsx | 81 +- .../empty-state/SurveysEmptyState.tsx | 24 +- frontend/src/scenes/surveys/constants.tsx | 3 + .../src/scenes/surveys/surveyLogic.test.ts | 3 + frontend/src/scenes/surveys/surveyLogic.tsx | 2 + .../src/scenes/surveys/surveysLogic.test.ts | 3 +- frontend/src/types.ts | 3 +- posthog/api/survey.py | 7 +- .../api/test/__snapshots__/test_action.ambr | 36 +- .../test/__snapshots__/test_annotation.ambr | 36 +- .../api/test/__snapshots__/test_decide.ambr | 708 +++++++------- .../api/test/__snapshots__/test_element.ambr | 12 +- .../test/__snapshots__/test_feature_flag.ambr | 180 ++-- .../api/test/__snapshots__/test_insight.ambr | 132 +-- .../test_organization_feature_flag.ambr | 180 ++-- .../test/__snapshots__/test_preflight.ambr | 12 +- .../api/test/__snapshots__/test_survey.ambr | 12 +- .../__snapshots__/test_dashboard.ambr | 912 +++++++++--------- .../__snapshots__/test_notebook.ambr | 60 +- posthog/api/test/test_survey.py | 1 + .../test/__snapshots__/test_filter.ambr | 60 +- posthog/models/team/team.py | 27 +- posthog/rbac/user_access_control.py | 1 + .../test_session_recording_playlist.ambr | 84 +- .../test_session_recordings.ambr | 516 +++++----- .../test_process_scheduled_changes.ambr | 72 +- .../test/__snapshots__/test_feature_flag.ambr | 36 +- .../test_early_access_feature.ambr | 60 +- 36 files changed, 2078 insertions(+), 1911 deletions(-) diff --git a/common/storybook/.storybook/app-context.ts b/common/storybook/.storybook/app-context.ts index c24b33e638..637f89dce2 100644 --- a/common/storybook/.storybook/app-context.ts +++ b/common/storybook/.storybook/app-context.ts @@ -22,6 +22,7 @@ export const getStorybookAppContext = (): AppContext => ({ notebook: 'manager', session_recording: 'manager', revenue_analytics: 'manager', + survey: 'manager', experiment: 'manager', }, }) diff --git a/frontend/src/layout/navigation-3000/sidepanel/panels/access_control/SidePanelAccessControl.tsx b/frontend/src/layout/navigation-3000/sidepanel/panels/access_control/SidePanelAccessControl.tsx index 4584fdd066..946805f747 100644 --- a/frontend/src/layout/navigation-3000/sidepanel/panels/access_control/SidePanelAccessControl.tsx +++ b/frontend/src/layout/navigation-3000/sidepanel/panels/access_control/SidePanelAccessControl.tsx @@ -1,5 +1,9 @@ import { useValues } from 'kea' +import { resourceTypeToString } from 'lib/components/AccessControlAction' + +import { AccessControlResourceType } from '~/types' + import { SidePanelPaneHeader } from '../../components/SidePanelPaneHeader' import { sidePanelContextLogic } from '../sidePanelContextLogic' import { AccessControlObject } from './AccessControlObject' @@ -16,7 +20,7 @@ export const SidePanelAccessControl = (): JSX.Element => { resource={sceneSidePanelContext.access_control_resource} resource_id={sceneSidePanelContext.access_control_resource_id} title="Object permissions" - description="Use object permissions to assign access for individuals and roles." + description={`Use object permissions to assign access for individuals and roles to this ${resourceTypeToString(sceneSidePanelContext.access_control_resource as AccessControlResourceType)}.`} /> ) : (

Not supported

diff --git a/frontend/src/layout/navigation-3000/sidepanel/panels/access_control/resourcesAccessControlLogic.ts b/frontend/src/layout/navigation-3000/sidepanel/panels/access_control/resourcesAccessControlLogic.ts index 6b5fe039ce..797a969841 100644 --- a/frontend/src/layout/navigation-3000/sidepanel/panels/access_control/resourcesAccessControlLogic.ts +++ b/frontend/src/layout/navigation-3000/sidepanel/panels/access_control/resourcesAccessControlLogic.ts @@ -273,6 +273,7 @@ export const resourcesAccessControlLogic = kea( AccessControlResourceType.Notebook, AccessControlResourceType.RevenueAnalytics, AccessControlResourceType.SessionRecording, + AccessControlResourceType.Survey, ] }, ], diff --git a/frontend/src/scenes/sceneTypes.ts b/frontend/src/scenes/sceneTypes.ts index 7cf3232d65..4d02256c57 100644 --- a/frontend/src/scenes/sceneTypes.ts +++ b/frontend/src/scenes/sceneTypes.ts @@ -243,6 +243,11 @@ export const sceneToAccessControlResourceType: Partial {currentTeam?.surveys_opt_in !== undefined && ( - { - updateCurrentTeam({ - surveys_opt_in: checked, - }) - }} - fullWidth - bordered={false} - label="Enable surveys" - labelClassName="text-base font-semibold" - checked={currentTeam.surveys_opt_in} - className="p-0" - disabled={currentTeamLoading} - disabledReason={currentTeamLoading ? 'Loading...' : undefined} - /> + + { + updateCurrentTeam({ + surveys_opt_in: checked, + }) + }} + fullWidth + bordered={false} + label="Enable surveys" + labelClassName="text-base font-semibold" + checked={currentTeam.surveys_opt_in} + className="p-0" + disabled={currentTeamLoading} + disabledReason={currentTeamLoading ? 'Loading...' : undefined} + /> + )} Please note your website needs to have the{' '} @@ -126,46 +132,68 @@ export function SurveySettings({ isModal = false }: Props): JSX.Element { -
- - These settings apply to new surveys in this organization. - - {globalSurveyAppearanceConfigAvailable && ( - - Save appearance changes - - )} -
+ + {({ disabledReason }) => { + // The disabledReason is set if the user doesn't have access to the survey resource + if (disabledReason) { + return null + } -
-
- { - const newAppearance = { - ...editableSurveyConfig, - ...appearance, - } - const errors = validateSurveyAppearance(newAppearance, true, templatedSurvey.type) - setValidationErrors(errors) - setEditableSurveyConfig(newAppearance) - setTemplatedSurvey({ - ...templatedSurvey, - appearance: newAppearance, - }) - }} - validationErrors={validationErrors} - /> -
- {globalSurveyAppearanceConfigAvailable && ( -
- -
- )} -
+ return ( + <> +
+ + + These settings apply to new surveys in this organization. + + + {globalSurveyAppearanceConfigAvailable && ( + + Save appearance changes + + )} +
+ +
+
+ { + const newAppearance = { + ...editableSurveyConfig, + ...appearance, + } + const errors = validateSurveyAppearance( + newAppearance, + true, + templatedSurvey.type + ) + setValidationErrors(errors) + setEditableSurveyConfig(newAppearance) + setTemplatedSurvey({ + ...templatedSurvey, + appearance: newAppearance, + }) + }} + validationErrors={validationErrors} + /> +
+ {globalSurveyAppearanceConfigAvailable && ( +
+ +
+ )} +
+ + ) + }} +
) } diff --git a/frontend/src/scenes/surveys/SurveyView.tsx b/frontend/src/scenes/surveys/SurveyView.tsx index 31bb5db43e..4477bdce93 100644 --- a/frontend/src/scenes/surveys/SurveyView.tsx +++ b/frontend/src/scenes/surveys/SurveyView.tsx @@ -6,6 +6,7 @@ import { useEffect, useState } from 'react' import { IconGraph, IconTrash } from '@posthog/icons' import { LemonButton, LemonDialog, LemonDivider } from '@posthog/lemon-ui' +import { AccessControlAction, userHasAccess } from 'lib/components/AccessControlAction' import { ActivityLog } from 'lib/components/ActivityLog/ActivityLog' import { SceneDuplicate } from 'lib/components/Scenes/SceneDuplicate' import { SceneFile } from 'lib/components/Scenes/SceneFile' @@ -37,6 +38,8 @@ import { SceneDivider } from '~/layout/scenes/components/SceneDivider' import { SceneTitleSection } from '~/layout/scenes/components/SceneTitleSection' import { Query } from '~/queries/Query/Query' import { + AccessControlLevel, + AccessControlResourceType, ActivityScope, PropertyFilterType, PropertyOperator, @@ -94,36 +97,42 @@ export function SurveyView({ id }: { id: string }): JSX.Element { - { - LemonDialog.open({ - title: 'Delete this survey?', - content: ( -
- This action cannot be undone. All survey data will be permanently - removed. -
- ), - primaryButton: { - children: 'Delete', - type: 'primary', - onClick: () => deleteSurvey(id), - size: 'small', - }, - secondaryButton: { - children: 'Cancel', - type: 'tertiary', - size: 'small', - }, - }) - }} + - - Delete survey -
+ { + LemonDialog.open({ + title: 'Delete this survey?', + content: ( +
+ This action cannot be undone. All survey data will be permanently + removed. +
+ ), + primaryButton: { + children: 'Delete', + type: 'primary', + onClick: () => deleteSurvey(id), + size: 'small', + }, + secondaryButton: { + children: 'Cancel', + type: 'tertiary', + size: 'small', + }, + }) + }} + > + + Delete survey +
+
@@ -134,7 +143,11 @@ export function SurveyView({ id }: { id: string }): JSX.Element { resourceType={{ type: 'survey', }} - canEdit + canEdit={userHasAccess( + AccessControlResourceType.Survey, + AccessControlLevel.Editor, + survey.user_access_level + )} onNameChange={(name) => updateSurvey({ id, name })} onDescriptionChange={(description) => updateSurvey({ id, description })} renameDebounceMs={1000} @@ -142,63 +155,44 @@ export function SurveyView({ id }: { id: string }): JSX.Element { actions={ <> - editingSurvey(true)} - type="secondary" - size="small" + - Edit - + editingSurvey(true)} + type="secondary" + size="small" + > + Edit + + {!survey.start_date ? ( ) : survey.end_date && !survey.archived ? ( - { - LemonDialog.open({ - title: 'Resume this survey?', - content: ( -
- Once resumed, the survey will be visible to your users again. -
- ), - primaryButton: { - children: 'Resume', - type: 'primary', - onClick: () => resumeSurvey(), - size: 'small', - }, - secondaryButton: { - children: 'Cancel', - type: 'tertiary', - size: 'small', - }, - }) - }} + - Resume -
- ) : ( - !survey.archived && ( { LemonDialog.open({ - title: 'Stop this survey?', + title: 'Resume this survey?', content: (
- The survey will no longer be displayed to users. + Once resumed, the survey will be visible to your users + again.
), primaryButton: { - children: 'Stop', + children: 'Resume', type: 'primary', - onClick: () => stopSurvey(), + onClick: () => resumeSurvey(), size: 'small', }, secondaryButton: { @@ -209,8 +203,46 @@ export function SurveyView({ id }: { id: string }): JSX.Element { }) }} > - Stop + Resume
+ + ) : ( + !survey.archived && ( + + { + LemonDialog.open({ + title: 'Stop this survey?', + content: ( +
+ The survey will no longer be displayed to users. +
+ ), + primaryButton: { + children: 'Stop', + type: 'primary', + onClick: () => stopSurvey(), + size: 'small', + }, + secondaryButton: { + children: 'Cancel', + type: 'tertiary', + size: 'small', + }, + }) + }} + > + Stop +
+
) )} diff --git a/frontend/src/scenes/surveys/Surveys.stories.tsx b/frontend/src/scenes/surveys/Surveys.stories.tsx index 1791d1ee9a..27c1d43404 100644 --- a/frontend/src/scenes/surveys/Surveys.stories.tsx +++ b/frontend/src/scenes/surveys/Surveys.stories.tsx @@ -9,6 +9,7 @@ import { mswDecorator, useStorybookMocks } from '~/mocks/browser' import organizationCurrent from '~/mocks/fixtures/api/organizations/@current/@current.json' import { toPaginatedResponse } from '~/mocks/handlers' import { + AccessControlLevel, FeatureFlagBasicType, MultipleSurveyQuestion, PropertyFilterType, @@ -48,6 +49,7 @@ const MOCK_BASIC_SURVEY: Survey = { iteration_count: null, iteration_frequency_days: null, schedule: SurveySchedule.Once, + user_access_level: AccessControlLevel.Editor, } const MOCK_SURVEY_WITH_MULTIPLE_OPTIONS: Survey = { @@ -89,6 +91,7 @@ const MOCK_SURVEY_WITH_MULTIPLE_OPTIONS: Survey = { iteration_count: null, iteration_frequency_days: null, schedule: SurveySchedule.Once, + user_access_level: AccessControlLevel.Editor, } const MOCK_SURVEY_WITH_RELEASE_CONS: Survey = { @@ -168,6 +171,7 @@ const MOCK_SURVEY_WITH_RELEASE_CONS: Survey = { iteration_count: null, iteration_frequency_days: null, schedule: SurveySchedule.Once, + user_access_level: AccessControlLevel.Editor, } const MOCK_SURVEY_SHOWN = { diff --git a/frontend/src/scenes/surveys/Surveys.tsx b/frontend/src/scenes/surveys/Surveys.tsx index ca3b5b3d7f..c1b41d56db 100644 --- a/frontend/src/scenes/surveys/Surveys.tsx +++ b/frontend/src/scenes/surveys/Surveys.tsx @@ -13,6 +13,7 @@ import { Spinner, } from '@posthog/lemon-ui' +import { AccessControlAction, userHasAccess } from 'lib/components/AccessControlAction' import { ActivityLog } from 'lib/components/ActivityLog/ActivityLog' import { MemberSelect } from 'lib/components/MemberSelect' import { VersionCheckerBanner } from 'lib/components/VersionChecker/VersionCheckerBanner' @@ -37,7 +38,14 @@ import { userLogic } from 'scenes/userLogic' import { SceneContent } from '~/layout/scenes/components/SceneContent' import { SceneDivider } from '~/layout/scenes/components/SceneDivider' import { SceneTitleSection } from '~/layout/scenes/components/SceneTitleSection' -import { ActivityScope, ProductKey, ProgressStatus, Survey } from '~/types' +import { + AccessControlLevel, + AccessControlResourceType, + ActivityScope, + ProductKey, + ProgressStatus, + Survey, +} from '~/types' import { SurveySettings, SurveysDisabledBanner } from './SurveySettings' import { SURVEY_CREATED_SOURCE, SURVEY_TYPE_LABEL_MAP, SurveyQuestionLabel } from './constants' @@ -91,12 +99,17 @@ function NewSurveyButton(): JSX.Element { router.actions.push(urls.survey(toolOutput.survey_id)) }} position="bottom-right" - active={!!user?.uuid} + active={!!user?.uuid && userHasAccess(AccessControlResourceType.Survey, AccessControlLevel.Editor)} className={cn('mr-3')} > - - New survey - + + + New survey + + ) } @@ -317,164 +330,229 @@ function Surveys(): JSX.Element { View {!survey.start_date && ( - - LemonDialog.open({ - title: 'Launch this survey?', - content: ( -
- The survey will immediately start - displaying to users matching the - display conditions. -
- ), - primaryButton: { - children: 'Launch', - type: 'primary', - onClick: () => { - updateSurvey({ - id: survey.id, - updatePayload: { - start_date: - dayjs().toISOString(), - }, - intentContext: - ProductIntentContext.SURVEY_LAUNCHED, - }) - }, - size: 'small', - }, - secondaryButton: { - children: 'Cancel', - type: 'tertiary', - size: 'small', - }, - }) - } + - Launch survey -
+ + LemonDialog.open({ + title: 'Launch this survey?', + content: ( +
+ The survey will immediately + start displaying to users + matching the display conditions. +
+ ), + primaryButton: { + children: 'Launch', + type: 'primary', + onClick: () => { + updateSurvey({ + id: survey.id, + updatePayload: { + start_date: + dayjs().toISOString(), + }, + intentContext: + ProductIntentContext.SURVEY_LAUNCHED, + }) + }, + size: 'small', + }, + secondaryButton: { + children: 'Cancel', + type: 'tertiary', + size: 'small', + }, + }) + } + > + Launch survey +
+ )} {isSurveyRunning(survey) && ( - { - LemonDialog.open({ - title: 'Stop this survey?', - content: ( -
- The survey will no longer be visible - to your users. -
- ), - primaryButton: { - children: 'Stop', - type: 'primary', - onClick: () => { - updateSurvey({ - id: survey.id, - updatePayload: { - end_date: - dayjs().toISOString(), - }, - intentContext: - ProductIntentContext.SURVEY_COMPLETED, - }) - }, - size: 'small', - }, - secondaryButton: { - children: 'Cancel', - type: 'tertiary', - size: 'small', - }, - }) - }} + - Stop survey -
+ { + LemonDialog.open({ + title: 'Stop this survey?', + content: ( +
+ The survey will no longer be + visible to your users. +
+ ), + primaryButton: { + children: 'Stop', + type: 'primary', + onClick: () => { + updateSurvey({ + id: survey.id, + updatePayload: { + end_date: + dayjs().toISOString(), + }, + intentContext: + ProductIntentContext.SURVEY_COMPLETED, + }) + }, + size: 'small', + }, + secondaryButton: { + children: 'Cancel', + type: 'tertiary', + size: 'small', + }, + }) + }} + > + Stop survey +
+ )} {survey.end_date && !survey.archived && ( - { - LemonDialog.open({ - title: 'Resume this survey?', - content: ( -
- Once resumed, the survey will be - visible to your users again. -
- ), - primaryButton: { - children: 'Resume', - type: 'primary', - onClick: () => { - updateSurvey({ - id: survey.id, - updatePayload: { - end_date: null, - }, - intentContext: - ProductIntentContext.SURVEY_RESUMED, - }) - }, - size: 'small', - }, - secondaryButton: { - children: 'Cancel', - type: 'tertiary', - size: 'small', - }, - }) - }} + - Resume survey -
+ { + LemonDialog.open({ + title: 'Resume this survey?', + content: ( +
+ Once resumed, the survey will be + visible to your users again. +
+ ), + primaryButton: { + children: 'Resume', + type: 'primary', + onClick: () => { + updateSurvey({ + id: survey.id, + updatePayload: { + end_date: null, + }, + intentContext: + ProductIntentContext.SURVEY_RESUMED, + }) + }, + size: 'small', + }, + secondaryButton: { + children: 'Cancel', + type: 'tertiary', + size: 'small', + }, + }) + }} + > + Resume survey +
+ )} {survey.end_date && survey.archived && ( - { - updateSurvey({ - id: survey.id, - updatePayload: { archived: false }, - intentContext: - ProductIntentContext.SURVEY_UNARCHIVED, - }) - }} + - Unarchive - + { + updateSurvey({ + id: survey.id, + updatePayload: { archived: false }, + intentContext: + ProductIntentContext.SURVEY_UNARCHIVED, + }) + }} + > + Unarchive + + )} {survey.end_date && !survey.archived && ( + + { + LemonDialog.open({ + title: 'Archive this survey?', + content: ( +
+ This action will remove the + survey from your active surveys + list. It can be restored at any + time. +
+ ), + primaryButton: { + children: 'Archive', + type: 'primary', + onClick: () => { + updateSurvey({ + id: survey.id, + updatePayload: { + archived: true, + }, + intentContext: + ProductIntentContext.SURVEY_ARCHIVED, + }) + }, + size: 'small', + }, + secondaryButton: { + children: 'Cancel', + type: 'tertiary', + size: 'small', + }, + }) + }} + > + Archive +
+
+ )} + { LemonDialog.open({ - title: 'Archive this survey?', + title: 'Delete this survey?', content: (
- This action will remove the survey - from your active surveys list. It - can be restored at any time. + This action cannot be undone. All + survey data will be permanently + removed.
), primaryButton: { - children: 'Archive', + children: 'Delete', type: 'primary', - onClick: () => { - updateSurvey({ - id: survey.id, - updatePayload: { - archived: true, - }, - intentContext: - ProductIntentContext.SURVEY_ARCHIVED, - }) - }, + onClick: () => deleteSurvey(survey.id), size: 'small', }, secondaryButton: { @@ -484,38 +562,11 @@ function Surveys(): JSX.Element { }, }) }} + fullWidth > - Archive + Delete
- )} - { - LemonDialog.open({ - title: 'Delete this survey?', - content: ( -
- This action cannot be undone. All survey - data will be permanently removed. -
- ), - primaryButton: { - children: 'Delete', - type: 'primary', - onClick: () => deleteSurvey(survey.id), - size: 'small', - }, - secondaryButton: { - children: 'Cancel', - type: 'tertiary', - size: 'small', - }, - }) - }} - fullWidth - > - Delete -
+
} /> diff --git a/frontend/src/scenes/surveys/components/LaunchSurveyButton.tsx b/frontend/src/scenes/surveys/components/LaunchSurveyButton.tsx index dc6ee3d43a..c8eb22fb84 100644 --- a/frontend/src/scenes/surveys/components/LaunchSurveyButton.tsx +++ b/frontend/src/scenes/surveys/components/LaunchSurveyButton.tsx @@ -3,11 +3,12 @@ import { ReactNode } from 'react' import { LemonButton, LemonDialog } from '@posthog/lemon-ui' +import { AccessControlAction } from 'lib/components/AccessControlAction' import { surveyLogic } from 'scenes/surveys/surveyLogic' import { surveysLogic } from 'scenes/surveys/surveysLogic' import { doesSurveyHaveDisplayConditions } from 'scenes/surveys/utils' -import { SurveyType } from '~/types' +import { AccessControlLevel, AccessControlResourceType, SurveyType } from '~/types' export function LaunchSurveyButton({ children = 'Launch' }: { children?: ReactNode }): JSX.Element { const { survey } = useValues(surveyLogic) @@ -15,42 +16,48 @@ export function LaunchSurveyButton({ children = 'Launch' }: { children?: ReactNo const { launchSurvey } = useActions(surveyLogic) return ( - { - LemonDialog.open({ - title: 'Launch this survey?', - content: ( -
- The survey will immediately start displaying to{' '} - {doesSurveyHaveDisplayConditions(survey) - ? 'users matching the display conditions' - : 'all your users'} - . -
- ), - primaryButton: { - children: 'Launch', - type: 'primary', - onClick: () => launchSurvey(), - size: 'small', - }, - secondaryButton: { - children: 'Cancel', - type: 'tertiary', - size: 'small', - }, - }) - }} + - {children} -
+ { + LemonDialog.open({ + title: 'Launch this survey?', + content: ( +
+ The survey will immediately start displaying to{' '} + {doesSurveyHaveDisplayConditions(survey) + ? 'users matching the display conditions' + : 'all your users'} + . +
+ ), + primaryButton: { + children: 'Launch', + type: 'primary', + onClick: () => launchSurvey(), + size: 'small', + }, + secondaryButton: { + children: 'Cancel', + type: 'tertiary', + size: 'small', + }, + }) + }} + > + {children} +
+ ) } diff --git a/frontend/src/scenes/surveys/components/empty-state/SurveysEmptyState.tsx b/frontend/src/scenes/surveys/components/empty-state/SurveysEmptyState.tsx index 7442ecfcb3..d1c8b2da93 100644 --- a/frontend/src/scenes/surveys/components/empty-state/SurveysEmptyState.tsx +++ b/frontend/src/scenes/surveys/components/empty-state/SurveysEmptyState.tsx @@ -6,6 +6,7 @@ import { toast } from 'react-toastify' import { IconSparkles } from '@posthog/icons' import { LemonButton } from '@posthog/lemon-ui' +import { AccessControlAction } from 'lib/components/AccessControlAction' import { ProductIntroduction } from 'lib/components/ProductIntroduction/ProductIntroduction' import { ProductIntentContext } from 'lib/utils/product-intents' import MaxTool from 'scenes/max/MaxTool' @@ -15,7 +16,7 @@ import { urls } from 'scenes/urls' import { userLogic } from 'scenes/userLogic' import { sidePanelLogic } from '~/layout/navigation-3000/sidepanel/sidePanelLogic' -import { ProductKey, SidePanelTab } from '~/types' +import { AccessControlLevel, AccessControlResourceType, ProductKey, SidePanelTab } from '~/types' import { TemplateCard } from '../../SurveyTemplates' import { SURVEY_CREATED_SOURCE, SurveyTemplate, SurveyTemplateType, defaultSurveyTemplates } from '../../constants' @@ -37,14 +38,19 @@ export function SurveysEmptyState({ numOfSurveys }: Props): JSX.Element { if (!isOnNewEmptyStateExperiment) { return ( - router.actions.push(urls.surveyTemplates())} - isEmpty={numOfSurveys === 0} - productKey={ProductKey.SURVEYS} - /> + + router.actions.push(urls.surveyTemplates())} + isEmpty={numOfSurveys === 0} + productKey={ProductKey.SURVEYS} + /> + ) } diff --git a/frontend/src/scenes/surveys/constants.tsx b/frontend/src/scenes/surveys/constants.tsx index f7bf2e4d77..0d9e426259 100644 --- a/frontend/src/scenes/surveys/constants.tsx +++ b/frontend/src/scenes/surveys/constants.tsx @@ -2,6 +2,7 @@ import { IconAreaChart, IconComment, IconGridView, IconLink, IconListView } from import { allOperatorsMapping } from 'lib/utils' import { + AccessControlLevel, Survey, SurveyAppearance, SurveyMatchType, @@ -179,6 +180,7 @@ export interface NewSurvey | 'response_sampling_limit' | 'schedule' | 'enable_partial_responses' + | 'user_access_level' > { id: 'new' linked_flag_id: number | null @@ -213,6 +215,7 @@ export const NEW_SURVEY: NewSurvey = { iteration_count: null, iteration_frequency_days: null, enable_partial_responses: true, + user_access_level: AccessControlLevel.Editor, } export enum SurveyTemplateType { diff --git a/frontend/src/scenes/surveys/surveyLogic.test.ts b/frontend/src/scenes/surveys/surveyLogic.test.ts index 9ccb8b5fbb..5343da579f 100644 --- a/frontend/src/scenes/surveys/surveyLogic.test.ts +++ b/frontend/src/scenes/surveys/surveyLogic.test.ts @@ -5,6 +5,7 @@ import { processResultsForSurveyQuestions, surveyLogic } from 'scenes/surveys/su import { initKeaTests } from '~/test/init' import { + AccessControlLevel, AnyPropertyFilter, ChoiceQuestionProcessedResponses, EventPropertyFilter, @@ -72,6 +73,7 @@ const MULTIPLE_CHOICE_SURVEY: Survey = { iteration_count: null, iteration_frequency_days: null, schedule: SurveySchedule.Once, + user_access_level: AccessControlLevel.Editor, } describe('set response-based survey branching', () => { @@ -121,6 +123,7 @@ describe('set response-based survey branching', () => { targeting_flag_filters: undefined, responses_limit: null, schedule: SurveySchedule.Once, + user_access_level: AccessControlLevel.Editor, } describe('main', () => { diff --git a/frontend/src/scenes/surveys/surveyLogic.tsx b/frontend/src/scenes/surveys/surveyLogic.tsx index 7839241a83..5844c4fdc2 100644 --- a/frontend/src/scenes/surveys/surveyLogic.tsx +++ b/frontend/src/scenes/surveys/surveyLogic.tsx @@ -1401,6 +1401,8 @@ export const surveyLogic = kea([ ? { activity_scope: ActivityScope.SURVEY, activity_item_id: `${survey.id}`, + access_control_resource: 'survey', + access_control_resource_id: `${survey.id}`, } : null }, diff --git a/frontend/src/scenes/surveys/surveysLogic.test.ts b/frontend/src/scenes/surveys/surveysLogic.test.ts index e3b469797a..f49de5b637 100644 --- a/frontend/src/scenes/surveys/surveysLogic.test.ts +++ b/frontend/src/scenes/surveys/surveysLogic.test.ts @@ -2,7 +2,7 @@ import { expectLogic } from 'kea-test-utils' import { useMocks } from '~/mocks/jest' import { initKeaTests } from '~/test/init' -import { Survey, SurveySchedule, SurveyType } from '~/types' +import { AccessControlLevel, Survey, SurveySchedule, SurveyType } from '~/types' import { surveysLogic } from './surveysLogic' @@ -27,6 +27,7 @@ const createTestSurvey = (id: string, name: string): Survey => ({ iteration_count: null, iteration_frequency_days: null, schedule: SurveySchedule.Once, + user_access_level: AccessControlLevel.Editor, }) describe('surveysLogic', () => { diff --git a/frontend/src/types.ts b/frontend/src/types.ts index 4ee4df32fd..9ce4da8cdf 100644 --- a/frontend/src/types.ts +++ b/frontend/src/types.ts @@ -306,6 +306,7 @@ export enum AccessControlResourceType { Notebook = 'notebook', SessionRecording = 'session_recording', RevenueAnalytics = 'revenue_analytics', + Survey = 'survey', Experiment = 'experiment', } @@ -3181,7 +3182,7 @@ export interface ConsolidatedSurveyResults { export type SurveyResponseRow = Array export type SurveyRawResults = SurveyResponseRow[] -export interface Survey { +export interface Survey extends WithAccessControl { /** UUID */ id: string name: string diff --git a/posthog/api/survey.py b/posthog/api/survey.py index 1d70795685..e1c7cac05b 100644 --- a/posthog/api/survey.py +++ b/posthog/api/survey.py @@ -52,6 +52,8 @@ from posthog.models.surveys.util import ( from posthog.models.team.team import Team from posthog.models.user import User from posthog.models.utils import UUIDT +from posthog.rbac.access_control_api_mixin import AccessControlViewSetMixin +from posthog.rbac.user_access_control import UserAccessControlSerializerMixin from posthog.utils_cors import cors_response from ee.surveys.summaries.summarize_surveys import summarize_survey_responses @@ -108,7 +110,7 @@ SurveyStats = TypedDict( ) -class SurveySerializer(serializers.ModelSerializer): +class SurveySerializer(UserAccessControlSerializerMixin, serializers.ModelSerializer): linked_flag_id = serializers.IntegerField(required=False, allow_null=True, source="linked_flag.id") linked_flag = MinimalFeatureFlagSerializer(read_only=True) targeting_flag = MinimalFeatureFlagSerializer(read_only=True) @@ -170,6 +172,7 @@ class SurveySerializer(serializers.ModelSerializer): "response_sampling_limit", "response_sampling_daily_limits", "enable_partial_responses", + "user_access_level", ] read_only_fields = ["id", "created_at", "created_by"] @@ -804,7 +807,7 @@ class SurveySerializerCreateUpdateOnly(serializers.ModelSerializer): raise serializers.ValidationError("Targeting flag for survey failed, invalid parameters.") -class SurveyViewSet(TeamAndOrgViewSetMixin, viewsets.ModelViewSet): +class SurveyViewSet(TeamAndOrgViewSetMixin, AccessControlViewSetMixin, viewsets.ModelViewSet): scope_object = "survey" queryset = Survey.objects.select_related("linked_flag", "targeting_flag", "internal_targeting_flag").all() filter_backends = [filters.SearchFilter] diff --git a/posthog/api/test/__snapshots__/test_action.ambr b/posthog/api/test/__snapshots__/test_action.ambr index 6e3d5bc090..b3698dd4af 100644 --- a/posthog/api/test/__snapshots__/test_action.ambr +++ b/posthog/api/test/__snapshots__/test_action.ambr @@ -84,11 +84,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -105,10 +100,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -444,11 +444,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -465,10 +460,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -539,11 +539,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -560,10 +555,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/__snapshots__/test_annotation.ambr b/posthog/api/test/__snapshots__/test_annotation.ambr index 12302c3575..57a96a9e53 100644 --- a/posthog/api/test/__snapshots__/test_annotation.ambr +++ b/posthog/api/test/__snapshots__/test_annotation.ambr @@ -84,11 +84,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -105,10 +100,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -467,11 +467,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -488,10 +483,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -550,11 +550,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -571,10 +566,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/__snapshots__/test_decide.ambr b/posthog/api/test/__snapshots__/test_decide.ambr index ae26abdcec..ba40f8ca8d 100644 --- a/posthog/api/test/__snapshots__/test_decide.ambr +++ b/posthog/api/test/__snapshots__/test_decide.ambr @@ -376,11 +376,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -397,10 +392,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -532,11 +532,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -553,10 +548,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -668,11 +668,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -689,10 +684,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -927,11 +927,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -948,10 +943,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1216,11 +1216,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1237,10 +1232,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1359,11 +1359,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1380,10 +1375,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1483,11 +1483,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1504,10 +1499,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1721,11 +1721,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1742,10 +1737,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1888,11 +1888,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1909,10 +1904,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2012,11 +2012,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2033,10 +2028,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2225,11 +2225,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2246,10 +2241,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2384,11 +2384,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2405,10 +2400,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2500,11 +2500,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2521,10 +2516,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2982,11 +2982,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3003,10 +2998,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3138,11 +3138,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3159,10 +3154,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3274,11 +3274,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3295,10 +3290,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3478,11 +3478,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3499,10 +3494,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3750,11 +3750,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3771,10 +3766,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3844,11 +3844,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3865,10 +3860,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3939,11 +3939,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3960,10 +3955,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4207,11 +4207,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4228,10 +4223,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4313,11 +4313,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4334,10 +4329,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4622,11 +4622,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4643,10 +4638,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4721,11 +4721,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4742,10 +4737,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5029,11 +5029,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5050,10 +5045,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5179,11 +5179,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5200,10 +5195,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5454,11 +5454,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5475,10 +5470,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5553,11 +5553,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5574,10 +5569,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5821,11 +5821,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5842,10 +5837,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6024,11 +6024,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6045,10 +6040,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6177,11 +6177,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6198,10 +6193,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6276,11 +6276,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6297,10 +6292,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6416,11 +6416,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6437,10 +6432,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6522,11 +6522,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6543,10 +6538,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6636,11 +6636,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6657,10 +6652,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6776,11 +6776,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6797,10 +6792,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6875,11 +6875,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6896,10 +6891,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7015,11 +7015,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7036,10 +7031,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7216,11 +7216,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7237,10 +7232,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7355,11 +7355,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7376,10 +7371,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7454,11 +7454,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7475,10 +7470,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7594,11 +7594,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7615,10 +7610,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7715,11 +7715,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7736,10 +7731,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7878,11 +7878,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7899,10 +7894,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7986,11 +7986,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8007,10 +8002,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8139,11 +8139,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8160,10 +8155,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8238,11 +8238,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8259,10 +8254,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8378,11 +8378,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8399,10 +8394,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8484,11 +8484,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8505,10 +8500,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8598,11 +8598,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8619,10 +8614,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8738,11 +8738,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8759,10 +8754,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8837,11 +8837,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8858,10 +8853,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8977,11 +8977,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8998,10 +8993,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9190,11 +9190,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9211,10 +9206,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9329,11 +9329,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9350,10 +9345,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9428,11 +9428,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9449,10 +9444,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9568,11 +9568,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9589,10 +9584,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9689,11 +9689,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9710,10 +9705,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9864,11 +9864,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9885,10 +9880,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/__snapshots__/test_element.ambr b/posthog/api/test/__snapshots__/test_element.ambr index 92c09b9e1b..c871e51d39 100644 --- a/posthog/api/test/__snapshots__/test_element.ambr +++ b/posthog/api/test/__snapshots__/test_element.ambr @@ -84,11 +84,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -105,10 +100,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/__snapshots__/test_feature_flag.ambr b/posthog/api/test/__snapshots__/test_feature_flag.ambr index f0b7056f9c..ea887ba1b9 100644 --- a/posthog/api/test/__snapshots__/test_feature_flag.ambr +++ b/posthog/api/test/__snapshots__/test_feature_flag.ambr @@ -452,11 +452,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -473,10 +468,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -867,11 +867,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -888,10 +883,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1191,11 +1191,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1212,10 +1207,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1427,11 +1427,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1448,10 +1443,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1558,11 +1558,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1579,10 +1574,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2065,11 +2065,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2086,10 +2081,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2551,11 +2551,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2572,10 +2567,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2682,11 +2682,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2703,10 +2698,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3034,11 +3034,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3055,10 +3050,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3194,11 +3194,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3215,10 +3210,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3325,11 +3325,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3346,10 +3341,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3821,11 +3821,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3842,10 +3837,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4086,11 +4086,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4107,10 +4102,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4169,11 +4169,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4190,10 +4185,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4300,11 +4300,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4321,10 +4316,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/__snapshots__/test_insight.ambr b/posthog/api/test/__snapshots__/test_insight.ambr index 7bc2415050..6dce99e6ac 100644 --- a/posthog/api/test/__snapshots__/test_insight.ambr +++ b/posthog/api/test/__snapshots__/test_insight.ambr @@ -680,11 +680,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -701,10 +696,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -801,11 +801,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -822,10 +817,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -891,11 +891,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -912,10 +907,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1056,11 +1056,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1077,10 +1072,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1196,11 +1196,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1217,10 +1212,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1445,11 +1445,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1466,10 +1461,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1741,11 +1741,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1762,10 +1757,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1916,11 +1916,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1937,10 +1932,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2072,11 +2072,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2093,10 +2088,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3787,11 +3787,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3808,10 +3803,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3877,11 +3877,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3898,10 +3893,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/__snapshots__/test_organization_feature_flag.ambr b/posthog/api/test/__snapshots__/test_organization_feature_flag.ambr index d564e87f17..1bdc1c7d58 100644 --- a/posthog/api/test/__snapshots__/test_organization_feature_flag.ambr +++ b/posthog/api/test/__snapshots__/test_organization_feature_flag.ambr @@ -134,11 +134,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -155,10 +150,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -498,11 +498,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -519,10 +514,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -580,11 +580,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -601,10 +596,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -775,11 +775,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -796,10 +791,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -894,11 +894,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -915,10 +910,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -984,11 +984,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1005,10 +1000,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1149,11 +1149,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1170,10 +1165,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1239,11 +1239,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1260,10 +1255,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1388,11 +1388,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1409,10 +1404,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1478,11 +1478,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1499,10 +1494,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1643,11 +1643,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1664,10 +1659,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1820,11 +1820,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1841,10 +1836,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2056,11 +2056,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2077,10 +2072,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2662,11 +2662,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2683,10 +2678,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2888,11 +2888,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2909,10 +2904,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/__snapshots__/test_preflight.ambr b/posthog/api/test/__snapshots__/test_preflight.ambr index 1a6ccd299f..94884b294e 100644 --- a/posthog/api/test/__snapshots__/test_preflight.ambr +++ b/posthog/api/test/__snapshots__/test_preflight.ambr @@ -50,11 +50,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -71,10 +66,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/__snapshots__/test_survey.ambr b/posthog/api/test/__snapshots__/test_survey.ambr index 1f412aa92e..0e73f73b86 100644 --- a/posthog/api/test/__snapshots__/test_survey.ambr +++ b/posthog/api/test/__snapshots__/test_survey.ambr @@ -3176,11 +3176,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3197,10 +3192,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/dashboards/__snapshots__/test_dashboard.ambr b/posthog/api/test/dashboards/__snapshots__/test_dashboard.ambr index 95f9ba225f..fb7bb5e946 100644 --- a/posthog/api/test/dashboards/__snapshots__/test_dashboard.ambr +++ b/posthog/api/test/dashboards/__snapshots__/test_dashboard.ambr @@ -115,11 +115,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -136,10 +131,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -388,11 +388,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -409,10 +404,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -505,11 +505,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -526,10 +521,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -875,11 +875,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -896,10 +891,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1226,11 +1226,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1247,10 +1242,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1414,11 +1414,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1435,10 +1430,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1998,11 +1998,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2019,10 +2014,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2155,11 +2155,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2176,10 +2171,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2276,11 +2276,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2297,10 +2292,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2366,11 +2366,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2387,10 +2382,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2531,11 +2531,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2552,10 +2547,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2655,11 +2655,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2676,10 +2671,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2738,11 +2738,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2759,10 +2754,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3030,11 +3030,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3051,10 +3046,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3578,11 +3578,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3599,10 +3594,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3668,11 +3668,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3689,10 +3684,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3982,11 +3982,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4003,10 +3998,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4272,11 +4272,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4293,10 +4288,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4362,11 +4362,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4383,10 +4378,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4481,11 +4481,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4502,10 +4497,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4602,11 +4602,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4623,10 +4618,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4692,11 +4692,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4713,10 +4708,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4874,11 +4874,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4895,10 +4890,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4998,11 +4998,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5019,10 +5014,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5305,11 +5305,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5326,10 +5321,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5555,11 +5555,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5576,10 +5571,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5673,11 +5673,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5694,10 +5689,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5763,11 +5763,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5784,10 +5779,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5882,11 +5882,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5903,10 +5898,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6003,11 +6003,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6024,10 +6019,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6093,11 +6093,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6114,10 +6109,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6275,11 +6275,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6296,10 +6291,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6399,11 +6399,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6420,10 +6415,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6715,11 +6715,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6736,10 +6731,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7064,11 +7064,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7085,10 +7080,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7290,11 +7290,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7311,10 +7306,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7599,11 +7599,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7620,10 +7615,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7795,11 +7795,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7816,10 +7811,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8259,11 +8259,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8280,10 +8275,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8376,11 +8376,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8397,10 +8392,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8626,11 +8626,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8647,10 +8642,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8827,11 +8827,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8848,10 +8843,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8991,11 +8991,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9012,10 +9007,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9276,11 +9276,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9297,10 +9292,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9582,11 +9582,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9603,10 +9598,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9672,11 +9672,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9693,10 +9688,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9817,11 +9817,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9838,10 +9833,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9938,11 +9938,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9959,10 +9954,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -10028,11 +10028,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -10049,10 +10044,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -10193,11 +10193,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -10214,10 +10209,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -10283,11 +10283,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -10304,10 +10299,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -10413,11 +10413,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -10434,10 +10429,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -10578,11 +10578,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -10599,10 +10594,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -10702,11 +10702,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -10723,10 +10718,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11015,11 +11015,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -11036,10 +11031,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11212,11 +11212,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -11233,10 +11228,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11383,11 +11383,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -11404,10 +11399,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11473,11 +11473,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -11494,10 +11489,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11592,11 +11592,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -11613,10 +11608,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11713,11 +11713,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -11734,10 +11729,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11803,11 +11803,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -11824,10 +11819,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11990,11 +11990,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -12011,10 +12006,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -12114,11 +12114,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -12135,10 +12130,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -12450,11 +12450,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -12471,10 +12466,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -12642,11 +12642,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -12663,10 +12658,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -12830,11 +12830,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -12851,10 +12846,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -13067,11 +13067,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -13088,10 +13083,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -13431,11 +13431,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -13452,10 +13447,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -13595,11 +13595,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -13616,10 +13611,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -13800,11 +13800,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -13821,10 +13816,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -13917,11 +13917,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -13938,10 +13933,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -14167,11 +14167,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -14188,10 +14183,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -14368,11 +14368,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -14389,10 +14384,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -14532,11 +14532,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -14553,10 +14548,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -14817,11 +14817,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -14838,10 +14833,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -15294,11 +15294,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -15315,10 +15310,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/notebooks/__snapshots__/test_notebook.ambr b/posthog/api/test/notebooks/__snapshots__/test_notebook.ambr index 72ce6bdf95..85a5d708eb 100644 --- a/posthog/api/test/notebooks/__snapshots__/test_notebook.ambr +++ b/posthog/api/test/notebooks/__snapshots__/test_notebook.ambr @@ -84,11 +84,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -105,10 +100,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -320,11 +320,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -341,10 +336,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -510,11 +510,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -531,10 +526,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -622,11 +622,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -643,10 +638,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -843,11 +843,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -864,10 +859,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/api/test/test_survey.py b/posthog/api/test/test_survey.py index f8c261976f..249949ab5b 100644 --- a/posthog/api/test/test_survey.py +++ b/posthog/api/test/test_survey.py @@ -1165,6 +1165,7 @@ class TestSurvey(APIBaseTest): "response_sampling_interval": None, "response_sampling_limit": None, "response_sampling_daily_limits": None, + "user_access_level": "manager", } ], } diff --git a/posthog/models/filters/test/__snapshots__/test_filter.ambr b/posthog/models/filters/test/__snapshots__/test_filter.ambr index e8f6b22c96..45f6071cef 100644 --- a/posthog/models/filters/test/__snapshots__/test_filter.ambr +++ b/posthog/models/filters/test/__snapshots__/test_filter.ambr @@ -17,11 +17,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -38,10 +33,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -107,11 +107,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -128,10 +123,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -197,11 +197,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -218,10 +213,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -287,11 +287,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -308,10 +303,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -377,11 +377,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -398,10 +393,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/models/team/team.py b/posthog/models/team/team.py index ff8061a321..b5d189f428 100644 --- a/posthog/models/team/team.py +++ b/posthog/models/team/team.py @@ -285,11 +285,7 @@ class Team(UUIDTClassicModel): has_completed_onboarding_for = models.JSONField(null=True, blank=True) onboarding_tasks = models.JSONField(null=True, blank=True) ingested_event = models.BooleanField(default=False) - autocapture_opt_out = models.BooleanField(null=True, blank=True) - autocapture_web_vitals_opt_in = models.BooleanField(null=True, blank=True) - autocapture_web_vitals_allowed_metrics = models.JSONField(null=True, blank=True) - autocapture_exceptions_opt_in = models.BooleanField(null=True, blank=True) - autocapture_exceptions_errors_to_ignore = models.JSONField(null=True, blank=True) + person_processing_opt_out = models.BooleanField(null=True, default=False) secret_api_token = models.CharField( max_length=200, @@ -301,6 +297,8 @@ class Team(UUIDTClassicModel): null=True, blank=True, ) + + # Session recording session_recording_opt_in = field_access_control(models.BooleanField(default=False), "session_recording", "editor") session_recording_sample_rate = field_access_control( models.DecimalField( @@ -356,16 +354,31 @@ class Team(UUIDTClassicModel): choices=SessionRecordingRetentionPeriod.choices, default=SessionRecordingRetentionPeriod.THIRTY_DAYS, ) - survey_config = models.JSONField(null=True, blank=True) + + # Surveys + survey_config = field_access_control(models.JSONField(null=True, blank=True), "survey", "editor") + surveys_opt_in = field_access_control(models.BooleanField(null=True, blank=True), "survey", "editor") + + # Capture / Autocapture capture_console_log_opt_in = models.BooleanField(null=True, blank=True, default=True) capture_performance_opt_in = models.BooleanField(null=True, blank=True, default=True) capture_dead_clicks = models.BooleanField(null=True, blank=True, default=False) - surveys_opt_in = models.BooleanField(null=True, blank=True) + autocapture_opt_out = models.BooleanField(null=True, blank=True) + autocapture_web_vitals_opt_in = models.BooleanField(null=True, blank=True) + autocapture_web_vitals_allowed_metrics = models.JSONField(null=True, blank=True) + autocapture_exceptions_opt_in = models.BooleanField(null=True, blank=True) + autocapture_exceptions_errors_to_ignore = models.JSONField(null=True, blank=True) + + # Heatmaps heatmaps_opt_in = models.BooleanField(null=True, blank=True) + + # Web analytics web_analytics_pre_aggregated_tables_enabled = models.BooleanField(default=False, null=True) web_analytics_pre_aggregated_tables_version = models.CharField( max_length=10, default="v2", null=True, choices=[("v1", "v1"), ("v2", "v2")] ) + + # Feature flags flags_persistence_default = models.BooleanField(null=True, blank=True, default=False) feature_flag_confirmation_enabled = models.BooleanField(null=True, blank=True, default=False) feature_flag_confirmation_message = models.TextField(null=True, blank=True) diff --git a/posthog/rbac/user_access_control.py b/posthog/rbac/user_access_control.py index 48b8aee1d8..21003347a8 100644 --- a/posthog/rbac/user_access_control.py +++ b/posthog/rbac/user_access_control.py @@ -57,6 +57,7 @@ ACCESS_CONTROL_RESOURCES: tuple[APIScopeObject, ...] = ( "notebook", "session_recording", "revenue_analytics", + "survey", "experiment", ) diff --git a/posthog/session_recordings/test/__snapshots__/test_session_recording_playlist.ambr b/posthog/session_recordings/test/__snapshots__/test_session_recording_playlist.ambr index 5bdbe4641d..9b6a1a01f7 100644 --- a/posthog/session_recordings/test/__snapshots__/test_session_recording_playlist.ambr +++ b/posthog/session_recordings/test/__snapshots__/test_session_recording_playlist.ambr @@ -87,11 +87,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -108,10 +103,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -321,11 +321,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -342,10 +337,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -580,11 +580,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -601,10 +596,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -830,11 +830,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -851,10 +846,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -977,11 +977,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -998,10 +993,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1180,11 +1180,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1201,10 +1196,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1445,11 +1445,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1466,10 +1461,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/session_recordings/test/__snapshots__/test_session_recordings.ambr b/posthog/session_recordings/test/__snapshots__/test_session_recordings.ambr index 6d03c3dbf2..f72aeba8c7 100644 --- a/posthog/session_recordings/test/__snapshots__/test_session_recordings.ambr +++ b/posthog/session_recordings/test/__snapshots__/test_session_recordings.ambr @@ -240,11 +240,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -261,10 +256,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -561,11 +561,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -582,10 +577,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -651,11 +651,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -672,10 +667,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1030,11 +1030,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1051,10 +1046,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1273,11 +1273,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1294,10 +1289,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1600,11 +1600,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1621,10 +1616,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1891,11 +1891,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1912,10 +1907,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1981,11 +1981,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2002,10 +1997,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2071,11 +2071,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2092,10 +2087,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2161,11 +2161,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2182,10 +2177,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2318,11 +2318,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2339,10 +2334,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2561,11 +2561,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2582,10 +2577,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2869,11 +2869,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2890,10 +2885,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2959,11 +2959,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2980,10 +2975,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3049,11 +3049,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3070,10 +3065,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3139,11 +3139,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3160,10 +3155,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3229,11 +3229,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3250,10 +3245,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3319,11 +3319,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3340,10 +3335,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3409,11 +3409,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3430,10 +3425,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -3710,11 +3710,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -3731,10 +3726,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4242,11 +4242,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4263,10 +4258,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -4774,11 +4774,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -4795,10 +4790,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5210,11 +5210,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5231,10 +5226,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5711,11 +5711,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5732,10 +5727,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -5868,11 +5868,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -5889,10 +5884,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6039,11 +6039,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6060,10 +6055,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6476,11 +6476,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6497,10 +6492,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -6633,11 +6633,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -6654,10 +6649,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7156,11 +7156,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7177,10 +7172,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7279,11 +7279,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7300,10 +7295,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7396,11 +7396,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7417,10 +7412,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -7931,11 +7931,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -7952,10 +7947,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8088,11 +8088,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8109,10 +8104,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -8687,11 +8687,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -8708,10 +8703,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9004,11 +9004,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9025,10 +9020,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9203,11 +9203,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9224,10 +9219,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9714,11 +9714,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9735,10 +9730,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -9871,11 +9871,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -9892,10 +9887,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -10396,11 +10396,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -10417,10 +10412,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -10553,11 +10553,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -10574,10 +10569,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11090,11 +11090,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -11111,10 +11106,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11247,11 +11247,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -11268,10 +11263,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -11754,11 +11754,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -11775,10 +11770,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/tasks/test/__snapshots__/test_process_scheduled_changes.ambr b/posthog/tasks/test/__snapshots__/test_process_scheduled_changes.ambr index faec49a093..3efb9dc065 100644 --- a/posthog/tasks/test/__snapshots__/test_process_scheduled_changes.ambr +++ b/posthog/tasks/test/__snapshots__/test_process_scheduled_changes.ambr @@ -309,11 +309,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -330,10 +325,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -399,11 +399,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -420,10 +415,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -551,11 +551,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -572,10 +567,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1033,11 +1033,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1054,10 +1049,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1123,11 +1123,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1144,10 +1139,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1391,11 +1391,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1412,10 +1407,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/posthog/test/__snapshots__/test_feature_flag.ambr b/posthog/test/__snapshots__/test_feature_flag.ambr index 828d07cfe8..5108d24665 100644 --- a/posthog/test/__snapshots__/test_feature_flag.ambr +++ b/posthog/test/__snapshots__/test_feature_flag.ambr @@ -141,11 +141,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -162,10 +157,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1228,11 +1228,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1249,10 +1244,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2013,11 +2013,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2034,10 +2029,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", diff --git a/products/early_access_features/backend/test/__snapshots__/test_early_access_feature.ambr b/products/early_access_features/backend/test/__snapshots__/test_early_access_feature.ambr index e14522dfb2..628c3c0d06 100644 --- a/products/early_access_features/backend/test/__snapshots__/test_early_access_feature.ambr +++ b/products/early_access_features/backend/test/__snapshots__/test_early_access_feature.ambr @@ -17,11 +17,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -38,10 +33,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1562,11 +1562,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1583,10 +1578,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1683,11 +1683,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1704,10 +1699,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -1773,11 +1773,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -1794,10 +1789,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version", @@ -2649,11 +2649,6 @@ "posthog_team"."has_completed_onboarding_for", "posthog_team"."onboarding_tasks", "posthog_team"."ingested_event", - "posthog_team"."autocapture_opt_out", - "posthog_team"."autocapture_web_vitals_opt_in", - "posthog_team"."autocapture_web_vitals_allowed_metrics", - "posthog_team"."autocapture_exceptions_opt_in", - "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."person_processing_opt_out", "posthog_team"."secret_api_token", "posthog_team"."secret_api_token_backup", @@ -2670,10 +2665,15 @@ "posthog_team"."session_replay_config", "posthog_team"."session_recording_retention_period", "posthog_team"."survey_config", + "posthog_team"."surveys_opt_in", "posthog_team"."capture_console_log_opt_in", "posthog_team"."capture_performance_opt_in", "posthog_team"."capture_dead_clicks", - "posthog_team"."surveys_opt_in", + "posthog_team"."autocapture_opt_out", + "posthog_team"."autocapture_web_vitals_opt_in", + "posthog_team"."autocapture_web_vitals_allowed_metrics", + "posthog_team"."autocapture_exceptions_opt_in", + "posthog_team"."autocapture_exceptions_errors_to_ignore", "posthog_team"."heatmaps_opt_in", "posthog_team"."web_analytics_pre_aggregated_tables_enabled", "posthog_team"."web_analytics_pre_aggregated_tables_version",