@pocketprep/types 1.14.19 → 1.14.20
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 +2 -0
- package/package.json +1 -1
package/Study/Cloud.d.ts
CHANGED
|
@@ -685,11 +685,13 @@ export type fetchPrebuiltQuizQuestions = (params: { prebuiltQuizId: string }) =>
|
|
|
685
685
|
export type fetchQuestionsByExamV2 = (params: {
|
|
686
686
|
compositeKey: string
|
|
687
687
|
includeMatrixQuestions?: boolean
|
|
688
|
+
examMetadataId?: string
|
|
688
689
|
}) => Question[]
|
|
689
690
|
|
|
690
691
|
export type fetchQuestionsByExamV3 = (params: {
|
|
691
692
|
compositeKey: string
|
|
692
693
|
includeMatrixQuestions?: boolean
|
|
694
|
+
examMetadataId?: string
|
|
693
695
|
}) => QuestionJSON[]
|
|
694
696
|
|
|
695
697
|
export type fetchExamNamesByQuestionSerials = (params: { serials: string[] }) => {
|