iptdevs-design-system 3.1.834 → 3.1.835
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.
|
@@ -315,6 +315,7 @@ export interface IChangeOfStudentGroupRs {
|
|
|
315
315
|
}
|
|
316
316
|
export interface INewCourseRs {
|
|
317
317
|
status: IStatusRs;
|
|
318
|
+
courseAssigned: ICourseAssignedRs;
|
|
318
319
|
capacity: ICapacityRs;
|
|
319
320
|
cronogram: ICronogramRs;
|
|
320
321
|
attendance: IFutureEventsClassRs;
|
|
@@ -330,6 +331,10 @@ export interface IClubElementRs {
|
|
|
330
331
|
date_event: Date;
|
|
331
332
|
name_event: string;
|
|
332
333
|
}
|
|
334
|
+
export interface ICourseAssignedRs {
|
|
335
|
+
course_theory: number;
|
|
336
|
+
course_club: number;
|
|
337
|
+
}
|
|
333
338
|
export interface ICapacityRs {
|
|
334
339
|
total_capacity: number;
|
|
335
340
|
enrolled_students: number;
|
|
@@ -383,6 +388,7 @@ export interface IStatusRs {
|
|
|
383
388
|
}
|
|
384
389
|
export interface IOldCourseRs {
|
|
385
390
|
status: IStatusRs;
|
|
391
|
+
courseAssigned: ICourseAssignedRs;
|
|
386
392
|
capacity: ICapacityRs;
|
|
387
393
|
user_course: IOldCourseUserCourseRs;
|
|
388
394
|
cronogram: ICronogramRs;
|