@pocketprep/types 1.13.43 → 1.13.44
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 +7 -1
- package/package.json +1 -1
package/Teach/Class.d.ts
CHANGED
|
@@ -67,6 +67,8 @@ export type LMS = Parse.Object<{
|
|
|
67
67
|
oidcAuthUrl: string
|
|
68
68
|
organization: Parse.Pointer | Organization
|
|
69
69
|
}>
|
|
70
|
+
export type LMSJSON = ReturnType<LMS['toJSON']>
|
|
71
|
+
export type LMSPayload = Payload<LMS>
|
|
70
72
|
|
|
71
73
|
export type LMSLoginAttempt = Parse.Object<{
|
|
72
74
|
lms: Parse.Pointer | LMS
|
|
@@ -75,6 +77,8 @@ export type LMSLoginAttempt = Parse.Object<{
|
|
|
75
77
|
loginHint: string
|
|
76
78
|
hasResolved: boolean
|
|
77
79
|
}>
|
|
80
|
+
export type LMSLoginAttemptJSON = ReturnType<LMSLoginAttempt['toJSON']>
|
|
81
|
+
export type LMSLoginAttemptPayload = Payload<LMSLoginAttempt>
|
|
78
82
|
|
|
79
83
|
export type LMSCourseIntegration = Parse.Object<{
|
|
80
84
|
name: string
|
|
@@ -83,4 +87,6 @@ export type LMSCourseIntegration = Parse.Object<{
|
|
|
83
87
|
organization: Parse.Pointer | Organization
|
|
84
88
|
lms: Parse.Pointer | LMS
|
|
85
89
|
deploymentId: string
|
|
86
|
-
}>
|
|
90
|
+
}>
|
|
91
|
+
export type LMSCourseIntegrationJSON = ReturnType<LMSCourseIntegration['toJSON']>
|
|
92
|
+
export type LMSCourseIntegrationPayload = Payload<LMSCourseIntegration>
|