qualia_client_core/wellfair/
mod.rs1pub mod accessibility_prefs;
2pub mod anatomy_assets;
3pub mod anatomy_body;
4pub mod anatomy_dyad;
5pub 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;
16pub mod bodyparts3d_ontology;
19pub 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;
54pub 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#[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;