Skip to content

Commit 438a4ea

Browse files
committed
Upgrade Python SDK to spec 1.16.0
1 parent 6701db0 commit 438a4ea

File tree

148 files changed

+506
-481
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+506
-481
lines changed

docs/CurrentUser.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Name | Type | Description | Notes
1616
**current_avatar_asset_url** | **str** | |
1717
**current_avatar_image_url** | **str** | When profilePicOverride is not empty, use it instead. |
1818
**current_avatar_thumbnail_image_url** | **str** | When profilePicOverride is not empty, use it instead. |
19+
**current_avatar_tags** | **list[str]** | | [optional]
1920
**date_joined** | **date** | |
2021
**developer_type** | [**DeveloperType**](DeveloperType.md) | |
2122
**display_name** | **str** | |
@@ -25,6 +26,9 @@ Name | Type | Description | Notes
2526
**friend_key** | **str** | |
2627
**friends** | **list[str]** | |
2728
**has_birthday** | **bool** | |
29+
**hide_content_filter_settings** | **bool** | | [optional]
30+
**user_language** | **str** | | [optional]
31+
**user_language_code** | **str** | | [optional]
2832
**has_email** | **bool** | |
2933
**has_logged_in_from_client** | **bool** | |
3034
**has_pending_email** | **bool** | |
@@ -37,6 +41,9 @@ Name | Type | Description | Notes
3741
**obfuscated_email** | **str** | |
3842
**obfuscated_pending_email** | **str** | |
3943
**oculus_id** | **str** | |
44+
**google_id** | **str** | | [optional]
45+
**pico_id** | **str** | | [optional]
46+
**vive_id** | **str** | | [optional]
4047
**offline_friends** | **list[str]** | | [optional]
4148
**online_friends** | **list[str]** | | [optional]
4249
**past_display_names** | [**list[PastDisplayName]**](PastDisplayName.md) | |

docs/LimitedWorld.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**author_id** | **str** | 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. |
99
**author_name** | **str** | |
1010
**capacity** | **int** | |
11+
**recommended_capacity** | **int** | | [optional]
1112
**created_at** | **datetime** | |
1213
**favorites** | **int** | | [default to 0]
1314
**heat** | **int** | | [default to 0]
@@ -24,6 +25,7 @@ Name | Type | Description | Notes
2425
**thumbnail_image_url** | **str** | |
2526
**unity_packages** | [**list[LimitedUnityPackage]**](LimitedUnityPackage.md) | |
2627
**updated_at** | **datetime** | |
28+
**udon_products** | **list[str]** | | [optional]
2729

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

docs/UnityPackage.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,18 @@
55
## Properties
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8+
**id** | **str** | |
89
**asset_url** | **str** | | [optional]
910
**asset_url_object** | **object** | | [optional]
1011
**asset_version** | **int** | |
1112
**created_at** | **datetime** | | [optional]
12-
**id** | **str** | |
1313
**platform** | **str** | 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`. |
1414
**plugin_url** | **str** | | [optional]
1515
**plugin_url_object** | **object** | | [optional]
1616
**unity_sort_number** | **int** | | [optional]
1717
**unity_version** | **str** | | [default to '5.3.4p1']
18+
**impostor_url** | **str** | | [optional]
19+
**scan_status** | **str** | | [optional]
1820

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

docs/World.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Name | Type | Description | Notes
3434
**updated_at** | **datetime** | |
3535
**version** | **int** | | [default to 0]
3636
**visits** | **int** | | [default to 0]
37+
**udon_products** | **list[str]** | | [optional]
3738

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
8282
Join the [Discord server](https://discord.gg/Ge2APMhPfD) to get in touch with us.
8383
84-
The version of the OpenAPI document: 1.15.0
84+
The version of the OpenAPI document: 1.16.0
8585
Contact: vrchatapi.lpv0t@aries.fyi
8686
Generated by: https://openapi-generator.tech
8787
"""
@@ -90,7 +90,7 @@
9090
from setuptools import setup, find_packages # noqa: H301
9191

9292
NAME = "vrchatapi"
93-
VERSION = "1.15.0"
93+
VERSION = "1.16.0"
9494
# To install the library, run the following
9595
#
9696
# python setup.py install

vrchatapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
VRChat API Documentation
77
88
9-
The version of the OpenAPI document: 1.15.0
9+
The version of the OpenAPI document: 1.16.0
1010
Contact: vrchatapi.lpv0t@aries.fyi
1111
Generated by: https://openapi-generator.tech
1212
"""

vrchatapi/api/authentication_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.15.0
7+
The version of the OpenAPI document: 1.16.0
88
Contact: vrchatapi.lpv0t@aries.fyi
99
Generated by: https://openapi-generator.tech
1010
"""

vrchatapi/api/avatars_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.15.0
7+
The version of the OpenAPI document: 1.16.0
88
Contact: vrchatapi.lpv0t@aries.fyi
99
Generated by: https://openapi-generator.tech
1010
"""

vrchatapi/api/economy_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.15.0
7+
The version of the OpenAPI document: 1.16.0
88
Contact: vrchatapi.lpv0t@aries.fyi
99
Generated by: https://openapi-generator.tech
1010
"""

vrchatapi/api/favorites_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
VRChat API Documentation
55
66
7-
The version of the OpenAPI document: 1.15.0
7+
The version of the OpenAPI document: 1.16.0
88
Contact: vrchatapi.lpv0t@aries.fyi
99
Generated by: https://openapi-generator.tech
1010
"""

0 commit comments

Comments
 (0)