Skip to content
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# Unreleased

## New Features

### Video REST: advanced call statistics and reporting

Application-level stats on `VideoClient` (`get_active_calls_status`,
`query_aggregate_call_stats`, `query_call_session_stats`, `get_daily_digest`,
`query_user_feedback`, `report_client_call_event`) and call-session-scoped stats
on `Call` (`get_call_participant_session_metrics`,
`query_call_participant_sessions`, `get_call_session_participant_stats_details`,
`query_call_session_participant_stats`,
`get_call_session_participant_stats_timeline`).

# v0.1.0-preview.2

docs.rs builds on current nightly. `doc_auto_cfg` was removed in 1.92 and
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ remote audio and video, transform it, and publish media back into the call.
- Create, query, update, end, and delete video calls.
- Manage call members, permissions, recording, transcription, captions,
livestreaming, custom events, and reactions.
- Query advanced call statistics and reporting: active-calls status, aggregate
and per-session stats, participant stats and metrics, daily digest, user
feedback, and client call-event reporting.
- Join a call as a server-side SFU participant with retry, reconnect, and
migration handling.
- Subscribe globally or by participant session to remote audio, video, and
Expand Down
2 changes: 2 additions & 0 deletions src/models/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@

mod call;
mod shared;
mod stats;
mod user;

pub use call::*;
pub use shared::*;
pub use stats::*;
pub use user::*;
Loading
Loading