diff --git a/fern/apis/fai/openapi.json b/fern/apis/fai/openapi.json index 1a1b1e5d6..8d582538a 100644 --- a/fern/apis/fai/openapi.json +++ b/fern/apis/fai/openapi.json @@ -2001,6 +2001,48 @@ "x-fern-audiences": ["internal"] } }, + "/settings/ask-ai/docs": { + "get": { + "tags": ["Settings"], + "summary": "Get Docs Settings", + "description": "Get settings for a domain and organization.", + "operationId": "get_docs_settings", + "parameters": [ + { + "name": "domain", + "in": "query", + "required": true, + "schema": { + "type": "string", + "title": "Domain" + } + } + ], + "responses": { + "200": { + "description": "Successful Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetSettingsResponse" + } + } + } + }, + "422": { + "description": "Validation Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HTTPValidationError" + } + } + } + } + }, + "x-fern-audiences": ["internal"] + } + }, "/settings/ask-ai/toggle": { "post": { "tags": ["Settings"], @@ -2345,7 +2387,12 @@ } } }, - "x-fern-audiences": ["internal"] + "x-fern-audiences": ["customers"], + "security": [ + { + "bearerAuth": [] + } + ] } }, "/slack/integrations/{domain}": {