@pocketprep/types 1.6.41 → 1.6.44

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 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/Class.d.ts CHANGED
@@ -332,7 +332,6 @@ export type MockExam = Parse.Object<{
332
332
  description: string
333
333
  enabled: boolean
334
334
  questionSerials: string[]
335
- subjects: { name: string; count: number }[]
336
335
  }>
337
336
 
338
337
  export type MockExamJSON = ReturnType<MockExam['toJSON']>
package/Study/Cloud.d.ts CHANGED
@@ -437,3 +437,5 @@ export type updateStudentInviteEmailStatus = (
437
437
  ) => Promise<License>
438
438
 
439
439
  export type fetchMockExams = () => MockExam[]
440
+
441
+ export type fetchMockExamQuestions = (params: { mockExamId: string }) => ExamData[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.6.41",
3
+ "version": "1.6.44",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "main": "",
6
6
  "repository": {