@uniteverses/shared 1.0.26 → 1.0.28
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.
|
@@ -60,6 +60,24 @@ export declare const SECTION_DIFFICULTY_OPTIONS: {
|
|
|
60
60
|
value: SatExamSectionDifficulty;
|
|
61
61
|
label: string;
|
|
62
62
|
}[];
|
|
63
|
+
export interface SectionRecommendation {
|
|
64
|
+
totalQuestions: {
|
|
65
|
+
rw: number;
|
|
66
|
+
math: number;
|
|
67
|
+
};
|
|
68
|
+
timeLimitMinutes: {
|
|
69
|
+
rw: number;
|
|
70
|
+
math: number;
|
|
71
|
+
};
|
|
72
|
+
difficultyDistribution: Record<SatExamQuestionDifficulty, number>;
|
|
73
|
+
discriminationRange: {
|
|
74
|
+
min: number;
|
|
75
|
+
max: number;
|
|
76
|
+
};
|
|
77
|
+
guessingMcq: number;
|
|
78
|
+
guessingFreeResponse: number;
|
|
79
|
+
}
|
|
80
|
+
export declare const SECTION_RECOMMENDATIONS: Record<SatExamSectionDifficulty, SectionRecommendation>;
|
|
63
81
|
export interface SatExamSection {
|
|
64
82
|
id: string;
|
|
65
83
|
examId: string;
|
|
@@ -165,3 +183,68 @@ export interface CreateSatExamCorrectAnswerInput {
|
|
|
165
183
|
export interface UpdateSatExamCorrectAnswerInput {
|
|
166
184
|
value?: string;
|
|
167
185
|
}
|
|
186
|
+
export interface SatExamTemplate {
|
|
187
|
+
id: string;
|
|
188
|
+
organizationId: string;
|
|
189
|
+
title: string;
|
|
190
|
+
description: string | null;
|
|
191
|
+
createdAt: string;
|
|
192
|
+
updatedAt: string;
|
|
193
|
+
organization: SatExamOrganization;
|
|
194
|
+
sections: SatExamTemplateSection[];
|
|
195
|
+
}
|
|
196
|
+
export interface SatExamTemplateSection {
|
|
197
|
+
id: string;
|
|
198
|
+
templateId: string;
|
|
199
|
+
name: string;
|
|
200
|
+
order: number;
|
|
201
|
+
timeLimitMinutes: number | null;
|
|
202
|
+
module: number | null;
|
|
203
|
+
questions: SatExamTemplateQuestion[];
|
|
204
|
+
}
|
|
205
|
+
export interface SatExamTemplateQuestion {
|
|
206
|
+
id: string;
|
|
207
|
+
sectionId: string;
|
|
208
|
+
order: number;
|
|
209
|
+
types: SatExamTemplateQuestionType[];
|
|
210
|
+
}
|
|
211
|
+
export interface SatExamTemplateQuestionType {
|
|
212
|
+
id: string;
|
|
213
|
+
questionId: string;
|
|
214
|
+
typeId: string;
|
|
215
|
+
type: SatExamQuestionType;
|
|
216
|
+
}
|
|
217
|
+
export interface CreateSatExamTemplateInput {
|
|
218
|
+
organizationId: string;
|
|
219
|
+
title: string;
|
|
220
|
+
description?: string;
|
|
221
|
+
}
|
|
222
|
+
export interface UpdateSatExamTemplateInput {
|
|
223
|
+
title?: string;
|
|
224
|
+
description?: string;
|
|
225
|
+
organizationId?: string;
|
|
226
|
+
}
|
|
227
|
+
export interface CreateSatExamTemplateSectionInput {
|
|
228
|
+
templateId: string;
|
|
229
|
+
name: string;
|
|
230
|
+
order: number;
|
|
231
|
+
timeLimitMinutes?: number;
|
|
232
|
+
module?: number;
|
|
233
|
+
}
|
|
234
|
+
export interface UpdateSatExamTemplateSectionInput {
|
|
235
|
+
name?: string;
|
|
236
|
+
order?: number;
|
|
237
|
+
timeLimitMinutes?: number | null;
|
|
238
|
+
module?: number | null;
|
|
239
|
+
}
|
|
240
|
+
export interface CreateSatExamTemplateQuestionInput {
|
|
241
|
+
sectionId: string;
|
|
242
|
+
order: number;
|
|
243
|
+
}
|
|
244
|
+
export interface UpdateSatExamTemplateQuestionInput {
|
|
245
|
+
order?: number;
|
|
246
|
+
}
|
|
247
|
+
export interface CreateSatExamTemplateQuestionTypeInput {
|
|
248
|
+
questionId: string;
|
|
249
|
+
typeId: string;
|
|
250
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SECTION_DIFFICULTY_OPTIONS = exports.HARD_ROUTE_DIFFICULTY = exports.EASY_ROUTE_DIFFICULTY = exports.DEFAULT_SECTION_DIFFICULTY = exports.QUESTION_GUESSING_BOUNDS = exports.QUESTION_DISCRIMINATION_BOUNDS = exports.QUESTION_DIFFICULTY_VALUE_BOUNDS = exports.QUESTION_DIFFICULTY_OPTIONS = exports.DEFAULT_QUESTION_DIFFICULTY = void 0;
|
|
3
|
+
exports.SECTION_RECOMMENDATIONS = exports.SECTION_DIFFICULTY_OPTIONS = exports.HARD_ROUTE_DIFFICULTY = exports.EASY_ROUTE_DIFFICULTY = exports.DEFAULT_SECTION_DIFFICULTY = exports.QUESTION_GUESSING_BOUNDS = exports.QUESTION_DISCRIMINATION_BOUNDS = exports.QUESTION_DIFFICULTY_VALUE_BOUNDS = exports.QUESTION_DIFFICULTY_OPTIONS = exports.DEFAULT_QUESTION_DIFFICULTY = void 0;
|
|
4
4
|
exports.DEFAULT_QUESTION_DIFFICULTY = 'medium';
|
|
5
5
|
exports.QUESTION_DIFFICULTY_OPTIONS = [
|
|
6
6
|
{ value: 'easy', label: 'Easy' },
|
|
@@ -22,3 +22,29 @@ exports.SECTION_DIFFICULTY_OPTIONS = [
|
|
|
22
22
|
{ value: 'easy', label: 'Easy (Module 2)' },
|
|
23
23
|
{ value: 'hard', label: 'Hard (Module 2)' },
|
|
24
24
|
];
|
|
25
|
+
exports.SECTION_RECOMMENDATIONS = {
|
|
26
|
+
standard: {
|
|
27
|
+
totalQuestions: { rw: 27, math: 22 },
|
|
28
|
+
timeLimitMinutes: { rw: 32, math: 35 },
|
|
29
|
+
difficultyDistribution: { easy: 0.33, medium: 0.34, hard: 0.33 },
|
|
30
|
+
discriminationRange: { min: 1.0, max: 1.5 },
|
|
31
|
+
guessingMcq: 0.25,
|
|
32
|
+
guessingFreeResponse: 0,
|
|
33
|
+
},
|
|
34
|
+
easy: {
|
|
35
|
+
totalQuestions: { rw: 27, math: 22 },
|
|
36
|
+
timeLimitMinutes: { rw: 32, math: 35 },
|
|
37
|
+
difficultyDistribution: { easy: 0.50, medium: 0.35, hard: 0.15 },
|
|
38
|
+
discriminationRange: { min: 1.5, max: 2.5 },
|
|
39
|
+
guessingMcq: 0.25,
|
|
40
|
+
guessingFreeResponse: 0,
|
|
41
|
+
},
|
|
42
|
+
hard: {
|
|
43
|
+
totalQuestions: { rw: 27, math: 22 },
|
|
44
|
+
timeLimitMinutes: { rw: 32, math: 35 },
|
|
45
|
+
difficultyDistribution: { easy: 0.15, medium: 0.35, hard: 0.50 },
|
|
46
|
+
discriminationRange: { min: 1.5, max: 2.5 },
|
|
47
|
+
guessingMcq: 0.25,
|
|
48
|
+
guessingFreeResponse: 0,
|
|
49
|
+
},
|
|
50
|
+
};
|