feat: Enhance user update handling and introduce NullString type for optional fields

This commit is contained in:
2025-03-12 07:54:00 +00:00
parent 0379ea4ae4
commit da115dc3f6
8 changed files with 111 additions and 54 deletions
+2 -2
View File
@@ -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 {