upgraded cart add function

This commit is contained in:
Jelaletdin12
2025-12-24 15:43:27 +05:00
parent 2b46d525f2
commit d3ed4d1901
9 changed files with 224 additions and 126 deletions

View File

@@ -8,7 +8,7 @@ import { AxiosError } from "axios";
// ==================== TYPES ====================
interface LoginCredentials {
phone_number: string;
phone_number: number;
password?: string;
}
@@ -19,8 +19,8 @@ interface RegisterData {
}
interface VerifyTokenData {
phone_number: string;
code: string;
phone_number: number;
code: number;
}
interface AuthResponse {