link actions to their screenshots - frontend (#4403)

This commit is contained in:
Celal Zamanoglu
2026-01-07 01:16:36 +03:00
committed by GitHub
parent e3dd75d7c1
commit f5cb826a37
5 changed files with 35 additions and 5 deletions

View File

@@ -328,6 +328,7 @@ export type ActionApiResponse = {
option: Option | null;
file_url: string | null;
created_by: string | null;
screenshot_artifact_id?: string | null;
};
export type Action = {
@@ -339,6 +340,7 @@ export type Action = {
stepId: string;
index: number;
created_by: string | null;
screenshotArtifactId?: string | null;
};
export type EvalKind = "workflow" | "task";
@@ -464,6 +466,7 @@ export type ActionsApiResponse = {
response: string | null;
created_by: string | null;
text: string | null;
screenshot_artifact_id?: string | null;
};
export type TaskV2 = {