iptdevs-design-system 3.1.360 → 3.1.362
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/steps/cod-form-step-one/cod-form-step-one.component.mjs +6 -1
- package/esm2020/lib/core/models/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +10 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +10 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/course/course-rq.model.d.ts +9 -0
- package/lib/core/services/course-service/course-service.model.d.ts +2 -1
- package/package.json +1 -1
|
@@ -224,3 +224,12 @@ export interface ICreatedScheduleEvents {
|
|
|
224
224
|
weekDaysClub: string[];
|
|
225
225
|
course_events: ICourseEventRq[];
|
|
226
226
|
}
|
|
227
|
+
export interface IChangeCourseStudentNotStartedRq {
|
|
228
|
+
token: string;
|
|
229
|
+
cod_code: number;
|
|
230
|
+
current_course: number;
|
|
231
|
+
current_course_event: number;
|
|
232
|
+
new_course: number;
|
|
233
|
+
new_course_event: number;
|
|
234
|
+
number_class: number;
|
|
235
|
+
}
|
|
@@ -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 { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq } from '../../models/course/course-rq.model';
|
|
4
|
+
import { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq, IChangeCourseStudentNotStartedRq } from '../../models/course/course-rq.model';
|
|
5
5
|
import { CourseStartDateRq } from '../../models/cronogram/cronogram.models';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class CourseService extends IPTGeneralService {
|
|
@@ -20,6 +20,7 @@ export declare class CourseService extends IPTGeneralService {
|
|
|
20
20
|
getCoursesByStartDate(params: CourseStartDateRq): Observable<any>;
|
|
21
21
|
numberClassByCode(idCode: number): Observable<any>;
|
|
22
22
|
getAvailableCoursesByLevAgreeCType(availibleCourses: GetAvailibleCoursesRq): Observable<any>;
|
|
23
|
+
ChangeCourseStudentWhoHasNotStarted(params: IChangeCourseStudentNotStartedRq): Observable<any>;
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
|
|
24
25
|
static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
|
|
25
26
|
}
|