@pocketprep/types 1.15.25 → 1.15.27
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 +3 -0
- package/package.json +1 -1
package/Study/Cloud.d.ts
CHANGED
|
@@ -96,6 +96,7 @@ export interface IRecordQuizPayload {
|
|
|
96
96
|
levelSubjectId?: string
|
|
97
97
|
appBundleId?: string
|
|
98
98
|
prebuiltQuizId?: string
|
|
99
|
+
conceptQuizId?: string
|
|
99
100
|
examMetadataId?: string
|
|
100
101
|
includeRecommendedNext?: boolean
|
|
101
102
|
}
|
|
@@ -174,7 +175,9 @@ export type recordQuiz = (
|
|
|
174
175
|
recommendedNext?: {
|
|
175
176
|
type: 'quiz' // eventually this might include other types of recommendations like a blog link
|
|
176
177
|
quizMode: number
|
|
178
|
+
message: string
|
|
177
179
|
conceptQuizId?: string
|
|
180
|
+
questionCount?: number
|
|
178
181
|
}
|
|
179
182
|
}
|
|
180
183
|
|