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