iptdevs-design-system 3.1.53 → 3.1.55
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/services/budget-service/budget-service.mjs +1 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +1 -4
- package/lib/core/services/budget-service/budget-service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -145,13 +145,10 @@ export interface AllCourseAvailableByStudentRs {
|
|
|
145
145
|
data: IAvailableCoursesRq;
|
|
146
146
|
}
|
|
147
147
|
export interface IAvailableCoursesRq {
|
|
148
|
-
availableCourses:
|
|
148
|
+
availableCourses: ICourseAvailableRq[] | any[];
|
|
149
149
|
overdue: IOverdueRq | any[];
|
|
150
150
|
unitAdvance: boolean;
|
|
151
151
|
}
|
|
152
|
-
export interface IAvailableCourseRq {
|
|
153
|
-
course: ICourseAvailableRq;
|
|
154
|
-
}
|
|
155
152
|
export interface ICourseAvailableRq {
|
|
156
153
|
numberClases: number;
|
|
157
154
|
currentEvent: IEventCourseRq;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq } from '../../models/budget/budget.model';
|
|
3
|
+
import { getdiscountAllRq, DiscountRq, DiscountUpdateRq, IObtainAllCoursewallet, IAssignRequestRq, IObtainAvailableCourseRs } from '../../models/budget/budget.model';
|
|
4
4
|
import { IFullCodStudentOverdueByCoordinatorRq, IPaymentOverdueByCoordinatorCourseRq, IPaymentOverdueByCoordinatorRq, PaymentBillRq, PriceByTypeServiceRq } from '../../models/payment/payment-rq.model';
|
|
5
5
|
import { IgetCoursesFinishAndunassignedRq } from '../../models/reports/reports.model';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
@@ -34,7 +34,7 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
34
34
|
getCoursesFinishAndunassigned(params: IgetCoursesFinishAndunassignedRq): Observable<any>;
|
|
35
35
|
AssingCourse(params: any): Observable<any>;
|
|
36
36
|
AssingCourses(params: IAssignRequestRq): Observable<any>;
|
|
37
|
-
obtainAllAvailableCoursesByStudent(params:
|
|
37
|
+
obtainAllAvailableCoursesByStudent(params: IObtainAvailableCourseRs): Observable<any>;
|
|
38
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
39
39
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
40
40
|
}
|