From 24b8f78d5fdd8d71096f6c0427942fee052fec1b Mon Sep 17 00:00:00 2001 From: Ryan Vazquez Date: Thu, 29 Oct 2020 17:36:52 -0400 Subject: [PATCH] make client public --- plugins/cost-insights/src/client.ts | 8 ++++---- plugins/cost-insights/src/index.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) 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';