refactor-migration again

This commit is contained in:
IGNY8 VPS (Salman)
2025-11-26 15:12:14 +00:00
parent 2ef98b5113
commit f88aae78b1
23 changed files with 942 additions and 211 deletions

View File

@@ -780,8 +780,8 @@ export interface ContentIdea {
id: number;
idea_title: string;
description?: string | null;
content_structure: string;
content_type: string;
content_type: string; // post, page, product, taxonomy
content_structure: string; // article, guide, comparison, review, etc.
target_keywords?: string | null;
keyword_cluster_id?: number | null;
keyword_cluster_name?: string | null;
@@ -798,8 +798,8 @@ export interface ContentIdea {
export interface ContentIdeaCreateData {
idea_title: string;
description?: string | null;
content_structure?: string;
content_type?: string;
content_structure?: string;
target_keywords?: string | null;
keyword_cluster_id?: number | null;
status?: string;