fix task article link drawer
Frontend CI / Frontend (push) Successful in 5m6s
Backend CI / Backend (push) Successful in 16m45s

This commit is contained in:
2026-05-14 21:14:27 +08:00
parent 34dda524d7
commit 765dae4bf1
15 changed files with 735 additions and 104 deletions
+12
View File
@@ -1689,6 +1689,9 @@ export interface ScheduleTask {
end_at: string | null
next_run_at: string | null
status: 'enabled' | 'disabled'
generation_status?: string | null
execution_time?: string | null
generated_articles?: GeneratedArticleLink[] | null
created_at: string
updated_at: string
}
@@ -1759,9 +1762,17 @@ export interface InstantTaskListParams {
created_to?: string
}
export interface GeneratedArticleLink {
article_id: number
title: string | null
generate_status: string
created_at: string
}
export interface InstantTaskItem {
id: number
article_id: number | null
task_batch_id?: string | null
prompt_rule_id: number | null
prompt_rule_name: string | null
name: string
@@ -1769,6 +1780,7 @@ export interface InstantTaskItem {
execution_time: string | null
auto_publish_platforms: string[]
generate_count: number
articles: GeneratedArticleLink[]
created_at: string
}