revdev 0.376.0 → 0.378.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.
|
@@ -90,7 +90,6 @@ export interface FePassItemInfo {
|
|
|
90
90
|
}
|
|
91
91
|
export interface FeExerciseBaseCursor {
|
|
92
92
|
exerciseId: string;
|
|
93
|
-
ruleId: string;
|
|
94
93
|
kind: ExerciseKind;
|
|
95
94
|
passStatus: PassStatus;
|
|
96
95
|
}
|
|
@@ -115,12 +114,6 @@ export interface FeExerciseResultCursor extends FeExerciseBaseCursor {
|
|
|
115
114
|
passStatus: PassStatus.Completed;
|
|
116
115
|
grade: number;
|
|
117
116
|
passedItems: FePassItemInfo[];
|
|
118
|
-
nextExerciseId
|
|
117
|
+
nextExerciseId?: string;
|
|
119
118
|
}
|
|
120
119
|
export type FeExerciseCursor = FeExerciseChoiceCursor | FeExerciseMatchCursor | FeExerciseResultCursor;
|
|
121
|
-
export interface FeExerciseInfoForCursor extends FeExerciseBaseCursor {
|
|
122
|
-
passId: string;
|
|
123
|
-
grade: number;
|
|
124
|
-
itemTotal: number;
|
|
125
|
-
passedItemTotal: number;
|
|
126
|
-
}
|