@pocketprep/types 1.7.0 → 1.7.1
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 +3 -0
- package/package.json +1 -1
package/Study/Cloud.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
User,
|
|
21
21
|
UserPayload,
|
|
22
22
|
MockExam,
|
|
23
|
+
Referral,
|
|
23
24
|
} from './Class'
|
|
24
25
|
|
|
25
26
|
// DEPRECATED - previously used answer package for a quiz or qotd
|
|
@@ -439,3 +440,5 @@ export type updateStudentInviteEmailStatus = (
|
|
|
439
440
|
export type fetchMockExams = () => MockExam[]
|
|
440
441
|
|
|
441
442
|
export type fetchMockExamQuestions = (params: { mockExamId: string }) => ExamData[]
|
|
443
|
+
|
|
444
|
+
export type validateReferral = (params: { referralId: string }) => Referral
|