feat(01-02): add RANKING to AIAction type in ai-usage.ts

- Add | 'RANKING' to the AIAction union type
- Enables logAIUsage calls with action: 'RANKING'
This commit is contained in:
2026-02-27 00:46:04 +01:00
parent 44946cb845
commit 7193abd87b

View File

@@ -20,6 +20,7 @@ export type AIAction =
| 'EVALUATION_SUMMARY'
| 'ROUTING'
| 'SHORTLIST'
| 'RANKING'
export type AIStatus = 'SUCCESS' | 'PARTIAL' | 'ERROR'