Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions fern/apis/fai/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -6484,6 +6503,17 @@
"type": "null"
}
]
},
"origin_page": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Origin Page"
}
},
"type": "object",
Expand Down Expand Up @@ -6869,6 +6899,15 @@
"title": "ReindexingJobRecord",
"description": "Reindexing job record model"
},
"ResolutionFilter": {
"type": "string",
"enum": [
"all",
"resolved",
"unresolved"
],
"title": "ResolutionFilter"
},
"SyncIndexIncrementalRequest": {
"properties": {
"index_name": {
Expand Down
Loading