Skip to content

Commit

Permalink
fix: clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
alxgrant committed Dec 16, 2024
1 parent f87c103 commit e4442eb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/analytics/analytics-utilities/src/types/explore/all.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { type BasicExploreAggregations, type BasicExploreFilter, type BasicExploreFilterAll, filterableBasicExploreDimensions } from './basic'
import { type AiExploreAggregations, type AiExploreFilter, type AiExploreFilterAll, filterableAiExploreDimensions } from './ai'
import { type ExploreAggregations, type ExploreFilter, type ExploreFilterAll, filterableExploreDimensions } from './advanced'
import { type BasicExploreAggregations, type BasicExploreFilterAll, filterableBasicExploreDimensions } from './basic'
import { type AiExploreAggregations, type AiExploreFilterAll, filterableAiExploreDimensions } from './ai'
import { type ExploreAggregations, type ExploreFilterAll, filterableExploreDimensions } from './advanced'

export type AllAggregations = BasicExploreAggregations | AiExploreAggregations | ExploreAggregations
export type AllFilters = BasicExploreFilterAll | AiExploreFilterAll | ExploreFilterAll
Expand All @@ -10,9 +10,9 @@ export const queryDatasources = ['basic', 'advanced', 'ai'] as const
export type QueryDatasource = typeof queryDatasources[number]

export interface FilterTypeMap extends Record<QueryDatasource, AllFilters> {
basic: BasicExploreFilter,
advanced: ExploreFilter,
ai: AiExploreFilter,
basic: BasicExploreFilterAll,
advanced: ExploreFilterAll,
ai: AiExploreFilterAll,
}

export const datasourceToFilterableDimensions: Record<QueryDatasource, Set<string>> = {
Expand Down

0 comments on commit e4442eb

Please sign in to comment.