UX: implement visual product roadmap

This commit is contained in:
NuklearRabbit
2026-08-10 01:05:07 +02:00
parent 13ad2ba6a3
commit f2cdad194c
40 changed files with 1010 additions and 281 deletions
+9 -1
View File
@@ -20,6 +20,14 @@ export interface Vehicle {
attention: boolean;
}
export interface Page<T> {
items: T[];
page: number;
page_size: number;
total: number;
total_pages: number;
}
export interface BookingSummary {
public_ref: string;
customer_ref: string;
@@ -260,7 +268,7 @@ export interface KnowledgeHealth {
tenant: string;
workspace: string;
collection: string;
document_count: number;
document_count: number | null;
}
export interface N8nWorkflowEvidence {