@pocketprep/types 1.13.19 → 1.13.21
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/CMS/Cloud.d.ts +1 -0
- package/Study/Cloud.d.ts +11 -1
- package/package.json +1 -1
package/CMS/Cloud.d.ts
CHANGED
package/Study/Cloud.d.ts
CHANGED
|
@@ -569,7 +569,17 @@ export type fetchLevelUpQuizQuestionsV2 = (params: {
|
|
|
569
569
|
level: number
|
|
570
570
|
examGuid: string
|
|
571
571
|
majorVersion: string
|
|
572
|
-
questionCount
|
|
572
|
+
questionCount?: number
|
|
573
|
+
subjectId?: string
|
|
574
|
+
subjectName?: string
|
|
575
|
+
lastResetDateISO?: string
|
|
576
|
+
}) => QuestionJSON[]
|
|
577
|
+
|
|
578
|
+
export type fetchLevelUpQuizQuestionsV3 = (params: {
|
|
579
|
+
level: number
|
|
580
|
+
examGuid: string
|
|
581
|
+
majorVersion: string
|
|
582
|
+
questionCount?: number
|
|
573
583
|
subjectId?: string
|
|
574
584
|
subjectName?: string
|
|
575
585
|
lastResetDateISO?: string
|