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
|
@@ -3570,6 +3570,16 @@ class CourseService extends IPTGeneralService {
|
|
|
3570
3570
|
this.generateRequestParams(params);
|
|
3571
3571
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
3572
3572
|
}
|
|
3573
|
+
getCourses(params) {
|
|
3574
|
+
let serviceUrl = this.SERVICE_URL + 'get/courses';
|
|
3575
|
+
this.generateRequestParams(params);
|
|
3576
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
3577
|
+
}
|
|
3578
|
+
getCoursesByState(params) {
|
|
3579
|
+
let serviceUrl = this.SERVICE_URL + 'get/courses/by/state';
|
|
3580
|
+
this.generateRequestParams(params);
|
|
3581
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
3582
|
+
}
|
|
3573
3583
|
}
|
|
3574
3584
|
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 });
|
|
3575
3585
|
CourseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CourseService, providedIn: 'root' });
|
|
@@ -6342,6 +6352,11 @@ class BudgetService extends IPTGeneralService {
|
|
|
6342
6352
|
this.generateRequestParams(params);
|
|
6343
6353
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
6344
6354
|
}
|
|
6355
|
+
getFullPaymentInformation(params) {
|
|
6356
|
+
const serviceUrl = this.SERVICE_URL + 'post/payment/bill/full-information';
|
|
6357
|
+
this.generateRequestParams(params);
|
|
6358
|
+
return this.http.post(serviceUrl, this.httpOptions);
|
|
6359
|
+
}
|
|
6345
6360
|
}
|
|
6346
6361
|
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 });
|
|
6347
6362
|
BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });
|