feat: work shifts planning

This commit is contained in:
2025-01-22 18:01:16 +04:00
parent 71332e4ebd
commit f62d2662d6
18 changed files with 575 additions and 49 deletions

View File

@@ -0,0 +1,11 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { PlannedWorkShiftSchema } from './PlannedWorkShiftSchema';
import type { UserSchema } from './UserSchema';
export type PlanningTableRow = {
user: UserSchema;
shifts: Array<PlannedWorkShiftSchema>;
};