@pocketprep/types 1.15.21 → 1.15.22
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 +1 -0
- package/Study/Cloud.d.ts +3 -1
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export type Quiz = Parse.Object<{
|
|
|
49
49
|
readinessScore?: number
|
|
50
50
|
levelUpProgress?: LevelUpProgress
|
|
51
51
|
prebuiltQuiz?: PrebuiltQuiz | Parse.Pointer
|
|
52
|
+
conceptQuiz?: ConceptQuiz | Parse.Pointer
|
|
52
53
|
examMetadata?: ExamMetadata | Parse.Pointer
|
|
53
54
|
readiness?: ReadinessModelData[]
|
|
54
55
|
}>
|
package/Study/Cloud.d.ts
CHANGED
|
@@ -806,4 +806,6 @@ export type UpsertUserExamBackground = (params: {
|
|
|
806
806
|
examMetadataId: string
|
|
807
807
|
passed?: boolean
|
|
808
808
|
hasTakenExam?: boolean
|
|
809
|
-
}) => UserExamBackgroundJSON
|
|
809
|
+
}) => UserExamBackgroundJSON
|
|
810
|
+
|
|
811
|
+
export type FetchConceptQuizQuestions = (params: { conceptQuizId: string }) => Question[]
|