@pocketprep/types 1.14.7 → 1.14.9

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.
Files changed (2) hide show
  1. package/Study/Cloud.d.ts +12 -3
  2. package/package.json +1 -1
package/Study/Cloud.d.ts CHANGED
@@ -314,8 +314,8 @@ export type fetchQuizQuestionsV4 = (params: {
314
314
  answered?: boolean
315
315
  flagged?: boolean
316
316
  incorrect?: boolean
317
- matrix?: boolean
318
317
  }
318
+ includeMatrixQuestions?: boolean
319
319
  }) => QuestionJSON[]
320
320
 
321
321
  export type fetchQuizQuestionsV5 = (params: {
@@ -329,8 +329,8 @@ export type fetchQuizQuestionsV5 = (params: {
329
329
  answered?: boolean
330
330
  flagged?: boolean
331
331
  incorrect?: boolean
332
- matrix?: boolean
333
332
  }
333
+ includeMatrixQuestions?: boolean
334
334
  }) => QuestionJSON[]
335
335
 
336
336
  export type fetchFlaggedQuestionKnowledgeAreas =
@@ -400,7 +400,16 @@ export type fetchUserDataV2 = (params: {
400
400
  subjectId: string
401
401
  levels: number[]
402
402
  }[]
403
- questionMetrics?: GlobalQuestionMetric[]
403
+ questionMetrics?: {
404
+ answeredCorrectlyCount: number
405
+ answeredIncorrectlyCount: number
406
+ questionSerial: string
407
+ choiceStats: {
408
+ [key: string]: number
409
+ }
410
+ examGuid: string
411
+ objectId: string
412
+ }[]
404
413
  }
405
414
 
406
415
  export type onboardingCompleted = (params: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.14.7",
3
+ "version": "1.14.9",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "repository": {
6
6
  "type": "git",