| 49 | relatedPages: List[str] |
| 50 | |
| 51 | class ProcessedProjectEntry(BaseModel): |
| 52 | id: str # Filename |
| 53 | owner: str |
| 54 | repo: str |
| 55 | name: str # owner/repo |
| 56 | repo_type: str # Renamed from type to repo_type for clarity with existing models |
| 57 | submittedAt: int # Timestamp |
| 58 | language: str # Extracted from filename |
| 59 | |
| 60 | class RepoInfo(BaseModel): |
| 61 | owner: str |
no outgoing calls
no test coverage detected