diff --git a/fern/apis/fai/openapi.json b/fern/apis/fai/openapi.json index 0ecbbbd966..c16d9027b6 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": {