mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2026-03-10 19:47:33 +08:00
feat(api): Implement endpoint for bulk import failure info
Adds the `/v2/customnode/import_fail_info_bulk` endpoint to allow fetching multiple import error statuses in a single request.
This commit is contained in:
parent
030e02ffb8
commit
0d43e173af
29
openapi.yaml
29
openapi.yaml
@ -306,6 +306,35 @@ paths:
|
|||||||
'400':
|
'400':
|
||||||
description: No information available
|
description: No information available
|
||||||
|
|
||||||
|
/v2/customnode/import_fail_info_bulk:
|
||||||
|
post:
|
||||||
|
summary: Get import failure information for multiple nodes
|
||||||
|
description: Returns information about why a list of nodes failed to import
|
||||||
|
tags:
|
||||||
|
- customnode
|
||||||
|
requestBody:
|
||||||
|
required: true
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
cnr_ids:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
urls:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
responses:
|
||||||
|
'200':
|
||||||
|
description: Successful operation
|
||||||
|
'400':
|
||||||
|
description: Bad Request or invalid input
|
||||||
|
'500':
|
||||||
|
description: Internal Server Error
|
||||||
|
|
||||||
/customnode/install/git_url:
|
/customnode/install/git_url:
|
||||||
post:
|
post:
|
||||||
summary: Install custom node via Git URL
|
summary: Install custom node via Git URL
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user