feat: улучшил синхронизацию лекций
🚀 Create and publish a Docker image / Detect changes in backend and frontend (push) Failing after 10m14s
Frontend CI / build-and-check (push) Failing after 16m12s
🚀 Create and publish a Docker image / Build & publish frontend image (push) Failing after 14m7s
🚀 Create and publish a Docker image / Build & publish backend image (push) Failing after 14m59s
🚀 Create and publish a Docker image / Update stack on Portainer (push) Failing after 14m57s
Backend CI / build-and-test (push) Failing after 13m27s

This commit is contained in:
2026-05-24 23:47:23 +03:00
parent a8a20f9b0b
commit 85ef2a1c22
7 changed files with 492 additions and 132 deletions
+9 -1
View File
@@ -204,9 +204,17 @@ export type ApiScheduleTypeId =
| 'CUR_CHECK'
export interface SyncScheduleRequest {
specialtyCode?: string | null
size: number
timeMin?: string | null
timeMax?: string | null
roomId?: string[] | null
attendeePersonId?: string[] | null
courseUnitRealizationId?: string[] | null
cycleRealizationId?: string[] | null
specialtyCode?: string[] | null
learningStartYear?: number[] | null
profileName?: string[] | null
curriculumId?: string[] | null
typeId?: ApiScheduleTypeId[] | null
}