iptdevs-design-system 3.2.190 → 3.2.192
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/user/user-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +11 -1
- package/fesm2015/iptdevs-design-system.mjs +10 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +10 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +4 -0
- package/lib/core/models/user/user-rq.model.d.ts +1 -0
- package/lib/core/services/budget-service/budget-service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -144,11 +144,13 @@ export declare class BudgetService extends IPTGeneralService {
|
|
|
144
144
|
searchForStudentsByDifferentParametersAndCampus(param: ISearchForStudentsByDifferentParametersAndCampusRq): Observable<any>;
|
|
145
145
|
obtainCourseWalletSummaryByCampusAndUserStatus(param: IObtainCourseWalletSummaryByCampusAndUserStatusRq): Observable<any>;
|
|
146
146
|
obtainCampusSummaryByUserCode(param: IObtainCampusSummaryByUserCodeRq): Observable<any>;
|
|
147
|
+
obtainCampusCoursesByAdvisor(param: IObtainCampusSummaryByUserCodeRq): Observable<any>;
|
|
147
148
|
getCoursesNotAssignedByCampus(param: IGetCoursesNotAssignedByCampusRq): Observable<any>;
|
|
148
149
|
getCoursesAssignedByTheCoordinator(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
|
|
149
150
|
paymentsMadeByDateAndPortfolioCoordinatorReport(param: IGetCoursesAssignedByTheCoordinatorRq): Observable<any>;
|
|
150
151
|
getCoursesNotAssignedByCampusWithAvailableCapacity(param: IGetCoursesNotAssignedByCampusWithAvailableCapacityRq): Observable<any>;
|
|
151
152
|
createPaymentBillByCampus(params: ICreatePaymentBillByCampusRq): Observable<any>;
|
|
153
|
+
obtainAssigmentByParams(param: any): Observable<any>;
|
|
152
154
|
static ɵfac: i0.ɵɵFactoryDeclaration<BudgetService, never>;
|
|
153
155
|
static ɵprov: i0.ɵɵInjectableDeclaration<BudgetService>;
|
|
154
156
|
}
|