@pocketprep/types 1.6.29 → 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.
- package/Study/Class.d.ts +2 -1
- package/Study/Cloud.d.ts +7 -2
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -173,6 +173,7 @@ export type License = Parse.Object<{
|
|
|
173
173
|
invitedAt?: Date
|
|
174
174
|
invitedBy?: Teach.Class.OrgInstructor
|
|
175
175
|
archivedBy?: Teach.Class.OrgInstructor
|
|
176
|
+
retryCount?: number
|
|
176
177
|
}>
|
|
177
178
|
|
|
178
179
|
export type LicensePayload = Payload<License>
|
|
@@ -329,7 +330,7 @@ export type MockExamPayload = Payload<MockExam>
|
|
|
329
330
|
|
|
330
331
|
export type ExamMetadata = Parse.Object<{
|
|
331
332
|
majorUpdate?: 1 | 0
|
|
332
|
-
hideReferences
|
|
333
|
+
hideReferences: boolean
|
|
333
334
|
examGuid: string
|
|
334
335
|
knowledgeAreas: {
|
|
335
336
|
[key: string]: {
|
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
|
-
|
|
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
|