@appcorp/fusion-storybook 0.2.14 → 0.2.16

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.
@@ -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 enrollment in courses
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;