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.
@@ -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);