@pocketprep/types 1.6.40 → 1.6.43
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/CMS/Cloud.d.ts +1 -4
- package/Study/Cloud.d.ts +6 -2
- package/package.json +1 -1
package/CMS/Cloud.d.ts
CHANGED
|
@@ -99,12 +99,9 @@ export interface ExportData {
|
|
|
99
99
|
durationSeconds: number
|
|
100
100
|
name: string
|
|
101
101
|
enabled: boolean
|
|
102
|
-
subjects: {
|
|
103
|
-
name: string
|
|
104
|
-
count: number
|
|
105
|
-
}[]
|
|
106
102
|
items: ExportableQuestion[]
|
|
107
103
|
mockExamId?: string
|
|
104
|
+
draftObjectId: string
|
|
108
105
|
}[]
|
|
109
106
|
columnNames: [ // TODO: Possibly remove this?
|
|
110
107
|
'Serial',
|
package/Study/Cloud.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
Receipt,
|
|
20
20
|
User,
|
|
21
21
|
UserPayload,
|
|
22
|
-
|
|
22
|
+
MockExam,
|
|
23
23
|
} from './Class'
|
|
24
24
|
|
|
25
25
|
// DEPRECATED - previously used answer package for a quiz or qotd
|
|
@@ -434,4 +434,8 @@ export type updateStudentInviteEmailStatus = (
|
|
|
434
434
|
event: string
|
|
435
435
|
secret: string
|
|
436
436
|
}
|
|
437
|
-
) => Promise<License>
|
|
437
|
+
) => Promise<License>
|
|
438
|
+
|
|
439
|
+
export type fetchMockExams = () => MockExam[]
|
|
440
|
+
|
|
441
|
+
export type fetchMockExamQuestions = (params: { mockExamId: string }) => ExamData[]
|