51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
export {
|
|
getDashboardOverview,
|
|
} from "./get-overview.js";
|
|
|
|
export {
|
|
getDashboardPeakTimes,
|
|
type GetDashboardPeakTimesInput,
|
|
type PeakTimesPeriodDerivation,
|
|
type PeakTimesPeriodRow,
|
|
} from "./get-peak-times.js";
|
|
|
|
export {
|
|
getDashboardTopValueResources,
|
|
type GetDashboardTopValueResourcesInput,
|
|
type DashboardTopValueResourceRow,
|
|
} from "./get-top-value-resources.js";
|
|
|
|
export {
|
|
getDashboardDemand,
|
|
type GetDashboardDemandInput,
|
|
type DemandCalendarLocationSummary,
|
|
type DemandRowDerivation,
|
|
type DashboardDemandRow,
|
|
} from "./get-demand.js";
|
|
|
|
export {
|
|
getDashboardChargeabilityOverview,
|
|
type GetDashboardChargeabilityOverviewInput,
|
|
type DashboardChargeabilityDerivation,
|
|
type DashboardChargeabilityRow,
|
|
} from "./get-chargeability-overview.js";
|
|
|
|
export {
|
|
getDashboardBudgetForecast,
|
|
type BudgetForecastDerivationSummary,
|
|
type BudgetForecastRow,
|
|
type BudgetForecastLocationSummary,
|
|
} from "./get-budget-forecast.js";
|
|
|
|
export {
|
|
getDashboardSkillGaps,
|
|
getDashboardSkillGapSummary,
|
|
type SkillGapRow,
|
|
type DashboardSkillGapSummary,
|
|
} from "./get-skill-gaps.js";
|
|
|
|
export {
|
|
getDashboardProjectHealth,
|
|
type ProjectHealthRow,
|
|
} from "./get-project-health.js";
|