iptdevs-design-system 3.1.838 → 3.1.840
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/course-service/course-service.model.mjs +21 -1
- package/fesm2015/iptdevs-design-system.mjs +20 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +20 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/budget/budget.model.d.ts +1 -1
- package/lib/core/models/course/course-rq.model.d.ts +31 -0
- package/lib/core/services/course-service/course-service.model.d.ts +5 -1
- package/package.json +1 -1
|
@@ -946,7 +946,7 @@ export interface ISearchPaymentBillRq {
|
|
|
946
946
|
reference_number?: string;
|
|
947
947
|
payer_name?: string;
|
|
948
948
|
electronic_invoice?: string;
|
|
949
|
-
payment_bill_code?:
|
|
949
|
+
payment_bill_code?: string;
|
|
950
950
|
}
|
|
951
951
|
export interface ISearchPaymentBillRs {
|
|
952
952
|
ip_applicant: string;
|
|
@@ -459,3 +459,34 @@ export interface IOldCourseUserCourseRs {
|
|
|
459
459
|
deleted_notes: any[];
|
|
460
460
|
deleted_user_course: any[];
|
|
461
461
|
}
|
|
462
|
+
export interface GetCourseAssignedDataRq {
|
|
463
|
+
token: string;
|
|
464
|
+
course_code: number;
|
|
465
|
+
}
|
|
466
|
+
export interface GetLastEventByCourseRq {
|
|
467
|
+
token?: string;
|
|
468
|
+
course_code: number;
|
|
469
|
+
}
|
|
470
|
+
export interface CreateCourseEventRq {
|
|
471
|
+
token: string;
|
|
472
|
+
course_code: number;
|
|
473
|
+
name_event: string;
|
|
474
|
+
date_event: string;
|
|
475
|
+
event_type: 'THEORETICAL' | 'CLUB';
|
|
476
|
+
}
|
|
477
|
+
export interface UpdateCourseEventByCodeRq {
|
|
478
|
+
token: string;
|
|
479
|
+
event_code: number;
|
|
480
|
+
course_code: number;
|
|
481
|
+
name_event: string;
|
|
482
|
+
date_event: string;
|
|
483
|
+
event_type: 'THEORETICAL' | 'CLUB';
|
|
484
|
+
}
|
|
485
|
+
export interface IUpdateCourseEventByCodeNewRq {
|
|
486
|
+
token: string;
|
|
487
|
+
course_code: number;
|
|
488
|
+
date_event: Date;
|
|
489
|
+
event_code: number;
|
|
490
|
+
name_event: string;
|
|
491
|
+
event_type: 'THEORETICAL' | 'CLUB';
|
|
492
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { IPTGeneralService } from '../service-enviroments';
|
|
4
|
-
import { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq, IChangeCourseStudentNotStartedRq, IUpdateCourseEventByCodeRq, ICourse, GetCoursesFilterRq } from '../../models/course/course-rq.model';
|
|
4
|
+
import { CreateCourseRq, EditCourseRq, GetAvailibleCoursesRq, GetCourseByCodeRq, GetCoursesByTeacherRq, GetCoursesRq, IChangeCourseStudentNotStartedRq, IUpdateCourseEventByCodeRq, ICourse, GetCoursesFilterRq, GetCourseAssignedDataRq, GetLastEventByCourseRq, CreateCourseEventRq, UpdateCourseEventByCodeRq } from '../../models/course/course-rq.model';
|
|
5
5
|
import { CourseStartDateRq } from '../../models/cronogram/cronogram.models';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class CourseService extends IPTGeneralService {
|
|
@@ -27,6 +27,10 @@ export declare class CourseService extends IPTGeneralService {
|
|
|
27
27
|
getCourseTheoryAndClubAllData(params: GetCourseByCodeRq): Observable<any>;
|
|
28
28
|
getCourses(params: GetCoursesFilterRq): Observable<any>;
|
|
29
29
|
getCoursesByState(params: GetCoursesFilterRq): Observable<any>;
|
|
30
|
+
GetCourseAssignedDataRq(params: GetCourseAssignedDataRq): Observable<any>;
|
|
31
|
+
GetLastEventByCourseRq(params: GetLastEventByCourseRq): Observable<any>;
|
|
32
|
+
CreateCourseEventRq(params: CreateCourseEventRq): Observable<any>;
|
|
33
|
+
UpdateCourseEventByCodeRq(params: UpdateCourseEventByCodeRq): Observable<any>;
|
|
30
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<CourseService, never>;
|
|
31
35
|
static ɵprov: i0.ɵɵInjectableDeclaration<CourseService>;
|
|
32
36
|
}
|