iptdevs-design-system 2.7.34 → 2.7.36
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/components/forms/create-user-form/create-user-form.component.mjs +8 -8
- package/esm2020/lib/core/models/academic/academic.component.mjs +1 -1
- package/esm2020/lib/core/models/classroom/classroom-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/cod/cod-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/user/user-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/academic-service/academic.service.mjs +6 -1
- package/esm2020/lib/core/services/classroom-service/classroom-service.service.mjs +6 -1
- package/esm2020/lib/core/services/user-service/user-service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +22 -7
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +22 -7
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/academic/academic.component.d.ts +4 -0
- package/lib/core/models/classroom/classroom-rq.model.d.ts +5 -0
- package/lib/core/models/cod/cod-rq.model.d.ts +61 -0
- package/lib/core/models/user/user-rq.model.d.ts +4 -0
- package/lib/core/services/academic-service/academic.service.d.ts +2 -1
- package/lib/core/services/classroom-service/classroom-service.service.d.ts +2 -1
- package/lib/core/services/user-service/user-service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -105,3 +105,64 @@ export interface CreateCODRq {
|
|
|
105
105
|
multiculturalism_6: string;
|
|
106
106
|
health_regimen: string;
|
|
107
107
|
}
|
|
108
|
+
export interface CodInformationRq {
|
|
109
|
+
code: number;
|
|
110
|
+
course: CourseRq;
|
|
111
|
+
course_type: string;
|
|
112
|
+
agreement: string;
|
|
113
|
+
english_level: string;
|
|
114
|
+
student: Student2Rq;
|
|
115
|
+
parent: number;
|
|
116
|
+
aditional_information: number;
|
|
117
|
+
adviser: string;
|
|
118
|
+
cod_status: CodStatusRq;
|
|
119
|
+
cod_price: number;
|
|
120
|
+
updated_at: Date;
|
|
121
|
+
created_at: Date;
|
|
122
|
+
}
|
|
123
|
+
export interface CodStatusRq {
|
|
124
|
+
code: number;
|
|
125
|
+
status: string;
|
|
126
|
+
color_status: string;
|
|
127
|
+
}
|
|
128
|
+
export interface CourseRq {
|
|
129
|
+
code: number;
|
|
130
|
+
course_schedule: string[];
|
|
131
|
+
teacher: string;
|
|
132
|
+
course_type: CourseType2Rq;
|
|
133
|
+
to_start: Date;
|
|
134
|
+
start_date: Date;
|
|
135
|
+
finish_date: Date;
|
|
136
|
+
capacity: number;
|
|
137
|
+
more_days: number | null;
|
|
138
|
+
english_level: string;
|
|
139
|
+
agreement: string;
|
|
140
|
+
course_modality: CourseModalityRq;
|
|
141
|
+
}
|
|
142
|
+
export interface CourseModalityRq {
|
|
143
|
+
code: number;
|
|
144
|
+
name: string;
|
|
145
|
+
}
|
|
146
|
+
export interface CourseType2Rq {
|
|
147
|
+
code: number;
|
|
148
|
+
name: string;
|
|
149
|
+
number_class: number;
|
|
150
|
+
academic_plan: string;
|
|
151
|
+
}
|
|
152
|
+
export interface Student2Rq {
|
|
153
|
+
code: number;
|
|
154
|
+
name: string;
|
|
155
|
+
last_name: string;
|
|
156
|
+
nick_name: string | null;
|
|
157
|
+
email: string;
|
|
158
|
+
email_ipt: string;
|
|
159
|
+
role: number;
|
|
160
|
+
service_hour: number;
|
|
161
|
+
phone_indicative: number;
|
|
162
|
+
phone_number: string;
|
|
163
|
+
gender: number;
|
|
164
|
+
birthdate: Date | null;
|
|
165
|
+
city: number;
|
|
166
|
+
id_card_type: number;
|
|
167
|
+
id_card: string;
|
|
168
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { IPTGeneralService } from '../service-enviroments';
|
|
4
|
-
import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentByTeacherRq } from '../../models/academic/academic.component';
|
|
4
|
+
import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentByTeacherRq, GetAllStudentByTeacherRq } from '../../models/academic/academic.component';
|
|
5
5
|
import { UserTokenRq } from '../../models/user/user-rq.model';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class AcademicService extends IPTGeneralService {
|
|
@@ -14,6 +14,7 @@ export declare class AcademicService extends IPTGeneralService {
|
|
|
14
14
|
getCodGenDataStudent(codeStudent: number): Observable<any>;
|
|
15
15
|
getAllCoursesInitialized(params: UserTokenRq): Observable<any>;
|
|
16
16
|
getStudentByTeacher(params: GetStudentByTeacherRq): Observable<any>;
|
|
17
|
+
getAllStudentByTeacher(params: GetAllStudentByTeacherRq): Observable<any>;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
|
|
18
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
|
|
19
20
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { ClassroomByIdCalendarRq, ClassroomModalityRq } from '../../models/classroom/classroom-rq.model';
|
|
3
|
+
import { ClassroomByIdCalendarRq, ClassroomByTypeUserRq, ClassroomModalityRq } from '../../models/classroom/classroom-rq.model';
|
|
4
4
|
import { IPTGeneralService } from '../service-enviroments';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class ClassroomService extends IPTGeneralService {
|
|
@@ -9,6 +9,7 @@ export declare class ClassroomService extends IPTGeneralService {
|
|
|
9
9
|
constructor(http: HttpClient);
|
|
10
10
|
getClassroomsByModality(params: ClassroomModalityRq): Observable<Response>;
|
|
11
11
|
getClassroomByIdCalendar(params: ClassroomByIdCalendarRq): Observable<Response>;
|
|
12
|
+
getAllClassroomByTypeUser(params: ClassroomByTypeUserRq): Observable<Response>;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClassroomService, never>;
|
|
13
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<ClassroomService>;
|
|
14
15
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq, getStudentRq } from '../../models/user/user-rq.model';
|
|
3
|
+
import { RegisterIndexRq, RegisterDashboardRq, UserTokenRq, ForgotPasswordRq, LoginRq, RegisterRq, getStudentRq, TeacherByCodeRq } from '../../models/user/user-rq.model';
|
|
4
4
|
import { getStrategyByUserCommercialRq } from '../../models/marketing/marketing.model';
|
|
5
5
|
import { IPTGeneralService } from '../service-enviroments';
|
|
6
6
|
import { GetStudentByCodeRq, tokenAdministrativeRq } from '../../models/payment/payment-rq.model';
|
|
@@ -24,6 +24,7 @@ export declare class UserService extends IPTGeneralService {
|
|
|
24
24
|
getAllAdministrative(userToken: tokenAdministrativeRq): Observable<any>;
|
|
25
25
|
getAllMarketing(userToken: tokenAdministrativeRq): Observable<any>;
|
|
26
26
|
getStudenbyCode(parans: GetStudentByCodeRq): Observable<any>;
|
|
27
|
+
getTeachersbyCode(parans: TeacherByCodeRq): Observable<any>;
|
|
27
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<UserService, never>;
|
|
28
29
|
static ɵprov: i0.ɵɵInjectableDeclaration<UserService>;
|
|
29
30
|
}
|