feat: patronymic and passport data for user

This commit is contained in:
2024-11-22 15:14:18 +04:00
parent dc882ccd9c
commit 20616d9e81
5 changed files with 82 additions and 55 deletions

View File

@@ -8,7 +8,9 @@ export type UserCreate = {
phoneNumber?: (string | null);
firstName: string;
secondName: string;
patronymic: string;
comment: string;
passportData?: (string | null);
isAdmin: boolean;
isBlocked: boolean;
isDeleted: boolean;