From 878934bb24f8395ee45b63a11968fc40cce645ab Mon Sep 17 00:00:00 2001 From: udohu Date: Fri, 12 Apr 2024 11:31:33 +0200 Subject: [PATCH] add new context type 'assessment' --- README.md | 1 + src/model.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 7e2ede3..596d022 100644 --- a/README.md +++ b/README.md @@ -222,6 +222,7 @@ interface LMSData { export enum ContextType { MEDIUM = 'medium', QUESTION = 'question', + ASSESSMENT= 'assessment', SECTION = 'section', CONTENT = 'content', CHAPTER = 'chapter', diff --git a/src/model.ts b/src/model.ts index 7e3f222..b0fcce5 100644 --- a/src/model.ts +++ b/src/model.ts @@ -49,6 +49,7 @@ export interface LMSData { export enum ContextType { MEDIUM = 'medium', QUESTION = 'question', + ASSESSMENT= 'assessment', SECTION = 'section', CONTENT = 'content', CHAPTER = 'chapter',