Skip to content

Commit edb1899

Browse files
committed
Upgrade Python SDK to spec 1.18.4
1 parent ee7f6f1 commit edb1899

File tree

177 files changed

+472
-280
lines changed

Some content is hidden

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

177 files changed

+472
-280
lines changed

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** | **list[str]** | | [optional]
1212
**image_url** | **str** | |
1313
**release_status** | [**ReleaseStatus**](ReleaseStatus.md) | | [optional]
14-
**version** | **float** | | [optional] [default to 1]
14+
**version** | **int** | | [optional] [default to 1]
1515
**unity_package_url** | **str** | | [optional]
1616
**unity_version** | **str** | | [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** | **str** | |
8-
**signature_size_in_bytes** | **float** | |
8+
**signature_size_in_bytes** | **int** | |
99
**file_md5** | **str** | | [optional]
10-
**file_size_in_bytes** | **float** | | [optional]
10+
**file_size_in_bytes** | **int** | | [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** | **str** | |
5656
**profile_pic_override_thumbnail** | **str** | |
5757
**pronouns** | **str** | |
58+
**queued_instance** | **str** | | [optional]
59+
**receive_mobile_invitations** | **bool** | | [optional]
5860
**state** | [**UserState**](UserState.md) | |
5961
**status** | [**UserStatus**](UserStatus.md) | |
6062
**status_description** | **str** | |

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** | **str** | | [optional]
8+
**current_avatar_tags** | **str** | | [optional]
89
**display_name** | **str** | | [optional]
910
**groups** | **list[str]** | | [optional]
1011
**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. | [optional]
@@ -16,6 +17,7 @@ Name | Type | Description | Notes
1617
**status** | **str** | either a UserStatus or empty string | [optional]
1718
**traveling_to_instance** | **str** | | [optional]
1819
**traveling_to_world** | **str** | WorldID be \"offline\" on User profiles if you are not friends with that user. | [optional]
20+
**user_icon** | **str** | | [optional]
1921
**world** | **str** | 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
@@ -7,8 +7,8 @@ Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**upload_id** | **str** | |
99
**file_name** | **str** | |
10-
**next_part_number** | **float** | |
11-
**max_parts** | **float** | |
10+
**next_part_number** | **int** | |
11+
**max_parts** | **int** | |
1212
**parts** | **list[object]** | |
1313
**etags** | **list[object]** | Unknown |
1414

docs/GroupsApi.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1987,7 +1987,7 @@ Name | Type | Description | Notes
19871987
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
19881988

19891989
# **get_group_members**
1990-
> list[GroupMember] get_group_members(group_id, n=n, offset=offset, sort=sort)
1990+
> list[GroupMember] get_group_members(group_id, n=n, offset=offset, sort=sort, role_id=role_id)
19911991
19921992
List Group Members
19931993

@@ -2027,10 +2027,11 @@ with vrchatapi.ApiClient(configuration) as api_client:
20272027
n = 60 # int | The number of objects to return. (optional) (default to 60)
20282028
offset = 56 # int | A zero-based offset from the default object sorting from where search results start. (optional)
20292029
sort = vrchatapi.GroupSearchSort() # GroupSearchSort | The sort order of Group Member results (optional)
2030+
role_id = 'role_id_example' # str | Only returns members with a specific groupRoleId (optional)
20302031

20312032
try:
20322033
# List Group Members
2033-
api_response = api_instance.get_group_members(group_id, n=n, offset=offset, sort=sort)
2034+
api_response = api_instance.get_group_members(group_id, n=n, offset=offset, sort=sort, role_id=role_id)
20342035
pprint(api_response)
20352036
except ApiException as e:
20362037
print("Exception when calling GroupsApi->get_group_members: %s\n" % e)
@@ -2044,6 +2045,7 @@ Name | Type | Description | Notes
20442045
**n** | **int**| The number of objects to return. | [optional] [default to 60]
20452046
**offset** | **int**| A zero-based offset from the default object sorting from where search results start. | [optional]
20462047
**sort** | [**GroupSearchSort**](.md)| The sort order of Group Member results | [optional]
2048+
**role_id** | **str**| Only returns members with a specific groupRoleId | [optional]
20472049

20482050
### Return type
20492051

docs/Subscription.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
1414
**amount** | **float** | |
1515
**description** | **str** | |
1616
**period** | [**SubscriptionPeriod**](SubscriptionPeriod.md) | |
17-
**tier** | **float** | |
17+
**tier** | **int** | |
1818

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

docs/TransactionAgreement.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Represents a single Transaction, which is likely between VRChat and Steam.
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**agreement_id** | **str** | |
9-
**item_id** | **float** | |
9+
**item_id** | **int** | |
1010
**agreement** | **str** | |
1111
**status** | **str** | This is NOT TransactionStatus, but whatever Steam return. |
1212
**period** | **str** | |
13-
**frequency** | **float** | |
13+
**frequency** | **int** | |
1414
**billing_type** | **str** | |
1515
**start_date** | **str** | |
1616
**end_date** | **str** | |
@@ -21,8 +21,8 @@ Name | Type | Description | Notes
2121
**last_payment** | **str** | |
2222
**last_amount** | **float** | |
2323
**last_amount_vat** | **float** | |
24-
**outstanding** | **float** | |
25-
**failed_attempts** | **float** | |
24+
**outstanding** | **int** | |
25+
**failed_attempts** | **int** | |
2626

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

docs/UnityPackage.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**asset_url_object** | **object** | | [optional]
1111
**asset_version** | **int** | |
1212
**created_at** | **datetime** | | [optional]
13+
**impostorizer_version** | **str** | | [optional]
1314
**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`. |
1415
**plugin_url** | **str** | | [optional]
1516
**plugin_url_object** | **object** | | [optional]

docs/UpdateAvatarRequest.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** | **list[str]** | | [optional]
1212
**image_url** | **str** | | [optional]
1313
**release_status** | [**ReleaseStatus**](ReleaseStatus.md) | | [optional]
14-
**version** | **float** | | [optional] [default to 1]
14+
**version** | **int** | | [optional] [default to 1]
1515
**unity_package_url** | **str** | | [optional]
1616
**unity_version** | **str** | | [optional] [default to '5.3.4p1']
1717

0 commit comments

Comments
 (0)