mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 15:47:13 +01:00
Added "columns" to query options. Added events count to event data metrics.
This commit is contained in:
parent
9d86385f5c
commit
7da7f58cbe
7 changed files with 45 additions and 65 deletions
12
lib/types.ts
12
lib/types.ts
|
|
@ -80,15 +80,15 @@ export interface WebsiteEventMetric {
|
|||
}
|
||||
|
||||
export interface WebsiteEventDataStats {
|
||||
field: string;
|
||||
type: number;
|
||||
fieldName: string;
|
||||
dataType: number;
|
||||
total: number;
|
||||
}
|
||||
|
||||
export interface WebsiteEventDataFields {
|
||||
field: string;
|
||||
type: number;
|
||||
value?: string;
|
||||
fieldName: string;
|
||||
dataType: number;
|
||||
fieldValue?: string;
|
||||
total: number;
|
||||
}
|
||||
|
||||
|
|
@ -152,5 +152,5 @@ export interface QueryFilters {
|
|||
|
||||
export interface QueryOptions {
|
||||
joinSession?: boolean;
|
||||
ignoreFilters?: string[];
|
||||
columns?: { [key: string]: string };
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue