//#region src/interface/crud/session-replays.d.ts type AdminListSessionReplaysOptions = { limit?: number; cursor?: string; user_ids?: string[]; team_ids?: string[]; duration_ms_min?: number; duration_ms_max?: number; last_event_at_from_millis?: number; last_event_at_to_millis?: number; click_count_min?: number; }; type AdminListSessionReplaysResponse = { items: Array<{ id: string; project_user: { id: string; display_name: string | null; primary_email: string | null; }; started_at_millis: number; last_event_at_millis: number; chunk_count: number; event_count: number; }>; pagination: { next_cursor: string | null; }; }; type AdminListSessionReplayChunksOptions = { limit?: number; cursor?: string; }; type AdminListSessionReplayChunksResponse = { items: Array<{ id: string; batch_id: string; session_replay_segment_id: string | null; browser_session_id: string | null; event_count: number; byte_length: number; first_event_at_millis: number; last_event_at_millis: number; created_at_millis: number; }>; pagination: { next_cursor: string | null; }; }; type AdminGetSessionReplayChunkEventsResponse = { events: unknown[]; }; type AdminGetSessionReplayAllEventsResponse = { chunks: Array<{ id: string; batch_id: string; session_replay_segment_id: string | null; event_count: number; byte_length: number; first_event_at_millis: number; last_event_at_millis: number; created_at_millis: number; }>; chunk_events: Array<{ chunk_id: string; events: unknown[]; }>; }; //#endregion export { AdminGetSessionReplayAllEventsResponse, AdminGetSessionReplayChunkEventsResponse, AdminListSessionReplayChunksOptions, AdminListSessionReplayChunksResponse, AdminListSessionReplaysOptions, AdminListSessionReplaysResponse }; //# sourceMappingURL=session-replays.d.ts.map