Upgrade Rust SDK to spec 1.17.6

This commit is contained in:
VRCCat
2024-06-13 19:50:30 +00:00
parent 6560601846
commit 169cbe48b0
9 changed files with 24 additions and 5 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "vrchatapi" name = "vrchatapi"
version = "1.17.5" version = "1.17.6"
authors = ["vrchatapi.lpv0t@aries.fyi"] authors = ["vrchatapi.lpv0t@aries.fyi"]
description = "VRChat API Client for Rust" description = "VRChat API Client for Rust"
license = "MIT" license = "MIT"

View File

@ -35,6 +35,7 @@ Name | Type | Description | Notes
**has_pending_email** | **bool** | | **has_pending_email** | **bool** | |
**home_location** | **String** | WorldID be \"offline\" on User profiles if you are not friends with that user. | **home_location** | **String** | WorldID be \"offline\" on User profiles if you are not friends with that user. |
**id** | **String** | A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. | **id** | **String** | A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. |
**is_booping_enabled** | Option<**bool**> | | [optional][default to true]
**is_friend** | **bool** | | [default to false] **is_friend** | **bool** | | [default to false]
**last_activity** | Option<**String**> | | [optional] **last_activity** | Option<**String**> | | [optional]
**last_login** | **String** | | **last_login** | **String** | |
@ -52,6 +53,7 @@ Name | Type | Description | Notes
**past_display_names** | [**Vec<crate::models::PastDisplayName>**](PastDisplayName.md) | | **past_display_names** | [**Vec<crate::models::PastDisplayName>**](PastDisplayName.md) | |
**presence** | Option<[**crate::models::CurrentUserPresence**](CurrentUserPresence.md)> | | [optional] **presence** | Option<[**crate::models::CurrentUserPresence**](CurrentUserPresence.md)> | | [optional]
**profile_pic_override** | **String** | | **profile_pic_override** | **String** | |
**profile_pic_override_thumbnail** | **String** | |
**pronouns** | **String** | | **pronouns** | **String** | |
**state** | [**crate::models::UserState**](UserState.md) | | **state** | [**crate::models::UserState**](UserState.md) | |
**status** | [**crate::models::UserStatus**](UserStatus.md) | | **status** | [**crate::models::UserStatus**](UserStatus.md) | |

View File

@ -13,6 +13,7 @@ Name | Type | Description | Notes
**bio** | Option<**String**> | | [optional] **bio** | Option<**String**> | | [optional]
**bio_links** | Option<**Vec<String>**> | | [optional] **bio_links** | Option<**Vec<String>**> | | [optional]
**pronouns** | Option<**String**> | | [optional] **pronouns** | Option<**String**> | | [optional]
**is_booping_enabled** | Option<**bool**> | | [optional]
**user_icon** | Option<**String**> | MUST be a valid VRChat /file/ url. | [optional] **user_icon** | Option<**String**> | MUST be a valid VRChat /file/ url. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

View File

@ -25,6 +25,7 @@ Name | Type | Description | Notes
**location** | Option<**String**> | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional] **location** | Option<**String**> | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional]
**note** | Option<**String**> | | [optional] **note** | Option<**String**> | | [optional]
**profile_pic_override** | **String** | | **profile_pic_override** | **String** | |
**profile_pic_override_thumbnail** | **String** | |
**pronouns** | **String** | | **pronouns** | **String** | |
**state** | [**crate::models::UserState**](UserState.md) | | **state** | [**crate::models::UserState**](UserState.md) | |
**status** | [**crate::models::UserStatus**](UserStatus.md) | | **status** | [**crate::models::UserStatus**](UserStatus.md) | |

View File

@ -82,6 +82,8 @@ pub struct CurrentUser {
/// A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed. /// A users unique ID, usually in the form of `usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469`. Legacy players can have old IDs in the form of `8JoV9XEdpo`. The ID can never be changed.
#[serde(rename = "id")] #[serde(rename = "id")]
pub id: String, pub id: String,
#[serde(rename = "isBoopingEnabled", skip_serializing_if = "Option::is_none")]
pub is_booping_enabled: Option<bool>,
#[serde(rename = "isFriend")] #[serde(rename = "isFriend")]
pub is_friend: bool, pub is_friend: bool,
#[serde(rename = "last_activity", skip_serializing_if = "Option::is_none")] #[serde(rename = "last_activity", skip_serializing_if = "Option::is_none")]
@ -118,6 +120,8 @@ pub struct CurrentUser {
pub presence: Option<Box<crate::models::CurrentUserPresence>>, pub presence: Option<Box<crate::models::CurrentUserPresence>>,
#[serde(rename = "profilePicOverride")] #[serde(rename = "profilePicOverride")]
pub profile_pic_override: String, pub profile_pic_override: String,
#[serde(rename = "profilePicOverrideThumbnail")]
pub profile_pic_override_thumbnail: String,
#[serde(rename = "pronouns")] #[serde(rename = "pronouns")]
pub pronouns: String, pub pronouns: String,
#[serde(rename = "state")] #[serde(rename = "state")]
@ -152,7 +156,7 @@ pub struct CurrentUser {
} }
impl CurrentUser { impl CurrentUser {
pub fn new(accepted_tos_version: i32, allow_avatar_copying: bool, bio: String, bio_links: Vec<String>, current_avatar: String, current_avatar_asset_url: String, current_avatar_image_url: String, current_avatar_thumbnail_image_url: String, current_avatar_tags: Vec<String>, date_joined: String, developer_type: crate::models::DeveloperType, display_name: String, email_verified: bool, friend_group_names: Vec<String>, friend_key: String, friends: Vec<String>, has_birthday: bool, has_email: bool, has_logged_in_from_client: bool, has_pending_email: bool, home_location: String, id: String, is_friend: bool, last_login: String, last_mobile: Option<String>, last_platform: String, obfuscated_email: String, obfuscated_pending_email: String, oculus_id: String, past_display_names: Vec<crate::models::PastDisplayName>, profile_pic_override: String, pronouns: String, state: crate::models::UserState, status: crate::models::UserStatus, status_description: String, status_first_time: bool, status_history: Vec<String>, steam_details: serde_json::Value, steam_id: String, tags: Vec<String>, two_factor_auth_enabled: bool, unsubscribe: bool, user_icon: String) -> CurrentUser { pub fn new(accepted_tos_version: i32, allow_avatar_copying: bool, bio: String, bio_links: Vec<String>, current_avatar: String, current_avatar_asset_url: String, current_avatar_image_url: String, current_avatar_thumbnail_image_url: String, current_avatar_tags: Vec<String>, date_joined: String, developer_type: crate::models::DeveloperType, display_name: String, email_verified: bool, friend_group_names: Vec<String>, friend_key: String, friends: Vec<String>, has_birthday: bool, has_email: bool, has_logged_in_from_client: bool, has_pending_email: bool, home_location: String, id: String, is_friend: bool, last_login: String, last_mobile: Option<String>, last_platform: String, obfuscated_email: String, obfuscated_pending_email: String, oculus_id: String, past_display_names: Vec<crate::models::PastDisplayName>, profile_pic_override: String, profile_pic_override_thumbnail: String, pronouns: String, state: crate::models::UserState, status: crate::models::UserStatus, status_description: String, status_first_time: bool, status_history: Vec<String>, steam_details: serde_json::Value, steam_id: String, tags: Vec<String>, two_factor_auth_enabled: bool, unsubscribe: bool, user_icon: String) -> CurrentUser {
CurrentUser { CurrentUser {
accepted_tos_version, accepted_tos_version,
accepted_privacy_version: None, accepted_privacy_version: None,
@ -185,6 +189,7 @@ impl CurrentUser {
has_pending_email, has_pending_email,
home_location, home_location,
id, id,
is_booping_enabled: None,
is_friend, is_friend,
last_activity: None, last_activity: None,
last_login, last_login,
@ -202,6 +207,7 @@ impl CurrentUser {
past_display_names, past_display_names,
presence: None, presence: None,
profile_pic_override, profile_pic_override,
profile_pic_override_thumbnail,
pronouns, pronouns,
state, state,
status, status,

View File

@ -25,8 +25,8 @@ pub struct GroupLimitedMember {
pub role_ids: Option<Vec<String>>, pub role_ids: Option<Vec<String>>,
#[serde(rename = "mRoleIds", skip_serializing_if = "Option::is_none")] #[serde(rename = "mRoleIds", skip_serializing_if = "Option::is_none")]
pub m_role_ids: Option<Vec<String>>, pub m_role_ids: Option<Vec<String>>,
#[serde(rename = "joinedAt", skip_serializing_if = "Option::is_none")] #[serde(rename = "joinedAt", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub joined_at: Option<String>, pub joined_at: Option<Option<String>>,
#[serde(rename = "membershipStatus", skip_serializing_if = "Option::is_none")] #[serde(rename = "membershipStatus", skip_serializing_if = "Option::is_none")]
pub membership_status: Option<crate::models::GroupMemberStatus>, pub membership_status: Option<crate::models::GroupMemberStatus>,
#[serde(rename = "visibility", skip_serializing_if = "Option::is_none")] #[serde(rename = "visibility", skip_serializing_if = "Option::is_none")]

View File

@ -20,6 +20,8 @@ pub enum GroupMemberStatus {
Invited, Invited,
#[serde(rename = "banned")] #[serde(rename = "banned")]
Banned, Banned,
#[serde(rename = "userblocked")]
Userblocked,
} }
@ -31,6 +33,7 @@ impl ToString for GroupMemberStatus {
Self::Requested => String::from("requested"), Self::Requested => String::from("requested"),
Self::Invited => String::from("invited"), Self::Invited => String::from("invited"),
Self::Banned => String::from("banned"), Self::Banned => String::from("banned"),
Self::Userblocked => String::from("userblocked"),
} }
} }
} }

View File

@ -30,6 +30,8 @@ pub struct UpdateUserRequest {
pub bio_links: Option<Vec<String>>, pub bio_links: Option<Vec<String>>,
#[serde(rename = "pronouns", skip_serializing_if = "Option::is_none")] #[serde(rename = "pronouns", skip_serializing_if = "Option::is_none")]
pub pronouns: Option<String>, pub pronouns: Option<String>,
#[serde(rename = "isBoopingEnabled", skip_serializing_if = "Option::is_none")]
pub is_booping_enabled: Option<bool>,
/// MUST be a valid VRChat /file/ url. /// MUST be a valid VRChat /file/ url.
#[serde(rename = "userIcon", skip_serializing_if = "Option::is_none")] #[serde(rename = "userIcon", skip_serializing_if = "Option::is_none")]
pub user_icon: Option<String>, pub user_icon: Option<String>,
@ -47,6 +49,7 @@ impl UpdateUserRequest {
bio: None, bio: None,
bio_links: None, bio_links: None,
pronouns: None, pronouns: None,
is_booping_enabled: None,
user_icon: None, user_icon: None,
} }
} }

View File

@ -64,6 +64,8 @@ pub struct User {
pub note: Option<String>, pub note: Option<String>,
#[serde(rename = "profilePicOverride")] #[serde(rename = "profilePicOverride")]
pub profile_pic_override: String, pub profile_pic_override: String,
#[serde(rename = "profilePicOverrideThumbnail")]
pub profile_pic_override_thumbnail: String,
#[serde(rename = "pronouns")] #[serde(rename = "pronouns")]
pub pronouns: String, pub pronouns: String,
#[serde(rename = "state")] #[serde(rename = "state")]
@ -92,7 +94,7 @@ pub struct User {
} }
impl User { impl User {
pub fn new(allow_avatar_copying: bool, bio: String, bio_links: Vec<String>, current_avatar_image_url: String, current_avatar_thumbnail_image_url: String, current_avatar_tags: Vec<String>, date_joined: String, developer_type: crate::models::DeveloperType, display_name: String, friend_key: String, id: String, is_friend: bool, last_activity: String, last_login: String, last_platform: String, profile_pic_override: String, pronouns: String, state: crate::models::UserState, status: crate::models::UserStatus, status_description: String, tags: Vec<String>, user_icon: String) -> User { pub fn new(allow_avatar_copying: bool, bio: String, bio_links: Vec<String>, current_avatar_image_url: String, current_avatar_thumbnail_image_url: String, current_avatar_tags: Vec<String>, date_joined: String, developer_type: crate::models::DeveloperType, display_name: String, friend_key: String, id: String, is_friend: bool, last_activity: String, last_login: String, last_platform: String, profile_pic_override: String, profile_pic_override_thumbnail: String, pronouns: String, state: crate::models::UserState, status: crate::models::UserStatus, status_description: String, tags: Vec<String>, user_icon: String) -> User {
User { User {
allow_avatar_copying, allow_avatar_copying,
badges: None, badges: None,
@ -115,6 +117,7 @@ impl User {
location: None, location: None,
note: None, note: None,
profile_pic_override, profile_pic_override,
profile_pic_override_thumbnail,
pronouns, pronouns,
state, state,
status, status,