Merge remote-tracking branch 'origin/dev' into dev

# Conflicts:
#	src/lib/constants.ts
This commit is contained in:
Mike Cao 2024-06-19 21:48:49 -07:00
commit 19d5ac0a4c
23 changed files with 500 additions and 10 deletions

View file

@ -119,7 +119,10 @@ async function parseFilters(websiteId: string, filters: QueryFilters = {}, optio
};
}
async function rawQuery(query: string, params: Record<string, unknown> = {}): Promise<unknown> {
async function rawQuery<T = unknown>(
query: string,
params: Record<string, unknown> = {},
): Promise<T> {
if (process.env.LOG_QUERY) {
log('QUERY:\n', query);
log('PARAMETERS:\n', params);

View file

@ -131,6 +131,7 @@ export const REPORT_TYPES = {
retention: 'retention',
utm: 'utm',
journey: 'journey',
revenue: 'revenue',
} as const;
export const REPORT_PARAMETERS = {

View file

@ -181,6 +181,7 @@ export interface QueryFilters {
referrer?: string;
title?: string;
query?: string;
host?: string;
os?: string;
browser?: string;
device?: string;