delete get/list/list_by_owner channels, get_settings/activity_log admin, get_item/get_sync_status/list_collections/list_seasons/list_shows/list_genres library, get/list/delete providers, get/list/patch_label config_snapshots, get_active/list_history/delete_after schedule — all single-delegation. remove ChannelQueryDeps, LibraryQueryDeps, deleted query/command structs. add direct port fields to AppState. update MCP crate accordingly.
13 lines
353 B
Rust
13 lines
353 B
Rust
pub struct SearchItemsQuery {
|
|
pub provider_id: Option<String>,
|
|
pub content_type: Option<String>,
|
|
pub genres: Vec<String>,
|
|
pub search_term: Option<String>,
|
|
pub collection_id: Option<String>,
|
|
pub series_names: Vec<String>,
|
|
pub season_number: Option<u32>,
|
|
pub decade: Option<u16>,
|
|
pub offset: u32,
|
|
pub limit: u32,
|
|
}
|