v0.2.6-pre.004-fix.001

This commit is contained in:
2026-08-21 08:44:21 +02:00
parent 76bfce17c1
commit 2132dfd884
8 changed files with 153 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-app-wallet-desk/src/lib.rs
// version: 3
// version: 4
//! Tauri desktop application shell for KSP Wallet management and inspection.
@@ -122,11 +122,13 @@ pub(crate) use self::wallet_config::WalletConfigStartup;
pub(crate) use self::wallet_config::initialize_wallet_config;
/// Safe locked Wallet projection returned after selection.
pub(crate) use self::wallet_inventory::LockedWalletDto;
/// Locked inspection outcome exposed by Wallet inventory rows.
/// Locked inspection outcome exposed by Wallet inventory rows in crate unit tests.
#[cfg(test)]
pub(crate) use self::wallet_inventory::WalletInspectionStatusDto;
/// Safe Wallet inventory row projection.
pub(crate) use self::wallet_inventory::WalletInventoryEntryDto;
/// Visual lock/error state exposed by Wallet inventory rows.
/// Visual lock/error state exposed by Wallet inventory rows in crate unit tests.
#[cfg(test)]
pub(crate) use self::wallet_inventory::WalletInventoryStateDto;
/// Request DTO used for one root-scoped Wallet selection.
pub(crate) use self::wallet_inventory::WalletSelectionRequestDto;