feat: Add LinkedIn URL support for investor synchronization and update schemas

This commit is contained in:
2025-11-28 06:18:04 +00:00
parent 495f8a0ff6
commit 3bc8a24c0c
3 changed files with 12 additions and 2 deletions
+2 -1
View File
@@ -38,6 +38,7 @@ class InvestorMemberSchema(BaseModel):
name: str
role: str | None
email: str | None
linkedin: str | None
class Config:
from_attributes = True
@@ -194,7 +195,7 @@ class CompanySchemaMinimal(BaseModel):
class CompanyData(BaseModel): # Renamed from CompaniesData for consistency
company: CompanySchemaMinimal
investors: List[InvestorMinimal]
# members: List[CompanyMemberSchema] = []
members: List[CompanyMemberSchema] = []
sectors: List[SectorSchema] = []
class Config: