iptdevs-design-system 2.7.35 → 2.7.37
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/models/cod/cod-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 +5 -0
- package/lib/core/models/cod/cod-rq.model.d.ts +61 -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
|
@@ -933,6 +933,11 @@ class CalendarService extends IPTGeneralService {
|
|
|
933
933
|
this.generateRequestParams(params);
|
|
934
934
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
935
935
|
}
|
|
936
|
+
getAllEventByCourse(params) {
|
|
937
|
+
let serviceUrl = this.SERVICE_URL + 'post/all/event/calendar/idcalendar/by/course';
|
|
938
|
+
this.generateRequestParams(params);
|
|
939
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
940
|
+
}
|
|
936
941
|
}
|
|
937
942
|
CalendarService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CalendarService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
938
943
|
CalendarService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: CalendarService, providedIn: 'root' });
|
|
@@ -3964,6 +3969,11 @@ class ClassroomService extends IPTGeneralService {
|
|
|
3964
3969
|
this.generateRequestParams(params);
|
|
3965
3970
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
3966
3971
|
}
|
|
3972
|
+
getAllClassroomByTypeUser(params) {
|
|
3973
|
+
let serviceUrl = this.SERVICE_URL + 'post/obtain/all/classroom/by/user';
|
|
3974
|
+
this.generateRequestParams(params);
|
|
3975
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
3976
|
+
}
|
|
3967
3977
|
}
|
|
3968
3978
|
ClassroomService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ClassroomService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3969
3979
|
ClassroomService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ClassroomService, providedIn: 'root' });
|