revdev 0.381.0 → 0.382.0
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.
|
@@ -14,6 +14,7 @@ export interface BoExerciseRecord {
|
|
|
14
14
|
export interface BoExerciseRegularRecord extends BoExerciseRecord {
|
|
15
15
|
kind: ExerciseKind;
|
|
16
16
|
itemTotal: number;
|
|
17
|
+
levelCode?: string;
|
|
17
18
|
}
|
|
18
19
|
export interface BoExerciseListRecord extends BoExerciseRecord {
|
|
19
20
|
listId: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EntryStatus, ExerciseKind } from "../../common";
|
|
2
2
|
export interface CreateExerciseRequest {
|
|
3
3
|
kind: ExerciseKind;
|
|
4
|
+
levelCode?: string;
|
|
4
5
|
episodeId?: string;
|
|
5
6
|
}
|
|
6
7
|
export interface UpdateExerciseRequest extends Pick<CreateExerciseRequest, "kind"> {
|
|
@@ -16,6 +17,7 @@ export interface ExerciseModifier extends CreateExerciseRequest {
|
|
|
16
17
|
export interface GenerateExerciseRequest {
|
|
17
18
|
ruleId: string;
|
|
18
19
|
kind: ExerciseKind;
|
|
20
|
+
levelCode?: string;
|
|
19
21
|
itemCount: number;
|
|
20
22
|
otherRuleIds: string[];
|
|
21
23
|
answerTotal?: number;
|