@uniteverses/shared 1.0.20 → 1.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -108,3 +108,10 @@ export interface UpdateSatExamOptionInput {
|
|
|
108
108
|
text?: string;
|
|
109
109
|
order?: number;
|
|
110
110
|
}
|
|
111
|
+
export interface CreateSatExamCorrectAnswerInput {
|
|
112
|
+
questionId: string;
|
|
113
|
+
value: string;
|
|
114
|
+
}
|
|
115
|
+
export interface UpdateSatExamCorrectAnswerInput {
|
|
116
|
+
value?: string;
|
|
117
|
+
}
|