@pocketprep/types 1.19.9 → 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/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 }
|