@uniteverses/shared 1.0.38 → 1.0.39
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.
|
@@ -48,6 +48,10 @@ export interface SatExamQuestion {
|
|
|
48
48
|
id: string;
|
|
49
49
|
sectionId: string;
|
|
50
50
|
typeId: string;
|
|
51
|
+
intro: string | null;
|
|
52
|
+
imageUrl: string | null;
|
|
53
|
+
passage1: string | null;
|
|
54
|
+
passage2: string | null;
|
|
51
55
|
text: string;
|
|
52
56
|
order: number;
|
|
53
57
|
correctOptionId: string | null;
|
|
@@ -147,6 +151,10 @@ export interface UpdateSatExamSectionInput {
|
|
|
147
151
|
export interface CreateSatExamQuestionInput {
|
|
148
152
|
sectionId: string;
|
|
149
153
|
typeId: string;
|
|
154
|
+
intro?: string;
|
|
155
|
+
imageUrl?: string;
|
|
156
|
+
passage1?: string;
|
|
157
|
+
passage2?: string;
|
|
150
158
|
text: string;
|
|
151
159
|
order: number;
|
|
152
160
|
correctOptionId?: string;
|
|
@@ -162,6 +170,10 @@ export interface CreateSatExamQuestionInput {
|
|
|
162
170
|
}
|
|
163
171
|
export interface UpdateSatExamQuestionInput {
|
|
164
172
|
typeId?: string;
|
|
173
|
+
intro?: string | null;
|
|
174
|
+
imageUrl?: string | null;
|
|
175
|
+
passage1?: string | null;
|
|
176
|
+
passage2?: string | null;
|
|
165
177
|
text?: string;
|
|
166
178
|
order?: number;
|
|
167
179
|
correctOptionId?: string | null;
|