mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-30 10:57:23 +08:00
fix(openapi): add BindingErrorResponse schema
OAuthRegisterBadRequestResponse references BindingErrorResponse but that schema wasn't in the original add. Adding it now as a cloud-only schema matching the cloud runtime's binding-error shape (single 'message' string field).
This commit is contained in:
parent
50289f2607
commit
52752612aa
10
openapi.yaml
10
openapi.yaml
@ -9940,3 +9940,13 @@ components:
|
||||
description: When the user joined the workspace (same as created_at for the workspace creator)
|
||||
subscription_tier:
|
||||
$ref: '#/components/schemas/SubscriptionTier'
|
||||
|
||||
BindingErrorResponse:
|
||||
type: object
|
||||
x-runtime: [cloud]
|
||||
description: '[cloud-only] Error shape returned when request binding or validation fails before the handler runs.'
|
||||
required:
|
||||
- message
|
||||
properties:
|
||||
message:
|
||||
type: string
|
||||
|
||||
Loading…
Reference in New Issue
Block a user