@appcorp/fusion-storybook 0.4.19 → 0.4.21

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.
@@ -202,11 +202,13 @@ export interface EnrollmentBE {
202
202
  enrollmentDate: Date | string;
203
203
  id: string;
204
204
  classId: string;
205
+ schoolId: string;
205
206
  sectionId: string;
206
207
  studentProfileId: string;
207
208
  updatedAt: string;
208
209
  class?: ClassBE;
209
210
  grades?: GradeBE[];
211
+ school?: SchoolBE;
210
212
  section?: SectionBE;
211
213
  studentProfile?: StudentProfileBE;
212
214
  }
@@ -6,7 +6,7 @@
6
6
  */
7
7
  import { USER_ROLE, ACCESS_LEVEL, CURRENCY, BILLING_INTERVAL, PLAN_TYPE } from "./enums";
8
8
  import type { AdmissionBE } from "./admission";
9
- import type { AttendanceBE, ClassBE, CourseBE, FamilyBE, GradeBE, ScheduleBE, SectionBE, SubjectBE, TeacherBE } from "./academics";
9
+ import type { AttendanceBE, ClassBE, CourseBE, EnrollmentBE, FamilyBE, GradeBE, ScheduleBE, SectionBE, SubjectBE, TeacherBE } from "./academics";
10
10
  import type { ExpenseBE, FeeStructureBE, DiscountCodeBE, StudentFeeBE } from "./finance";
11
11
  import type { BlogPostBE, BlogCommentBE, BlogPostClapBE, BlogCommentClapBE } from "./communication";
12
12
  /**
@@ -178,6 +178,7 @@ export interface SchoolBE {
178
178
  families?: FamilyBE[];
179
179
  feeStructures?: FeeStructureBE[];
180
180
  discountCodes?: DiscountCodeBE[];
181
+ enrollments?: EnrollmentBE[];
181
182
  grades?: GradeBE[];
182
183
  schedules?: ScheduleBE[];
183
184
  sections?: SectionBE[];