iptdevs-design-system 3.2.172 → 3.2.173
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/commercial-service/comercial.service.mjs +6 -1
- package/esm2020/lib/core/services/user-service/user-service.mjs +1 -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/commercial-service/comercial.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4071,6 +4071,11 @@ class CommercialService extends IPTGeneralService {
|
|
|
4071
4071
|
this.generateRequestParams(params);
|
|
4072
4072
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
4073
4073
|
}
|
|
4074
|
+
obtainCodCoursesByAdvisorOrganized(params) {
|
|
4075
|
+
let serviceUrl = this.SERVICE_URL + 'post/obtain/cod/courses/by/advisor/organized';
|
|
4076
|
+
this.generateRequestParams(params);
|
|
4077
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
4078
|
+
}
|
|
4074
4079
|
obtainCodByAdvisorAndCourse(params) {
|
|
4075
4080
|
let serviceUrl = this.SERVICE_URL + 'post/obtain/cod/student/by/course/and/advisor';
|
|
4076
4081
|
this.generateRequestParams(params);
|