Add new frontend - fix 11

This commit is contained in:
Urtzi Alfaro
2025-07-22 17:12:37 +02:00
parent 84279df3a3
commit 6717ce7e0d
3 changed files with 11 additions and 11 deletions

View File

@@ -5,12 +5,12 @@
*/ */
// Import all service classes // Import all service classes
export { AuthService, authService } from './AuthService'; export { AuthService, authService } from './authService';
export { DataService, dataService } from './DataService'; export { DataService, dataService } from './dataService';
export { TrainingService, trainingService } from './TrainingService'; export { TrainingService, trainingService } from './trainingService';
export { ForecastingService, forecastingService } from './ForecastingService'; export { ForecastingService, forecastingService } from './forecastingService';
export { NotificationService, notificationService } from './NotificationService'; export { NotificationService, notificationService } from './notificationService';
export { TenantService, tenantService } from './TenantService'; export { TenantService, tenantService } from './tenantService';
// Import base API client for custom implementations // Import base API client for custom implementations
export { apiClient } from '../base/apiClient'; export { apiClient } from '../base/apiClient';
@@ -23,13 +23,13 @@ export type {
DashboardStats, DashboardStats,
UploadResponse, UploadResponse,
DataValidation, DataValidation,
} from './DataService'; } from './dataService';
export type { export type {
TrainingJobProgress, TrainingJobProgress,
ModelMetrics, ModelMetrics,
TrainingConfiguration, TrainingConfiguration,
} from './TrainingService'; } from './trainingService';
export type { export type {
SingleForecastRequest, SingleForecastRequest,
@@ -37,7 +37,7 @@ export type {
ForecastAlert, ForecastAlert,
QuickForecast, QuickForecast,
BatchForecastStatus, BatchForecastStatus,
} from './ForecastingService'; } from './forecastingService';
export type { export type {
NotificationCreate, NotificationCreate,
@@ -47,7 +47,7 @@ export type {
NotificationStats, NotificationStats,
BulkNotificationRequest, BulkNotificationRequest,
BulkNotificationStatus, BulkNotificationStatus,
} from './NotificationService'; } from './notificationService';
export type { export type {
TenantCreate, TenantCreate,
@@ -56,7 +56,7 @@ export type {
TenantStats, TenantStats,
TenantUser, TenantUser,
InviteUser, InviteUser,
} from './TenantService'; } from './tenantService';
// Create a unified API object for convenience // Create a unified API object for convenience
export const api = { export const api = {