[cleanup] Remove dead code do_update_all function

- Removed do_update_all function that was never called and only returned an error
- Removed "update-all" from OperationType enum as it's no longer used
- Regenerated data models to reflect the enum change

The update_all functionality now properly creates individual update tasks through the API endpoint rather than being a single monolithic task.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
bymyself
2025-06-17 13:27:51 -07:00
parent 14298b0859
commit d081db0c30
3 changed files with 74 additions and 33 deletions

View File

@@ -20,7 +20,7 @@ components:
schemas:
OperationType:
type: string
enum: [install, uninstall, update, update-all, update-comfyui, fix, disable, enable, install-model]
enum: [install, uninstall, update, update-comfyui, fix, disable, enable, install-model]
description: Type of operation or task being performed
OperationResult:
type: string