Merge branch 'feat/connect-api-fn' into develop
This commit is contained in:
commit
d5b88adfa7
5 changed files with 62 additions and 115 deletions
|
|
@ -5,7 +5,4 @@ export type Pagination<T> = {
|
|||
total: number;
|
||||
};
|
||||
|
||||
export enum Status {
|
||||
CREATED,
|
||||
USED,
|
||||
}
|
||||
export type Status = 'CREATED' | 'ACTIVE' | 'INACTIVE';
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue