Restore recipe parameters functionality (#3530)

This commit is contained in:
Zane
2025-07-22 10:31:44 -07:00
committed by GitHub
parent 914c537965
commit 246ba19256
28 changed files with 1057 additions and 479 deletions
@@ -19,9 +19,12 @@ fn main() {
fs::create_dir_all(parent).unwrap();
}
fs::write(&output_path, schema).unwrap();
println!(
fs::write(&output_path, &schema).unwrap();
eprintln!(
"Successfully generated OpenAPI schema at {}",
output_path.display()
);
// Output the schema to stdout for piping
println!("{}", schema);
}
@@ -251,6 +251,7 @@ async fn add_extension(
display_name,
timeout,
bundled: None,
description: None,
},
ExtensionConfigRequest::Frontend {
name,