From 6d10460ce2c2041f18929c606eeb8c6384d84f13 Mon Sep 17 00:00:00 2001 From: Iris Date: Thu, 10 Aug 2023 10:46:16 +0200 Subject: [PATCH 1/3] feat: add quiz_name in Task types --- types/backTypes.d.ts | 1 + types/frontTypes.d.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/types/backTypes.d.ts b/types/backTypes.d.ts index f60ce86e..87b0cba0 100644 --- a/types/backTypes.d.ts +++ b/types/backTypes.d.ts @@ -33,6 +33,7 @@ type UserTask = { verify_endpoint_type: string; verify_redirect: string | null; completed: boolean; + quest_name: string | null; }; type UserDocument = { diff --git a/types/frontTypes.d.ts b/types/frontTypes.d.ts index ddf6cd10..1cc912f5 100644 --- a/types/frontTypes.d.ts +++ b/types/frontTypes.d.ts @@ -22,6 +22,7 @@ type Task = { wasVerified?: boolean; hasError?: boolean; verifyError?: string; + questName?: string; }; type TaskProps = Task & { id: number }; From 0565630f4e1767cdfbeb063ad86647327145da44 Mon Sep 17 00:00:00 2001 From: Iris Date: Thu, 10 Aug 2023 10:48:07 +0200 Subject: [PATCH 2/3] fix: typo --- types/frontTypes.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/frontTypes.d.ts b/types/frontTypes.d.ts index 1cc912f5..6ddac6b2 100644 --- a/types/frontTypes.d.ts +++ b/types/frontTypes.d.ts @@ -22,7 +22,7 @@ type Task = { wasVerified?: boolean; hasError?: boolean; verifyError?: string; - questName?: string; + quizName?: string; }; type TaskProps = Task & { id: number }; From e6d2222bb686eaec4283690b2deaa96806ce369e Mon Sep 17 00:00:00 2001 From: Iris Date: Thu, 10 Aug 2023 10:52:17 +0200 Subject: [PATCH 3/3] fix: typo --- types/backTypes.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/backTypes.d.ts b/types/backTypes.d.ts index 87b0cba0..84f16f4d 100644 --- a/types/backTypes.d.ts +++ b/types/backTypes.d.ts @@ -33,7 +33,7 @@ type UserTask = { verify_endpoint_type: string; verify_redirect: string | null; completed: boolean; - quest_name: string | null; + quiz_name: string | null; }; type UserDocument = {