iptdevs-design-system 3.1.318 → 3.1.320
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/esm2020/lib/core/models/academic/academic.component.mjs +1 -1
- package/esm2020/lib/core/models/calendar/calendar-rq.models.mjs +1 -1
- package/esm2020/lib/core/models/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/cronogram/cronogram.models.mjs +1 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/academic/academic.component.d.ts +1 -1
- package/lib/core/models/calendar/calendar-rq.models.d.ts +25 -0
- package/lib/core/models/course/course-rq.model.d.ts +22 -5
- package/lib/core/models/cronogram/cronogram.models.d.ts +5 -0
- package/package.json +1 -1
|
@@ -25,3 +25,28 @@ export interface GoogleEvent2Rq {
|
|
|
25
25
|
start: Date;
|
|
26
26
|
end: Date;
|
|
27
27
|
}
|
|
28
|
+
export interface ICreateNewEventsRq {
|
|
29
|
+
courseCode: number;
|
|
30
|
+
codeClassRoom: number;
|
|
31
|
+
codeTeacher: string;
|
|
32
|
+
color: string;
|
|
33
|
+
descriptionEvent: string;
|
|
34
|
+
startTime: string;
|
|
35
|
+
endTime: string;
|
|
36
|
+
conferenceDataName: string;
|
|
37
|
+
hangoutLink: string;
|
|
38
|
+
SchoolDayShort: ISchoolDayShortRq[];
|
|
39
|
+
weekDays: string[];
|
|
40
|
+
courseCodeClub: number;
|
|
41
|
+
codeClassRoomClub: number;
|
|
42
|
+
codeTeacherClub: string;
|
|
43
|
+
startTimeClub: string;
|
|
44
|
+
endTimeClub: string;
|
|
45
|
+
SchoolDayShortClub: string[];
|
|
46
|
+
weekDaysClub: string[];
|
|
47
|
+
}
|
|
48
|
+
export interface ISchoolDayShortRq {
|
|
49
|
+
date: Date;
|
|
50
|
+
unitName: string;
|
|
51
|
+
courseType: number;
|
|
52
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ICourseEventRq } from "../academic/academic.component";
|
|
1
2
|
import { longDateAvailabilityRs } from "../cronogram/cronogram.models";
|
|
2
3
|
import { English_Levels } from "./courses.model";
|
|
3
4
|
export interface CreateCourseRq {
|
|
@@ -164,12 +165,12 @@ export interface IgetCodBcourseByModalityAndDisponibilityRq {
|
|
|
164
165
|
english_level: English_Levels[];
|
|
165
166
|
}
|
|
166
167
|
export interface IObtainAvailableCourseDaysRq {
|
|
167
|
-
startDate:
|
|
168
|
+
startDate: string;
|
|
168
169
|
startTime: string;
|
|
169
170
|
endTime: string;
|
|
170
171
|
numClass: number;
|
|
171
172
|
weekDays: string[];
|
|
172
|
-
startDateClub:
|
|
173
|
+
startDateClub: string;
|
|
173
174
|
startTimeClub: string;
|
|
174
175
|
endTimeClub: string;
|
|
175
176
|
numClassClub: number;
|
|
@@ -181,9 +182,9 @@ export interface IAvailableCourseDaysRs {
|
|
|
181
182
|
schoolDays: longDateAvailabilityRs[];
|
|
182
183
|
schoolDaysClub: longDateAvailabilityRs[];
|
|
183
184
|
schoolDaysCombine: ISchoolDaysCombineRs[];
|
|
184
|
-
ShortDateSchoolDays:
|
|
185
|
-
ShortDateSchoolDaysClub:
|
|
186
|
-
ShortDateSchoolDayCombine:
|
|
185
|
+
ShortDateSchoolDays: string[];
|
|
186
|
+
ShortDateSchoolDaysClub: string[];
|
|
187
|
+
ShortDateSchoolDayCombine: string[];
|
|
187
188
|
weeksClass: number;
|
|
188
189
|
completionClass: Date;
|
|
189
190
|
startTime: string;
|
|
@@ -201,3 +202,19 @@ export interface ISchoolDaysCombineRs {
|
|
|
201
202
|
longDate: string;
|
|
202
203
|
nameUnit: string;
|
|
203
204
|
}
|
|
205
|
+
export interface ICreatedScheduleEvents {
|
|
206
|
+
token: string;
|
|
207
|
+
courseCode: number;
|
|
208
|
+
codeClassRoom: number;
|
|
209
|
+
codeTeacher: string;
|
|
210
|
+
startTime: string;
|
|
211
|
+
endTime: string;
|
|
212
|
+
weekDays: string[];
|
|
213
|
+
courseCodeClub: number;
|
|
214
|
+
codeClassRoomClub: number;
|
|
215
|
+
codeTeacherClub: string;
|
|
216
|
+
startTimeClub: string;
|
|
217
|
+
endTimeClub: string;
|
|
218
|
+
weekDaysClub: string[];
|
|
219
|
+
course_events: ICourseEventRq[];
|
|
220
|
+
}
|