diff --git a/app/components/Pterodactyl/interfaces.tsx b/app/components/Pterodactyl/interfaces.tsx index 1f9cb59..ab1e9e0 100644 --- a/app/components/Pterodactyl/interfaces.tsx +++ b/app/components/Pterodactyl/interfaces.tsx @@ -1,10 +1,15 @@ export interface File { + object: string; // "file_object" or "list" in the provided JSON attributes: { name: string; - modified_at: string; + mode: string; // e.g., "-rw-r--r--" + mode_bits: string; // e.g., "644" size: number; is_file: boolean; - directory: string; + is_symlink: boolean; + mimetype: string; // e.g., "application/json" + created_at: string; // e.g., "2024-08-29T22:31:59+00:00" + modified_at: string; // e.g., "2024-08-29T22:31:59+00:00" }; }