v0.2.6-pre.009

This commit is contained in:
2026-08-21 12:35:01 +02:00
parent 7d03825ec6
commit 2b7afab663
17 changed files with 970 additions and 41 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-app-wallet-desk/src/lib.rs
// version: 8
// version: 9
//! Tauri desktop application shell for KSP Wallet management and inspection.
@@ -23,6 +23,7 @@ mod wallet_balance;
mod wallet_config;
mod wallet_import;
mod wallet_inventory;
mod wallet_metadata;
mod wallet_secrets;
mod wallet_session;
@@ -186,6 +187,14 @@ pub(crate) use self::wallet_inventory::resolve_locked_wallet;
/// Re-inspects one root-scoped Wallet selection in crate unit tests.
#[cfg(test)]
pub(crate) use self::wallet_inventory::select_locked_wallet;
/// OWNER alias update request carrying protected metadata only frontend -> Rust.
pub(crate) use self::wallet_metadata::WalletAliasUpdateRequestDto;
/// OWNER note append request carrying protected metadata only frontend -> Rust.
pub(crate) use self::wallet_metadata::WalletNoteAddRequestDto;
/// OWNER note delete request selecting one authorized stable note identifier.
pub(crate) use self::wallet_metadata::WalletNoteDeleteRequestDto;
/// OWNER note update request carrying protected metadata only frontend -> Rust.
pub(crate) use self::wallet_metadata::WalletNoteUpdateRequestDto;
/// Discovers Config-owned Wallet password candidates without exposing their names or values.
pub(crate) use self::wallet_secrets::discover_wallet_secret_candidates;
/// Returns the configured Wallet password candidate count without exposing their names or values.