iptdevs-design-system 3.1.831 → 3.1.833
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/budget-service/budget-service.mjs +6 -1
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +11 -1
- package/fesm2015/iptdevs-design-system.mjs +15 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +15 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +99 -0
- package/lib/core/models/course/course-rq.model.d.ts +4 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -1
- package/lib/core/services/course-service/course-service.model.d.ts +3 -1
- package/package.json +1 -1
|
@@ -3567,6 +3567,16 @@ class CourseService extends IPTGeneralService {
|
|
|
3567
3567
|
this.generateRequestParams(params);
|
|
3568
3568
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
3569
3569
|
}
|
|
3570
|
+
getCourses(params) {
|
|
3571
|
+
let serviceUrl = this.SERVICE_URL + 'get/courses';
|
|
3572
|
+
this.generateRequestParams(params);
|
|
3573
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
3574
|
+
}
|
|
3575
|
+
getCoursesByState(params) {
|
|
3576
|
+
let serviceUrl = this.SERVICE_URL + 'get/courses/by/state';
|
|
3577
|
+
this.generateRequestParams(params);
|
|
3578
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
3579
|
+
}
|
|
3570
3580
|
}
|
|
3571
3581
|
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 });
|
|
3572
3582
|
CourseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CourseService, providedIn: 'root' });
|
|
@@ -6332,6 +6342,11 @@ class BudgetService extends IPTGeneralService {
|
|
|
6332
6342
|
this.generateRequestParams(params);
|
|
6333
6343
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
6334
6344
|
}
|
|
6345
|
+
getFullPaymentInformation(params) {
|
|
6346
|
+
const serviceUrl = this.SERVICE_URL + 'post/payment/bill/full-information';
|
|
6347
|
+
this.generateRequestParams(params);
|
|
6348
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
6349
|
+
}
|
|
6335
6350
|
}
|
|
6336
6351
|
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 });
|
|
6337
6352
|
BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
|