@pocketprep/types 1.15.24 → 1.15.26
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/Cloud.d.ts +6 -1
- package/package.json +1 -1
package/Study/Cloud.d.ts
CHANGED
|
@@ -174,7 +174,9 @@ export type recordQuiz = (
|
|
|
174
174
|
recommendedNext?: {
|
|
175
175
|
type: 'quiz' // eventually this might include other types of recommendations like a blog link
|
|
176
176
|
quizMode: number
|
|
177
|
+
message: string
|
|
177
178
|
conceptQuizId?: string
|
|
179
|
+
questionCount?: number
|
|
178
180
|
}
|
|
179
181
|
}
|
|
180
182
|
|
|
@@ -813,4 +815,7 @@ export type upsertUserExamBackground = (params: {
|
|
|
813
815
|
hasTakenExam?: boolean
|
|
814
816
|
}) => UserExamBackgroundJSON
|
|
815
817
|
|
|
816
|
-
export type fetchConceptQuizQuestions = (params: {
|
|
818
|
+
export type fetchConceptQuizQuestions = (params: {
|
|
819
|
+
conceptQuizId: string
|
|
820
|
+
questionCount: number
|
|
821
|
+
}) => Question[]
|