mirror of
https://github.com/emailerfacu-spec/minix-front.git
synced 2026-04-11 14:50:44 -03:00
algunos arreglos a la ui y correjido un cambio en una api
This commit is contained in:
28
src/types.d.ts
vendored
28
src/types.d.ts
vendored
@@ -84,18 +84,34 @@ export interface UserResponseDto {
|
||||
displayName: string;
|
||||
email: string;
|
||||
bio: string;
|
||||
imageUrl: string?;
|
||||
imageUrl: string?;
|
||||
profileImageUrl: string;
|
||||
followersCount: number;
|
||||
followingCount: number;
|
||||
createdAt: string;
|
||||
postsCount: number;
|
||||
}
|
||||
export interface UsersResponseDto {
|
||||
response: {
|
||||
id: string;
|
||||
username: string;
|
||||
displayName: string;
|
||||
email: string;
|
||||
bio: string;
|
||||
imageUrl?: string;
|
||||
profileImageUrl: string;
|
||||
followersCount: number;
|
||||
followingCount: number;
|
||||
createdAt: string;
|
||||
postsCount: number;
|
||||
}[];
|
||||
totalCount: number;
|
||||
}
|
||||
|
||||
export interface UpdateUserRequest {
|
||||
username: string?;
|
||||
displayName: string?;
|
||||
bio: string?;
|
||||
email: string?;
|
||||
profileImage: File?;
|
||||
username: string?;
|
||||
displayName: string?;
|
||||
bio: string?;
|
||||
email: string?;
|
||||
profileImage: File?;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user