Add logic to dynamically exclude bots visits in tags table

This commit is contained in:
Alejandro Celaya
2023-03-19 10:32:11 +01:00
parent 8fa61a6301
commit 4ebe23e89f
10 changed files with 35 additions and 20 deletions

View File

@@ -21,6 +21,9 @@ export interface ShlinkHealth {
interface ShlinkTagsStats {
tag: string;
shortUrlsCount: number;
visitsSummary?: ShlinkVisitsSummary; // Optional only before Shlink 3.5.0
/** @deprecated */
visitsCount: number;
}