ads and invoce
This commit is contained in:
@@ -22,3 +22,36 @@ export type ProvinesItemType = {
|
||||
id: string;
|
||||
name: string;
|
||||
};
|
||||
|
||||
export type FinancialDataType = {
|
||||
user: {
|
||||
id: string;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
email: string | null;
|
||||
phone: string;
|
||||
userName: string | null;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
birthDate: string;
|
||||
nationalCode: string;
|
||||
profilePic: string;
|
||||
emailVerified: boolean;
|
||||
userAddress: string;
|
||||
postalCode: string;
|
||||
realUser: CreateRealUserType | null;
|
||||
legalUser: CreateLegalUserType | null;
|
||||
address: {
|
||||
address: string;
|
||||
postalCode: string;
|
||||
city: {
|
||||
id: number;
|
||||
name: string;
|
||||
province: {
|
||||
id: number;
|
||||
name: string;
|
||||
};
|
||||
};
|
||||
} | null;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user