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
|
@@ -998,6 +998,11 @@ class CalendarService extends IPTGeneralService {
|
|
|
998
998
|
this.generateRequestParams(params);
|
|
999
999
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
1000
1000
|
}
|
|
1001
|
+
newCreateEvents(params) {
|
|
1002
|
+
let serviceUrl = this.SERVICE_URL + 'post/create/new/events';
|
|
1003
|
+
this.generateRequestParams(params);
|
|
1004
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
1005
|
+
}
|
|
1001
1006
|
ObtainUnitsNameCourseType(params) {
|
|
1002
1007
|
let serviceUrl = this.SERVICE_URL + 'post/obtain/unitsname/by/coursetype';
|
|
1003
1008
|
this.generateRequestParams(params);
|
|
@@ -5562,6 +5567,11 @@ class ClassroomService extends IPTGeneralService {
|
|
|
5562
5567
|
this.generateRequestParams(params);
|
|
5563
5568
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
5564
5569
|
}
|
|
5570
|
+
obtainRoomByModalityAndCampus(params) {
|
|
5571
|
+
let serviceUrl = this.SERVICE_URL + 'post/obtain/rooms/by/modality/and/location';
|
|
5572
|
+
this.generateRequestParams(params);
|
|
5573
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
5574
|
+
}
|
|
5565
5575
|
getClassroomByIdCalendar(params) {
|
|
5566
5576
|
let serviceUrl = this.SERVICE_URL + 'post/classroom/by/idcalendar';
|
|
5567
5577
|
this.generateRequestParams(params);
|