def delete_collection_item(user: InternalUserDTO, collection_uuid: UUID,
                           item_uuid: UUID) -> None:
    Item.delete_writeable(user, item_uuid, collection_uuid)
def delete_item(user: InternalUserDTO, item_uuid: UUID) -> None:
    Item.delete_writeable(user, item_uuid)