@pocketprep/types 1.19.1 → 1.19.2
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 +1 -2
- package/package.json +1 -1
package/CMS/Class.d.ts
CHANGED
|
@@ -353,13 +353,12 @@ export type ExamExportQuestionTypeCounts = {
|
|
|
353
353
|
}
|
|
354
354
|
|
|
355
355
|
export type ExamExportLog = Parse.Object<{
|
|
356
|
-
questionTypeCounts: ExamExportQuestionTypeCounts
|
|
357
356
|
scenarioCount: number
|
|
358
357
|
isSignificant: boolean
|
|
359
358
|
examMetadataId: string
|
|
360
359
|
examGuid: string
|
|
361
360
|
type: 'Patch' | 'Minor' | 'Major'
|
|
362
361
|
user: User | Parse.Pointer
|
|
363
|
-
}>
|
|
362
|
+
} & ExamExportQuestionTypeCounts>
|
|
364
363
|
|
|
365
364
|
export type ExamExportLogJSON = ReturnType<ExamExportLog['toJSON']>
|