feat: add all_project_types to search results (#6654)

* feat: add all_project_types to search results

* update docs
This commit is contained in:
Prospector
2026-07-07 21:30:42 +00:00
committed by GitHub
parent 3ed75a146a
commit 96ab120cd0
6 changed files with 40 additions and 0 deletions
+2
View File
@@ -15,6 +15,7 @@ pub struct LegacySearchResults {
pub struct LegacyResultSearchProject {
pub project_id: String,
pub project_type: String,
pub all_project_types: Vec<String>,
pub slug: Option<String>,
pub author: String,
#[serde(default)]
@@ -136,6 +137,7 @@ impl LegacyResultSearchProject {
Self {
project_type,
all_project_types: result_search_project.all_project_types,
client_side,
server_side,
versions,