@pocketprep/types 1.6.31 → 1.6.32

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 +7 -2
  2. package/package.json +1 -1
package/Study/Cloud.d.ts CHANGED
@@ -268,8 +268,13 @@ export type fetchExamDataFromAnswerRecordIds = (params: {
268
268
 
269
269
  export type fetchQuestionsByQuizIds = (params: { quizIds: string[]; compositeKey: string }) => ExamData[]
270
270
 
271
- export type fetchSerialQuestionInfoLib = (params: { compositeKey: string }) =>
272
- { [key: string]: { subject: string; isSpecial: boolean } }
271
+ export type fetchSerialQuestionInfoLib = (params: { compositeKey: string }) => {
272
+ [key: string]: {
273
+ subject: string
274
+ isSpecial?: boolean
275
+ isMockQuestion?: boolean
276
+ }
277
+ }
273
278
 
274
279
  export type fetchQuizHistoryData = (params: {
275
280
  compositeKey: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.6.31",
3
+ "version": "1.6.32",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "main": "",
6
6
  "repository": {