From 661934156cff5f2d5898b76d73d896d2b7815b00 Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Thu, 13 Mar 2025 19:37:34 +0900 Subject: [PATCH] [chore] Update Comfy Registry API types from comfy-api@4b71b92 (#3017) Co-authored-by: christian-byrne <72887196+christian-byrne@users.noreply.github.com> --- src/types/comfyRegistryTypes.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/types/comfyRegistryTypes.ts b/src/types/comfyRegistryTypes.ts index 34ead0a6d0..770cfa0280 100644 --- a/src/types/comfyRegistryTypes.ts +++ b/src/types/comfyRegistryTypes.ts @@ -2440,8 +2440,10 @@ export interface operations { timestamp?: string /** @description Whether to fetch fresh result from database or use cached one if false */ latest?: boolean - /** @description Database column to use as ordering */ + /** @description Database column to use as ascending ordering. Add `;desc` as suffix on each column for descending sort */ sort?: string[] + /** @description The platform requesting the nodes */ + form_factor?: string } header?: never path?: never @@ -2851,6 +2853,15 @@ export interface operations { } content?: never } + /** @description Duplicate error. */ + 409: { + headers: { + [name: string]: unknown + } + content: { + 'application/json': components['schemas']['ErrorResponse'] + } + } /** @description Internal server error */ 500: { headers: {