iptdevs-design-system 2.7.168 → 3.1.2

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.
@@ -837,6 +837,11 @@ class UserService extends IPTGeneralService {
837
837
  let serviceUrl = this.SERVICE_URL + 'get/obtain/user/role/by/code/' + codeRole;
838
838
  return this.http.get(serviceUrl);
839
839
  }
840
+ getUserAllBudget(userToken) {
841
+ let serviceUrl = this.SERVICE_URL + 'post/obtain/all/user/budget';
842
+ this.generateRequestParams(userToken);
843
+ return this.http.post(serviceUrl, this.httpOptions);
844
+ }
840
845
  }
841
846
  UserService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
842
847
  UserService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: UserService, providedIn: 'root' });
@@ -2546,6 +2551,11 @@ class CommercialService extends IPTGeneralService {
2546
2551
  this.generateRequestParams(params);
2547
2552
  return this.http.post(serviceUrl, this.httpOptions);
2548
2553
  }
2554
+ obtainCodCoursesByAdvisor(params) {
2555
+ let serviceUrl = this.SERVICE_URL + 'post/obtain/cod/courses/by/advisor';
2556
+ this.generateRequestParams(params);
2557
+ return this.http.post(serviceUrl, this.httpOptions);
2558
+ }
2549
2559
  }
2550
2560
  CommercialService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
2551
2561
  CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, providedIn: 'root' });