iptdevs-design-system 3.1.296 → 3.1.298

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.
@@ -1004,6 +1004,16 @@ class CalendarService extends IPTGeneralService {
1004
1004
  this.generateRequestParams(params);
1005
1005
  return this.http.post(serviceUrl, this.httpOptions);
1006
1006
  }
1007
+ obtainAvailableCourseDays(params) {
1008
+ let serviceUrl = this.SERVICE_URL + 'post/obtain/available/course/days';
1009
+ this.generateRequestParams(params);
1010
+ return this.http.post(serviceUrl, this.httpOptions);
1011
+ }
1012
+ obtainAvailableClassroomsInCalendar(params) {
1013
+ let serviceUrl = this.SERVICE_URL + 'post/obtain/available/classrooms/in/calendar';
1014
+ this.generateRequestParams(params);
1015
+ return this.http.post(serviceUrl, this.httpOptions);
1016
+ }
1007
1017
  }
1008
1018
  CalendarService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CalendarService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1009
1019
  CalendarService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CalendarService, providedIn: 'root' });