interface HostHomeTabService {
    getAudienceData(userId: string): Promise<HostHomeAudienceData>;
    getEarnings(userId: string): Promise<HostEarnings>;
    getHostHomeTrips(userId: string): Promise<HostHomeTrip[]>;
    getReviewResponses(userId: string): Promise<ReviewResponses>;
    getTripImportantDates(userId: string): Promise<TripImportantDate[]>;
}

Methods