refactor(replay): remove session replay functionality and related components to streamline codebase
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
import apiRequest from './client'
|
||||
|
||||
export type GeoDataLevel = 'full' | 'country' | 'none'
|
||||
export type ReplayMode = 'disabled' | 'anonymous_skeleton'
|
||||
|
||||
export interface Site {
|
||||
id: string
|
||||
@@ -22,12 +21,6 @@ export interface Site {
|
||||
enable_performance_insights?: boolean
|
||||
// Bot and noise filtering
|
||||
filter_bots?: boolean
|
||||
// Session replay settings
|
||||
replay_mode?: ReplayMode
|
||||
replay_sampling_rate?: number
|
||||
replay_retention_days?: number
|
||||
replay_mask_all_text?: boolean
|
||||
replay_mask_all_inputs?: boolean
|
||||
created_at: string
|
||||
updated_at: string
|
||||
}
|
||||
@@ -54,12 +47,6 @@ export interface UpdateSiteRequest {
|
||||
enable_performance_insights?: boolean
|
||||
// Bot and noise filtering
|
||||
filter_bots?: boolean
|
||||
// Session replay settings
|
||||
replay_mode?: ReplayMode
|
||||
replay_sampling_rate?: number
|
||||
replay_retention_days?: number
|
||||
replay_mask_all_text?: boolean
|
||||
replay_mask_all_inputs?: boolean
|
||||
}
|
||||
|
||||
export async function listSites(): Promise<Site[]> {
|
||||
|
||||
Reference in New Issue
Block a user