@pocketprep/types 1.14.40 → 1.14.42
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/Study/Class.d.ts +6 -0
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -344,6 +344,11 @@ export type MessageName = 'sunsetWillDiscontinue'
|
|
|
344
344
|
| 'majorNewVersion'
|
|
345
345
|
| 'minorNewQuestions'
|
|
346
346
|
| 'minorNewMockExams'
|
|
347
|
+
| 'teachSunsetWillDiscontinue'
|
|
348
|
+
| 'teachSunsetWasDiscontinued'
|
|
349
|
+
| 'teachMajorNewVersion'
|
|
350
|
+
| 'teachMinorNewQuestions'
|
|
351
|
+
| 'teachMinorNewMockExams'
|
|
347
352
|
|
|
348
353
|
export type UserWebConfig = {
|
|
349
354
|
hasSeenOnboarding?: boolean
|
|
@@ -399,6 +404,7 @@ export type User = Parse.User<{
|
|
|
399
404
|
currentExamGuid?: string // DEPRECATED
|
|
400
405
|
currentApp?: string // DEPRECATED
|
|
401
406
|
customerIOBackup?: CustomerIOBackup | Parse.Pointer
|
|
407
|
+
onboardingCompleted?: boolean
|
|
402
408
|
}>
|
|
403
409
|
|
|
404
410
|
export type UserJSON = ReturnType<User['toJSON']>
|