Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Added AdminGetSessionReplayResponse type for the single-replay GET en…
…dpoint response shape
  • Loading branch information
madster456 committed Mar 27, 2026
commit f7dcc2f63950c7b912f0c2437a205e780744ea8d
13 changes: 13 additions & 0 deletions packages/stack-shared/src/interface/crud/session-replays.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@ export type AdminListSessionReplaysResponse = {
},
};

export type AdminGetSessionReplayResponse = {
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,
};

export type AdminListSessionReplayChunksOptions = {
limit?: number,
cursor?: string,
Expand Down