@pocketprep/types 1.6.13 → 1.6.17

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
@@ -114,6 +114,7 @@ export type MockExamDraft = Parse.Object<{
114
114
  description: string
115
115
  enabled: boolean
116
116
  questionSerials: string[]
117
+ mockExamId?: string
117
118
  }>
118
119
 
119
120
  export type MockExamDraftJSON = ReturnType<MockExamDraft['toJSON']>
package/CMS/Cloud.d.ts CHANGED
@@ -96,6 +96,17 @@ export interface ExportData {
96
96
  items: ExportableQuestion[]
97
97
  happyUsers: string
98
98
  description: string
99
+ mockExams: {
100
+ description: string
101
+ durationSeconds: number
102
+ name: string
103
+ enabled: boolean
104
+ subjects: {
105
+ name: string
106
+ count: number
107
+ }[]
108
+ items: ExportableQuestion[]
109
+ }[]
99
110
  columnNames: [ // TODO: Possibly remove this?
100
111
  'Serial',
101
112
  'Type',
package/Study/Class.d.ts CHANGED
@@ -226,8 +226,7 @@ export type ReceiptSource = {
226
226
  export type UserWebConfig = {
227
227
  hasSeenOnboarding?: boolean
228
228
  hasSeenWelcomeModal?: boolean
229
- hasSeenStudy3Modal?: boolean
230
- registeredOnWebStudy3?: boolean
229
+ hasSeenProductAnnouncementModal?: boolean
231
230
  }
232
231
 
233
232
  export type UserQuizSettings = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.6.13",
3
+ "version": "1.6.17",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "main": "",
6
6
  "repository": {