From 3bac8d9b6b799ce7301991b2c25a67457a03967b Mon Sep 17 00:00:00 2001 From: ctondreau <47112837+ctondreau@users.noreply.github.com> Date: Mon, 24 Aug 2026 16:30:09 +0000 Subject: [PATCH] update fern definition --- fern/apis/fai/openapi.json | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/fern/apis/fai/openapi.json b/fern/apis/fai/openapi.json index 0ecbbbd96..c16d9027b 100644 --- a/fern/apis/fai/openapi.json +++ b/fern/apis/fai/openapi.json @@ -2759,6 +2759,17 @@ "title": "End Date" }, "description": "The end date of the period to retrieve analytics for" + }, + { + "name": "resolution", + "in": "query", + "required": false, + "schema": { + "$ref": "#/components/schemas/ResolutionFilter", + "description": "Only return queries whose conversation was resolved or unresolved. Conversations that have not been scored yet are excluded from both filters.", + "default": "all" + }, + "description": "Only return queries whose conversation was resolved or unresolved. Conversations that have not been scored yet are excluded from both filters." } ], "responses": { @@ -5749,6 +5760,14 @@ "pagination": { "$ref": "#/components/schemas/PaginationResponse", "description": "Pagination information" + }, + "conversation_resolutions": { + "additionalProperties": { + "type": "boolean" + }, + "type": "object", + "title": "Conversation Resolutions", + "description": "Whether each conversation in `queries` was resolved. Conversations the resolution job has not scored yet are absent." } }, "type": "object", @@ -6484,6 +6503,17 @@ "type": "null" } ] + }, + "origin_page": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Origin Page" } }, "type": "object", @@ -6869,6 +6899,15 @@ "title": "ReindexingJobRecord", "description": "Reindexing job record model" }, + "ResolutionFilter": { + "type": "string", + "enum": [ + "all", + "resolved", + "unresolved" + ], + "title": "ResolutionFilter" + }, "SyncIndexIncrementalRequest": { "properties": { "index_name": {