@pocketprep/types 1.19.11 → 1.19.13
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 -0
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -53,6 +53,7 @@ export type RecommendationConfig = Parse.Object<Partial<RecommendationCTA> & {
|
|
|
53
53
|
premiumRequirement: PremiumRequirement
|
|
54
54
|
ineligibleAfterQuizModes?: number[]
|
|
55
55
|
mobileButtonLabel?: string
|
|
56
|
+
customConfig?: { sessionThresholdSeconds?: number; sessionWindowSeconds?: number } // TakeABreak tuning
|
|
56
57
|
}>
|
|
57
58
|
|
|
58
59
|
export type RecommendationTip = Omit<Recommendation, 'config'>
|
|
@@ -475,6 +476,7 @@ export type User = Parse.User<{
|
|
|
475
476
|
currentApp?: string // DEPRECATED
|
|
476
477
|
customerIOBackup?: CustomerIOBackup | Parse.Pointer
|
|
477
478
|
onboardingCompleted?: boolean
|
|
479
|
+
createdSource?: 'support' | 'support-test'
|
|
478
480
|
}>
|
|
479
481
|
|
|
480
482
|
export type UserJSON = ReturnType<User['toJSON']>
|