@pocketprep/types 1.19.9 → 1.19.11
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/CMS/Class.d.ts +4 -3
- package/CMS/Cloud.d.ts +3 -1
- package/Study/Class.d.ts +12 -12
- package/package.json +1 -1
package/CMS/Class.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ export type User = Parse.User<{
|
|
|
102
102
|
subscribedAdminEmails?: boolean
|
|
103
103
|
isDisabled?: boolean
|
|
104
104
|
phone?: string
|
|
105
|
+
bundles?: string[]
|
|
105
106
|
}>
|
|
106
107
|
|
|
107
108
|
export type UserJSON = ReturnType<User['toJSON']>
|
|
@@ -365,10 +366,9 @@ export type ExamExportMockExam = {
|
|
|
365
366
|
|
|
366
367
|
export type ExamExportLog = Parse.Object<{
|
|
367
368
|
scenarioCount: number
|
|
368
|
-
isSignificant: boolean
|
|
369
369
|
examMetadataId: string
|
|
370
370
|
examGuid: string
|
|
371
|
-
type: '
|
|
371
|
+
type: 'patch' | 'minor' | 'major'
|
|
372
372
|
user: User | Parse.Pointer
|
|
373
373
|
mockExams: ExamExportMockExam[]
|
|
374
374
|
} & ExamExportQuestionTypeCounts>
|
|
@@ -382,7 +382,8 @@ export type ExamContentPlan = Parse.Object<{
|
|
|
382
382
|
expectedExportDate?: Date
|
|
383
383
|
outlineDate?: Date
|
|
384
384
|
newOutline?: boolean
|
|
385
|
-
versionFrequency?: 'annually' | '2years' | '3years' | '4years'
|
|
385
|
+
versionFrequency?: 'annually' | '2years' | '3years' | '4years'
|
|
386
|
+
| '5years' | '6years' | '7years' | '8years' | '9years'
|
|
386
387
|
objectives?: ('newExam' | 'newMockExam' | 'newQuestions'
|
|
387
388
|
| 'communityScoreReview' | 'qualityReview' | 'examOutlineUpdates'
|
|
388
389
|
| 'memberConcern' | 'referenceUpdate' | 'other')[]
|
package/CMS/Cloud.d.ts
CHANGED
|
@@ -408,4 +408,6 @@ export type upsertExamContentPlan = (params: ExamContentPlanPayload) => ExamCont
|
|
|
408
408
|
|
|
409
409
|
export type fetchExamContentPlans = () => ExamContentPlanJSON[]
|
|
410
410
|
|
|
411
|
-
export type fetchExamContentPlanForExamGuid = (params: { examGuid: string }) => ExamContentPlanJSON
|
|
411
|
+
export type fetchExamContentPlanForExamGuid = (params: { examGuid: string }) => ExamContentPlanJSON
|
|
412
|
+
|
|
413
|
+
export type fetchLatestMinorOrMajorExamExportLogIsoDates = () => { [examMetadataId: string]: string }
|
package/Study/Class.d.ts
CHANGED
|
@@ -791,9 +791,9 @@ export type ReadinessStats = {
|
|
|
791
791
|
avgScoreQuick10: number
|
|
792
792
|
avgScoreTimed: number
|
|
793
793
|
avgScoreWeakestSubject: number
|
|
794
|
-
avgScoreRecallChallenge
|
|
795
|
-
avgScoreAssignment
|
|
796
|
-
avgScoreConcept
|
|
794
|
+
avgScoreRecallChallenge?: number
|
|
795
|
+
avgScoreAssignment?: number
|
|
796
|
+
avgScoreConcept?: number
|
|
797
797
|
latestOverallScore: number
|
|
798
798
|
latestCorrectCount: number
|
|
799
799
|
latestIncorrectCount: number
|
|
@@ -816,9 +816,9 @@ export type ReadinessStats = {
|
|
|
816
816
|
customQuizCount: number
|
|
817
817
|
levelUpQuizCount: number
|
|
818
818
|
timedQuizCount: number
|
|
819
|
-
recallChallengeCount
|
|
820
|
-
assignmentCount
|
|
821
|
-
conceptCount
|
|
819
|
+
recallChallengeCount?: number
|
|
820
|
+
assignmentCount?: number
|
|
821
|
+
conceptCount?: number
|
|
822
822
|
latestCorrectOfTotal: number
|
|
823
823
|
qotdPerDay: number
|
|
824
824
|
avgSecondsPerQuestion: number
|
|
@@ -852,9 +852,9 @@ type QuizStats = {
|
|
|
852
852
|
quick10: number
|
|
853
853
|
timed: number
|
|
854
854
|
weakestSubject: number
|
|
855
|
-
recallChallenge
|
|
856
|
-
assignment
|
|
857
|
-
concept
|
|
855
|
+
recallChallenge?: number
|
|
856
|
+
assignment?: number
|
|
857
|
+
concept?: number
|
|
858
858
|
qotd: number
|
|
859
859
|
}
|
|
860
860
|
}
|
|
@@ -875,9 +875,9 @@ type AggregateCounts = {
|
|
|
875
875
|
quick10Quizzes: number
|
|
876
876
|
timedQuizzes: number
|
|
877
877
|
weakestSubjectQuizzes: number
|
|
878
|
-
recallChallengeQuizzes
|
|
879
|
-
assignmentQuizzes
|
|
880
|
-
conceptQuizzes
|
|
878
|
+
recallChallengeQuizzes?: number
|
|
879
|
+
assignmentQuizzes?: number
|
|
880
|
+
conceptQuizzes?: number
|
|
881
881
|
totalQuizzes: number
|
|
882
882
|
}
|
|
883
883
|
export type RecentActivity = {
|