add icon for scripted actions (#3274)

This commit is contained in:
Jonathan Dobson
2025-08-22 10:30:49 -04:00
committed by GitHub
parent f57d17f11e
commit 2903291dc4
4 changed files with 21 additions and 1 deletions

View File

@@ -252,6 +252,7 @@ export type ActionApiResponse = {
text: string | null;
option: Option | null;
file_url: string | null;
created_by: string | null;
};
export type Action = {
@@ -262,6 +263,7 @@ export type Action = {
success: boolean;
stepId: string;
index: number;
created_by: string | null;
};
export type EvalKind = "workflow" | "task";
@@ -357,6 +359,7 @@ export type ActionsApiResponse = {
reasoning: string | null;
intention: string | null;
response: string | null;
created_by: string | null;
};
export type TaskV2 = {