ads and invoce

This commit is contained in:
hamid zarghami
2025-02-22 10:51:30 +03:30
parent e094736c0e
commit 06f7f6b3d8
10 changed files with 393 additions and 153 deletions
@@ -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;
};
};