iptdevs-design-system 2.7.167 → 3.1.1

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' });
@@ -2541,6 +2546,16 @@ class CommercialService extends IPTGeneralService {
2541
2546
  this.generateRequestParams(params);
2542
2547
  return this.http.post(serviceUrl, this.httpOptions);
2543
2548
  }
2549
+ obtainCodByAdvaiser(params) {
2550
+ let serviceUrl = this.SERVICE_URL + 'post/obtain/cod/by/advaiser';
2551
+ this.generateRequestParams(params);
2552
+ return this.http.post(serviceUrl, this.httpOptions);
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
+ }
2544
2559
  }
2545
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 });
2546
2561
  CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, providedIn: 'root' });