From e4442eb09bf69e23802ee1ea510f4c08bae2e1ae Mon Sep 17 00:00:00 2001 From: Alex Grant Date: Mon, 16 Dec 2024 17:15:30 -0500 Subject: [PATCH] fix: clean up --- .../analytics-utilities/src/types/explore/all.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/analytics/analytics-utilities/src/types/explore/all.ts b/packages/analytics/analytics-utilities/src/types/explore/all.ts index 2e2d705040..abd7f09953 100644 --- a/packages/analytics/analytics-utilities/src/types/explore/all.ts +++ b/packages/analytics/analytics-utilities/src/types/explore/all.ts @@ -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 @@ -10,9 +10,9 @@ export const queryDatasources = ['basic', 'advanced', 'ai'] as const export type QueryDatasource = typeof queryDatasources[number] export interface FilterTypeMap extends Record { - basic: BasicExploreFilter, - advanced: ExploreFilter, - ai: AiExploreFilter, + basic: BasicExploreFilterAll, + advanced: ExploreFilterAll, + ai: AiExploreFilterAll, } export const datasourceToFilterableDimensions: Record> = {