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.
- package/esm2020/lib/core/models/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/cronogram/cronogram.models.mjs +1 -1
- package/esm2020/lib/core/services/calendar-service/calendar.service.mjs +11 -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/course/course-rq.model.d.ts +2 -0
- package/lib/core/models/cronogram/cronogram.models.d.ts +15 -0
- package/lib/core/services/calendar-service/calendar.service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -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' });
|