Remove frontend hack for requesting persistent browser sessions, part iii (frontend) (#3053)

This commit is contained in:
Jonathan Dobson
2025-07-29 10:12:42 -04:00
committed by GitHub
parent 8ff1c5dfa2
commit 9c00cff362
6 changed files with 131 additions and 169 deletions

View File

@@ -266,6 +266,14 @@ export interface EvalTask extends Eval {
export type EvalApiResponse = EvalWorkflow[] | EvalTask[];
export type DebugSessionApiResponse = {
debug_session_id: string;
browser_session_id: string;
workflow_permanent_id: string | null;
created_at: string;
modified_at: string;
};
export type WorkflowRunApiResponse = {
created_at: string;
failure_reason: string | null;