@pocketprep/types 1.14.19 → 1.14.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/Study/Cloud.d.ts +3 -0
- package/package.json +1 -1
package/Study/Cloud.d.ts
CHANGED
|
@@ -650,6 +650,7 @@ export type fetchLevelUpQuizQuestionsV3 = (params: {
|
|
|
650
650
|
export type fetchSubjectsWithLevels = (params: {
|
|
651
651
|
examGuid: string
|
|
652
652
|
majorVersion: string
|
|
653
|
+
examMetadataId?: string
|
|
653
654
|
}) => {
|
|
654
655
|
subjectName: string
|
|
655
656
|
subjectId: string
|
|
@@ -685,11 +686,13 @@ export type fetchPrebuiltQuizQuestions = (params: { prebuiltQuizId: string }) =>
|
|
|
685
686
|
export type fetchQuestionsByExamV2 = (params: {
|
|
686
687
|
compositeKey: string
|
|
687
688
|
includeMatrixQuestions?: boolean
|
|
689
|
+
examMetadataId?: string
|
|
688
690
|
}) => Question[]
|
|
689
691
|
|
|
690
692
|
export type fetchQuestionsByExamV3 = (params: {
|
|
691
693
|
compositeKey: string
|
|
692
694
|
includeMatrixQuestions?: boolean
|
|
695
|
+
examMetadataId?: string
|
|
693
696
|
}) => QuestionJSON[]
|
|
694
697
|
|
|
695
698
|
export type fetchExamNamesByQuestionSerials = (params: { serials: string[] }) => {
|