@pocketprep/types 1.13.41 → 1.13.43
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/Teach/Class.d.ts +11 -1
- package/package.json +1 -1
package/Teach/Class.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export type OrgGroup = Parse.Object<{
|
|
|
16
16
|
orgStudents: OrgStudent[]
|
|
17
17
|
owner?: OrgInstructor
|
|
18
18
|
isPubliclyEditable: boolean
|
|
19
|
-
|
|
19
|
+
lmsCourseIntegrations?: (Parse.Pointer | LMSCourseIntegration)[]
|
|
20
20
|
}>
|
|
21
21
|
export type OrgGroupJSON = ReturnType<OrgGroup['toJSON']>
|
|
22
22
|
export type OrgGroupPayload = Payload<OrgGroup>
|
|
@@ -47,6 +47,7 @@ export type OrgStudentPayload = Payload<OrgStudent>
|
|
|
47
47
|
export type Organization = Parse.Object<{
|
|
48
48
|
name: string
|
|
49
49
|
archivedAt?: Date
|
|
50
|
+
enabledPremiumFeatures?: string[]
|
|
50
51
|
}>
|
|
51
52
|
export type OrganizationJSON = ReturnType<Organization['toJSON']>
|
|
52
53
|
export type OrganizationPayload = Payload<Organization>
|
|
@@ -73,4 +74,13 @@ export type LMSLoginAttempt = Parse.Object<{
|
|
|
73
74
|
nonce: string
|
|
74
75
|
loginHint: string
|
|
75
76
|
hasResolved: boolean
|
|
77
|
+
}>
|
|
78
|
+
|
|
79
|
+
export type LMSCourseIntegration = Parse.Object<{
|
|
80
|
+
name: string
|
|
81
|
+
isArchived: boolean
|
|
82
|
+
activatedBy: Parse.Pointer | OrgInstructor
|
|
83
|
+
organization: Parse.Pointer | Organization
|
|
84
|
+
lms: Parse.Pointer | LMS
|
|
85
|
+
deploymentId: string
|
|
76
86
|
}>
|