[chore] Update Comfy Registry API types from comfy-api@4b71b92 (#3017)

Co-authored-by: christian-byrne <72887196+christian-byrne@users.noreply.github.com>
This commit is contained in:
Comfy Org PR Bot
2025-03-13 19:37:34 +09:00
committed by GitHub
parent e6ccdccce3
commit 661934156c

View File

@@ -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: {