@pocketprep/types 1.16.22 → 1.16.24
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/Study/Cloud.d.ts +4 -2
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -440,6 +440,8 @@ export type UserWebConfig = {
|
|
|
440
440
|
hasSeenSeatDetailsCount?: number
|
|
441
441
|
hasSeenHeardAboutUsAsk?: boolean
|
|
442
442
|
hasSeenTryLevelUpModal?: boolean
|
|
443
|
+
hasSeenTutorEngagementSurvey?: boolean
|
|
444
|
+
hasSeenTutorNonEngagementSurvey?: boolean
|
|
443
445
|
}
|
|
444
446
|
|
|
445
447
|
export type UserQuizSettings = {
|
package/Study/Cloud.d.ts
CHANGED
|
@@ -760,8 +760,10 @@ export type fetchExamNamesByQuestionSerials = (params: { serials: string[] }) =>
|
|
|
760
760
|
[serial: string]: string[]
|
|
761
761
|
}
|
|
762
762
|
|
|
763
|
-
export type updateCurrentExam = (params: {
|
|
764
|
-
examMetadataId: string
|
|
763
|
+
export type updateCurrentExam = (params: {
|
|
764
|
+
examMetadataId: string
|
|
765
|
+
platform?: Platform
|
|
766
|
+
clientAppId?: string
|
|
765
767
|
}) => UserExamMetadataJSON
|
|
766
768
|
|
|
767
769
|
export type CustomerIOCustomer = {
|