diff --git a/src/endpoints.rs b/src/endpoints.rs
index e3a3fb0..bd1377e 100644
--- a/src/endpoints.rs
+++ b/src/endpoints.rs
@@ -7,7 +7,7 @@
///////////////////////////////////////////////
// http://www.mingweisamuel.com/riotapi-schema/tool/
-// Version 7938729f7e446a82eb73d3908205a579e3f0db71
+// Version f60af07c98f05dffdaf81262f9b01f97fe94a3a1
//! Automatically generated endpoint handles.
@@ -1031,19 +1031,23 @@ impl<'a> MatchV5<'a> {
/// # Parameters
/// * `route` - Route to query.
/// * `puuid` (required, in path)
+ /// * `queue` (optional, in query) - Filter the list of match ids by a specific queue id. This filter is mutually inclusive of the type filter meaning any match ids returned must match both the queue and type filters.
+ /// * `type` (optional, in query) - Filter the list of match ids by the type of match. This filter is mutually inclusive of the queue filter meaning any match ids returned must match both the queue and type filters.
/// * `start` (optional, in query) - Defaults to 0. Start index.
- /// * `count` (optional, in query) - Defaults to 20. Valid values: 0 to 100. Match id count.
+ /// * `count` (optional, in query) - Defaults to 20. Valid values: 0 to 100. Number of match ids to return.
/// # Riot Developer API Reference
/// `match-v5.getMatchIdsByPUUID`
///
/// Note: this method is automatically generated.
- pub fn get_match_ids_by_puuid(&self, route: RegionalRoute, puuid: &str, count: Option, start: Option)
+ pub fn get_match_ids_by_puuid(&self, route: RegionalRoute, puuid: &str, count: Option, queue: Option, start: Option, r#type: Option<&str>)
-> impl Future