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:
Matt Miller 2026-05-22 15:48:23 -07:00
parent 50289f2607
commit 52752612aa

View File

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