Files
supabase/apps/studio/data/analytics/constants.ts
Jordi Enric 6123e00e6c fix: granularity improvements (#41925)
* update granularity

* 2min interval client side

* fix type error

* fix type errors

* fix type error

* correct typing

* fix type

* add tests to ggregate to 2 min fn

* cleanup

* cleanup2

* prettier
2026-01-27 12:51:22 +01:00

18 lines
372 B
TypeScript

export type DataPoint = {
period_start: string
periodStartFormatted?: string
} & {
// Attribute name will be the key
[key: string]: string | number
}
export interface AnalyticsData {
data: DataPoint[]
format: string
total: number
yAxisLimit: number
hasNoData?: boolean
}
export type AnalyticsInterval = '1m' | '2m' | '5m' | '10m' | '30m' | '1h' | '1d'