@pocketprep/types 1.7.3 → 1.7.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 -2
- package/Teach/Cloud.d.ts +2 -2
- package/package.json +1 -1
package/Study/Class.d.ts
CHANGED
|
@@ -413,10 +413,9 @@ export type Bundle = Parse.Object<{
|
|
|
413
413
|
export type BundleJSON = ReturnType<Bundle['toJSON']>
|
|
414
414
|
|
|
415
415
|
export type Referral = Parse.Object<{
|
|
416
|
-
redeemedUsers: User[]
|
|
417
416
|
referrer: User
|
|
418
417
|
referrerBundle: Bundle
|
|
419
|
-
|
|
418
|
+
redeemedUsers: User[]
|
|
420
419
|
}>
|
|
421
420
|
|
|
422
421
|
export type ReferralJSON = ReturnType<Referral['toJSON']>
|
package/Teach/Cloud.d.ts
CHANGED
|
@@ -31,12 +31,12 @@ export interface StudentStats {
|
|
|
31
31
|
quizScores: {
|
|
32
32
|
score: number
|
|
33
33
|
date: string
|
|
34
|
-
mode: 0 | 1 | 2 | 3 | 4 | 10
|
|
34
|
+
mode: 0 | 1 | 2 | 3 | 4 | 5 | 10
|
|
35
35
|
}[]
|
|
36
36
|
allActivity: ({
|
|
37
37
|
score: number
|
|
38
38
|
date: string
|
|
39
|
-
mode: 0 | 1 | 2 | 3 | 4 | 10
|
|
39
|
+
mode: 0 | 1 | 2 | 3 | 4 | 5 | 10
|
|
40
40
|
} | {
|
|
41
41
|
score: 0 | 1
|
|
42
42
|
date: string
|