feat: update backend services and routes

- Add business routes and middleware\n- Update search and database services\n- Improve health check implementation\n- Update CI workflow configuration
This commit is contained in:
eligrinfeld 2025-01-06 21:25:15 -07:00
parent 79f26fce25
commit 9f4ae1baac
15 changed files with 1501 additions and 1348 deletions

View file

@ -1,22 +1,16 @@
export interface Business {
id: string;
name: string;
phone?: string;
email?: string;
address?: string;
rating?: number;
address: string;
phone: string;
description: string;
website?: string;
logo?: string;
source: string;
description?: string;
location?: {
rating: number;
location: {
lat: number;
lng: number;
};
openingHours?: string[];
services?: string[];
reviewCount?: number;
hours?: string[];
}
export type BusinessData = Business;