diff --git a/frontend/src/Components/Navbar/Navbar.tsx b/frontend/src/Components/Navbar/Navbar.tsx
index 550c290b..5fdccd33 100644
--- a/frontend/src/Components/Navbar/Navbar.tsx
+++ b/frontend/src/Components/Navbar/Navbar.tsx
@@ -57,7 +57,11 @@ const Navbar = () => {
{auth.isAuthenticated ? (
<>
- -
+
-
;
+export interface components {
+ schemas: {
+ /**
+ * Format: date
+ * @example 2022-03-10
+ */
+ Date: string;
+ DeviceDTO: {
+ /** Format: int64 */
+ id?: number;
+ name?: string;
+ type?: string;
+ ownerId?: string;
+ /** Format: int64 */
+ petId?: number;
+ };
+ PetDTO: {
+ /** Format: int64 */
+ id?: number;
+ name?: string;
+ /** Format: int64 */
+ type?: number;
+ ownerId?: string;
+ lastTimeOnDevice?: components["schemas"]["Date"];
+ state?: components["schemas"]["PetStateDTO"];
+ };
+ PetStateDTO: {
+ /** Format: int32 */
+ happiness?: number;
+ /** Format: int32 */
+ wellbeing?: number;
+ /** Format: int32 */
+ health?: number;
+ /** Format: int32 */
+ hunger?: number;
+ /** Format: int32 */
+ cleanliness?: number;
+ /** Format: int32 */
+ fun?: number;
+ /** Format: int32 */
+ xp?: number;
+ };
+ PetTypeDTO: {
+ /** Format: int64 */
+ id?: number;
+ name?: string;
+ };
+ };
+ responses: never;
+ parameters: never;
+ requestBodies: never;
+ headers: never;
+ pathItems: never;
+}
+export type $defs = Record;
+export type operations = Record;
\ No newline at end of file