@uniteverses/shared 1.0.28 → 1.0.30
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;
|
|
@@ -76,6 +84,10 @@ export interface SectionRecommendation {
|
|
|
76
84
|
};
|
|
77
85
|
guessingMcq: number;
|
|
78
86
|
guessingFreeResponse: number;
|
|
87
|
+
routingThreshold: {
|
|
88
|
+
rw: number;
|
|
89
|
+
math: number;
|
|
90
|
+
} | null;
|
|
79
91
|
}
|
|
80
92
|
export declare const SECTION_RECOMMENDATIONS: Record<SatExamSectionDifficulty, SectionRecommendation>;
|
|
81
93
|
export interface SatExamSection {
|
|
@@ -159,11 +171,21 @@ export interface UpdateSatExamQuestionInput {
|
|
|
159
171
|
discrimination?: number;
|
|
160
172
|
guessing?: number;
|
|
161
173
|
}
|
|
174
|
+
export interface CreateSatExamQuestionTypeGroupInput {
|
|
175
|
+
name: string;
|
|
176
|
+
label: string;
|
|
177
|
+
}
|
|
178
|
+
export interface UpdateSatExamQuestionTypeGroupInput {
|
|
179
|
+
name?: string;
|
|
180
|
+
label?: string;
|
|
181
|
+
}
|
|
162
182
|
export interface CreateSatExamQuestionTypeInput {
|
|
183
|
+
groupId?: string;
|
|
163
184
|
name: string;
|
|
164
185
|
label: string;
|
|
165
186
|
}
|
|
166
187
|
export interface UpdateSatExamQuestionTypeInput {
|
|
188
|
+
groupId?: string | null;
|
|
167
189
|
name?: string;
|
|
168
190
|
label?: string;
|
|
169
191
|
}
|
|
@@ -30,6 +30,7 @@ exports.SECTION_RECOMMENDATIONS = {
|
|
|
30
30
|
discriminationRange: { min: 1.0, max: 1.5 },
|
|
31
31
|
guessingMcq: 0.25,
|
|
32
32
|
guessingFreeResponse: 0,
|
|
33
|
+
routingThreshold: { rw: 0.4, math: 0.15 },
|
|
33
34
|
},
|
|
34
35
|
easy: {
|
|
35
36
|
totalQuestions: { rw: 27, math: 22 },
|
|
@@ -38,6 +39,7 @@ exports.SECTION_RECOMMENDATIONS = {
|
|
|
38
39
|
discriminationRange: { min: 1.5, max: 2.5 },
|
|
39
40
|
guessingMcq: 0.25,
|
|
40
41
|
guessingFreeResponse: 0,
|
|
42
|
+
routingThreshold: null,
|
|
41
43
|
},
|
|
42
44
|
hard: {
|
|
43
45
|
totalQuestions: { rw: 27, math: 22 },
|
|
@@ -46,5 +48,6 @@ exports.SECTION_RECOMMENDATIONS = {
|
|
|
46
48
|
discriminationRange: { min: 1.5, max: 2.5 },
|
|
47
49
|
guessingMcq: 0.25,
|
|
48
50
|
guessingFreeResponse: 0,
|
|
51
|
+
routingThreshold: null,
|
|
49
52
|
},
|
|
50
53
|
};
|