Compare commits

...

2 Commits

Author SHA1 Message Date
GitHub Action
bef57d5625 [automated] Apply ESLint and Oxfmt fixes 2026-06-10 22:20:48 +00:00
mattmillerai
4311019ce5 [chore] Update Ingest API types from cloud@e3c52ad 2026-06-10 22:17:08 +00:00
2 changed files with 5 additions and 0 deletions

View File

@@ -2775,6 +2775,10 @@ export type SystemStatsResponse = {
* ComfyUI version
*/
comfyui_version: string
/**
* How this ComfyUI instance is deployed (e.g. cloud, local-git, local-portable, local-desktop)
*/
deploy_environment?: string
/**
* ComfyUI frontend version (commit hash or tag)
*/

View File

@@ -1624,6 +1624,7 @@ export const zSystemStatsResponse = z.object({
python_version: z.string(),
embedded_python: z.boolean(),
comfyui_version: z.string(),
deploy_environment: z.string().optional(),
comfyui_frontend_version: z.string().optional(),
workflow_templates_version: z.string().optional(),
cloud_version: z.string().optional(),