feat: patronymic and passport data for user
This commit is contained in:
		@@ -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;
 | 
			
		||||
 
 | 
			
		||||
@@ -10,7 +10,9 @@ export type UserSchema = {
 | 
			
		||||
    phoneNumber?: (string | null);
 | 
			
		||||
    firstName: string;
 | 
			
		||||
    secondName: string;
 | 
			
		||||
    patronymic: string;
 | 
			
		||||
    comment: string;
 | 
			
		||||
    passportData?: (string | null);
 | 
			
		||||
    isAdmin: boolean;
 | 
			
		||||
    isBlocked: boolean;
 | 
			
		||||
    isDeleted: boolean;
 | 
			
		||||
 
 | 
			
		||||
@@ -8,7 +8,9 @@ export type UserUpdate = {
 | 
			
		||||
    phoneNumber?: (string | null);
 | 
			
		||||
    firstName: string;
 | 
			
		||||
    secondName: string;
 | 
			
		||||
    patronymic: string;
 | 
			
		||||
    comment: string;
 | 
			
		||||
    passportData?: (string | null);
 | 
			
		||||
    isAdmin: boolean;
 | 
			
		||||
    isBlocked: boolean;
 | 
			
		||||
    isDeleted: boolean;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user