@pocketprep/types 1.19.8 → 1.19.10
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 -0
- 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,6 +791,9 @@ export type ReadinessStats = {
|
|
|
791
791
|
avgScoreQuick10: number
|
|
792
792
|
avgScoreTimed: number
|
|
793
793
|
avgScoreWeakestSubject: number
|
|
794
|
+
avgScoreRecallChallenge: number
|
|
795
|
+
avgScoreAssignment: number
|
|
796
|
+
avgScoreConcept: number
|
|
794
797
|
latestOverallScore: number
|
|
795
798
|
latestCorrectCount: number
|
|
796
799
|
latestIncorrectCount: number
|
|
@@ -813,6 +816,9 @@ export type ReadinessStats = {
|
|
|
813
816
|
customQuizCount: number
|
|
814
817
|
levelUpQuizCount: number
|
|
815
818
|
timedQuizCount: number
|
|
819
|
+
recallChallengeCount: number
|
|
820
|
+
assignmentCount: number
|
|
821
|
+
conceptCount: number
|
|
816
822
|
latestCorrectOfTotal: number
|
|
817
823
|
qotdPerDay: number
|
|
818
824
|
avgSecondsPerQuestion: number
|
|
@@ -846,6 +852,9 @@ type QuizStats = {
|
|
|
846
852
|
quick10: number
|
|
847
853
|
timed: number
|
|
848
854
|
weakestSubject: number
|
|
855
|
+
recallChallenge: number
|
|
856
|
+
assignment: number
|
|
857
|
+
concept: number
|
|
849
858
|
qotd: number
|
|
850
859
|
}
|
|
851
860
|
}
|
|
@@ -866,6 +875,9 @@ type AggregateCounts = {
|
|
|
866
875
|
quick10Quizzes: number
|
|
867
876
|
timedQuizzes: number
|
|
868
877
|
weakestSubjectQuizzes: number
|
|
878
|
+
recallChallengeQuizzes: number
|
|
879
|
+
assignmentQuizzes: number
|
|
880
|
+
conceptQuizzes: number
|
|
869
881
|
totalQuizzes: number
|
|
870
882
|
}
|
|
871
883
|
export type RecentActivity = {
|