This commit is contained in:
2025-12-13 12:30:38 +03:30
parent 5d872db4ad
commit 9d9de98c03
13 changed files with 142 additions and 91 deletions
@@ -6,8 +6,7 @@ export interface UserLoginResponse {
firstName: string;
lastName?: string;
phone: string;
wallet: number;
points: number;
isActive?: boolean;
restaurant: {
id: string;
@@ -23,8 +22,6 @@ export class UserLoginTransformer {
firstName: user.firstName,
lastName: user.lastName,
phone: user.phone,
wallet: user.wallet,
points: user.points,
isActive: user.isActive,
restaurant: {
id: restaurant.id,