test: add CI/CD workflow

This commit is contained in:
eligrinfeld 2025-01-05 14:16:31 -07:00
parent 66d44c0774
commit ce97671da3
28 changed files with 11684 additions and 1199 deletions

View file

@ -1,28 +1,22 @@
export interface BusinessData {
id?: string;
name: string;
phone?: string;
email?: string;
address?: string;
rating?: number;
website?: string;
logo?: string;
source?: string;
description?: string;
location?: {
lat: number;
lng: number;
};
latitude?: number;
longitude?: number;
place_id?: string;
photos?: string[];
openingHours?: string[];
distance?: {
value: number;
unit: string;
};
last_updated?: string;
search_count?: number;
created_at?: string;
}
export interface Business {
id: string;
name: string;
phone?: string;
email?: string;
address?: string;
rating?: number;
website?: string;
logo?: string;
source: string;
description?: string;
location?: {
lat: number;
lng: number;
};
openingHours?: string[];
services?: string[];
reviewCount?: number;
hours?: string[];
}
export type BusinessData = Business;