@pocketprep/types 1.13.58 → 1.13.60
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 +2 -1
- package/Study/Cloud.d.ts +2 -0
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -98,7 +98,8 @@ export type UserExamMetadata = Parse.Object<{
|
|
|
98
98
|
progressResetAt?: Date
|
|
99
99
|
scheduledExamDate?: Date
|
|
100
100
|
upgradesSeen?: string[]
|
|
101
|
-
disabledSubjects?: string[]
|
|
101
|
+
disabledSubjects?: string[] // DEPRECATED
|
|
102
|
+
disabledSubjectIds?: string[]
|
|
102
103
|
streakInfo?: IStreakInfo
|
|
103
104
|
levelUpProgress?: {
|
|
104
105
|
subjectName: string
|
package/Study/Cloud.d.ts
CHANGED
|
@@ -307,6 +307,7 @@ export type fetchQuizQuestionsV4 = (params: {
|
|
|
307
307
|
majorVersion: string
|
|
308
308
|
questionCount: number
|
|
309
309
|
subjects?: string[]
|
|
310
|
+
subjectIds?: string[]
|
|
310
311
|
include?: {
|
|
311
312
|
new?: boolean
|
|
312
313
|
answered?: boolean
|
|
@@ -320,6 +321,7 @@ export type fetchQuizQuestionsV5 = (params: {
|
|
|
320
321
|
majorVersion: string
|
|
321
322
|
questionCount: number
|
|
322
323
|
subjects?: string[]
|
|
324
|
+
subjectIds?: string[]
|
|
323
325
|
include?: {
|
|
324
326
|
new?: boolean
|
|
325
327
|
answered?: boolean
|