iptdevs-design-system 3.1.330 → 3.1.331
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/cod/cod-form/cod-form.component.mjs +18 -1
- package/esm2020/lib/core/models/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/academic-service/academic.service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +22 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +22 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/course/course-rq.model.d.ts +6 -0
- package/lib/core/services/academic-service/academic.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -164,6 +164,12 @@ export interface IgetCodBcourseByModalityAndDisponibilityRq {
|
|
|
164
164
|
modality: number;
|
|
165
165
|
english_level: English_Levels[];
|
|
166
166
|
}
|
|
167
|
+
export interface IgetCodBcourseByModalityAndLevelAndCourseTypeRq {
|
|
168
|
+
token: string;
|
|
169
|
+
modality: number;
|
|
170
|
+
english_level: English_Levels[];
|
|
171
|
+
course_type: number;
|
|
172
|
+
}
|
|
167
173
|
export interface IObtainAvailableCourseDaysRq {
|
|
168
174
|
startDate: string;
|
|
169
175
|
startTime: string;
|
|
@@ -5,7 +5,7 @@ import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentB
|
|
|
5
5
|
import { UserTokenRq } from '../../models/user/user-rq.model';
|
|
6
6
|
import { GetStudentsByCourseRq } from '../../models/student/student.interface';
|
|
7
7
|
import { GetCodByStudentCourseRq } from '../../models/cod/cod-rq.model';
|
|
8
|
-
import { IgetCodBcourseByModalityAndDisponibilityRq } from '../../models/course/course-rq.model';
|
|
8
|
+
import { IgetCodBcourseByModalityAndDisponibilityRq, IgetCodBcourseByModalityAndLevelAndCourseTypeRq } from '../../models/course/course-rq.model';
|
|
9
9
|
import { IObtainCoursesByDifferentParametersRq, IgetCodBcourseByModalityAndStatusAndLevelInglishRq } from '../../models/course/courses.model';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class AcademicService extends IPTGeneralService {
|
|
@@ -28,6 +28,7 @@ export declare class AcademicService extends IPTGeneralService {
|
|
|
28
28
|
getCodBcourseByModalityAndStatusAndLevelInglish(params: IgetCodBcourseByModalityAndStatusAndLevelInglishRq): Observable<any>;
|
|
29
29
|
manageCreatedScherduleEvents(params: IManageCreatedScherduleEventsRq): Observable<any>;
|
|
30
30
|
obtainCoursesByDifferentParameters(params: IObtainCoursesByDifferentParametersRq): Observable<any>;
|
|
31
|
+
getCodBcourseByModalityAndlevelEnglishAndCourseType(params: IgetCodBcourseByModalityAndLevelAndCourseTypeRq): Observable<any>;
|
|
31
32
|
obtainCoursesTheoryByDifferentParameters(params: IObtainCoursesByDifferentParametersRq): Observable<any>;
|
|
32
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
|
|
33
34
|
static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
|