mirror of
https://github.com/mii443/vrchatapi-rust.git
synced 2025-08-22 15:45:35 +00:00
Upgrade Rust SDK to spec 1.11.1
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "vrchatapi"
|
||||
version = "1.11.0"
|
||||
version = "1.11.1"
|
||||
authors = ["me@ariesclark.com"]
|
||||
description = "VRChat API Client for Rust"
|
||||
license = "MIT"
|
||||
|
@ -853,10 +853,10 @@ Name | Type | Description | Required | Notes
|
||||
|
||||
## join_group
|
||||
|
||||
> crate::models::Group join_group(group_id)
|
||||
> crate::models::GroupMember join_group(group_id)
|
||||
Join Group
|
||||
|
||||
Join a Group by ID and returns the joined Group.
|
||||
Join a Group by ID and returns the member object.
|
||||
|
||||
### Parameters
|
||||
|
||||
@ -867,7 +867,7 @@ Name | Type | Description | Required | Notes
|
||||
|
||||
### Return type
|
||||
|
||||
[**crate::models::Group**](Group.md)
|
||||
[**crate::models::GroupMember**](GroupMember.md)
|
||||
|
||||
### Authorization
|
||||
|
||||
|
@ -1114,8 +1114,8 @@ pub fn get_group_roles(configuration: &configuration::Configuration, group_id: &
|
||||
}
|
||||
}
|
||||
|
||||
/// Join a Group by ID and returns the joined Group.
|
||||
pub fn join_group(configuration: &configuration::Configuration, group_id: &str) -> Result<crate::models::Group, Error<JoinGroupError>> {
|
||||
/// Join a Group by ID and returns the member object.
|
||||
pub fn join_group(configuration: &configuration::Configuration, group_id: &str) -> Result<crate::models::GroupMember, Error<JoinGroupError>> {
|
||||
let local_var_configuration = configuration;
|
||||
|
||||
let local_var_client = &local_var_configuration.client;
|
||||
|
Reference in New Issue
Block a user