feat: добавил типы мероприятий

This commit is contained in:
2026-05-12 00:13:19 +03:00
parent 34334e9a8d
commit fb8ad6de7c
3 changed files with 55 additions and 7 deletions
+11 -1
View File
@@ -144,11 +144,21 @@ export interface SyncStatusDto {
lastResult?: SyncResultDto | null
}
export type ApiScheduleTypeId =
| 'MID_CHECK'
| 'CONS'
| 'LAB'
| 'LECT'
| 'SEMI'
| 'EVENT_OTHER'
| 'SELF'
| 'CUR_CHECK'
export interface SyncScheduleRequest {
specialtyCode?: string | null
timeMin?: string | null
timeMax?: string | null
typeId?: string | null
typeId?: ApiScheduleTypeId[] | null
}
export interface SyncResultDto {