@pocketprep/types 1.13.38 → 1.13.40
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 +7 -1
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -27,7 +27,12 @@ export type Quiz = Parse.Object<{
|
|
|
27
27
|
startedAt: Date
|
|
28
28
|
user: User | Parse.Pointer
|
|
29
29
|
readinessScore?: number
|
|
30
|
-
|
|
30
|
+
levelUpProgress?: {
|
|
31
|
+
subjectName: string
|
|
32
|
+
level: number
|
|
33
|
+
score: number
|
|
34
|
+
goal: number
|
|
35
|
+
}
|
|
31
36
|
}>
|
|
32
37
|
|
|
33
38
|
export type QuizJSON = ReturnType<Quiz['toJSON']>
|
|
@@ -391,6 +396,7 @@ export type Question = Parse.Object<{
|
|
|
391
396
|
isArchived: boolean
|
|
392
397
|
isFree: boolean
|
|
393
398
|
isMockQuestion: boolean
|
|
399
|
+
keywords?: string[]
|
|
394
400
|
}>
|
|
395
401
|
|
|
396
402
|
export type QuestionJSON = ReturnType<Question['toJSON']>
|