feat: foreign address
This commit is contained in:
parent
6c350b12ce
commit
236ee48eab
2 changed files with 21 additions and 6 deletions
|
|
@ -111,6 +111,7 @@ type UserCreate = {
|
|||
responsibleArea?: string[] | null;
|
||||
birthDate?: Date | null;
|
||||
|
||||
addressForeign?: boolean;
|
||||
address: string;
|
||||
addressEN: string;
|
||||
soi?: string | null;
|
||||
|
|
@ -122,8 +123,11 @@ type UserCreate = {
|
|||
email: string;
|
||||
telephoneNo: string;
|
||||
|
||||
subDistrictText?: string | null;
|
||||
subDistrictId?: string | null;
|
||||
districtText?: string | null;
|
||||
districtId?: string | null;
|
||||
provinceText?: string | null;
|
||||
provinceId?: string | null;
|
||||
|
||||
selectedImage?: string;
|
||||
|
|
@ -173,6 +177,7 @@ type UserUpdate = {
|
|||
responsibleArea?: string[] | null;
|
||||
birthDate?: Date | null;
|
||||
|
||||
addressForeign?: boolean;
|
||||
address?: string;
|
||||
addressEN?: string;
|
||||
soi?: string | null;
|
||||
|
|
@ -186,8 +191,11 @@ type UserUpdate = {
|
|||
|
||||
selectedImage?: string;
|
||||
|
||||
subDistrictText?: string | null;
|
||||
subDistrictId?: string | null;
|
||||
districtText?: string | null;
|
||||
districtId?: string | null;
|
||||
provinceText?: string | null;
|
||||
provinceId?: string | null;
|
||||
|
||||
branchId?: string | string[];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue