iptdevs-design-system 3.1.699 → 3.1.700
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/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/notes/INotesTemplate.mjs +1 -1
- package/esm2020/lib/core/models/student/student.interface.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/course/course-rq.model.d.ts +48 -0
- package/lib/core/models/notes/INotesTemplate.d.ts +50 -0
- package/lib/core/models/student/student.interface.d.ts +18 -0
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ICourseEventRq } from "../academic/academic.component";
|
|
2
|
+
import { ICourseModality } from "../activities/activities.interface";
|
|
2
3
|
import { longDateAvailabilityRs } from "../cronogram/cronogram.models";
|
|
3
4
|
import { English_Levels } from "./courses.model";
|
|
4
5
|
export interface CreateCourseRq {
|
|
@@ -247,3 +248,50 @@ export interface IUpdateCourseEventByCodeRs {
|
|
|
247
248
|
name_event: string;
|
|
248
249
|
description_event: string;
|
|
249
250
|
}
|
|
251
|
+
export interface ICourse {
|
|
252
|
+
code: number;
|
|
253
|
+
course_schedule: string[];
|
|
254
|
+
teacher: string;
|
|
255
|
+
course: {
|
|
256
|
+
agreement: string;
|
|
257
|
+
capacity: number;
|
|
258
|
+
code: number;
|
|
259
|
+
course_type: ICourseTypeRs;
|
|
260
|
+
course_modality: ICourseModality;
|
|
261
|
+
course_schedule: string[];
|
|
262
|
+
created_at: string;
|
|
263
|
+
english_level: string;
|
|
264
|
+
finish_date: string;
|
|
265
|
+
is_club: number;
|
|
266
|
+
is_from?: number;
|
|
267
|
+
is_renovation: number;
|
|
268
|
+
is_visible: number;
|
|
269
|
+
more_days?: number;
|
|
270
|
+
start_date: string;
|
|
271
|
+
teacher: string;
|
|
272
|
+
to_start: string;
|
|
273
|
+
};
|
|
274
|
+
to_start: string;
|
|
275
|
+
start_date: string;
|
|
276
|
+
finish_date: string;
|
|
277
|
+
capacity: number;
|
|
278
|
+
more_days: string | null;
|
|
279
|
+
english_level: string;
|
|
280
|
+
agreement: string;
|
|
281
|
+
course_modality: ICourseModality;
|
|
282
|
+
is_renovation: number;
|
|
283
|
+
is_from: string | null;
|
|
284
|
+
is_club: number;
|
|
285
|
+
is_visible: number;
|
|
286
|
+
created_at: string;
|
|
287
|
+
}
|
|
288
|
+
export interface ICourseTypeRs {
|
|
289
|
+
code: number;
|
|
290
|
+
name: string;
|
|
291
|
+
label: string;
|
|
292
|
+
number_class: number;
|
|
293
|
+
number_class_club: number;
|
|
294
|
+
academic_plan: string;
|
|
295
|
+
theory_classes: number;
|
|
296
|
+
club_classes: number;
|
|
297
|
+
}
|
|
@@ -67,3 +67,53 @@ export interface IGetLastStudentCodRq {
|
|
|
67
67
|
token: string;
|
|
68
68
|
code: number;
|
|
69
69
|
}
|
|
70
|
+
export interface INotesStudentRq {
|
|
71
|
+
token: string;
|
|
72
|
+
code_student: number;
|
|
73
|
+
code_course: number;
|
|
74
|
+
}
|
|
75
|
+
export interface NotesStudents {
|
|
76
|
+
token: string;
|
|
77
|
+
student_code: number;
|
|
78
|
+
}
|
|
79
|
+
export interface ICourseRs {
|
|
80
|
+
code: number;
|
|
81
|
+
course_schedule: number;
|
|
82
|
+
teacher: number;
|
|
83
|
+
course_type: number;
|
|
84
|
+
to_start: Date;
|
|
85
|
+
start_date: Date;
|
|
86
|
+
finish_date: Date;
|
|
87
|
+
capacity: number;
|
|
88
|
+
more_days: null;
|
|
89
|
+
english_level: number;
|
|
90
|
+
agreement: number;
|
|
91
|
+
course_modality: number;
|
|
92
|
+
is_renovation: number;
|
|
93
|
+
is_from: null;
|
|
94
|
+
is_club: number;
|
|
95
|
+
is_visible: number;
|
|
96
|
+
created_at: Date;
|
|
97
|
+
}
|
|
98
|
+
export interface INotesRs {
|
|
99
|
+
writing_reading: ActitudeParticipation[];
|
|
100
|
+
speaking_listening: ActitudeParticipation[];
|
|
101
|
+
actitude_participation: ActitudeParticipation[];
|
|
102
|
+
final_test_oral: ActitudeParticipation[];
|
|
103
|
+
final_test_written: ActitudeParticipation[];
|
|
104
|
+
hab: null;
|
|
105
|
+
final_note: FinalNote[];
|
|
106
|
+
}
|
|
107
|
+
export interface ActitudeParticipation {
|
|
108
|
+
code: number;
|
|
109
|
+
note_code: number;
|
|
110
|
+
note_type: number;
|
|
111
|
+
note_value: number;
|
|
112
|
+
observation: string;
|
|
113
|
+
}
|
|
114
|
+
export interface FinalNote {
|
|
115
|
+
code: number;
|
|
116
|
+
student_code: number;
|
|
117
|
+
cod_code: number;
|
|
118
|
+
final_score: number;
|
|
119
|
+
}
|
|
@@ -2,3 +2,21 @@ export interface GetStudentsByCourseRq {
|
|
|
2
2
|
token: string;
|
|
3
3
|
course_code: number;
|
|
4
4
|
}
|
|
5
|
+
export interface IStudentRsTwo {
|
|
6
|
+
code: number;
|
|
7
|
+
name: string;
|
|
8
|
+
last_name: string;
|
|
9
|
+
nick_name: null;
|
|
10
|
+
email: string;
|
|
11
|
+
email_ipt: string;
|
|
12
|
+
role: number;
|
|
13
|
+
service_hour: number;
|
|
14
|
+
phone_indicative: number;
|
|
15
|
+
phone_number: string;
|
|
16
|
+
gender: number;
|
|
17
|
+
birthdate: null;
|
|
18
|
+
city: number;
|
|
19
|
+
id_card_type: number;
|
|
20
|
+
id_card: string;
|
|
21
|
+
token: string;
|
|
22
|
+
}
|