@pocketprep/types 1.13.7 → 1.13.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.
package/CMS/Class.d.ts CHANGED
@@ -171,6 +171,10 @@ export type Job = Parse.Object<{
171
171
  isCompleted: boolean
172
172
  examDraft: ExamDraft
173
173
  dueDate?: Date
174
+ type?: string
175
+ jobFunction?: string
176
+ keywordStyling?: string
177
+ notesAndLinks?: string
174
178
  references: string[]
175
179
  name: string
176
180
  editor?: User
@@ -179,6 +183,10 @@ export type Job = Parse.Object<{
179
183
  questionTemplates?: {
180
184
  knowledgeAreaDraftId: string
181
185
  count: number
186
+ subtopics?: {
187
+ name: string
188
+ count: number
189
+ } []
182
190
  }[]
183
191
  allowedQuestionTypes: IAllowedQuestionTypes
184
192
  mockExamDraft?: Parse.Pointer | MockExamDraft
package/CMS/Cloud.d.ts CHANGED
@@ -14,15 +14,23 @@ import {
14
14
  export interface JobWithMetrics {
15
15
  objectId: string
16
16
  name: string
17
+ type?: string
18
+ jobFunction?: string
17
19
  editorId?: string
18
20
  writerId?: string
19
21
  leadId?: string
20
22
  references?: string[]
21
23
  dueDate?: string
24
+ notesAndLinks?: string
22
25
  questionDrafts?: QuestionDraftJSON[]
26
+ keywordStyling?: string
23
27
  questionTemplates?: {
24
28
  knowledgeAreaDraftId: string
25
29
  count: number
30
+ subtopics?: {
31
+ name: string
32
+ count: number
33
+ } []
26
34
  }[]
27
35
  allowedQuestionTypes: IAllowedQuestionTypes
28
36
  isCompleted: boolean
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.13.7",
3
+ "version": "1.13.9",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "repository": {
6
6
  "type": "git",