iptdevs-design-system 3.1.300 → 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/services/calendar-service/calendar.service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/services/calendar-service/calendar.service.d.ts +1 -0
- 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);
|