feat: Enhance user update handling and introduce NullString type for optional fields
This commit is contained in:
@@ -160,14 +160,14 @@ export interface UserDto {
|
||||
lastEditorID: string;
|
||||
email: string;
|
||||
role: string;
|
||||
companyId: string;
|
||||
companyId?: string;
|
||||
hourlyRate: number /* float64 */;
|
||||
}
|
||||
export interface UserCreateDto {
|
||||
email: string;
|
||||
password: string;
|
||||
role: string;
|
||||
companyId: string;
|
||||
companyId?: string;
|
||||
hourlyRate: number /* float64 */;
|
||||
}
|
||||
export interface UserUpdateDto {
|
||||
|
||||
Reference in New Issue
Block a user