Skip to main content

qualia_client_core/wellfair/
mod.rs

1pub mod accessibility_prefs;
2pub mod anatomy_assets;
3pub mod anatomy_body;
4pub mod anatomy_dyad;
5/// Producer for a curated `.hmc` anatomy asset pack (ships in the release /
6/// web demo). Native-only (blocking network I/O against the HRA endpoints).
7pub mod anatomy_pack;
8pub mod anatomy_render;
9pub mod anatomy_view;
10pub mod api;
11pub mod backup;
12pub mod blob_store;
13pub mod body_constitution;
14#[cfg(not(target_arch = "wasm32"))]
15pub mod workshop_ingest;
16/// The BodyParts3D anatomy ONTOLOGY emitter → `.q42` (OBO FMA IRIs + house aliases, is-a + part-of +
17/// system + geometry). The addressable semantic backbone the `.10d` mesh library is cited by.
18pub mod bodyparts3d_ontology;
19/// Ingest BodyParts3D (FMA-keyed, CC-BY-SA) — the muscles/bones/glands/nerves that complete the body
20/// CCF/HRA (viscera-only) cannot. Pure part-of→system mapping + a native fetch/pack producer.
21pub mod bodyparts3d_resolver;
22pub mod bookmarks;
23pub mod ccf_resolver;
24pub mod checkpoint_store;
25pub mod cml_context;
26pub mod companion_tests;
27pub mod consent_store;
28pub mod export_package;
29pub mod fetal_stages;
30pub mod graph_query;
31pub mod graph_store;
32pub mod host_state;
33pub mod hypermedia_store;
34pub mod import_samsung;
35pub mod ingest_guardian;
36pub mod journal;
37pub mod legislation_ingest;
38pub mod live_share;
39pub mod med_reminders;
40#[cfg(test)]
41mod medication_flow;
42pub mod perception_catalog;
43pub mod personal_profile;
44pub mod physiology_prefs;
45pub mod policy;
46pub mod qapp_catalog;
47#[cfg(not(target_arch = "wasm32"))]
48pub mod qapp_publish;
49pub mod receipt;
50pub mod sanctuary;
51#[cfg(not(target_arch = "wasm32"))]
52pub mod sanctuary_vault;
53pub mod scorecard_prefs;
54// The v2 vault container is a native-only on-disk format (the desktop owns keys + the vault) and it
55// persists the native-only audit DAG; gate it to non-wasm like `sanctuary_vault`.
56pub mod snapshot;
57pub mod sync_outbox;
58pub mod sync_protocol;
59pub mod sync_transport;
60#[cfg(not(target_arch = "wasm32"))]
61pub mod vault_container;
62// The HTTP relay server is native-only (tiny_http).
63#[cfg(not(target_arch = "wasm32"))]
64pub mod sync_relay_server;
65pub mod vault;
66
67#[cfg(test)]
68mod replay_tests;
69
70#[cfg(test)]
71mod journey_tests;
72
73#[cfg(test)]
74mod phase3_tests;
75
76#[cfg(test)]
77mod phase4_tests;
78
79pub use host_state::{demo_host_snapshot, fixture_host_snapshot, WellfairHostSnapshot};
80pub use import_samsung::{
81    ingest_companion_health_bundle, parse_csv_named_content, SamsungFileReport, SamsungImportReport,
82};
83pub use snapshot::build_host_snapshot;