v0.3.7-pre.012-fix.001
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// file: crates/ksp-app-backfill-desk/src/dto_common.rs
|
||||
// version: 6
|
||||
// version: 7
|
||||
|
||||
//! Common Tauri DTOs shared by the Backfill Desk shell.
|
||||
|
||||
@@ -44,11 +44,11 @@ pub(crate) struct ProgramIdAutocompleteOptionDto {
|
||||
|
||||
/// Projects the canonical KSP Program ID registry to the safe autocomplete dataset.
|
||||
#[must_use]
|
||||
pub(crate) fn program_id_autocomplete_options() -> std::vec::Vec<ProgramIdAutocompleteOptionDto> {
|
||||
pub(crate) fn program_id_autocomplete_options() -> std::vec::Vec<crate::ProgramIdAutocompleteOptionDto> {
|
||||
let entries = ksp_core_lib::entries();
|
||||
let mut options = std::vec::Vec::with_capacity(entries.len());
|
||||
for entry in entries {
|
||||
options.push(ProgramIdAutocompleteOptionDto {
|
||||
options.push(crate::ProgramIdAutocompleteOptionDto {
|
||||
code: entry.code().to_owned(),
|
||||
domain: entry.domain().to_owned(),
|
||||
family: entry.family().to_owned(),
|
||||
@@ -76,7 +76,7 @@ pub(crate) struct BackfillDeskOptionsDto {
|
||||
/// Whether the Transport and Store readiness gates jointly permit later Backfill composition.
|
||||
pub(crate) composition_ready: bool,
|
||||
/// Canonical KSP Program IDs exposed as a frontend autocomplete dataset; never an allow-list.
|
||||
pub(crate) program_id_options: std::vec::Vec<ProgramIdAutocompleteOptionDto>,
|
||||
pub(crate) program_id_options: std::vec::Vec<crate::ProgramIdAutocompleteOptionDto>,
|
||||
/// Distinct enabled HTTP cluster labels selected by the active Transport profile.
|
||||
pub(crate) configured_networks: std::vec::Vec<String>,
|
||||
/// Whether the selected Store network exactly matches the one coherent Transport network.
|
||||
|
||||
Reference in New Issue
Block a user