action appwrite_storage_delete_file { label: "Delete File" description: "Delete a file by its unique ID. Only users with write permissions have access to delete this resource." provider: appwrite method: DELETE path: "/storage/files/{fileId}" encoding: json input: { type: "object" properties: { fileId: { type: "string" } } required: ["fileId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }