chore: 更新directus类型

- 将CompanyProfileTranslation中content字段类型由json改为markdown文本
This commit is contained in:
2025-10-20 13:46:06 +08:00
parent 8269155ae3
commit faf2eb4b44

View File

@ -9,7 +9,7 @@ export interface CompanyProfileTranslation {
id: number;
company_profile_id?: CompanyProfile | string | null;
languages_code?: Language | string | null;
content?: 'json' | null;
content?: string | null;
}
export interface ContactInfo {