diff --git a/Cargo.toml b/Cargo.toml index f1bc5ac..2d93b83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vrchatapi" -version = "1.13.0" +version = "1.14.0" authors = ["vrchatapi.lpv0t@aries.fyi"] description = "VRChat API Client for Rust" license = "MIT" diff --git a/src/models/instance_type.rs b/src/models/instance_type.rs index 02daa48..63e2b80 100644 --- a/src/models/instance_type.rs +++ b/src/models/instance_type.rs @@ -19,6 +19,8 @@ pub enum InstanceType { Friends, #[serde(rename = "private")] Private, + #[serde(rename = "group")] + Group, } @@ -29,6 +31,7 @@ impl ToString for InstanceType { Self::Hidden => String::from("hidden"), Self::Friends => String::from("friends"), Self::Private => String::from("private"), + Self::Group => String::from("group"), } } }