iptdevs-design-system 3.1.845 → 3.1.847
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/services/course-service/course-service.model.mjs +15 -23
- package/fesm2015/iptdevs-design-system.mjs +14 -22
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +14 -22
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/course/course-rq.model.d.ts +6 -18
- package/lib/core/services/course-service/course-service.model.d.ts +3 -5
- package/package.json +1 -1
|
@@ -459,14 +459,6 @@ export interface IOldCourseUserCourseRs {
|
|
|
459
459
|
deleted_notes: any[];
|
|
460
460
|
deleted_user_course: any[];
|
|
461
461
|
}
|
|
462
|
-
export interface GetCourseAssignedDataRq {
|
|
463
|
-
token: string;
|
|
464
|
-
course_code: number;
|
|
465
|
-
}
|
|
466
|
-
export interface GetLastEventByCourseRq {
|
|
467
|
-
token?: string;
|
|
468
|
-
course_code: number;
|
|
469
|
-
}
|
|
470
462
|
export interface CreateCourseEventRq {
|
|
471
463
|
token: string;
|
|
472
464
|
course_code: number;
|
|
@@ -474,7 +466,7 @@ export interface CreateCourseEventRq {
|
|
|
474
466
|
date_event: string;
|
|
475
467
|
event_type: 'THEORETICAL' | 'CLUB';
|
|
476
468
|
}
|
|
477
|
-
export interface
|
|
469
|
+
export interface IUpdateCourseEventByCodeNewRq {
|
|
478
470
|
token: string;
|
|
479
471
|
event_code: number;
|
|
480
472
|
course_code: number;
|
|
@@ -482,19 +474,15 @@ export interface UpdateCourseEventByCodeRq {
|
|
|
482
474
|
date_event: string;
|
|
483
475
|
event_type: 'THEORETICAL' | 'CLUB';
|
|
484
476
|
}
|
|
485
|
-
export interface
|
|
477
|
+
export interface DeleteCourseEventRq {
|
|
486
478
|
token: string;
|
|
487
|
-
course_code: number;
|
|
488
|
-
date_event: Date;
|
|
489
479
|
event_code: number;
|
|
490
|
-
name_event: string;
|
|
491
|
-
event_type: 'THEORETICAL' | 'CLUB';
|
|
492
480
|
}
|
|
493
|
-
export interface
|
|
481
|
+
export interface GetEventEditDataRq {
|
|
494
482
|
token: string;
|
|
495
|
-
|
|
483
|
+
event_code: number;
|
|
496
484
|
}
|
|
497
|
-
export interface
|
|
485
|
+
export interface GetCourseScheduleRq {
|
|
498
486
|
token: string;
|
|
499
|
-
|
|
487
|
+
course_code: number;
|
|
500
488
|
}
|
|
@@ -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, IChangeCourseStudentNotStartedRq, IUpdateCourseEventByCodeRq, ICourse, GetCoursesFilterRq,
|
|
4
|
+
import { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq, IChangeCourseStudentNotStartedRq, IUpdateCourseEventByCodeRq, ICourse, GetCoursesFilterRq, CreateCourseEventRq, IUpdateCourseEventByCodeNewRq, DeleteCourseEventRq, GetEventEditDataRq, GetCourseScheduleRq } 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 {
|
|
@@ -27,13 +27,11 @@ export declare class CourseService extends IPTGeneralService {
|
|
|
27
27
|
getCourseTheoryAndClubAllData(params: GetCourseByCodeRq): Observable<any>;
|
|
28
28
|
getCourses(params: GetCoursesFilterRq): Observable<any>;
|
|
29
29
|
getCoursesByState(params: GetCoursesFilterRq): Observable<any>;
|
|
30
|
-
getCourseAssignedData(params: GetCourseAssignedDataRq): Observable<any>;
|
|
31
|
-
getLastEventByCourse(params: GetLastEventByCourseRq): Observable<any>;
|
|
32
30
|
createCourseEvent(params: CreateCourseEventRq): Observable<any>;
|
|
33
31
|
updateCourseEventByCodeTwo(params: IUpdateCourseEventByCodeNewRq): Observable<any>;
|
|
34
|
-
getCourseSchedule(request: GetCourseScheduleRq): Observable<any>;
|
|
35
32
|
deleteCourseEvent(params: DeleteCourseEventRq): Observable<any>;
|
|
36
|
-
|
|
33
|
+
getEventEditData(params: GetEventEditDataRq): Observable<any>;
|
|
34
|
+
getCourseSchedule(params: GetCourseScheduleRq): Observable<any>;
|
|
37
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
|
|
38
36
|
static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
|
|
39
37
|
}
|