@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 +1 -0
- package/CMS/Cloud.d.ts +11 -0
- package/Study/Class.d.ts +1 -2
- package/package.json +1 -1
package/CMS/Class.d.ts
CHANGED
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
|
-
|
|
230
|
-
registeredOnWebStudy3?: boolean
|
|
229
|
+
hasSeenProductAnnouncementModal?: boolean
|
|
231
230
|
}
|
|
232
231
|
|
|
233
232
|
export type UserQuizSettings = {
|