iptdevs-design-system 3.1.296 → 3.1.298
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/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/models/cronogram/cronogram.models.mjs +1 -1
- package/esm2020/lib/core/services/calendar-service/calendar.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/course/course-rq.model.d.ts +2 -0
- package/lib/core/models/cronogram/cronogram.models.d.ts +15 -0
- package/lib/core/services/calendar-service/calendar.service.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { English_Levels } from "./courses.model";
|
|
1
2
|
export interface CreateCourseRq {
|
|
2
3
|
token?: string;
|
|
3
4
|
teacher?: number | null;
|
|
@@ -159,4 +160,5 @@ export interface TeacherCRq {
|
|
|
159
160
|
export interface IgetCodBcourseByModalityAndDisponibilityRq {
|
|
160
161
|
token: string;
|
|
161
162
|
modality: number;
|
|
163
|
+
english_level: English_Levels[];
|
|
162
164
|
}
|
|
@@ -182,3 +182,18 @@ export interface UpdateCourseRq {
|
|
|
182
182
|
startTime: string;
|
|
183
183
|
endTime: string;
|
|
184
184
|
}
|
|
185
|
+
export interface IObtainAvailableCourseDayRq {
|
|
186
|
+
endTime: string;
|
|
187
|
+
numClass: number;
|
|
188
|
+
startDate: string;
|
|
189
|
+
startTime: string;
|
|
190
|
+
weekDays: string[];
|
|
191
|
+
}
|
|
192
|
+
export interface IObtainAvailableCourseDayRs {
|
|
193
|
+
schoolDays: longDateAvailabilityRs[];
|
|
194
|
+
shortDateSchoolDays: string[];
|
|
195
|
+
weeksClass: number;
|
|
196
|
+
completionClass: string;
|
|
197
|
+
startTime: string;
|
|
198
|
+
endTime: string;
|
|
199
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { eventqueryRq } from '../../models/calendar/calendar-rq.models';
|
|
4
|
-
import { AddNewEventRq, AvailabilityQueryRq, AvailabilityQueryRqs, GetEventByDateTimeRq, GetEventsByCourseRq } from '../../models/cronogram/cronogram.models';
|
|
4
|
+
import { AddNewEventRq, AvailabilityQueryRq, AvailabilityQueryRqs, GetEventByDateTimeRq, GetEventsByCourseRq, IObtainAvailableCourseDayRq } from '../../models/cronogram/cronogram.models';
|
|
5
5
|
import { Response } from '../../models/response/response.interface';
|
|
6
6
|
import { IPTGeneralService } from '../service-enviroments';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
@@ -18,6 +18,8 @@ export declare class CalendarService extends IPTGeneralService {
|
|
|
18
18
|
addNewEvent(params: AddNewEventRq): Observable<any>;
|
|
19
19
|
ObtainUnitsNameCourseType(params: any): Observable<any>;
|
|
20
20
|
getAllEventByCourse(params: GetEventsByCourseRq): Observable<any>;
|
|
21
|
+
obtainAvailableCourseDays(params: IObtainAvailableCourseDayRq): Observable<any>;
|
|
22
|
+
obtainAvailableClassroomsInCalendar(params: AvailabilityQueryRq): Observable<any>;
|
|
21
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarService, never>;
|
|
22
24
|
static ɵprov: i0.ɵɵInjectableDeclaration<CalendarService>;
|
|
23
25
|
}
|