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:
parent
79f26fce25
commit
9f4ae1baac
15 changed files with 1501 additions and 1348 deletions
|
|
@ -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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue