Type Alias ProfileCardResponseDto
ProfileCardResponseDto: {
items: {
fieldId: string;
isDefault: boolean;
label: string;
order: number;
type:
| "SHORT_TEXT"
| "LONG_TEXT"
| "NUMBER"
| "DATE"
| "SELECT";
visibility: "PUBLIC" | "PRIVATE" | "ADMIN_ONLY";
visible: boolean;
}[];
}