iptdevs-design-system 3.1.838 → 3.1.840
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/budget/budget.model.mjs +1 -1
- package/esm2020/lib/core/models/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +21 -1
- package/fesm2015/iptdevs-design-system.mjs +20 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +20 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +1 -1
- package/lib/core/models/course/course-rq.model.d.ts +31 -0
- package/lib/core/services/course-service/course-service.model.d.ts +5 -1
- package/package.json +1 -1
|
@@ -3577,6 +3577,26 @@ class CourseService extends IPTGeneralService {
|
|
|
3577
3577
|
this.generateRequestParams(params);
|
|
3578
3578
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
3579
3579
|
}
|
|
3580
|
+
GetCourseAssignedDataRq(params) {
|
|
3581
|
+
let serviceUrl = this.SERVICE_URL + 'get/course/assigned/data';
|
|
3582
|
+
this.generateRequestParams(params);
|
|
3583
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
3584
|
+
}
|
|
3585
|
+
GetLastEventByCourseRq(params) {
|
|
3586
|
+
let serviceUrl = this.SERVICE_URL + 'get/last/event/by/course/{code}';
|
|
3587
|
+
this.generateRequestParams(params);
|
|
3588
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
3589
|
+
}
|
|
3590
|
+
CreateCourseEventRq(params) {
|
|
3591
|
+
let serviceUrl = this.SERVICE_URL + 'create/course/event';
|
|
3592
|
+
this.generateRequestParams(params);
|
|
3593
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
3594
|
+
}
|
|
3595
|
+
UpdateCourseEventByCodeRq(params) {
|
|
3596
|
+
let serviceUrl = this.SERVICE_URL + 'update/course/event/by/code';
|
|
3597
|
+
this.generateRequestParams(params);
|
|
3598
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
3599
|
+
}
|
|
3580
3600
|
}
|
|
3581
3601
|
CourseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CourseService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3582
3602
|
CourseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CourseService, providedIn: 'root' });
|