= {
total: number;
};
-export enum Status {
- CREATED,
- USED,
-}
+export type Status = 'CREATED' | 'ACTIVE' | 'INACTIVE';
diff --git a/src/stores/user/types.ts b/src/stores/user/types.ts
index 58ff7c5b..cdb508a8 100644
--- a/src/stores/user/types.ts
+++ b/src/stores/user/types.ts
@@ -17,6 +17,7 @@ export type User = {
licenseIssueDate: string | null;
licenseNo: string | null;
discountCondition: string | null;
+ gender: string;
userRole: string;
userType: string;
retireDate: string | null;
@@ -34,7 +35,7 @@ export type User = {
lastName: string;
firstNameEN: string;
firstName: string;
- code: string | null;
+ code: string;
keycloakId: string;
id: string;
profileImageUrl: string;
@@ -47,6 +48,7 @@ export type UserCreate = {
telephoneNo: string;
email: string;
zipCode: string;
+ gender: string;
addressEN: string;
address: string;
trainingPlace?: string;