From 0df2fac25c9d8839ed770c109c14be86b4e33968 Mon Sep 17 00:00:00 2001 From: Andrew Scholer Date: Fri, 14 Aug 2026 11:26:28 -0700 Subject: [PATCH] Add doenet and splice to QuestionType enum --- components/rsptx/data_types/question_type.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/components/rsptx/data_types/question_type.py b/components/rsptx/data_types/question_type.py index f5964ed02..31f6c827d 100644 --- a/components/rsptx/data_types/question_type.py +++ b/components/rsptx/data_types/question_type.py @@ -61,6 +61,18 @@ class QuestionType(Enum): "Embed external content using an iFrame", ) + DOENET = ( + "doenet", + "Doenet", + "Embed an interactive activity using Doenet", + ) + + SPLICE = ( + "splice", + "SPLICE", + "Embed an external interactive activity using SPLICE", + ) + def to_dict(self): return { "value": self.value[0],