feat(api): add TagHint schema and extend NlQueryInterpretation with resolvedTags/tagsApplied
Manual update since Docker compose backend runs old build; regenerate with npm run generate:api once new backend is deployed. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1905,8 +1905,10 @@ export interface components {
|
|||||||
/** Format: date */
|
/** Format: date */
|
||||||
dateTo?: string;
|
dateTo?: string;
|
||||||
keywords: string[];
|
keywords: string[];
|
||||||
|
resolvedTags: components["schemas"]["TagHint"][];
|
||||||
rawQuery: string;
|
rawQuery: string;
|
||||||
keywordsApplied: boolean;
|
keywordsApplied: boolean;
|
||||||
|
tagsApplied: boolean;
|
||||||
};
|
};
|
||||||
NlSearchResponse: {
|
NlSearchResponse: {
|
||||||
result: components["schemas"]["DocumentSearchResult"];
|
result: components["schemas"]["DocumentSearchResult"];
|
||||||
@@ -1917,6 +1919,12 @@ export interface components {
|
|||||||
id: string;
|
id: string;
|
||||||
displayName: string;
|
displayName: string;
|
||||||
};
|
};
|
||||||
|
TagHint: {
|
||||||
|
/** Format: uuid */
|
||||||
|
id: string;
|
||||||
|
name: string;
|
||||||
|
color?: string;
|
||||||
|
};
|
||||||
SearchMatchData: {
|
SearchMatchData: {
|
||||||
transcriptionSnippet?: string;
|
transcriptionSnippet?: string;
|
||||||
titleOffsets: components["schemas"]["MatchOffset"][];
|
titleOffsets: components["schemas"]["MatchOffset"][];
|
||||||
|
|||||||
Reference in New Issue
Block a user