v0.3.8-pre.008

This commit is contained in:
2026-09-03 19:53:25 +02:00
parent 10515d1562
commit 489d686023
16 changed files with 1050 additions and 35 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-app-store-desk/src/lib.rs
// version: 4
// version: 5
//! Tauri desktop scaffold for backend-neutral KSP Store inspection.
@@ -10,6 +10,7 @@
mod app_state;
mod bootstrap;
mod constants;
mod dto_account;
mod dto_common;
mod dto_transaction;
mod errors;
@@ -60,6 +61,16 @@ pub(crate) use self::constants::TRACING_TARGET_FRONTEND;
pub(crate) use self::constants::TRACING_TARGET_FRONTEND_MAIN;
/// Owning target for splash-window frontend events.
pub(crate) use self::constants::TRACING_TARGET_FRONTEND_SPLASH;
/// Bounded detail projection for one complete RAW account state.
pub(crate) use self::dto_account::StoreAccountDetailDto;
/// App-owned identity request for one explicit RAW account-state detail load.
pub(crate) use self::dto_account::StoreAccountDetailRequestDto;
/// Bounded Store-owned account query request projected from one DataTables page request.
pub(crate) use self::dto_account::StoreAccountQueryRequestDto;
/// Server-side account-state table result using exact decimal counts.
pub(crate) use self::dto_account::StoreAccountQueryResponseDto;
/// Data-free RAW account-state row returned to the server-side DataTables adapter.
pub(crate) use self::dto_account::StoreAccountRowDto;
/// Safe command error projection exposed to Tauri commands.
pub(crate) use self::dto_common::CommandErrorDto;
/// Safe shell/Config/Logging snapshot exposed to the shell.
@@ -92,6 +103,8 @@ pub(crate) use self::errors::ERROR_CODE_LOGGING_BOOTSTRAP_FAILED;
pub(crate) use self::errors::ERROR_CODE_SPLASH_ORIGIN_INVALID;
/// A KSP desk splash environment duration is malformed or exceeds its safety bound.
pub(crate) use self::errors::ERROR_CODE_SPLASH_SETTING_INVALID;
/// Store Desk could not resolve the requested RAW account-state identity to a coherent Store entity.
pub(crate) use self::errors::ERROR_CODE_STORE_ACCOUNT_NOT_FOUND;
/// Store Desk received an invalid transaction inspection/detail request.
pub(crate) use self::errors::ERROR_CODE_STORE_QUERY_INVALID;
/// Store Desk cannot serve a Store command because the runtime is unavailable or already closed.