@pocketprep/types 1.14.41 → 1.14.43
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 +2 -1
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export type QuizJSON = ReturnType<Quiz['toJSON']>
|
|
|
45
45
|
export type QuizPayload = Payload<Quiz>
|
|
46
46
|
|
|
47
47
|
export type Platform = 'Android' | 'iOS' | 'Web'
|
|
48
|
-
export type OnboardingResult = 'Free' | 'Monthly' | 'Quarterly' | 'Yearly' | 'License'
|
|
48
|
+
export type OnboardingResult = 'Free' | 'Monthly' | 'Quarterly' | 'Yearly' | 'License' | 'Legacy'
|
|
49
49
|
export type UserConversion = Parse.Object<{
|
|
50
50
|
user: User | Parse.Pointer
|
|
51
51
|
mobileAppId?: string // eg com.pocketprep.app.ems
|
|
@@ -404,6 +404,7 @@ export type User = Parse.User<{
|
|
|
404
404
|
currentExamGuid?: string // DEPRECATED
|
|
405
405
|
currentApp?: string // DEPRECATED
|
|
406
406
|
customerIOBackup?: CustomerIOBackup | Parse.Pointer
|
|
407
|
+
onboardingCompleted?: boolean
|
|
407
408
|
}>
|
|
408
409
|
|
|
409
410
|
export type UserJSON = ReturnType<User['toJSON']>
|