5c1434511b
修正周月日期范围、每日访问人数、零值柱和趋势图滚动同步 新增次日与七日留存及数据库侧精确聚合,移除五万行访问明细截断 聚合失败时拒绝返回伪零值并补齐契约、客户端绑定和定向测试 修复素材详情陶泥号竖排并完善移动端单列布局 同步运营口径与本地数据库版本漂移排障文档
78 lines
1.9 KiB
Rust
78 lines
1.9 KiB
Rust
// 中文注释:SpacetimeDB 绑定生成依赖根模块继续公开 re-export 各领域类型;
|
|
// 少数领域 helper 同名只影响 value namespace 导出,不影响 table / reducer 类型。
|
|
#![allow(ambiguous_glob_reexports)]
|
|
|
|
pub use module_ai::*;
|
|
pub use module_assets::*;
|
|
pub use module_big_fish::*;
|
|
pub use module_combat::*;
|
|
pub use module_custom_world::*;
|
|
pub use module_inventory::*;
|
|
pub use module_jump_hop::*;
|
|
pub use module_npc::*;
|
|
pub use module_progression::*;
|
|
pub use module_puzzle_clear::*;
|
|
pub use module_quest::*;
|
|
pub use module_runtime::*;
|
|
pub use module_runtime_item::*;
|
|
pub use module_story::*;
|
|
pub use module_wooden_fish::*;
|
|
|
|
pub(crate) use serde_json::{Map as JsonMap, Value as JsonValue, json};
|
|
pub(crate) use shared_kernel::format_timestamp_micros;
|
|
pub use spacetimedb::{
|
|
Identity, ProcedureContext, ReducerContext, ScheduleAt, SpacetimeType, Table, Timestamp,
|
|
};
|
|
mod admin_account_storage;
|
|
mod admin_dashboard;
|
|
mod ai;
|
|
mod asset_metadata;
|
|
mod auth;
|
|
mod bark_battle;
|
|
mod big_fish;
|
|
mod custom_world;
|
|
mod domain_types;
|
|
mod editor_agent_storage;
|
|
mod editor_project_storage;
|
|
mod entry;
|
|
mod external_api_key_storage;
|
|
mod external_generation;
|
|
mod gameplay;
|
|
mod jump_hop;
|
|
mod match3d;
|
|
mod migration;
|
|
mod public_asset_access;
|
|
mod public_work;
|
|
mod puzzle;
|
|
mod puzzle_clear;
|
|
mod runtime;
|
|
mod square_hole;
|
|
mod visual_novel;
|
|
mod wooden_fish;
|
|
|
|
pub use admin_account_storage::*;
|
|
pub use admin_dashboard::*;
|
|
pub use ai::*;
|
|
pub use asset_metadata::*;
|
|
pub use auth::*;
|
|
pub use bark_battle::*;
|
|
pub use big_fish::*;
|
|
pub use custom_world::*;
|
|
pub use domain_types::*;
|
|
pub use editor_agent_storage::*;
|
|
pub use editor_project_storage::*;
|
|
pub use entry::*;
|
|
pub use external_api_key_storage::*;
|
|
pub use external_generation::*;
|
|
pub use gameplay::*;
|
|
pub use jump_hop::*;
|
|
pub use match3d::*;
|
|
pub use migration::*;
|
|
pub use public_asset_access::*;
|
|
pub use public_work::*;
|
|
pub use puzzle_clear::*;
|
|
pub use runtime::*;
|
|
pub use square_hole::*;
|
|
pub use visual_novel::*;
|
|
pub use wooden_fish::*;
|