api client refactor

This commit is contained in:
2025-12-17 18:01:47 +01:00
parent bab55955e1
commit 4177644b18
190 changed files with 6403 additions and 1624 deletions

View File

@@ -0,0 +1,36 @@
// Analytics Services
export * from './analytics/AnalyticsService';
export * from './analytics/DashboardService';
// Auth Services
export * from './auth/AuthService';
export * from './auth/SessionService';
// Driver Services
export * from './drivers/DriverService';
export * from './drivers/DriverRegistrationService';
// League Services
export * from './leagues/LeagueService';
export * from './leagues/LeagueMembershipService';
// Media Services
export * from './media/MediaService';
export * from './media/AvatarService';
// Payments Services
export * from './payments/PaymentService';
export * from './payments/WalletService';
export * from './payments/MembershipFeeService';
// Race Services
export * from './races/RaceService';
export * from './races/RaceResultsService';
// Sponsor Services
export * from './sponsors/SponsorService';
export * from './sponsors/SponsorshipService';
// Team Services
export * from './teams/TeamService';
export * from './teams/TeamJoinService';