iptdevs-design-system 3.1.299 → 3.1.301
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/classroom/classroom-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/calendar-service/calendar.service.mjs +6 -1
- package/esm2020/lib/core/services/classroom-service/classroom-service.service.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/classroom/classroom-rq.model.d.ts +17 -0
- package/lib/core/services/calendar-service/calendar.service.d.ts +1 -0
- package/lib/core/services/classroom-service/classroom-service.service.d.ts +2 -1
- package/package.json +1 -1
|
@@ -45,3 +45,20 @@ export interface IEventCourseRq {
|
|
|
45
45
|
name_event: string;
|
|
46
46
|
description_event: string;
|
|
47
47
|
}
|
|
48
|
+
export interface IObatinRoomByModalityCampusRq {
|
|
49
|
+
token: string;
|
|
50
|
+
course_modality: number;
|
|
51
|
+
campus: number;
|
|
52
|
+
}
|
|
53
|
+
export interface IObatinRoomByModalityCampusRS {
|
|
54
|
+
code: number;
|
|
55
|
+
name: string;
|
|
56
|
+
course_modality: number;
|
|
57
|
+
capacity: number;
|
|
58
|
+
id_calendar: string;
|
|
59
|
+
adress: string;
|
|
60
|
+
classroom_status: number;
|
|
61
|
+
campus: number;
|
|
62
|
+
updated_at: Date;
|
|
63
|
+
created_at: Date;
|
|
64
|
+
}
|
|
@@ -16,6 +16,7 @@ export declare class CalendarService extends IPTGeneralService {
|
|
|
16
16
|
getEventByDateTime(params: GetEventByDateTimeRq): Observable<any>;
|
|
17
17
|
getAvailability(params: AvailabilityQueryRqs): Observable<any>;
|
|
18
18
|
addNewEvent(params: AddNewEventRq): Observable<any>;
|
|
19
|
+
newCreateEvents(params: AddNewEventRq): Observable<any>;
|
|
19
20
|
ObtainUnitsNameCourseType(params: any): Observable<any>;
|
|
20
21
|
getAllEventByCourse(params: GetEventsByCourseRq): Observable<any>;
|
|
21
22
|
obtainAvailableCourseDays(params: IObtainAvailableCourseDayRq): Observable<any>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { ClassroomByIdCalendarRq, ClassroomByTypeUserRq, ClassroomModalityRq, ClassroomStudentRq } from '../../models/classroom/classroom-rq.model';
|
|
3
|
+
import { ClassroomByIdCalendarRq, ClassroomByTypeUserRq, ClassroomModalityRq, ClassroomStudentRq, IObatinRoomByModalityCampusRq } 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 {
|
|
@@ -8,6 +8,7 @@ export declare class ClassroomService extends IPTGeneralService {
|
|
|
8
8
|
private SERVICE_URL;
|
|
9
9
|
constructor(http: HttpClient);
|
|
10
10
|
getClassroomsByModality(params: ClassroomModalityRq): Observable<Response>;
|
|
11
|
+
obtainRoomByModalityAndCampus(params: IObatinRoomByModalityCampusRq): Observable<Response>;
|
|
11
12
|
getClassroomByIdCalendar(params: ClassroomByIdCalendarRq): Observable<Response>;
|
|
12
13
|
getAllClassroomByTypeUser(params: ClassroomByTypeUserRq): Observable<Response>;
|
|
13
14
|
getClassroomByStudent(params: ClassroomStudentRq): Observable<Response>;
|