@pocketprep/types 1.13.41 → 1.13.42

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.
Files changed (2) hide show
  1. package/Teach/Class.d.ts +10 -0
  2. package/package.json +1 -1
package/Teach/Class.d.ts CHANGED
@@ -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
  }>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pocketprep/types",
3
- "version": "1.13.41",
3
+ "version": "1.13.42",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "repository": {
6
6
  "type": "git",