@pocketprep/types 1.14.3 → 1.14.5
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 +11 -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
|
|
@@ -658,6 +656,7 @@ export type ReadinessStats = {
|
|
|
658
656
|
latestCorrectOfTotal: number
|
|
659
657
|
qotdPerDay: number
|
|
660
658
|
avgSecondsPerQuestion: number
|
|
659
|
+
attemptsPerQuestion: number
|
|
661
660
|
}
|
|
662
661
|
type AnswerStats = {
|
|
663
662
|
[serial: string]: {
|
|
@@ -671,8 +670,6 @@ type AnswerStats = {
|
|
|
671
670
|
}
|
|
672
671
|
type QuizStats = {
|
|
673
672
|
timestamps: Date[]
|
|
674
|
-
maxTimeInQuiz: number
|
|
675
|
-
minTimeInQuiz: number
|
|
676
673
|
lastMockExamScore: number
|
|
677
674
|
lastMockExamDate: Date
|
|
678
675
|
accumScores: {
|
|
@@ -705,6 +702,15 @@ type AggregateCounts = {
|
|
|
705
702
|
weakestSubjectQuizzes: number
|
|
706
703
|
totalQuizzes: number
|
|
707
704
|
}
|
|
705
|
+
export type RecentActivity = {
|
|
706
|
+
timestamp: string
|
|
707
|
+
correctCount: number
|
|
708
|
+
incorrectCount: number
|
|
709
|
+
correctDifficulty: number
|
|
710
|
+
incorrectDifficulty: number
|
|
711
|
+
mode: number
|
|
712
|
+
durationSeconds: number
|
|
713
|
+
}
|
|
708
714
|
export type AggregateStats = Parse.Object<{
|
|
709
715
|
user: User
|
|
710
716
|
examGuid: string
|
|
@@ -715,6 +721,7 @@ export type AggregateStats = Parse.Object<{
|
|
|
715
721
|
surveyExamResult?: SurveyExamResult
|
|
716
722
|
readinessStats?: ReadinessStats
|
|
717
723
|
statsVersion?: number
|
|
724
|
+
recentActivity?: RecentActivity[]
|
|
718
725
|
}>
|
|
719
726
|
|
|
720
727
|
export type PrebuiltQuiz = Parse.Object<{
|