@pocketprep/types 1.15.2 → 1.15.4
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 +1 -0
- package/Teach/Class.d.ts +1 -0
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -373,6 +373,7 @@ export type UserWebConfig = {
|
|
|
373
373
|
sawReadinessSurveyTimestamps?: string[] // array of ISO Date strings
|
|
374
374
|
hasSeenAIFeedbackSurveyModal?: boolean
|
|
375
375
|
hasTakenConceptQuiz?: boolean
|
|
376
|
+
conceptQuizConceptsTaken?: string[]
|
|
376
377
|
messagesSeen?: {
|
|
377
378
|
name: MessageName
|
|
378
379
|
examMetadataId: string // user's examMetadataId when message was seen
|
package/Teach/Class.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ export type OrgGroup = Parse.Object<{
|
|
|
19
19
|
lmsCourseIntegrations?: (Parse.Pointer | LMSCourseIntegration)[]
|
|
20
20
|
groupCode?: string
|
|
21
21
|
groupCodeExpiresAt?: Date
|
|
22
|
+
allowAnonymousUse?: boolean
|
|
22
23
|
}>
|
|
23
24
|
export type OrgGroupJSON = ReturnType<OrgGroup['toJSON']>
|
|
24
25
|
export type OrgGroupPayload = Payload<OrgGroup>
|