/** * Info Center Module Exports * * Public API for Info Center module. * Exports API methods only - mappers are internal implementation details. * * @layer Infrastructure - API Client */ import { apiClient } from '@/infrastructure/http/ApiClient'; import { InfoCenterApi } from './api'; export { InfoCenterApi, createInfoCenterApi } from './api'; export type { GetPageAnalysesParams } from './api'; /** * Singleton instance of InfoCenterApi using the shared apiClient * * Use this for all Info Center operations - it handles auth tokens automatically. */ export const infoCenterApi = new InfoCenterApi(apiClient); // Note: Mappers are NOT exported - they are internal implementation details // UI layer should never import mappers, only use InfoCenterApi methods