@pocketprep/types 1.15.1 → 1.15.3
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/Cloud.d.ts +1 -1
- package/Teach/Class.d.ts +1 -0
- package/package.json +1 -1
package/Study/Cloud.d.ts
CHANGED
|
@@ -765,4 +765,4 @@ export type fetchUserExamMetadata = () => Promise<UserExamMetadataJSON[]>
|
|
|
765
765
|
|
|
766
766
|
export type deleteUserExamData = (params: { examGuid: string }) => Promise<void>
|
|
767
767
|
|
|
768
|
-
export type
|
|
768
|
+
export type fetchRecallQuizQuestions = (params: { examMetadataId: string }) => QuestionJSON[]
|
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>
|