iptdevs-design-system 3.1.43 → 3.1.46

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.
@@ -4754,6 +4754,17 @@ class BudgetService extends IPTGeneralService {
4754
4754
  this.generateRequestParams(params);
4755
4755
  return this.http.post(serviceUrl, this.httpOptions);
4756
4756
  }
4757
+ getCoursesFinishAndunassigned(params) {
4758
+ let serviceUrl = this.SERVICE_URL + 'get/course/by/user/budget';
4759
+ this.generateRequestParams(params);
4760
+ return this.http.post(serviceUrl, this.httpOptions);
4761
+ }
4762
+ AssingCourse(params) {
4763
+ let serviceUrl = this.SERVICE_URL + 'post/course/by/code/user/budget/assign';
4764
+ this.generateRequestParams(params);
4765
+ console.log(params);
4766
+ return this.http.post(serviceUrl, this.httpOptions);
4767
+ }
4757
4768
  }
4758
4769
  BudgetService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
4759
4770
  BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
@@ -5032,7 +5043,7 @@ class CertificateService extends IPTGeneralService {
5032
5043
  return this.http.post(serviceUrl, this.httpOptions);
5033
5044
  }
5034
5045
  getCertificateApiUrl() {
5035
- return this.SERVICE_URL + '/post/certificate';
5046
+ return this.SERVICE_URL + 'post/certificate';
5036
5047
  }
5037
5048
  getCertificatesApiUrl() {
5038
5049
  return this.SERVICE_URL + 'post/certificates';