Skip to content

Commit a615f36

Browse files
committed
Upgrade Rust SDK to spec 1.18.3
1 parent a0c6ed9 commit a615f36

27 files changed

Lines changed: 67 additions & 39 deletions

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vrchatapi"
3-
version = "1.18.1"
3+
version = "1.18.3"
44
authors = ["vrchatapi.lpv0t@aries.fyi"]
55
description = "VRChat API Client for Rust"
66
license = "MIT"

docs/CreateAvatarRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Name | Type | Description | Notes
1111
**tags** | Option<**Vec<String>**> | | [optional]
1212
**image_url** | **String** | |
1313
**release_status** | Option<[**models::ReleaseStatus**](ReleaseStatus.md)> | | [optional]
14-
**version** | Option<**f64**> | | [optional][default to 1]
14+
**version** | Option<**i32**> | | [optional][default to 1]
1515
**unity_package_url** | Option<**String**> | | [optional]
1616
**unity_version** | Option<**String**> | | [optional][default to 5.3.4p1]
1717

docs/CreateFileVersionRequest.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**signature_md5** | **String** | |
8-
**signature_size_in_bytes** | **f64** | |
8+
**signature_size_in_bytes** | **i32** | |
99
**file_md5** | Option<**String**> | | [optional]
10-
**file_size_in_bytes** | Option<**f64**> | | [optional]
10+
**file_size_in_bytes** | Option<**i32**> | | [optional]
1111

1212
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1313

docs/CurrentUser.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ Name | Type | Description | Notes
5555
**profile_pic_override** | **String** | |
5656
**profile_pic_override_thumbnail** | **String** | |
5757
**pronouns** | **String** | |
58+
**queued_instance** | Option<**String**> | | [optional]
59+
**receive_mobile_invitations** | Option<**bool**> | | [optional]
5860
**state** | [**models::UserState**](UserState.md) | |
5961
**status** | [**models::UserStatus**](UserStatus.md) | |
6062
**status_description** | **String** | |

docs/CurrentUserPresence.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**avatar_thumbnail** | Option<**String**> | | [optional]
8+
**current_avatar_tags** | Option<**String**> | | [optional]
89
**display_name** | Option<**String**> | | [optional]
910
**groups** | Option<**Vec<String>**> | | [optional]
1011
**id** | Option<**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. | [optional]
@@ -16,6 +17,7 @@ Name | Type | Description | Notes
1617
**status** | Option<**String**> | either a UserStatus or empty string | [optional]
1718
**traveling_to_instance** | Option<**String**> | | [optional]
1819
**traveling_to_world** | Option<**String**> | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional]
20+
**user_icon** | Option<**String**> | | [optional]
1921
**world** | Option<**String**> | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional]
2022

2123
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/FileVersionUploadStatus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**upload_id** | **String** | |
88
**file_name** | **String** | |
9-
**next_part_number** | **f64** | |
10-
**max_parts** | **f64** | |
9+
**next_part_number** | **i32** | |
10+
**max_parts** | **i32** | |
1111
**parts** | [**Vec<serde_json::Value>**](serde_json::Value.md) | |
1212
**etags** | [**Vec<serde_json::Value>**](serde_json::Value.md) | Unknown |
1313

docs/GroupsApi.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ Name | Type | Description | Required | Notes
831831

832832
## get_group_members
833833

834-
> Vec<models::GroupMember> get_group_members(group_id, n, offset, sort)
834+
> Vec<models::GroupMember> get_group_members(group_id, n, offset, sort, role_id)
835835
List Group Members
836836

837837
Returns a List of all **other** Group Members. This endpoint will never return the user calling the endpoint. Information about the user calling the endpoint must be found in the `myMember` field of the Group object.
@@ -845,6 +845,7 @@ Name | Type | Description | Required | Notes
845845
**n** | Option<**i32**> | The number of objects to return. | |[default to 60]
846846
**offset** | Option<**i32**> | A zero-based offset from the default object sorting from where search results start. | |
847847
**sort** | Option<[**GroupSearchSort**](.md)> | The sort order of Group Member results | |
848+
**role_id** | Option<**String**> | Only returns members with a specific groupRoleId | |
848849

849850
### Return type
850851

docs/Subscription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Name | Type | Description | Notes
1313
**amount** | **f64** | |
1414
**description** | **String** | |
1515
**period** | [**models::SubscriptionPeriod**](SubscriptionPeriod.md) | |
16-
**tier** | **f64** | |
16+
**tier** | **i32** | |
1717

1818
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1919

docs/TransactionAgreement.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**agreement_id** | **String** | |
8-
**item_id** | **f64** | |
8+
**item_id** | **i32** | |
99
**agreement** | **String** | |
1010
**status** | **String** | This is NOT TransactionStatus, but whatever Steam return. |
1111
**period** | **String** | |
12-
**frequency** | **f64** | |
12+
**frequency** | **i32** | |
1313
**billing_type** | **String** | |
1414
**start_date** | **String** | |
1515
**end_date** | **String** | |
@@ -20,8 +20,8 @@ Name | Type | Description | Notes
2020
**last_payment** | **String** | |
2121
**last_amount** | **f64** | |
2222
**last_amount_vat** | **f64** | |
23-
**outstanding** | **f64** | |
24-
**failed_attempts** | **f64** | |
23+
**outstanding** | **i32** | |
24+
**failed_attempts** | **i32** | |
2525

2626
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
2727

docs/UnityPackage.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**asset_url_object** | Option<[**serde_json::Value**](.md)> | | [optional]
1010
**asset_version** | **i32** | |
1111
**created_at** | Option<**String**> | | [optional]
12+
**impostorizer_version** | Option<**String**> | | [optional]
1213
**platform** | **String** | This can be `standalonewindows` or `android`, but can also pretty much be any random Unity verison such as `2019.2.4-801-Release` or `2019.2.2-772-Release` or even `unknownplatform`. |
1314
**plugin_url** | Option<**String**> | | [optional]
1415
**plugin_url_object** | Option<[**serde_json::Value**](.md)> | | [optional]

0 commit comments

Comments
 (0)