feat: reorder properties in various interfaces for improved consistency and readability
This commit is contained in:
@@ -6,11 +6,11 @@
|
||||
*/
|
||||
|
||||
export interface TaskUpdate {
|
||||
title?: string | null;
|
||||
description?: string | null;
|
||||
status?: "inbox" | "in_progress" | "review" | "done" | null;
|
||||
priority?: string | null;
|
||||
due_at?: string | null;
|
||||
assigned_agent_id?: string | null;
|
||||
comment?: string | null;
|
||||
description?: string | null;
|
||||
due_at?: string | null;
|
||||
priority?: string | null;
|
||||
status?: "inbox" | "in_progress" | "review" | "done" | null;
|
||||
title?: string | null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user