fix task article link drawer
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user