Merge branch 'feat/connect-api-fn' into develop

This commit is contained in:
Methapon2001 2024-04-05 17:31:48 +07:00
commit d5b88adfa7
5 changed files with 62 additions and 115 deletions

View file

@ -5,7 +5,4 @@ export type Pagination<T> = {
total: number;
};
export enum Status {
CREATED,
USED,
}
export type Status = 'CREATED' | 'ACTIVE' | 'INACTIVE';

View file

@ -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;