feat: add bot and noise filtering option in site settings with UI toggle for enhanced data accuracy

This commit is contained in:
Usman Baig
2026-01-19 14:53:12 +01:00
parent 088e22512a
commit f183aa7759
2 changed files with 34 additions and 0 deletions

View File

@@ -20,6 +20,8 @@ export interface Site {
collect_screen_resolution?: boolean
// Performance insights setting
enable_performance_insights?: boolean
// Bot and noise filtering
filter_bots?: boolean
// Session replay settings
replay_mode?: ReplayMode
replay_sampling_rate?: number
@@ -50,6 +52,8 @@ export interface UpdateSiteRequest {
collect_screen_resolution?: boolean
// Performance insights setting
enable_performance_insights?: boolean
// Bot and noise filtering
filter_bots?: boolean
// Session replay settings
replay_mode?: ReplayMode
replay_sampling_rate?: number