diff --git a/plugins/cost-insights/src/client.ts b/plugins/cost-insights/src/client.ts index b73e824031..979a7a44ef 100644 --- a/plugins/cost-insights/src/client.ts +++ b/plugins/cost-insights/src/client.ts @@ -17,7 +17,7 @@ import dayjs from 'dayjs'; import regression, { DataPoint } from 'regression'; -import { CostInsightsApi } from './api'; +import { CostInsightsApi } from '../src/api'; import { Alert, ChangeStatistic, @@ -32,13 +32,13 @@ import { ProjectGrowthData, Trendline, UnlabeledDataflowData, -} from './types'; -import { ProjectGrowthAlert, UnlabeledDataflowAlert } from './utils/alerts'; +} from '../src/types'; +import { ProjectGrowthAlert, UnlabeledDataflowAlert } from '../src/utils/alerts'; import { DEFAULT_DATE_FORMAT, exclusiveEndDateOf, inclusiveStartDateOf, -} from './utils/duration'; +} from '../src/utils/duration'; type IntervalFields = { duration: Duration; diff --git a/plugins/cost-insights/src/index.ts b/plugins/cost-insights/src/index.ts index 795d4e14a6..1e6172d568 100644 --- a/plugins/cost-insights/src/index.ts +++ b/plugins/cost-insights/src/index.ts @@ -15,7 +15,7 @@ */ export { plugin } from './plugin'; -export * from './ExampleCostInsightsClient'; +export * from './client'; export * from './api'; export * from './components'; export { useCurrency } from './hooks';