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/app_state.rs
// version: 3
// version: 4
//! Shared backend state owned by the Store Desk Tauri application.
@@ -105,7 +105,7 @@ impl crate::AppState {
application_version: env!("CARGO_PKG_VERSION").to_owned(),
config_document_count: document_count,
fallback_logging_active: runtime.fallback_active,
shell_phase: "pre.007-raw-transactions".to_owned(),
shell_phase: "pre.008-raw-accounts".to_owned(),
startup_diagnostic: runtime.startup_diagnostic.clone(),
});
}
@@ -115,6 +115,16 @@ impl crate::AppState {
return self.store_startup.status().await;
}
/// Executes one bounded RAW account-state inspection query through the retained Store facade.
pub(crate) async fn query_accounts(&self, request: crate::StoreAccountQueryRequestDto) -> ksp_core_lib::Result<crate::StoreAccountQueryResponseDto> {
return self.store_startup.query_accounts(request).await;
}
/// Loads one explicit RAW account-state detail through the retained Store facade.
pub(crate) async fn account_detail(&self, request: crate::StoreAccountDetailRequestDto) -> ksp_core_lib::Result<crate::StoreAccountDetailDto> {
return self.store_startup.account_detail(request).await;
}
/// Executes one bounded RAW transaction inspection query through the retained Store facade.
pub(crate) async fn query_transactions(
&self,