@pocketprep/types 1.14.3 → 1.14.4
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.
- package/Study/Class.d.ts +10 -4
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -620,8 +620,6 @@ export type SurveyExamResult = Parse.Object<{
|
|
|
620
620
|
|
|
621
621
|
export type ReadinessStats = {
|
|
622
622
|
meanTimeInQuizzes: number
|
|
623
|
-
maxTimeInQuiz: number
|
|
624
|
-
minTimeInQuiz: number
|
|
625
623
|
meanCorrectAnswerDifficulty: number
|
|
626
624
|
meanAnswerDifficulty: number
|
|
627
625
|
overallAvgScore: number
|
|
@@ -671,8 +669,6 @@ type AnswerStats = {
|
|
|
671
669
|
}
|
|
672
670
|
type QuizStats = {
|
|
673
671
|
timestamps: Date[]
|
|
674
|
-
maxTimeInQuiz: number
|
|
675
|
-
minTimeInQuiz: number
|
|
676
672
|
lastMockExamScore: number
|
|
677
673
|
lastMockExamDate: Date
|
|
678
674
|
accumScores: {
|
|
@@ -705,6 +701,15 @@ type AggregateCounts = {
|
|
|
705
701
|
weakestSubjectQuizzes: number
|
|
706
702
|
totalQuizzes: number
|
|
707
703
|
}
|
|
704
|
+
export type RecentActivity = {
|
|
705
|
+
timestamp: string
|
|
706
|
+
correctCount: number
|
|
707
|
+
incorrectCount: number
|
|
708
|
+
correctDifficulty: number
|
|
709
|
+
incorrectDifficulty: number
|
|
710
|
+
mode: number
|
|
711
|
+
durationSeconds: number
|
|
712
|
+
}
|
|
708
713
|
export type AggregateStats = Parse.Object<{
|
|
709
714
|
user: User
|
|
710
715
|
examGuid: string
|
|
@@ -715,6 +720,7 @@ export type AggregateStats = Parse.Object<{
|
|
|
715
720
|
surveyExamResult?: SurveyExamResult
|
|
716
721
|
readinessStats?: ReadinessStats
|
|
717
722
|
statsVersion?: number
|
|
723
|
+
recentActivity?: RecentActivity[]
|
|
718
724
|
}>
|
|
719
725
|
|
|
720
726
|
export type PrebuiltQuiz = Parse.Object<{
|