apply rate feature

This commit is contained in:
2025-11-24 00:46:14 +03:00
parent 6e8305f9c2
commit 7e5a5e30a4
7 changed files with 1074 additions and 36 deletions

View File

@@ -332,11 +332,27 @@ export interface CartItem {
uniqueId?: string;
}
export interface User {
id: string;
export interface UserType {
id: number;
username: string;
email: string;
name: string;
role: "admin" | "user";
mobilenumber: string;
device_token: string;
password: string;
redeem_point: number;
customer_image: string;
login_taken: string;
device: string;
social_id: string;
otp_number: number;
otp_status: number;
created_datetime: string;
user_uuid: string;
is_deleted: number;
thawani_customer_id: string;
birth_date: string;
gender: string;
country_id: number;
}
export type Locale = "en" | "ar";