migration correction et maj
Some checks failed
Build and Push App / build (push) Failing after 11m56s
Some checks failed
Build and Push App / build (push) Failing after 11m56s
This commit is contained in:
33
types.ts
33
types.ts
@@ -64,9 +64,12 @@ export interface Business {
|
||||
verified: boolean;
|
||||
viewCount: number;
|
||||
rating: number;
|
||||
ratingCount: number;
|
||||
tags: string[];
|
||||
isSuspended?: boolean;
|
||||
suspensionReason?: string;
|
||||
metaTitle?: string | null;
|
||||
metaDescription?: string | null;
|
||||
|
||||
// New fields for "Entrepreneur of the Month"
|
||||
isFeatured?: boolean;
|
||||
@@ -147,3 +150,33 @@ export interface Event {
|
||||
link?: string;
|
||||
tags?: string[];
|
||||
}
|
||||
|
||||
export interface BusinessCategory {
|
||||
id: string;
|
||||
name: string;
|
||||
slug: string;
|
||||
icon?: string;
|
||||
isActive: boolean;
|
||||
}
|
||||
|
||||
export interface SiteSetting {
|
||||
id: string;
|
||||
siteName: string;
|
||||
siteSlogan: string;
|
||||
contactEmail: string;
|
||||
contactPhone?: string;
|
||||
address?: string;
|
||||
facebookUrl?: string;
|
||||
twitterUrl?: string;
|
||||
instagramUrl?: string;
|
||||
linkedinUrl?: string;
|
||||
footerText?: string;
|
||||
homeBlogCount: number;
|
||||
homeBlogShow: boolean;
|
||||
homeBlogSubtitle: string;
|
||||
homeBlogTitle: string;
|
||||
homeBlogCategories: string[];
|
||||
homeBlogIds: string[];
|
||||
homeBlogSelection: string;
|
||||
homeCategories: string[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user