This commit is contained in:
Desktop
2025-11-13 00:59:55 +05:00
parent 235f01c1fe
commit 31bfadf38a
2 changed files with 135 additions and 33 deletions

View File

@@ -1242,10 +1242,14 @@ export async function fetchSiteSectors(siteId: number): Promise<any[]> {
// Industries API functions
export interface Industry {
id?: number;
name: string;
slug: string;
description: string;
sectors: Sector[];
sectors_count?: number;
keywords_count?: number;
is_active?: boolean;
}
export interface Sector {