diff --git a/docs/openapi/qveris-public-api.openapi.json b/docs/openapi/qveris-public-api.openapi.json index 9bba013..fba302c 100644 --- a/docs/openapi/qveris-public-api.openapi.json +++ b/docs/openapi/qveris-public-api.openapi.json @@ -2067,6 +2067,48 @@ "default": 50, "title": "Limit" } + }, + { + "name": "query", + "in": "query", + "required": false, + "schema": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Query" + } + }, + { + "name": "sort_by", + "in": "query", + "required": false, + "schema": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Sort By" + } + }, + { + "name": "sort_order", + "in": "query", + "required": false, + "schema": { + "type": "string", + "default": "asc", + "title": "Sort Order" + } } ], "responses": { @@ -2097,7 +2139,7 @@ ], "x-qveris-source": { "file": "backend/routers/search.py", - "line": 2260 + "line": 3177 } } }, @@ -2132,7 +2174,7 @@ ], "x-qveris-source": { "file": "backend/routers/search.py", - "line": 2189 + "line": 2206 } } }, @@ -2466,7 +2508,7 @@ ], "x-qveris-source": { "file": "backend/routers/search.py", - "line": 2348 + "line": 3297 }, "requestBody": { "required": true, diff --git a/packages/mcp/src/generated/openapi.d.ts b/packages/mcp/src/generated/openapi.d.ts index e05380b..da06fef 100644 --- a/packages/mcp/src/generated/openapi.d.ts +++ b/packages/mcp/src/generated/openapi.d.ts @@ -1825,6 +1825,9 @@ export interface operations { categories?: string | null; skip?: number; limit?: number; + query?: string | null; + sort_by?: string | null; + sort_order?: string; }; header?: never; path?: never;