@appcorp/fusion-storybook 0.2.14 → 0.2.15
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/base-modules/attendance/more-actions.js +7 -2
- package/base-modules/enrollment/context.d.ts +1 -13
- package/base-modules/enrollment/context.js +0 -3
- package/base-modules/enrollment/form.js +2 -6
- package/base-modules/enrollment/page.d.ts +0 -1
- package/base-modules/enrollment/page.js +5 -13
- package/base-modules/enrollment/validate.d.ts +0 -1
- package/base-modules/enrollment/validate.js +0 -1
- package/base-modules/enrollment/view.js +4 -7
- package/base-modules/student-profile/constants.js +7 -3
- package/package.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/academics.d.ts +2 -4
package/types/academics.d.ts
CHANGED
|
@@ -145,7 +145,6 @@ export interface CourseBE {
|
|
|
145
145
|
subjectId: string;
|
|
146
146
|
teacherId: string;
|
|
147
147
|
updatedAt: Date;
|
|
148
|
-
enrollments?: EnrollmentBE[];
|
|
149
148
|
grades?: GradeBE[];
|
|
150
149
|
schedules?: ScheduleBE[];
|
|
151
150
|
school?: SchoolBE;
|
|
@@ -188,10 +187,10 @@ export interface TeacherBE {
|
|
|
188
187
|
user?: UserBE | null;
|
|
189
188
|
}
|
|
190
189
|
/**
|
|
191
|
-
* Enrollment represents student
|
|
190
|
+
* Enrollment represents a student enrolled in a section.
|
|
191
|
+
* All courses taught in that section are implied.
|
|
192
192
|
*/
|
|
193
193
|
export interface EnrollmentBE {
|
|
194
|
-
courseId: string;
|
|
195
194
|
createdAt: string;
|
|
196
195
|
enabled: boolean;
|
|
197
196
|
enrollmentDate: Date | string;
|
|
@@ -199,7 +198,6 @@ export interface EnrollmentBE {
|
|
|
199
198
|
sectionId: string;
|
|
200
199
|
studentProfileId: string;
|
|
201
200
|
updatedAt: string;
|
|
202
|
-
course?: CourseBE;
|
|
203
201
|
grades?: GradeBE[];
|
|
204
202
|
section?: SectionBE;
|
|
205
203
|
studentProfile?: StudentProfileBE;
|