From b66772b09ea57be61f7991b5a9cfa827a9081c1d Mon Sep 17 00:00:00 2001 From: ronnaldronson Date: Fri, 11 Jun 2021 10:41:38 +0200 Subject: [PATCH] feat: add due date as a task field type --- lib/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/types.ts b/lib/types.ts index ee2c786269..af3cff9989 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -175,6 +175,7 @@ export interface TaskInputData { assignedToId: string body: string status: TaskState + dueDate?: string } export interface Task { @@ -182,6 +183,7 @@ export interface Task { body: string status: TaskState sys: TaskSys + dueDate?: string } /** Allows accessing the Task API for the current entry. */