@pocketprep/types 1.13.40 → 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.
package/Study/Cloud.d.ts CHANGED
@@ -92,6 +92,7 @@ export interface IRecordQuizPayload {
92
92
  mockExamId?: string
93
93
  examVersion?: string
94
94
  levelSubjectName?: string
95
+ levelSubjectId?: string
95
96
  appBundleId?: string
96
97
  }
97
98
 
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.40",
3
+ "version": "1.13.42",
4
4
  "description": "Pocket Prep type declarations",
5
5
  "repository": {
6
6
  "type": "git",