@uniteverses/shared 1.0.28 → 1.0.29
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.
|
@@ -2,10 +2,18 @@ export interface SatExamOrganization {
|
|
|
2
2
|
id: string;
|
|
3
3
|
name: string;
|
|
4
4
|
}
|
|
5
|
+
export interface SatExamQuestionTypeGroup {
|
|
6
|
+
id: string;
|
|
7
|
+
name: string;
|
|
8
|
+
label: string;
|
|
9
|
+
types: SatExamQuestionType[];
|
|
10
|
+
}
|
|
5
11
|
export interface SatExamQuestionType {
|
|
6
12
|
id: string;
|
|
13
|
+
groupId: string | null;
|
|
7
14
|
name: string;
|
|
8
15
|
label: string;
|
|
16
|
+
group: SatExamQuestionTypeGroup | null;
|
|
9
17
|
}
|
|
10
18
|
export interface SatExamOption {
|
|
11
19
|
id: string;
|
|
@@ -159,11 +167,21 @@ export interface UpdateSatExamQuestionInput {
|
|
|
159
167
|
discrimination?: number;
|
|
160
168
|
guessing?: number;
|
|
161
169
|
}
|
|
170
|
+
export interface CreateSatExamQuestionTypeGroupInput {
|
|
171
|
+
name: string;
|
|
172
|
+
label: string;
|
|
173
|
+
}
|
|
174
|
+
export interface UpdateSatExamQuestionTypeGroupInput {
|
|
175
|
+
name?: string;
|
|
176
|
+
label?: string;
|
|
177
|
+
}
|
|
162
178
|
export interface CreateSatExamQuestionTypeInput {
|
|
179
|
+
groupId?: string;
|
|
163
180
|
name: string;
|
|
164
181
|
label: string;
|
|
165
182
|
}
|
|
166
183
|
export interface UpdateSatExamQuestionTypeInput {
|
|
184
|
+
groupId?: string | null;
|
|
167
185
|
name?: string;
|
|
168
186
|
label?: string;
|
|
169
187
|
}
|